
    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_daec1ea40f4a74758471afd5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_8da6211c5aa7d153053fd95e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4d76893b944605a704b307e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_714fa4db1dbaa6be754b40ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3c8ecc781204be544a1eaa85.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d459159355ad511da3c9fd76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d655ad4e4be3c207719f99ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_006f9268aa25160af78510e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_c84a2aafb5c18827fd6262ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8eda340cadeb62220ec57e0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705078;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_7d2ee332feeec750ab8d5907.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4c6cd0fa63209d9005b8f4f1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8c9c622e5e1f575a4a3bbf26.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_57598955d776cc829ec34019.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.877930;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_e260d1df025e6807b7e36fc6.woff2')format("woff");}.fff{font-family:fff;line-height:1.075195;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;}
.m4{transform:matrix(0.224687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224687,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224687,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.224688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224688,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.224688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224688,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224689,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.224689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224689,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.224690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224690,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.224691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224691,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);}
.mc{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,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);}
.v14{vertical-align:-23.656200px;}
.vf{vertical-align:-18.518400px;}
.vd{vertical-align:-17.287800px;}
.v2{vertical-align:-16.200000px;}
.v4{vertical-align:-13.200000px;}
.va{vertical-align:-11.524800px;}
.ve{vertical-align:-8.643600px;}
.v6{vertical-align:-6.448800px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:6.448800px;}
.v5{vertical-align:7.450800px;}
.v10{vertical-align:9.259800px;}
.vb{vertical-align:11.524800px;}
.vc{vertical-align:14.403600px;}
.v13{vertical-align:15.854400px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:19.800000px;}
.v8{vertical-align:21.486902px;}
.v15{vertical-align:23.656200px;}
.v12{vertical-align:31.987800px;}
.v11{vertical-align:34.895400px;}
.v9{vertical-align:41.409600px;}
.ls76{letter-spacing:-14.175000px;}
.ls9a{letter-spacing:-13.320000px;}
.lsa0{letter-spacing:-13.230000px;}
.ls73{letter-spacing:-10.845000px;}
.lsa4{letter-spacing:-10.710000px;}
.lsbe{letter-spacing:-10.665000px;}
.lsc5{letter-spacing:-10.575000px;}
.lsbd{letter-spacing:-10.440000px;}
.ls75{letter-spacing:-10.215000px;}
.ls9c{letter-spacing:-9.990000px;}
.ls9f{letter-spacing:-9.900000px;}
.lsc0{letter-spacing:-9.855000px;}
.ls74{letter-spacing:-9.180000px;}
.lsbf{letter-spacing:-9.000000px;}
.ls9b{letter-spacing:-8.640000px;}
.ls9d{letter-spacing:-8.325000px;}
.lsa1{letter-spacing:-8.235000px;}
.lsa2{letter-spacing:-8.190000px;}
.lsbb{letter-spacing:-7.290000px;}
.lsc6{letter-spacing:-4.725000px;}
.ls9e{letter-spacing:-3.870000px;}
.ls56{letter-spacing:-2.853792px;}
.ls2d{letter-spacing:-2.837366px;}
.ls3c{letter-spacing:-2.351029px;}
.lsb8{letter-spacing:-2.340000px;}
.ls45{letter-spacing:-2.337948px;}
.ls2b{letter-spacing:-2.128025px;}
.ls54{letter-spacing:-2.110617px;}
.ls3a{letter-spacing:-1.921412px;}
.ls50{letter-spacing:-1.907607px;}
.ls25{letter-spacing:-1.907558px;}
.ls2f{letter-spacing:-1.891593px;}
.ls62{letter-spacing:-1.580632px;}
.ls29{letter-spacing:-1.478882px;}
.ls28{letter-spacing:-1.430669px;}
.ls36{letter-spacing:-1.416215px;}
.ls4f{letter-spacing:-1.395810px;}
.ls38{letter-spacing:-1.391368px;}
.ls3b{letter-spacing:-1.382958px;}
.ls67{letter-spacing:-0.952618px;}
.ls66{letter-spacing:-0.921888px;}
.ls65{letter-spacing:-0.774187px;}
.ls53{letter-spacing:-0.330000px;}
.ls3f{letter-spacing:-0.092197px;}
.ls57{letter-spacing:-0.035672px;}
.ls64{letter-spacing:-0.032258px;}
.ls68{letter-spacing:-0.030730px;}
.ls8{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000334px;}
.ls72{letter-spacing:0.000600px;}
.ls95{letter-spacing:0.007200px;}
.lsa7{letter-spacing:0.007800px;}
.ls70{letter-spacing:0.009000px;}
.ls6c{letter-spacing:0.009600px;}
.ls71{letter-spacing:0.010200px;}
.ls8c{letter-spacing:0.019200px;}
.ls8b{letter-spacing:0.019800px;}
.ls69{letter-spacing:0.030730px;}
.ls7{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.066000px;}
.ls99{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.096000px;}
.ls98{letter-spacing:0.118800px;}
.ls96{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132000px;}
.lsb5{letter-spacing:0.168600px;}
.lsb6{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.264000px;}
.lsc3{letter-spacing:0.270000px;}
.lsc2{letter-spacing:0.291600px;}
.lsc1{letter-spacing:0.294000px;}
.ls4e{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.330000px;}
.lsb4{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.361800px;}
.lsb3{letter-spacing:0.372600px;}
.lsaf{letter-spacing:0.385800px;}
.ls11{letter-spacing:0.396000px;}
.lsb0{letter-spacing:0.405000px;}
.ls77{letter-spacing:0.420000px;}
.ls60{letter-spacing:0.430214px;}
.lsf{letter-spacing:0.462000px;}
.ls79{letter-spacing:0.525600px;}
.ls7b{letter-spacing:0.526200px;}
.lse{letter-spacing:0.528000px;}
.ls7a{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.567600px;}
.lsd{letter-spacing:0.594000px;}
.ls6f{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.606600px;}
.lsb2{letter-spacing:0.607800px;}
.lsb1{letter-spacing:0.610800px;}
.ls5{letter-spacing:0.624000px;}
.ls6e{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.660000px;}
.ls23{letter-spacing:0.696454px;}
.ls24{letter-spacing:0.705164px;}
.ls2c{letter-spacing:0.709342px;}
.ls55{letter-spacing:0.713448px;}
.ls90{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.726000px;}
.ls91{letter-spacing:0.734400px;}
.ls81{letter-spacing:0.780000px;}
.ls46{letter-spacing:0.787032px;}
.ls30{letter-spacing:0.792000px;}
.ls80{letter-spacing:0.804600px;}
.ls63{letter-spacing:0.806445px;}
.ls7f{letter-spacing:0.810000px;}
.ls7e{letter-spacing:0.825600px;}
.ls7c{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.858000px;}
.ls87{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.921888px;}
.ls2{letter-spacing:0.924000px;}
.ls89{letter-spacing:0.933000px;}
.ls8e{letter-spacing:0.945000px;}
.ls6b{letter-spacing:0.952618px;}
.ls27{letter-spacing:0.953779px;}
.ls14{letter-spacing:0.960000px;}
.ls22{letter-spacing:0.962909px;}
.ls8d{letter-spacing:0.967800px;}
.ls3d{letter-spacing:0.968071px;}
.ls8f{letter-spacing:0.969000px;}
.ls31{letter-spacing:0.990000px;}
.ls93{letter-spacing:1.078800px;}
.ls21{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.122000px;}
.ls84{letter-spacing:1.125000px;}
.ls83{letter-spacing:1.140000px;}
.ls1b{letter-spacing:1.188000px;}
.ls4d{letter-spacing:1.320000px;}
.ls3e{letter-spacing:1.382958px;}
.lsb{letter-spacing:1.386000px;}
.ls1e{letter-spacing:1.395000px;}
.ls52{letter-spacing:1.395810px;}
.ls2a{letter-spacing:1.410097px;}
.ls37{letter-spacing:1.416215px;}
.ls15{letter-spacing:1.452000px;}
.ls18{letter-spacing:1.518000px;}
.ls47{letter-spacing:1.574064px;}
.ls48{letter-spacing:1.581918px;}
.ls58{letter-spacing:1.650000px;}
.ls1f{letter-spacing:1.716000px;}
.ls1c{letter-spacing:1.848000px;}
.ls2e{letter-spacing:1.891593px;}
.ls26{letter-spacing:1.907558px;}
.ls51{letter-spacing:1.907607px;}
.ls39{letter-spacing:1.921412px;}
.ls1d{letter-spacing:2.046000px;}
.ls1a{letter-spacing:2.112000px;}
.lsaa{letter-spacing:2.640000px;}
.lsa9{letter-spacing:2.655000px;}
.lsa8{letter-spacing:2.661600px;}
.lsac{letter-spacing:2.700000px;}
.lsad{letter-spacing:2.736000px;}
.lsab{letter-spacing:2.745000px;}
.lsba{letter-spacing:2.760000px;}
.ls82{letter-spacing:3.056400px;}
.lsbc{letter-spacing:3.360000px;}
.ls85{letter-spacing:3.785400px;}
.lsae{letter-spacing:4.173600px;}
.lsc4{letter-spacing:4.329000px;}
.lsb7{letter-spacing:4.980000px;}
.lsa3{letter-spacing:5.340000px;}
.ls92{letter-spacing:5.362800px;}
.ls94{letter-spacing:5.967600px;}
.ls61{letter-spacing:6.743400px;}
.ls86{letter-spacing:7.125600px;}
.ls8a{letter-spacing:7.510200px;}
.ls97{letter-spacing:7.609800px;}
.lsa6{letter-spacing:7.933200px;}
.lsa5{letter-spacing:7.933800px;}
.ls78{letter-spacing:8.016600px;}
.ls7d{letter-spacing:8.316600px;}
.ls88{letter-spacing:8.424000px;}
.ls1{letter-spacing:10.656000px;}
.lsb9{letter-spacing:11.520000px;}
.ls3{letter-spacing:12.510000px;}
.ls5e{letter-spacing:17.569309px;}
.ls5b{letter-spacing:19.344087px;}
.ls59{letter-spacing:19.720468px;}
.ls5d{letter-spacing:20.773544px;}
.ls5f{letter-spacing:20.774023px;}
.ls5a{letter-spacing:20.774143px;}
.ls5c{letter-spacing:21.870429px;}
.ls4a{letter-spacing:21.961745px;}
.ls49{letter-spacing:51.040620px;}
.ls41{letter-spacing:85.385536px;}
.ls40{letter-spacing:92.584084px;}
.ls34{letter-spacing:247.780235px;}
.ls42{letter-spacing:540.892719px;}
.ls33{letter-spacing:957.842719px;}
.ls4c{letter-spacing:1058.931456px;}
.ls4b{letter-spacing:1060.912855px;}
.ls9{letter-spacing:1422.729600px;}
.ls0{letter-spacing:1920.921600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-21.085865px;}
.ws1b{word-spacing:-20.340469px;}
.ws9{word-spacing:-18.479472px;}
.ws63{word-spacing:-17.760000px;}
.ws1e{word-spacing:-17.160000px;}
.ws2a{word-spacing:-17.028000px;}
.ws1a{word-spacing:-17.027689px;}
.ws5{word-spacing:-16.764000px;}
.ws18{word-spacing:-16.500000px;}
.ws1c{word-spacing:-16.497644px;}
.ws52{word-spacing:-15.900000px;}
.wsa{word-spacing:-15.856579px;}
.ws4c{word-spacing:-15.840000px;}
.ws49{word-spacing:-15.540000px;}
.ws5f{word-spacing:-15.420000px;}
.ws5b{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.902800px;}
.ws2d{word-spacing:-14.842113px;}
.ws7{word-spacing:-14.664355px;}
.ws64{word-spacing:-13.995000px;}
.ws61{word-spacing:-13.905000px;}
.wsb{word-spacing:-13.472131px;}
.ws24{word-spacing:-12.907608px;}
.ws21{word-spacing:-12.492721px;}
.ws51{word-spacing:-12.375000px;}
.ws5a{word-spacing:-12.330000px;}
.ws58{word-spacing:-12.195000px;}
.ws53{word-spacing:-12.150000px;}
.ws4d{word-spacing:-12.060000px;}
.ws44{word-spacing:-11.880000px;}
.ws4a{word-spacing:-11.790000px;}
.ws65{word-spacing:-11.655000px;}
.ws68{word-spacing:-11.610000px;}
.ws2b{word-spacing:-11.538696px;}
.ws6e{word-spacing:-11.520000px;}
.ws16{word-spacing:-11.452736px;}
.ws1f{word-spacing:-11.432453px;}
.ws6a{word-spacing:-11.430000px;}
.ws5e{word-spacing:-11.340000px;}
.ws47{word-spacing:-11.250000px;}
.ws2c{word-spacing:-11.026899px;}
.wsf{word-spacing:-10.971239px;}
.ws6{word-spacing:-10.725000px;}
.ws20{word-spacing:-10.464382px;}
.ws1{word-spacing:-9.750000px;}
.ws11{word-spacing:-9.672840px;}
.ws0{word-spacing:-9.324000px;}
.ws30{word-spacing:-8.977554px;}
.wsd{word-spacing:-8.963498px;}
.ws62{word-spacing:-8.910000px;}
.ws33{word-spacing:-8.882428px;}
.ws37{word-spacing:-8.870895px;}
.ws3{word-spacing:-8.775000px;}
.ws22{word-spacing:-8.643450px;}
.ws3f{word-spacing:-8.635018px;}
.ws31{word-spacing:-8.264106px;}
.ws40{word-spacing:-8.112614px;}
.ws39{word-spacing:-8.032192px;}
.ws29{word-spacing:-8.009208px;}
.ws17{word-spacing:-7.669550px;}
.ws3e{word-spacing:-7.651670px;}
.ws50{word-spacing:-7.380000px;}
.ws3a{word-spacing:-7.290263px;}
.ws26{word-spacing:-7.222176px;}
.wse{word-spacing:-7.170899px;}
.ws10{word-spacing:-6.835474px;}
.ws3b{word-spacing:-6.760512px;}
.ws3d{word-spacing:-6.729782px;}
.ws6f{word-spacing:-6.525000px;}
.ws34{word-spacing:-6.483818px;}
.ws27{word-spacing:-6.435144px;}
.ws2f{word-spacing:-6.153489px;}
.ws15{word-spacing:-6.126132px;}
.ws32{word-spacing:-5.410314px;}
.ws25{word-spacing:-4.097196px;}
.ws4{word-spacing:0.000000px;}
.ws4f{word-spacing:5.400000px;}
.ws59{word-spacing:6.075000px;}
.ws57{word-spacing:6.120000px;}
.ws4b{word-spacing:6.525000px;}
.ws6b{word-spacing:6.885000px;}
.ws60{word-spacing:7.102200px;}
.ws5d{word-spacing:7.109400px;}
.ws43{word-spacing:7.110000px;}
.ws6c{word-spacing:8.595000px;}
.ws4e{word-spacing:8.730000px;}
.ws55{word-spacing:9.460800px;}
.ws54{word-spacing:9.495000px;}
.ws45{word-spacing:9.810000px;}
.ws67{word-spacing:9.990000px;}
.ws66{word-spacing:10.035000px;}
.ws6d{word-spacing:10.170000px;}
.ws69{word-spacing:10.215000px;}
.ws5c{word-spacing:10.260000px;}
.ws42{word-spacing:10.440000px;}
.ws48{word-spacing:15.390000px;}
.ws56{word-spacing:16.110000px;}
.ws46{word-spacing:17.100000px;}
.ws38{word-spacing:19.580485px;}
.ws36{word-spacing:74.021058px;}
.ws13{word-spacing:90.624831px;}
.ws41{word-spacing:101.305845px;}
.ws3c{word-spacing:103.846159px;}
.ws28{word-spacing:119.050764px;}
.ws2e{word-spacing:131.648397px;}
.ws35{word-spacing:210.879232px;}
.ws23{word-spacing:311.398380px;}
.ws12{word-spacing:336.413832px;}
.ws14{word-spacing:338.563486px;}
.ws1d{word-spacing:493.505254px;}
.ws8{word-spacing:1144.081364px;}
._17{margin-left:-1864.328400px;}
._16{margin-left:-596.710343px;}
._12{margin-left:-335.818443px;}
._14{margin-left:-156.207087px;}
._13{margin-left:-151.907780px;}
._18{margin-left:-136.753174px;}
._10{margin-left:-17.811000px;}
._c{margin-left:-15.539400px;}
._7{margin-left:-13.615200px;}
._1{margin-left:-10.662600px;}
._4{margin-left:-9.324000px;}
._1b{margin-left:-7.855200px;}
._1a{margin-left:-5.293200px;}
._15{margin-left:-4.006529px;}
._11{margin-left:-2.346000px;}
._9{margin-left:-1.248000px;}
._5{width:1.932000px;}
._6{width:3.654000px;}
._3{width:4.662000px;}
._8{width:6.000000px;}
._b{width:7.074000px;}
._a{width:8.250000px;}
._e{width:9.384000px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._19{width:29.607000px;}
._f{width:45.584400px;}
._d{width:1187.565600px;}
.fc6{color:rgb(0,240,0);}
.fc5{color:rgb(0,255,0);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(255,128,128);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs1d{font-size:23.148000px;}
.fs23{font-size:23.656200px;}
.fs16{font-size:25.794600px;}
.fs3{font-size:27.000000px;}
.fs17{font-size:27.943800px;}
.fs20{font-size:29.727000px;}
.fs14{font-size:30.093600px;}
.fs24{font-size:30.729600px;}
.fs13{font-size:32.242800px;}
.fs22{font-size:32.257800px;}
.fs15{font-size:34.392600px;}
.fs1c{font-size:34.573800px;}
.fs1f{font-size:34.895400px;}
.fsa{font-size:35.100000px;}
.fs21{font-size:35.672400px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs12{font-size:40.983000px;}
.fs5{font-size:42.000000px;}
.fsf{font-size:42.900000px;}
.fs11{font-size:44.708400px;}
.fs6{font-size:45.000000px;}
.fs1b{font-size:46.098600px;}
.fs1e{font-size:46.527000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs19{font-size:57.973800px;}
.fs10{font-size:59.611200px;}
.fs1{font-size:60.000000px;}
.fse{font-size:66.000000px;}
.fs1a{font-size:66.255600px;}
.fs8{font-size:72.000000px;}
.fs18{font-size:78.678600px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y193{bottom:0.480150px;}
.y176{bottom:0.958500px;}
.y11b{bottom:0.999750px;}
.y116{bottom:1.385550px;}
.yd2{bottom:1.888950px;}
.y15c{bottom:2.101918px;}
.ydf{bottom:2.193150px;}
.yd4{bottom:2.426400px;}
.yd1{bottom:4.575900px;}
.y17c{bottom:4.721850px;}
.y101{bottom:4.810650px;}
.yde{bottom:6.334050px;}
.ye1{bottom:9.439800px;}
.y194{bottom:9.762900px;}
.y19e{bottom:9.764561px;}
.yfe{bottom:9.853950px;}
.y111{bottom:9.873300px;}
.y118{bottom:11.416350px;}
.ye4{bottom:11.510400px;}
.yd5{bottom:11.561850px;}
.y113{bottom:11.802150px;}
.y192{bottom:14.244300px;}
.y157{bottom:14.490150px;}
.y119{bottom:16.431750px;}
.y17d{bottom:16.549800px;}
.y114{bottom:17.203350px;}
.y15b{bottom:17.958300px;}
.y152{bottom:19.444650px;}
.y11c{bottom:21.061500px;}
.y156{bottom:22.417350px;}
.y197{bottom:22.566900px;}
.y195{bottom:23.527200px;}
.y199{bottom:24.807600px;}
.yb4{bottom:24.840600px;}
.y159{bottom:24.894600px;}
.y174{bottom:25.152000px;}
.y150{bottom:25.390050px;}
.yd6{bottom:26.071200px;}
.y186{bottom:26.227200px;}
.y11a{bottom:26.848500px;}
.y115{bottom:27.619950px;}
.y185{bottom:27.840150px;}
.yb5{bottom:28.566300px;}
.yb3{bottom:28.573826px;}
.y110{bottom:31.092300px;}
.y117{bottom:32.249700px;}
.y112{bottom:33.021300px;}
.y19d{bottom:33.449400px;}
.yff{bottom:34.343850px;}
.y17e{bottom:34.829400px;}
.y178{bottom:36.442350px;}
.y184{bottom:38.055300px;}
.y15d{bottom:38.271750px;}
.yd3{bottom:38.430900px;}
.yd0{bottom:40.580400px;}
.y17b{bottom:40.743450px;}
.y196{bottom:40.812450px;}
.y134{bottom:42.154350px;}
.y173{bottom:42.894000px;}
.y100{bottom:42.986700px;}
.y198{bottom:43.053150px;}
.y19a{bottom:43.373250px;}
.y182{bottom:43.969200px;}
.y191{bottom:44.653650px;}
.yb2{bottom:45.331950px;}
.yb7{bottom:45.332100px;}
.y151{bottom:45.703500px;}
.y153{bottom:46.198950px;}
.y135{bottom:46.516350px;}
.yb1{bottom:48.126300px;}
.ye3{bottom:48.779100px;}
.y175{bottom:48.807900px;}
.y179{bottom:51.496050px;}
.y190{bottom:51.695850px;}
.y15a{bottom:53.630850px;}
.y14f{bottom:54.126150px;}
.y172{bottom:54.721800px;}
.ye0{bottom:57.061050px;}
.ye5{bottom:59.131500px;}
.y154{bottom:59.576250px;}
.y158{bottom:60.071550px;}
.ye2{bottom:61.202100px;}
.y183{bottom:61.711200px;}
.y130{bottom:62.509950px;}
.y12f{bottom:64.690950px;}
.y18f{bottom:67.060500px;}
.y155{bottom:67.998900px;}
.y136{bottom:71.960850px;}
.y12d{bottom:72.687900px;}
.y180{bottom:74.076750px;}
.y18d{bottom:76.023300px;}
.yb6{bottom:77.000550px;}
.y17a{bottom:77.302500px;}
.y177{bottom:78.377850px;}
.yf8{bottom:81.886050px;}
.y224{bottom:85.039050px;}
.y1{bottom:85.039350px;}
.y32{bottom:85.039500px;}
.y1af{bottom:85.039650px;}
.y166{bottom:85.039800px;}
.y19c{bottom:85.628261px;}
.yaf{bottom:87.246300px;}
.ycd{bottom:87.870000px;}
.yca{bottom:88.407450px;}
.y137{bottom:88.681500px;}
.y17f{bottom:89.130450px;}
.y12e{bottom:89.408400px;}
.y18e{bottom:89.787450px;}
.ycc{bottom:90.019500px;}
.yc9{bottom:90.556950px;}
.y131{bottom:91.589400px;}
.ybb{bottom:91.903500px;}
.yfb{bottom:92.689500px;}
.y181{bottom:98.807850px;}
.y132{bottom:100.313250px;}
.yad{bottom:107.737800px;}
.ycb{bottom:108.290550px;}
.yae{bottom:110.532000px;}
.y1a4{bottom:111.234150px;}
.yb8{bottom:111.463500px;}
.y138{bottom:113.399100px;}
.ycf{bottom:113.664300px;}
.yf9{bottom:115.018650px;}
.yf7{bottom:115.019550px;}
.y133{bottom:117.034050px;}
.y11{bottom:119.055150px;}
.y165{bottom:119.209350px;}
.y74{bottom:119.254200px;}
.ydc{bottom:119.728650px;}
.yb0{bottom:119.846400px;}
.y1ae{bottom:120.046200px;}
.y84{bottom:120.148200px;}
.y1cb{bottom:120.276300px;}
.y149{bottom:120.516600px;}
.y1a3{bottom:120.516900px;}
.y5e{bottom:120.571800px;}
.yfc{bottom:120.780150px;}
.yab{bottom:120.868950px;}
.y223{bottom:120.962400px;}
.y1f7{bottom:121.174800px;}
.y139{bottom:122.122950px;}
.y18c{bottom:129.159600px;}
.yb9{bottom:129.160650px;}
.yfd{bottom:129.423150px;}
.y10{bottom:131.055150px;}
.y1a1{bottom:131.400300px;}
.y148{bottom:131.416500px;}
.y164{bottom:136.805850px;}
.y73{bottom:136.850700px;}
.ydb{bottom:137.325150px;}
.y14d{bottom:137.361900px;}
.y1ad{bottom:137.642550px;}
.y1ca{bottom:138.091800px;}
.y5d{bottom:138.168300px;}
.y103{bottom:138.385200px;}
.yaa{bottom:138.465450px;}
.y222{bottom:138.777900px;}
.y13a{bottom:138.843600px;}
.y1f6{bottom:138.990300px;}
.yfa{bottom:140.228850px;}
.y14b{bottom:143.307300px;}
.yba{bottom:144.994950px;}
.y1a2{bottom:145.164450px;}
.y18b{bottom:147.405150px;}
.yce{bottom:148.056750px;}
.yf{bottom:149.433000px;}
.y1a0{bottom:149.645850px;}
.y102{bottom:154.372200px;}
.y163{bottom:154.402350px;}
.y72{bottom:154.447200px;}
.y1ac{bottom:155.239200px;}
.y5c{bottom:155.764800px;}
.y1c9{bottom:155.907300px;}
.ya9{bottom:156.061950px;}
.y221{bottom:156.593400px;}
.y1f5{bottom:156.805800px;}
.y19f{bottom:158.288550px;}
.y147{bottom:162.629850px;}
.y14c{bottom:163.620750px;}
.yda{bottom:163.719000px;}
.y14e{bottom:164.116200px;}
.y12b{bottom:165.643200px;}
.ye{bottom:167.811000px;}
.y162{bottom:171.998850px;}
.y14a{bottom:172.043400px;}
.y71{bottom:172.043700px;}
.y1ab{bottom:172.835700px;}
.y5b{bottom:173.361150px;}
.ya8{bottom:173.658450px;}
.y1c8{bottom:173.722800px;}
.y220{bottom:174.408900px;}
.y1f4{bottom:174.621300px;}
.yf6{bottom:178.353000px;}
.y19b{bottom:181.335600px;}
.y12a{bottom:183.239700px;}
.yd{bottom:184.062900px;}
.y70{bottom:189.640200px;}
.yd9{bottom:190.112850px;}
.y1aa{bottom:190.432200px;}
.y5a{bottom:190.957650px;}
.ya7{bottom:191.254950px;}
.y1c7{bottom:191.538300px;}
.y21f{bottom:192.224400px;}
.y1f3{bottom:192.436800px;}
.yc{bottom:195.243900px;}
.y161{bottom:198.392550px;}
.y129{bottom:200.836200px;}
.yb{bottom:206.424900px;}
.y6f{bottom:207.236700px;}
.y1a9{bottom:208.028550px;}
.y59{bottom:208.554150px;}
.ya6{bottom:208.851450px;}
.y1c6{bottom:209.353800px;}
.y21e{bottom:210.039900px;}
.y1f2{bottom:210.252300px;}
.y128{bottom:218.432700px;}
.ya{bottom:223.983900px;}
.y1a8{bottom:225.625050px;}
.y58{bottom:226.150800px;}
.ya5{bottom:226.447950px;}
.y1c5{bottom:227.169300px;}
.y21d{bottom:227.855400px;}
.y1f1{bottom:228.067800px;}
.y6e{bottom:233.630550px;}
.y9{bottom:235.164900px;}
.y127{bottom:236.029200px;}
.yd8{bottom:242.605200px;}
.y57{bottom:243.747300px;}
.ya4{bottom:244.044450px;}
.y1c4{bottom:244.984800px;}
.y21c{bottom:245.670900px;}
.y1f0{bottom:245.883300px;}
.y8{bottom:246.345900px;}
.y126{bottom:253.625700px;}
.y160{bottom:255.136950px;}
.yd7{bottom:258.592200px;}
.ya3{bottom:261.640950px;}
.y1c3{bottom:262.800300px;}
.y21b{bottom:263.486400px;}
.y1ef{bottom:263.698800px;}
.y6d{bottom:268.821750px;}
.y31{bottom:269.057700px;}
.y56{bottom:270.141000px;}
.y15f{bottom:271.123950px;}
.y125{bottom:271.222200px;}
.y1a7{bottom:278.410950px;}
.y1c2{bottom:280.615800px;}
.y21a{bottom:281.302050px;}
.y1ee{bottom:281.514450px;}
.yc8{bottom:282.573000px;}
.y30{bottom:283.450200px;}
.y15e{bottom:287.110950px;}
.y55{bottom:287.737500px;}
.ya2{bottom:288.034650px;}
.y124{bottom:288.818700px;}
.y1a6{bottom:294.397950px;}
.y1c1{bottom:298.431300px;}
.y219{bottom:299.117550px;}
.y1ed{bottom:299.329950px;}
.y2f{bottom:302.094750px;}
.y54{bottom:305.334000px;}
.ya1{bottom:305.631300px;}
.y123{bottom:306.415200px;}
.y1a5{bottom:310.384950px;}
.y146{bottom:311.091000px;}
.y1c0{bottom:316.246800px;}
.y2e{bottom:316.487250px;}
.y218{bottom:316.933050px;}
.y1ec{bottom:317.145450px;}
.y53{bottom:322.930500px;}
.ya0{bottom:323.227800px;}
.y122{bottom:324.011700px;}
.y2d{bottom:330.879750px;}
.y6c{bottom:331.387050px;}
.y1bf{bottom:334.062300px;}
.y18a{bottom:334.365000px;}
.y217{bottom:334.748400px;}
.y1eb{bottom:334.960950px;}
.y52{bottom:340.527000px;}
.y9f{bottom:340.824300px;}
.y121{bottom:341.608200px;}
.y2c{bottom:345.272250px;}
.y6b{bottom:347.374050px;}
.y1be{bottom:351.877800px;}
.y216{bottom:352.563900px;}
.y1ea{bottom:352.776300px;}
.y51{bottom:358.123500px;}
.y9e{bottom:358.420650px;}
.yf5{bottom:358.534800px;}
.y120{bottom:359.204700px;}
.y2b{bottom:359.664750px;}
.y6a{bottom:363.361050px;}
.y1bd{bottom:369.693300px;}
.y215{bottom:370.379400px;}
.y1e9{bottom:370.591800px;}
.y2a{bottom:374.057250px;}
.y50{bottom:375.720000px;}
.y9d{bottom:376.017300px;}
.yf4{bottom:376.131300px;}
.y214{bottom:388.194900px;}
.y1e8{bottom:388.407300px;}
.y29{bottom:388.449750px;}
.y4f{bottom:393.316500px;}
.y9c{bottom:393.613650px;}
.yf3{bottom:393.727800px;}
.y28{bottom:402.842250px;}
.y1bc{bottom:405.103500px;}
.y213{bottom:406.010400px;}
.y1e7{bottom:406.222800px;}
.y4e{bottom:410.913000px;}
.y9b{bottom:411.210150px;}
.yf2{bottom:411.324300px;}
.y11f{bottom:411.990450px;}
.y212{bottom:423.826050px;}
.y1e6{bottom:424.038450px;}
.y11e{bottom:427.977450px;}
.y4d{bottom:428.509500px;}
.y9a{bottom:428.806800px;}
.yf1{bottom:428.920800px;}
.y27{bottom:433.222050px;}
.y83{bottom:437.538750px;}
.y211{bottom:441.641400px;}
.y1e5{bottom:441.853800px;}
.y11d{bottom:443.964450px;}
.y4c{bottom:446.106000px;}
.y99{bottom:446.403150px;}
.yf0{bottom:446.517300px;}
.y26{bottom:447.614550px;}
.y82{bottom:455.135250px;}
.yc7{bottom:458.664450px;}
.y210{bottom:459.457050px;}
.y1e4{bottom:459.669450px;}
.y4b{bottom:463.702500px;}
.y1bb{bottom:463.944000px;}
.y98{bottom:463.999800px;}
.yef{bottom:464.113800px;}
.y25{bottom:466.259100px;}
.y10f{bottom:467.944500px;}
.y81{bottom:472.731750px;}
.yc6{bottom:476.260950px;}
.y20f{bottom:477.272400px;}
.y1e3{bottom:477.484800px;}
.y24{bottom:480.651600px;}
.y4a{bottom:481.299000px;}
.yee{bottom:481.710300px;}
.y80{bottom:490.328250px;}
.y97{bottom:490.393500px;}
.yc5{bottom:493.857450px;}
.y23{bottom:495.044100px;}
.y20e{bottom:495.088050px;}
.y1e2{bottom:495.300450px;}
.y49{bottom:498.895500px;}
.y1ba{bottom:499.135200px;}
.yed{bottom:499.306800px;}
.y7f{bottom:507.924750px;}
.y96{bottom:507.990000px;}
.y22{bottom:509.436600px;}
.yc4{bottom:511.453950px;}
.y20d{bottom:512.903400px;}
.y1e1{bottom:513.115800px;}
.y145{bottom:513.970500px;}
.y48{bottom:516.492000px;}
.yec{bottom:516.903300px;}
.y21{bottom:523.829100px;}
.y7e{bottom:525.521250px;}
.y95{bottom:525.586500px;}
.yc3{bottom:529.050450px;}
.y20c{bottom:530.719050px;}
.y1e0{bottom:530.931450px;}
.y144{bottom:531.567150px;}
.y47{bottom:534.088500px;}
.yeb{bottom:534.499800px;}
.y20{bottom:538.221600px;}
.y7d{bottom:543.117750px;}
.y94{bottom:543.183000px;}
.yc2{bottom:546.646950px;}
.y20b{bottom:548.534400px;}
.y1df{bottom:548.746800px;}
.y143{bottom:549.163500px;}
.y1b9{bottom:551.920950px;}
.yea{bottom:552.096300px;}
.y1f{bottom:552.614100px;}
.y46{bottom:560.482350px;}
.y7c{bottom:560.714250px;}
.y93{bottom:560.779500px;}
.yc1{bottom:564.243450px;}
.y20a{bottom:566.350050px;}
.y1de{bottom:566.562450px;}
.y142{bottom:566.760150px;}
.y1e{bottom:567.006600px;}
.y1b8{bottom:569.517450px;}
.ye9{bottom:569.692800px;}
.y189{bottom:570.822150px;}
.y45{bottom:578.078850px;}
.y7b{bottom:578.310750px;}
.y92{bottom:578.376000px;}
.y1d{bottom:581.399100px;}
.yc0{bottom:581.839950px;}
.y209{bottom:584.165400px;}
.y141{bottom:584.356500px;}
.y1dd{bottom:584.377800px;}
.y188{bottom:586.809150px;}
.y1b7{bottom:587.113950px;}
.ye8{bottom:587.289300px;}
.y44{bottom:595.675350px;}
.y7a{bottom:595.907250px;}
.ybf{bottom:599.436450px;}
.y140{bottom:601.953150px;}
.y208{bottom:601.980900px;}
.y1dc{bottom:602.193300px;}
.y187{bottom:602.796150px;}
.y1b6{bottom:604.710450px;}
.y91{bottom:604.769850px;}
.ye7{bottom:604.885800px;}
.y43{bottom:613.271850px;}
.y79{bottom:613.503750px;}
.y13f{bottom:619.549650px;}
.y207{bottom:619.796400px;}
.y1db{bottom:620.008800px;}
.y1b5{bottom:622.306950px;}
.ybe{bottom:625.830300px;}
.y171{bottom:626.776500px;}
.y42{bottom:630.868350px;}
.y78{bottom:631.100250px;}
.y90{bottom:635.415600px;}
.y13e{bottom:637.146000px;}
.y206{bottom:637.611900px;}
.y1da{bottom:637.824300px;}
.y1b4{bottom:639.903450px;}
.y41{bottom:648.464850px;}
.y77{bottom:648.696750px;}
.y13d{bottom:654.742650px;}
.y205{bottom:655.427550px;}
.y1d9{bottom:655.639950px;}
.y1b3{bottom:657.499950px;}
.ye6{bottom:657.671700px;}
.y40{bottom:666.061350px;}
.y76{bottom:666.293250px;}
.y1c{bottom:672.125100px;}
.y204{bottom:673.242900px;}
.y1d8{bottom:673.455300px;}
.y1b2{bottom:675.096450px;}
.ydd{bottom:681.652500px;}
.ybd{bottom:682.574550px;}
.y8f{bottom:683.656200px;}
.y3f{bottom:683.657850px;}
.y10e{bottom:683.889750px;}
.y1b{bottom:684.062100px;}
.y203{bottom:691.058400px;}
.y1d7{bottom:691.270800px;}
.y75{bottom:692.687100px;}
.y1b1{bottom:692.692950px;}
.ybc{bottom:698.561550px;}
.y8e{bottom:701.252550px;}
.y3e{bottom:701.254350px;}
.y10d{bottom:701.486250px;}
.y1a{bottom:704.099100px;}
.y13c{bottom:707.528400px;}
.y202{bottom:708.873900px;}
.y1d6{bottom:709.086300px;}
.y69{bottom:710.283600px;}
.y19{bottom:716.036100px;}
.y8d{bottom:718.849050px;}
.y10c{bottom:719.082750px;}
.yac{bottom:722.541000px;}
.y13b{bottom:723.515400px;}
.y201{bottom:726.689550px;}
.y1d5{bottom:726.901950px;}
.y3d{bottom:727.648200px;}
.y68{bottom:727.880100px;}
.y1b0{bottom:727.884150px;}
.y18{bottom:736.073100px;}
.y8c{bottom:736.445550px;}
.y10b{bottom:736.679250px;}
.y200{bottom:744.504900px;}
.y1d4{bottom:744.717300px;}
.y3c{bottom:745.244700px;}
.y67{bottom:745.476600px;}
.y12c{bottom:747.496500px;}
.y8b{bottom:754.042050px;}
.y10a{bottom:754.275750px;}
.y17{bottom:756.807450px;}
.y1ff{bottom:762.320400px;}
.y1d3{bottom:762.532800px;}
.y3b{bottom:762.841200px;}
.y66{bottom:763.073100px;}
.y170{bottom:763.073400px;}
.y8a{bottom:771.638550px;}
.y109{bottom:771.872250px;}
.y16{bottom:774.403950px;}
.y1fe{bottom:780.135900px;}
.y1d2{bottom:780.348300px;}
.y3a{bottom:780.437700px;}
.y65{bottom:780.669600px;}
.y16f{bottom:780.670050px;}
.y89{bottom:789.235050px;}
.y108{bottom:789.468750px;}
.y1fd{bottom:797.951550px;}
.y39{bottom:798.034200px;}
.y22c{bottom:798.163200px;}
.y1d1{bottom:798.163950px;}
.y64{bottom:798.266100px;}
.y16e{bottom:798.266400px;}
.y88{bottom:806.831700px;}
.y107{bottom:807.065250px;}
.y15{bottom:809.008350px;}
.y38{bottom:815.630700px;}
.y1fc{bottom:815.767050px;}
.y63{bottom:815.862600px;}
.y16d{bottom:815.862900px;}
.y22b{bottom:815.978700px;}
.y1d0{bottom:815.979450px;}
.y87{bottom:824.428200px;}
.y106{bottom:824.661750px;}
.y14{bottom:830.608200px;}
.y37{bottom:833.227350px;}
.y62{bottom:833.459100px;}
.y16c{bottom:833.459400px;}
.y1fb{bottom:833.582550px;}
.y22a{bottom:833.794200px;}
.y1cf{bottom:833.794950px;}
.y86{bottom:842.024550px;}
.y105{bottom:842.258250px;}
.y36{bottom:850.823700px;}
.y61{bottom:851.055600px;}
.y16b{bottom:851.055900px;}
.y1fa{bottom:851.397900px;}
.y229{bottom:851.609550px;}
.y1ce{bottom:851.610300px;}
.y13{bottom:856.460250px;}
.y85{bottom:859.621050px;}
.y104{bottom:859.854750px;}
.y60{bottom:868.652100px;}
.y16a{bottom:868.652400px;}
.y1f9{bottom:869.213400px;}
.y228{bottom:869.425200px;}
.y1cd{bottom:869.425800px;}
.y12{bottom:881.960250px;}
.y35{bottom:886.014900px;}
.y5f{bottom:886.248600px;}
.y169{bottom:886.248900px;}
.y1f8{bottom:887.029050px;}
.y227{bottom:887.240700px;}
.y1cc{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y226{bottom:931.877700px;}
.y34{bottom:931.878150px;}
.y168{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y225{bottom:949.474200px;}
.y33{bottom:949.474650px;}
.y167{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h2f{height:16.072488px;}
.h41{height:16.425350px;}
.h2c{height:16.863680px;}
.h4{height:19.602000px;}
.h20{height:20.357495px;}
.h44{height:20.826506px;}
.h43{height:21.336666px;}
.h38{height:21.656584px;}
.h1d{height:21.923658px;}
.h3d{height:22.397750px;}
.h1c{height:23.489384px;}
.hb{height:24.114111px;}
.h39{height:24.768629px;}
.h1e{height:25.055546px;}
.h33{height:25.421844px;}
.h1a{height:28.455970px;}
.h19{height:31.042649px;}
.h6{height:31.206000px;}
.h29{height:32.007915px;}
.hf{height:32.882812px;}
.he{height:32.976562px;}
.h3e{height:33.150950px;}
.hd{height:33.328125px;}
.h7{height:33.435000px;}
.h27{height:33.583550px;}
.h1f{height:33.829871px;}
.h32{height:33.895646px;}
.h5{height:35.328000px;}
.h3b{height:35.529184px;}
.hc{height:37.098633px;}
.h3a{height:37.510984px;}
.h2e{height:38.468480px;}
.h2d{height:38.469080px;}
.h23{height:40.253293px;}
.h2{height:41.220703px;}
.h18{height:41.390198px;}
.h13{height:41.660156px;}
.h2b{height:42.109500px;}
.h17{height:43.427691px;}
.h30{height:44.033203px;}
.ha{height:44.793457px;}
.h10{height:45.213867px;}
.h12{height:45.342773px;}
.h11{height:45.826172px;}
.h40{height:46.042717px;}
.h3f{height:46.053950px;}
.h28{height:47.987150px;}
.h24{height:48.268240px;}
.h2a{height:48.436523px;}
.h14{height:49.272803px;}
.h9{height:49.464844px;}
.h16{height:50.878491px;}
.h45{height:53.818359px;}
.h22{height:54.629379px;}
.h8{height:62.490234px;}
.h36{height:65.883446px;}
.h35{height:68.791046px;}
.h34{height:74.606846px;}
.h25{height:89.677840px;}
.h3{height:104.850000px;}
.h21{height:105.399000px;}
.h3c{height:113.013000px;}
.h31{height:149.668500px;}
.h26{height:151.369500px;}
.h1b{height:155.197500px;}
.h15{height:174.624000px;}
.h37{height:181.984500px;}
.h42{height:189.169500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:498.754500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2a{left:1.188450px;}
.x32{left:2.507250px;}
.x3a{left:4.586550px;}
.x2b{left:6.018300px;}
.x35{left:8.656800px;}
.x53{left:10.600800px;}
.x33{left:12.742050px;}
.x70{left:14.862750px;}
.x78{left:18.078750px;}
.x1f{left:31.615950px;}
.x46{left:42.202350px;}
.xf{left:48.669750px;}
.x5d{left:62.700450px;}
.x5c{left:75.613650px;}
.x47{left:76.831650px;}
.x2c{left:81.362250px;}
.x48{left:83.365500px;}
.x20{left:86.674950px;}
.x49{left:87.939150px;}
.x6c{left:93.356100px;}
.x21{left:95.368500px;}
.x5b{left:101.885700px;}
.x6e{left:103.040850px;}
.x7c{left:104.911200px;}
.x6f{left:106.269000px;}
.x6d{left:107.345100px;}
.xc{left:110.551200px;}
.x1{left:113.476500px;}
.x3e{left:123.116400px;}
.x14{left:125.678772px;}
.x4a{left:129.755700px;}
.x3b{left:133.154700px;}
.xd{left:136.063050px;}
.x15{left:137.405400px;}
.x4{left:138.988350px;}
.x38{left:140.072100px;}
.x3c{left:141.262650px;}
.x16{left:142.428150px;}
.x59{left:144.187950px;}
.x62{left:145.522725px;}
.x7d{left:146.692950px;}
.x12{left:149.125200px;}
.x13{left:153.310800px;}
.x7b{left:160.548150px;}
.x11{left:165.867600px;}
.x17{left:168.379050px;}
.xe{left:169.630200px;}
.x5{left:173.632800px;}
.x2d{left:177.474000px;}
.x6{left:179.257800px;}
.x77{left:180.809100px;}
.x4b{left:184.639950px;}
.x7{left:188.931900px;}
.x4c{left:190.520550px;}
.xb{left:192.500700px;}
.x3d{left:204.967650px;}
.x1e{left:216.095550px;}
.x3f{left:222.727800px;}
.x4d{left:223.843200px;}
.x58{left:225.230250px;}
.x22{left:227.220450px;}
.x2f{left:231.393300px;}
.x30{left:237.906300px;}
.x2e{left:240.743700px;}
.x10{left:244.557450px;}
.x64{left:246.697200px;}
.x57{left:251.502300px;}
.x31{left:254.654100px;}
.x39{left:268.897950px;}
.x71{left:274.716750px;}
.x74{left:276.967950px;}
.x8{left:278.754300px;}
.x23{left:283.728300px;}
.x45{left:285.274500px;}
.x4e{left:286.567950px;}
.x24{left:293.387850px;}
.x76{left:300.766500px;}
.x5a{left:305.382450px;}
.x75{left:308.806500px;}
.x4f{left:311.396550px;}
.x65{left:313.951950px;}
.xa{left:315.000000px;}
.x27{left:316.570650px;}
.x50{left:318.583650px;}
.x28{left:321.400350px;}
.x72{left:322.635300px;}
.x66{left:327.940950px;}
.x54{left:329.872800px;}
.x25{left:336.855600px;}
.x26{left:341.685300px;}
.x7a{left:342.904891px;}
.x19{left:344.175562px;}
.x73{left:347.398650px;}
.x18{left:349.198350px;}
.x67{left:351.614700px;}
.x61{left:357.926850px;}
.x51{left:361.053750px;}
.x42{left:365.195250px;}
.x52{left:368.241150px;}
.x44{left:374.461350px;}
.x5e{left:381.526950px;}
.x40{left:384.499650px;}
.x79{left:386.961518px;}
.x41{left:392.607600px;}
.x6b{left:398.424000px;}
.x37{left:400.960500px;}
.x36{left:402.255300px;}
.x63{left:414.478650px;}
.x55{left:416.704050px;}
.x1d{left:426.214200px;}
.x9{left:427.423050px;}
.x1b{left:430.399800px;}
.x6a{left:432.320550px;}
.x3{left:441.045750px;}
.x68{left:442.543200px;}
.x60{left:449.656200px;}
.x5f{left:450.991950px;}
.x43{left:456.312600px;}
.x1c{left:459.699300px;}
.x69{left:462.988800px;}
.x1a{left:468.907500px;}
.x34{left:474.235950px;}
.x56{left:481.716150px;}
.x29{left:492.856200px;}
.x2{left:521.280900px;}
@media print{
.v14{vertical-align:-21.027733pt;}
.vf{vertical-align:-16.460800pt;}
.vd{vertical-align:-15.366933pt;}
.v2{vertical-align:-14.400000pt;}
.v4{vertical-align:-11.733333pt;}
.va{vertical-align:-10.244267pt;}
.ve{vertical-align:-7.683200pt;}
.v6{vertical-align:-5.732267pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.732267pt;}
.v5{vertical-align:6.622933pt;}
.v10{vertical-align:8.230933pt;}
.vb{vertical-align:10.244267pt;}
.vc{vertical-align:12.803200pt;}
.v13{vertical-align:14.092800pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:17.600000pt;}
.v8{vertical-align:19.099468pt;}
.v15{vertical-align:21.027733pt;}
.v12{vertical-align:28.433600pt;}
.v11{vertical-align:31.018133pt;}
.v9{vertical-align:36.808533pt;}
.ls76{letter-spacing:-12.600000pt;}
.ls9a{letter-spacing:-11.840000pt;}
.lsa0{letter-spacing:-11.760000pt;}
.ls73{letter-spacing:-9.640000pt;}
.lsa4{letter-spacing:-9.520000pt;}
.lsbe{letter-spacing:-9.480000pt;}
.lsc5{letter-spacing:-9.400000pt;}
.lsbd{letter-spacing:-9.280000pt;}
.ls75{letter-spacing:-9.080000pt;}
.ls9c{letter-spacing:-8.880000pt;}
.ls9f{letter-spacing:-8.800000pt;}
.lsc0{letter-spacing:-8.760000pt;}
.ls74{letter-spacing:-8.160000pt;}
.lsbf{letter-spacing:-8.000000pt;}
.ls9b{letter-spacing:-7.680000pt;}
.ls9d{letter-spacing:-7.400000pt;}
.lsa1{letter-spacing:-7.320000pt;}
.lsa2{letter-spacing:-7.280000pt;}
.lsbb{letter-spacing:-6.480000pt;}
.lsc6{letter-spacing:-4.200000pt;}
.ls9e{letter-spacing:-3.440000pt;}
.ls56{letter-spacing:-2.536704pt;}
.ls2d{letter-spacing:-2.522103pt;}
.ls3c{letter-spacing:-2.089803pt;}
.lsb8{letter-spacing:-2.080000pt;}
.ls45{letter-spacing:-2.078176pt;}
.ls2b{letter-spacing:-1.891578pt;}
.ls54{letter-spacing:-1.876104pt;}
.ls3a{letter-spacing:-1.707922pt;}
.ls50{letter-spacing:-1.695651pt;}
.ls25{letter-spacing:-1.695607pt;}
.ls2f{letter-spacing:-1.681416pt;}
.ls62{letter-spacing:-1.405006pt;}
.ls29{letter-spacing:-1.314562pt;}
.ls28{letter-spacing:-1.271706pt;}
.ls36{letter-spacing:-1.258858pt;}
.ls4f{letter-spacing:-1.240720pt;}
.ls38{letter-spacing:-1.236771pt;}
.ls3b{letter-spacing:-1.229296pt;}
.ls67{letter-spacing:-0.846771pt;}
.ls66{letter-spacing:-0.819456pt;}
.ls65{letter-spacing:-0.688166pt;}
.ls53{letter-spacing:-0.293333pt;}
.ls3f{letter-spacing:-0.081953pt;}
.ls57{letter-spacing:-0.031709pt;}
.ls64{letter-spacing:-0.028674pt;}
.ls68{letter-spacing:-0.027315pt;}
.ls8{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000297pt;}
.ls72{letter-spacing:0.000533pt;}
.ls95{letter-spacing:0.006400pt;}
.lsa7{letter-spacing:0.006933pt;}
.ls70{letter-spacing:0.008000pt;}
.ls6c{letter-spacing:0.008533pt;}
.ls71{letter-spacing:0.009067pt;}
.ls8c{letter-spacing:0.017067pt;}
.ls8b{letter-spacing:0.017600pt;}
.ls69{letter-spacing:0.027315pt;}
.ls7{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.058667pt;}
.ls99{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.085333pt;}
.ls98{letter-spacing:0.105600pt;}
.ls96{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117333pt;}
.lsb5{letter-spacing:0.149867pt;}
.lsb6{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.234667pt;}
.lsc3{letter-spacing:0.240000pt;}
.lsc2{letter-spacing:0.259200pt;}
.lsc1{letter-spacing:0.261333pt;}
.ls4e{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.293333pt;}
.lsb4{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.321600pt;}
.lsb3{letter-spacing:0.331200pt;}
.lsaf{letter-spacing:0.342933pt;}
.ls11{letter-spacing:0.352000pt;}
.lsb0{letter-spacing:0.360000pt;}
.ls77{letter-spacing:0.373333pt;}
.ls60{letter-spacing:0.382413pt;}
.lsf{letter-spacing:0.410667pt;}
.ls79{letter-spacing:0.467200pt;}
.ls7b{letter-spacing:0.467733pt;}
.lse{letter-spacing:0.469333pt;}
.ls7a{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.504533pt;}
.lsd{letter-spacing:0.528000pt;}
.ls6f{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.539200pt;}
.lsb2{letter-spacing:0.540267pt;}
.lsb1{letter-spacing:0.542933pt;}
.ls5{letter-spacing:0.554667pt;}
.ls6e{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls23{letter-spacing:0.619070pt;}
.ls24{letter-spacing:0.626812pt;}
.ls2c{letter-spacing:0.630526pt;}
.ls55{letter-spacing:0.634176pt;}
.ls90{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.645333pt;}
.ls91{letter-spacing:0.652800pt;}
.ls81{letter-spacing:0.693333pt;}
.ls46{letter-spacing:0.699584pt;}
.ls30{letter-spacing:0.704000pt;}
.ls80{letter-spacing:0.715200pt;}
.ls63{letter-spacing:0.716840pt;}
.ls7f{letter-spacing:0.720000pt;}
.ls7e{letter-spacing:0.733867pt;}
.ls7c{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.762667pt;}
.ls87{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.819456pt;}
.ls2{letter-spacing:0.821333pt;}
.ls89{letter-spacing:0.829333pt;}
.ls8e{letter-spacing:0.840000pt;}
.ls6b{letter-spacing:0.846771pt;}
.ls27{letter-spacing:0.847804pt;}
.ls14{letter-spacing:0.853333pt;}
.ls22{letter-spacing:0.855919pt;}
.ls8d{letter-spacing:0.860267pt;}
.ls3d{letter-spacing:0.860507pt;}
.ls8f{letter-spacing:0.861333pt;}
.ls31{letter-spacing:0.880000pt;}
.ls93{letter-spacing:0.958933pt;}
.ls21{letter-spacing:0.960000pt;}
.ls12{letter-spacing:0.997333pt;}
.ls84{letter-spacing:1.000000pt;}
.ls83{letter-spacing:1.013333pt;}
.ls1b{letter-spacing:1.056000pt;}
.ls4d{letter-spacing:1.173333pt;}
.ls3e{letter-spacing:1.229296pt;}
.lsb{letter-spacing:1.232000pt;}
.ls1e{letter-spacing:1.240000pt;}
.ls52{letter-spacing:1.240720pt;}
.ls2a{letter-spacing:1.253419pt;}
.ls37{letter-spacing:1.258858pt;}
.ls15{letter-spacing:1.290667pt;}
.ls18{letter-spacing:1.349333pt;}
.ls47{letter-spacing:1.399168pt;}
.ls48{letter-spacing:1.406149pt;}
.ls58{letter-spacing:1.466667pt;}
.ls1f{letter-spacing:1.525333pt;}
.ls1c{letter-spacing:1.642667pt;}
.ls2e{letter-spacing:1.681416pt;}
.ls26{letter-spacing:1.695607pt;}
.ls51{letter-spacing:1.695651pt;}
.ls39{letter-spacing:1.707922pt;}
.ls1d{letter-spacing:1.818667pt;}
.ls1a{letter-spacing:1.877333pt;}
.lsaa{letter-spacing:2.346667pt;}
.lsa9{letter-spacing:2.360000pt;}
.lsa8{letter-spacing:2.365867pt;}
.lsac{letter-spacing:2.400000pt;}
.lsad{letter-spacing:2.432000pt;}
.lsab{letter-spacing:2.440000pt;}
.lsba{letter-spacing:2.453333pt;}
.ls82{letter-spacing:2.716800pt;}
.lsbc{letter-spacing:2.986667pt;}
.ls85{letter-spacing:3.364800pt;}
.lsae{letter-spacing:3.709867pt;}
.lsc4{letter-spacing:3.848000pt;}
.lsb7{letter-spacing:4.426667pt;}
.lsa3{letter-spacing:4.746667pt;}
.ls92{letter-spacing:4.766933pt;}
.ls94{letter-spacing:5.304533pt;}
.ls61{letter-spacing:5.994133pt;}
.ls86{letter-spacing:6.333867pt;}
.ls8a{letter-spacing:6.675733pt;}
.ls97{letter-spacing:6.764267pt;}
.lsa6{letter-spacing:7.051733pt;}
.lsa5{letter-spacing:7.052267pt;}
.ls78{letter-spacing:7.125867pt;}
.ls7d{letter-spacing:7.392533pt;}
.ls88{letter-spacing:7.488000pt;}
.ls1{letter-spacing:9.472000pt;}
.lsb9{letter-spacing:10.240000pt;}
.ls3{letter-spacing:11.120000pt;}
.ls5e{letter-spacing:15.617163pt;}
.ls5b{letter-spacing:17.194744pt;}
.ls59{letter-spacing:17.529305pt;}
.ls5d{letter-spacing:18.465372pt;}
.ls5f{letter-spacing:18.465798pt;}
.ls5a{letter-spacing:18.465905pt;}
.ls5c{letter-spacing:19.440381pt;}
.ls4a{letter-spacing:19.521551pt;}
.ls49{letter-spacing:45.369440pt;}
.ls41{letter-spacing:75.898254pt;}
.ls40{letter-spacing:82.296964pt;}
.ls34{letter-spacing:220.249098pt;}
.ls42{letter-spacing:480.793528pt;}
.ls33{letter-spacing:851.415750pt;}
.ls4c{letter-spacing:941.272405pt;}
.ls4b{letter-spacing:943.033649pt;}
.ls9{letter-spacing:1264.648533pt;}
.ls0{letter-spacing:1707.485867pt;}
.ws19{word-spacing:-18.742991pt;}
.ws1b{word-spacing:-18.080417pt;}
.ws9{word-spacing:-16.426197pt;}
.ws63{word-spacing:-15.786667pt;}
.ws1e{word-spacing:-15.253333pt;}
.ws2a{word-spacing:-15.136000pt;}
.ws1a{word-spacing:-15.135724pt;}
.ws5{word-spacing:-14.901333pt;}
.ws18{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-14.664573pt;}
.ws52{word-spacing:-14.133333pt;}
.wsa{word-spacing:-14.094737pt;}
.ws4c{word-spacing:-14.080000pt;}
.ws49{word-spacing:-13.813333pt;}
.ws5f{word-spacing:-13.706667pt;}
.ws5b{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.246933pt;}
.ws2d{word-spacing:-13.192989pt;}
.ws7{word-spacing:-13.034982pt;}
.ws64{word-spacing:-12.440000pt;}
.ws61{word-spacing:-12.360000pt;}
.wsb{word-spacing:-11.975228pt;}
.ws24{word-spacing:-11.473429pt;}
.ws21{word-spacing:-11.104641pt;}
.ws51{word-spacing:-11.000000pt;}
.ws5a{word-spacing:-10.960000pt;}
.ws58{word-spacing:-10.840000pt;}
.ws53{word-spacing:-10.800000pt;}
.ws4d{word-spacing:-10.720000pt;}
.ws44{word-spacing:-10.560000pt;}
.ws4a{word-spacing:-10.480000pt;}
.ws65{word-spacing:-10.360000pt;}
.ws68{word-spacing:-10.320000pt;}
.ws2b{word-spacing:-10.256619pt;}
.ws6e{word-spacing:-10.240000pt;}
.ws16{word-spacing:-10.180210pt;}
.ws1f{word-spacing:-10.162180pt;}
.ws6a{word-spacing:-10.160000pt;}
.ws5e{word-spacing:-10.080000pt;}
.ws47{word-spacing:-10.000000pt;}
.ws2c{word-spacing:-9.801688pt;}
.wsf{word-spacing:-9.752213pt;}
.ws6{word-spacing:-9.533333pt;}
.ws20{word-spacing:-9.301673pt;}
.ws1{word-spacing:-8.666667pt;}
.ws11{word-spacing:-8.598080pt;}
.ws0{word-spacing:-8.288000pt;}
.ws30{word-spacing:-7.980048pt;}
.wsd{word-spacing:-7.967554pt;}
.ws62{word-spacing:-7.920000pt;}
.ws33{word-spacing:-7.895491pt;}
.ws37{word-spacing:-7.885240pt;}
.ws3{word-spacing:-7.800000pt;}
.ws22{word-spacing:-7.683067pt;}
.ws3f{word-spacing:-7.675571pt;}
.ws31{word-spacing:-7.345872pt;}
.ws40{word-spacing:-7.211213pt;}
.ws39{word-spacing:-7.139726pt;}
.ws29{word-spacing:-7.119296pt;}
.ws17{word-spacing:-6.817378pt;}
.ws3e{word-spacing:-6.801485pt;}
.ws50{word-spacing:-6.560000pt;}
.ws3a{word-spacing:-6.480234pt;}
.ws26{word-spacing:-6.419712pt;}
.wse{word-spacing:-6.374132pt;}
.ws10{word-spacing:-6.075977pt;}
.ws3b{word-spacing:-6.009344pt;}
.ws3d{word-spacing:-5.982029pt;}
.ws6f{word-spacing:-5.800000pt;}
.ws34{word-spacing:-5.763394pt;}
.ws27{word-spacing:-5.720128pt;}
.ws2f{word-spacing:-5.469768pt;}
.ws15{word-spacing:-5.445451pt;}
.ws32{word-spacing:-4.809168pt;}
.ws25{word-spacing:-3.641952pt;}
.ws4{word-spacing:0.000000pt;}
.ws4f{word-spacing:4.800000pt;}
.ws59{word-spacing:5.400000pt;}
.ws57{word-spacing:5.440000pt;}
.ws4b{word-spacing:5.800000pt;}
.ws6b{word-spacing:6.120000pt;}
.ws60{word-spacing:6.313067pt;}
.ws5d{word-spacing:6.319467pt;}
.ws43{word-spacing:6.320000pt;}
.ws6c{word-spacing:7.640000pt;}
.ws4e{word-spacing:7.760000pt;}
.ws55{word-spacing:8.409600pt;}
.ws54{word-spacing:8.440000pt;}
.ws45{word-spacing:8.720000pt;}
.ws67{word-spacing:8.880000pt;}
.ws66{word-spacing:8.920000pt;}
.ws6d{word-spacing:9.040000pt;}
.ws69{word-spacing:9.080000pt;}
.ws5c{word-spacing:9.120000pt;}
.ws42{word-spacing:9.280000pt;}
.ws48{word-spacing:13.680000pt;}
.ws56{word-spacing:14.320000pt;}
.ws46{word-spacing:15.200000pt;}
.ws38{word-spacing:17.404875pt;}
.ws36{word-spacing:65.796496pt;}
.ws13{word-spacing:80.555406pt;}
.ws41{word-spacing:90.049640pt;}
.ws3c{word-spacing:92.307697pt;}
.ws28{word-spacing:105.822901pt;}
.ws2e{word-spacing:117.020797pt;}
.ws35{word-spacing:187.448206pt;}
.ws23{word-spacing:276.798560pt;}
.ws12{word-spacing:299.034517pt;}
.ws14{word-spacing:300.945321pt;}
.ws1d{word-spacing:438.671337pt;}
.ws8{word-spacing:1016.961212pt;}
._17{margin-left:-1657.180800pt;}
._16{margin-left:-530.409194pt;}
._12{margin-left:-298.505283pt;}
._14{margin-left:-138.850744pt;}
._13{margin-left:-135.029138pt;}
._18{margin-left:-121.558377pt;}
._10{margin-left:-15.832000pt;}
._c{margin-left:-13.812800pt;}
._7{margin-left:-12.102400pt;}
._1{margin-left:-9.477867pt;}
._4{margin-left:-8.288000pt;}
._1b{margin-left:-6.982400pt;}
._1a{margin-left:-4.705067pt;}
._15{margin-left:-3.561359pt;}
._11{margin-left:-2.085333pt;}
._9{margin-left:-1.109333pt;}
._5{width:1.717333pt;}
._6{width:3.248000pt;}
._3{width:4.144000pt;}
._8{width:5.333333pt;}
._b{width:6.288000pt;}
._a{width:7.333333pt;}
._e{width:8.341333pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._19{width:26.317333pt;}
._f{width:40.519467pt;}
._d{width:1055.613867pt;}
.fs1d{font-size:20.576000pt;}
.fs23{font-size:21.027733pt;}
.fs16{font-size:22.928533pt;}
.fs3{font-size:24.000000pt;}
.fs17{font-size:24.838933pt;}
.fs20{font-size:26.424000pt;}
.fs14{font-size:26.749867pt;}
.fs24{font-size:27.315200pt;}
.fs13{font-size:28.660267pt;}
.fs22{font-size:28.673600pt;}
.fs15{font-size:30.571200pt;}
.fs1c{font-size:30.732267pt;}
.fs1f{font-size:31.018133pt;}
.fsa{font-size:31.200000pt;}
.fs21{font-size:31.708800pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs12{font-size:36.429333pt;}
.fs5{font-size:37.333333pt;}
.fsf{font-size:38.133333pt;}
.fs11{font-size:39.740800pt;}
.fs6{font-size:40.000000pt;}
.fs1b{font-size:40.976533pt;}
.fs1e{font-size:41.357333pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs19{font-size:51.532267pt;}
.fs10{font-size:52.987733pt;}
.fs1{font-size:53.333333pt;}
.fse{font-size:58.666667pt;}
.fs1a{font-size:58.893867pt;}
.fs8{font-size:64.000000pt;}
.fs18{font-size:69.936533pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:0.426800pt;}
.y176{bottom:0.852000pt;}
.y11b{bottom:0.888667pt;}
.y116{bottom:1.231600pt;}
.yd2{bottom:1.679067pt;}
.y15c{bottom:1.868372pt;}
.ydf{bottom:1.949467pt;}
.yd4{bottom:2.156800pt;}
.yd1{bottom:4.067467pt;}
.y17c{bottom:4.197200pt;}
.y101{bottom:4.276133pt;}
.yde{bottom:5.630267pt;}
.ye1{bottom:8.390933pt;}
.y194{bottom:8.678133pt;}
.y19e{bottom:8.679610pt;}
.yfe{bottom:8.759067pt;}
.y111{bottom:8.776267pt;}
.y118{bottom:10.147867pt;}
.ye4{bottom:10.231467pt;}
.yd5{bottom:10.277200pt;}
.y113{bottom:10.490800pt;}
.y192{bottom:12.661600pt;}
.y157{bottom:12.880133pt;}
.y119{bottom:14.606000pt;}
.y17d{bottom:14.710933pt;}
.y114{bottom:15.291867pt;}
.y15b{bottom:15.962933pt;}
.y152{bottom:17.284133pt;}
.y11c{bottom:18.721333pt;}
.y156{bottom:19.926533pt;}
.y197{bottom:20.059467pt;}
.y195{bottom:20.913067pt;}
.y199{bottom:22.051200pt;}
.yb4{bottom:22.080533pt;}
.y159{bottom:22.128533pt;}
.y174{bottom:22.357333pt;}
.y150{bottom:22.568933pt;}
.yd6{bottom:23.174400pt;}
.y186{bottom:23.313067pt;}
.y11a{bottom:23.865333pt;}
.y115{bottom:24.551067pt;}
.y185{bottom:24.746800pt;}
.yb5{bottom:25.392267pt;}
.yb3{bottom:25.398957pt;}
.y110{bottom:27.637600pt;}
.y117{bottom:28.666400pt;}
.y112{bottom:29.352267pt;}
.y19d{bottom:29.732800pt;}
.yff{bottom:30.527867pt;}
.y17e{bottom:30.959467pt;}
.y178{bottom:32.393200pt;}
.y184{bottom:33.826933pt;}
.y15d{bottom:34.019333pt;}
.yd3{bottom:34.160800pt;}
.yd0{bottom:36.071467pt;}
.y17b{bottom:36.216400pt;}
.y196{bottom:36.277733pt;}
.y134{bottom:37.470533pt;}
.y173{bottom:38.128000pt;}
.y100{bottom:38.210400pt;}
.y198{bottom:38.269467pt;}
.y19a{bottom:38.554000pt;}
.y182{bottom:39.083733pt;}
.y191{bottom:39.692133pt;}
.yb2{bottom:40.295067pt;}
.yb7{bottom:40.295200pt;}
.y151{bottom:40.625333pt;}
.y153{bottom:41.065733pt;}
.y135{bottom:41.347867pt;}
.yb1{bottom:42.778933pt;}
.ye3{bottom:43.359200pt;}
.y175{bottom:43.384800pt;}
.y179{bottom:45.774267pt;}
.y190{bottom:45.951867pt;}
.y15a{bottom:47.671867pt;}
.y14f{bottom:48.112133pt;}
.y172{bottom:48.641600pt;}
.ye0{bottom:50.720933pt;}
.ye5{bottom:52.561333pt;}
.y154{bottom:52.956667pt;}
.y158{bottom:53.396933pt;}
.ye2{bottom:54.401867pt;}
.y183{bottom:54.854400pt;}
.y130{bottom:55.564400pt;}
.y12f{bottom:57.503067pt;}
.y18f{bottom:59.609333pt;}
.y155{bottom:60.443467pt;}
.y136{bottom:63.965200pt;}
.y12d{bottom:64.611467pt;}
.y180{bottom:65.846000pt;}
.y18d{bottom:67.576267pt;}
.yb6{bottom:68.444933pt;}
.y17a{bottom:68.713333pt;}
.y177{bottom:69.669200pt;}
.yf8{bottom:72.787600pt;}
.y224{bottom:75.590267pt;}
.y1{bottom:75.590533pt;}
.y32{bottom:75.590667pt;}
.y1af{bottom:75.590800pt;}
.y166{bottom:75.590933pt;}
.y19c{bottom:76.114010pt;}
.yaf{bottom:77.552267pt;}
.ycd{bottom:78.106667pt;}
.yca{bottom:78.584400pt;}
.y137{bottom:78.828000pt;}
.y17f{bottom:79.227067pt;}
.y12e{bottom:79.474133pt;}
.y18e{bottom:79.811067pt;}
.ycc{bottom:80.017333pt;}
.yc9{bottom:80.495067pt;}
.y131{bottom:81.412800pt;}
.ybb{bottom:81.692000pt;}
.yfb{bottom:82.390667pt;}
.y181{bottom:87.829200pt;}
.y132{bottom:89.167333pt;}
.yad{bottom:95.766933pt;}
.ycb{bottom:96.258267pt;}
.yae{bottom:98.250667pt;}
.y1a4{bottom:98.874800pt;}
.yb8{bottom:99.078667pt;}
.y138{bottom:100.799200pt;}
.ycf{bottom:101.034933pt;}
.yf9{bottom:102.238800pt;}
.yf7{bottom:102.239600pt;}
.y133{bottom:104.030267pt;}
.y11{bottom:105.826800pt;}
.y165{bottom:105.963867pt;}
.y74{bottom:106.003733pt;}
.ydc{bottom:106.425467pt;}
.yb0{bottom:106.530133pt;}
.y1ae{bottom:106.707733pt;}
.y84{bottom:106.798400pt;}
.y1cb{bottom:106.912267pt;}
.y149{bottom:107.125867pt;}
.y1a3{bottom:107.126133pt;}
.y5e{bottom:107.174933pt;}
.yfc{bottom:107.360133pt;}
.yab{bottom:107.439067pt;}
.y223{bottom:107.522133pt;}
.y1f7{bottom:107.710933pt;}
.y139{bottom:108.553733pt;}
.y18c{bottom:114.808533pt;}
.yb9{bottom:114.809467pt;}
.yfd{bottom:115.042800pt;}
.y10{bottom:116.493467pt;}
.y1a1{bottom:116.800267pt;}
.y148{bottom:116.814667pt;}
.y164{bottom:121.605200pt;}
.y73{bottom:121.645067pt;}
.ydb{bottom:122.066800pt;}
.y14d{bottom:122.099467pt;}
.y1ad{bottom:122.348933pt;}
.y1ca{bottom:122.748267pt;}
.y5d{bottom:122.816267pt;}
.y103{bottom:123.009067pt;}
.yaa{bottom:123.080400pt;}
.y222{bottom:123.358133pt;}
.y13a{bottom:123.416533pt;}
.y1f6{bottom:123.546933pt;}
.yfa{bottom:124.647867pt;}
.y14b{bottom:127.384267pt;}
.yba{bottom:128.884400pt;}
.y1a2{bottom:129.035067pt;}
.y18b{bottom:131.026800pt;}
.yce{bottom:131.606000pt;}
.yf{bottom:132.829333pt;}
.y1a0{bottom:133.018533pt;}
.y102{bottom:137.219733pt;}
.y163{bottom:137.246533pt;}
.y72{bottom:137.286400pt;}
.y1ac{bottom:137.990400pt;}
.y5c{bottom:138.457600pt;}
.y1c9{bottom:138.584267pt;}
.ya9{bottom:138.721733pt;}
.y221{bottom:139.194133pt;}
.y1f5{bottom:139.382933pt;}
.y19f{bottom:140.700933pt;}
.y147{bottom:144.559867pt;}
.y14c{bottom:145.440667pt;}
.yda{bottom:145.528000pt;}
.y14e{bottom:145.881067pt;}
.y12b{bottom:147.238400pt;}
.ye{bottom:149.165333pt;}
.y162{bottom:152.887867pt;}
.y14a{bottom:152.927467pt;}
.y71{bottom:152.927733pt;}
.y1ab{bottom:153.631733pt;}
.y5b{bottom:154.098800pt;}
.ya8{bottom:154.363067pt;}
.y1c8{bottom:154.420267pt;}
.y220{bottom:155.030133pt;}
.y1f4{bottom:155.218933pt;}
.yf6{bottom:158.536000pt;}
.y19b{bottom:161.187200pt;}
.y12a{bottom:162.879733pt;}
.yd{bottom:163.611467pt;}
.y70{bottom:168.569067pt;}
.yd9{bottom:168.989200pt;}
.y1aa{bottom:169.273067pt;}
.y5a{bottom:169.740133pt;}
.ya7{bottom:170.004400pt;}
.y1c7{bottom:170.256267pt;}
.y21f{bottom:170.866133pt;}
.y1f3{bottom:171.054933pt;}
.yc{bottom:173.550133pt;}
.y161{bottom:176.348933pt;}
.y129{bottom:178.521067pt;}
.yb{bottom:183.488800pt;}
.y6f{bottom:184.210400pt;}
.y1a9{bottom:184.914267pt;}
.y59{bottom:185.381467pt;}
.ya6{bottom:185.645733pt;}
.y1c6{bottom:186.092267pt;}
.y21e{bottom:186.702133pt;}
.y1f2{bottom:186.890933pt;}
.y128{bottom:194.162400pt;}
.ya{bottom:199.096800pt;}
.y1a8{bottom:200.555600pt;}
.y58{bottom:201.022933pt;}
.ya5{bottom:201.287067pt;}
.y1c5{bottom:201.928267pt;}
.y21d{bottom:202.538133pt;}
.y1f1{bottom:202.726933pt;}
.y6e{bottom:207.671600pt;}
.y9{bottom:209.035467pt;}
.y127{bottom:209.803733pt;}
.yd8{bottom:215.649067pt;}
.y57{bottom:216.664267pt;}
.ya4{bottom:216.928400pt;}
.y1c4{bottom:217.764267pt;}
.y21c{bottom:218.374133pt;}
.y1f0{bottom:218.562933pt;}
.y8{bottom:218.974133pt;}
.y126{bottom:225.445067pt;}
.y160{bottom:226.788400pt;}
.yd7{bottom:229.859733pt;}
.ya3{bottom:232.569733pt;}
.y1c3{bottom:233.600267pt;}
.y21b{bottom:234.210133pt;}
.y1ef{bottom:234.398933pt;}
.y6d{bottom:238.952667pt;}
.y31{bottom:239.162400pt;}
.y56{bottom:240.125333pt;}
.y15f{bottom:240.999067pt;}
.y125{bottom:241.086400pt;}
.y1a7{bottom:247.476400pt;}
.y1c2{bottom:249.436267pt;}
.y21a{bottom:250.046267pt;}
.y1ee{bottom:250.235067pt;}
.yc8{bottom:251.176000pt;}
.y30{bottom:251.955733pt;}
.y15e{bottom:255.209733pt;}
.y55{bottom:255.766667pt;}
.ya2{bottom:256.030800pt;}
.y124{bottom:256.727733pt;}
.y1a6{bottom:261.687067pt;}
.y1c1{bottom:265.272267pt;}
.y219{bottom:265.882267pt;}
.y1ed{bottom:266.071067pt;}
.y2f{bottom:268.528667pt;}
.y54{bottom:271.408000pt;}
.ya1{bottom:271.672267pt;}
.y123{bottom:272.369067pt;}
.y1a5{bottom:275.897733pt;}
.y146{bottom:276.525333pt;}
.y1c0{bottom:281.108267pt;}
.y2e{bottom:281.322000pt;}
.y218{bottom:281.718267pt;}
.y1ec{bottom:281.907067pt;}
.y53{bottom:287.049333pt;}
.ya0{bottom:287.313600pt;}
.y122{bottom:288.010400pt;}
.y2d{bottom:294.115333pt;}
.y6c{bottom:294.566267pt;}
.y1bf{bottom:296.944267pt;}
.y18a{bottom:297.213333pt;}
.y217{bottom:297.554133pt;}
.y1eb{bottom:297.743067pt;}
.y52{bottom:302.690667pt;}
.y9f{bottom:302.954933pt;}
.y121{bottom:303.651733pt;}
.y2c{bottom:306.908667pt;}
.y6b{bottom:308.776933pt;}
.y1be{bottom:312.780267pt;}
.y216{bottom:313.390133pt;}
.y1ea{bottom:313.578933pt;}
.y51{bottom:318.332000pt;}
.y9e{bottom:318.596133pt;}
.yf5{bottom:318.697600pt;}
.y120{bottom:319.293067pt;}
.y2b{bottom:319.702000pt;}
.y6a{bottom:322.987600pt;}
.y1bd{bottom:328.616267pt;}
.y215{bottom:329.226133pt;}
.y1e9{bottom:329.414933pt;}
.y2a{bottom:332.495333pt;}
.y50{bottom:333.973333pt;}
.y9d{bottom:334.237600pt;}
.yf4{bottom:334.338933pt;}
.y214{bottom:345.062133pt;}
.y1e8{bottom:345.250933pt;}
.y29{bottom:345.288667pt;}
.y4f{bottom:349.614667pt;}
.y9c{bottom:349.878800pt;}
.yf3{bottom:349.980267pt;}
.y28{bottom:358.082000pt;}
.y1bc{bottom:360.092000pt;}
.y213{bottom:360.898133pt;}
.y1e7{bottom:361.086933pt;}
.y4e{bottom:365.256000pt;}
.y9b{bottom:365.520133pt;}
.yf2{bottom:365.621600pt;}
.y11f{bottom:366.213733pt;}
.y212{bottom:376.734267pt;}
.y1e6{bottom:376.923067pt;}
.y11e{bottom:380.424400pt;}
.y4d{bottom:380.897333pt;}
.y9a{bottom:381.161600pt;}
.yf1{bottom:381.262933pt;}
.y27{bottom:385.086267pt;}
.y83{bottom:388.923333pt;}
.y211{bottom:392.570133pt;}
.y1e5{bottom:392.758933pt;}
.y11d{bottom:394.635067pt;}
.y4c{bottom:396.538667pt;}
.y99{bottom:396.802800pt;}
.yf0{bottom:396.904267pt;}
.y26{bottom:397.879600pt;}
.y82{bottom:404.564667pt;}
.yc7{bottom:407.701733pt;}
.y210{bottom:408.406267pt;}
.y1e4{bottom:408.595067pt;}
.y4b{bottom:412.180000pt;}
.y1bb{bottom:412.394667pt;}
.y98{bottom:412.444267pt;}
.yef{bottom:412.545600pt;}
.y25{bottom:414.452533pt;}
.y10f{bottom:415.950667pt;}
.y81{bottom:420.206000pt;}
.yc6{bottom:423.343067pt;}
.y20f{bottom:424.242133pt;}
.y1e3{bottom:424.430933pt;}
.y24{bottom:427.245867pt;}
.y4a{bottom:427.821333pt;}
.yee{bottom:428.186933pt;}
.y80{bottom:435.847333pt;}
.y97{bottom:435.905333pt;}
.yc5{bottom:438.984400pt;}
.y23{bottom:440.039200pt;}
.y20e{bottom:440.078267pt;}
.y1e2{bottom:440.267067pt;}
.y49{bottom:443.462667pt;}
.y1ba{bottom:443.675733pt;}
.yed{bottom:443.828267pt;}
.y7f{bottom:451.488667pt;}
.y96{bottom:451.546667pt;}
.y22{bottom:452.832533pt;}
.yc4{bottom:454.625733pt;}
.y20d{bottom:455.914133pt;}
.y1e1{bottom:456.102933pt;}
.y145{bottom:456.862667pt;}
.y48{bottom:459.104000pt;}
.yec{bottom:459.469600pt;}
.y21{bottom:465.625867pt;}
.y7e{bottom:467.130000pt;}
.y95{bottom:467.188000pt;}
.yc3{bottom:470.267067pt;}
.y20c{bottom:471.750267pt;}
.y1e0{bottom:471.939067pt;}
.y144{bottom:472.504133pt;}
.y47{bottom:474.745333pt;}
.yeb{bottom:475.110933pt;}
.y20{bottom:478.419200pt;}
.y7d{bottom:482.771333pt;}
.y94{bottom:482.829333pt;}
.yc2{bottom:485.908400pt;}
.y20b{bottom:487.586133pt;}
.y1df{bottom:487.774933pt;}
.y143{bottom:488.145333pt;}
.y1b9{bottom:490.596400pt;}
.yea{bottom:490.752267pt;}
.y1f{bottom:491.212533pt;}
.y46{bottom:498.206533pt;}
.y7c{bottom:498.412667pt;}
.y93{bottom:498.470667pt;}
.yc1{bottom:501.549733pt;}
.y20a{bottom:503.422267pt;}
.y1de{bottom:503.611067pt;}
.y142{bottom:503.786800pt;}
.y1e{bottom:504.005867pt;}
.y1b8{bottom:506.237733pt;}
.ye9{bottom:506.393600pt;}
.y189{bottom:507.397467pt;}
.y45{bottom:513.847867pt;}
.y7b{bottom:514.054000pt;}
.y92{bottom:514.112000pt;}
.y1d{bottom:516.799200pt;}
.yc0{bottom:517.191067pt;}
.y209{bottom:519.258133pt;}
.y141{bottom:519.428000pt;}
.y1dd{bottom:519.446933pt;}
.y188{bottom:521.608133pt;}
.y1b7{bottom:521.879067pt;}
.ye8{bottom:522.034933pt;}
.y44{bottom:529.489200pt;}
.y7a{bottom:529.695333pt;}
.ybf{bottom:532.832400pt;}
.y140{bottom:535.069467pt;}
.y208{bottom:535.094133pt;}
.y1dc{bottom:535.282933pt;}
.y187{bottom:535.818800pt;}
.y1b6{bottom:537.520400pt;}
.y91{bottom:537.573200pt;}
.ye7{bottom:537.676267pt;}
.y43{bottom:545.130533pt;}
.y79{bottom:545.336667pt;}
.y13f{bottom:550.710800pt;}
.y207{bottom:550.930133pt;}
.y1db{bottom:551.118933pt;}
.y1b5{bottom:553.161733pt;}
.ybe{bottom:556.293600pt;}
.y171{bottom:557.134667pt;}
.y42{bottom:560.771867pt;}
.y78{bottom:560.978000pt;}
.y90{bottom:564.813867pt;}
.y13e{bottom:566.352000pt;}
.y206{bottom:566.766133pt;}
.y1da{bottom:566.954933pt;}
.y1b4{bottom:568.803067pt;}
.y41{bottom:576.413200pt;}
.y77{bottom:576.619333pt;}
.y13d{bottom:581.993467pt;}
.y205{bottom:582.602267pt;}
.y1d9{bottom:582.791067pt;}
.y1b3{bottom:584.444400pt;}
.ye6{bottom:584.597067pt;}
.y40{bottom:592.054533pt;}
.y76{bottom:592.260667pt;}
.y1c{bottom:597.444533pt;}
.y204{bottom:598.438133pt;}
.y1d8{bottom:598.626933pt;}
.y1b2{bottom:600.085733pt;}
.ydd{bottom:605.913333pt;}
.ybd{bottom:606.732933pt;}
.y8f{bottom:607.694400pt;}
.y3f{bottom:607.695867pt;}
.y10e{bottom:607.902000pt;}
.y1b{bottom:608.055200pt;}
.y203{bottom:614.274133pt;}
.y1d7{bottom:614.462933pt;}
.y75{bottom:615.721867pt;}
.y1b1{bottom:615.727067pt;}
.ybc{bottom:620.943600pt;}
.y8e{bottom:623.335600pt;}
.y3e{bottom:623.337200pt;}
.y10d{bottom:623.543333pt;}
.y1a{bottom:625.865867pt;}
.y13c{bottom:628.914133pt;}
.y202{bottom:630.110133pt;}
.y1d6{bottom:630.298933pt;}
.y69{bottom:631.363200pt;}
.y19{bottom:636.476533pt;}
.y8d{bottom:638.976933pt;}
.y10c{bottom:639.184667pt;}
.yac{bottom:642.258667pt;}
.y13b{bottom:643.124800pt;}
.y201{bottom:645.946267pt;}
.y1d5{bottom:646.135067pt;}
.y3d{bottom:646.798400pt;}
.y68{bottom:647.004533pt;}
.y1b0{bottom:647.008133pt;}
.y18{bottom:654.287200pt;}
.y8c{bottom:654.618267pt;}
.y10b{bottom:654.826000pt;}
.y200{bottom:661.782133pt;}
.y1d4{bottom:661.970933pt;}
.y3c{bottom:662.439733pt;}
.y67{bottom:662.645867pt;}
.y12c{bottom:664.441333pt;}
.y8b{bottom:670.259600pt;}
.y10a{bottom:670.467333pt;}
.y17{bottom:672.717733pt;}
.y1ff{bottom:677.618133pt;}
.y1d3{bottom:677.806933pt;}
.y3b{bottom:678.081067pt;}
.y66{bottom:678.287200pt;}
.y170{bottom:678.287467pt;}
.y8a{bottom:685.900933pt;}
.y109{bottom:686.108667pt;}
.y16{bottom:688.359067pt;}
.y1fe{bottom:693.454133pt;}
.y1d2{bottom:693.642933pt;}
.y3a{bottom:693.722400pt;}
.y65{bottom:693.928533pt;}
.y16f{bottom:693.928933pt;}
.y89{bottom:701.542267pt;}
.y108{bottom:701.750000pt;}
.y1fd{bottom:709.290267pt;}
.y39{bottom:709.363733pt;}
.y22c{bottom:709.478400pt;}
.y1d1{bottom:709.479067pt;}
.y64{bottom:709.569867pt;}
.y16e{bottom:709.570133pt;}
.y88{bottom:717.183733pt;}
.y107{bottom:717.391333pt;}
.y15{bottom:719.118533pt;}
.y38{bottom:725.005067pt;}
.y1fc{bottom:725.126267pt;}
.y63{bottom:725.211200pt;}
.y16d{bottom:725.211467pt;}
.y22b{bottom:725.314400pt;}
.y1d0{bottom:725.315067pt;}
.y87{bottom:732.825067pt;}
.y106{bottom:733.032667pt;}
.y14{bottom:738.318400pt;}
.y37{bottom:740.646533pt;}
.y62{bottom:740.852533pt;}
.y16c{bottom:740.852800pt;}
.y1fb{bottom:740.962267pt;}
.y22a{bottom:741.150400pt;}
.y1cf{bottom:741.151067pt;}
.y86{bottom:748.466267pt;}
.y105{bottom:748.674000pt;}
.y36{bottom:756.287733pt;}
.y61{bottom:756.493867pt;}
.y16b{bottom:756.494133pt;}
.y1fa{bottom:756.798133pt;}
.y229{bottom:756.986267pt;}
.y1ce{bottom:756.986933pt;}
.y13{bottom:761.298000pt;}
.y85{bottom:764.107600pt;}
.y104{bottom:764.315333pt;}
.y60{bottom:772.135200pt;}
.y16a{bottom:772.135467pt;}
.y1f9{bottom:772.634133pt;}
.y228{bottom:772.822400pt;}
.y1cd{bottom:772.822933pt;}
.y12{bottom:783.964667pt;}
.y35{bottom:787.568800pt;}
.y5f{bottom:787.776533pt;}
.y169{bottom:787.776800pt;}
.y1f8{bottom:788.470267pt;}
.y227{bottom:788.658400pt;}
.y1cc{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y226{bottom:828.335733pt;}
.y34{bottom:828.336133pt;}
.y168{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y225{bottom:843.977067pt;}
.y33{bottom:843.977467pt;}
.y167{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h2f{height:14.286656pt;}
.h41{height:14.600311pt;}
.h2c{height:14.989937pt;}
.h4{height:17.424000pt;}
.h20{height:18.095551pt;}
.h44{height:18.512450pt;}
.h43{height:18.965925pt;}
.h38{height:19.250297pt;}
.h1d{height:19.487696pt;}
.h3d{height:19.909111pt;}
.h1c{height:20.879452pt;}
.hb{height:21.434766pt;}
.h39{height:22.016559pt;}
.h1e{height:22.271597pt;}
.h33{height:22.597195pt;}
.h1a{height:25.294195pt;}
.h19{height:27.593466pt;}
.h6{height:27.738667pt;}
.h29{height:28.451480pt;}
.hf{height:29.229167pt;}
.he{height:29.312500pt;}
.h3e{height:29.467511pt;}
.hd{height:29.625000pt;}
.h7{height:29.720000pt;}
.h27{height:29.852045pt;}
.h1f{height:30.070996pt;}
.h32{height:30.129464pt;}
.h5{height:31.402667pt;}
.h3b{height:31.581497pt;}
.hc{height:32.976562pt;}
.h3a{height:33.343097pt;}
.h2e{height:34.194204pt;}
.h2d{height:34.194737pt;}
.h23{height:35.780705pt;}
.h2{height:36.640625pt;}
.h18{height:36.791287pt;}
.h13{height:37.031250pt;}
.h2b{height:37.430667pt;}
.h17{height:38.602392pt;}
.h30{height:39.140625pt;}
.ha{height:39.816406pt;}
.h10{height:40.190104pt;}
.h12{height:40.304688pt;}
.h11{height:40.734375pt;}
.h40{height:40.926860pt;}
.h3f{height:40.936844pt;}
.h28{height:42.655245pt;}
.h24{height:42.905102pt;}
.h2a{height:43.054688pt;}
.h14{height:43.798047pt;}
.h9{height:43.968750pt;}
.h16{height:45.225325pt;}
.h45{height:47.838542pt;}
.h22{height:48.559448pt;}
.h8{height:55.546875pt;}
.h36{height:58.563064pt;}
.h35{height:61.147597pt;}
.h34{height:66.317197pt;}
.h25{height:79.713635pt;}
.h3{height:93.200000pt;}
.h21{height:93.688000pt;}
.h3c{height:100.456000pt;}
.h31{height:133.038667pt;}
.h26{height:134.550667pt;}
.h1b{height:137.953333pt;}
.h15{height:155.221333pt;}
.h37{height:161.764000pt;}
.h42{height:168.150667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:443.337333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2a{left:1.056400pt;}
.x32{left:2.228667pt;}
.x3a{left:4.076933pt;}
.x2b{left:5.349600pt;}
.x35{left:7.694933pt;}
.x53{left:9.422933pt;}
.x33{left:11.326267pt;}
.x70{left:13.211333pt;}
.x78{left:16.070000pt;}
.x1f{left:28.103067pt;}
.x46{left:37.513200pt;}
.xf{left:43.262000pt;}
.x5d{left:55.733733pt;}
.x5c{left:67.212133pt;}
.x47{left:68.294800pt;}
.x2c{left:72.322000pt;}
.x48{left:74.102667pt;}
.x20{left:77.044400pt;}
.x49{left:78.168133pt;}
.x6c{left:82.983200pt;}
.x21{left:84.772000pt;}
.x5b{left:90.565067pt;}
.x6e{left:91.591867pt;}
.x7c{left:93.254400pt;}
.x6f{left:94.461333pt;}
.x6d{left:95.417867pt;}
.xc{left:98.267733pt;}
.x1{left:100.868000pt;}
.x3e{left:109.436800pt;}
.x14{left:111.714464pt;}
.x4a{left:115.338400pt;}
.x3b{left:118.359733pt;}
.xd{left:120.944933pt;}
.x15{left:122.138133pt;}
.x4{left:123.545200pt;}
.x38{left:124.508533pt;}
.x3c{left:125.566800pt;}
.x16{left:126.602800pt;}
.x59{left:128.167067pt;}
.x62{left:129.353533pt;}
.x7d{left:130.393733pt;}
.x12{left:132.555733pt;}
.x13{left:136.276267pt;}
.x7b{left:142.709467pt;}
.x11{left:147.437867pt;}
.x17{left:149.670267pt;}
.xe{left:150.782400pt;}
.x5{left:154.340267pt;}
.x2d{left:157.754667pt;}
.x6{left:159.340267pt;}
.x77{left:160.719200pt;}
.x4b{left:164.124400pt;}
.x7{left:167.939467pt;}
.x4c{left:169.351600pt;}
.xb{left:171.111733pt;}
.x3d{left:182.193467pt;}
.x1e{left:192.084933pt;}
.x3f{left:197.980267pt;}
.x4d{left:198.971733pt;}
.x58{left:200.204667pt;}
.x22{left:201.973733pt;}
.x2f{left:205.682933pt;}
.x30{left:211.472267pt;}
.x2e{left:213.994400pt;}
.x10{left:217.384400pt;}
.x64{left:219.286400pt;}
.x57{left:223.557600pt;}
.x31{left:226.359200pt;}
.x39{left:239.020400pt;}
.x71{left:244.192667pt;}
.x74{left:246.193733pt;}
.x8{left:247.781600pt;}
.x23{left:252.202933pt;}
.x45{left:253.577333pt;}
.x4e{left:254.727067pt;}
.x24{left:260.789200pt;}
.x76{left:267.348000pt;}
.x5a{left:271.451067pt;}
.x75{left:274.494667pt;}
.x4f{left:276.796933pt;}
.x65{left:279.068400pt;}
.xa{left:280.000000pt;}
.x27{left:281.396133pt;}
.x50{left:283.185467pt;}
.x28{left:285.689200pt;}
.x72{left:286.786933pt;}
.x66{left:291.503067pt;}
.x54{left:293.220267pt;}
.x25{left:299.427200pt;}
.x26{left:303.720267pt;}
.x7a{left:304.804348pt;}
.x19{left:305.933833pt;}
.x73{left:308.798800pt;}
.x18{left:310.398533pt;}
.x67{left:312.546400pt;}
.x61{left:318.157200pt;}
.x51{left:320.936667pt;}
.x42{left:324.618000pt;}
.x52{left:327.325467pt;}
.x44{left:332.854533pt;}
.x5e{left:339.135067pt;}
.x40{left:341.777467pt;}
.x79{left:343.965794pt;}
.x41{left:348.984533pt;}
.x6b{left:354.154667pt;}
.x37{left:356.409333pt;}
.x36{left:357.560267pt;}
.x63{left:368.425467pt;}
.x55{left:370.403600pt;}
.x1d{left:378.857067pt;}
.x9{left:379.931600pt;}
.x1b{left:382.577600pt;}
.x6a{left:384.284933pt;}
.x3{left:392.040667pt;}
.x68{left:393.371733pt;}
.x60{left:399.694400pt;}
.x5f{left:400.881733pt;}
.x43{left:405.611200pt;}
.x1c{left:408.621600pt;}
.x69{left:411.545600pt;}
.x1a{left:416.806667pt;}
.x34{left:421.543067pt;}
.x56{left:428.192133pt;}
.x29{left:438.094400pt;}
.x2{left:463.360800pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  