
    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_d695dd564f5a207b3881eb89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_5b0fda06005a71865ae448ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_993ca36b673bb01728e93f72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858000;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_fe9ce04180a80739888dc13a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_1fef779a79e42fa3982e0530.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.270000;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_8db90c9a8a3b8cb8f1748f5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_9842d1f96a1d2715447c9011.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728000;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_4647a84f2b72a0a90ad8d4c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_d35ef84952d4b7e6d3e36665.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_ebb79f1b2ab079e06166d049.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_e1bdd98d4ddd3e7d4179f93d.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.004000;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_71553553f0ec38b42a9a03a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.671000;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_7ff049762528b3dc17ba4939.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.667000;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_fe5cdc4ab43c9949c22c4c2c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878000;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_443083186d1112488d03457d.woff2')format("woff");}.fff{font-family:fff;line-height:0.618000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_afac529dfe83316d96fcb333.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.500000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v9{vertical-align:-15.126000px;}
.v3{vertical-align:-8.964000px;}
.v14{vertical-align:-6.546000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:6.546000px;}
.v4{vertical-align:8.964000px;}
.vc{vertical-align:18.168000px;}
.v1{vertical-align:21.696000px;}
.v13{vertical-align:24.684000px;}
.v11{vertical-align:28.902000px;}
.v12{vertical-align:30.276000px;}
.v8{vertical-align:32.220000px;}
.ve{vertical-align:33.324000px;}
.v10{vertical-align:35.448000px;}
.vd{vertical-align:39.870000px;}
.v6{vertical-align:41.184000px;}
.v7{vertical-align:44.892000px;}
.vb{vertical-align:70.578000px;}
.va{vertical-align:87.420000px;}
.v5{vertical-align:101.916000px;}
.ls3{letter-spacing:0.000000px;}
.lsbd{letter-spacing:0.000962px;}
.ls2c{letter-spacing:0.028788px;}
.ls3e{letter-spacing:0.298878px;}
.lsb6{letter-spacing:0.597756px;}
.ls90{letter-spacing:0.871315px;}
.ls50{letter-spacing:0.956410px;}
.ls51{letter-spacing:1.016185px;}
.ls75{letter-spacing:1.177736px;}
.ls56{letter-spacing:1.194113px;}
.ls9f{letter-spacing:1.195285px;}
.ls83{letter-spacing:1.195435px;}
.lsc0{letter-spacing:1.195512px;}
.ls82{letter-spacing:1.206980px;}
.ls70{letter-spacing:1.209403px;}
.ls8a{letter-spacing:1.434614px;}
.ls21{letter-spacing:1.494390px;}
.ls92{letter-spacing:1.618932px;}
.ls96{letter-spacing:1.624932px;}
.ls3a{letter-spacing:1.745448px;}
.ls6e{letter-spacing:1.793268px;}
.ls93{letter-spacing:1.963629px;}
.ls3b{letter-spacing:2.181810px;}
.ls47{letter-spacing:2.271473px;}
.ls8{letter-spacing:2.391024px;}
.ls84{letter-spacing:2.391292px;}
.ls48{letter-spacing:2.665535px;}
.ls4d{letter-spacing:2.665816px;}
.ls54{letter-spacing:2.669582px;}
.ls40{letter-spacing:2.687675px;}
.ls4b{letter-spacing:2.695738px;}
.ls52{letter-spacing:2.700756px;}
.ls11{letter-spacing:2.988780px;}
.ls5e{letter-spacing:3.347434px;}
.lsb{letter-spacing:3.428275px;}
.ls1a{letter-spacing:3.466985px;}
.ls9c{letter-spacing:3.490896px;}
.ls7e{letter-spacing:3.586536px;}
.lsa7{letter-spacing:3.646312px;}
.lsad{letter-spacing:3.658291px;}
.ls25{letter-spacing:3.706087px;}
.lsb2{letter-spacing:3.712090px;}
.lsaf{letter-spacing:3.765888px;}
.ls9b{letter-spacing:3.794653px;}
.ls67{letter-spacing:4.004965px;}
.ls39{letter-spacing:4.014530px;}
.ls38{letter-spacing:4.145439px;}
.lsa5{letter-spacing:4.483170px;}
.ls7d{letter-spacing:4.537185px;}
.ls14{letter-spacing:4.542946px;}
.ls44{letter-spacing:4.756416px;}
.ls9d{letter-spacing:4.799982px;}
.ls31{letter-spacing:4.961375px;}
.ls3d{letter-spacing:5.021150px;}
.ls34{letter-spacing:5.281994px;}
.ls8d{letter-spacing:5.559131px;}
.ls3f{letter-spacing:5.738458px;}
.ls1d{letter-spacing:6.084050px;}
.ls7{letter-spacing:6.336214px;}
.ls7c{letter-spacing:7.257263px;}
.ls7f{letter-spacing:7.275634px;}
.ls29{letter-spacing:10.580281px;}
.ls28{letter-spacing:10.640057px;}
.lsbc{letter-spacing:10.699832px;}
.ls95{letter-spacing:12.192245px;}
.ls91{letter-spacing:12.198245px;}
.lsa3{letter-spacing:12.911530px;}
.ls19{letter-spacing:13.270183px;}
.ls43{letter-spacing:13.509286px;}
.ls89{letter-spacing:13.748388px;}
.ls87{letter-spacing:13.867939px;}
.lsbe{letter-spacing:13.927715px;}
.ls66{letter-spacing:14.166817px;}
.ls65{letter-spacing:14.764573px;}
.ls1{letter-spacing:14.941200px;}
.ls2{letter-spacing:14.943900px;}
.ls0{letter-spacing:14.945674px;}
.ls69{letter-spacing:15.003676px;}
.ls99{letter-spacing:15.242778px;}
.ls86{letter-spacing:15.302554px;}
.ls16{letter-spacing:15.422105px;}
.ls23{letter-spacing:15.601432px;}
.ls30{letter-spacing:15.661207px;}
.lsa0{letter-spacing:16.199188px;}
.ls64{letter-spacing:16.557841px;}
.ls36{letter-spacing:16.617617px;}
.ls18{letter-spacing:16.737168px;}
.ls79{letter-spacing:16.796944px;}
.ls61{letter-spacing:17.036046px;}
.lsa9{letter-spacing:17.095822px;}
.ls22{letter-spacing:17.334924px;}
.ls24{letter-spacing:17.394700px;}
.lsa2{letter-spacing:17.454475px;}
.ls76{letter-spacing:17.514251px;}
.ls4f{letter-spacing:17.574026px;}
.lsb7{letter-spacing:17.693578px;}
.ls63{letter-spacing:17.753353px;}
.lsb9{letter-spacing:17.813129px;}
.lse{letter-spacing:17.932680px;}
.ls6f{letter-spacing:17.992456px;}
.ls20{letter-spacing:18.112007px;}
.ls6{letter-spacing:18.171782px;}
.ls6a{letter-spacing:18.231558px;}
.lsd{letter-spacing:18.291334px;}
.ls81{letter-spacing:18.351109px;}
.ls7a{letter-spacing:18.410885px;}
.ls4a{letter-spacing:18.470660px;}
.ls5b{letter-spacing:18.530436px;}
.ls41{letter-spacing:18.634416px;}
.lsb8{letter-spacing:18.889090px;}
.ls5c{letter-spacing:19.008641px;}
.ls6b{letter-spacing:19.068416px;}
.ls2f{letter-spacing:19.128192px;}
.lsa4{letter-spacing:19.307519px;}
.ls2a{letter-spacing:19.367294px;}
.ls62{letter-spacing:19.427070px;}
.ls60{letter-spacing:19.486846px;}
.ls10{letter-spacing:19.546621px;}
.ls55{letter-spacing:19.581047px;}
.lsa{letter-spacing:19.606397px;}
.lsc2{letter-spacing:19.845499px;}
.ls37{letter-spacing:19.965050px;}
.ls98{letter-spacing:20.020416px;}
.ls78{letter-spacing:20.084602px;}
.ls88{letter-spacing:20.107207px;}
.ls5a{letter-spacing:20.144377px;}
.ls6d{letter-spacing:20.204153px;}
.ls49{letter-spacing:20.248416px;}
.ls46{letter-spacing:20.254416px;}
.ls5f{letter-spacing:20.263928px;}
.ls4c{letter-spacing:20.386416px;}
.ls17{letter-spacing:20.503031px;}
.ls53{letter-spacing:20.547900px;}
.ls4e{letter-spacing:20.553900px;}
.lsf{letter-spacing:20.562806px;}
.ls6c{letter-spacing:20.921460px;}
.ls58{letter-spacing:20.981236px;}
.lsa1{letter-spacing:21.100787px;}
.ls80{letter-spacing:21.139185px;}
.ls7b{letter-spacing:21.160562px;}
.ls94{letter-spacing:21.189510px;}
.ls72{letter-spacing:21.339889px;}
.ls35{letter-spacing:21.358416px;}
.ls1f{letter-spacing:21.364416px;}
.ls32{letter-spacing:21.459440px;}
.ls13{letter-spacing:21.758318px;}
.ls9a{letter-spacing:21.775207px;}
.lsc1{letter-spacing:22.057196px;}
.ls74{letter-spacing:22.116972px;}
.ls8c{letter-spacing:22.213207px;}
.ls2e{letter-spacing:22.296299px;}
.ls12{letter-spacing:22.356074px;}
.ls15{letter-spacing:22.552416px;}
.ls9{letter-spacing:22.581900px;}
.ls5d{letter-spacing:22.654952px;}
.ls2b{letter-spacing:22.834279px;}
.lsba{letter-spacing:23.152416px;}
.ls5{letter-spacing:23.215144px;}
.ls8e{letter-spacing:23.431207px;}
.ls85{letter-spacing:23.437207px;}
.lsa6{letter-spacing:23.551586px;}
.ls8f{letter-spacing:23.776718px;}
.ls33{letter-spacing:23.886050px;}
.ls1c{letter-spacing:23.910240px;}
.ls2d{letter-spacing:24.029791px;}
.ls42{letter-spacing:24.268894px;}
.ls1e{letter-spacing:25.225303px;}
.ls27{letter-spacing:25.882835px;}
.ls73{letter-spacing:26.002386px;}
.ls1b{letter-spacing:28.636416px;}
.ls4{letter-spacing:29.887800px;}
.ls57{letter-spacing:59.775600px;}
.ls59{letter-spacing:62.166624px;}
.lsab{letter-spacing:63.159322px;}
.ls71{letter-spacing:126.843823px;}
.lsac{letter-spacing:127.986394px;}
.ls77{letter-spacing:190.026632px;}
.lsae{letter-spacing:192.652070px;}
.lsb0{letter-spacing:257.102554px;}
.lsb1{letter-spacing:257.156352px;}
.ls68{letter-spacing:267.615361px;}
.lsa8{letter-spacing:281.961505px;}
.lsb3{letter-spacing:321.015053px;}
.lsb5{letter-spacing:386.003520px;}
.lsb4{letter-spacing:386.218714px;}
.lsbb{letter-spacing:512.586050px;}
.lsaa{letter-spacing:580.361300px;}
.ls3c{letter-spacing:595.541068px;}
.lsbf{letter-spacing:799.020445px;}
.ls26{letter-spacing:837.396380px;}
.lsc{letter-spacing:866.148444px;}
.ls8b{letter-spacing:977.779207px;}
.ls45{letter-spacing:1095.567197px;}
.ls97{letter-spacing:1111.719510px;}
.ls9e{letter-spacing:1118.373630px;}
.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;}
}
.ws4{word-spacing:-61.987500px;}
.ws7f{word-spacing:-61.210214px;}
.wsd2{word-spacing:-47.940031px;}
.wsad{word-spacing:-47.342275px;}
.wsac{word-spacing:-44.951251px;}
.ws21{word-spacing:-44.831700px;}
.ws3{word-spacing:-43.391250px;}
.ws81{word-spacing:-41.723369px;}
.ws6e{word-spacing:-41.484266px;}
.ws8c{word-spacing:-41.065837px;}
.ws60{word-spacing:-41.006062px;}
.ws80{word-spacing:-39.870325px;}
.ws86{word-spacing:-39.810550px;}
.ws79{word-spacing:-35.984911px;}
.ws102{word-spacing:-35.865600px;}
.ws1{word-spacing:-35.865450px;}
.ws9b{word-spacing:-34.610072px;}
.ws74{word-spacing:-34.490521px;}
.ws9{word-spacing:-29.887800px;}
.ws93{word-spacing:-29.290044px;}
.ws78{word-spacing:-29.230268px;}
.wsa5{word-spacing:-28.871615px;}
.ws68{word-spacing:-27.556552px;}
.ws8{word-spacing:-23.910300px;}
.wse3{word-spacing:-22.475626px;}
.ws6{word-spacing:-21.818100px;}
.ws2c{word-spacing:-20.861684px;}
.ws4f{word-spacing:-20.622582px;}
.wsed{word-spacing:-20.562806px;}
.ws44{word-spacing:-20.443255px;}
.ws65{word-spacing:-20.204153px;}
.ws1d{word-spacing:-20.024826px;}
.wse7{word-spacing:-19.845499px;}
.wsb4{word-spacing:-19.247743px;}
.wsd3{word-spacing:-19.187968px;}
.ws47{word-spacing:-18.769538px;}
.ws104{word-spacing:-18.649987px;}
.ws40{word-spacing:-18.470660px;}
.ws5c{word-spacing:-18.410885px;}
.wsfd{word-spacing:-18.231558px;}
.ws31{word-spacing:-18.171782px;}
.ws3a{word-spacing:-17.932800px;}
.ws26{word-spacing:-17.932680px;}
.ws5f{word-spacing:-17.872904px;}
.wsbb{word-spacing:-17.633802px;}
.ws23{word-spacing:-17.574026px;}
.ws42{word-spacing:-17.514251px;}
.wsec{word-spacing:-17.454475px;}
.wsab{word-spacing:-17.334924px;}
.wsf1{word-spacing:-17.215373px;}
.wsd{word-spacing:-17.161690px;}
.wse0{word-spacing:-17.095822px;}
.ws34{word-spacing:-17.036046px;}
.wsb5{word-spacing:-16.976270px;}
.ws91{word-spacing:-16.916495px;}
.wsd6{word-spacing:-16.737168px;}
.wsea{word-spacing:-16.617617px;}
.ws49{word-spacing:-16.557841px;}
.wsfc{word-spacing:-16.498066px;}
.wse9{word-spacing:-16.438290px;}
.ws43{word-spacing:-16.378514px;}
.ws4e{word-spacing:-16.318739px;}
.ws19{word-spacing:-16.247117px;}
.ws66{word-spacing:-16.079636px;}
.ws29{word-spacing:-16.019861px;}
.wsf3{word-spacing:-15.900310px;}
.ws64{word-spacing:-15.840534px;}
.wsf9{word-spacing:-15.720983px;}
.ws3e{word-spacing:-15.661207px;}
.ws59{word-spacing:-15.601432px;}
.ws10{word-spacing:-15.547738px;}
.ws57{word-spacing:-15.541656px;}
.wsf{word-spacing:-15.440141px;}
.ws10b{word-spacing:-15.422105px;}
.ws28{word-spacing:-15.302554px;}
.ws9e{word-spacing:-15.242778px;}
.ws1f{word-spacing:-15.183002px;}
.ws69{word-spacing:-15.123227px;}
.ws8a{word-spacing:-15.063451px;}
.ws56{word-spacing:-15.003676px;}
.ws5{word-spacing:-14.943900px;}
.ws36{word-spacing:-14.884124px;}
.wse{word-spacing:-14.848358px;}
.wscf{word-spacing:-14.824349px;}
.ws25{word-spacing:-14.704798px;}
.ws24{word-spacing:-14.645022px;}
.ws58{word-spacing:-14.585246px;}
.ws7e{word-spacing:-14.525471px;}
.ws83{word-spacing:-14.405920px;}
.ws52{word-spacing:-14.286368px;}
.ws55{word-spacing:-14.226593px;}
.ws67{word-spacing:-14.166817px;}
.wsc{word-spacing:-14.148979px;}
.ws2a{word-spacing:-14.107042px;}
.ws76{word-spacing:-14.047266px;}
.ws3b{word-spacing:-13.987490px;}
.wsd4{word-spacing:-13.867939px;}
.wseb{word-spacing:-13.748388px;}
.wsa4{word-spacing:-13.569061px;}
.wsd7{word-spacing:-13.509286px;}
.ws1b{word-spacing:-13.449600px;}
.ws61{word-spacing:-13.389734px;}
.ws62{word-spacing:-13.329959px;}
.ws77{word-spacing:-13.270183px;}
.ws38{word-spacing:-13.210408px;}
.ws6a{word-spacing:-13.150632px;}
.ws45{word-spacing:-13.090856px;}
.ws97{word-spacing:-13.031081px;}
.ws8b{word-spacing:-12.971305px;}
.ws8f{word-spacing:-12.911530px;}
.ws8e{word-spacing:-12.851754px;}
.ws17{word-spacing:-12.804019px;}
.ws18{word-spacing:-12.750221px;}
.wsb1{word-spacing:-12.672427px;}
.ws3c{word-spacing:-12.612652px;}
.wsf6{word-spacing:-12.552876px;}
.ws8d{word-spacing:-12.493100px;}
.ws41{word-spacing:-12.433325px;}
.ws4a{word-spacing:-12.373549px;}
.ws54{word-spacing:-12.313774px;}
.wsd9{word-spacing:-12.253998px;}
.ws5e{word-spacing:-12.194222px;}
.wsda{word-spacing:-12.134447px;}
.ws9c{word-spacing:-12.074671px;}
.ws0{word-spacing:-11.955150px;}
.ws2b{word-spacing:-11.955120px;}
.wsa0{word-spacing:-11.835569px;}
.wsd5{word-spacing:-11.716018px;}
.wsaf{word-spacing:-11.709999px;}
.wsb0{word-spacing:-11.703999px;}
.wsfb{word-spacing:-11.656242px;}
.ws13{word-spacing:-11.620454px;}
.wsa8{word-spacing:-11.596466px;}
.ws1e{word-spacing:-11.357364px;}
.ws2d{word-spacing:-11.297588px;}
.ws51{word-spacing:-11.237813px;}
.wsef{word-spacing:-11.178037px;}
.ws39{word-spacing:-11.058486px;}
.wse4{word-spacing:-10.998710px;}
.ws33{word-spacing:-10.938935px;}
.wsb{word-spacing:-10.921075px;}
.ws90{word-spacing:-10.879159px;}
.ws9a{word-spacing:-10.759608px;}
.ws12{word-spacing:-10.705882px;}
.ws82{word-spacing:-10.699832px;}
.ws7a{word-spacing:-10.640057px;}
.ws37{word-spacing:-10.580281px;}
.ws15{word-spacing:-10.544486px;}
.ws2f{word-spacing:-10.520506px;}
.ws63{word-spacing:-10.460730px;}
.ws5b{word-spacing:-10.400954px;}
.ws20{word-spacing:-10.341179px;}
.ws50{word-spacing:-10.281403px;}
.ws10a{word-spacing:-10.161852px;}
.ws9f{word-spacing:-10.102076px;}
.ws16{word-spacing:-10.060301px;}
.ws94{word-spacing:-10.042301px;}
.ws99{word-spacing:-9.982525px;}
.ws7d{word-spacing:-9.922750px;}
.ws53{word-spacing:-9.862974px;}
.wsdc{word-spacing:-9.743423px;}
.ws75{word-spacing:-9.683647px;}
.ws3f{word-spacing:-9.623872px;}
.ws11{word-spacing:-9.522317px;}
.ws6b{word-spacing:-9.504320px;}
.ws6c{word-spacing:-9.444545px;}
.wsa{word-spacing:-9.414720px;}
.ws30{word-spacing:-9.384769px;}
.ws1a{word-spacing:-9.360922px;}
.ws35{word-spacing:-9.324994px;}
.wsfe{word-spacing:-9.265218px;}
.wsfa{word-spacing:-9.145667px;}
.wsd8{word-spacing:-8.966340px;}
.ws48{word-spacing:-8.846789px;}
.ws3d{word-spacing:-8.667462px;}
.wsf2{word-spacing:-8.607686px;}
.wsdd{word-spacing:-8.547911px;}
.wsde{word-spacing:-8.488135px;}
.wsf4{word-spacing:-8.428360px;}
.ws4b{word-spacing:-8.368584px;}
.wsb2{word-spacing:-8.308808px;}
.ws27{word-spacing:-8.249033px;}
.ws101{word-spacing:-8.189257px;}
.wsbe{word-spacing:-8.129482px;}
.wsbd{word-spacing:-8.069706px;}
.wsf7{word-spacing:-7.830604px;}
.ws106{word-spacing:-7.770828px;}
.wsdf{word-spacing:-7.711052px;}
.ws4d{word-spacing:-7.651277px;}
.wse8{word-spacing:-7.591501px;}
.ws7c{word-spacing:-7.352399px;}
.ws5d{word-spacing:-7.113296px;}
.ws73{word-spacing:-6.694867px;}
.ws2e{word-spacing:-6.575316px;}
.wsbc{word-spacing:-6.561775px;}
.wsf8{word-spacing:-6.515540px;}
.wsb7{word-spacing:-6.498100px;}
.ws100{word-spacing:-6.455765px;}
.wsf0{word-spacing:-6.395989px;}
.ws14{word-spacing:-6.133018px;}
.wsd0{word-spacing:-6.037336px;}
.wsa3{word-spacing:-5.798233px;}
.wsff{word-spacing:-5.738458px;}
.wsa7{word-spacing:-5.618906px;}
.wse1{word-spacing:-5.545957px;}
.ws103{word-spacing:-4.961375px;}
.wsb6{word-spacing:-4.901599px;}
.ws32{word-spacing:-4.841824px;}
.wsd1{word-spacing:-4.722272px;}
.ws46{word-spacing:-4.662497px;}
.wse6{word-spacing:-4.542946px;}
.ws5a{word-spacing:-4.303843px;}
.ws89{word-spacing:-3.888722px;}
.ws72{word-spacing:-3.885775px;}
.ws84{word-spacing:-3.885536px;}
.ws6d{word-spacing:-3.884200px;}
.wsa2{word-spacing:-3.883697px;}
.ws87{word-spacing:-3.882722px;}
.wsaa{word-spacing:-3.881627px;}
.wsc0{word-spacing:-3.712090px;}
.ws4c{word-spacing:-3.466985px;}
.wsf5{word-spacing:-3.347434px;}
.wsee{word-spacing:-3.287658px;}
.wse5{word-spacing:-2.809453px;}
.wse2{word-spacing:-2.225164px;}
.ws92{word-spacing:-2.223385px;}
.ws98{word-spacing:-1.965355px;}
.ws6f{word-spacing:-1.853044px;}
.ws70{word-spacing:-1.793268px;}
.ws9d{word-spacing:-1.006673px;}
.wsa1{word-spacing:-0.750722px;}
.wsb9{word-spacing:-0.059776px;}
.wsc3{word-spacing:-0.053798px;}
.wsae{word-spacing:-0.043636px;}
.ws22{word-spacing:0.000000px;}
.ws7b{word-spacing:3.716615px;}
.wsb3{word-spacing:4.184292px;}
.ws71{word-spacing:9.238747px;}
.ws7{word-spacing:11.907329px;}
.ws109{word-spacing:13.449510px;}
.ws95{word-spacing:14.107042px;}
.ws2{word-spacing:14.884124px;}
.ws105{word-spacing:15.780758px;}
.ws96{word-spacing:16.498066px;}
.wsb8{word-spacing:16.557841px;}
.ws107{word-spacing:16.796944px;}
.wsc2{word-spacing:30.449894px;}
.wsc4{word-spacing:30.557491px;}
.ws1c{word-spacing:35.865600px;}
.wsc1{word-spacing:36.260122px;}
.wsbf{word-spacing:37.605082px;}
.wsc7{word-spacing:37.766477px;}
.wsc5{word-spacing:37.927872px;}
.wsc6{word-spacing:38.465856px;}
.ws108{word-spacing:38.674813px;}
.wsdb{word-spacing:41.842920px;}
.wsce{word-spacing:46.870462px;}
.wscd{word-spacing:111.428542px;}
.wscc{word-spacing:175.986622px;}
.wscb{word-spacing:240.544702px;}
.wsc8{word-spacing:305.102782px;}
.wsc9{word-spacing:306.071153px;}
.wsca{word-spacing:371.274814px;}
.wsba{word-spacing:484.182360px;}
.wsa6{word-spacing:874.098599px;}
.wsa9{word-spacing:1171.674373px;}
.ws88{word-spacing:1183.127755px;}
.ws85{word-spacing:1192.067755px;}
._11{margin-left:-14.943900px;}
._4{margin-left:-7.438500px;}
._6{margin-left:-5.844870px;}
._5{margin-left:-4.781475px;}
._8{margin-left:-3.719250px;}
._0{margin-left:-2.391030px;}
._7{margin-left:-1.328220px;}
._1{width:1.673721px;}
._9{width:3.290017px;}
._23{width:5.021150px;}
._22{width:6.123448px;}
._26{width:7.254118px;}
._1d{width:10.938937px;}
._16{width:12.946102px;}
._3{width:14.943900px;}
._2{width:17.024134px;}
._a{width:18.113251px;}
._b{width:19.990267px;}
._21{width:21.041041px;}
._e{width:22.094402px;}
._20{width:23.790707px;}
._2f{width:24.798511px;}
._c{width:25.872223px;}
._24{width:27.089696px;}
._18{width:28.154314px;}
._13{width:30.126904px;}
._2e{width:31.441954px;}
._f{width:32.685215px;}
._1a{width:34.264571px;}
._10{width:35.998074px;}
._19{width:37.778191px;}
._15{width:38.807535px;}
._d{width:40.671590px;}
._1e{width:42.035411px;}
._1f{width:43.423407px;}
._14{width:47.023103px;}
._17{width:51.778840px;}
._30{width:56.607499px;}
._1c{width:59.775600px;}
._1b{width:71.731200px;}
._2c{width:85.897537px;}
._28{width:91.230728px;}
._29{width:128.158886px;}
._2b{width:134.614663px;}
._2a{width:148.123937px;}
._2d{width:326.520649px;}
._27{width:345.037938px;}
._25{width:514.881218px;}
._12{width:1477.608719px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fs8{font-size:32.877000px;}
.fs5{font-size:35.865600px;}
.fs4{font-size:43.636200px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:123.975000px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2f{bottom:61.467000px;}
.y8c{bottom:106.299000px;}
.y2e{bottom:107.992500px;}
.y191{bottom:108.640500px;}
.y11e{bottom:111.231000px;}
.yf2{bottom:112.624500px;}
.y8b{bottom:124.231500px;}
.y1b6{bottom:125.055000px;}
.y2d{bottom:125.926500px;}
.y190{bottom:126.573000px;}
.yef{bottom:127.419000px;}
.yf1{bottom:127.629000px;}
.y11d{bottom:127.669500px;}
.y167{bottom:133.050000px;}
.yf0{bottom:134.271000px;}
.y141{bottom:134.529000px;}
.y8a{bottom:142.164000px;}
.y1b5{bottom:142.987500px;}
.y2c{bottom:143.859000px;}
.y11c{bottom:144.108000px;}
.y62{bottom:144.580500px;}
.y166{bottom:150.982500px;}
.y140{bottom:152.461500px;}
.y18f{bottom:159.973500px;}
.ycc{bottom:160.098000px;}
.y11b{bottom:160.546500px;}
.y2b{bottom:161.791500px;}
.y61{bottom:162.513000px;}
.y1b4{bottom:166.899000px;}
.y165{bottom:168.915000px;}
.yee{bottom:169.561500px;}
.y89{bottom:172.912500px;}
.y11a{bottom:176.983500px;}
.y60{bottom:180.447000px;}
.y13f{bottom:180.690000px;}
.y1b3{bottom:184.831500px;}
.ycb{bottom:187.336500px;}
.yed{bottom:187.494000px;}
.ya5{bottom:188.188500px;}
.y119{bottom:193.422000px;}
.y2a{bottom:194.520000px;}
.y5f{bottom:198.379500px;}
.y18e{bottom:201.442500px;}
.y164{bottom:201.792000px;}
.ya4{bottom:206.121000px;}
.y1b2{bottom:208.741500px;}
.y13e{bottom:208.920000px;}
.y118{bottom:209.860500px;}
.yec{bottom:214.393500px;}
.y5e{bottom:216.312000px;}
.y18d{bottom:219.375000px;}
.y163{bottom:219.724500px;}
.yca{bottom:219.759000px;}
.y88{bottom:219.882000px;}
.y117{bottom:226.299000px;}
.y1b1{bottom:226.674000px;}
.yc9{bottom:230.982000px;}
.y5d{bottom:234.244500px;}
.ya3{bottom:234.505500px;}
.y18c{bottom:237.309000px;}
.y13d{bottom:237.651000px;}
.y116{bottom:242.737500px;}
.yeb{bottom:250.258500px;}
.y1b0{bottom:250.584000px;}
.y5c{bottom:252.177000px;}
.ya2{bottom:252.438000px;}
.y162{bottom:253.123500px;}
.y18b{bottom:255.241500px;}
.y115{bottom:259.176000px;}
.y13c{bottom:266.380500px;}
.y87{bottom:266.851500px;}
.y29{bottom:267.843000px;}
.y1af{bottom:268.518000px;}
.ya1{bottom:270.370500px;}
.y18a{bottom:273.174000px;}
.y114{bottom:275.614500px;}
.yc8{bottom:276.724500px;}
.yea{bottom:277.158000px;}
.y13b{bottom:284.314500px;}
.y86{bottom:284.784000px;}
.y5b{bottom:285.577500px;}
.y189{bottom:291.106500px;}
.y113{bottom:292.053000px;}
.y1ae{bottom:292.428000px;}
.y161{bottom:294.594000px;}
.ya0{bottom:303.771000px;}
.yc7{bottom:304.357500px;}
.y28{bottom:305.872500px;}
.y112{bottom:308.491500px;}
.y188{bottom:309.039000px;}
.y1ad{bottom:310.360500px;}
.y160{bottom:312.526500px;}
.y13a{bottom:312.543000px;}
.ye9{bottom:313.023000px;}
.y85{bottom:315.532500px;}
.y27{bottom:322.311000px;}
.y111{bottom:324.930000px;}
.y187{bottom:326.971500px;}
.y5a{bottom:327.046500px;}
.y15f{bottom:330.459000px;}
.y139{bottom:330.475500px;}
.ye8{bottom:330.955500px;}
.y84{bottom:333.466500px;}
.y1ac{bottom:334.270500px;}
.y26{bottom:338.749500px;}
.y110{bottom:341.367000px;}
.y186{bottom:344.905500px;}
.y59{bottom:344.979000px;}
.yc6{bottom:345.807000px;}
.ye7{bottom:348.889500px;}
.y9f{bottom:349.812000px;}
.y83{bottom:351.399000px;}
.y1ab{bottom:352.203000px;}
.y25{bottom:355.188000px;}
.y10f{bottom:357.805500px;}
.y138{bottom:358.705500px;}
.y58{bottom:362.911500px;}
.y15e{bottom:363.336000px;}
.ye6{bottom:366.822000px;}
.y82{bottom:369.331500px;}
.y24{bottom:371.626500px;}
.y10e{bottom:374.244000px;}
.y137{bottom:376.638000px;}
.y185{bottom:378.304500px;}
.y57{bottom:380.845500px;}
.y15d{bottom:381.268500px;}
.yc5{bottom:381.672000px;}
.y1aa{bottom:384.931500px;}
.y23{bottom:388.065000px;}
.y10d{bottom:390.682500px;}
.y56{bottom:398.778000px;}
.y15c{bottom:399.201000px;}
.ye5{bottom:400.221000px;}
.y81{bottom:402.730500px;}
.y22{bottom:404.503500px;}
.y136{bottom:405.369000px;}
.yc4{bottom:409.305000px;}
.y55{bottom:416.710500px;}
.y184{bottom:419.773500px;}
.y21{bottom:420.942000px;}
.y1a9{bottom:428.367000px;}
.y15b{bottom:429.090000px;}
.y10c{bottom:431.181000px;}
.y135{bottom:434.098500px;}
.y54{bottom:434.643000px;}
.y20{bottom:437.380500px;}
.y183{bottom:437.707500px;}
.ye4{bottom:441.691500px;}
.yc3{bottom:441.727500px;}
.y16{bottom:441.862500px;}
.y80{bottom:443.817000px;}
.y15a{bottom:447.022500px;}
.y10b{bottom:449.113500px;}
.y134{bottom:452.032500px;}
.y53{bottom:452.575500px;}
.yc2{bottom:452.950500px;}
.y1f{bottom:453.819000px;}
.y182{bottom:455.640000px;}
.y15{bottom:456.060000px;}
.ye3{bottom:459.624000px;}
.y7f{bottom:461.751000px;}
.y1a8{bottom:461.767500px;}
.y10a{bottom:467.046000px;}
.y133{bottom:469.965000px;}
.y14{bottom:470.256000px;}
.y181{bottom:473.572500px;}
.y159{bottom:476.910000px;}
.ye2{bottom:477.556500px;}
.y7e{bottom:479.683500px;}
.y13{bottom:484.453500px;}
.y109{bottom:484.978500px;}
.y52{bottom:485.976000px;}
.y1e{bottom:486.694500px;}
.y180{bottom:491.505000px;}
.y158{bottom:494.842500px;}
.ye1{bottom:495.489000px;}
.y132{bottom:498.193500px;}
.y12{bottom:498.649500px;}
.yc1{bottom:498.694500px;}
.y1d{bottom:503.133000px;}
.y1a7{bottom:503.236500px;}
.y17f{bottom:509.437500px;}
.y7d{bottom:510.432000px;}
.y157{bottom:512.775000px;}
.y131{bottom:516.127500px;}
.y1c{bottom:519.571500px;}
.y108{bottom:523.654500px;}
.yc0{bottom:525.933000px;}
.y11{bottom:527.043000px;}
.y17e{bottom:527.370000px;}
.y51{bottom:527.445000px;}
.y1b{bottom:536.010000px;}
.y1a6{bottom:536.635500px;}
.y7c{bottom:539.467500px;}
.ye0{bottom:540.321000px;}
.ybf{bottom:543.865500px;}
.y130{bottom:544.356000px;}
.y17d{bottom:545.304000px;}
.y50{bottom:545.377500px;}
.y156{bottom:545.652000px;}
.y154{bottom:548.683500px;}
.y1a{bottom:552.448500px;}
.y107{bottom:556.381500px;}
.y7b{bottom:557.401500px;}
.ybe{bottom:561.798000px;}
.y12f{bottom:562.288500px;}
.y17c{bottom:563.236500px;}
.y4f{bottom:563.310000px;}
.y10{bottom:563.656500px;}
.y153{bottom:566.617500px;}
.y19{bottom:568.887000px;}
.ydf{bottom:576.186000px;}
.yf{bottom:577.852500px;}
.y1a5{bottom:578.106000px;}
.ybd{bottom:579.730500px;}
.y17b{bottom:581.169000px;}
.y4e{bottom:581.244000px;}
.y152{bottom:584.550000px;}
.y18{bottom:585.325500px;}
.y155{bottom:586.897500px;}
.y12e{bottom:591.019500px;}
.ye{bottom:592.050000px;}
.yde{bottom:594.120000px;}
.y106{bottom:595.057500px;}
.y1a4{bottom:596.038500px;}
.y1c9{bottom:597.631500px;}
.ybc{bottom:598.957500px;}
.y17a{bottom:599.101500px;}
.y17{bottom:601.764000px;}
.y7a{bottom:604.371000px;}
.yd{bottom:606.246000px;}
.y12d{bottom:608.952000px;}
.ydd{bottom:612.052500px;}
.y4d{bottom:613.971000px;}
.y1c8{bottom:615.564000px;}
.yb9{bottom:616.426500px;}
.y151{bottom:617.949000px;}
.y105{bottom:627.784500px;}
.y1a3{bottom:629.437500px;}
.ydc{bottom:629.985000px;}
.ybb{bottom:631.719000px;}
.y179{bottom:632.502000px;}
.yc{bottom:634.639500px;}
.yba{bottom:634.707000px;}
.y79{bottom:635.119500px;}
.y9e{bottom:636.814500px;}
.y1c7{bottom:639.474000px;}
.y12c{bottom:642.352500px;}
.y104{bottom:645.717000px;}
.ydb{bottom:647.917500px;}
.y78{bottom:653.052000px;}
.y9d{bottom:654.747000px;}
.y4c{bottom:657.406500px;}
.y150{bottom:659.419500px;}
.yb8{bottom:660.352500px;}
.yda{bottom:665.850000px;}
.y178{bottom:667.620000px;}
.y1a2{bottom:670.906500px;}
.y77{bottom:670.984500px;}
.y9c{bottom:672.679500px;}
.y4b{bottom:675.339000px;}
.y103{bottom:675.546000px;}
.yb7{bottom:678.285000px;}
.y1c6{bottom:681.318000px;}
.y12b{bottom:683.074500px;}
.yd9{bottom:683.782500px;}
.y1a1{bottom:688.840500px;}
.y9b{bottom:690.612000px;}
.y4a{bottom:693.273000px;}
.y14f{bottom:695.284500px;}
.yb6{bottom:696.217500px;}
.y1c5{bottom:699.250500px;}
.y12a{bottom:701.008500px;}
.y76{bottom:704.383500px;}
.y1a0{bottom:706.773000px;}
.y9a{bottom:708.546000px;}
.y177{bottom:711.055500px;}
.y49{bottom:711.205500px;}
.y14e{bottom:713.217000px;}
.y129{bottom:718.941000px;}
.y102{bottom:720.288000px;}
.y1c4{bottom:723.160500px;}
.y19f{bottom:724.705500px;}
.yb{bottom:725.799000px;}
.y99{bottom:726.478500px;}
.y176{bottom:728.988000px;}
.y48{bottom:729.138000px;}
.yb5{bottom:729.618000px;}
.y14d{bottom:731.149500px;}
.yd8{bottom:734.592000px;}
.y128{bottom:736.873500px;}
.y1c3{bottom:741.093000px;}
.y19e{bottom:742.638000px;}
.y75{bottom:745.470000px;}
.y175{bottom:746.922000px;}
.y47{bottom:747.070500px;}
.y14c{bottom:749.082000px;}
.ya{bottom:751.059000px;}
.y127{bottom:754.806000px;}
.y101{bottom:756.153000px;}
.y98{bottom:759.205500px;}
.y19d{bottom:760.570500px;}
.y74{bottom:763.402500px;}
.y174{bottom:764.854500px;}
.y46{bottom:765.003000px;}
.y14b{bottom:767.016000px;}
.yd7{bottom:767.469000px;}
.y9{bottom:768.993000px;}
.yb4{bottom:770.073000px;}
.y19c{bottom:778.504500px;}
.y73{bottom:781.336500px;}
.y45{bottom:782.937000px;}
.y14a{bottom:784.948500px;}
.yd6{bottom:785.401500px;}
.y126{bottom:787.534500px;}
.yb3{bottom:788.005500px;}
.y100{bottom:788.881500px;}
.y1c2{bottom:788.914500px;}
.y8{bottom:790.057500px;}
.y19b{bottom:796.437000px;}
.y173{bottom:797.731500px;}
.y72{bottom:799.269000px;}
.y44{bottom:800.869500px;}
.y97{bottom:801.868500px;}
.y149{bottom:802.881000px;}
.yd5{bottom:803.335500px;}
.yff{bottom:806.814000px;}
.y1c1{bottom:806.847000px;}
.y19a{bottom:814.369500px;}
.yb2{bottom:815.244000px;}
.y172{bottom:815.664000px;}
.y43{bottom:818.802000px;}
.y96{bottom:819.801000px;}
.y148{bottom:820.813500px;}
.yd4{bottom:821.268000px;}
.yfe{bottom:824.746500px;}
.y125{bottom:830.256000px;}
.y7{bottom:830.406000px;}
.y1c0{bottom:830.757000px;}
.y71{bottom:831.996000px;}
.y199{bottom:832.302000px;}
.y42{bottom:836.734500px;}
.y95{bottom:837.733500px;}
.y147{bottom:838.746000px;}
.yd3{bottom:839.200500px;}
.yfd{bottom:842.679000px;}
.y171{bottom:845.551500px;}
.yb1{bottom:847.332000px;}
.y124{bottom:848.188500px;}
.y198{bottom:850.234500px;}
.y41{bottom:854.667000px;}
.y94{bottom:855.666000px;}
.y6{bottom:859.578000px;}
.y170{bottom:863.484000px;}
.yd2{bottom:866.100000px;}
.y123{bottom:866.121000px;}
.y197{bottom:868.167000px;}
.y40{bottom:872.599500px;}
.y93{bottom:873.600000px;}
.yb0{bottom:874.570500px;}
.y70{bottom:875.065500px;}
.yfc{bottom:876.079500px;}
.y1bf{bottom:878.577000px;}
.y16f{bottom:881.416500px;}
.y146{bottom:883.759500px;}
.y122{bottom:884.053500px;}
.y196{bottom:886.101000px;}
.y5{bottom:888.750000px;}
.y3f{bottom:890.533500px;}
.y92{bottom:891.532500px;}
.yaf{bottom:892.503000px;}
.y6f{bottom:892.998000px;}
.y1be{bottom:896.511000px;}
.y145{bottom:901.693500px;}
.yd1{bottom:901.965000px;}
.y121{bottom:901.987500px;}
.y195{bottom:904.033500px;}
.y3e{bottom:908.466000px;}
.y6e{bottom:910.932000px;}
.y16e{bottom:914.293500px;}
.yfb{bottom:917.521500px;}
.y144{bottom:919.626000px;}
.yd0{bottom:919.897500px;}
.y91{bottom:919.917000px;}
.y120{bottom:919.920000px;}
.yae{bottom:920.136000px;}
.y1bd{bottom:920.421000px;}
.y194{bottom:921.966000px;}
.y3d{bottom:926.398500px;}
.y6d{bottom:928.864500px;}
.yfa{bottom:935.454000px;}
.ycf{bottom:937.830000px;}
.y90{bottom:937.849500px;}
.y11f{bottom:937.852500px;}
.yad{bottom:938.068500px;}
.y1bc{bottom:938.353500px;}
.y193{bottom:939.898500px;}
.y3c{bottom:944.331000px;}
.y143{bottom:945.060000px;}
.y6c{bottom:946.797000px;}
.y16d{bottom:947.694000px;}
.yf9{bottom:953.386500px;}
.yce{bottom:955.764000px;}
.y4{bottom:959.500500px;}
.y3b{bottom:962.263500px;}
.y6b{bottom:964.729500px;}
.y8f{bottom:965.940000px;}
.yf8{bottom:971.320500px;}
.y192{bottom:972.627000px;}
.ycd{bottom:973.696500px;}
.yac{bottom:979.518000px;}
.y3a{bottom:980.196000px;}
.y6a{bottom:982.662000px;}
.y142{bottom:983.313000px;}
.y16c{bottom:989.163000px;}
.yf7{bottom:989.253000px;}
.y39{bottom:998.130000px;}
.y69{bottom:1000.594500px;}
.y1bb{bottom:1004.107500px;}
.y16b{bottom:1007.095500px;}
.yf6{bottom:1007.185500px;}
.y8e{bottom:1008.076500px;}
.y3{bottom:1010.845500px;}
.yab{bottom:1015.383000px;}
.y38{bottom:1016.062500px;}
.y68{bottom:1018.528500px;}
.y1ba{bottom:1022.040000px;}
.yf5{bottom:1025.118000px;}
.y37{bottom:1033.995000px;}
.y67{bottom:1036.461000px;}
.y16a{bottom:1039.972500px;}
.y2{bottom:1040.734500px;}
.yaa{bottom:1042.621500px;}
.yf4{bottom:1043.050500px;}
.y8d{bottom:1043.941500px;}
.y1b9{bottom:1045.950000px;}
.y36{bottom:1051.927500px;}
.y66{bottom:1054.393500px;}
.y169{bottom:1057.905000px;}
.ya9{bottom:1060.554000px;}
.yf3{bottom:1060.983000px;}
.y1b8{bottom:1063.882500px;}
.y35{bottom:1069.860000px;}
.y65{bottom:1072.326000px;}
.y168{bottom:1075.837500px;}
.y1{bottom:1076.982000px;}
.ya8{bottom:1078.488000px;}
.y1b7{bottom:1081.815000px;}
.y34{bottom:1087.792500px;}
.y64{bottom:1090.258500px;}
.ya7{bottom:1096.420500px;}
.y33{bottom:1105.726500px;}
.y63{bottom:1108.192500px;}
.ya6{bottom:1114.353000px;}
.y32{bottom:1123.659000px;}
.y31{bottom:1141.591500px;}
.y30{bottom:1198.155000px;}
.h11{height:3.347434px;}
.h17{height:12.955525px;}
.h7{height:24.675533px;}
.h10{height:29.803525px;}
.h12{height:30.021706px;}
.hb{height:32.565829px;}
.he{height:32.661470px;}
.h2{height:32.900573px;}
.h9{height:33.187496px;}
.h1b{height:36.636710px;}
.ha{height:37.013299px;}
.h1a{height:38.250662px;}
.h4{height:40.826735px;}
.hd{height:41.125613px;}
.h8{height:41.484266px;}
.hf{height:42.859105px;}
.hc{height:49.781453px;}
.h6{height:51.979523px;}
.h19{height:55.977155px;}
.h16{height:71.157155px;}
.h14{height:86.017613px;}
.h5{height:86.038650px;}
.h3{height:99.562489px;}
.h18{height:100.303613px;}
.h15{height:100.381525px;}
.h13{height:105.263434px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:62.623500px;}
.x25{left:66.360000px;}
.x4{left:85.039500px;}
.x2c{left:92.511000px;}
.x8{left:103.719000px;}
.xa{left:109.696500px;}
.x6{left:114.919500px;}
.x9{left:122.400000px;}
.x2d{left:124.879500px;}
.x1a{left:133.809000px;}
.x2b{left:150.805500px;}
.x1b{left:157.062000px;}
.x19{left:168.997500px;}
.x22{left:217.785000px;}
.x27{left:236.560500px;}
.xc{left:252.133500px;}
.x29{left:259.605000px;}
.x16{left:270.922500px;}
.x24{left:283.639500px;}
.xe{left:286.786500px;}
.x3{left:291.160500px;}
.x23{left:292.384500px;}
.x2{left:296.485500px;}
.x5{left:301.891500px;}
.x2a{left:309.987000px;}
.x14{left:314.119500px;}
.x17{left:316.354500px;}
.x28{left:321.757500px;}
.x1f{left:332.746500px;}
.x1c{left:345.151500px;}
.xd{left:348.801000px;}
.x1e{left:352.434000px;}
.xb{left:355.608000px;}
.x1{left:358.975500px;}
.xf{left:375.906000px;}
.x21{left:387.385500px;}
.x20{left:393.745500px;}
.x15{left:404.143500px;}
.x18{left:406.378500px;}
.x1d{left:407.680500px;}
.x11{left:422.958000px;}
.x12{left:424.681500px;}
.x10{left:429.805500px;}
.x7{left:434.008500px;}
.x13{left:445.414500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v9{vertical-align:-13.445333pt;}
.v3{vertical-align:-7.968000pt;}
.v14{vertical-align:-5.818667pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:5.818667pt;}
.v4{vertical-align:7.968000pt;}
.vc{vertical-align:16.149333pt;}
.v1{vertical-align:19.285333pt;}
.v13{vertical-align:21.941333pt;}
.v11{vertical-align:25.690667pt;}
.v12{vertical-align:26.912000pt;}
.v8{vertical-align:28.640000pt;}
.ve{vertical-align:29.621333pt;}
.v10{vertical-align:31.509333pt;}
.vd{vertical-align:35.440000pt;}
.v6{vertical-align:36.608000pt;}
.v7{vertical-align:39.904000pt;}
.vb{vertical-align:62.736000pt;}
.va{vertical-align:77.706667pt;}
.v5{vertical-align:90.592000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsbd{letter-spacing:0.000855pt;}
.ls2c{letter-spacing:0.025589pt;}
.ls3e{letter-spacing:0.265669pt;}
.lsb6{letter-spacing:0.531339pt;}
.ls90{letter-spacing:0.774502pt;}
.ls50{letter-spacing:0.850142pt;}
.ls51{letter-spacing:0.903276pt;}
.ls75{letter-spacing:1.046877pt;}
.ls56{letter-spacing:1.061434pt;}
.ls9f{letter-spacing:1.062476pt;}
.ls83{letter-spacing:1.062609pt;}
.lsc0{letter-spacing:1.062677pt;}
.ls82{letter-spacing:1.072871pt;}
.ls70{letter-spacing:1.075025pt;}
.ls8a{letter-spacing:1.275213pt;}
.ls21{letter-spacing:1.328347pt;}
.ls92{letter-spacing:1.439051pt;}
.ls96{letter-spacing:1.444384pt;}
.ls3a{letter-spacing:1.551509pt;}
.ls6e{letter-spacing:1.594016pt;}
.ls93{letter-spacing:1.745448pt;}
.ls3b{letter-spacing:1.939387pt;}
.ls47{letter-spacing:2.019087pt;}
.ls8{letter-spacing:2.125355pt;}
.ls84{letter-spacing:2.125593pt;}
.ls48{letter-spacing:2.369364pt;}
.ls4d{letter-spacing:2.369614pt;}
.ls54{letter-spacing:2.372962pt;}
.ls40{letter-spacing:2.389044pt;}
.ls4b{letter-spacing:2.396211pt;}
.ls52{letter-spacing:2.400672pt;}
.ls11{letter-spacing:2.656693pt;}
.ls5e{letter-spacing:2.975497pt;}
.lsb{letter-spacing:3.047355pt;}
.ls1a{letter-spacing:3.081764pt;}
.ls9c{letter-spacing:3.103019pt;}
.ls7e{letter-spacing:3.188032pt;}
.lsa7{letter-spacing:3.241166pt;}
.lsad{letter-spacing:3.251814pt;}
.ls25{letter-spacing:3.294300pt;}
.lsb2{letter-spacing:3.299635pt;}
.lsaf{letter-spacing:3.347456pt;}
.ls9b{letter-spacing:3.373025pt;}
.ls67{letter-spacing:3.559969pt;}
.ls39{letter-spacing:3.568471pt;}
.ls38{letter-spacing:3.684835pt;}
.lsa5{letter-spacing:3.985040pt;}
.ls7d{letter-spacing:4.033053pt;}
.ls14{letter-spacing:4.038174pt;}
.ls44{letter-spacing:4.227925pt;}
.ls9d{letter-spacing:4.266651pt;}
.ls31{letter-spacing:4.410111pt;}
.ls3d{letter-spacing:4.463245pt;}
.ls34{letter-spacing:4.695106pt;}
.ls8d{letter-spacing:4.941450pt;}
.ls3f{letter-spacing:5.100851pt;}
.ls1d{letter-spacing:5.408045pt;}
.ls7{letter-spacing:5.632190pt;}
.ls7c{letter-spacing:6.450900pt;}
.ls7f{letter-spacing:6.467230pt;}
.ls29{letter-spacing:9.404694pt;}
.ls28{letter-spacing:9.457828pt;}
.lsbc{letter-spacing:9.510962pt;}
.ls95{letter-spacing:10.837551pt;}
.ls91{letter-spacing:10.842884pt;}
.lsa3{letter-spacing:11.476915pt;}
.ls19{letter-spacing:11.795718pt;}
.ls43{letter-spacing:12.008254pt;}
.ls89{letter-spacing:12.220789pt;}
.ls87{letter-spacing:12.327057pt;}
.lsbe{letter-spacing:12.380191pt;}
.ls66{letter-spacing:12.592726pt;}
.ls65{letter-spacing:13.124065pt;}
.ls1{letter-spacing:13.281067pt;}
.ls2{letter-spacing:13.283467pt;}
.ls0{letter-spacing:13.285043pt;}
.ls69{letter-spacing:13.336601pt;}
.ls99{letter-spacing:13.549136pt;}
.ls86{letter-spacing:13.602270pt;}
.ls16{letter-spacing:13.708538pt;}
.ls23{letter-spacing:13.867939pt;}
.ls30{letter-spacing:13.921073pt;}
.lsa0{letter-spacing:14.399278pt;}
.ls64{letter-spacing:14.718081pt;}
.ls36{letter-spacing:14.771215pt;}
.ls18{letter-spacing:14.877483pt;}
.ls79{letter-spacing:14.930617pt;}
.ls61{letter-spacing:15.143152pt;}
.lsa9{letter-spacing:15.196286pt;}
.ls22{letter-spacing:15.408821pt;}
.ls24{letter-spacing:15.461955pt;}
.lsa2{letter-spacing:15.515089pt;}
.ls76{letter-spacing:15.568223pt;}
.ls4f{letter-spacing:15.621357pt;}
.lsb7{letter-spacing:15.727625pt;}
.ls63{letter-spacing:15.780758pt;}
.lsb9{letter-spacing:15.833892pt;}
.lse{letter-spacing:15.940160pt;}
.ls6f{letter-spacing:15.993294pt;}
.ls20{letter-spacing:16.099562pt;}
.ls6{letter-spacing:16.152695pt;}
.ls6a{letter-spacing:16.205829pt;}
.lsd{letter-spacing:16.258963pt;}
.ls81{letter-spacing:16.312097pt;}
.ls7a{letter-spacing:16.365231pt;}
.ls4a{letter-spacing:16.418365pt;}
.ls5b{letter-spacing:16.471499pt;}
.ls41{letter-spacing:16.563925pt;}
.lsb8{letter-spacing:16.790302pt;}
.ls5c{letter-spacing:16.896570pt;}
.ls6b{letter-spacing:16.949703pt;}
.ls2f{letter-spacing:17.002837pt;}
.lsa4{letter-spacing:17.162239pt;}
.ls2a{letter-spacing:17.215373pt;}
.ls62{letter-spacing:17.268507pt;}
.ls60{letter-spacing:17.321641pt;}
.ls10{letter-spacing:17.374774pt;}
.ls55{letter-spacing:17.405375pt;}
.lsa{letter-spacing:17.427908pt;}
.lsc2{letter-spacing:17.640444pt;}
.ls37{letter-spacing:17.746711pt;}
.ls98{letter-spacing:17.795925pt;}
.ls78{letter-spacing:17.852979pt;}
.ls88{letter-spacing:17.873073pt;}
.ls5a{letter-spacing:17.906113pt;}
.ls6d{letter-spacing:17.959247pt;}
.ls49{letter-spacing:17.998592pt;}
.ls46{letter-spacing:18.003925pt;}
.ls5f{letter-spacing:18.012381pt;}
.ls4c{letter-spacing:18.121259pt;}
.ls17{letter-spacing:18.224916pt;}
.ls53{letter-spacing:18.264800pt;}
.ls4e{letter-spacing:18.270133pt;}
.lsf{letter-spacing:18.278050pt;}
.ls6c{letter-spacing:18.596853pt;}
.ls58{letter-spacing:18.649987pt;}
.lsa1{letter-spacing:18.756255pt;}
.ls80{letter-spacing:18.790387pt;}
.ls7b{letter-spacing:18.809389pt;}
.ls94{letter-spacing:18.835120pt;}
.ls72{letter-spacing:18.968790pt;}
.ls35{letter-spacing:18.985259pt;}
.ls1f{letter-spacing:18.990592pt;}
.ls32{letter-spacing:19.075058pt;}
.ls13{letter-spacing:19.340727pt;}
.ls9a{letter-spacing:19.355739pt;}
.lsc1{letter-spacing:19.606397pt;}
.ls74{letter-spacing:19.659531pt;}
.ls8c{letter-spacing:19.745073pt;}
.ls2e{letter-spacing:19.818932pt;}
.ls12{letter-spacing:19.872066pt;}
.ls15{letter-spacing:20.046592pt;}
.ls9{letter-spacing:20.072800pt;}
.ls5d{letter-spacing:20.137735pt;}
.ls2b{letter-spacing:20.297137pt;}
.lsba{letter-spacing:20.579925pt;}
.ls5{letter-spacing:20.635683pt;}
.ls8e{letter-spacing:20.827739pt;}
.ls85{letter-spacing:20.833073pt;}
.lsa6{letter-spacing:20.934743pt;}
.ls8f{letter-spacing:21.134861pt;}
.ls33{letter-spacing:21.232045pt;}
.ls1c{letter-spacing:21.253547pt;}
.ls2d{letter-spacing:21.359814pt;}
.ls42{letter-spacing:21.572350pt;}
.ls1e{letter-spacing:22.422492pt;}
.ls27{letter-spacing:23.006964pt;}
.ls73{letter-spacing:23.113232pt;}
.ls1b{letter-spacing:25.454592pt;}
.ls4{letter-spacing:26.566933pt;}
.ls57{letter-spacing:53.133867pt;}
.ls59{letter-spacing:55.259221pt;}
.lsab{letter-spacing:56.141619pt;}
.ls71{letter-spacing:112.750065pt;}
.lsac{letter-spacing:113.765683pt;}
.ls77{letter-spacing:168.912562pt;}
.lsae{letter-spacing:171.246285pt;}
.lsb0{letter-spacing:228.535603pt;}
.lsb1{letter-spacing:228.583424pt;}
.ls68{letter-spacing:237.880321pt;}
.lsa8{letter-spacing:250.632449pt;}
.lsb3{letter-spacing:285.346714pt;}
.lsb5{letter-spacing:343.114240pt;}
.lsb4{letter-spacing:343.305523pt;}
.lsbb{letter-spacing:455.632045pt;}
.lsaa{letter-spacing:515.876711pt;}
.ls3c{letter-spacing:529.369838pt;}
.lsbf{letter-spacing:710.240396pt;}
.ls26{letter-spacing:744.352338pt;}
.lsc{letter-spacing:769.909728pt;}
.ls8b{letter-spacing:869.137073pt;}
.ls45{letter-spacing:973.837508pt;}
.ls97{letter-spacing:988.195120pt;}
.ls9e{letter-spacing:994.109893pt;}
.ws4{word-spacing:-55.100000pt;}
.ws7f{word-spacing:-54.409079pt;}
.wsd2{word-spacing:-42.613361pt;}
.wsad{word-spacing:-42.082022pt;}
.wsac{word-spacing:-39.956668pt;}
.ws21{word-spacing:-39.850400pt;}
.ws3{word-spacing:-38.570000pt;}
.ws81{word-spacing:-37.087439pt;}
.ws6e{word-spacing:-36.874903pt;}
.ws8c{word-spacing:-36.502966pt;}
.ws60{word-spacing:-36.449833pt;}
.ws80{word-spacing:-35.440289pt;}
.ws86{word-spacing:-35.387155pt;}
.ws79{word-spacing:-31.986588pt;}
.ws102{word-spacing:-31.880533pt;}
.ws1{word-spacing:-31.880400pt;}
.ws9b{word-spacing:-30.764509pt;}
.ws74{word-spacing:-30.658241pt;}
.ws9{word-spacing:-26.566933pt;}
.ws93{word-spacing:-26.035595pt;}
.ws78{word-spacing:-25.982461pt;}
.wsa5{word-spacing:-25.663658pt;}
.ws68{word-spacing:-24.494713pt;}
.ws8{word-spacing:-21.253600pt;}
.wse3{word-spacing:-19.978334pt;}
.ws6{word-spacing:-19.393867pt;}
.ws2c{word-spacing:-18.543719pt;}
.ws4f{word-spacing:-18.331184pt;}
.wsed{word-spacing:-18.278050pt;}
.ws44{word-spacing:-18.171782pt;}
.ws65{word-spacing:-17.959247pt;}
.ws1d{word-spacing:-17.799845pt;}
.wse7{word-spacing:-17.640444pt;}
.wsb4{word-spacing:-17.109105pt;}
.wsd3{word-spacing:-17.055971pt;}
.ws47{word-spacing:-16.684034pt;}
.ws104{word-spacing:-16.577766pt;}
.ws40{word-spacing:-16.418365pt;}
.ws5c{word-spacing:-16.365231pt;}
.wsfd{word-spacing:-16.205829pt;}
.ws31{word-spacing:-16.152695pt;}
.ws3a{word-spacing:-15.940267pt;}
.ws26{word-spacing:-15.940160pt;}
.ws5f{word-spacing:-15.887026pt;}
.wsbb{word-spacing:-15.674491pt;}
.ws23{word-spacing:-15.621357pt;}
.ws42{word-spacing:-15.568223pt;}
.wsec{word-spacing:-15.515089pt;}
.wsab{word-spacing:-15.408821pt;}
.wsf1{word-spacing:-15.302554pt;}
.wsd{word-spacing:-15.254835pt;}
.wse0{word-spacing:-15.196286pt;}
.ws34{word-spacing:-15.143152pt;}
.wsb5{word-spacing:-15.090018pt;}
.ws91{word-spacing:-15.036884pt;}
.wsd6{word-spacing:-14.877483pt;}
.wsea{word-spacing:-14.771215pt;}
.ws49{word-spacing:-14.718081pt;}
.wsfc{word-spacing:-14.664947pt;}
.wse9{word-spacing:-14.611813pt;}
.ws43{word-spacing:-14.558679pt;}
.ws4e{word-spacing:-14.505546pt;}
.ws19{word-spacing:-14.441882pt;}
.ws66{word-spacing:-14.293010pt;}
.ws29{word-spacing:-14.239876pt;}
.wsf3{word-spacing:-14.133609pt;}
.ws64{word-spacing:-14.080475pt;}
.wsf9{word-spacing:-13.974207pt;}
.ws3e{word-spacing:-13.921073pt;}
.ws59{word-spacing:-13.867939pt;}
.ws10{word-spacing:-13.820211pt;}
.ws57{word-spacing:-13.814805pt;}
.wsf{word-spacing:-13.724570pt;}
.ws10b{word-spacing:-13.708538pt;}
.ws28{word-spacing:-13.602270pt;}
.ws9e{word-spacing:-13.549136pt;}
.ws1f{word-spacing:-13.496002pt;}
.ws69{word-spacing:-13.442868pt;}
.ws8a{word-spacing:-13.389734pt;}
.ws56{word-spacing:-13.336601pt;}
.ws5{word-spacing:-13.283467pt;}
.ws36{word-spacing:-13.230333pt;}
.wse{word-spacing:-13.198541pt;}
.wscf{word-spacing:-13.177199pt;}
.ws25{word-spacing:-13.070931pt;}
.ws24{word-spacing:-13.017797pt;}
.ws58{word-spacing:-12.964663pt;}
.ws7e{word-spacing:-12.911530pt;}
.ws83{word-spacing:-12.805262pt;}
.ws52{word-spacing:-12.698994pt;}
.ws55{word-spacing:-12.645860pt;}
.ws67{word-spacing:-12.592726pt;}
.wsc{word-spacing:-12.576870pt;}
.ws2a{word-spacing:-12.539593pt;}
.ws76{word-spacing:-12.486459pt;}
.ws3b{word-spacing:-12.433325pt;}
.wsd4{word-spacing:-12.327057pt;}
.wseb{word-spacing:-12.220789pt;}
.wsa4{word-spacing:-12.061388pt;}
.wsd7{word-spacing:-12.008254pt;}
.ws1b{word-spacing:-11.955200pt;}
.ws61{word-spacing:-11.901986pt;}
.ws62{word-spacing:-11.848852pt;}
.ws77{word-spacing:-11.795718pt;}
.ws38{word-spacing:-11.742585pt;}
.ws6a{word-spacing:-11.689451pt;}
.ws45{word-spacing:-11.636317pt;}
.ws97{word-spacing:-11.583183pt;}
.ws8b{word-spacing:-11.530049pt;}
.ws8f{word-spacing:-11.476915pt;}
.ws8e{word-spacing:-11.423781pt;}
.ws17{word-spacing:-11.381350pt;}
.ws18{word-spacing:-11.333530pt;}
.wsb1{word-spacing:-11.264380pt;}
.ws3c{word-spacing:-11.211246pt;}
.wsf6{word-spacing:-11.158112pt;}
.ws8d{word-spacing:-11.104978pt;}
.ws41{word-spacing:-11.051844pt;}
.ws4a{word-spacing:-10.998710pt;}
.ws54{word-spacing:-10.945577pt;}
.wsd9{word-spacing:-10.892443pt;}
.ws5e{word-spacing:-10.839309pt;}
.wsda{word-spacing:-10.786175pt;}
.ws9c{word-spacing:-10.733041pt;}
.ws0{word-spacing:-10.626800pt;}
.ws2b{word-spacing:-10.626773pt;}
.wsa0{word-spacing:-10.520506pt;}
.wsd5{word-spacing:-10.414238pt;}
.wsaf{word-spacing:-10.408888pt;}
.wsb0{word-spacing:-10.403555pt;}
.wsfb{word-spacing:-10.361104pt;}
.ws13{word-spacing:-10.329293pt;}
.wsa8{word-spacing:-10.307970pt;}
.ws1e{word-spacing:-10.095435pt;}
.ws2d{word-spacing:-10.042301pt;}
.ws51{word-spacing:-9.989167pt;}
.wsef{word-spacing:-9.936033pt;}
.ws39{word-spacing:-9.829765pt;}
.wse4{word-spacing:-9.776631pt;}
.ws33{word-spacing:-9.723498pt;}
.wsb{word-spacing:-9.707622pt;}
.ws90{word-spacing:-9.670364pt;}
.ws9a{word-spacing:-9.564096pt;}
.ws12{word-spacing:-9.516339pt;}
.ws82{word-spacing:-9.510962pt;}
.ws7a{word-spacing:-9.457828pt;}
.ws37{word-spacing:-9.404694pt;}
.ws15{word-spacing:-9.372877pt;}
.ws2f{word-spacing:-9.351561pt;}
.ws63{word-spacing:-9.298427pt;}
.ws5b{word-spacing:-9.245293pt;}
.ws20{word-spacing:-9.192159pt;}
.ws50{word-spacing:-9.139025pt;}
.ws10a{word-spacing:-9.032757pt;}
.ws9f{word-spacing:-8.979623pt;}
.ws16{word-spacing:-8.942490pt;}
.ws94{word-spacing:-8.926490pt;}
.ws99{word-spacing:-8.873356pt;}
.ws7d{word-spacing:-8.820222pt;}
.ws53{word-spacing:-8.767088pt;}
.wsdc{word-spacing:-8.660820pt;}
.ws75{word-spacing:-8.607686pt;}
.ws3f{word-spacing:-8.554553pt;}
.ws11{word-spacing:-8.464282pt;}
.ws6b{word-spacing:-8.448285pt;}
.ws6c{word-spacing:-8.395151pt;}
.wsa{word-spacing:-8.368640pt;}
.ws30{word-spacing:-8.342017pt;}
.ws1a{word-spacing:-8.320819pt;}
.ws35{word-spacing:-8.288883pt;}
.wsfe{word-spacing:-8.235749pt;}
.wsfa{word-spacing:-8.129482pt;}
.wsd8{word-spacing:-7.970080pt;}
.ws48{word-spacing:-7.863812pt;}
.ws3d{word-spacing:-7.704411pt;}
.wsf2{word-spacing:-7.651277pt;}
.wsdd{word-spacing:-7.598143pt;}
.wsde{word-spacing:-7.545009pt;}
.wsf4{word-spacing:-7.491875pt;}
.ws4b{word-spacing:-7.438741pt;}
.wsb2{word-spacing:-7.385607pt;}
.ws27{word-spacing:-7.332474pt;}
.ws101{word-spacing:-7.279340pt;}
.wsbe{word-spacing:-7.226206pt;}
.wsbd{word-spacing:-7.173072pt;}
.wsf7{word-spacing:-6.960537pt;}
.ws106{word-spacing:-6.907403pt;}
.wsdf{word-spacing:-6.854269pt;}
.ws4d{word-spacing:-6.801135pt;}
.wse8{word-spacing:-6.748001pt;}
.ws7c{word-spacing:-6.535466pt;}
.ws5d{word-spacing:-6.322930pt;}
.ws73{word-spacing:-5.950993pt;}
.ws2e{word-spacing:-5.844725pt;}
.wsbc{word-spacing:-5.832689pt;}
.wsf8{word-spacing:-5.791591pt;}
.wsb7{word-spacing:-5.776089pt;}
.ws100{word-spacing:-5.738458pt;}
.wsf0{word-spacing:-5.685324pt;}
.ws14{word-spacing:-5.451571pt;}
.wsd0{word-spacing:-5.366521pt;}
.wsa3{word-spacing:-5.153985pt;}
.wsff{word-spacing:-5.100851pt;}
.wsa7{word-spacing:-4.994583pt;}
.wse1{word-spacing:-4.929740pt;}
.ws103{word-spacing:-4.410111pt;}
.wsb6{word-spacing:-4.356977pt;}
.ws32{word-spacing:-4.303843pt;}
.wsd1{word-spacing:-4.197575pt;}
.ws46{word-spacing:-4.144442pt;}
.wse6{word-spacing:-4.038174pt;}
.ws5a{word-spacing:-3.825638pt;}
.ws89{word-spacing:-3.456642pt;}
.ws72{word-spacing:-3.454022pt;}
.ws84{word-spacing:-3.453810pt;}
.ws6d{word-spacing:-3.452622pt;}
.wsa2{word-spacing:-3.452175pt;}
.ws87{word-spacing:-3.451309pt;}
.wsaa{word-spacing:-3.450335pt;}
.wsc0{word-spacing:-3.299635pt;}
.ws4c{word-spacing:-3.081764pt;}
.wsf5{word-spacing:-2.975497pt;}
.wsee{word-spacing:-2.922363pt;}
.wse5{word-spacing:-2.497292pt;}
.wse2{word-spacing:-1.977923pt;}
.ws92{word-spacing:-1.976342pt;}
.ws98{word-spacing:-1.746982pt;}
.ws6f{word-spacing:-1.647150pt;}
.ws70{word-spacing:-1.594016pt;}
.ws9d{word-spacing:-0.894820pt;}
.wsa1{word-spacing:-0.667309pt;}
.wsb9{word-spacing:-0.053134pt;}
.wsc3{word-spacing:-0.047821pt;}
.wsae{word-spacing:-0.038788pt;}
.ws22{word-spacing:0.000000pt;}
.ws7b{word-spacing:3.303658pt;}
.wsb3{word-spacing:3.719371pt;}
.ws71{word-spacing:8.212220pt;}
.ws7{word-spacing:10.584293pt;}
.ws109{word-spacing:11.955120pt;}
.ws95{word-spacing:12.539593pt;}
.ws2{word-spacing:13.230333pt;}
.ws105{word-spacing:14.027341pt;}
.ws96{word-spacing:14.664947pt;}
.wsb8{word-spacing:14.718081pt;}
.ws107{word-spacing:14.930617pt;}
.wsc2{word-spacing:27.066573pt;}
.wsc4{word-spacing:27.162214pt;}
.ws1c{word-spacing:31.880533pt;}
.wsc1{word-spacing:32.231219pt;}
.wsbf{word-spacing:33.426739pt;}
.wsc7{word-spacing:33.570202pt;}
.wsc5{word-spacing:33.713664pt;}
.wsc6{word-spacing:34.191872pt;}
.ws108{word-spacing:34.377612pt;}
.wsdb{word-spacing:37.193707pt;}
.wsce{word-spacing:41.662633pt;}
.wscd{word-spacing:99.047593pt;}
.wscc{word-spacing:156.432553pt;}
.wscb{word-spacing:213.817513pt;}
.wsc8{word-spacing:271.202473pt;}
.wsc9{word-spacing:272.063247pt;}
.wsca{word-spacing:330.022057pt;}
.wsba{word-spacing:430.384320pt;}
.wsa6{word-spacing:776.976532pt;}
.wsa9{word-spacing:1041.488331pt;}
.ws88{word-spacing:1051.669116pt;}
.ws85{word-spacing:1059.615782pt;}
._11{margin-left:-13.283467pt;}
._4{margin-left:-6.612000pt;}
._6{margin-left:-5.195440pt;}
._5{margin-left:-4.250200pt;}
._8{margin-left:-3.306000pt;}
._0{margin-left:-2.125360pt;}
._7{margin-left:-1.180640pt;}
._1{width:1.487752pt;}
._9{width:2.924460pt;}
._23{width:4.463245pt;}
._22{width:5.443065pt;}
._26{width:6.448105pt;}
._1d{width:9.723499pt;}
._16{width:11.507646pt;}
._3{width:13.283467pt;}
._2{width:15.132563pt;}
._a{width:16.100667pt;}
._b{width:17.769126pt;}
._21{width:18.703148pt;}
._e{width:19.639469pt;}
._20{width:21.147295pt;}
._2f{width:22.043121pt;}
._c{width:22.997531pt;}
._24{width:24.079730pt;}
._18{width:25.026057pt;}
._13{width:26.779470pt;}
._2e{width:27.948403pt;}
._f{width:29.053524pt;}
._1a{width:30.457397pt;}
._10{width:31.998288pt;}
._19{width:33.580614pt;}
._15{width:34.495587pt;}
._d{width:36.152525pt;}
._1e{width:37.364810pt;}
._1f{width:38.598584pt;}
._14{width:41.798314pt;}
._17{width:46.025636pt;}
._30{width:50.317777pt;}
._1c{width:53.133867pt;}
._1b{width:63.761067pt;}
._2c{width:76.353366pt;}
._28{width:81.093981pt;}
._29{width:113.919010pt;}
._2b{width:119.657478pt;}
._2a{width:131.665722pt;}
._2d{width:290.240577pt;}
._27{width:306.700389pt;}
._25{width:457.672194pt;}
._12{width:1313.429973pt;}
.fs9{font-size:26.566933pt;}
.fs8{font-size:29.224000pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:38.787733pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:110.200000pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:54.637333pt;}
.y8c{bottom:94.488000pt;}
.y2e{bottom:95.993333pt;}
.y191{bottom:96.569333pt;}
.y11e{bottom:98.872000pt;}
.yf2{bottom:100.110667pt;}
.y8b{bottom:110.428000pt;}
.y1b6{bottom:111.160000pt;}
.y2d{bottom:111.934667pt;}
.y190{bottom:112.509333pt;}
.yef{bottom:113.261333pt;}
.yf1{bottom:113.448000pt;}
.y11d{bottom:113.484000pt;}
.y167{bottom:118.266667pt;}
.yf0{bottom:119.352000pt;}
.y141{bottom:119.581333pt;}
.y8a{bottom:126.368000pt;}
.y1b5{bottom:127.100000pt;}
.y2c{bottom:127.874667pt;}
.y11c{bottom:128.096000pt;}
.y62{bottom:128.516000pt;}
.y166{bottom:134.206667pt;}
.y140{bottom:135.521333pt;}
.y18f{bottom:142.198667pt;}
.ycc{bottom:142.309333pt;}
.y11b{bottom:142.708000pt;}
.y2b{bottom:143.814667pt;}
.y61{bottom:144.456000pt;}
.y1b4{bottom:148.354667pt;}
.y165{bottom:150.146667pt;}
.yee{bottom:150.721333pt;}
.y89{bottom:153.700000pt;}
.y11a{bottom:157.318667pt;}
.y60{bottom:160.397333pt;}
.y13f{bottom:160.613333pt;}
.y1b3{bottom:164.294667pt;}
.ycb{bottom:166.521333pt;}
.yed{bottom:166.661333pt;}
.ya5{bottom:167.278667pt;}
.y119{bottom:171.930667pt;}
.y2a{bottom:172.906667pt;}
.y5f{bottom:176.337333pt;}
.y18e{bottom:179.060000pt;}
.y164{bottom:179.370667pt;}
.ya4{bottom:183.218667pt;}
.y1b2{bottom:185.548000pt;}
.y13e{bottom:185.706667pt;}
.y118{bottom:186.542667pt;}
.yec{bottom:190.572000pt;}
.y5e{bottom:192.277333pt;}
.y18d{bottom:195.000000pt;}
.y163{bottom:195.310667pt;}
.yca{bottom:195.341333pt;}
.y88{bottom:195.450667pt;}
.y117{bottom:201.154667pt;}
.y1b1{bottom:201.488000pt;}
.yc9{bottom:205.317333pt;}
.y5d{bottom:208.217333pt;}
.ya3{bottom:208.449333pt;}
.y18c{bottom:210.941333pt;}
.y13d{bottom:211.245333pt;}
.y116{bottom:215.766667pt;}
.yeb{bottom:222.452000pt;}
.y1b0{bottom:222.741333pt;}
.y5c{bottom:224.157333pt;}
.ya2{bottom:224.389333pt;}
.y162{bottom:224.998667pt;}
.y18b{bottom:226.881333pt;}
.y115{bottom:230.378667pt;}
.y13c{bottom:236.782667pt;}
.y87{bottom:237.201333pt;}
.y29{bottom:238.082667pt;}
.y1af{bottom:238.682667pt;}
.ya1{bottom:240.329333pt;}
.y18a{bottom:242.821333pt;}
.y114{bottom:244.990667pt;}
.yc8{bottom:245.977333pt;}
.yea{bottom:246.362667pt;}
.y13b{bottom:252.724000pt;}
.y86{bottom:253.141333pt;}
.y5b{bottom:253.846667pt;}
.y189{bottom:258.761333pt;}
.y113{bottom:259.602667pt;}
.y1ae{bottom:259.936000pt;}
.y161{bottom:261.861333pt;}
.ya0{bottom:270.018667pt;}
.yc7{bottom:270.540000pt;}
.y28{bottom:271.886667pt;}
.y112{bottom:274.214667pt;}
.y188{bottom:274.701333pt;}
.y1ad{bottom:275.876000pt;}
.y160{bottom:277.801333pt;}
.y13a{bottom:277.816000pt;}
.ye9{bottom:278.242667pt;}
.y85{bottom:280.473333pt;}
.y27{bottom:286.498667pt;}
.y111{bottom:288.826667pt;}
.y187{bottom:290.641333pt;}
.y5a{bottom:290.708000pt;}
.y15f{bottom:293.741333pt;}
.y139{bottom:293.756000pt;}
.ye8{bottom:294.182667pt;}
.y84{bottom:296.414667pt;}
.y1ac{bottom:297.129333pt;}
.y26{bottom:301.110667pt;}
.y110{bottom:303.437333pt;}
.y186{bottom:306.582667pt;}
.y59{bottom:306.648000pt;}
.yc6{bottom:307.384000pt;}
.ye7{bottom:310.124000pt;}
.y9f{bottom:310.944000pt;}
.y83{bottom:312.354667pt;}
.y1ab{bottom:313.069333pt;}
.y25{bottom:315.722667pt;}
.y10f{bottom:318.049333pt;}
.y138{bottom:318.849333pt;}
.y58{bottom:322.588000pt;}
.y15e{bottom:322.965333pt;}
.ye6{bottom:326.064000pt;}
.y82{bottom:328.294667pt;}
.y24{bottom:330.334667pt;}
.y10e{bottom:332.661333pt;}
.y137{bottom:334.789333pt;}
.y185{bottom:336.270667pt;}
.y57{bottom:338.529333pt;}
.y15d{bottom:338.905333pt;}
.yc5{bottom:339.264000pt;}
.y1aa{bottom:342.161333pt;}
.y23{bottom:344.946667pt;}
.y10d{bottom:347.273333pt;}
.y56{bottom:354.469333pt;}
.y15c{bottom:354.845333pt;}
.ye5{bottom:355.752000pt;}
.y81{bottom:357.982667pt;}
.y22{bottom:359.558667pt;}
.y136{bottom:360.328000pt;}
.yc4{bottom:363.826667pt;}
.y55{bottom:370.409333pt;}
.y184{bottom:373.132000pt;}
.y21{bottom:374.170667pt;}
.y1a9{bottom:380.770667pt;}
.y15b{bottom:381.413333pt;}
.y10c{bottom:383.272000pt;}
.y135{bottom:385.865333pt;}
.y54{bottom:386.349333pt;}
.y20{bottom:388.782667pt;}
.y183{bottom:389.073333pt;}
.ye4{bottom:392.614667pt;}
.yc3{bottom:392.646667pt;}
.y16{bottom:392.766667pt;}
.y80{bottom:394.504000pt;}
.y15a{bottom:397.353333pt;}
.y10b{bottom:399.212000pt;}
.y134{bottom:401.806667pt;}
.y53{bottom:402.289333pt;}
.yc2{bottom:402.622667pt;}
.y1f{bottom:403.394667pt;}
.y182{bottom:405.013333pt;}
.y15{bottom:405.386667pt;}
.ye3{bottom:408.554667pt;}
.y7f{bottom:410.445333pt;}
.y1a8{bottom:410.460000pt;}
.y10a{bottom:415.152000pt;}
.y133{bottom:417.746667pt;}
.y14{bottom:418.005333pt;}
.y181{bottom:420.953333pt;}
.y159{bottom:423.920000pt;}
.ye2{bottom:424.494667pt;}
.y7e{bottom:426.385333pt;}
.y13{bottom:430.625333pt;}
.y109{bottom:431.092000pt;}
.y52{bottom:431.978667pt;}
.y1e{bottom:432.617333pt;}
.y180{bottom:436.893333pt;}
.y158{bottom:439.860000pt;}
.ye1{bottom:440.434667pt;}
.y132{bottom:442.838667pt;}
.y12{bottom:443.244000pt;}
.yc1{bottom:443.284000pt;}
.y1d{bottom:447.229333pt;}
.y1a7{bottom:447.321333pt;}
.y17f{bottom:452.833333pt;}
.y7d{bottom:453.717333pt;}
.y157{bottom:455.800000pt;}
.y131{bottom:458.780000pt;}
.y1c{bottom:461.841333pt;}
.y108{bottom:465.470667pt;}
.yc0{bottom:467.496000pt;}
.y11{bottom:468.482667pt;}
.y17e{bottom:468.773333pt;}
.y51{bottom:468.840000pt;}
.y1b{bottom:476.453333pt;}
.y1a6{bottom:477.009333pt;}
.y7c{bottom:479.526667pt;}
.ye0{bottom:480.285333pt;}
.ybf{bottom:483.436000pt;}
.y130{bottom:483.872000pt;}
.y17d{bottom:484.714667pt;}
.y50{bottom:484.780000pt;}
.y156{bottom:485.024000pt;}
.y154{bottom:487.718667pt;}
.y1a{bottom:491.065333pt;}
.y107{bottom:494.561333pt;}
.y7b{bottom:495.468000pt;}
.ybe{bottom:499.376000pt;}
.y12f{bottom:499.812000pt;}
.y17c{bottom:500.654667pt;}
.y4f{bottom:500.720000pt;}
.y10{bottom:501.028000pt;}
.y153{bottom:503.660000pt;}
.y19{bottom:505.677333pt;}
.ydf{bottom:512.165333pt;}
.yf{bottom:513.646667pt;}
.y1a5{bottom:513.872000pt;}
.ybd{bottom:515.316000pt;}
.y17b{bottom:516.594667pt;}
.y4e{bottom:516.661333pt;}
.y152{bottom:519.600000pt;}
.y18{bottom:520.289333pt;}
.y155{bottom:521.686667pt;}
.y12e{bottom:525.350667pt;}
.ye{bottom:526.266667pt;}
.yde{bottom:528.106667pt;}
.y106{bottom:528.940000pt;}
.y1a4{bottom:529.812000pt;}
.y1c9{bottom:531.228000pt;}
.ybc{bottom:532.406667pt;}
.y17a{bottom:532.534667pt;}
.y17{bottom:534.901333pt;}
.y7a{bottom:537.218667pt;}
.yd{bottom:538.885333pt;}
.y12d{bottom:541.290667pt;}
.ydd{bottom:544.046667pt;}
.y4d{bottom:545.752000pt;}
.y1c8{bottom:547.168000pt;}
.yb9{bottom:547.934667pt;}
.y151{bottom:549.288000pt;}
.y105{bottom:558.030667pt;}
.y1a3{bottom:559.500000pt;}
.ydc{bottom:559.986667pt;}
.ybb{bottom:561.528000pt;}
.y179{bottom:562.224000pt;}
.yc{bottom:564.124000pt;}
.yba{bottom:564.184000pt;}
.y79{bottom:564.550667pt;}
.y9e{bottom:566.057333pt;}
.y1c7{bottom:568.421333pt;}
.y12c{bottom:570.980000pt;}
.y104{bottom:573.970667pt;}
.ydb{bottom:575.926667pt;}
.y78{bottom:580.490667pt;}
.y9d{bottom:581.997333pt;}
.y4c{bottom:584.361333pt;}
.y150{bottom:586.150667pt;}
.yb8{bottom:586.980000pt;}
.yda{bottom:591.866667pt;}
.y178{bottom:593.440000pt;}
.y1a2{bottom:596.361333pt;}
.y77{bottom:596.430667pt;}
.y9c{bottom:597.937333pt;}
.y4b{bottom:600.301333pt;}
.y103{bottom:600.485333pt;}
.yb7{bottom:602.920000pt;}
.y1c6{bottom:605.616000pt;}
.y12b{bottom:607.177333pt;}
.yd9{bottom:607.806667pt;}
.y1a1{bottom:612.302667pt;}
.y9b{bottom:613.877333pt;}
.y4a{bottom:616.242667pt;}
.y14f{bottom:618.030667pt;}
.yb6{bottom:618.860000pt;}
.y1c5{bottom:621.556000pt;}
.y12a{bottom:623.118667pt;}
.y76{bottom:626.118667pt;}
.y1a0{bottom:628.242667pt;}
.y9a{bottom:629.818667pt;}
.y177{bottom:632.049333pt;}
.y49{bottom:632.182667pt;}
.y14e{bottom:633.970667pt;}
.y129{bottom:639.058667pt;}
.y102{bottom:640.256000pt;}
.y1c4{bottom:642.809333pt;}
.y19f{bottom:644.182667pt;}
.yb{bottom:645.154667pt;}
.y99{bottom:645.758667pt;}
.y176{bottom:647.989333pt;}
.y48{bottom:648.122667pt;}
.yb5{bottom:648.549333pt;}
.y14d{bottom:649.910667pt;}
.yd8{bottom:652.970667pt;}
.y128{bottom:654.998667pt;}
.y1c3{bottom:658.749333pt;}
.y19e{bottom:660.122667pt;}
.y75{bottom:662.640000pt;}
.y175{bottom:663.930667pt;}
.y47{bottom:664.062667pt;}
.y14c{bottom:665.850667pt;}
.ya{bottom:667.608000pt;}
.y127{bottom:670.938667pt;}
.y101{bottom:672.136000pt;}
.y98{bottom:674.849333pt;}
.y19d{bottom:676.062667pt;}
.y74{bottom:678.580000pt;}
.y174{bottom:679.870667pt;}
.y46{bottom:680.002667pt;}
.y14b{bottom:681.792000pt;}
.yd7{bottom:682.194667pt;}
.y9{bottom:683.549333pt;}
.yb4{bottom:684.509333pt;}
.y19c{bottom:692.004000pt;}
.y73{bottom:694.521333pt;}
.y45{bottom:695.944000pt;}
.y14a{bottom:697.732000pt;}
.yd6{bottom:698.134667pt;}
.y126{bottom:700.030667pt;}
.yb3{bottom:700.449333pt;}
.y100{bottom:701.228000pt;}
.y1c2{bottom:701.257333pt;}
.y8{bottom:702.273333pt;}
.y19b{bottom:707.944000pt;}
.y173{bottom:709.094667pt;}
.y72{bottom:710.461333pt;}
.y44{bottom:711.884000pt;}
.y97{bottom:712.772000pt;}
.y149{bottom:713.672000pt;}
.yd5{bottom:714.076000pt;}
.yff{bottom:717.168000pt;}
.y1c1{bottom:717.197333pt;}
.y19a{bottom:723.884000pt;}
.yb2{bottom:724.661333pt;}
.y172{bottom:725.034667pt;}
.y43{bottom:727.824000pt;}
.y96{bottom:728.712000pt;}
.y148{bottom:729.612000pt;}
.yd4{bottom:730.016000pt;}
.yfe{bottom:733.108000pt;}
.y125{bottom:738.005333pt;}
.y7{bottom:738.138667pt;}
.y1c0{bottom:738.450667pt;}
.y71{bottom:739.552000pt;}
.y199{bottom:739.824000pt;}
.y42{bottom:743.764000pt;}
.y95{bottom:744.652000pt;}
.y147{bottom:745.552000pt;}
.yd3{bottom:745.956000pt;}
.yfd{bottom:749.048000pt;}
.y171{bottom:751.601333pt;}
.yb1{bottom:753.184000pt;}
.y124{bottom:753.945333pt;}
.y198{bottom:755.764000pt;}
.y41{bottom:759.704000pt;}
.y94{bottom:760.592000pt;}
.y6{bottom:764.069333pt;}
.y170{bottom:767.541333pt;}
.yd2{bottom:769.866667pt;}
.y123{bottom:769.885333pt;}
.y197{bottom:771.704000pt;}
.y40{bottom:775.644000pt;}
.y93{bottom:776.533333pt;}
.yb0{bottom:777.396000pt;}
.y70{bottom:777.836000pt;}
.yfc{bottom:778.737333pt;}
.y1bf{bottom:780.957333pt;}
.y16f{bottom:783.481333pt;}
.y146{bottom:785.564000pt;}
.y122{bottom:785.825333pt;}
.y196{bottom:787.645333pt;}
.y5{bottom:790.000000pt;}
.y3f{bottom:791.585333pt;}
.y92{bottom:792.473333pt;}
.yaf{bottom:793.336000pt;}
.y6f{bottom:793.776000pt;}
.y1be{bottom:796.898667pt;}
.y145{bottom:801.505333pt;}
.yd1{bottom:801.746667pt;}
.y121{bottom:801.766667pt;}
.y195{bottom:803.585333pt;}
.y3e{bottom:807.525333pt;}
.y6e{bottom:809.717333pt;}
.y16e{bottom:812.705333pt;}
.yfb{bottom:815.574667pt;}
.y144{bottom:817.445333pt;}
.yd0{bottom:817.686667pt;}
.y91{bottom:817.704000pt;}
.y120{bottom:817.706667pt;}
.yae{bottom:817.898667pt;}
.y1bd{bottom:818.152000pt;}
.y194{bottom:819.525333pt;}
.y3d{bottom:823.465333pt;}
.y6d{bottom:825.657333pt;}
.yfa{bottom:831.514667pt;}
.ycf{bottom:833.626667pt;}
.y90{bottom:833.644000pt;}
.y11f{bottom:833.646667pt;}
.yad{bottom:833.838667pt;}
.y1bc{bottom:834.092000pt;}
.y193{bottom:835.465333pt;}
.y3c{bottom:839.405333pt;}
.y143{bottom:840.053333pt;}
.y6c{bottom:841.597333pt;}
.y16d{bottom:842.394667pt;}
.yf9{bottom:847.454667pt;}
.yce{bottom:849.568000pt;}
.y4{bottom:852.889333pt;}
.y3b{bottom:855.345333pt;}
.y6b{bottom:857.537333pt;}
.y8f{bottom:858.613333pt;}
.yf8{bottom:863.396000pt;}
.y192{bottom:864.557333pt;}
.ycd{bottom:865.508000pt;}
.yac{bottom:870.682667pt;}
.y3a{bottom:871.285333pt;}
.y6a{bottom:873.477333pt;}
.y142{bottom:874.056000pt;}
.y16c{bottom:879.256000pt;}
.yf7{bottom:879.336000pt;}
.y39{bottom:887.226667pt;}
.y69{bottom:889.417333pt;}
.y1bb{bottom:892.540000pt;}
.y16b{bottom:895.196000pt;}
.yf6{bottom:895.276000pt;}
.y8e{bottom:896.068000pt;}
.y3{bottom:898.529333pt;}
.yab{bottom:902.562667pt;}
.y38{bottom:903.166667pt;}
.y68{bottom:905.358667pt;}
.y1ba{bottom:908.480000pt;}
.yf5{bottom:911.216000pt;}
.y37{bottom:919.106667pt;}
.y67{bottom:921.298667pt;}
.y16a{bottom:924.420000pt;}
.y2{bottom:925.097333pt;}
.yaa{bottom:926.774667pt;}
.yf4{bottom:927.156000pt;}
.y8d{bottom:927.948000pt;}
.y1b9{bottom:929.733333pt;}
.y36{bottom:935.046667pt;}
.y66{bottom:937.238667pt;}
.y169{bottom:940.360000pt;}
.ya9{bottom:942.714667pt;}
.yf3{bottom:943.096000pt;}
.y1b8{bottom:945.673333pt;}
.y35{bottom:950.986667pt;}
.y65{bottom:953.178667pt;}
.y168{bottom:956.300000pt;}
.y1{bottom:957.317333pt;}
.ya8{bottom:958.656000pt;}
.y1b7{bottom:961.613333pt;}
.y34{bottom:966.926667pt;}
.y64{bottom:969.118667pt;}
.ya7{bottom:974.596000pt;}
.y33{bottom:982.868000pt;}
.y63{bottom:985.060000pt;}
.ya6{bottom:990.536000pt;}
.y32{bottom:998.808000pt;}
.y31{bottom:1014.748000pt;}
.y30{bottom:1065.026667pt;}
.h11{height:2.975497pt;}
.h17{height:11.516022pt;}
.h7{height:21.933807pt;}
.h10{height:26.492022pt;}
.h12{height:26.685961pt;}
.hb{height:28.947403pt;}
.he{height:29.032418pt;}
.h2{height:29.244954pt;}
.h9{height:29.499997pt;}
.h1b{height:32.565965pt;}
.ha{height:32.900710pt;}
.h1a{height:34.000589pt;}
.h4{height:36.290431pt;}
.hd{height:36.556100pt;}
.h8{height:36.874903pt;}
.hf{height:38.096982pt;}
.hc{height:44.250180pt;}
.h6{height:46.204020pt;}
.h19{height:49.757471pt;}
.h16{height:63.250805pt;}
.h14{height:76.460100pt;}
.h5{height:76.478800pt;}
.h3{height:88.499990pt;}
.h18{height:89.158767pt;}
.h15{height:89.228022pt;}
.h13{height:93.567497pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:55.665333pt;}
.x25{left:58.986667pt;}
.x4{left:75.590667pt;}
.x2c{left:82.232000pt;}
.x8{left:92.194667pt;}
.xa{left:97.508000pt;}
.x6{left:102.150667pt;}
.x9{left:108.800000pt;}
.x2d{left:111.004000pt;}
.x1a{left:118.941333pt;}
.x2b{left:134.049333pt;}
.x1b{left:139.610667pt;}
.x19{left:150.220000pt;}
.x22{left:193.586667pt;}
.x27{left:210.276000pt;}
.xc{left:224.118667pt;}
.x29{left:230.760000pt;}
.x16{left:240.820000pt;}
.x24{left:252.124000pt;}
.xe{left:254.921333pt;}
.x3{left:258.809333pt;}
.x23{left:259.897333pt;}
.x2{left:263.542667pt;}
.x5{left:268.348000pt;}
.x2a{left:275.544000pt;}
.x14{left:279.217333pt;}
.x17{left:281.204000pt;}
.x28{left:286.006667pt;}
.x1f{left:295.774667pt;}
.x1c{left:306.801333pt;}
.xd{left:310.045333pt;}
.x1e{left:313.274667pt;}
.xb{left:316.096000pt;}
.x1{left:319.089333pt;}
.xf{left:334.138667pt;}
.x21{left:344.342667pt;}
.x20{left:349.996000pt;}
.x15{left:359.238667pt;}
.x18{left:361.225333pt;}
.x1d{left:362.382667pt;}
.x11{left:375.962667pt;}
.x12{left:377.494667pt;}
.x10{left:382.049333pt;}
.x7{left:385.785333pt;}
.x13{left:395.924000pt;}
}




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