
    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_43a522f1d4a51e4fc2cc12b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_aac10c3df1ffd095613a0894.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_2b5dcb254f80df8d489fb65f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_bfc91ca266dbb44c2a4fce65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_c7d34041d767d3b53fafda58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952637;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_5e06d110c660b852e6ceb8a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_a8f1d02b37b0ddb9ab48a876.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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_b3cb3e5b28a69325b5d5a88c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_0f9ebd5418153927c1940aa8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_4e34a4115d4358a4c41f8d65.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_a868e049373b55b6cbc38c82.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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_41e0a5649b8fd6735ff46e22.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_af24e37a50c7dc920d698dce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;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_23b91dfe13adba78406d8bf3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;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_ed00fb8b8f3862a447072549.woff2')format("woff");}.fff{font-family:fff;line-height:0.939453;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(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);}
.vc{vertical-align:-32.112000px;}
.v4{vertical-align:-28.386517px;}
.v2{vertical-align:-16.471800px;}
.v3{vertical-align:-2.202077px;}
.v5{vertical-align:-1.121054px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.121054px;}
.vb{vertical-align:2.641155px;}
.v9{vertical-align:7.800670px;}
.v8{vertical-align:9.669094px;}
.v7{vertical-align:11.117123px;}
.va{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.ls42{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-0.768000px;}
.lsc{letter-spacing:-0.720000px;}
.ls67{letter-spacing:-0.360000px;}
.ls5b{letter-spacing:-0.240000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.120000px;}
.ls8e{letter-spacing:-0.096000px;}
.ls3b{letter-spacing:-0.060000px;}
.ls8f{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.006600px;}
.ls5f{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.060000px;}
.ls69{letter-spacing:0.096000px;}
.ls35{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.336000px;}
.ls2a{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.384000px;}
.ls4a{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.480000px;}
.ls6b{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.ls90{letter-spacing:0.576000px;}
.ls29{letter-spacing:0.600000px;}
.ls61{letter-spacing:0.624000px;}
.ls57{letter-spacing:0.660000px;}
.ls51{letter-spacing:0.672000px;}
.ls4c{letter-spacing:0.720000px;}
.ls76{letter-spacing:0.768000px;}
.ls34{letter-spacing:0.780000px;}
.ls78{letter-spacing:0.816000px;}
.ls36{letter-spacing:0.840000px;}
.ls8d{letter-spacing:0.864000px;}
.ls20{letter-spacing:0.900000px;}
.ls52{letter-spacing:0.912000px;}
.ls25{letter-spacing:0.960000px;}
.ls6f{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.020000px;}
.ls6e{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.080000px;}
.ls6a{letter-spacing:1.104000px;}
.ls15{letter-spacing:1.140000px;}
.ls83{letter-spacing:1.152000px;}
.ls31{letter-spacing:1.200000px;}
.ls7a{letter-spacing:1.248000px;}
.ls24{letter-spacing:1.260000px;}
.ls6d{letter-spacing:1.296000px;}
.ls2e{letter-spacing:1.320000px;}
.ls8b{letter-spacing:1.344000px;}
.ls47{letter-spacing:1.380000px;}
.ls88{letter-spacing:1.392000px;}
.ls12{letter-spacing:1.440000px;}
.ls60{letter-spacing:1.488000px;}
.ls2f{letter-spacing:1.500000px;}
.ls45{letter-spacing:1.504200px;}
.ls93{letter-spacing:1.536000px;}
.ls37{letter-spacing:1.560000px;}
.ls7d{letter-spacing:1.584000px;}
.ls41{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.632000px;}
.ls39{letter-spacing:1.680000px;}
.ls7c{letter-spacing:1.728000px;}
.ls49{letter-spacing:1.740000px;}
.ls4b{letter-spacing:1.800000px;}
.ls6c{letter-spacing:1.824000px;}
.ls32{letter-spacing:1.860000px;}
.ls7e{letter-spacing:1.872000px;}
.ls1d{letter-spacing:1.920000px;}
.ls80{letter-spacing:1.968000px;}
.ls3a{letter-spacing:1.980000px;}
.ls85{letter-spacing:2.016000px;}
.ls16{letter-spacing:2.040000px;}
.ls70{letter-spacing:2.064000px;}
.ls23{letter-spacing:2.100000px;}
.ls10{letter-spacing:2.160000px;}
.ls7b{letter-spacing:2.208000px;}
.ls3e{letter-spacing:2.220000px;}
.ls91{letter-spacing:2.256000px;}
.lsf{letter-spacing:2.280000px;}
.ls81{letter-spacing:2.304000px;}
.ls19{letter-spacing:2.340000px;}
.ls86{letter-spacing:2.352000px;}
.ls33{letter-spacing:2.400000px;}
.ls46{letter-spacing:2.460000px;}
.ls44{letter-spacing:2.520000px;}
.ls4f{letter-spacing:2.580000px;}
.ls77{letter-spacing:2.592000px;}
.ls54{letter-spacing:2.640000px;}
.ls72{letter-spacing:2.688000px;}
.ls4d{letter-spacing:2.700000px;}
.ls21{letter-spacing:2.760000px;}
.ls7f{letter-spacing:2.784000px;}
.ls56{letter-spacing:2.820000px;}
.ls8a{letter-spacing:2.832000px;}
.ls5c{letter-spacing:2.880000px;}
.ls18{letter-spacing:2.940000px;}
.ls79{letter-spacing:2.976000px;}
.ls28{letter-spacing:3.000000px;}
.ls74{letter-spacing:3.024000px;}
.ls5d{letter-spacing:3.060000px;}
.ls71{letter-spacing:3.072000px;}
.ls2c{letter-spacing:3.120000px;}
.ls13{letter-spacing:3.180000px;}
.ls94{letter-spacing:3.216000px;}
.ls50{letter-spacing:3.240000px;}
.ls75{letter-spacing:3.264000px;}
.ls1f{letter-spacing:3.300000px;}
.ls84{letter-spacing:3.312000px;}
.ls64{letter-spacing:3.360000px;}
.ls8c{letter-spacing:3.408000px;}
.ls1b{letter-spacing:3.420000px;}
.ls48{letter-spacing:3.480000px;}
.ls59{letter-spacing:3.540000px;}
.ls1c{letter-spacing:3.600000px;}
.ls63{letter-spacing:3.900000px;}
.ls89{letter-spacing:3.936000px;}
.ls40{letter-spacing:3.960000px;}
.ls66{letter-spacing:4.020000px;}
.ls5a{letter-spacing:4.080000px;}
.ls87{letter-spacing:4.128000px;}
.ls3f{letter-spacing:4.140000px;}
.ls5e{letter-spacing:4.200000px;}
.lse{letter-spacing:4.320000px;}
.ls82{letter-spacing:4.368000px;}
.ls43{letter-spacing:4.440000px;}
.ls53{letter-spacing:4.560000px;}
.ls2d{letter-spacing:4.800000px;}
.ls62{letter-spacing:4.860000px;}
.ls73{letter-spacing:4.896000px;}
.ls27{letter-spacing:4.920000px;}
.ls92{letter-spacing:4.944000px;}
.ls2b{letter-spacing:4.980000px;}
.ls30{letter-spacing:5.100000px;}
.ls55{letter-spacing:5.580000px;}
.ls26{letter-spacing:5.640000px;}
.ls4e{letter-spacing:5.940000px;}
.ls65{letter-spacing:6.180000px;}
.ls58{letter-spacing:6.720000px;}
.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;}
}
.ws79{word-spacing:-20.880000px;}
.ws97{word-spacing:-20.580000px;}
.ws95{word-spacing:-20.280000px;}
.ws12{word-spacing:-19.680000px;}
.ws49{word-spacing:-18.725802px;}
.ws11{word-spacing:-18.600000px;}
.ws5a{word-spacing:-18.360000px;}
.ws1{word-spacing:-18.348000px;}
.wsa3{word-spacing:-18.240000px;}
.ws96{word-spacing:-18.060000px;}
.ws6d{word-spacing:-17.580000px;}
.ws5c{word-spacing:-17.405080px;}
.wsb9{word-spacing:-17.280000px;}
.ws98{word-spacing:-16.920000px;}
.ws59{word-spacing:-16.860000px;}
.ws14{word-spacing:-16.680000px;}
.wsb6{word-spacing:-16.608000px;}
.ws13{word-spacing:-16.560000px;}
.wsd2{word-spacing:-15.504000px;}
.wsb8{word-spacing:-14.640000px;}
.wsa2{word-spacing:-14.304000px;}
.wsb7{word-spacing:-14.256000px;}
.ws15{word-spacing:-14.178000px;}
.wsd3{word-spacing:-13.872000px;}
.wsd4{word-spacing:-13.776000px;}
.wsa1{word-spacing:-13.728000px;}
.wsa4{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.488000px;}
.wsa0{word-spacing:-13.440000px;}
.wsd1{word-spacing:-13.392000px;}
.ws7a{word-spacing:-13.344000px;}
.ws41{word-spacing:-12.985547px;}
.ws0{word-spacing:-11.008800px;}
.wsa9{word-spacing:-5.940000px;}
.ws61{word-spacing:-5.580000px;}
.ws99{word-spacing:-4.860000px;}
.ws3e{word-spacing:-4.504248px;}
.ws5d{word-spacing:-4.140000px;}
.ws5{word-spacing:-3.630000px;}
.ws1f{word-spacing:-3.600000px;}
.ws84{word-spacing:-3.480000px;}
.wsce{word-spacing:-3.408000px;}
.ws22{word-spacing:-3.300000px;}
.wsba{word-spacing:-3.264000px;}
.wsde{word-spacing:-3.216000px;}
.ws1a{word-spacing:-3.180000px;}
.wsdf{word-spacing:-3.120000px;}
.wsb3{word-spacing:-3.072000px;}
.ws88{word-spacing:-3.060000px;}
.wsbf{word-spacing:-2.976000px;}
.ws83{word-spacing:-2.880000px;}
.ws71{word-spacing:-2.820000px;}
.ws53{word-spacing:-2.760000px;}
.ws54{word-spacing:-2.700000px;}
.wsb5{word-spacing:-2.688000px;}
.ws4{word-spacing:-2.664000px;}
.ws93{word-spacing:-2.640000px;}
.wsbb{word-spacing:-2.592000px;}
.wsab{word-spacing:-2.580000px;}
.ws73{word-spacing:-2.520000px;}
.ws2f{word-spacing:-2.400000px;}
.ws66{word-spacing:-2.280000px;}
.ws4b{word-spacing:-2.220000px;}
.ws18{word-spacing:-2.160000px;}
.ws82{word-spacing:-2.100000px;}
.wsc7{word-spacing:-2.064000px;}
.ws30{word-spacing:-2.040000px;}
.ws4a{word-spacing:-1.980000px;}
.ws20{word-spacing:-1.920000px;}
.wsc4{word-spacing:-1.872000px;}
.ws2e{word-spacing:-1.860000px;}
.ws87{word-spacing:-1.800000px;}
.ws94{word-spacing:-1.776000px;}
.ws50{word-spacing:-1.740000px;}
.wsc2{word-spacing:-1.728000px;}
.ws36{word-spacing:-1.680000px;}
.wsac{word-spacing:-1.632000px;}
.ws6a{word-spacing:-1.620000px;}
.ws85{word-spacing:-1.560000px;}
.ws3c{word-spacing:-1.500000px;}
.ws8c{word-spacing:-1.488000px;}
.ws1b{word-spacing:-1.440000px;}
.wsc9{word-spacing:-1.392000px;}
.ws9f{word-spacing:-1.380000px;}
.ws2c{word-spacing:-1.320000px;}
.wscf{word-spacing:-1.296000px;}
.ws26{word-spacing:-1.260000px;}
.wsc0{word-spacing:-1.248000px;}
.ws6b{word-spacing:-1.200000px;}
.ws6{word-spacing:-1.188000px;}
.ws2d{word-spacing:-1.140000px;}
.wsbe{word-spacing:-1.104000px;}
.ws19{word-spacing:-1.080000px;}
.ws25{word-spacing:-1.020000px;}
.wsb0{word-spacing:-0.960000px;}
.ws58{word-spacing:-0.912000px;}
.ws37{word-spacing:-0.900000px;}
.wsc5{word-spacing:-0.864000px;}
.ws74{word-spacing:-0.840000px;}
.wsbd{word-spacing:-0.816000px;}
.ws62{word-spacing:-0.780000px;}
.wsd7{word-spacing:-0.720000px;}
.ws57{word-spacing:-0.672000px;}
.ws72{word-spacing:-0.660000px;}
.ws90{word-spacing:-0.624000px;}
.ws27{word-spacing:-0.600000px;}
.wsd5{word-spacing:-0.576000px;}
.ws52{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.480000px;}
.wsd9{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.420000px;}
.wsaf{word-spacing:-0.384000px;}
.ws8e{word-spacing:-0.336000px;}
.ws5e{word-spacing:-0.300000px;}
.wsc6{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.240000px;}
.wsb4{word-spacing:-0.192000px;}
.wsa8{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.120000px;}
.wsad{word-spacing:-0.096000px;}
.ws34{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws21{word-spacing:0.060000px;}
.wsdd{word-spacing:0.096000px;}
.ws2b{word-spacing:0.120000px;}
.ws1c{word-spacing:0.240000px;}
.ws60{word-spacing:0.300000px;}
.ws10{word-spacing:0.384000px;}
.wsa6{word-spacing:0.420000px;}
.wse1{word-spacing:0.432000px;}
.wsbc{word-spacing:0.480000px;}
.ws3a{word-spacing:0.600000px;}
.ws7{word-spacing:0.624000px;}
.ws77{word-spacing:0.660000px;}
.ws6c{word-spacing:0.672000px;}
.wsc3{word-spacing:0.720000px;}
.wsd0{word-spacing:0.768000px;}
.ws9c{word-spacing:0.780000px;}
.ws38{word-spacing:0.840000px;}
.ws29{word-spacing:0.900000px;}
.ws39{word-spacing:0.960000px;}
.wsae{word-spacing:1.056000px;}
.ws81{word-spacing:1.140000px;}
.ws4d{word-spacing:1.200000px;}
.wscd{word-spacing:1.248000px;}
.wse2{word-spacing:1.344000px;}
.wsb2{word-spacing:1.392000px;}
.wse{word-spacing:1.488000px;}
.wsda{word-spacing:1.584000px;}
.ws28{word-spacing:1.620000px;}
.ws8f{word-spacing:1.632000px;}
.wsc8{word-spacing:1.728000px;}
.ws9a{word-spacing:1.740000px;}
.ws75{word-spacing:1.800000px;}
.ws4c{word-spacing:1.860000px;}
.ws63{word-spacing:1.920000px;}
.ws8a{word-spacing:1.980000px;}
.wsdc{word-spacing:2.016000px;}
.ws86{word-spacing:2.040000px;}
.wsf{word-spacing:2.064000px;}
.ws65{word-spacing:2.100000px;}
.wsd8{word-spacing:2.160000px;}
.ws56{word-spacing:2.220000px;}
.ws33{word-spacing:2.280000px;}
.ws92{word-spacing:2.304000px;}
.wsd6{word-spacing:2.400000px;}
.wsb1{word-spacing:2.448000px;}
.ws5f{word-spacing:2.580000px;}
.ws64{word-spacing:2.640000px;}
.wsc{word-spacing:2.688000px;}
.wsc1{word-spacing:2.736000px;}
.ws7e{word-spacing:2.760000px;}
.wsaa{word-spacing:2.820000px;}
.wsb{word-spacing:2.832000px;}
.ws8d{word-spacing:2.976000px;}
.ws1e{word-spacing:3.060000px;}
.ws2a{word-spacing:3.120000px;}
.wsdb{word-spacing:3.168000px;}
.wsa7{word-spacing:3.240000px;}
.ws91{word-spacing:3.312000px;}
.wscb{word-spacing:3.408000px;}
.ws80{word-spacing:3.480000px;}
.wscc{word-spacing:3.504000px;}
.ws31{word-spacing:3.600000px;}
.ws68{word-spacing:3.660000px;}
.wsd{word-spacing:3.792000px;}
.ws4f{word-spacing:3.840000px;}
.wsca{word-spacing:3.888000px;}
.ws78{word-spacing:3.900000px;}
.ws35{word-spacing:4.020000px;}
.ws9b{word-spacing:4.080000px;}
.ws89{word-spacing:4.140000px;}
.wse0{word-spacing:4.224000px;}
.ws55{word-spacing:4.260000px;}
.ws4e{word-spacing:4.320000px;}
.ws8{word-spacing:4.368000px;}
.wsa{word-spacing:4.416000px;}
.ws7f{word-spacing:4.440000px;}
.wsa5{word-spacing:4.500000px;}
.ws24{word-spacing:4.680000px;}
.ws9d{word-spacing:4.740000px;}
.ws3b{word-spacing:4.920000px;}
.ws76{word-spacing:4.980000px;}
.ws8b{word-spacing:5.160000px;}
.ws67{word-spacing:5.220000px;}
.ws69{word-spacing:5.340000px;}
.ws9e{word-spacing:5.400000px;}
.ws17{word-spacing:5.460000px;}
.ws16{word-spacing:5.520000px;}
.ws43{word-spacing:10.416464px;}
.ws44{word-spacing:14.200022px;}
.ws40{word-spacing:22.180720px;}
.ws7d{word-spacing:58.416000px;}
.ws7b{word-spacing:66.912000px;}
.ws47{word-spacing:75.717883px;}
.ws3f{word-spacing:84.799213px;}
.ws48{word-spacing:96.377564px;}
.ws42{word-spacing:100.801475px;}
.ws7c{word-spacing:113.904000px;}
.ws70{word-spacing:126.864000px;}
.ws6e{word-spacing:127.632000px;}
.ws45{word-spacing:154.144980px;}
.ws46{word-spacing:195.156887px;}
.ws5b{word-spacing:277.447966px;}
.ws3d{word-spacing:311.073833px;}
.ws6f{word-spacing:2227.440000px;}
._c{margin-left:-2897.832000px;}
._1a{margin-left:-2874.015000px;}
._16{margin-left:-1139.241901px;}
._d{margin-left:-669.110510px;}
._2a{margin-left:-665.520000px;}
._1d{margin-left:-614.511440px;}
._18{margin-left:-517.062066px;}
._17{margin-left:-491.569583px;}
._19{margin-left:-469.314099px;}
._13{margin-left:-259.197119px;}
._3{margin-left:-8.476200px;}
._6{margin-left:-7.363800px;}
._1{margin-left:-5.376000px;}
._7{margin-left:-4.068000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.161600px;}
._5{width:1.299600px;}
._8{width:2.322600px;}
._4{width:3.436200px;}
._9{width:5.107800px;}
._b{width:6.736200px;}
._a{width:8.503800px;}
._1b{width:9.600000px;}
._1c{width:11.220000px;}
._12{width:39.476876px;}
._10{width:47.404282px;}
._11{width:51.047685px;}
._24{width:78.144000px;}
._26{width:79.200000px;}
._29{width:82.368000px;}
._27{width:84.480000px;}
._23{width:87.648000px;}
._28{width:103.824000px;}
._25{width:107.040000px;}
._2c{width:148.560000px;}
._22{width:153.888000px;}
._15{width:161.446565px;}
._14{width:210.197700px;}
._1f{width:303.760626px;}
._f{width:355.207590px;}
._20{width:524.245257px;}
._2b{width:647.376000px;}
._1e{width:757.099918px;}
._21{width:781.033152px;}
._e{width:830.997155px;}
.fca{color:rgb(37,30,27);}
.fc8{color:rgb(252,32,26);}
.fc7{color:rgb(241,0,0);}
.fc6{color:rgb(254,18,13);}
.fc5{color:rgb(241,9,0);}
.fc9{color:rgb(5,0,0);}
.fc4{color:rgb(242,12,0);}
.fc3{color:rgb(252,27,27);}
.fc2{color:rgb(18,11,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fsd{font-size:33.364800px;}
.fs14{font-size:36.000000px;}
.fse{font-size:36.701400px;}
.fs1a{font-size:38.143800px;}
.fs4{font-size:39.600000px;}
.fsc{font-size:40.037400px;}
.fs0{font-size:42.000000px;}
.fsf{font-size:46.710600px;}
.fs6{font-size:48.000000px;}
.fs17{font-size:48.021000px;}
.fs10{font-size:48.884400px;}
.fs11{font-size:49.310400px;}
.fs12{font-size:49.396800px;}
.fs7{font-size:51.000000px;}
.fs15{font-size:53.473200px;}
.fs19{font-size:53.664000px;}
.fs13{font-size:53.887200px;}
.fs16{font-size:56.830800px;}
.fs8{font-size:60.000000px;}
.fs18{font-size:62.608200px;}
.fs9{font-size:62.868600px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:67.359000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:76.340400px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:50.517000px;}
.y126{bottom:79.694700px;}
.y20b{bottom:79.938300px;}
.y1{bottom:82.406700px;}
.y8c{bottom:82.799700px;}
.yfa{bottom:82.925400px;}
.y196{bottom:83.228850px;}
.y79{bottom:83.363850px;}
.y66{bottom:83.367600px;}
.y30{bottom:83.493900px;}
.ye3{bottom:84.189300px;}
.y120{bottom:84.201000px;}
.y14f{bottom:84.910800px;}
.y1ca{bottom:94.796700px;}
.y20a{bottom:94.938300px;}
.y8b{bottom:98.543700px;}
.yf9{bottom:98.669400px;}
.ye2{bottom:99.933300px;}
.y11f{bottom:99.945000px;}
.y14e{bottom:100.654800px;}
.y78{bottom:101.363850px;}
.y65{bottom:101.367600px;}
.y1c9{bottom:109.796700px;}
.y209{bottom:109.938300px;}
.y8a{bottom:114.287700px;}
.ye1{bottom:115.677300px;}
.y14d{bottom:116.398800px;}
.y195{bottom:119.228850px;}
.y77{bottom:119.363850px;}
.y64{bottom:119.367600px;}
.y2d{bottom:121.513200px;}
.y125{bottom:123.865500px;}
.y1c8{bottom:124.796700px;}
.y208{bottom:124.938300px;}
.y101{bottom:126.344565px;}
.y132{bottom:127.756650px;}
.y124{bottom:127.760850px;}
.y14c{bottom:132.142800px;}
.yb5{bottom:137.125500px;}
.y194{bottom:137.228850px;}
.y76{bottom:137.363850px;}
.y63{bottom:137.367600px;}
.y1c7{bottom:139.796700px;}
.y207{bottom:139.938300px;}
.y93{bottom:142.213411px;}
.y15d{bottom:143.051400px;}
.y14b{bottom:147.886800px;}
.y127{bottom:150.299250px;}
.y102{bottom:153.503700px;}
.y1c6{bottom:154.796700px;}
.y206{bottom:154.938300px;}
.y75{bottom:155.363850px;}
.y62{bottom:155.367600px;}
.ye6{bottom:159.720493px;}
.y14a{bottom:163.630800px;}
.y128{bottom:165.211350px;}
.y133{bottom:165.477900px;}
.y106{bottom:169.338625px;}
.y1c5{bottom:169.796700px;}
.y205{bottom:169.938300px;}
.y100{bottom:170.985158px;}
.y193{bottom:173.228850px;}
.y74{bottom:173.363850px;}
.y61{bottom:173.367600px;}
.y2c{bottom:176.438550px;}
.y97{bottom:176.592600px;}
.y149{bottom:179.374800px;}
.y9e{bottom:179.937942px;}
.y104{bottom:182.196247px;}
.y9d{bottom:183.271055px;}
.y1c4{bottom:184.796700px;}
.y204{bottom:184.938300px;}
.ycc{bottom:189.509700px;}
.y92{bottom:190.590799px;}
.y192{bottom:191.228850px;}
.y73{bottom:191.363850px;}
.y60{bottom:191.367600px;}
.y129{bottom:193.531350px;}
.y148{bottom:195.118800px;}
.y105{bottom:198.559403px;}
.y134{bottom:199.509900px;}
.y1c3{bottom:199.796700px;}
.y203{bottom:199.938300px;}
.y9b{bottom:204.140550px;}
.y99{bottom:208.321200px;}
.y191{bottom:209.228850px;}
.y2b{bottom:209.294550px;}
.y72{bottom:209.363850px;}
.y5f{bottom:209.367600px;}
.y147{bottom:210.862800px;}
.y117{bottom:210.868844px;}
.y12e{bottom:211.254000px;}
.y138{bottom:211.520400px;}
.y9f{bottom:213.295800px;}
.y1c2{bottom:214.796700px;}
.y202{bottom:214.938300px;}
.y9c{bottom:221.656912px;}
.y12a{bottom:221.863350px;}
.y9a{bottom:222.193200px;}
.y2a{bottom:224.294550px;}
.y146{bottom:226.606800px;}
.y190{bottom:227.228850px;}
.y71{bottom:227.363850px;}
.y5e{bottom:227.367600px;}
.y116{bottom:229.620000px;}
.y1c1{bottom:229.796700px;}
.y201{bottom:229.938300px;}
.y98{bottom:231.158100px;}
.ya0{bottom:231.162650px;}
.y135{bottom:233.469900px;}
.yfb{bottom:234.166800px;}
.y29{bottom:239.294550px;}
.y96{bottom:240.087449px;}
.y145{bottom:242.350800px;}
.y1c0{bottom:244.796700px;}
.y200{bottom:244.938300px;}
.y18f{bottom:245.228850px;}
.y70{bottom:245.363850px;}
.y5d{bottom:245.367600px;}
.ya1{bottom:248.997000px;}
.y103{bottom:249.497679px;}
.y12b{bottom:250.207350px;}
.y28{bottom:254.294550px;}
.y144{bottom:258.094800px;}
.y8d{bottom:258.363150px;}
.y1bf{bottom:259.796700px;}
.y1ff{bottom:259.938300px;}
.y18e{bottom:263.228850px;}
.y6f{bottom:263.363850px;}
.y5c{bottom:263.367600px;}
.y136{bottom:267.513900px;}
.y27{bottom:269.294550px;}
.ya2{bottom:272.799234px;}
.y143{bottom:273.838800px;}
.y1be{bottom:274.796700px;}
.y1fe{bottom:274.938300px;}
.y11a{bottom:278.001600px;}
.y12c{bottom:278.539350px;}
.y18d{bottom:281.228850px;}
.y6e{bottom:281.363850px;}
.y5b{bottom:281.367600px;}
.y26{bottom:284.294550px;}
.y142{bottom:289.582800px;}
.y1bd{bottom:289.796700px;}
.y1fd{bottom:289.938300px;}
.y131{bottom:290.308650px;}
.y123{bottom:290.312850px;}
.yff{bottom:293.967009px;}
.y18c{bottom:299.228850px;}
.y25{bottom:299.294550px;}
.y6d{bottom:299.363850px;}
.y5a{bottom:299.367600px;}
.y137{bottom:301.449900px;}
.y130{bottom:304.708650px;}
.y122{bottom:304.712850px;}
.y1bc{bottom:304.796700px;}
.y1fc{bottom:304.938300px;}
.y12d{bottom:306.871350px;}
.y94{bottom:309.499350px;}
.y10f{bottom:312.873394px;}
.y15c{bottom:313.062000px;}
.y24{bottom:314.294550px;}
.y15b{bottom:316.959300px;}
.y18b{bottom:317.228850px;}
.y6c{bottom:317.363850px;}
.y59{bottom:317.367600px;}
.y121{bottom:319.112850px;}
.y1bb{bottom:319.796700px;}
.y1fb{bottom:319.938300px;}
.y10e{bottom:326.619405px;}
.y115{bottom:326.979563px;}
.y139{bottom:327.135900px;}
.y12f{bottom:327.136650px;}
.ye4{bottom:327.864600px;}
.y91{bottom:329.058891px;}
.y23{bottom:329.294550px;}
.y152{bottom:334.269150px;}
.y1ba{bottom:334.796700px;}
.y1fa{bottom:334.938300px;}
.y18a{bottom:335.228850px;}
.y6b{bottom:335.363850px;}
.y58{bottom:335.367600px;}
.y10d{bottom:341.025705px;}
.y114{bottom:341.385863px;}
.y22{bottom:344.294550px;}
.y154{bottom:345.024000px;}
.y1b9{bottom:349.796700px;}
.y1f9{bottom:349.938300px;}
.y6a{bottom:353.363850px;}
.y57{bottom:353.367600px;}
.yfd{bottom:356.580343px;}
.y21{bottom:359.294550px;}
.y1b8{bottom:364.796700px;}
.y1f8{bottom:364.938300px;}
.y161{bottom:366.358650px;}
.ye5{bottom:367.664400px;}
.y189{bottom:371.228850px;}
.y69{bottom:371.363850px;}
.y56{bottom:371.367600px;}
.y20{bottom:374.294550px;}
.y1b7{bottom:379.796700px;}
.y1f7{bottom:379.938300px;}
.y10c{bottom:381.747513px;}
.y111{bottom:383.368222px;}
.yae{bottom:384.148836px;}
.yb3{bottom:384.709363px;}
.y113{bottom:384.724815px;}
.y155{bottom:388.740000px;}
.y188{bottom:389.228850px;}
.y1f{bottom:389.294550px;}
.y68{bottom:389.363850px;}
.y55{bottom:389.367600px;}
.y1b6{bottom:394.796700px;}
.y1f6{bottom:394.938300px;}
.y10b{bottom:396.153813px;}
.y8f{bottom:396.422596px;}
.y110{bottom:397.774522px;}
.y112{bottom:399.131115px;}
.y1e{bottom:404.294550px;}
.y187{bottom:407.228850px;}
.y141{bottom:407.363850px;}
.y54{bottom:407.367600px;}
.yb2{bottom:408.216473px;}
.ya3{bottom:408.777000px;}
.y164{bottom:408.874650px;}
.y1b5{bottom:409.796700px;}
.y1f5{bottom:409.938300px;}
.yb4{bottom:411.311050px;}
.yfe{bottom:418.071269px;}
.y1d{bottom:419.294550px;}
.y1b4{bottom:424.796700px;}
.y1f4{bottom:424.938300px;}
.y186{bottom:425.228850px;}
.y140{bottom:425.363850px;}
.y53{bottom:425.367600px;}
.yb1{bottom:430.882791px;}
.yaf{bottom:431.057956px;}
.y156{bottom:431.172000px;}
.yb0{bottom:431.805326px;}
.ya4{bottom:433.241677px;}
.y1c{bottom:434.294550px;}
.y10a{bottom:435.158870px;}
.y119{bottom:436.242712px;}
.y108{bottom:436.995673px;}
.y1b3{bottom:439.796700px;}
.y1f3{bottom:439.938300px;}
.y185{bottom:443.228850px;}
.y13f{bottom:443.363850px;}
.y52{bottom:443.367600px;}
.y1b{bottom:449.294550px;}
.y109{bottom:449.565170px;}
.y167{bottom:449.806650px;}
.y107{bottom:451.401974px;}
.ya6{bottom:451.610620px;}
.ya8{bottom:452.848451px;}
.ya9{bottom:453.023616px;}
.yab{bottom:454.132993px;}
.y1b2{bottom:454.796700px;}
.y1f2{bottom:454.938300px;}
.y118{bottom:454.993868px;}
.y184{bottom:461.228850px;}
.y13e{bottom:461.363850px;}
.y51{bottom:461.367600px;}
.y1a{bottom:464.294550px;}
.y90{bottom:467.149771px;}
.y1b1{bottom:469.796700px;}
.y1f1{bottom:469.938300px;}
.y157{bottom:472.812000px;}
.yfc{bottom:476.237593px;}
.ya5{bottom:476.589114px;}
.yad{bottom:477.172996px;}
.ya7{bottom:478.983032px;}
.y183{bottom:479.228850px;}
.y19{bottom:479.294550px;}
.y13d{bottom:479.363850px;}
.y50{bottom:479.367600px;}
.yac{bottom:479.438460px;}
.yaa{bottom:479.718724px;}
.y159{bottom:481.887300px;}
.y150{bottom:483.343350px;}
.y1b0{bottom:484.796700px;}
.y1f0{bottom:484.938300px;}
.y18{bottom:494.294550px;}
.y11c{bottom:494.852688px;}
.y11e{bottom:494.869716px;}
.y13c{bottom:497.363850px;}
.y4f{bottom:497.367600px;}
.y1af{bottom:499.796700px;}
.y1ef{bottom:499.938300px;}
.y95{bottom:503.690850px;}
.y153{bottom:505.113150px;}
.ye7{bottom:508.710600px;}
.y1ae{bottom:514.796700px;}
.y1ee{bottom:514.938300px;}
.y182{bottom:515.228850px;}
.y13b{bottom:515.363850px;}
.y4e{bottom:515.367600px;}
.y11b{bottom:516.412200px;}
.y11d{bottom:516.415812px;}
.y15f{bottom:516.862650px;}
.yce{bottom:518.736841px;}
.y1ad{bottom:529.796700px;}
.y1ed{bottom:529.938300px;}
.y8e{bottom:531.260025px;}
.y181{bottom:533.228850px;}
.y13a{bottom:533.363850px;}
.y4d{bottom:533.367600px;}
.y160{bottom:539.314650px;}
.y17{bottom:543.038550px;}
.y1ac{bottom:544.796700px;}
.y1ec{bottom:544.938300px;}
.y180{bottom:551.228850px;}
.ye0{bottom:551.363850px;}
.y4c{bottom:551.367600px;}
.y16{bottom:557.438550px;}
.y17d{bottom:557.838900px;}
.y1ab{bottom:559.796700px;}
.y1eb{bottom:559.938300px;}
.yb9{bottom:561.188653px;}
.y162{bottom:563.350650px;}
.yf8{bottom:569.228850px;}
.ydf{bottom:569.363850px;}
.y4b{bottom:569.367600px;}
.y16f{bottom:571.264650px;}
.y15{bottom:571.838550px;}
.y17e{bottom:572.381400px;}
.y1aa{bottom:574.796700px;}
.y1ea{bottom:574.938300px;}
.ybf{bottom:585.625972px;}
.yf7{bottom:587.228850px;}
.yde{bottom:587.363850px;}
.y4a{bottom:587.367600px;}
.y17f{bottom:587.984400px;}
.y163{bottom:588.178650px;}
.yca{bottom:588.706558px;}
.y1a9{bottom:589.796700px;}
.y1e9{bottom:589.938300px;}
.yc5{bottom:593.401325px;}
.y14{bottom:598.994550px;}
.yc9{bottom:599.052900px;}
.ycb{bottom:601.881978px;}
.ybe{bottom:602.465722px;}
.y17c{bottom:603.062400px;}
.y1a8{bottom:604.796700px;}
.y1e8{bottom:604.938300px;}
.yf6{bottom:605.228850px;}
.ydd{bottom:605.363850px;}
.y49{bottom:605.367600px;}
.yc4{bottom:606.678150px;}
.y165{bottom:611.422650px;}
.y17b{bottom:618.402900px;}
.y1a7{bottom:619.796700px;}
.y1e7{bottom:619.938300px;}
.yf5{bottom:623.228850px;}
.ydc{bottom:623.363850px;}
.y48{bottom:623.367600px;}
.y1a6{bottom:634.796700px;}
.y1e6{bottom:634.938300px;}
.y166{bottom:635.458650px;}
.y13{bottom:637.612500px;}
.yf4{bottom:641.228850px;}
.ydb{bottom:641.363850px;}
.y47{bottom:641.367600px;}
.yb7{bottom:645.636900px;}
.y15a{bottom:649.299300px;}
.y1a5{bottom:649.796700px;}
.y1e5{bottom:649.938300px;}
.y151{bottom:650.515350px;}
.yc3{bottom:651.199800px;}
.y12{bottom:654.112500px;}
.yf3{bottom:659.228850px;}
.yda{bottom:659.363850px;}
.y46{bottom:659.367600px;}
.y168{bottom:659.494650px;}
.y1a4{bottom:664.796700px;}
.y1e4{bottom:664.938300px;}
.y11{bottom:670.612500px;}
.yf2{bottom:677.228850px;}
.yd9{bottom:677.363850px;}
.y45{bottom:677.367600px;}
.yc2{bottom:679.322341px;}
.y1a3{bottom:679.796700px;}
.y1e3{bottom:679.938300px;}
.y10{bottom:687.112500px;}
.yb6{bottom:692.339250px;}
.y1a2{bottom:694.796700px;}
.y1e2{bottom:694.938300px;}
.yf1{bottom:695.228850px;}
.yd8{bottom:695.363850px;}
.y44{bottom:695.367600px;}
.yc7{bottom:695.759618px;}
.yc1{bottom:696.162091px;}
.y170{bottom:698.435100px;}
.yf{bottom:699.494550px;}
.y16d{bottom:700.990800px;}
.y171{bottom:707.570100px;}
.y1a1{bottom:709.796700px;}
.y1e1{bottom:709.938300px;}
.yc0{bottom:713.001841px;}
.yf0{bottom:713.228850px;}
.yd7{bottom:713.363850px;}
.y43{bottom:713.367600px;}
.y172{bottom:715.917600px;}
.ye{bottom:720.112500px;}
.y17a{bottom:724.261200px;}
.y1a0{bottom:724.796700px;}
.y1e0{bottom:724.938300px;}
.y173{bottom:725.850600px;}
.yb8{bottom:730.871004px;}
.yef{bottom:731.228850px;}
.yd6{bottom:731.363850px;}
.y42{bottom:731.367600px;}
.yd{bottom:732.494550px;}
.ybd{bottom:733.933650px;}
.y169{bottom:736.954800px;}
.y174{bottom:738.167100px;}
.y19f{bottom:739.796700px;}
.y1df{bottom:739.938300px;}
.y15e{bottom:745.265400px;}
.yc6{bottom:748.527750px;}
.yee{bottom:749.228850px;}
.yd5{bottom:749.363850px;}
.y41{bottom:749.367600px;}
.ybc{bottom:750.773400px;}
.yc{bottom:753.112500px;}
.y19e{bottom:754.796700px;}
.y1de{bottom:754.938300px;}
.yb{bottom:765.494550px;}
.yed{bottom:767.228850px;}
.yd4{bottom:767.363850px;}
.y40{bottom:767.367600px;}
.ybb{bottom:767.613150px;}
.y19d{bottom:769.796700px;}
.y1dd{bottom:769.938300px;}
.y16c{bottom:774.490800px;}
.yc8{bottom:776.511037px;}
.y19c{bottom:784.796700px;}
.y1dc{bottom:784.938300px;}
.yec{bottom:785.228850px;}
.yd3{bottom:785.363850px;}
.y3f{bottom:785.367600px;}
.ya{bottom:786.112500px;}
.y179{bottom:786.841200px;}
.y9{bottom:798.494550px;}
.y19b{bottom:799.796700px;}
.y1db{bottom:799.938300px;}
.ycd{bottom:803.028650px;}
.yeb{bottom:803.228850px;}
.yd2{bottom:803.363850px;}
.y3e{bottom:803.367600px;}
.y16a{bottom:810.250800px;}
.y175{bottom:810.482550px;}
.yba{bottom:813.228870px;}
.y19a{bottom:814.796700px;}
.y1da{bottom:814.938300px;}
.y8{bottom:819.112500px;}
.yea{bottom:821.228850px;}
.yd1{bottom:821.363850px;}
.y3d{bottom:821.367600px;}
.y176{bottom:827.961946px;}
.y199{bottom:829.796700px;}
.y1d9{bottom:829.938300px;}
.y7{bottom:834.381300px;}
.ye9{bottom:839.228850px;}
.yd0{bottom:839.363850px;}
.y3c{bottom:839.367600px;}
.y198{bottom:844.796700px;}
.y1d8{bottom:844.938300px;}
.y177{bottom:847.434356px;}
.y16b{bottom:847.798800px;}
.ye8{bottom:857.228850px;}
.ycf{bottom:857.363850px;}
.y3b{bottom:857.367600px;}
.y6{bottom:857.631300px;}
.y197{bottom:859.796700px;}
.y1d7{bottom:859.938300px;}
.y158{bottom:860.659350px;}
.y178{bottom:863.725200px;}
.y1d6{bottom:874.938300px;}
.y89{bottom:875.228850px;}
.y84{bottom:875.363850px;}
.y3a{bottom:875.367600px;}
.y5{bottom:880.879800px;}
.y16e{bottom:883.030800px;}
.y1d5{bottom:889.938300px;}
.y88{bottom:893.228850px;}
.y83{bottom:893.363850px;}
.y39{bottom:893.367600px;}
.y1d4{bottom:904.938300px;}
.y4{bottom:908.269200px;}
.y87{bottom:911.228850px;}
.y82{bottom:911.363850px;}
.y38{bottom:911.367600px;}
.y1d3{bottom:919.938300px;}
.y86{bottom:929.228850px;}
.y81{bottom:929.363850px;}
.y37{bottom:929.367600px;}
.y1d2{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y80{bottom:947.363850px;}
.y36{bottom:947.367600px;}
.y1d1{bottom:949.938300px;}
.y1d0{bottom:964.938300px;}
.y85{bottom:965.228850px;}
.y7f{bottom:965.363850px;}
.y35{bottom:965.367600px;}
.y1cf{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y7e{bottom:983.363850px;}
.y34{bottom:983.367600px;}
.y1ce{bottom:994.938300px;}
.y7d{bottom:1001.363850px;}
.y33{bottom:1001.367600px;}
.y1cd{bottom:1009.938300px;}
.y7c{bottom:1019.363850px;}
.y67{bottom:1019.367600px;}
.y1cc{bottom:1024.938300px;}
.y7b{bottom:1037.363850px;}
.y32{bottom:1037.367600px;}
.y1cb{bottom:1039.938300px;}
.y2f{bottom:1070.769450px;}
.y7a{bottom:1086.066450px;}
.y2e{bottom:1086.069450px;}
.h7{height:20.995312px;}
.h14{height:24.323070px;}
.h15{height:26.755464px;}
.h28{height:27.806979px;}
.h13{height:29.187421px;}
.h2{height:30.618164px;}
.h16{height:34.052210px;}
.h8{height:34.992188px;}
.h21{height:35.007497px;}
.h17{height:35.173264px;}
.ha{height:35.625000px;}
.h1a{height:35.636919px;}
.h1b{height:35.947474px;}
.h9{height:36.000000px;}
.h1c{height:36.010460px;}
.hc{height:37.179199px;}
.h22{height:37.648652px;}
.hb{height:38.250000px;}
.h1f{height:38.982172px;}
.h24{height:39.121266px;}
.h25{height:39.135714px;}
.h1d{height:39.283979px;}
.h20{height:41.429875px;}
.hd{height:43.740234px;}
.hf{height:44.531250px;}
.he{height:45.000000px;}
.h18{height:45.169333px;}
.h23{height:45.641622px;}
.h10{height:45.831455px;}
.h1e{height:46.839741px;}
.h11{height:49.104974px;}
.h6{height:51.517955px;}
.h5{height:51.523955px;}
.h3{height:54.000000px;}
.h12{height:55.652450px;}
.h4{height:63.000000px;}
.h26{height:221.820000px;}
.h27{height:581.551500px;}
.h19{height:705.826500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:336.636000px;}
.w2{width:575.244000px;}
.w3{width:718.785000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x60{left:10.297200px;}
.x64{left:22.404600px;}
.x7{left:76.535400px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x63{left:98.940600px;}
.x62{left:105.612600px;}
.x9{left:110.558550px;}
.x61{left:117.436800px;}
.x6e{left:121.164317px;}
.x3{left:125.427600px;}
.x6d{left:127.836150px;}
.x65{left:128.992950px;}
.x42{left:131.815350px;}
.x74{left:141.976800px;}
.x6f{left:144.906000px;}
.x75{left:152.927550px;}
.x40{left:156.974400px;}
.x4{left:161.571600px;}
.x6c{left:163.999500px;}
.x31{left:169.464000px;}
.x73{left:171.748800px;}
.x14{left:178.196460px;}
.x13{left:179.312367px;}
.x12{left:180.428274px;}
.x32{left:189.533550px;}
.x8{left:190.553550px;}
.x11{left:191.870250px;}
.x41{left:198.048000px;}
.x45{left:203.371032px;}
.x44{left:205.601641px;}
.x78{left:211.390350px;}
.x6b{left:214.449057px;}
.x3e{left:215.893665px;}
.x72{left:224.813100px;}
.x35{left:228.011108px;}
.x34{left:229.880304px;}
.x49{left:251.677634px;}
.x76{left:266.740800px;}
.x57{left:267.749394px;}
.x48{left:272.722837px;}
.x17{left:279.229950px;}
.x58{left:282.540581px;}
.x4e{left:285.628481px;}
.x4d{left:292.291395px;}
.x5a{left:298.302000px;}
.x2c{left:302.277203px;}
.x2b{left:307.497045px;}
.x5d{left:313.125300px;}
.x15{left:318.376383px;}
.x5e{left:326.133300px;}
.x5f{left:329.637300px;}
.x70{left:331.037100px;}
.x46{left:333.030502px;}
.x71{left:334.373100px;}
.x1f{left:335.949260px;}
.x1b{left:341.080800px;}
.x50{left:353.530175px;}
.x20{left:355.587604px;}
.x4f{left:360.193089px;}
.x1c{left:364.142342px;}
.x2e{left:365.954610px;}
.x4c{left:367.660354px;}
.x2a{left:373.673438px;}
.x19{left:380.255850px;}
.x16{left:385.341000px;}
.x21{left:388.538384px;}
.x59{left:391.214550px;}
.x1e{left:392.301900px;}
.x18{left:393.963000px;}
.x1d{left:396.565598px;}
.x33{left:398.444700px;}
.x77{left:403.440750px;}
.x29{left:404.817330px;}
.x55{left:416.653780px;}
.x1a{left:425.050650px;}
.x2d{left:430.075763px;}
.x47{left:433.076962px;}
.x28{left:434.840183px;}
.x54{left:438.335261px;}
.x5b{left:444.766296px;}
.x27{left:449.250218px;}
.x6{left:455.041500px;}
.xa{left:457.118550px;}
.x6a{left:474.797100px;}
.xe{left:478.345350px;}
.x69{left:486.618450px;}
.xb{left:491.153550px;}
.x4b{left:497.112965px;}
.x26{left:502.020840px;}
.x7a{left:508.106550px;}
.x3c{left:510.338087px;}
.x10{left:512.365350px;}
.x51{left:517.605927px;}
.x4a{left:518.794447px;}
.x56{left:538.842900px;}
.x53{left:540.848091px;}
.xf{left:546.535350px;}
.x24{left:547.995158px;}
.x52{left:562.529573px;}
.x25{left:568.827818px;}
.x5c{left:579.395400px;}
.x2f{left:580.820610px;}
.x68{left:582.544950px;}
.x3d{left:591.608550px;}
.x79{left:596.110350px;}
.x43{left:612.895350px;}
.x30{left:615.269235px;}
.x36{left:627.059110px;}
.x3a{left:631.683301px;}
.x38{left:633.458158px;}
.x37{left:637.668058px;}
.x39{left:639.227700px;}
.x3b{left:657.727200px;}
.xd{left:663.492300px;}
.x23{left:665.027063px;}
.x22{left:668.915670px;}
.x2{left:704.338650px;}
.x66{left:713.176950px;}
.x7b{left:718.076550px;}
.x67{left:720.016950px;}
.xc{left:725.167350px;}
.x7c{left:740.282550px;}
.x3f{left:746.427300px;}
@media print{
.vc{vertical-align:-28.544000pt;}
.v4{vertical-align:-25.232459pt;}
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-1.957402pt;}
.v5{vertical-align:-0.996493pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.996493pt;}
.vb{vertical-align:2.347693pt;}
.v9{vertical-align:6.933929pt;}
.v8{vertical-align:8.594750pt;}
.v7{vertical-align:9.881887pt;}
.va{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.ls42{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-0.682667pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls67{letter-spacing:-0.320000pt;}
.ls5b{letter-spacing:-0.213333pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.106667pt;}
.ls8e{letter-spacing:-0.085333pt;}
.ls3b{letter-spacing:-0.053333pt;}
.ls8f{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.005867pt;}
.ls5f{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.053333pt;}
.ls69{letter-spacing:0.085333pt;}
.ls35{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.298667pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.341333pt;}
.ls4a{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.426667pt;}
.ls6b{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls90{letter-spacing:0.512000pt;}
.ls29{letter-spacing:0.533333pt;}
.ls61{letter-spacing:0.554667pt;}
.ls57{letter-spacing:0.586667pt;}
.ls51{letter-spacing:0.597333pt;}
.ls4c{letter-spacing:0.640000pt;}
.ls76{letter-spacing:0.682667pt;}
.ls34{letter-spacing:0.693333pt;}
.ls78{letter-spacing:0.725333pt;}
.ls36{letter-spacing:0.746667pt;}
.ls8d{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls52{letter-spacing:0.810667pt;}
.ls25{letter-spacing:0.853333pt;}
.ls6f{letter-spacing:0.896000pt;}
.ls22{letter-spacing:0.906667pt;}
.ls6e{letter-spacing:0.938667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls6a{letter-spacing:0.981333pt;}
.ls15{letter-spacing:1.013333pt;}
.ls83{letter-spacing:1.024000pt;}
.ls31{letter-spacing:1.066667pt;}
.ls7a{letter-spacing:1.109333pt;}
.ls24{letter-spacing:1.120000pt;}
.ls6d{letter-spacing:1.152000pt;}
.ls2e{letter-spacing:1.173333pt;}
.ls8b{letter-spacing:1.194667pt;}
.ls47{letter-spacing:1.226667pt;}
.ls88{letter-spacing:1.237333pt;}
.ls12{letter-spacing:1.280000pt;}
.ls60{letter-spacing:1.322667pt;}
.ls2f{letter-spacing:1.333333pt;}
.ls45{letter-spacing:1.337067pt;}
.ls93{letter-spacing:1.365333pt;}
.ls37{letter-spacing:1.386667pt;}
.ls7d{letter-spacing:1.408000pt;}
.ls41{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.450667pt;}
.ls39{letter-spacing:1.493333pt;}
.ls7c{letter-spacing:1.536000pt;}
.ls49{letter-spacing:1.546667pt;}
.ls4b{letter-spacing:1.600000pt;}
.ls6c{letter-spacing:1.621333pt;}
.ls32{letter-spacing:1.653333pt;}
.ls7e{letter-spacing:1.664000pt;}
.ls1d{letter-spacing:1.706667pt;}
.ls80{letter-spacing:1.749333pt;}
.ls3a{letter-spacing:1.760000pt;}
.ls85{letter-spacing:1.792000pt;}
.ls16{letter-spacing:1.813333pt;}
.ls70{letter-spacing:1.834667pt;}
.ls23{letter-spacing:1.866667pt;}
.ls10{letter-spacing:1.920000pt;}
.ls7b{letter-spacing:1.962667pt;}
.ls3e{letter-spacing:1.973333pt;}
.ls91{letter-spacing:2.005333pt;}
.lsf{letter-spacing:2.026667pt;}
.ls81{letter-spacing:2.048000pt;}
.ls19{letter-spacing:2.080000pt;}
.ls86{letter-spacing:2.090667pt;}
.ls33{letter-spacing:2.133333pt;}
.ls46{letter-spacing:2.186667pt;}
.ls44{letter-spacing:2.240000pt;}
.ls4f{letter-spacing:2.293333pt;}
.ls77{letter-spacing:2.304000pt;}
.ls54{letter-spacing:2.346667pt;}
.ls72{letter-spacing:2.389333pt;}
.ls4d{letter-spacing:2.400000pt;}
.ls21{letter-spacing:2.453333pt;}
.ls7f{letter-spacing:2.474667pt;}
.ls56{letter-spacing:2.506667pt;}
.ls8a{letter-spacing:2.517333pt;}
.ls5c{letter-spacing:2.560000pt;}
.ls18{letter-spacing:2.613333pt;}
.ls79{letter-spacing:2.645333pt;}
.ls28{letter-spacing:2.666667pt;}
.ls74{letter-spacing:2.688000pt;}
.ls5d{letter-spacing:2.720000pt;}
.ls71{letter-spacing:2.730667pt;}
.ls2c{letter-spacing:2.773333pt;}
.ls13{letter-spacing:2.826667pt;}
.ls94{letter-spacing:2.858667pt;}
.ls50{letter-spacing:2.880000pt;}
.ls75{letter-spacing:2.901333pt;}
.ls1f{letter-spacing:2.933333pt;}
.ls84{letter-spacing:2.944000pt;}
.ls64{letter-spacing:2.986667pt;}
.ls8c{letter-spacing:3.029333pt;}
.ls1b{letter-spacing:3.040000pt;}
.ls48{letter-spacing:3.093333pt;}
.ls59{letter-spacing:3.146667pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls63{letter-spacing:3.466667pt;}
.ls89{letter-spacing:3.498667pt;}
.ls40{letter-spacing:3.520000pt;}
.ls66{letter-spacing:3.573333pt;}
.ls5a{letter-spacing:3.626667pt;}
.ls87{letter-spacing:3.669333pt;}
.ls3f{letter-spacing:3.680000pt;}
.ls5e{letter-spacing:3.733333pt;}
.lse{letter-spacing:3.840000pt;}
.ls82{letter-spacing:3.882667pt;}
.ls43{letter-spacing:3.946667pt;}
.ls53{letter-spacing:4.053333pt;}
.ls2d{letter-spacing:4.266667pt;}
.ls62{letter-spacing:4.320000pt;}
.ls73{letter-spacing:4.352000pt;}
.ls27{letter-spacing:4.373333pt;}
.ls92{letter-spacing:4.394667pt;}
.ls2b{letter-spacing:4.426667pt;}
.ls30{letter-spacing:4.533333pt;}
.ls55{letter-spacing:4.960000pt;}
.ls26{letter-spacing:5.013333pt;}
.ls4e{letter-spacing:5.280000pt;}
.ls65{letter-spacing:5.493333pt;}
.ls58{letter-spacing:5.973333pt;}
.ws79{word-spacing:-18.560000pt;}
.ws97{word-spacing:-18.293333pt;}
.ws95{word-spacing:-18.026667pt;}
.ws12{word-spacing:-17.493333pt;}
.ws49{word-spacing:-16.645157pt;}
.ws11{word-spacing:-16.533333pt;}
.ws5a{word-spacing:-16.320000pt;}
.ws1{word-spacing:-16.309333pt;}
.wsa3{word-spacing:-16.213333pt;}
.ws96{word-spacing:-16.053333pt;}
.ws6d{word-spacing:-15.626667pt;}
.ws5c{word-spacing:-15.471182pt;}
.wsb9{word-spacing:-15.360000pt;}
.ws98{word-spacing:-15.040000pt;}
.ws59{word-spacing:-14.986667pt;}
.ws14{word-spacing:-14.826667pt;}
.wsb6{word-spacing:-14.762667pt;}
.ws13{word-spacing:-14.720000pt;}
.wsd2{word-spacing:-13.781333pt;}
.wsb8{word-spacing:-13.013333pt;}
.wsa2{word-spacing:-12.714667pt;}
.wsb7{word-spacing:-12.672000pt;}
.ws15{word-spacing:-12.602667pt;}
.wsd3{word-spacing:-12.330667pt;}
.wsd4{word-spacing:-12.245333pt;}
.wsa1{word-spacing:-12.202667pt;}
.wsa4{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.989333pt;}
.wsa0{word-spacing:-11.946667pt;}
.wsd1{word-spacing:-11.904000pt;}
.ws7a{word-spacing:-11.861333pt;}
.ws41{word-spacing:-11.542708pt;}
.ws0{word-spacing:-9.785600pt;}
.wsa9{word-spacing:-5.280000pt;}
.ws61{word-spacing:-4.960000pt;}
.ws99{word-spacing:-4.320000pt;}
.ws3e{word-spacing:-4.003776pt;}
.ws5d{word-spacing:-3.680000pt;}
.ws5{word-spacing:-3.226667pt;}
.ws1f{word-spacing:-3.200000pt;}
.ws84{word-spacing:-3.093333pt;}
.wsce{word-spacing:-3.029333pt;}
.ws22{word-spacing:-2.933333pt;}
.wsba{word-spacing:-2.901333pt;}
.wsde{word-spacing:-2.858667pt;}
.ws1a{word-spacing:-2.826667pt;}
.wsdf{word-spacing:-2.773333pt;}
.wsb3{word-spacing:-2.730667pt;}
.ws88{word-spacing:-2.720000pt;}
.wsbf{word-spacing:-2.645333pt;}
.ws83{word-spacing:-2.560000pt;}
.ws71{word-spacing:-2.506667pt;}
.ws53{word-spacing:-2.453333pt;}
.ws54{word-spacing:-2.400000pt;}
.wsb5{word-spacing:-2.389333pt;}
.ws4{word-spacing:-2.368000pt;}
.ws93{word-spacing:-2.346667pt;}
.wsbb{word-spacing:-2.304000pt;}
.wsab{word-spacing:-2.293333pt;}
.ws73{word-spacing:-2.240000pt;}
.ws2f{word-spacing:-2.133333pt;}
.ws66{word-spacing:-2.026667pt;}
.ws4b{word-spacing:-1.973333pt;}
.ws18{word-spacing:-1.920000pt;}
.ws82{word-spacing:-1.866667pt;}
.wsc7{word-spacing:-1.834667pt;}
.ws30{word-spacing:-1.813333pt;}
.ws4a{word-spacing:-1.760000pt;}
.ws20{word-spacing:-1.706667pt;}
.wsc4{word-spacing:-1.664000pt;}
.ws2e{word-spacing:-1.653333pt;}
.ws87{word-spacing:-1.600000pt;}
.ws94{word-spacing:-1.578667pt;}
.ws50{word-spacing:-1.546667pt;}
.wsc2{word-spacing:-1.536000pt;}
.ws36{word-spacing:-1.493333pt;}
.wsac{word-spacing:-1.450667pt;}
.ws6a{word-spacing:-1.440000pt;}
.ws85{word-spacing:-1.386667pt;}
.ws3c{word-spacing:-1.333333pt;}
.ws8c{word-spacing:-1.322667pt;}
.ws1b{word-spacing:-1.280000pt;}
.wsc9{word-spacing:-1.237333pt;}
.ws9f{word-spacing:-1.226667pt;}
.ws2c{word-spacing:-1.173333pt;}
.wscf{word-spacing:-1.152000pt;}
.ws26{word-spacing:-1.120000pt;}
.wsc0{word-spacing:-1.109333pt;}
.ws6b{word-spacing:-1.066667pt;}
.ws6{word-spacing:-1.056000pt;}
.ws2d{word-spacing:-1.013333pt;}
.wsbe{word-spacing:-0.981333pt;}
.ws19{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.906667pt;}
.wsb0{word-spacing:-0.853333pt;}
.ws58{word-spacing:-0.810667pt;}
.ws37{word-spacing:-0.800000pt;}
.wsc5{word-spacing:-0.768000pt;}
.ws74{word-spacing:-0.746667pt;}
.wsbd{word-spacing:-0.725333pt;}
.ws62{word-spacing:-0.693333pt;}
.wsd7{word-spacing:-0.640000pt;}
.ws57{word-spacing:-0.597333pt;}
.ws72{word-spacing:-0.586667pt;}
.ws90{word-spacing:-0.554667pt;}
.ws27{word-spacing:-0.533333pt;}
.wsd5{word-spacing:-0.512000pt;}
.ws52{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.426667pt;}
.wsd9{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.373333pt;}
.wsaf{word-spacing:-0.341333pt;}
.ws8e{word-spacing:-0.298667pt;}
.ws5e{word-spacing:-0.266667pt;}
.wsc6{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.213333pt;}
.wsb4{word-spacing:-0.170667pt;}
.wsa8{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.106667pt;}
.wsad{word-spacing:-0.085333pt;}
.ws34{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws21{word-spacing:0.053333pt;}
.wsdd{word-spacing:0.085333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws1c{word-spacing:0.213333pt;}
.ws60{word-spacing:0.266667pt;}
.ws10{word-spacing:0.341333pt;}
.wsa6{word-spacing:0.373333pt;}
.wse1{word-spacing:0.384000pt;}
.wsbc{word-spacing:0.426667pt;}
.ws3a{word-spacing:0.533333pt;}
.ws7{word-spacing:0.554667pt;}
.ws77{word-spacing:0.586667pt;}
.ws6c{word-spacing:0.597333pt;}
.wsc3{word-spacing:0.640000pt;}
.wsd0{word-spacing:0.682667pt;}
.ws9c{word-spacing:0.693333pt;}
.ws38{word-spacing:0.746667pt;}
.ws29{word-spacing:0.800000pt;}
.ws39{word-spacing:0.853333pt;}
.wsae{word-spacing:0.938667pt;}
.ws81{word-spacing:1.013333pt;}
.ws4d{word-spacing:1.066667pt;}
.wscd{word-spacing:1.109333pt;}
.wse2{word-spacing:1.194667pt;}
.wsb2{word-spacing:1.237333pt;}
.wse{word-spacing:1.322667pt;}
.wsda{word-spacing:1.408000pt;}
.ws28{word-spacing:1.440000pt;}
.ws8f{word-spacing:1.450667pt;}
.wsc8{word-spacing:1.536000pt;}
.ws9a{word-spacing:1.546667pt;}
.ws75{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.653333pt;}
.ws63{word-spacing:1.706667pt;}
.ws8a{word-spacing:1.760000pt;}
.wsdc{word-spacing:1.792000pt;}
.ws86{word-spacing:1.813333pt;}
.wsf{word-spacing:1.834667pt;}
.ws65{word-spacing:1.866667pt;}
.wsd8{word-spacing:1.920000pt;}
.ws56{word-spacing:1.973333pt;}
.ws33{word-spacing:2.026667pt;}
.ws92{word-spacing:2.048000pt;}
.wsd6{word-spacing:2.133333pt;}
.wsb1{word-spacing:2.176000pt;}
.ws5f{word-spacing:2.293333pt;}
.ws64{word-spacing:2.346667pt;}
.wsc{word-spacing:2.389333pt;}
.wsc1{word-spacing:2.432000pt;}
.ws7e{word-spacing:2.453333pt;}
.wsaa{word-spacing:2.506667pt;}
.wsb{word-spacing:2.517333pt;}
.ws8d{word-spacing:2.645333pt;}
.ws1e{word-spacing:2.720000pt;}
.ws2a{word-spacing:2.773333pt;}
.wsdb{word-spacing:2.816000pt;}
.wsa7{word-spacing:2.880000pt;}
.ws91{word-spacing:2.944000pt;}
.wscb{word-spacing:3.029333pt;}
.ws80{word-spacing:3.093333pt;}
.wscc{word-spacing:3.114667pt;}
.ws31{word-spacing:3.200000pt;}
.ws68{word-spacing:3.253333pt;}
.wsd{word-spacing:3.370667pt;}
.ws4f{word-spacing:3.413333pt;}
.wsca{word-spacing:3.456000pt;}
.ws78{word-spacing:3.466667pt;}
.ws35{word-spacing:3.573333pt;}
.ws9b{word-spacing:3.626667pt;}
.ws89{word-spacing:3.680000pt;}
.wse0{word-spacing:3.754667pt;}
.ws55{word-spacing:3.786667pt;}
.ws4e{word-spacing:3.840000pt;}
.ws8{word-spacing:3.882667pt;}
.wsa{word-spacing:3.925333pt;}
.ws7f{word-spacing:3.946667pt;}
.wsa5{word-spacing:4.000000pt;}
.ws24{word-spacing:4.160000pt;}
.ws9d{word-spacing:4.213333pt;}
.ws3b{word-spacing:4.373333pt;}
.ws76{word-spacing:4.426667pt;}
.ws8b{word-spacing:4.586667pt;}
.ws67{word-spacing:4.640000pt;}
.ws69{word-spacing:4.746667pt;}
.ws9e{word-spacing:4.800000pt;}
.ws17{word-spacing:4.853333pt;}
.ws16{word-spacing:4.906667pt;}
.ws43{word-spacing:9.259079pt;}
.ws44{word-spacing:12.622242pt;}
.ws40{word-spacing:19.716195pt;}
.ws7d{word-spacing:51.925333pt;}
.ws7b{word-spacing:59.477333pt;}
.ws47{word-spacing:67.304785pt;}
.ws3f{word-spacing:75.377078pt;}
.ws48{word-spacing:85.668946pt;}
.ws42{word-spacing:89.601311pt;}
.ws7c{word-spacing:101.248000pt;}
.ws70{word-spacing:112.768000pt;}
.ws6e{word-spacing:113.450667pt;}
.ws45{word-spacing:137.017760pt;}
.ws46{word-spacing:173.472788pt;}
.ws5b{word-spacing:246.620414pt;}
.ws3d{word-spacing:276.510074pt;}
.ws6f{word-spacing:1979.946667pt;}
._c{margin-left:-2575.850667pt;}
._1a{margin-left:-2554.680000pt;}
._16{margin-left:-1012.659467pt;}
._d{margin-left:-594.764898pt;}
._2a{margin-left:-591.573333pt;}
._1d{margin-left:-546.232391pt;}
._18{margin-left:-459.610725pt;}
._17{margin-left:-436.950741pt;}
._19{margin-left:-417.168088pt;}
._13{margin-left:-230.397439pt;}
._3{margin-left:-7.534400pt;}
._6{margin-left:-6.545600pt;}
._1{margin-left:-4.778667pt;}
._7{margin-left:-3.616000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.032533pt;}
._5{width:1.155200pt;}
._8{width:2.064533pt;}
._4{width:3.054400pt;}
._9{width:4.540267pt;}
._b{width:5.987733pt;}
._a{width:7.558933pt;}
._1b{width:8.533333pt;}
._1c{width:9.973333pt;}
._12{width:35.090557pt;}
._10{width:42.137139pt;}
._11{width:45.375720pt;}
._24{width:69.461333pt;}
._26{width:70.400000pt;}
._29{width:73.216000pt;}
._27{width:75.093333pt;}
._23{width:77.909333pt;}
._28{width:92.288000pt;}
._25{width:95.146667pt;}
._2c{width:132.053333pt;}
._22{width:136.789333pt;}
._15{width:143.508058pt;}
._14{width:186.842400pt;}
._1f{width:270.009445pt;}
._f{width:315.740080pt;}
._20{width:465.995784pt;}
._2b{width:575.445333pt;}
._1e{width:672.977705pt;}
._21{width:694.251691pt;}
._e{width:738.664138pt;}
.fs5{font-size:25.600000pt;}
.fsd{font-size:29.657600pt;}
.fs14{font-size:32.000000pt;}
.fse{font-size:32.623467pt;}
.fs1a{font-size:33.905600pt;}
.fs4{font-size:35.200000pt;}
.fsc{font-size:35.588800pt;}
.fs0{font-size:37.333333pt;}
.fsf{font-size:41.520533pt;}
.fs6{font-size:42.666667pt;}
.fs17{font-size:42.685333pt;}
.fs10{font-size:43.452800pt;}
.fs11{font-size:43.831467pt;}
.fs12{font-size:43.908267pt;}
.fs7{font-size:45.333333pt;}
.fs15{font-size:47.531733pt;}
.fs19{font-size:47.701333pt;}
.fs13{font-size:47.899733pt;}
.fs16{font-size:50.516267pt;}
.fs8{font-size:53.333333pt;}
.fs18{font-size:55.651733pt;}
.fs9{font-size:55.883200pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:59.874667pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:67.858133pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:44.904000pt;}
.y126{bottom:70.839733pt;}
.y20b{bottom:71.056267pt;}
.y1{bottom:73.250400pt;}
.y8c{bottom:73.599733pt;}
.yfa{bottom:73.711467pt;}
.y196{bottom:73.981200pt;}
.y79{bottom:74.101200pt;}
.y66{bottom:74.104533pt;}
.y30{bottom:74.216800pt;}
.ye3{bottom:74.834933pt;}
.y120{bottom:74.845333pt;}
.y14f{bottom:75.476267pt;}
.y1ca{bottom:84.263733pt;}
.y20a{bottom:84.389600pt;}
.y8b{bottom:87.594400pt;}
.yf9{bottom:87.706133pt;}
.ye2{bottom:88.829600pt;}
.y11f{bottom:88.840000pt;}
.y14e{bottom:89.470933pt;}
.y78{bottom:90.101200pt;}
.y65{bottom:90.104533pt;}
.y1c9{bottom:97.597067pt;}
.y209{bottom:97.722933pt;}
.y8a{bottom:101.589067pt;}
.ye1{bottom:102.824267pt;}
.y14d{bottom:103.465600pt;}
.y195{bottom:105.981200pt;}
.y77{bottom:106.101200pt;}
.y64{bottom:106.104533pt;}
.y2d{bottom:108.011733pt;}
.y125{bottom:110.102667pt;}
.y1c8{bottom:110.930400pt;}
.y208{bottom:111.056267pt;}
.y101{bottom:112.306280pt;}
.y132{bottom:113.561467pt;}
.y124{bottom:113.565200pt;}
.y14c{bottom:117.460267pt;}
.yb5{bottom:121.889333pt;}
.y194{bottom:121.981200pt;}
.y76{bottom:122.101200pt;}
.y63{bottom:122.104533pt;}
.y1c7{bottom:124.263733pt;}
.y207{bottom:124.389600pt;}
.y93{bottom:126.411921pt;}
.y15d{bottom:127.156800pt;}
.y14b{bottom:131.454933pt;}
.y127{bottom:133.599333pt;}
.y102{bottom:136.447733pt;}
.y1c6{bottom:137.597067pt;}
.y206{bottom:137.722933pt;}
.y75{bottom:138.101200pt;}
.y62{bottom:138.104533pt;}
.ye6{bottom:141.973772pt;}
.y14a{bottom:145.449600pt;}
.y128{bottom:146.854533pt;}
.y133{bottom:147.091467pt;}
.y106{bottom:150.523222pt;}
.y1c5{bottom:150.930400pt;}
.y205{bottom:151.056267pt;}
.y100{bottom:151.986807pt;}
.y193{bottom:153.981200pt;}
.y74{bottom:154.101200pt;}
.y61{bottom:154.104533pt;}
.y2c{bottom:156.834267pt;}
.y97{bottom:156.971200pt;}
.y149{bottom:159.444267pt;}
.y9e{bottom:159.944837pt;}
.y104{bottom:161.952220pt;}
.y9d{bottom:162.907605pt;}
.y1c4{bottom:164.263733pt;}
.y204{bottom:164.389600pt;}
.ycc{bottom:168.453067pt;}
.y92{bottom:169.414044pt;}
.y192{bottom:169.981200pt;}
.y73{bottom:170.101200pt;}
.y60{bottom:170.104533pt;}
.y129{bottom:172.027867pt;}
.y148{bottom:173.438933pt;}
.y105{bottom:176.497247pt;}
.y134{bottom:177.342133pt;}
.y1c3{bottom:177.597067pt;}
.y203{bottom:177.722933pt;}
.y9b{bottom:181.458267pt;}
.y99{bottom:185.174400pt;}
.y191{bottom:185.981200pt;}
.y2b{bottom:186.039600pt;}
.y72{bottom:186.101200pt;}
.y5f{bottom:186.104533pt;}
.y147{bottom:187.433600pt;}
.y117{bottom:187.438973pt;}
.y12e{bottom:187.781333pt;}
.y138{bottom:188.018133pt;}
.y9f{bottom:189.596267pt;}
.y1c2{bottom:190.930400pt;}
.y202{bottom:191.056267pt;}
.y9c{bottom:197.028367pt;}
.y12a{bottom:197.211867pt;}
.y9a{bottom:197.505067pt;}
.y2a{bottom:199.372933pt;}
.y146{bottom:201.428267pt;}
.y190{bottom:201.981200pt;}
.y71{bottom:202.101200pt;}
.y5e{bottom:202.104533pt;}
.y116{bottom:204.106667pt;}
.y1c1{bottom:204.263733pt;}
.y201{bottom:204.389600pt;}
.y98{bottom:205.473867pt;}
.ya0{bottom:205.477911pt;}
.y135{bottom:207.528800pt;}
.yfb{bottom:208.148267pt;}
.y29{bottom:212.706267pt;}
.y96{bottom:213.411066pt;}
.y145{bottom:215.422933pt;}
.y1c0{bottom:217.597067pt;}
.y200{bottom:217.722933pt;}
.y18f{bottom:217.981200pt;}
.y70{bottom:218.101200pt;}
.y5d{bottom:218.104533pt;}
.ya1{bottom:221.330667pt;}
.y103{bottom:221.775715pt;}
.y12b{bottom:222.406533pt;}
.y28{bottom:226.039600pt;}
.y144{bottom:229.417600pt;}
.y8d{bottom:229.656133pt;}
.y1bf{bottom:230.930400pt;}
.y1ff{bottom:231.056267pt;}
.y18e{bottom:233.981200pt;}
.y6f{bottom:234.101200pt;}
.y5c{bottom:234.104533pt;}
.y136{bottom:237.790133pt;}
.y27{bottom:239.372933pt;}
.ya2{bottom:242.488208pt;}
.y143{bottom:243.412267pt;}
.y1be{bottom:244.263733pt;}
.y1fe{bottom:244.389600pt;}
.y11a{bottom:247.112533pt;}
.y12c{bottom:247.590533pt;}
.y18d{bottom:249.981200pt;}
.y6e{bottom:250.101200pt;}
.y5b{bottom:250.104533pt;}
.y26{bottom:252.706267pt;}
.y142{bottom:257.406933pt;}
.y1bd{bottom:257.597067pt;}
.y1fd{bottom:257.722933pt;}
.y131{bottom:258.052133pt;}
.y123{bottom:258.055867pt;}
.yff{bottom:261.304008pt;}
.y18c{bottom:265.981200pt;}
.y25{bottom:266.039600pt;}
.y6d{bottom:266.101200pt;}
.y5a{bottom:266.104533pt;}
.y137{bottom:267.955467pt;}
.y130{bottom:270.852133pt;}
.y122{bottom:270.855867pt;}
.y1bc{bottom:270.930400pt;}
.y1fc{bottom:271.056267pt;}
.y12d{bottom:272.774533pt;}
.y94{bottom:275.110533pt;}
.y10f{bottom:278.109683pt;}
.y15c{bottom:278.277333pt;}
.y24{bottom:279.372933pt;}
.y15b{bottom:281.741600pt;}
.y18b{bottom:281.981200pt;}
.y6c{bottom:282.101200pt;}
.y59{bottom:282.104533pt;}
.y121{bottom:283.655867pt;}
.y1bb{bottom:284.263733pt;}
.y1fb{bottom:284.389600pt;}
.y10e{bottom:290.328360pt;}
.y115{bottom:290.648500pt;}
.y139{bottom:290.787467pt;}
.y12f{bottom:290.788133pt;}
.ye4{bottom:291.435200pt;}
.y91{bottom:292.496792pt;}
.y23{bottom:292.706267pt;}
.y152{bottom:297.128133pt;}
.y1ba{bottom:297.597067pt;}
.y1fa{bottom:297.722933pt;}
.y18a{bottom:297.981200pt;}
.y6b{bottom:298.101200pt;}
.y58{bottom:298.104533pt;}
.y10d{bottom:303.133960pt;}
.y114{bottom:303.454100pt;}
.y22{bottom:306.039600pt;}
.y154{bottom:306.688000pt;}
.y1b9{bottom:310.930400pt;}
.y1f9{bottom:311.056267pt;}
.y6a{bottom:314.101200pt;}
.y57{bottom:314.104533pt;}
.yfd{bottom:316.960305pt;}
.y21{bottom:319.372933pt;}
.y1b8{bottom:324.263733pt;}
.y1f8{bottom:324.389600pt;}
.y161{bottom:325.652133pt;}
.ye5{bottom:326.812800pt;}
.y189{bottom:329.981200pt;}
.y69{bottom:330.101200pt;}
.y56{bottom:330.104533pt;}
.y20{bottom:332.706267pt;}
.y1b7{bottom:337.597067pt;}
.y1f7{bottom:337.722933pt;}
.y10c{bottom:339.331123pt;}
.y111{bottom:340.771753pt;}
.yae{bottom:341.465632pt;}
.yb3{bottom:341.963879pt;}
.y113{bottom:341.977613pt;}
.y155{bottom:345.546667pt;}
.y188{bottom:345.981200pt;}
.y1f{bottom:346.039600pt;}
.y68{bottom:346.101200pt;}
.y55{bottom:346.104533pt;}
.y1b6{bottom:350.930400pt;}
.y1f6{bottom:351.056267pt;}
.y10b{bottom:352.136723pt;}
.y8f{bottom:352.375641pt;}
.y110{bottom:353.577353pt;}
.y112{bottom:354.783213pt;}
.y1e{bottom:359.372933pt;}
.y187{bottom:361.981200pt;}
.y141{bottom:362.101200pt;}
.y54{bottom:362.104533pt;}
.yb2{bottom:362.859087pt;}
.ya3{bottom:363.357333pt;}
.y164{bottom:363.444133pt;}
.y1b5{bottom:364.263733pt;}
.y1f5{bottom:364.389600pt;}
.yb4{bottom:365.609822pt;}
.yfe{bottom:371.618906pt;}
.y1d{bottom:372.706267pt;}
.y1b4{bottom:377.597067pt;}
.y1f4{bottom:377.722933pt;}
.y186{bottom:377.981200pt;}
.y140{bottom:378.101200pt;}
.y53{bottom:378.104533pt;}
.yb1{bottom:383.006926pt;}
.yaf{bottom:383.162628pt;}
.y156{bottom:383.264000pt;}
.yb0{bottom:383.826956pt;}
.ya4{bottom:385.103713pt;}
.y1c{bottom:386.039600pt;}
.y10a{bottom:386.807885pt;}
.y119{bottom:387.771300pt;}
.y108{bottom:388.440599pt;}
.y1b3{bottom:390.930400pt;}
.y1f3{bottom:391.056267pt;}
.y185{bottom:393.981200pt;}
.y13f{bottom:394.101200pt;}
.y52{bottom:394.104533pt;}
.y1b{bottom:399.372933pt;}
.y109{bottom:399.613485pt;}
.y167{bottom:399.828133pt;}
.y107{bottom:401.246199pt;}
.ya6{bottom:401.431662pt;}
.ya8{bottom:402.531957pt;}
.ya9{bottom:402.687659pt;}
.yab{bottom:403.673771pt;}
.y1b2{bottom:404.263733pt;}
.y1f2{bottom:404.389600pt;}
.y118{bottom:404.438994pt;}
.y184{bottom:409.981200pt;}
.y13e{bottom:410.101200pt;}
.y51{bottom:410.104533pt;}
.y1a{bottom:412.706267pt;}
.y90{bottom:415.244241pt;}
.y1b1{bottom:417.597067pt;}
.y1f1{bottom:417.722933pt;}
.y157{bottom:420.277333pt;}
.yfc{bottom:423.322305pt;}
.ya5{bottom:423.634768pt;}
.yad{bottom:424.153774pt;}
.ya7{bottom:425.762695pt;}
.y183{bottom:425.981200pt;}
.y19{bottom:426.039600pt;}
.y13d{bottom:426.101200pt;}
.y50{bottom:426.104533pt;}
.yac{bottom:426.167520pt;}
.yaa{bottom:426.416643pt;}
.y159{bottom:428.344267pt;}
.y150{bottom:429.638533pt;}
.y1b0{bottom:430.930400pt;}
.y1f0{bottom:431.056267pt;}
.y18{bottom:439.372933pt;}
.y11c{bottom:439.869056pt;}
.y11e{bottom:439.884192pt;}
.y13c{bottom:442.101200pt;}
.y4f{bottom:442.104533pt;}
.y1af{bottom:444.263733pt;}
.y1ef{bottom:444.389600pt;}
.y95{bottom:447.725200pt;}
.y153{bottom:448.989467pt;}
.ye7{bottom:452.187200pt;}
.y1ae{bottom:457.597067pt;}
.y1ee{bottom:457.722933pt;}
.y182{bottom:457.981200pt;}
.y13b{bottom:458.101200pt;}
.y4e{bottom:458.104533pt;}
.y11b{bottom:459.033067pt;}
.y11d{bottom:459.036277pt;}
.y15f{bottom:459.433467pt;}
.yce{bottom:461.099414pt;}
.y1ad{bottom:470.930400pt;}
.y1ed{bottom:471.056267pt;}
.y8e{bottom:472.231134pt;}
.y181{bottom:473.981200pt;}
.y13a{bottom:474.101200pt;}
.y4d{bottom:474.104533pt;}
.y160{bottom:479.390800pt;}
.y17{bottom:482.700933pt;}
.y1ac{bottom:484.263733pt;}
.y1ec{bottom:484.389600pt;}
.y180{bottom:489.981200pt;}
.ye0{bottom:490.101200pt;}
.y4c{bottom:490.104533pt;}
.y16{bottom:495.500933pt;}
.y17d{bottom:495.856800pt;}
.y1ab{bottom:497.597067pt;}
.y1eb{bottom:497.722933pt;}
.yb9{bottom:498.834358pt;}
.y162{bottom:500.756133pt;}
.yf8{bottom:505.981200pt;}
.ydf{bottom:506.101200pt;}
.y4b{bottom:506.104533pt;}
.y16f{bottom:507.790800pt;}
.y15{bottom:508.300933pt;}
.y17e{bottom:508.783467pt;}
.y1aa{bottom:510.930400pt;}
.y1ea{bottom:511.056267pt;}
.ybf{bottom:520.556419pt;}
.yf7{bottom:521.981200pt;}
.yde{bottom:522.101200pt;}
.y4a{bottom:522.104533pt;}
.y17f{bottom:522.652800pt;}
.y163{bottom:522.825467pt;}
.yca{bottom:523.294718pt;}
.y1a9{bottom:524.263733pt;}
.y1e9{bottom:524.389600pt;}
.yc5{bottom:527.467844pt;}
.y14{bottom:532.439600pt;}
.yc9{bottom:532.491467pt;}
.ycb{bottom:535.006203pt;}
.ybe{bottom:535.525086pt;}
.y17c{bottom:536.055467pt;}
.y1a8{bottom:537.597067pt;}
.y1e8{bottom:537.722933pt;}
.yf6{bottom:537.981200pt;}
.ydd{bottom:538.101200pt;}
.y49{bottom:538.104533pt;}
.yc4{bottom:539.269467pt;}
.y165{bottom:543.486800pt;}
.y17b{bottom:549.691467pt;}
.y1a7{bottom:550.930400pt;}
.y1e7{bottom:551.056267pt;}
.yf5{bottom:553.981200pt;}
.ydc{bottom:554.101200pt;}
.y48{bottom:554.104533pt;}
.y1a6{bottom:564.263733pt;}
.y1e6{bottom:564.389600pt;}
.y166{bottom:564.852133pt;}
.y13{bottom:566.766667pt;}
.yf4{bottom:569.981200pt;}
.ydb{bottom:570.101200pt;}
.y47{bottom:570.104533pt;}
.yb7{bottom:573.899467pt;}
.y15a{bottom:577.154933pt;}
.y1a5{bottom:577.597067pt;}
.y1e5{bottom:577.722933pt;}
.y151{bottom:578.235867pt;}
.yc3{bottom:578.844267pt;}
.y12{bottom:581.433333pt;}
.yf3{bottom:585.981200pt;}
.yda{bottom:586.101200pt;}
.y46{bottom:586.104533pt;}
.y168{bottom:586.217467pt;}
.y1a4{bottom:590.930400pt;}
.y1e4{bottom:591.056267pt;}
.y11{bottom:596.100000pt;}
.yf2{bottom:601.981200pt;}
.yd9{bottom:602.101200pt;}
.y45{bottom:602.104533pt;}
.yc2{bottom:603.842081pt;}
.y1a3{bottom:604.263733pt;}
.y1e3{bottom:604.389600pt;}
.y10{bottom:610.766667pt;}
.yb6{bottom:615.412667pt;}
.y1a2{bottom:617.597067pt;}
.y1e2{bottom:617.722933pt;}
.yf1{bottom:617.981200pt;}
.yd8{bottom:618.101200pt;}
.y44{bottom:618.104533pt;}
.yc7{bottom:618.452994pt;}
.yc1{bottom:618.810747pt;}
.y170{bottom:620.831200pt;}
.yf{bottom:621.772933pt;}
.y16d{bottom:623.102933pt;}
.y171{bottom:628.951200pt;}
.y1a1{bottom:630.930400pt;}
.y1e1{bottom:631.056267pt;}
.yc0{bottom:633.779414pt;}
.yf0{bottom:633.981200pt;}
.yd7{bottom:634.101200pt;}
.y43{bottom:634.104533pt;}
.y172{bottom:636.371200pt;}
.ye{bottom:640.100000pt;}
.y17a{bottom:643.787733pt;}
.y1a0{bottom:644.263733pt;}
.y1e0{bottom:644.389600pt;}
.y173{bottom:645.200533pt;}
.yb8{bottom:649.663115pt;}
.yef{bottom:649.981200pt;}
.yd6{bottom:650.101200pt;}
.y42{bottom:650.104533pt;}
.yd{bottom:651.106267pt;}
.ybd{bottom:652.385467pt;}
.y169{bottom:655.070933pt;}
.y174{bottom:656.148533pt;}
.y19f{bottom:657.597067pt;}
.y1df{bottom:657.722933pt;}
.y15e{bottom:662.458133pt;}
.yc6{bottom:665.358000pt;}
.yee{bottom:665.981200pt;}
.yd5{bottom:666.101200pt;}
.y41{bottom:666.104533pt;}
.ybc{bottom:667.354133pt;}
.yc{bottom:669.433333pt;}
.y19e{bottom:670.930400pt;}
.y1de{bottom:671.056267pt;}
.yb{bottom:680.439600pt;}
.yed{bottom:681.981200pt;}
.yd4{bottom:682.101200pt;}
.y40{bottom:682.104533pt;}
.ybb{bottom:682.322800pt;}
.y19d{bottom:684.263733pt;}
.y1dd{bottom:684.389600pt;}
.y16c{bottom:688.436267pt;}
.yc8{bottom:690.232033pt;}
.y19c{bottom:697.597067pt;}
.y1dc{bottom:697.722933pt;}
.yec{bottom:697.981200pt;}
.yd3{bottom:698.101200pt;}
.y3f{bottom:698.104533pt;}
.ya{bottom:698.766667pt;}
.y179{bottom:699.414400pt;}
.y9{bottom:709.772933pt;}
.y19b{bottom:710.930400pt;}
.y1db{bottom:711.056267pt;}
.ycd{bottom:713.803245pt;}
.yeb{bottom:713.981200pt;}
.yd2{bottom:714.101200pt;}
.y3e{bottom:714.104533pt;}
.y16a{bottom:720.222933pt;}
.y175{bottom:720.428933pt;}
.yba{bottom:722.870107pt;}
.y19a{bottom:724.263733pt;}
.y1da{bottom:724.389600pt;}
.y8{bottom:728.100000pt;}
.yea{bottom:729.981200pt;}
.yd1{bottom:730.101200pt;}
.y3d{bottom:730.104533pt;}
.y176{bottom:735.966175pt;}
.y199{bottom:737.597067pt;}
.y1d9{bottom:737.722933pt;}
.y7{bottom:741.672267pt;}
.ye9{bottom:745.981200pt;}
.yd0{bottom:746.101200pt;}
.y3c{bottom:746.104533pt;}
.y198{bottom:750.930400pt;}
.y1d8{bottom:751.056267pt;}
.y177{bottom:753.274983pt;}
.y16b{bottom:753.598933pt;}
.ye8{bottom:761.981200pt;}
.ycf{bottom:762.101200pt;}
.y3b{bottom:762.104533pt;}
.y6{bottom:762.338933pt;}
.y197{bottom:764.263733pt;}
.y1d7{bottom:764.389600pt;}
.y158{bottom:765.030533pt;}
.y178{bottom:767.755733pt;}
.y1d6{bottom:777.722933pt;}
.y89{bottom:777.981200pt;}
.y84{bottom:778.101200pt;}
.y3a{bottom:778.104533pt;}
.y5{bottom:783.004267pt;}
.y16e{bottom:784.916267pt;}
.y1d5{bottom:791.056267pt;}
.y88{bottom:793.981200pt;}
.y83{bottom:794.101200pt;}
.y39{bottom:794.104533pt;}
.y1d4{bottom:804.389600pt;}
.y4{bottom:807.350400pt;}
.y87{bottom:809.981200pt;}
.y82{bottom:810.101200pt;}
.y38{bottom:810.104533pt;}
.y1d3{bottom:817.722933pt;}
.y86{bottom:825.981200pt;}
.y81{bottom:826.101200pt;}
.y37{bottom:826.104533pt;}
.y1d2{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y80{bottom:842.101200pt;}
.y36{bottom:842.104533pt;}
.y1d1{bottom:844.389600pt;}
.y1d0{bottom:857.722933pt;}
.y85{bottom:857.981200pt;}
.y7f{bottom:858.101200pt;}
.y35{bottom:858.104533pt;}
.y1cf{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y7e{bottom:874.101200pt;}
.y34{bottom:874.104533pt;}
.y1ce{bottom:884.389600pt;}
.y7d{bottom:890.101200pt;}
.y33{bottom:890.104533pt;}
.y1cd{bottom:897.722933pt;}
.y7c{bottom:906.101200pt;}
.y67{bottom:906.104533pt;}
.y1cc{bottom:911.056267pt;}
.y7b{bottom:922.101200pt;}
.y32{bottom:922.104533pt;}
.y1cb{bottom:924.389600pt;}
.y2f{bottom:951.795067pt;}
.y7a{bottom:965.392400pt;}
.y2e{bottom:965.395067pt;}
.h7{height:18.662500pt;}
.h14{height:21.620506pt;}
.h15{height:23.782635pt;}
.h28{height:24.717315pt;}
.h13{height:25.944374pt;}
.h2{height:27.216146pt;}
.h16{height:30.268631pt;}
.h8{height:31.104167pt;}
.h21{height:31.117775pt;}
.h17{height:31.265124pt;}
.ha{height:31.666667pt;}
.h1a{height:31.677261pt;}
.h1b{height:31.953310pt;}
.h9{height:32.000000pt;}
.h1c{height:32.009298pt;}
.hc{height:33.048177pt;}
.h22{height:33.465468pt;}
.hb{height:34.000000pt;}
.h1f{height:34.650819pt;}
.h24{height:34.774458pt;}
.h25{height:34.787301pt;}
.h1d{height:34.919093pt;}
.h20{height:36.826556pt;}
.hd{height:38.880208pt;}
.hf{height:39.583333pt;}
.he{height:40.000000pt;}
.h18{height:40.150518pt;}
.h23{height:40.570331pt;}
.h10{height:40.739071pt;}
.h1e{height:41.635325pt;}
.h11{height:43.648866pt;}
.h6{height:45.793738pt;}
.h5{height:45.799071pt;}
.h3{height:48.000000pt;}
.h12{height:49.468844pt;}
.h4{height:56.000000pt;}
.h26{height:197.173333pt;}
.h27{height:516.934667pt;}
.h19{height:627.401333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:299.232000pt;}
.w2{width:511.328000pt;}
.w3{width:638.920000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x60{left:9.153067pt;}
.x64{left:19.915200pt;}
.x7{left:68.031467pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x63{left:87.947200pt;}
.x62{left:93.877867pt;}
.x9{left:98.274267pt;}
.x61{left:104.388267pt;}
.x6e{left:107.701615pt;}
.x3{left:111.491200pt;}
.x6d{left:113.632133pt;}
.x65{left:114.660400pt;}
.x42{left:117.169200pt;}
.x74{left:126.201600pt;}
.x6f{left:128.805333pt;}
.x75{left:135.935600pt;}
.x40{left:139.532800pt;}
.x4{left:143.619200pt;}
.x6c{left:145.777333pt;}
.x31{left:150.634667pt;}
.x73{left:152.665600pt;}
.x14{left:158.396853pt;}
.x13{left:159.388771pt;}
.x12{left:160.380688pt;}
.x32{left:168.474267pt;}
.x8{left:169.380933pt;}
.x11{left:170.551333pt;}
.x41{left:176.042667pt;}
.x45{left:180.774250pt;}
.x44{left:182.757014pt;}
.x78{left:187.902533pt;}
.x6b{left:190.621384pt;}
.x3e{left:191.905480pt;}
.x72{left:199.833867pt;}
.x35{left:202.676541pt;}
.x34{left:204.338048pt;}
.x49{left:223.713453pt;}
.x76{left:237.102933pt;}
.x57{left:237.999461pt;}
.x48{left:242.420300pt;}
.x17{left:248.204400pt;}
.x58{left:251.147183pt;}
.x4e{left:253.891983pt;}
.x4d{left:259.814573pt;}
.x5a{left:265.157333pt;}
.x2c{left:268.690847pt;}
.x2b{left:273.330707pt;}
.x5d{left:278.333600pt;}
.x15{left:283.001229pt;}
.x5e{left:289.896267pt;}
.x5f{left:293.010933pt;}
.x70{left:294.255200pt;}
.x46{left:296.027113pt;}
.x71{left:297.220533pt;}
.x1f{left:298.621564pt;}
.x1b{left:303.182933pt;}
.x50{left:314.249045pt;}
.x20{left:316.077870pt;}
.x4f{left:320.171635pt;}
.x1c{left:323.682082pt;}
.x2e{left:325.292987pt;}
.x4c{left:326.809204pt;}
.x2a{left:332.154167pt;}
.x19{left:338.005200pt;}
.x16{left:342.525333pt;}
.x21{left:345.367453pt;}
.x59{left:347.746267pt;}
.x1e{left:348.712800pt;}
.x18{left:350.189333pt;}
.x1d{left:352.502754pt;}
.x33{left:354.173067pt;}
.x77{left:358.614000pt;}
.x29{left:359.837627pt;}
.x55{left:370.358915pt;}
.x1a{left:377.822800pt;}
.x2d{left:382.289567pt;}
.x47{left:384.957299pt;}
.x28{left:386.524607pt;}
.x54{left:389.631343pt;}
.x5b{left:395.347819pt;}
.x27{left:399.333527pt;}
.x6{left:404.481333pt;}
.xa{left:406.327600pt;}
.x6a{left:422.041867pt;}
.xe{left:425.195867pt;}
.x69{left:432.549733pt;}
.xb{left:436.580933pt;}
.x4b{left:441.878191pt;}
.x26{left:446.240747pt;}
.x7a{left:451.650267pt;}
.x3c{left:453.633855pt;}
.x10{left:455.435867pt;}
.x51{left:460.094157pt;}
.x4a{left:461.150619pt;}
.x56{left:478.971467pt;}
.x53{left:480.753859pt;}
.xf{left:485.809200pt;}
.x24{left:487.106807pt;}
.x52{left:500.026287pt;}
.x25{left:505.624727pt;}
.x5c{left:515.018133pt;}
.x2f{left:516.284987pt;}
.x68{left:517.817733pt;}
.x3d{left:525.874267pt;}
.x79{left:529.875867pt;}
.x43{left:544.795867pt;}
.x30{left:546.905987pt;}
.x36{left:557.385875pt;}
.x3a{left:561.496267pt;}
.x38{left:563.073918pt;}
.x37{left:566.816051pt;}
.x39{left:568.202400pt;}
.x3b{left:584.646400pt;}
.xd{left:589.770933pt;}
.x23{left:591.135167pt;}
.x22{left:594.591707pt;}
.x2{left:626.078800pt;}
.x66{left:633.935067pt;}
.x7b{left:638.290267pt;}
.x67{left:640.015067pt;}
.xc{left:644.593200pt;}
.x7c{left:658.028933pt;}
.x3f{left:663.490933pt;}
}




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