
    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_3c7b1abeb1569dc51155c1fc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99d74b600fd8321238158c6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cfc9de5b2a5afc11fb57b795.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_21947035fcec72db841f71cb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_42f1eb4a3851e96f53a8aaae.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1e1bf228a7fc14a7336d4226.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719000;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_6f856b772ffa248a0ef2d47c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0d4b08544024aec613a0cd3f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0c5c9ddd3dbd6fc609b47335.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d9dd7bd35c92990f325a9782.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_21947035fcec72db841f71cb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_07fa077d499d99dad431b152.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.892000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_401eafaeebe2408d04dbde69.woff2')format("woff");}.fff{font-family:fff;line-height:1.268000;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_806cf4dee9ccdd0b037cb09a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.392000;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_bbd36cebae752e8ab00cec11.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.225182;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.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-31.175701px;}
.vc{vertical-align:-22.575623px;}
.v4{vertical-align:-20.400879px;}
.v8{vertical-align:-18.359985px;}
.v9{vertical-align:-17.339996px;}
.v5{vertical-align:-10.824110px;}
.vd{vertical-align:-6.903360px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.800110px;}
.vb{vertical-align:14.280029px;}
.v7{vertical-align:18.281982px;}
.v3{vertical-align:20.400879px;}
.v2{vertical-align:31.199707px;}
.va{vertical-align:44.981999px;}
.ls53{letter-spacing:-5.184000px;}
.ls18{letter-spacing:-2.808000px;}
.lsa9{letter-spacing:-1.935000px;}
.ls19{letter-spacing:-1.825200px;}
.lsb2{letter-spacing:-1.755000px;}
.ls46{letter-spacing:-1.620000px;}
.lsc2{letter-spacing:-1.440000px;}
.lsc4{letter-spacing:-1.350000px;}
.lsaf{letter-spacing:-1.305000px;}
.ls79{letter-spacing:-1.200000px;}
.lsc5{letter-spacing:-1.170000px;}
.ls40{letter-spacing:-1.080000px;}
.ls56{letter-spacing:-1.020000px;}
.ls98{letter-spacing:-0.972000px;}
.ls3f{letter-spacing:-0.918000px;}
.lsae{letter-spacing:-0.855000px;}
.ls37{letter-spacing:-0.810000px;}
.lsa6{letter-spacing:-0.765000px;}
.ls70{letter-spacing:-0.763776px;}
.ls42{letter-spacing:-0.756000px;}
.lsa4{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.702000px;}
.lsbf{letter-spacing:-0.675000px;}
.ls5e{letter-spacing:-0.648000px;}
.ls76{letter-spacing:-0.594000px;}
.lsc3{letter-spacing:-0.585000px;}
.ls60{letter-spacing:-0.561600px;}
.ls5c{letter-spacing:-0.558144px;}
.ls6c{letter-spacing:-0.540000px;}
.lsa2{letter-spacing:-0.495000px;}
.ls57{letter-spacing:-0.486000px;}
.ls74{letter-spacing:-0.456300px;}
.lsaa{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.440640px;}
.ls3c{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.420000px;}
.ls5d{letter-spacing:-0.381888px;}
.ls54{letter-spacing:-0.378000px;}
.lsc1{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.324000px;}
.ls73{letter-spacing:-0.315900px;}
.lsb0{letter-spacing:-0.315000px;}
.ls1a{letter-spacing:-0.270000px;}
.ls5f{letter-spacing:-0.245700px;}
.lsa5{letter-spacing:-0.225000px;}
.ls3e{letter-spacing:-0.216000px;}
.ls81{letter-spacing:-0.210600px;}
.lsa3{letter-spacing:-0.180000px;}
.ls75{letter-spacing:-0.175500px;}
.ls49{letter-spacing:-0.162000px;}
.ls6a{letter-spacing:-0.140400px;}
.lsc0{letter-spacing:-0.135000px;}
.ls1e{letter-spacing:-0.108000px;}
.ls4a{letter-spacing:-0.105300px;}
.lsa8{letter-spacing:-0.090000px;}
.ls41{letter-spacing:-0.070200px;}
.ls78{letter-spacing:-0.060000px;}
.ls22{letter-spacing:-0.054000px;}
.ls28{letter-spacing:-0.051000px;}
.lsa7{letter-spacing:-0.045000px;}
.ls23{letter-spacing:-0.035100px;}
.ls6e{letter-spacing:-0.029376px;}
.ls17{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000084px;}
.ls6{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013132px;}
.ls3{letter-spacing:0.013223px;}
.ls5{letter-spacing:0.013772px;}
.ls4{letter-spacing:0.013956px;}
.ls8e{letter-spacing:0.016197px;}
.ls43{letter-spacing:0.035100px;}
.lsbc{letter-spacing:0.045000px;}
.lsbb{letter-spacing:0.049478px;}
.ls12{letter-spacing:0.051000px;}
.ls32{letter-spacing:0.054000px;}
.ls4b{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.070099px;}
.ls63{letter-spacing:0.070199px;}
.ls48{letter-spacing:0.070200px;}
.ls8a{letter-spacing:0.075590px;}
.ls62{letter-spacing:0.076256px;}
.ls66{letter-spacing:0.076805px;}
.lsac{letter-spacing:0.090000px;}
.ls64{letter-spacing:0.091018px;}
.ls10{letter-spacing:0.102000px;}
.ls4e{letter-spacing:0.105300px;}
.ls65{letter-spacing:0.105302px;}
.ls2e{letter-spacing:0.108000px;}
.ls7e{letter-spacing:0.120000px;}
.ls4c{letter-spacing:0.122398px;}
.lsb1{letter-spacing:0.135000px;}
.ls7b{letter-spacing:0.135006px;}
.ls3b{letter-spacing:0.140400px;}
.ls52{letter-spacing:0.144554px;}
.ls35{letter-spacing:0.162000px;}
.ls7a{letter-spacing:0.175500px;}
.lsa{letter-spacing:0.175501px;}
.ls84{letter-spacing:0.180000px;}
.ls91{letter-spacing:0.194361px;}
.ls9c{letter-spacing:0.210598px;}
.ls1f{letter-spacing:0.210600px;}
.ls3a{letter-spacing:0.216000px;}
.lsb6{letter-spacing:0.225000px;}
.ls92{letter-spacing:0.241234px;}
.ls93{letter-spacing:0.241600px;}
.ls2d{letter-spacing:0.245700px;}
.ls24{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.279142px;}
.ls39{letter-spacing:0.280800px;}
.ls6f{letter-spacing:0.293760px;}
.ls7d{letter-spacing:0.300000px;}
.lsad{letter-spacing:0.315000px;}
.ls7{letter-spacing:0.315900px;}
.ls20{letter-spacing:0.324000px;}
.ls97{letter-spacing:0.329407px;}
.ls85{letter-spacing:0.343845px;}
.lsbd{letter-spacing:0.346574px;}
.ls26{letter-spacing:0.351000px;}
.ls16{letter-spacing:0.357000px;}
.lsb7{letter-spacing:0.360000px;}
.ls7f{letter-spacing:0.377999px;}
.ls1b{letter-spacing:0.378000px;}
.ls55{letter-spacing:0.386100px;}
.ls86{letter-spacing:0.403650px;}
.ls9f{letter-spacing:0.405000px;}
.lsb{letter-spacing:0.421199px;}
.ls21{letter-spacing:0.421200px;}
.lsc{letter-spacing:0.421201px;}
.ls2f{letter-spacing:0.426519px;}
.ls33{letter-spacing:0.432000px;}
.ls9e{letter-spacing:0.436503px;}
.ls71{letter-spacing:0.443382px;}
.lsa0{letter-spacing:0.450000px;}
.ls89{letter-spacing:0.456016px;}
.ls27{letter-spacing:0.456300px;}
.ls6d{letter-spacing:0.470016px;}
.ls83{letter-spacing:0.480000px;}
.ls1c{letter-spacing:0.486000px;}
.lse{letter-spacing:0.491399px;}
.ls96{letter-spacing:0.491401px;}
.lsb3{letter-spacing:0.495000px;}
.lsb9{letter-spacing:0.526496px;}
.ls4d{letter-spacing:0.539999px;}
.ls25{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.561600px;}
.ls88{letter-spacing:0.583158px;}
.lsba{letter-spacing:0.585000px;}
.ls2c{letter-spacing:0.594000px;}
.ls4f{letter-spacing:0.596699px;}
.ls5a{letter-spacing:0.616896px;}
.lsab{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.648000px;}
.ls72{letter-spacing:0.648001px;}
.ls14{letter-spacing:0.662812px;}
.ls15{letter-spacing:0.662995px;}
.ls95{letter-spacing:0.669597px;}
.lsf{letter-spacing:0.702000px;}
.ls9d{letter-spacing:0.720000px;}
.lsb5{letter-spacing:0.733526px;}
.ls6b{letter-spacing:0.737100px;}
.ls34{letter-spacing:0.756000px;}
.lsbe{letter-spacing:0.760574px;}
.lsb4{letter-spacing:0.765000px;}
.ls90{letter-spacing:0.809999px;}
.ls2b{letter-spacing:0.810000px;}
.ls36{letter-spacing:0.864000px;}
.ls8d{letter-spacing:0.874796px;}
.lsb8{letter-spacing:0.900000px;}
.ls82{letter-spacing:0.918000px;}
.ls8f{letter-spacing:0.939595px;}
.ls8c{letter-spacing:0.972000px;}
.ls31{letter-spacing:0.982800px;}
.ls13{letter-spacing:1.020000px;}
.ls61{letter-spacing:1.134000px;}
.ls7c{letter-spacing:1.140000px;}
.ls3d{letter-spacing:1.188000px;}
.ls45{letter-spacing:1.242000px;}
.ls77{letter-spacing:1.296000px;}
.ls9a{letter-spacing:1.404000px;}
.ls30{letter-spacing:1.512000px;}
.ls8b{letter-spacing:1.566000px;}
.ls44{letter-spacing:1.782000px;}
.ls9b{letter-spacing:1.998000px;}
.ls94{letter-spacing:2.035800px;}
.ls0{letter-spacing:2.592000px;}
.ls29{letter-spacing:2.700000px;}
.ls67{letter-spacing:2.702592px;}
.ls1{letter-spacing:2.767500px;}
.ls99{letter-spacing:3.132000px;}
.lsa1{letter-spacing:4.620000px;}
.ls87{letter-spacing:6.120000px;}
.ls68{letter-spacing:34.153784px;}
.ls69{letter-spacing:34.164403px;}
.ls80{letter-spacing:34.171912px;}
.ls50{letter-spacing:34.353186px;}
.ls51{letter-spacing:34.363988px;}
.ls5b{letter-spacing:111.162242px;}
.ls58{letter-spacing:121.080964px;}
.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;}
}
.ws74{word-spacing:-121.080964px;}
.ws75{word-spacing:-111.162242px;}
.ws4{word-spacing:-32.136000px;}
.ws5{word-spacing:-19.063200px;}
.ws3{word-spacing:-15.067500px;}
.ws30{word-spacing:-14.700000px;}
.ws3d{word-spacing:-13.596000px;}
.ws6b{word-spacing:-13.500000px;}
.wsb1{word-spacing:-13.338000px;}
.wsa3{word-spacing:-13.122000px;}
.wsa0{word-spacing:-12.744000px;}
.wsae{word-spacing:-12.690000px;}
.ws37{word-spacing:-12.636000px;}
.ws40{word-spacing:-12.582000px;}
.ws1{word-spacing:-12.480000px;}
.ws8a{word-spacing:-12.474000px;}
.wsac{word-spacing:-12.420000px;}
.ws38{word-spacing:-12.366000px;}
.ws6{word-spacing:-12.360000px;}
.ws5d{word-spacing:-12.258000px;}
.wsaf{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.wsa{word-spacing:-12.150000px;}
.ws89{word-spacing:-12.096000px;}
.ws88{word-spacing:-12.042000px;}
.ws68{word-spacing:-11.988000px;}
.ws61{word-spacing:-11.880000px;}
.wsab{word-spacing:-11.826000px;}
.ws9a{word-spacing:-11.772000px;}
.ws9c{word-spacing:-11.718000px;}
.ws33{word-spacing:-11.664000px;}
.ws3b{word-spacing:-11.610000px;}
.ws39{word-spacing:-11.448000px;}
.wse0{word-spacing:-10.620000px;}
.wsdc{word-spacing:-10.485000px;}
.wsde{word-spacing:-10.440000px;}
.wsba{word-spacing:-10.305000px;}
.wsdd{word-spacing:-10.170000px;}
.wsdf{word-spacing:-10.125000px;}
.wsad{word-spacing:-10.003500px;}
.wsbe{word-spacing:-9.990000px;}
.wsbb{word-spacing:-9.855000px;}
.wsbf{word-spacing:-9.765000px;}
.wse1{word-spacing:-9.720000px;}
.wsd0{word-spacing:-9.675000px;}
.wsda{word-spacing:-9.630000px;}
.ws2{word-spacing:-9.600000px;}
.wsb9{word-spacing:-9.585000px;}
.wsbc{word-spacing:-9.450000px;}
.ws5b{word-spacing:-9.114000px;}
.wsbd{word-spacing:-9.000000px;}
.ws3e{word-spacing:-8.950500px;}
.ws79{word-spacing:-8.704800px;}
.ws7a{word-spacing:-8.694000px;}
.wsb0{word-spacing:-8.564400px;}
.ws31{word-spacing:-8.529300px;}
.wsa2{word-spacing:-8.459100px;}
.wsf{word-spacing:-8.424000px;}
.wsc{word-spacing:-8.388900px;}
.ws9b{word-spacing:-8.371350px;}
.ws63{word-spacing:-8.353800px;}
.wse{word-spacing:-8.318700px;}
.ws32{word-spacing:-8.283600px;}
.ws34{word-spacing:-8.248500px;}
.ws36{word-spacing:-8.213400px;}
.wsb{word-spacing:-8.178300px;}
.ws93{word-spacing:-8.143200px;}
.ws35{word-spacing:-8.108100px;}
.ws62{word-spacing:-8.073000px;}
.ws3f{word-spacing:-8.037900px;}
.ws7{word-spacing:-8.034000px;}
.ws3c{word-spacing:-8.002800px;}
.ws9{word-spacing:-7.967700px;}
.wsd{word-spacing:-7.932600px;}
.ws3a{word-spacing:-7.897500px;}
.ws59{word-spacing:-7.862400px;}
.ws78{word-spacing:-7.827300px;}
.ws69{word-spacing:-7.792200px;}
.ws94{word-spacing:-7.757100px;}
.ws86{word-spacing:-7.651800px;}
.ws87{word-spacing:-7.511400px;}
.ws6a{word-spacing:-7.476300px;}
.ws65{word-spacing:-7.344000px;}
.ws8{word-spacing:-7.230600px;}
.ws7b{word-spacing:-6.903360px;}
.ws7e{word-spacing:-6.727104px;}
.ws10{word-spacing:-6.630000px;}
.ws7d{word-spacing:-6.433344px;}
.ws7c{word-spacing:-6.403968px;}
.ws67{word-spacing:-6.345216px;}
.ws64{word-spacing:-6.286464px;}
.ws66{word-spacing:-6.168960px;}
.wsa1{word-spacing:-6.120000px;}
.ws7f{word-spacing:-5.669568px;}
.ws99{word-spacing:-5.508000px;}
.wsc0{word-spacing:-4.620000px;}
.ws60{word-spacing:-4.284000px;}
.ws84{word-spacing:-3.864000px;}
.ws13{word-spacing:-3.276000px;}
.ws16{word-spacing:-2.400000px;}
.wsa6{word-spacing:-2.106000px;}
.ws58{word-spacing:-1.890000px;}
.ws1e{word-spacing:-1.836000px;}
.ws46{word-spacing:-1.782000px;}
.wsaa{word-spacing:-1.728000px;}
.wsb3{word-spacing:-1.674000px;}
.wscc{word-spacing:-1.665000px;}
.ws95{word-spacing:-1.620000px;}
.wsc8{word-spacing:-1.575000px;}
.ws42{word-spacing:-1.566000px;}
.wsc7{word-spacing:-1.530000px;}
.ws8d{word-spacing:-1.512000px;}
.wsef{word-spacing:-1.485000px;}
.wsa8{word-spacing:-1.458000px;}
.wscd{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.404000px;}
.ws6f{word-spacing:-1.350000px;}
.ws27{word-spacing:-1.296000px;}
.ws2f{word-spacing:-1.275000px;}
.ws15{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.242000px;}
.wsc6{word-spacing:-1.215000px;}
.ws5e{word-spacing:-1.188000px;}
.wsc9{word-spacing:-1.170000px;}
.ws96{word-spacing:-1.140000px;}
.ws17{word-spacing:-1.134000px;}
.wsca{word-spacing:-1.125000px;}
.ws8e{word-spacing:-1.080000px;}
.wsc3{word-spacing:-1.035000px;}
.ws4a{word-spacing:-1.026000px;}
.ws2d{word-spacing:-1.020000px;}
.wsd1{word-spacing:-0.990000px;}
.ws22{word-spacing:-0.972000px;}
.ws85{word-spacing:-0.966000px;}
.ws12{word-spacing:-0.960000px;}
.ws5f{word-spacing:-0.924000px;}
.ws1d{word-spacing:-0.918000px;}
.wsce{word-spacing:-0.900000px;}
.ws8b{word-spacing:-0.864000px;}
.wsc5{word-spacing:-0.855000px;}
.ws4b{word-spacing:-0.810000px;}
.ws1b{word-spacing:-0.756000px;}
.wsd8{word-spacing:-0.720000px;}
.ws52{word-spacing:-0.702000px;}
.ws45{word-spacing:-0.648000px;}
.wsec{word-spacing:-0.630000px;}
.ws4c{word-spacing:-0.594000px;}
.wse6{word-spacing:-0.585000px;}
.ws73{word-spacing:-0.561600px;}
.ws76{word-spacing:-0.540000px;}
.wsc4{word-spacing:-0.495000px;}
.ws20{word-spacing:-0.486000px;}
.ws9e{word-spacing:-0.480000px;}
.ws29{word-spacing:-0.456300px;}
.wsd4{word-spacing:-0.450000px;}
.ws50{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.421200px;}
.wse2{word-spacing:-0.405000px;}
.ws53{word-spacing:-0.378000px;}
.ws2e{word-spacing:-0.357000px;}
.ws19{word-spacing:-0.324000px;}
.wsd7{word-spacing:-0.315000px;}
.ws97{word-spacing:-0.300000px;}
.ws4f{word-spacing:-0.270000px;}
.wsc2{word-spacing:-0.245700px;}
.wse5{word-spacing:-0.225000px;}
.ws48{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.210600px;}
.ws9f{word-spacing:-0.180000px;}
.ws82{word-spacing:-0.162000px;}
.wse7{word-spacing:-0.135000px;}
.ws98{word-spacing:-0.120000px;}
.ws43{word-spacing:-0.108000px;}
.ws2b{word-spacing:-0.102000px;}
.wsed{word-spacing:-0.090000px;}
.ws83{word-spacing:-0.070200px;}
.ws6c{word-spacing:-0.060000px;}
.ws1a{word-spacing:-0.054000px;}
.ws2c{word-spacing:-0.051000px;}
.wsb4{word-spacing:-0.035100px;}
.ws11{word-spacing:0.000000px;}
.ws25{word-spacing:0.035100px;}
.wsd2{word-spacing:0.045000px;}
.ws2a{word-spacing:0.051000px;}
.ws44{word-spacing:0.054000px;}
.ws91{word-spacing:0.060000px;}
.wse3{word-spacing:0.090000px;}
.wsb6{word-spacing:0.105300px;}
.ws26{word-spacing:0.108000px;}
.wse4{word-spacing:0.135000px;}
.ws6e{word-spacing:0.162000px;}
.wsdb{word-spacing:0.180000px;}
.ws47{word-spacing:0.216000px;}
.wscb{word-spacing:0.225000px;}
.ws70{word-spacing:0.270000px;}
.wse8{word-spacing:0.315000px;}
.ws18{word-spacing:0.324000px;}
.ws23{word-spacing:0.378000px;}
.ws55{word-spacing:0.420000px;}
.ws57{word-spacing:0.432000px;}
.ws8c{word-spacing:0.486000px;}
.wsa4{word-spacing:0.540000px;}
.wsd3{word-spacing:0.585000px;}
.ws28{word-spacing:0.594000px;}
.wseb{word-spacing:0.630000px;}
.ws56{word-spacing:0.648000px;}
.ws77{word-spacing:0.702000px;}
.wscf{word-spacing:0.765000px;}
.ws9d{word-spacing:0.810000px;}
.ws41{word-spacing:0.864000px;}
.wsa9{word-spacing:0.918000px;}
.ws71{word-spacing:1.020000px;}
.ws72{word-spacing:1.026000px;}
.wsd9{word-spacing:1.035000px;}
.wsd5{word-spacing:1.080000px;}
.wsb8{word-spacing:1.134000px;}
.wse9{word-spacing:1.170000px;}
.wsa5{word-spacing:1.188000px;}
.ws92{word-spacing:1.200000px;}
.wsf0{word-spacing:1.242000px;}
.wsee{word-spacing:1.350000px;}
.wsb2{word-spacing:1.512000px;}
.ws81{word-spacing:1.566000px;}
.ws54{word-spacing:1.620000px;}
.ws49{word-spacing:1.674000px;}
.ws51{word-spacing:1.890000px;}
.ws90{word-spacing:2.106000px;}
.wsb7{word-spacing:2.214000px;}
.ws4d{word-spacing:2.646000px;}
.wsa7{word-spacing:2.700000px;}
.ws14{word-spacing:2.808000px;}
.wsea{word-spacing:2.925000px;}
.ws4e{word-spacing:3.240000px;}
.wsc1{word-spacing:3.726000px;}
.wsd6{word-spacing:3.825000px;}
.ws6d{word-spacing:5.184000px;}
.ws8f{word-spacing:5.292000px;}
.wsb5{word-spacing:6.642000px;}
.ws5a{word-spacing:138.268190px;}
.ws5c{word-spacing:138.389996px;}
.ws80{word-spacing:149.688005px;}
._6{margin-left:-11.737301px;}
._1f{margin-left:-10.440000px;}
._1b{margin-left:-9.360000px;}
._a{margin-left:-7.657209px;}
._3{margin-left:-6.538199px;}
._4{margin-left:-5.113202px;}
._7{margin-left:-3.977363px;}
._2{margin-left:-2.872791px;}
._0{margin-left:-1.776011px;}
._8{width:1.072200px;}
._1{width:2.605200px;}
._16{width:3.707962px;}
._12{width:5.184000px;}
._1d{width:6.493310px;}
._1c{width:7.559998px;}
._1e{width:8.602512px;}
._19{width:9.637800px;}
._18{width:12.960000px;}
._b{width:15.281992px;}
._1a{width:17.460001px;}
._13{width:40.190330px;}
._5{width:42.823672px;}
._17{width:43.963270px;}
._11{width:47.045508px;}
._9{width:48.341404px;}
._c{width:62.671787px;}
._d{width:167.680794px;}
._e{width:240.491990px;}
._14{width:343.161617px;}
._10{width:381.948003px;}
._f{width:402.107984px;}
._15{width:438.763806px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fsd{font-size:27.300001px;}
.fs10{font-size:29.375999px;}
.fs8{font-size:33.150001px;}
.fs7{font-size:35.099999px;}
.fse{font-size:38.016000px;}
.fs5{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fs11{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsb{font-size:66.000000px;}
.fs4{font-size:101.399998px;}
.fsa{font-size:108.000000px;}
.fsf{font-size:120.959999px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.yff{bottom:1.294922px;}
.yd7{bottom:4.750577px;}
.yd5{bottom:6.048294px;}
.y100{bottom:13.390489px;}
.yd6{bottom:20.736305px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y31{bottom:68.313899px;}
.y15a{bottom:68.555999px;}
.y216{bottom:68.794803px;}
.y145{bottom:68.803802px;}
.y1bd{bottom:71.046298px;}
.y2db{bottom:71.343265px;}
.y78{bottom:77.797799px;}
.y193{bottom:80.335801px;}
.y28a{bottom:83.268267px;}
.y30{bottom:83.307899px;}
.y159{bottom:83.554498px;}
.y215{bottom:83.796298px;}
.y144{bottom:83.802302px;}
.y2da{bottom:84.089515px;}
.y1bc{bottom:86.044798px;}
.ye3{bottom:87.084300px;}
.y77{bottom:92.796298px;}
.y192{bottom:95.334300px;}
.y248{bottom:95.799300px;}
.y289{bottom:96.014517px;}
.y2d9{bottom:96.835765px;}
.yf1{bottom:97.051496px;}
.y7f{bottom:97.279806px;}
.y2f{bottom:98.307899px;}
.y158{bottom:98.552997px;}
.y214{bottom:98.794798px;}
.y143{bottom:98.800801px;}
.y1bb{bottom:101.055303px;}
.ye2{bottom:102.082800px;}
.y76{bottom:107.794798px;}
.y288{bottom:108.760767px;}
.y2d8{bottom:109.582015px;}
.y191{bottom:110.332800px;}
.y247{bottom:110.797799px;}
.yf0{bottom:112.052997px;}
.y7e{bottom:112.285809px;}
.y2e{bottom:113.313899px;}
.y157{bottom:113.551496px;}
.y142{bottom:113.799300px;}
.y213{bottom:113.805303px;}
.y1ba{bottom:116.053802px;}
.ye1{bottom:117.082800px;}
.y287{bottom:121.507018px;}
.y2d7{bottom:122.328265px;}
.y75{bottom:122.796298px;}
.y190{bottom:125.332800px;}
.y246{bottom:125.796298px;}
.yef{bottom:127.051496px;}
.y7d{bottom:127.284308px;}
.y2d{bottom:128.307899px;}
.y156{bottom:128.549995px;}
.y141{bottom:128.797799px;}
.y212{bottom:128.803802px;}
.y1b9{bottom:131.052302px;}
.ye0{bottom:132.091804px;}
.y1e3{bottom:134.044798px;}
.y286{bottom:134.253268px;}
.y2d6{bottom:135.074515px;}
.y74{bottom:137.794798px;}
.y18f{bottom:140.332800px;}
.y245{bottom:140.794798px;}
.yee{bottom:142.051496px;}
.y7c{bottom:142.282807px;}
.y2c{bottom:143.307899px;}
.y140{bottom:143.796298px;}
.y211{bottom:143.802302px;}
.y1b8{bottom:146.050801px;}
.y285{bottom:146.999518px;}
.ydf{bottom:147.090304px;}
.y2d5{bottom:147.820766px;}
.y1e2{bottom:149.049300px;}
.y73{bottom:152.799300px;}
.y18e{bottom:155.332800px;}
.y244{bottom:155.800801px;}
.yed{bottom:157.052997px;}
.y155{bottom:157.173147px;}
.y7b{bottom:157.281307px;}
.y13f{bottom:158.794798px;}
.y210{bottom:158.800801px;}
.y284{bottom:159.745768px;}
.y2d4{bottom:160.567016px;}
.y1b7{bottom:161.049300px;}
.yde{bottom:162.088803px;}
.y2b{bottom:162.636898px;}
.y1e1{bottom:164.047799px;}
.y72{bottom:167.797799px;}
.y18d{bottom:170.337906px;}
.y243{bottom:170.799300px;}
.yec{bottom:172.051496px;}
.y154{bottom:172.179150px;}
.y7a{bottom:172.279806px;}
.y283{bottom:172.492018px;}
.y2d3{bottom:173.313266px;}
.y20f{bottom:173.799300px;}
.y13e{bottom:173.814308px;}
.y1b6{bottom:176.047799px;}
.ydd{bottom:177.087302px;}
.y18a{bottom:177.831001px;}
.y1e0{bottom:179.046298px;}
.y18b{bottom:182.583298px;}
.y71{bottom:182.796298px;}
.y282{bottom:185.238268px;}
.y242{bottom:185.797799px;}
.y2d2{bottom:186.059516px;}
.yeb{bottom:187.051496px;}
.y153{bottom:187.177649px;}
.y79{bottom:187.278305px;}
.y20e{bottom:188.797799px;}
.y13d{bottom:188.812807px;}
.y189{bottom:190.332296px;}
.y1b5{bottom:191.046298px;}
.ydc{bottom:192.085801px;}
.y1df{bottom:194.044798px;}
.y18c{bottom:195.975311px;}
.y70{bottom:197.794798px;}
.y281{bottom:197.984518px;}
.y2d1{bottom:198.805766px;}
.y241{bottom:200.796298px;}
.yea{bottom:202.054498px;}
.y152{bottom:202.176149px;}
.y20d{bottom:203.796298px;}
.y13c{bottom:203.811307px;}
.y1b4{bottom:206.044798px;}
.y2a{bottom:206.185812px;}
.ydb{bottom:207.084300px;}
.y188{bottom:209.046298px;}
.y1de{bottom:209.047799px;}
.y280{bottom:210.730768px;}
.y2d0{bottom:211.552016px;}
.y6f{bottom:212.793297px;}
.y240{bottom:215.794798px;}
.ye9{bottom:217.052997px;}
.y151{bottom:217.174648px;}
.y20c{bottom:218.794798px;}
.y13b{bottom:218.809806px;}
.y1b3{bottom:221.046298px;}
.y29{bottom:221.185812px;}
.yda{bottom:222.082800px;}
.y27f{bottom:223.477018px;}
.y187{bottom:224.044798px;}
.y1dd{bottom:224.046298px;}
.y2cf{bottom:224.298266px;}
.y6e{bottom:227.793297px;}
.y23f{bottom:230.806804px;}
.ye8{bottom:232.051496px;}
.y150{bottom:232.173147px;}
.y20b{bottom:233.797799px;}
.y13a{bottom:233.808305px;}
.y1b2{bottom:236.044798px;}
.y28{bottom:236.187313px;}
.y27e{bottom:236.223269px;}
.y2ce{bottom:237.044516px;}
.yd9{bottom:237.087906px;}
.y1dc{bottom:239.044798px;}
.y186{bottom:239.049300px;}
.ya0{bottom:243.348309px;}
.yd4{bottom:244.581001px;}
.y23e{bottom:245.805303px;}
.ye7{bottom:247.049995px;}
.y14f{bottom:247.177649px;}
.y20a{bottom:248.796298px;}
.y139{bottom:248.806804px;}
.y27d{bottom:248.969519px;}
.y2cd{bottom:249.790766px;}
.y1b1{bottom:251.046298px;}
.y27{bottom:251.185812px;}
.y1db{bottom:254.044798px;}
.y185{bottom:254.047799px;}
.yd3{bottom:257.082296px;}
.y9f{bottom:258.346808px;}
.y23d{bottom:260.803802px;}
.y6d{bottom:260.820334px;}
.y27c{bottom:261.715769px;}
.ye6{bottom:262.049995px;}
.y14e{bottom:262.176149px;}
.y2cc{bottom:262.537017px;}
.yd8{bottom:262.725311px;}
.y209{bottom:263.794798px;}
.y138{bottom:263.805303px;}
.y1b0{bottom:266.044798px;}
.y26{bottom:266.185812px;}
.y184{bottom:269.046298px;}
.y1da{bottom:269.052302px;}
.y9e{bottom:273.345307px;}
.y27b{bottom:274.462019px;}
.y2cb{bottom:275.283267px;}
.y23c{bottom:275.802302px;}
.yd2{bottom:275.806827px;}
.y6c{bottom:275.818833px;}
.y14d{bottom:277.174648px;}
.y208{bottom:278.799300px;}
.y137{bottom:278.803802px;}
.y1af{bottom:281.046298px;}
.y25{bottom:281.185812px;}
.y183{bottom:284.044798px;}
.y1d9{bottom:284.050801px;}
.y27a{bottom:287.208269px;}
.y2ca{bottom:288.029517px;}
.y9d{bottom:288.343807px;}
.ye5{bottom:290.491804px;}
.y23b{bottom:290.800801px;}
.yd1{bottom:290.805326px;}
.y6b{bottom:290.817333px;}
.y14c{bottom:292.173147px;}
.y207{bottom:293.797799px;}
.y136{bottom:293.802302px;}
.y1ae{bottom:296.044798px;}
.y24{bottom:296.187313px;}
.y182{bottom:299.044798px;}
.y1d8{bottom:299.049300px;}
.y279{bottom:299.954519px;}
.y2c9{bottom:300.775767px;}
.y9c{bottom:303.342306px;}
.ye4{bottom:305.490303px;}
.y23a{bottom:305.799300px;}
.yd0{bottom:305.803825px;}
.y6a{bottom:305.815832px;}
.y14b{bottom:307.171646px;}
.y206{bottom:308.796298px;}
.y135{bottom:308.800801px;}
.y1ad{bottom:311.043297px;}
.y23{bottom:311.185812px;}
.y278{bottom:312.700769px;}
.y2c8{bottom:313.522017px;}
.y181{bottom:314.043297px;}
.y1d7{bottom:314.047799px;}
.y9b{bottom:318.340805px;}
.y239{bottom:320.797799px;}
.ycf{bottom:320.802325px;}
.y69{bottom:320.814331px;}
.y205{bottom:323.794798px;}
.y134{bottom:323.799300px;}
.y277{bottom:325.447019px;}
.y1ac{bottom:326.043297px;}
.y22{bottom:326.185812px;}
.y2c7{bottom:326.268267px;}
.y180{bottom:329.043297px;}
.y1d6{bottom:329.046298px;}
.y238{bottom:335.796298px;}
.y14a{bottom:335.799323px;}
.yce{bottom:335.800824px;}
.y68{bottom:335.812830px;}
.y276{bottom:338.193269px;}
.y204{bottom:338.794798px;}
.y133{bottom:338.797799px;}
.y2c6{bottom:339.014517px;}
.y21{bottom:341.187313px;}
.y17f{bottom:344.043297px;}
.y1d5{bottom:344.044798px;}
.y9a{bottom:348.489304px;}
.y237{bottom:350.794798px;}
.y149{bottom:350.797822px;}
.ycd{bottom:350.799323px;}
.y67{bottom:350.811329px;}
.y275{bottom:350.939520px;}
.y2c5{bottom:351.760767px;}
.y132{bottom:353.796298px;}
.y203{bottom:353.803825px;}
.y20{bottom:356.185812px;}
.y1d4{bottom:359.043297px;}
.y1ab{bottom:359.046321px;}
.y274{bottom:363.685770px;}
.y10d{bottom:364.277405px;}
.y2c4{bottom:364.507018px;}
.y148{bottom:365.796321px;}
.ycc{bottom:365.797822px;}
.y66{bottom:365.809829px;}
.y99{bottom:365.929804px;}
.y131{bottom:368.794798px;}
.y202{bottom:368.802325px;}
.y1f{bottom:371.185812px;}
.y10a{bottom:371.770500px;}
.y1aa{bottom:374.044821px;}
.y273{bottom:376.432020px;}
.y10b{bottom:376.522797px;}
.y17e{bottom:377.044821px;}
.y2c3{bottom:377.253268px;}
.y147{bottom:380.794821px;}
.ycb{bottom:380.796321px;}
.y65{bottom:380.808328px;}
.y98{bottom:383.370304px;}
.y130{bottom:383.796321px;}
.y201{bottom:383.800824px;}
.y109{bottom:384.273319px;}
.y1e{bottom:386.185812px;}
.y1a9{bottom:389.050824px;}
.y272{bottom:389.178270px;}
.y10c{bottom:389.914810px;}
.y2c2{bottom:389.999518px;}
.y17d{bottom:392.044821px;}
.y1d3{bottom:392.046321px;}
.y146{bottom:395.793320px;}
.yca{bottom:395.794821px;}
.y64{bottom:395.806827px;}
.y12f{bottom:398.794821px;}
.y200{bottom:398.799323px;}
.y97{bottom:400.810804px;}
.y1d{bottom:401.203812px;}
.y271{bottom:401.924520px;}
.y2c1{bottom:402.745768px;}
.y108{bottom:402.984319px;}
.y1a8{bottom:404.049323px;}
.y1d2{bottom:407.044821px;}
.y17c{bottom:407.065832px;}
.yc9{bottom:410.797822px;}
.y63{bottom:410.805326px;}
.y12e{bottom:413.797822px;}
.y270{bottom:414.670770px;}
.y2c0{bottom:415.492018px;}
.y1c{bottom:416.202311px;}
.y107{bottom:417.982819px;}
.y96{bottom:418.251304px;}
.y1a7{bottom:419.047822px;}
.y1d1{bottom:422.047822px;}
.y17b{bottom:422.064331px;}
.yc8{bottom:425.796321px;}
.y62{bottom:425.803825px;}
.y26f{bottom:427.417020px;}
.y2bf{bottom:428.238268px;}
.y12d{bottom:428.796321px;}
.y1a6{bottom:434.046321px;}
.y95{bottom:435.691804px;}
.y1d0{bottom:437.046321px;}
.y17a{bottom:437.062830px;}
.y26e{bottom:440.163270px;}
.yc7{bottom:440.794821px;}
.y61{bottom:440.802325px;}
.y2be{bottom:440.984518px;}
.y12c{bottom:443.794821px;}
.y2f5{bottom:444.556827px;}
.y106{bottom:448.155318px;}
.y1a5{bottom:449.044821px;}
.y1cf{bottom:452.044821px;}
.y179{bottom:452.061329px;}
.y26d{bottom:452.909520px;}
.y94{bottom:453.132304px;}
.y16c{bottom:453.261465px;}
.y2bd{bottom:453.730768px;}
.yc6{bottom:455.793320px;}
.y60{bottom:455.800824px;}
.y12b{bottom:458.794821px;}
.y2f4{bottom:459.555326px;}
.y1b{bottom:463.452311px;}
.y1a4{bottom:464.044821px;}
.y105{bottom:465.595818px;}
.y26c{bottom:465.655771px;}
.y2bc{bottom:466.477018px;}
.y1ce{bottom:467.044821px;}
.y178{bottom:467.059829px;}
.y16b{bottom:468.259964px;}
.y93{bottom:470.572804px;}
.yc5{bottom:470.793320px;}
.y5f{bottom:470.799323px;}
.y1ff{bottom:473.796321px;}
.y12a{bottom:473.803825px;}
.y2f3{bottom:474.553825px;}
.y26b{bottom:478.402021px;}
.y1a3{bottom:479.053825px;}
.y2bb{bottom:479.223269px;}
.y1a{bottom:479.949311px;}
.y1cd{bottom:482.046321px;}
.y177{bottom:482.058328px;}
.y104{bottom:483.036318px;}
.y16a{bottom:483.258463px;}
.y5e{bottom:485.797822px;}
.y92{bottom:488.013305px;}
.y1fe{bottom:488.794821px;}
.y129{bottom:488.802325px;}
.y2f2{bottom:489.552325px;}
.y26a{bottom:491.148271px;}
.y2ba{bottom:491.969519px;}
.y1a2{bottom:494.052325px;}
.y19{bottom:496.446311px;}
.y1cc{bottom:497.044821px;}
.y176{bottom:497.056827px;}
.y169{bottom:498.256962px;}
.y103{bottom:500.476818px;}
.y5d{bottom:500.796321px;}
.y128{bottom:503.800824px;}
.yc4{bottom:503.806827px;}
.y269{bottom:503.894521px;}
.y2f1{bottom:504.550824px;}
.y2b9{bottom:504.715769px;}
.y91{bottom:505.453805px;}
.y1a1{bottom:509.050824px;}
.y1cb{bottom:512.044821px;}
.y175{bottom:512.055326px;}
.y18{bottom:512.943311px;}
.y168{bottom:513.255462px;}
.y5c{bottom:515.794821px;}
.y268{bottom:516.640771px;}
.y2b8{bottom:517.462019px;}
.y102{bottom:517.917318px;}
.y127{bottom:518.799323px;}
.yc3{bottom:518.805326px;}
.y2f0{bottom:519.549323px;}
.y90{bottom:522.894305px;}
.y1a0{bottom:524.049323px;}
.y1ca{bottom:527.044821px;}
.y174{bottom:527.053825px;}
.y167{bottom:528.253961px;}
.y267{bottom:529.387021px;}
.y17{bottom:529.440311px;}
.y2b7{bottom:530.208269px;}
.y5b{bottom:530.796321px;}
.y236{bottom:530.803825px;}
.y126{bottom:533.797822px;}
.yc2{bottom:533.803825px;}
.y2ef{bottom:534.547822px;}
.y101{bottom:535.357819px;}
.y19f{bottom:539.047822px;}
.y8f{bottom:540.334805px;}
.y173{bottom:542.052325px;}
.y266{bottom:542.133271px;}
.y2b6{bottom:542.954519px;}
.y166{bottom:543.252460px;}
.y5a{bottom:545.794821px;}
.y235{bottom:545.802325px;}
.y16{bottom:545.937311px;}
.yfe{bottom:546.796509px;}
.y125{bottom:548.796321px;}
.yc1{bottom:548.802325px;}
.y2ee{bottom:549.546321px;}
.y19e{bottom:554.046321px;}
.yfd{bottom:554.295319px;}
.y265{bottom:554.879521px;}
.y2b5{bottom:555.700769px;}
.y172{bottom:557.050824px;}
.y8e{bottom:557.775305px;}
.y165{bottom:558.250959px;}
.y59{bottom:560.793320px;}
.y234{bottom:560.800824px;}
.y15{bottom:562.458311px;}
.y124{bottom:563.794821px;}
.yc0{bottom:563.800824px;}
.y2ed{bottom:564.544821px;}
.y264{bottom:567.625771px;}
.y2b4{bottom:568.447019px;}
.y19d{bottom:569.044821px;}
.y171{bottom:572.049323px;}
.y164{bottom:573.249458px;}
.y8d{bottom:575.215805px;}
.y58{bottom:575.793320px;}
.y233{bottom:575.799323px;}
.ybf{bottom:578.799323px;}
.y123{bottom:578.815786px;}
.y14{bottom:578.955311px;}
.y2ec{bottom:579.543320px;}
.y263{bottom:580.372022px;}
.y2b3{bottom:581.193269px;}
.y19c{bottom:584.043320px;}
.y170{bottom:587.047822px;}
.y163{bottom:588.247957px;}
.y232{bottom:590.797822px;}
.y8c{bottom:592.653305px;}
.y262{bottom:593.118272px;}
.ybe{bottom:593.797822px;}
.y122{bottom:593.814285px;}
.y2b2{bottom:593.939520px;}
.y13{bottom:595.452311px;}
.y2eb{bottom:601.297822px;}
.y16f{bottom:602.046321px;}
.y162{bottom:603.246457px;}
.y231{bottom:605.796321px;}
.y261{bottom:605.864522px;}
.y2b1{bottom:606.685770px;}
.y57{bottom:608.794821px;}
.ybd{bottom:608.796321px;}
.y121{bottom:608.812784px;}
.y12{bottom:611.949311px;}
.yfc{bottom:612.612445px;}
.y2ea{bottom:616.296321px;}
.y16e{bottom:617.044821px;}
.y161{bottom:618.244956px;}
.y260{bottom:618.610772px;}
.y2b0{bottom:619.432020px;}
.y230{bottom:620.794821px;}
.ybc{bottom:623.794821px;}
.y56{bottom:623.803825px;}
.y120{bottom:623.811284px;}
.yfb{bottom:627.610944px;}
.y11{bottom:628.446311px;}
.y25f{bottom:631.357022px;}
.y16d{bottom:632.043320px;}
.y2af{bottom:632.178270px;}
.y160{bottom:633.243455px;}
.y22f{bottom:635.794821px;}
.y2e9{bottom:638.044821px;}
.y1c9{bottom:638.112445px;}
.y1fd{bottom:638.794821px;}
.ybb{bottom:638.797822px;}
.y55{bottom:638.802325px;}
.y11f{bottom:638.809783px;}
.yfa{bottom:642.609444px;}
.y25e{bottom:644.103272px;}
.y2ae{bottom:644.924520px;}
.y10{bottom:644.943311px;}
.y15f{bottom:648.241954px;}
.y22e{bottom:650.794821px;}
.y8b{bottom:651.253961px;}
.y1c8{bottom:653.110944px;}
.yba{bottom:653.796321px;}
.y54{bottom:653.800824px;}
.y11e{bottom:653.808282px;}
.y1fc{bottom:653.817287px;}
.y25d{bottom:656.849522px;}
.yf9{bottom:657.607943px;}
.y2ad{bottom:657.670770px;}
.y2e8{bottom:659.793320px;}
.yf{bottom:661.440311px;}
.y15e{bottom:663.240453px;}
.y22d{bottom:665.797822px;}
.y8a{bottom:666.252460px;}
.y1c7{bottom:668.109444px;}
.yb9{bottom:668.794821px;}
.y53{bottom:668.799323px;}
.y11d{bottom:668.806781px;}
.y1fb{bottom:668.815786px;}
.y25c{bottom:669.595772px;}
.y2ac{bottom:670.417020px;}
.yf8{bottom:672.606442px;}
.y2e7{bottom:674.793320px;}
.ye{bottom:677.937311px;}
.y15d{bottom:678.241954px;}
.y22c{bottom:680.796321px;}
.y89{bottom:681.250959px;}
.y25b{bottom:682.342022px;}
.y1c6{bottom:683.107943px;}
.y2ab{bottom:683.163270px;}
.y52{bottom:683.797822px;}
.y11c{bottom:683.805280px;}
.yb8{bottom:683.812784px;}
.y1fa{bottom:683.814285px;}
.yf7{bottom:687.604941px;}
.y15c{bottom:693.240453px;}
.y19b{bottom:693.607943px;}
.yd{bottom:694.440311px;}
.y25a{bottom:695.088273px;}
.y1e9{bottom:695.521938px;}
.y22b{bottom:695.794821px;}
.y2aa{bottom:695.909520px;}
.y88{bottom:696.249458px;}
.y1c5{bottom:698.106442px;}
.y51{bottom:698.796321px;}
.y11b{bottom:698.803780px;}
.yb7{bottom:698.811284px;}
.y1f9{bottom:698.812784px;}
.y2e6{bottom:701.800778px;}
.yf6{bottom:702.603440px;}
.y259{bottom:707.834523px;}
.y15b{bottom:708.238953px;}
.y19a{bottom:708.606442px;}
.y2a9{bottom:708.655771px;}
.y1e8{bottom:710.520437px;}
.y22a{bottom:710.797822px;}
.yc{bottom:710.937311px;}
.y87{bottom:711.247957px;}
.y1c4{bottom:713.104941px;}
.y50{bottom:713.794821px;}
.y11a{bottom:713.802279px;}
.yb6{bottom:713.809783px;}
.y1f8{bottom:713.811284px;}
.y2e5{bottom:716.799277px;}
.yf5{bottom:717.601940px;}
.y258{bottom:720.580773px;}
.y2a8{bottom:721.402021px;}
.y199{bottom:723.604941px;}
.y1e7{bottom:725.523484px;}
.y229{bottom:725.796321px;}
.y86{bottom:726.246457px;}
.yb{bottom:727.434311px;}
.y1c3{bottom:728.103440px;}
.y4f{bottom:728.796321px;}
.y119{bottom:728.800778px;}
.yb5{bottom:728.808282px;}
.y1f7{bottom:728.809783px;}
.y2e4{bottom:731.797776px;}
.yf4{bottom:732.600439px;}
.y257{bottom:733.327023px;}
.y2a7{bottom:734.148271px;}
.y198{bottom:738.603440px;}
.y1e6{bottom:740.521984px;}
.y228{bottom:740.794821px;}
.y85{bottom:741.244956px;}
.y1c2{bottom:743.101940px;}
.y4e{bottom:743.794821px;}
.y118{bottom:743.799277px;}
.yb4{bottom:743.806781px;}
.y1f6{bottom:743.808282px;}
.y256{bottom:746.073273px;}
.y2e3{bottom:746.796276px;}
.y2a6{bottom:746.894521px;}
.yf3{bottom:747.600439px;}
.y197{bottom:753.601940px;}
.y1e5{bottom:755.520483px;}
.y227{bottom:755.794775px;}
.y84{bottom:756.243455px;}
.y34{bottom:757.145396px;}
.ya{bottom:757.434265px;}
.y1c1{bottom:758.100439px;}
.y117{bottom:758.797776px;}
.y4d{bottom:758.799277px;}
.yb3{bottom:758.805280px;}
.y1f5{bottom:758.806781px;}
.y255{bottom:758.819523px;}
.y2a5{bottom:759.640771px;}
.y2e2{bottom:761.794775px;}
.yf2{bottom:762.598938px;}
.y196{bottom:768.600439px;}
.y1e4{bottom:770.518982px;}
.y226{bottom:770.794775px;}
.y83{bottom:771.241954px;}
.y254{bottom:771.565773px;}
.y2a4{bottom:772.387021px;}
.y1c0{bottom:773.100439px;}
.y116{bottom:773.796276px;}
.y4c{bottom:773.797776px;}
.yb2{bottom:773.803780px;}
.y1f4{bottom:773.805280px;}
.y9{bottom:775.434265px;}
.y2e1{bottom:776.793274px;}
.y33{bottom:778.144646px;}
.y195{bottom:783.600439px;}
.y253{bottom:784.312023px;}
.y2a3{bottom:785.133271px;}
.y225{bottom:785.794775px;}
.y82{bottom:786.240453px;}
.y1bf{bottom:788.100439px;}
.y115{bottom:788.794775px;}
.y4b{bottom:788.796276px;}
.yb1{bottom:788.802279px;}
.y1f3{bottom:788.803780px;}
.y2e0{bottom:791.793274px;}
.y7{bottom:793.434265px;}
.y252{bottom:797.058273px;}
.y2a2{bottom:797.879521px;}
.y8{bottom:798.534485px;}
.y194{bottom:798.598938px;}
.y32{bottom:799.143895px;}
.y224{bottom:800.796276px;}
.y81{bottom:801.240453px;}
.y1be{bottom:803.098938px;}
.y4a{bottom:803.794775px;}
.yb0{bottom:803.800778px;}
.y1f2{bottom:803.802279px;}
.y251{bottom:809.804524px;}
.y2a1{bottom:810.625771px;}
.y223{bottom:815.794775px;}
.y80{bottom:816.238953px;}
.y49{bottom:818.796276px;}
.yaf{bottom:818.799277px;}
.y1f1{bottom:818.800778px;}
.y2df{bottom:818.802279px;}
.y250{bottom:822.550774px;}
.y2a0{bottom:823.372022px;}
.y6{bottom:826.428264px;}
.y222{bottom:830.796276px;}
.y48{bottom:833.794775px;}
.yae{bottom:833.797776px;}
.y1f0{bottom:833.799277px;}
.y2de{bottom:833.800778px;}
.y24f{bottom:835.297024px;}
.y29f{bottom:836.118272px;}
.y221{bottom:845.794775px;}
.y24e{bottom:848.043274px;}
.yad{bottom:848.796276px;}
.y1ef{bottom:848.797776px;}
.y47{bottom:848.799277px;}
.y29e{bottom:848.864522px;}
.y24d{bottom:860.793274px;}
.y220{bottom:860.794775px;}
.y29d{bottom:861.610772px;}
.yac{bottom:863.794775px;}
.y1ee{bottom:863.796276px;}
.y46{bottom:863.797776px;}
.y5{bottom:871.428264px;}
.y29c{bottom:874.357022px;}
.y21f{bottom:875.794775px;}
.yab{bottom:878.794775px;}
.y45{bottom:878.796276px;}
.y29b{bottom:887.103272px;}
.y21e{bottom:890.794775px;}
.y44{bottom:893.794775px;}
.y29a{bottom:899.849522px;}
.y21d{bottom:905.794775px;}
.y2dd{bottom:908.793274px;}
.y1ed{bottom:908.794775px;}
.y43{bottom:908.796276px;}
.yaa{bottom:908.797776px;}
.y114{bottom:908.802279px;}
.y299{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y21c{bottom:920.794775px;}
.y2dc{bottom:923.793274px;}
.y42{bottom:923.794775px;}
.ya9{bottom:923.796276px;}
.y113{bottom:923.800778px;}
.y298{bottom:925.342022px;}
.y35{bottom:926.409576px;}
.y21b{bottom:935.793274px;}
.y297{bottom:938.088273px;}
.ya8{bottom:938.794775px;}
.y41{bottom:938.796276px;}
.y24c{bottom:938.797776px;}
.y112{bottom:938.799277px;}
.y21a{bottom:950.793274px;}
.y296{bottom:950.834523px;}
.y40{bottom:953.794775px;}
.y24b{bottom:953.796276px;}
.y111{bottom:953.797776px;}
.ya7{bottom:953.800778px;}
.y295{bottom:963.580773px;}
.y3f{bottom:968.794775px;}
.y110{bottom:968.796276px;}
.ya6{bottom:968.799277px;}
.y294{bottom:976.327023px;}
.y3e{bottom:983.794775px;}
.ya5{bottom:983.797776px;}
.y24a{bottom:983.799277px;}
.y219{bottom:983.803780px;}
.y293{bottom:989.073273px;}
.y3d{bottom:998.794775px;}
.ya4{bottom:998.796276px;}
.y249{bottom:998.797776px;}
.y218{bottom:998.802279px;}
.y292{bottom:1001.819523px;}
.y3c{bottom:1013.794775px;}
.y10f{bottom:1013.796276px;}
.y1ec{bottom:1013.797776px;}
.y217{bottom:1013.800778px;}
.y291{bottom:1014.565773px;}
.y290{bottom:1027.312023px;}
.y3b{bottom:1028.794775px;}
.y1eb{bottom:1028.796276px;}
.ya3{bottom:1028.799277px;}
.y28f{bottom:1040.058273px;}
.y10e{bottom:1043.794775px;}
.y3a{bottom:1043.796276px;}
.ya2{bottom:1043.797776px;}
.y28e{bottom:1052.804524px;}
.y39{bottom:1058.794775px;}
.ya1{bottom:1058.796276px;}
.y28d{bottom:1065.550774px;}
.y1ea{bottom:1073.793274px;}
.y38{bottom:1073.794775px;}
.y28c{bottom:1078.297024px;}
.y37{bottom:1088.793274px;}
.y28b{bottom:1091.043274px;}
.y36{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h20{height:19.008000px;}
.hf{height:23.842749px;}
.h9{height:28.050293px;}
.h21{height:28.200959px;}
.h1c{height:28.511999px;}
.h22{height:30.316031px;}
.h1f{height:30.830377px;}
.h13{height:35.394000px;}
.h11{height:36.681152px;}
.h1e{height:38.092032px;}
.hc{height:38.838867px;}
.h12{height:41.134746px;}
.h10{height:41.158746px;}
.h1b{height:41.538000px;}
.h1a{height:43.008000px;}
.h2{height:43.140000px;}
.h17{height:43.154297px;}
.h4{height:44.218500px;}
.h27{height:44.505000px;}
.h28{height:45.090000px;}
.h3{height:45.744000px;}
.h26{height:46.080000px;}
.h16{height:47.469727px;}
.hb{height:48.450442px;}
.h8{height:48.451172px;}
.ha{height:48.451174px;}
.he{height:53.406000px;}
.h23{height:54.059974px;}
.h24{height:54.071981px;}
.h15{height:54.101997px;}
.h25{height:54.102180px;}
.hd{height:54.108000px;}
.h18{height:55.296000px;}
.h14{height:76.356000px;}
.h19{height:87.989999px;}
.h5{height:110.292000px;}
.h7{height:112.201172px;}
.h6{height:112.225178px;}
.h1d{height:119.629439px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w5{width:17.711999px;}
.w4{width:19.872000px;}
.w3{width:31.968000px;}
.w2{width:33.696001px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-1.295700px;}
.x0{left:0.000000px;}
.x14{left:4.319962px;}
.xe{left:7.344315px;}
.x15{left:11.238009px;}
.x7{left:14.082027px;}
.xf{left:18.578043px;}
.x2{left:61.191450px;}
.x8{left:140.952747px;}
.x4{left:233.456406px;}
.x9{left:238.143906px;}
.x6{left:251.458647px;}
.x21{left:300.594749px;}
.xa{left:372.344402px;}
.x17{left:383.818497px;}
.x19{left:394.618515px;}
.x18{left:402.394501px;}
.x13{left:423.501022px;}
.x1a{left:470.378998px;}
.x16{left:480.822006px;}
.x1b{left:488.090561px;}
.x1c{left:523.693497px;}
.x1e{left:534.492737px;}
.x1d{left:542.268768px;}
.x3{left:584.586594px;}
.xc{left:615.328491px;}
.x10{left:626.128784px;}
.x11{left:729.552017px;}
.x12{left:739.487869px;}
.x5{left:813.203979px;}
.x1f{left:816.003571px;}
.x20{left:817.278168px;}
.xb{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-27.711734pt;}
.vc{vertical-align:-20.067220pt;}
.v4{vertical-align:-18.134115pt;}
.v8{vertical-align:-16.319987pt;}
.v9{vertical-align:-15.413330pt;}
.v5{vertical-align:-9.621431pt;}
.vd{vertical-align:-6.136320pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.600098pt;}
.vb{vertical-align:12.693359pt;}
.v7{vertical-align:16.250651pt;}
.v3{vertical-align:18.134115pt;}
.v2{vertical-align:27.733073pt;}
.va{vertical-align:39.983999pt;}
.ls53{letter-spacing:-4.608000pt;}
.ls18{letter-spacing:-2.496000pt;}
.lsa9{letter-spacing:-1.720000pt;}
.ls19{letter-spacing:-1.622400pt;}
.lsb2{letter-spacing:-1.560000pt;}
.ls46{letter-spacing:-1.440000pt;}
.lsc2{letter-spacing:-1.280000pt;}
.lsc4{letter-spacing:-1.200000pt;}
.lsaf{letter-spacing:-1.160000pt;}
.ls79{letter-spacing:-1.066667pt;}
.lsc5{letter-spacing:-1.040000pt;}
.ls40{letter-spacing:-0.960000pt;}
.ls56{letter-spacing:-0.906667pt;}
.ls98{letter-spacing:-0.864000pt;}
.ls3f{letter-spacing:-0.816000pt;}
.lsae{letter-spacing:-0.760000pt;}
.ls37{letter-spacing:-0.720000pt;}
.lsa6{letter-spacing:-0.680000pt;}
.ls70{letter-spacing:-0.678912pt;}
.ls42{letter-spacing:-0.672000pt;}
.lsa4{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.624000pt;}
.lsbf{letter-spacing:-0.600000pt;}
.ls5e{letter-spacing:-0.576000pt;}
.ls76{letter-spacing:-0.528000pt;}
.lsc3{letter-spacing:-0.520000pt;}
.ls60{letter-spacing:-0.499200pt;}
.ls5c{letter-spacing:-0.496128pt;}
.ls6c{letter-spacing:-0.480000pt;}
.lsa2{letter-spacing:-0.440000pt;}
.ls57{letter-spacing:-0.432000pt;}
.ls74{letter-spacing:-0.405600pt;}
.lsaa{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.391680pt;}
.ls3c{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.373333pt;}
.ls5d{letter-spacing:-0.339456pt;}
.ls54{letter-spacing:-0.336000pt;}
.lsc1{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls73{letter-spacing:-0.280800pt;}
.lsb0{letter-spacing:-0.280000pt;}
.ls1a{letter-spacing:-0.240000pt;}
.ls5f{letter-spacing:-0.218400pt;}
.lsa5{letter-spacing:-0.200000pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls81{letter-spacing:-0.187200pt;}
.lsa3{letter-spacing:-0.160000pt;}
.ls75{letter-spacing:-0.156000pt;}
.ls49{letter-spacing:-0.144000pt;}
.ls6a{letter-spacing:-0.124800pt;}
.lsc0{letter-spacing:-0.120000pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls4a{letter-spacing:-0.093600pt;}
.lsa8{letter-spacing:-0.080000pt;}
.ls41{letter-spacing:-0.062400pt;}
.ls78{letter-spacing:-0.053333pt;}
.ls22{letter-spacing:-0.048000pt;}
.ls28{letter-spacing:-0.045333pt;}
.lsa7{letter-spacing:-0.040000pt;}
.ls23{letter-spacing:-0.031200pt;}
.ls6e{letter-spacing:-0.026112pt;}
.ls17{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000074pt;}
.ls6{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011673pt;}
.ls3{letter-spacing:0.011754pt;}
.ls5{letter-spacing:0.012242pt;}
.ls4{letter-spacing:0.012405pt;}
.ls8e{letter-spacing:0.014397pt;}
.ls43{letter-spacing:0.031200pt;}
.lsbc{letter-spacing:0.040000pt;}
.lsbb{letter-spacing:0.043980pt;}
.ls12{letter-spacing:0.045333pt;}
.ls32{letter-spacing:0.048000pt;}
.ls4b{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.062311pt;}
.ls63{letter-spacing:0.062399pt;}
.ls48{letter-spacing:0.062400pt;}
.ls8a{letter-spacing:0.067191pt;}
.ls62{letter-spacing:0.067783pt;}
.ls66{letter-spacing:0.068271pt;}
.lsac{letter-spacing:0.080000pt;}
.ls64{letter-spacing:0.080905pt;}
.ls10{letter-spacing:0.090667pt;}
.ls4e{letter-spacing:0.093600pt;}
.ls65{letter-spacing:0.093602pt;}
.ls2e{letter-spacing:0.096000pt;}
.ls7e{letter-spacing:0.106667pt;}
.ls4c{letter-spacing:0.108798pt;}
.lsb1{letter-spacing:0.120000pt;}
.ls7b{letter-spacing:0.120005pt;}
.ls3b{letter-spacing:0.124800pt;}
.ls52{letter-spacing:0.128493pt;}
.ls35{letter-spacing:0.144000pt;}
.ls7a{letter-spacing:0.156000pt;}
.lsa{letter-spacing:0.156001pt;}
.ls84{letter-spacing:0.160000pt;}
.ls91{letter-spacing:0.172766pt;}
.ls9c{letter-spacing:0.187198pt;}
.ls1f{letter-spacing:0.187200pt;}
.ls3a{letter-spacing:0.192000pt;}
.lsb6{letter-spacing:0.200000pt;}
.ls92{letter-spacing:0.214430pt;}
.ls93{letter-spacing:0.214755pt;}
.ls2d{letter-spacing:0.218400pt;}
.ls24{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.248126pt;}
.ls39{letter-spacing:0.249600pt;}
.ls6f{letter-spacing:0.261120pt;}
.ls7d{letter-spacing:0.266667pt;}
.lsad{letter-spacing:0.280000pt;}
.ls7{letter-spacing:0.280800pt;}
.ls20{letter-spacing:0.288000pt;}
.ls97{letter-spacing:0.292806pt;}
.ls85{letter-spacing:0.305640pt;}
.lsbd{letter-spacing:0.308066pt;}
.ls26{letter-spacing:0.312000pt;}
.ls16{letter-spacing:0.317333pt;}
.lsb7{letter-spacing:0.320000pt;}
.ls7f{letter-spacing:0.335999pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls55{letter-spacing:0.343200pt;}
.ls86{letter-spacing:0.358800pt;}
.ls9f{letter-spacing:0.360000pt;}
.lsb{letter-spacing:0.374399pt;}
.ls21{letter-spacing:0.374400pt;}
.lsc{letter-spacing:0.374401pt;}
.ls2f{letter-spacing:0.379128pt;}
.ls33{letter-spacing:0.384000pt;}
.ls9e{letter-spacing:0.388002pt;}
.ls71{letter-spacing:0.394117pt;}
.lsa0{letter-spacing:0.400000pt;}
.ls89{letter-spacing:0.405348pt;}
.ls27{letter-spacing:0.405600pt;}
.ls6d{letter-spacing:0.417792pt;}
.ls83{letter-spacing:0.426667pt;}
.ls1c{letter-spacing:0.432000pt;}
.lse{letter-spacing:0.436799pt;}
.ls96{letter-spacing:0.436801pt;}
.lsb3{letter-spacing:0.440000pt;}
.lsb9{letter-spacing:0.467996pt;}
.ls4d{letter-spacing:0.479999pt;}
.ls25{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.499200pt;}
.ls88{letter-spacing:0.518363pt;}
.lsba{letter-spacing:0.520000pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls4f{letter-spacing:0.530399pt;}
.ls5a{letter-spacing:0.548352pt;}
.lsab{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls72{letter-spacing:0.576001pt;}
.ls14{letter-spacing:0.589166pt;}
.ls15{letter-spacing:0.589329pt;}
.ls95{letter-spacing:0.595198pt;}
.lsf{letter-spacing:0.624000pt;}
.ls9d{letter-spacing:0.640000pt;}
.lsb5{letter-spacing:0.652023pt;}
.ls6b{letter-spacing:0.655200pt;}
.ls34{letter-spacing:0.672000pt;}
.lsbe{letter-spacing:0.676066pt;}
.lsb4{letter-spacing:0.680000pt;}
.ls90{letter-spacing:0.719999pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls36{letter-spacing:0.768000pt;}
.ls8d{letter-spacing:0.777597pt;}
.lsb8{letter-spacing:0.800000pt;}
.ls82{letter-spacing:0.816000pt;}
.ls8f{letter-spacing:0.835195pt;}
.ls8c{letter-spacing:0.864000pt;}
.ls31{letter-spacing:0.873600pt;}
.ls13{letter-spacing:0.906667pt;}
.ls61{letter-spacing:1.008000pt;}
.ls7c{letter-spacing:1.013333pt;}
.ls3d{letter-spacing:1.056000pt;}
.ls45{letter-spacing:1.104000pt;}
.ls77{letter-spacing:1.152000pt;}
.ls9a{letter-spacing:1.248000pt;}
.ls30{letter-spacing:1.344000pt;}
.ls8b{letter-spacing:1.392000pt;}
.ls44{letter-spacing:1.584000pt;}
.ls9b{letter-spacing:1.776000pt;}
.ls94{letter-spacing:1.809600pt;}
.ls0{letter-spacing:2.304000pt;}
.ls29{letter-spacing:2.400000pt;}
.ls67{letter-spacing:2.402304pt;}
.ls1{letter-spacing:2.460000pt;}
.ls99{letter-spacing:2.784000pt;}
.lsa1{letter-spacing:4.106667pt;}
.ls87{letter-spacing:5.440000pt;}
.ls68{letter-spacing:30.358919pt;}
.ls69{letter-spacing:30.368359pt;}
.ls80{letter-spacing:30.375032pt;}
.ls50{letter-spacing:30.536165pt;}
.ls51{letter-spacing:30.545767pt;}
.ls5b{letter-spacing:98.810881pt;}
.ls58{letter-spacing:107.627523pt;}
.ws74{word-spacing:-107.627523pt;}
.ws75{word-spacing:-98.810881pt;}
.ws4{word-spacing:-28.565333pt;}
.ws5{word-spacing:-16.945066pt;}
.ws3{word-spacing:-13.393333pt;}
.ws30{word-spacing:-13.066667pt;}
.ws3d{word-spacing:-12.085333pt;}
.ws6b{word-spacing:-12.000000pt;}
.wsb1{word-spacing:-11.856000pt;}
.wsa3{word-spacing:-11.664000pt;}
.wsa0{word-spacing:-11.328000pt;}
.wsae{word-spacing:-11.280000pt;}
.ws37{word-spacing:-11.232000pt;}
.ws40{word-spacing:-11.184000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws8a{word-spacing:-11.088000pt;}
.wsac{word-spacing:-11.040000pt;}
.ws38{word-spacing:-10.992000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws5d{word-spacing:-10.896000pt;}
.wsaf{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.wsa{word-spacing:-10.800000pt;}
.ws89{word-spacing:-10.752000pt;}
.ws88{word-spacing:-10.704000pt;}
.ws68{word-spacing:-10.656000pt;}
.ws61{word-spacing:-10.560000pt;}
.wsab{word-spacing:-10.512000pt;}
.ws9a{word-spacing:-10.464000pt;}
.ws9c{word-spacing:-10.416000pt;}
.ws33{word-spacing:-10.368000pt;}
.ws3b{word-spacing:-10.320000pt;}
.ws39{word-spacing:-10.176000pt;}
.wse0{word-spacing:-9.440000pt;}
.wsdc{word-spacing:-9.320000pt;}
.wsde{word-spacing:-9.280000pt;}
.wsba{word-spacing:-9.160000pt;}
.wsdd{word-spacing:-9.040000pt;}
.wsdf{word-spacing:-9.000000pt;}
.wsad{word-spacing:-8.892000pt;}
.wsbe{word-spacing:-8.880000pt;}
.wsbb{word-spacing:-8.760000pt;}
.wsbf{word-spacing:-8.680000pt;}
.wse1{word-spacing:-8.640000pt;}
.wsd0{word-spacing:-8.600000pt;}
.wsda{word-spacing:-8.560000pt;}
.ws2{word-spacing:-8.533333pt;}
.wsb9{word-spacing:-8.520000pt;}
.wsbc{word-spacing:-8.400000pt;}
.ws5b{word-spacing:-8.101333pt;}
.wsbd{word-spacing:-8.000000pt;}
.ws3e{word-spacing:-7.956000pt;}
.ws79{word-spacing:-7.737600pt;}
.ws7a{word-spacing:-7.728000pt;}
.wsb0{word-spacing:-7.612800pt;}
.ws31{word-spacing:-7.581600pt;}
.wsa2{word-spacing:-7.519200pt;}
.wsf{word-spacing:-7.488000pt;}
.wsc{word-spacing:-7.456800pt;}
.ws9b{word-spacing:-7.441200pt;}
.ws63{word-spacing:-7.425600pt;}
.wse{word-spacing:-7.394400pt;}
.ws32{word-spacing:-7.363200pt;}
.ws34{word-spacing:-7.332000pt;}
.ws36{word-spacing:-7.300800pt;}
.wsb{word-spacing:-7.269600pt;}
.ws93{word-spacing:-7.238400pt;}
.ws35{word-spacing:-7.207200pt;}
.ws62{word-spacing:-7.176000pt;}
.ws3f{word-spacing:-7.144800pt;}
.ws7{word-spacing:-7.141333pt;}
.ws3c{word-spacing:-7.113600pt;}
.ws9{word-spacing:-7.082400pt;}
.wsd{word-spacing:-7.051200pt;}
.ws3a{word-spacing:-7.020000pt;}
.ws59{word-spacing:-6.988800pt;}
.ws78{word-spacing:-6.957600pt;}
.ws69{word-spacing:-6.926400pt;}
.ws94{word-spacing:-6.895200pt;}
.ws86{word-spacing:-6.801600pt;}
.ws87{word-spacing:-6.676800pt;}
.ws6a{word-spacing:-6.645600pt;}
.ws65{word-spacing:-6.528000pt;}
.ws8{word-spacing:-6.427200pt;}
.ws7b{word-spacing:-6.136320pt;}
.ws7e{word-spacing:-5.979648pt;}
.ws10{word-spacing:-5.893333pt;}
.ws7d{word-spacing:-5.718528pt;}
.ws7c{word-spacing:-5.692416pt;}
.ws67{word-spacing:-5.640192pt;}
.ws64{word-spacing:-5.587968pt;}
.ws66{word-spacing:-5.483520pt;}
.wsa1{word-spacing:-5.440000pt;}
.ws7f{word-spacing:-5.039616pt;}
.ws99{word-spacing:-4.896000pt;}
.wsc0{word-spacing:-4.106667pt;}
.ws60{word-spacing:-3.808000pt;}
.ws84{word-spacing:-3.434667pt;}
.ws13{word-spacing:-2.912000pt;}
.ws16{word-spacing:-2.133333pt;}
.wsa6{word-spacing:-1.872000pt;}
.ws58{word-spacing:-1.680000pt;}
.ws1e{word-spacing:-1.632000pt;}
.ws46{word-spacing:-1.584000pt;}
.wsaa{word-spacing:-1.536000pt;}
.wsb3{word-spacing:-1.488000pt;}
.wscc{word-spacing:-1.480000pt;}
.ws95{word-spacing:-1.440000pt;}
.wsc8{word-spacing:-1.400000pt;}
.ws42{word-spacing:-1.392000pt;}
.wsc7{word-spacing:-1.360000pt;}
.ws8d{word-spacing:-1.344000pt;}
.wsef{word-spacing:-1.320000pt;}
.wsa8{word-spacing:-1.296000pt;}
.wscd{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.248000pt;}
.ws6f{word-spacing:-1.200000pt;}
.ws27{word-spacing:-1.152000pt;}
.ws2f{word-spacing:-1.133333pt;}
.ws15{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.104000pt;}
.wsc6{word-spacing:-1.080000pt;}
.ws5e{word-spacing:-1.056000pt;}
.wsc9{word-spacing:-1.040000pt;}
.ws96{word-spacing:-1.013333pt;}
.ws17{word-spacing:-1.008000pt;}
.wsca{word-spacing:-1.000000pt;}
.ws8e{word-spacing:-0.960000pt;}
.wsc3{word-spacing:-0.920000pt;}
.ws4a{word-spacing:-0.912000pt;}
.ws2d{word-spacing:-0.906667pt;}
.wsd1{word-spacing:-0.880000pt;}
.ws22{word-spacing:-0.864000pt;}
.ws85{word-spacing:-0.858667pt;}
.ws12{word-spacing:-0.853333pt;}
.ws5f{word-spacing:-0.821333pt;}
.ws1d{word-spacing:-0.816000pt;}
.wsce{word-spacing:-0.800000pt;}
.ws8b{word-spacing:-0.768000pt;}
.wsc5{word-spacing:-0.760000pt;}
.ws4b{word-spacing:-0.720000pt;}
.ws1b{word-spacing:-0.672000pt;}
.wsd8{word-spacing:-0.640000pt;}
.ws52{word-spacing:-0.624000pt;}
.ws45{word-spacing:-0.576000pt;}
.wsec{word-spacing:-0.560000pt;}
.ws4c{word-spacing:-0.528000pt;}
.wse6{word-spacing:-0.520000pt;}
.ws73{word-spacing:-0.499200pt;}
.ws76{word-spacing:-0.480000pt;}
.wsc4{word-spacing:-0.440000pt;}
.ws20{word-spacing:-0.432000pt;}
.ws9e{word-spacing:-0.426667pt;}
.ws29{word-spacing:-0.405600pt;}
.wsd4{word-spacing:-0.400000pt;}
.ws50{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.374400pt;}
.wse2{word-spacing:-0.360000pt;}
.ws53{word-spacing:-0.336000pt;}
.ws2e{word-spacing:-0.317333pt;}
.ws19{word-spacing:-0.288000pt;}
.wsd7{word-spacing:-0.280000pt;}
.ws97{word-spacing:-0.266667pt;}
.ws4f{word-spacing:-0.240000pt;}
.wsc2{word-spacing:-0.218400pt;}
.wse5{word-spacing:-0.200000pt;}
.ws48{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.187200pt;}
.ws9f{word-spacing:-0.160000pt;}
.ws82{word-spacing:-0.144000pt;}
.wse7{word-spacing:-0.120000pt;}
.ws98{word-spacing:-0.106667pt;}
.ws43{word-spacing:-0.096000pt;}
.ws2b{word-spacing:-0.090667pt;}
.wsed{word-spacing:-0.080000pt;}
.ws83{word-spacing:-0.062400pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws1a{word-spacing:-0.048000pt;}
.ws2c{word-spacing:-0.045333pt;}
.wsb4{word-spacing:-0.031200pt;}
.ws11{word-spacing:0.000000pt;}
.ws25{word-spacing:0.031200pt;}
.wsd2{word-spacing:0.040000pt;}
.ws2a{word-spacing:0.045333pt;}
.ws44{word-spacing:0.048000pt;}
.ws91{word-spacing:0.053333pt;}
.wse3{word-spacing:0.080000pt;}
.wsb6{word-spacing:0.093600pt;}
.ws26{word-spacing:0.096000pt;}
.wse4{word-spacing:0.120000pt;}
.ws6e{word-spacing:0.144000pt;}
.wsdb{word-spacing:0.160000pt;}
.ws47{word-spacing:0.192000pt;}
.wscb{word-spacing:0.200000pt;}
.ws70{word-spacing:0.240000pt;}
.wse8{word-spacing:0.280000pt;}
.ws18{word-spacing:0.288000pt;}
.ws23{word-spacing:0.336000pt;}
.ws55{word-spacing:0.373333pt;}
.ws57{word-spacing:0.384000pt;}
.ws8c{word-spacing:0.432000pt;}
.wsa4{word-spacing:0.480000pt;}
.wsd3{word-spacing:0.520000pt;}
.ws28{word-spacing:0.528000pt;}
.wseb{word-spacing:0.560000pt;}
.ws56{word-spacing:0.576000pt;}
.ws77{word-spacing:0.624000pt;}
.wscf{word-spacing:0.680000pt;}
.ws9d{word-spacing:0.720000pt;}
.ws41{word-spacing:0.768000pt;}
.wsa9{word-spacing:0.816000pt;}
.ws71{word-spacing:0.906667pt;}
.ws72{word-spacing:0.912000pt;}
.wsd9{word-spacing:0.920000pt;}
.wsd5{word-spacing:0.960000pt;}
.wsb8{word-spacing:1.008000pt;}
.wse9{word-spacing:1.040000pt;}
.wsa5{word-spacing:1.056000pt;}
.ws92{word-spacing:1.066667pt;}
.wsf0{word-spacing:1.104000pt;}
.wsee{word-spacing:1.200000pt;}
.wsb2{word-spacing:1.344000pt;}
.ws81{word-spacing:1.392000pt;}
.ws54{word-spacing:1.440000pt;}
.ws49{word-spacing:1.488000pt;}
.ws51{word-spacing:1.680000pt;}
.ws90{word-spacing:1.872000pt;}
.wsb7{word-spacing:1.968000pt;}
.ws4d{word-spacing:2.352000pt;}
.wsa7{word-spacing:2.400000pt;}
.ws14{word-spacing:2.496000pt;}
.wsea{word-spacing:2.600000pt;}
.ws4e{word-spacing:2.880000pt;}
.wsc1{word-spacing:3.312000pt;}
.wsd6{word-spacing:3.400000pt;}
.ws6d{word-spacing:4.608000pt;}
.ws8f{word-spacing:4.704000pt;}
.wsb5{word-spacing:5.904000pt;}
.ws5a{word-spacing:122.905058pt;}
.ws5c{word-spacing:123.013330pt;}
.ws80{word-spacing:133.056004pt;}
._6{margin-left:-10.433156pt;}
._1f{margin-left:-9.280000pt;}
._1b{margin-left:-8.320000pt;}
._a{margin-left:-6.806408pt;}
._3{margin-left:-5.811732pt;}
._4{margin-left:-4.545069pt;}
._7{margin-left:-3.535434pt;}
._2{margin-left:-2.553592pt;}
._0{margin-left:-1.578676pt;}
._8{width:0.953067pt;}
._1{width:2.315733pt;}
._16{width:3.295967pt;}
._12{width:4.608000pt;}
._1d{width:5.771831pt;}
._1c{width:6.719998pt;}
._1e{width:7.646677pt;}
._19{width:8.566933pt;}
._18{width:11.520000pt;}
._b{width:13.583993pt;}
._1a{width:15.520001pt;}
._13{width:35.724738pt;}
._5{width:38.065487pt;}
._17{width:39.078462pt;}
._11{width:41.818230pt;}
._9{width:42.970137pt;}
._c{width:55.708255pt;}
._d{width:149.049595pt;}
._e{width:213.770658pt;}
._14{width:305.032548pt;}
._10{width:339.509336pt;}
._f{width:357.429319pt;}
._15{width:390.012272pt;}
.fsd{font-size:24.266668pt;}
.fs10{font-size:26.111999pt;}
.fs8{font-size:29.466667pt;}
.fs7{font-size:31.199999pt;}
.fse{font-size:33.792000pt;}
.fs5{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fs11{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsb{font-size:58.666667pt;}
.fs4{font-size:90.133331pt;}
.fsa{font-size:96.000000pt;}
.fsf{font-size:107.519999pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:1.151042pt;}
.yd7{bottom:4.222735pt;}
.yd5{bottom:5.376261pt;}
.y100{bottom:11.902657pt;}
.yd6{bottom:18.432271pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y31{bottom:60.723466pt;}
.y15a{bottom:60.938665pt;}
.y216{bottom:61.150936pt;}
.y145{bottom:61.158936pt;}
.y1bd{bottom:63.152265pt;}
.y2db{bottom:63.416235pt;}
.y78{bottom:69.153599pt;}
.y193{bottom:71.409601pt;}
.y28a{bottom:74.016237pt;}
.y30{bottom:74.051466pt;}
.y159{bottom:74.270665pt;}
.y215{bottom:74.485599pt;}
.y144{bottom:74.490935pt;}
.y2da{bottom:74.746236pt;}
.y1bc{bottom:76.484265pt;}
.ye3{bottom:77.408267pt;}
.y77{bottom:82.485599pt;}
.y192{bottom:84.741600pt;}
.y248{bottom:85.154933pt;}
.y289{bottom:85.346238pt;}
.y2d9{bottom:86.076236pt;}
.yf1{bottom:86.267997pt;}
.y7f{bottom:86.470939pt;}
.y2f{bottom:87.384799pt;}
.y158{bottom:87.602664pt;}
.y214{bottom:87.817598pt;}
.y143{bottom:87.822934pt;}
.y1bb{bottom:89.826936pt;}
.ye2{bottom:90.740266pt;}
.y76{bottom:95.817598pt;}
.y288{bottom:96.676238pt;}
.y2d8{bottom:97.406236pt;}
.y191{bottom:98.073600pt;}
.y247{bottom:98.486933pt;}
.yf0{bottom:99.602664pt;}
.y7e{bottom:99.809608pt;}
.y2e{bottom:100.723466pt;}
.y157{bottom:100.934663pt;}
.y142{bottom:101.154933pt;}
.y213{bottom:101.160270pt;}
.y1ba{bottom:103.158936pt;}
.ye1{bottom:104.073600pt;}
.y287{bottom:108.006238pt;}
.y2d7{bottom:108.736236pt;}
.y75{bottom:109.152265pt;}
.y190{bottom:111.406933pt;}
.y246{bottom:111.818932pt;}
.yef{bottom:112.934663pt;}
.y7d{bottom:113.141607pt;}
.y2d{bottom:114.051466pt;}
.y156{bottom:114.266663pt;}
.y141{bottom:114.486933pt;}
.y212{bottom:114.492269pt;}
.y1b9{bottom:116.490935pt;}
.ye0{bottom:117.414937pt;}
.y1e3{bottom:119.150931pt;}
.y286{bottom:119.336238pt;}
.y2d6{bottom:120.066236pt;}
.y74{bottom:122.484265pt;}
.y18f{bottom:124.740266pt;}
.y245{bottom:125.150931pt;}
.yee{bottom:126.267997pt;}
.y7c{bottom:126.473607pt;}
.y2c{bottom:127.384799pt;}
.y140{bottom:127.818932pt;}
.y211{bottom:127.824268pt;}
.y1b8{bottom:129.822934pt;}
.y285{bottom:130.666238pt;}
.ydf{bottom:130.746937pt;}
.y2d5{bottom:131.396236pt;}
.y1e2{bottom:132.488267pt;}
.y73{bottom:135.821600pt;}
.y18e{bottom:138.073600pt;}
.y244{bottom:138.489601pt;}
.yed{bottom:139.602664pt;}
.y155{bottom:139.709464pt;}
.y7b{bottom:139.805606pt;}
.y13f{bottom:141.150931pt;}
.y210{bottom:141.156267pt;}
.y284{bottom:141.996238pt;}
.y2d4{bottom:142.726236pt;}
.y1b7{bottom:143.154933pt;}
.yde{bottom:144.078936pt;}
.y2b{bottom:144.566132pt;}
.y1e1{bottom:145.820266pt;}
.y72{bottom:149.153599pt;}
.y18d{bottom:151.411472pt;}
.y243{bottom:151.821600pt;}
.yec{bottom:152.934663pt;}
.y154{bottom:153.048133pt;}
.y7a{bottom:153.137605pt;}
.y283{bottom:153.326238pt;}
.y2d3{bottom:154.056236pt;}
.y20f{bottom:154.488267pt;}
.y13e{bottom:154.501607pt;}
.y1b6{bottom:156.486933pt;}
.ydd{bottom:157.410935pt;}
.y18a{bottom:158.072001pt;}
.y1e0{bottom:159.152265pt;}
.y18b{bottom:162.296265pt;}
.y71{bottom:162.485599pt;}
.y282{bottom:164.656238pt;}
.y242{bottom:165.153599pt;}
.y2d2{bottom:165.386236pt;}
.yeb{bottom:166.267997pt;}
.y153{bottom:166.380133pt;}
.y79{bottom:166.469604pt;}
.y20e{bottom:167.820266pt;}
.y13d{bottom:167.833607pt;}
.y189{bottom:169.184263pt;}
.y1b5{bottom:169.818932pt;}
.ydc{bottom:170.742934pt;}
.y1df{bottom:172.484265pt;}
.y18c{bottom:174.200277pt;}
.y70{bottom:175.817598pt;}
.y281{bottom:175.986238pt;}
.y2d1{bottom:176.716236pt;}
.y241{bottom:178.485599pt;}
.yea{bottom:179.603998pt;}
.y152{bottom:179.712132pt;}
.y20d{bottom:181.152265pt;}
.y13c{bottom:181.165606pt;}
.y1b4{bottom:183.150931pt;}
.y2a{bottom:183.276277pt;}
.ydb{bottom:184.074934pt;}
.y188{bottom:185.818932pt;}
.y1de{bottom:185.820266pt;}
.y280{bottom:187.316238pt;}
.y2d0{bottom:188.046237pt;}
.y6f{bottom:189.149597pt;}
.y240{bottom:191.817598pt;}
.ye9{bottom:192.935997pt;}
.y151{bottom:193.044131pt;}
.y20c{bottom:194.484265pt;}
.y13b{bottom:194.497605pt;}
.y1b3{bottom:196.485599pt;}
.y29{bottom:196.609610pt;}
.yda{bottom:197.406933pt;}
.y27f{bottom:198.646239pt;}
.y187{bottom:199.150931pt;}
.y1dd{bottom:199.152265pt;}
.y2cf{bottom:199.376237pt;}
.y6e{bottom:202.482930pt;}
.y23f{bottom:205.161604pt;}
.ye8{bottom:206.267997pt;}
.y150{bottom:206.376131pt;}
.y20b{bottom:207.820266pt;}
.y13a{bottom:207.829604pt;}
.y1b2{bottom:209.817598pt;}
.y28{bottom:209.944278pt;}
.y27e{bottom:209.976239pt;}
.y2ce{bottom:210.706237pt;}
.yd9{bottom:210.744806pt;}
.y1dc{bottom:212.484265pt;}
.y186{bottom:212.488267pt;}
.ya0{bottom:216.309608pt;}
.yd4{bottom:217.405334pt;}
.y23e{bottom:218.493603pt;}
.ye7{bottom:219.599996pt;}
.y14f{bottom:219.713466pt;}
.y20a{bottom:221.152265pt;}
.y139{bottom:221.161604pt;}
.y27d{bottom:221.306239pt;}
.y2cd{bottom:222.036237pt;}
.y1b1{bottom:223.152265pt;}
.y27{bottom:223.276277pt;}
.y1db{bottom:225.817598pt;}
.y185{bottom:225.820266pt;}
.yd3{bottom:228.517597pt;}
.y9f{bottom:229.641607pt;}
.y23d{bottom:231.825602pt;}
.y6d{bottom:231.840297pt;}
.y27c{bottom:232.636239pt;}
.ye6{bottom:232.933329pt;}
.y14e{bottom:233.045465pt;}
.y2cc{bottom:233.366237pt;}
.yd8{bottom:233.533610pt;}
.y209{bottom:234.484265pt;}
.y138{bottom:234.493603pt;}
.y1b0{bottom:236.484265pt;}
.y26{bottom:236.609610pt;}
.y184{bottom:239.152265pt;}
.y1da{bottom:239.157601pt;}
.y9e{bottom:242.973607pt;}
.y27b{bottom:243.966239pt;}
.y2cb{bottom:244.696237pt;}
.y23c{bottom:245.157601pt;}
.yd2{bottom:245.161624pt;}
.y6c{bottom:245.172296pt;}
.y14d{bottom:246.377465pt;}
.y208{bottom:247.821600pt;}
.y137{bottom:247.825602pt;}
.y1af{bottom:249.818932pt;}
.y25{bottom:249.942944pt;}
.y183{bottom:252.484265pt;}
.y1d9{bottom:252.489601pt;}
.y27a{bottom:255.296239pt;}
.y2ca{bottom:256.026237pt;}
.y9d{bottom:256.305606pt;}
.ye5{bottom:258.214937pt;}
.y23b{bottom:258.489601pt;}
.yd1{bottom:258.493623pt;}
.y6b{bottom:258.504296pt;}
.y14c{bottom:259.709464pt;}
.y207{bottom:261.153599pt;}
.y136{bottom:261.157601pt;}
.y1ae{bottom:263.150931pt;}
.y24{bottom:263.277611pt;}
.y182{bottom:265.817598pt;}
.y1d8{bottom:265.821600pt;}
.y279{bottom:266.626239pt;}
.y2c9{bottom:267.356237pt;}
.y9c{bottom:269.637605pt;}
.ye4{bottom:271.546936pt;}
.y23a{bottom:271.821600pt;}
.yd0{bottom:271.825623pt;}
.y6a{bottom:271.836295pt;}
.y14b{bottom:273.041463pt;}
.y206{bottom:274.485599pt;}
.y135{bottom:274.489601pt;}
.y1ad{bottom:276.482930pt;}
.y23{bottom:276.609610pt;}
.y278{bottom:277.956239pt;}
.y2c8{bottom:278.686237pt;}
.y181{bottom:279.149597pt;}
.y1d7{bottom:279.153599pt;}
.y9b{bottom:282.969604pt;}
.y239{bottom:285.153599pt;}
.ycf{bottom:285.157622pt;}
.y69{bottom:285.168294pt;}
.y205{bottom:287.817598pt;}
.y134{bottom:287.821600pt;}
.y277{bottom:289.286239pt;}
.y1ac{bottom:289.816264pt;}
.y22{bottom:289.942944pt;}
.y2c7{bottom:290.016237pt;}
.y180{bottom:292.482930pt;}
.y1d6{bottom:292.485599pt;}
.y238{bottom:298.485599pt;}
.y14a{bottom:298.488287pt;}
.yce{bottom:298.489621pt;}
.y68{bottom:298.500294pt;}
.y276{bottom:300.616239pt;}
.y204{bottom:301.150931pt;}
.y133{bottom:301.153599pt;}
.y2c6{bottom:301.346238pt;}
.y21{bottom:303.277611pt;}
.y17f{bottom:305.816264pt;}
.y1d5{bottom:305.817598pt;}
.y9a{bottom:309.768270pt;}
.y237{bottom:311.817598pt;}
.y149{bottom:311.820286pt;}
.ycd{bottom:311.821620pt;}
.y67{bottom:311.832293pt;}
.y275{bottom:311.946240pt;}
.y2c5{bottom:312.676238pt;}
.y132{bottom:314.485599pt;}
.y203{bottom:314.492289pt;}
.y20{bottom:316.609610pt;}
.y1d4{bottom:319.149597pt;}
.y1ab{bottom:319.152286pt;}
.y274{bottom:323.276240pt;}
.y10d{bottom:323.802138pt;}
.y2c4{bottom:324.006238pt;}
.y148{bottom:325.152286pt;}
.ycc{bottom:325.153620pt;}
.y66{bottom:325.164292pt;}
.y99{bottom:325.270937pt;}
.y131{bottom:327.817598pt;}
.y202{bottom:327.824288pt;}
.y1f{bottom:329.942944pt;}
.y10a{bottom:330.462667pt;}
.y1aa{bottom:332.484285pt;}
.y273{bottom:334.606240pt;}
.y10b{bottom:334.686930pt;}
.y17e{bottom:335.150952pt;}
.y2c3{bottom:335.336238pt;}
.y147{bottom:338.484285pt;}
.ycb{bottom:338.485619pt;}
.y65{bottom:338.496291pt;}
.y98{bottom:340.773603pt;}
.y130{bottom:341.152286pt;}
.y201{bottom:341.156288pt;}
.y109{bottom:341.576284pt;}
.y1e{bottom:343.276277pt;}
.y1a9{bottom:345.822954pt;}
.y272{bottom:345.936240pt;}
.y10c{bottom:346.590942pt;}
.y2c2{bottom:346.666238pt;}
.y17d{bottom:348.484285pt;}
.y1d3{bottom:348.485619pt;}
.y146{bottom:351.816284pt;}
.yca{bottom:351.817618pt;}
.y64{bottom:351.828291pt;}
.y12f{bottom:354.484285pt;}
.y200{bottom:354.488287pt;}
.y97{bottom:356.276270pt;}
.y1d{bottom:356.625610pt;}
.y271{bottom:357.266240pt;}
.y2c1{bottom:357.996238pt;}
.y108{bottom:358.208284pt;}
.y1a8{bottom:359.154954pt;}
.y1d2{bottom:361.817618pt;}
.y17c{bottom:361.836295pt;}
.yc9{bottom:365.153620pt;}
.y63{bottom:365.160290pt;}
.y12e{bottom:367.820286pt;}
.y270{bottom:368.596240pt;}
.y2c0{bottom:369.326238pt;}
.y1c{bottom:369.957610pt;}
.y107{bottom:371.540283pt;}
.y96{bottom:371.778937pt;}
.y1a7{bottom:372.486953pt;}
.y1d1{bottom:375.153620pt;}
.y17b{bottom:375.168294pt;}
.yc8{bottom:378.485619pt;}
.y62{bottom:378.492289pt;}
.y26f{bottom:379.926240pt;}
.y2bf{bottom:380.656238pt;}
.y12d{bottom:381.152286pt;}
.y1a6{bottom:385.818952pt;}
.y95{bottom:387.281604pt;}
.y1d0{bottom:388.485619pt;}
.y17a{bottom:388.500294pt;}
.y26e{bottom:391.256240pt;}
.yc7{bottom:391.817618pt;}
.y61{bottom:391.824288pt;}
.y2be{bottom:391.986238pt;}
.y12c{bottom:394.484285pt;}
.y2f5{bottom:395.161624pt;}
.y106{bottom:398.360283pt;}
.y1a5{bottom:399.150952pt;}
.y1cf{bottom:401.817618pt;}
.y179{bottom:401.832293pt;}
.y26d{bottom:402.586240pt;}
.y94{bottom:402.784270pt;}
.y16c{bottom:402.899080pt;}
.y2bd{bottom:403.316238pt;}
.yc6{bottom:405.149618pt;}
.y60{bottom:405.156288pt;}
.y12b{bottom:407.817618pt;}
.y2f4{bottom:408.493623pt;}
.y1b{bottom:411.957610pt;}
.y1a4{bottom:412.484285pt;}
.y105{bottom:413.862949pt;}
.y26c{bottom:413.916240pt;}
.y2bc{bottom:414.646239pt;}
.y1ce{bottom:415.150952pt;}
.y178{bottom:415.164292pt;}
.y16b{bottom:416.231079pt;}
.y93{bottom:418.286937pt;}
.yc5{bottom:418.482951pt;}
.y5f{bottom:418.488287pt;}
.y1ff{bottom:421.152286pt;}
.y12a{bottom:421.158956pt;}
.y2f3{bottom:421.825623pt;}
.y26b{bottom:425.246241pt;}
.y1a3{bottom:425.825623pt;}
.y2bb{bottom:425.976239pt;}
.y1a{bottom:426.621610pt;}
.y1cd{bottom:428.485619pt;}
.y177{bottom:428.496291pt;}
.y104{bottom:429.365616pt;}
.y16a{bottom:429.563078pt;}
.y5e{bottom:431.820286pt;}
.y92{bottom:433.789604pt;}
.y1fe{bottom:434.484285pt;}
.y129{bottom:434.490955pt;}
.y2f2{bottom:435.157622pt;}
.y26a{bottom:436.576241pt;}
.y2ba{bottom:437.306239pt;}
.y1a2{bottom:439.157622pt;}
.y19{bottom:441.285610pt;}
.y1cc{bottom:441.817618pt;}
.y176{bottom:441.828291pt;}
.y169{bottom:442.895078pt;}
.y103{bottom:444.868283pt;}
.y5d{bottom:445.152286pt;}
.y128{bottom:447.822954pt;}
.yc4{bottom:447.828291pt;}
.y269{bottom:447.906241pt;}
.y2f1{bottom:448.489621pt;}
.y2b9{bottom:448.636239pt;}
.y91{bottom:449.292271pt;}
.y1a1{bottom:452.489621pt;}
.y1cb{bottom:455.150952pt;}
.y175{bottom:455.160290pt;}
.y18{bottom:455.949610pt;}
.y168{bottom:456.227077pt;}
.y5c{bottom:458.484285pt;}
.y268{bottom:459.236241pt;}
.y2b8{bottom:459.966239pt;}
.y102{bottom:460.370950pt;}
.y127{bottom:461.154954pt;}
.yc3{bottom:461.160290pt;}
.y2f0{bottom:461.821620pt;}
.y90{bottom:464.794938pt;}
.y1a0{bottom:465.821620pt;}
.y1ca{bottom:468.484285pt;}
.y174{bottom:468.492289pt;}
.y167{bottom:469.559076pt;}
.y267{bottom:470.566241pt;}
.y17{bottom:470.613610pt;}
.y2b7{bottom:471.296239pt;}
.y5b{bottom:471.818952pt;}
.y236{bottom:471.825623pt;}
.y126{bottom:474.486953pt;}
.yc2{bottom:474.492289pt;}
.y2ef{bottom:475.153620pt;}
.y101{bottom:475.873617pt;}
.y19f{bottom:479.153620pt;}
.y8f{bottom:480.297604pt;}
.y173{bottom:481.824288pt;}
.y266{bottom:481.896241pt;}
.y2b6{bottom:482.626239pt;}
.y166{bottom:482.891075pt;}
.y5a{bottom:485.150952pt;}
.y235{bottom:485.157622pt;}
.y16{bottom:485.277610pt;}
.yfe{bottom:486.041341pt;}
.y125{bottom:487.818952pt;}
.yc1{bottom:487.824288pt;}
.y2ee{bottom:488.485619pt;}
.y19e{bottom:492.485619pt;}
.yfd{bottom:492.706950pt;}
.y265{bottom:493.226241pt;}
.y2b5{bottom:493.956239pt;}
.y172{bottom:495.156288pt;}
.y8e{bottom:495.800271pt;}
.y165{bottom:496.223075pt;}
.y59{bottom:498.482951pt;}
.y234{bottom:498.489621pt;}
.y15{bottom:499.962943pt;}
.y124{bottom:501.150952pt;}
.yc0{bottom:501.156288pt;}
.y2ed{bottom:501.817618pt;}
.y264{bottom:504.556241pt;}
.y2b4{bottom:505.286239pt;}
.y19d{bottom:505.817618pt;}
.y171{bottom:508.488287pt;}
.y164{bottom:509.555074pt;}
.y8d{bottom:511.302938pt;}
.y58{bottom:511.816284pt;}
.y233{bottom:511.821620pt;}
.ybf{bottom:514.488287pt;}
.y123{bottom:514.502921pt;}
.y14{bottom:514.626943pt;}
.y2ec{bottom:515.149618pt;}
.y263{bottom:515.886241pt;}
.y2b3{bottom:516.616239pt;}
.y19c{bottom:519.149618pt;}
.y170{bottom:521.820286pt;}
.y163{bottom:522.887073pt;}
.y232{bottom:525.153620pt;}
.y8c{bottom:526.802938pt;}
.y262{bottom:527.216241pt;}
.ybe{bottom:527.820286pt;}
.y122{bottom:527.834920pt;}
.y2b2{bottom:527.946240pt;}
.y13{bottom:529.290943pt;}
.y2eb{bottom:534.486953pt;}
.y16f{bottom:535.152286pt;}
.y162{bottom:536.219073pt;}
.y231{bottom:538.485619pt;}
.y261{bottom:538.546242pt;}
.y2b1{bottom:539.276240pt;}
.y57{bottom:541.150952pt;}
.ybd{bottom:541.152286pt;}
.y121{bottom:541.166920pt;}
.y12{bottom:543.954943pt;}
.yfc{bottom:544.544396pt;}
.y2ea{bottom:547.818952pt;}
.y16e{bottom:548.484285pt;}
.y161{bottom:549.551072pt;}
.y260{bottom:549.876242pt;}
.y2b0{bottom:550.606240pt;}
.y230{bottom:551.817618pt;}
.ybc{bottom:554.484285pt;}
.y56{bottom:554.492289pt;}
.y120{bottom:554.498919pt;}
.yfb{bottom:557.876395pt;}
.y11{bottom:558.618943pt;}
.y25f{bottom:561.206242pt;}
.y16d{bottom:561.816284pt;}
.y2af{bottom:561.936240pt;}
.y160{bottom:562.883071pt;}
.y22f{bottom:565.150952pt;}
.y2e9{bottom:567.150952pt;}
.y1c9{bottom:567.211062pt;}
.y1fd{bottom:567.817618pt;}
.ybb{bottom:567.820286pt;}
.y55{bottom:567.824288pt;}
.y11f{bottom:567.830918pt;}
.yfa{bottom:571.208394pt;}
.y25e{bottom:572.536242pt;}
.y2ae{bottom:573.266240pt;}
.y10{bottom:573.282943pt;}
.y15f{bottom:576.215070pt;}
.y22e{bottom:578.484285pt;}
.y8b{bottom:578.892410pt;}
.y1c8{bottom:580.543062pt;}
.yba{bottom:581.152286pt;}
.y54{bottom:581.156288pt;}
.y11e{bottom:581.162917pt;}
.y1fc{bottom:581.170922pt;}
.y25d{bottom:583.866242pt;}
.yf9{bottom:584.540394pt;}
.y2ad{bottom:584.596240pt;}
.y2e8{bottom:586.482951pt;}
.yf{bottom:587.946943pt;}
.y15e{bottom:589.547070pt;}
.y22d{bottom:591.820286pt;}
.y8a{bottom:592.224409pt;}
.y1c7{bottom:593.875061pt;}
.yb9{bottom:594.484285pt;}
.y53{bottom:594.488287pt;}
.y11d{bottom:594.494917pt;}
.y1fb{bottom:594.502921pt;}
.y25c{bottom:595.196242pt;}
.y2ac{bottom:595.926240pt;}
.yf8{bottom:597.872393pt;}
.y2e7{bottom:599.816284pt;}
.ye{bottom:602.610943pt;}
.y15d{bottom:602.881737pt;}
.y22c{bottom:605.152286pt;}
.y89{bottom:605.556408pt;}
.y25b{bottom:606.526242pt;}
.y1c6{bottom:607.207060pt;}
.y2ab{bottom:607.256240pt;}
.y52{bottom:607.820286pt;}
.y11c{bottom:607.826916pt;}
.yb8{bottom:607.833586pt;}
.y1fa{bottom:607.834920pt;}
.yf7{bottom:611.204392pt;}
.y15c{bottom:616.213736pt;}
.y19b{bottom:616.540394pt;}
.yd{bottom:617.280276pt;}
.y25a{bottom:617.856242pt;}
.y1e9{bottom:618.241722pt;}
.y22b{bottom:618.484285pt;}
.y2aa{bottom:618.586240pt;}
.y88{bottom:618.888407pt;}
.y1c5{bottom:620.539060pt;}
.y51{bottom:621.152286pt;}
.y11b{bottom:621.158915pt;}
.yb7{bottom:621.165585pt;}
.y1f9{bottom:621.166920pt;}
.y2e6{bottom:623.822914pt;}
.yf6{bottom:624.536391pt;}
.y259{bottom:629.186242pt;}
.y15b{bottom:629.545736pt;}
.y19a{bottom:629.872393pt;}
.y2a9{bottom:629.916240pt;}
.y1e8{bottom:631.573722pt;}
.y22a{bottom:631.820286pt;}
.yc{bottom:631.944276pt;}
.y87{bottom:632.220407pt;}
.y1c4{bottom:633.871059pt;}
.y50{bottom:634.484285pt;}
.y11a{bottom:634.490914pt;}
.yb6{bottom:634.497585pt;}
.y1f8{bottom:634.498919pt;}
.y2e5{bottom:637.154913pt;}
.yf5{bottom:637.868391pt;}
.y258{bottom:640.516242pt;}
.y2a8{bottom:641.246241pt;}
.y199{bottom:643.204392pt;}
.y1e7{bottom:644.909764pt;}
.y229{bottom:645.152286pt;}
.y86{bottom:645.552406pt;}
.yb{bottom:646.608276pt;}
.y1c3{bottom:647.203058pt;}
.y4f{bottom:647.818952pt;}
.y119{bottom:647.822914pt;}
.yb5{bottom:647.829584pt;}
.y1f7{bottom:647.830918pt;}
.y2e4{bottom:650.486912pt;}
.yf4{bottom:651.200390pt;}
.y257{bottom:651.846243pt;}
.y2a7{bottom:652.576241pt;}
.y198{bottom:656.536391pt;}
.y1e6{bottom:658.241763pt;}
.y228{bottom:658.484285pt;}
.y85{bottom:658.884405pt;}
.y1c2{bottom:660.535057pt;}
.y4e{bottom:661.150952pt;}
.y118{bottom:661.154913pt;}
.yb4{bottom:661.161583pt;}
.y1f6{bottom:661.162917pt;}
.y256{bottom:663.176243pt;}
.y2e3{bottom:663.818912pt;}
.y2a6{bottom:663.906241pt;}
.yf3{bottom:664.533723pt;}
.y197{bottom:669.868391pt;}
.y1e5{bottom:671.573762pt;}
.y227{bottom:671.817578pt;}
.y84{bottom:672.216404pt;}
.y34{bottom:673.018130pt;}
.ya{bottom:673.274902pt;}
.y1c1{bottom:673.867057pt;}
.y117{bottom:674.486912pt;}
.y4d{bottom:674.488246pt;}
.yb3{bottom:674.493583pt;}
.y1f5{bottom:674.494917pt;}
.y255{bottom:674.506243pt;}
.y2a5{bottom:675.236241pt;}
.y2e2{bottom:677.150911pt;}
.yf2{bottom:677.865723pt;}
.y196{bottom:683.200390pt;}
.y1e4{bottom:684.905762pt;}
.y226{bottom:685.150911pt;}
.y83{bottom:685.548404pt;}
.y254{bottom:685.836243pt;}
.y2a4{bottom:686.566241pt;}
.y1c0{bottom:687.200390pt;}
.y116{bottom:687.818912pt;}
.y4c{bottom:687.820246pt;}
.yb2{bottom:687.825582pt;}
.y1f4{bottom:687.826916pt;}
.y9{bottom:689.274902pt;}
.y2e1{bottom:690.482910pt;}
.y33{bottom:691.684130pt;}
.y195{bottom:696.533723pt;}
.y253{bottom:697.166243pt;}
.y2a3{bottom:697.896241pt;}
.y225{bottom:698.484244pt;}
.y82{bottom:698.880403pt;}
.y1bf{bottom:700.533723pt;}
.y115{bottom:701.150911pt;}
.y4b{bottom:701.152245pt;}
.yb1{bottom:701.157581pt;}
.y1f3{bottom:701.158915pt;}
.y2e0{bottom:703.816243pt;}
.y7{bottom:705.274902pt;}
.y252{bottom:708.496243pt;}
.y2a2{bottom:709.226241pt;}
.y8{bottom:709.808431pt;}
.y194{bottom:709.865723pt;}
.y32{bottom:710.350129pt;}
.y224{bottom:711.818912pt;}
.y81{bottom:712.213736pt;}
.y1be{bottom:713.865723pt;}
.y4a{bottom:714.484244pt;}
.yb0{bottom:714.489580pt;}
.y1f2{bottom:714.490914pt;}
.y251{bottom:719.826243pt;}
.y2a1{bottom:720.556241pt;}
.y223{bottom:725.150911pt;}
.y80{bottom:725.545736pt;}
.y49{bottom:727.818912pt;}
.yaf{bottom:727.821580pt;}
.y1f1{bottom:727.822914pt;}
.y2df{bottom:727.824248pt;}
.y250{bottom:731.156243pt;}
.y2a0{bottom:731.886241pt;}
.y6{bottom:734.602901pt;}
.y222{bottom:738.485578pt;}
.y48{bottom:741.150911pt;}
.yae{bottom:741.153579pt;}
.y1f0{bottom:741.154913pt;}
.y2de{bottom:741.156247pt;}
.y24f{bottom:742.486243pt;}
.y29f{bottom:743.216241pt;}
.y221{bottom:751.817578pt;}
.y24e{bottom:753.816243pt;}
.yad{bottom:754.485578pt;}
.y1ef{bottom:754.486912pt;}
.y47{bottom:754.488246pt;}
.y29e{bottom:754.546242pt;}
.y24d{bottom:765.149577pt;}
.y220{bottom:765.150911pt;}
.y29d{bottom:765.876242pt;}
.yac{bottom:767.817578pt;}
.y1ee{bottom:767.818912pt;}
.y46{bottom:767.820246pt;}
.y5{bottom:774.602901pt;}
.y29c{bottom:777.206242pt;}
.y21f{bottom:778.484244pt;}
.yab{bottom:781.150911pt;}
.y45{bottom:781.152245pt;}
.y29b{bottom:788.536242pt;}
.y21e{bottom:791.817578pt;}
.y44{bottom:794.484244pt;}
.y29a{bottom:799.866242pt;}
.y21d{bottom:805.150911pt;}
.y2dd{bottom:807.816243pt;}
.y1ed{bottom:807.817578pt;}
.y43{bottom:807.818912pt;}
.yaa{bottom:807.820246pt;}
.y114{bottom:807.824248pt;}
.y299{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y21c{bottom:818.484244pt;}
.y2dc{bottom:821.149577pt;}
.y42{bottom:821.150911pt;}
.ya9{bottom:821.152245pt;}
.y113{bottom:821.156247pt;}
.y298{bottom:822.526242pt;}
.y35{bottom:823.475179pt;}
.y21b{bottom:831.816243pt;}
.y297{bottom:833.856242pt;}
.ya8{bottom:834.484244pt;}
.y41{bottom:834.485578pt;}
.y24c{bottom:834.486912pt;}
.y112{bottom:834.488246pt;}
.y21a{bottom:845.149577pt;}
.y296{bottom:845.186242pt;}
.y40{bottom:847.817578pt;}
.y24b{bottom:847.818912pt;}
.y111{bottom:847.820246pt;}
.ya7{bottom:847.822914pt;}
.y295{bottom:856.516242pt;}
.y3f{bottom:861.150911pt;}
.y110{bottom:861.152245pt;}
.ya6{bottom:861.154913pt;}
.y294{bottom:867.846243pt;}
.y3e{bottom:874.484244pt;}
.ya5{bottom:874.486912pt;}
.y24a{bottom:874.488246pt;}
.y219{bottom:874.492249pt;}
.y293{bottom:879.176243pt;}
.y3d{bottom:887.817578pt;}
.ya4{bottom:887.818912pt;}
.y249{bottom:887.820246pt;}
.y218{bottom:887.824248pt;}
.y292{bottom:890.506243pt;}
.y3c{bottom:901.150911pt;}
.y10f{bottom:901.152245pt;}
.y1ec{bottom:901.153579pt;}
.y217{bottom:901.156247pt;}
.y291{bottom:901.836243pt;}
.y290{bottom:913.166243pt;}
.y3b{bottom:914.484244pt;}
.y1eb{bottom:914.485578pt;}
.ya3{bottom:914.488246pt;}
.y28f{bottom:924.496243pt;}
.y10e{bottom:927.817578pt;}
.y3a{bottom:927.818912pt;}
.ya2{bottom:927.820246pt;}
.y28e{bottom:935.826243pt;}
.y39{bottom:941.150911pt;}
.ya1{bottom:941.152245pt;}
.y28d{bottom:947.156243pt;}
.y1ea{bottom:954.482910pt;}
.y38{bottom:954.484244pt;}
.y28c{bottom:958.486243pt;}
.y37{bottom:967.816243pt;}
.y28b{bottom:969.816243pt;}
.y36{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h20{height:16.896000pt;}
.hf{height:21.193555pt;}
.h9{height:24.933594pt;}
.h21{height:25.067519pt;}
.h1c{height:25.343999pt;}
.h22{height:26.947583pt;}
.h1f{height:27.404780pt;}
.h13{height:31.461333pt;}
.h11{height:32.605469pt;}
.h1e{height:33.859584pt;}
.hc{height:34.523438pt;}
.h12{height:36.564219pt;}
.h10{height:36.585552pt;}
.h1b{height:36.922667pt;}
.h1a{height:38.229333pt;}
.h2{height:38.346667pt;}
.h17{height:38.359375pt;}
.h4{height:39.305333pt;}
.h27{height:39.560000pt;}
.h28{height:40.080000pt;}
.h3{height:40.661333pt;}
.h26{height:40.960000pt;}
.h16{height:42.195312pt;}
.hb{height:43.067059pt;}
.h8{height:43.067708pt;}
.ha{height:43.067710pt;}
.he{height:47.472000pt;}
.h23{height:48.053310pt;}
.h24{height:48.063983pt;}
.h15{height:48.090664pt;}
.h25{height:48.090827pt;}
.hd{height:48.096000pt;}
.h18{height:49.152000pt;}
.h14{height:67.872000pt;}
.h19{height:78.213332pt;}
.h5{height:98.037333pt;}
.h7{height:99.734375pt;}
.h6{height:99.755714pt;}
.h1d{height:106.337279pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w5{width:15.743999pt;}
.w4{width:17.664000pt;}
.w3{width:28.416000pt;}
.w2{width:29.952001pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-1.151733pt;}
.x0{left:0.000000pt;}
.x14{left:3.839966pt;}
.xe{left:6.528280pt;}
.x15{left:9.989341pt;}
.x7{left:12.517358pt;}
.xf{left:16.513816pt;}
.x2{left:54.392400pt;}
.x8{left:125.291331pt;}
.x4{left:207.516805pt;}
.x9{left:211.683472pt;}
.x6{left:223.518798pt;}
.x21{left:267.195333pt;}
.xa{left:330.972802pt;}
.x17{left:341.171997pt;}
.x19{left:350.772013pt;}
.x18{left:357.684001pt;}
.x13{left:376.445353pt;}
.x1a{left:418.114665pt;}
.x16{left:427.397339pt;}
.x1b{left:433.858276pt;}
.x1c{left:465.505330pt;}
.x1e{left:475.104655pt;}
.x1d{left:482.016683pt;}
.x3{left:519.632528pt;}
.xc{left:546.958659pt;}
.x10{left:556.558919pt;}
.x11{left:648.490682pt;}
.x12{left:657.322550pt;}
.x5{left:722.847982pt;}
.x1f{left:725.336507pt;}
.x20{left:726.469482pt;}
.xb{left:732.628825pt;}
.x1{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; }
  