
    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_d5439b76c16c540c62d760b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_dd217d5963ed2676fed629ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_9ce09ff516f55c04b76bc971.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_d235cddd99fc7b1fa284da4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734375;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_5457d4170d8e8177ed25404d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_ec5765aa312d7c37e8a478bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_3f9b799644c1e766204df668.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_7720c0b841f620c0e292eeda.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_97666d30a1b00eba9b31140b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ab9ac83fca1196ece2852dab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_a5d5862684f9c5c0f02d02a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_c4e5f4221a3000d8daa9f9ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.710000;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_bfbe7ba665adf37d1e844e53.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_47ac2056b22e4352b0d78c8a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_38c0dbd361a082d5301e2ea8.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_e9db7e14a26088c7f41c119d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5c62979773a0f293ff282c5d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c2a63af179f9c571e72f4f0a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.046000;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:ff13;src:url('chunks/assets/font_77e0f41439df7f9851628b14.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.685000;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:ff14;src:url('chunks/assets/font_cae3cc763fae288b46199a6e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.675000;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:ff15;src:url('chunks/assets/font_43bc0f6e54cf0ba35d8c59c3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.999000;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:ff16;src:url('chunks/assets/font_8bcccf04917bd48fe4f0d442.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.875977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-9.816000px;}
.ve{vertical-align:-6.636000px;}
.v12{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:7.716000px;}
.va{vertical-align:11.316000px;}
.v10{vertical-align:12.756000px;}
.v6{vertical-align:16.182000px;}
.vc{vertical-align:17.268000px;}
.v4{vertical-align:18.330000px;}
.v9{vertical-align:21.138000px;}
.vf{vertical-align:22.572000px;}
.v1{vertical-align:23.754000px;}
.v2{vertical-align:27.024000px;}
.v7{vertical-align:30.144000px;}
.v8{vertical-align:31.842000px;}
.v11{vertical-align:34.500000px;}
.v5{vertical-align:44.898000px;}
.vd{vertical-align:49.782000px;}
.ls4{letter-spacing:0.000000px;}
.ls8b{letter-spacing:0.000141px;}
.ls8c{letter-spacing:0.000499px;}
.ls1a{letter-spacing:0.001289px;}
.ls61{letter-spacing:0.001596px;}
.ls2f{letter-spacing:0.001599px;}
.ls84{letter-spacing:0.001605px;}
.ls42{letter-spacing:0.001610px;}
.ls43{letter-spacing:0.002149px;}
.ls67{letter-spacing:0.002413px;}
.ls68{letter-spacing:0.002424px;}
.ls71{letter-spacing:0.002682px;}
.ls20{letter-spacing:0.002696px;}
.ls10{letter-spacing:0.002700px;}
.ls45{letter-spacing:0.002706px;}
.ls11{letter-spacing:0.002712px;}
.ls23{letter-spacing:0.003056px;}
.ls27{letter-spacing:0.004878px;}
.ls8e{letter-spacing:0.006141px;}
.ls21{letter-spacing:0.007289px;}
.ls97{letter-spacing:0.054432px;}
.ls96{letter-spacing:0.076080px;}
.ls99{letter-spacing:0.085536px;}
.ls98{letter-spacing:0.116640px;}
.ls9a{letter-spacing:0.132192px;}
.ls0{letter-spacing:0.139968px;}
.ls1{letter-spacing:0.155520px;}
.ls3d{letter-spacing:0.242692px;}
.ls2{letter-spacing:0.386400px;}
.lsb{letter-spacing:0.453600px;}
.ls2e{letter-spacing:0.508322px;}
.ls6{letter-spacing:0.511056px;}
.lsa{letter-spacing:0.537840px;}
.ls9{letter-spacing:0.628560px;}
.ls3{letter-spacing:0.691800px;}
.ls8{letter-spacing:0.725760px;}
.ls5{letter-spacing:0.812448px;}
.ls7{letter-spacing:1.017360px;}
.ls4e{letter-spacing:1.282347px;}
.ls89{letter-spacing:1.819611px;}
.ls48{letter-spacing:1.825611px;}
.ls44{letter-spacing:2.062335px;}
.ls62{letter-spacing:2.344880px;}
.ls32{letter-spacing:2.347610px;}
.ls46{letter-spacing:2.349242px;}
.ls53{letter-spacing:2.477976px;}
.ls54{letter-spacing:2.483976px;}
.ls22{letter-spacing:2.755488px;}
.ls2b{letter-spacing:2.984915px;}
.ls8d{letter-spacing:2.988532px;}
.ls1f{letter-spacing:2.989289px;}
.ls4b{letter-spacing:2.990915px;}
.ls1b{letter-spacing:2.995289px;}
.ls73{letter-spacing:3.284686px;}
.ls37{letter-spacing:3.454878px;}
.lsc{letter-spacing:5.134864px;}
.ls24{letter-spacing:5.743488px;}
.ls4a{letter-spacing:5.749488px;}
.ls57{letter-spacing:6.370742px;}
.ls7e{letter-spacing:6.887644px;}
.ls1c{letter-spacing:7.043428px;}
.ls15{letter-spacing:7.049428px;}
.ls5f{letter-spacing:7.131229px;}
.ls5c{letter-spacing:7.137229px;}
.ls35{letter-spacing:7.172149px;}
.ls4f{letter-spacing:10.160915px;}
.ls5d{letter-spacing:10.904712px;}
.ls60{letter-spacing:10.910712px;}
.ls78{letter-spacing:10.930918px;}
.ls47{letter-spacing:13.892915px;}
.ls58{letter-spacing:13.937412px;}
.ls90{letter-spacing:14.530921px;}
.lse{letter-spacing:14.539059px;}
.ls2a{letter-spacing:14.543412px;}
.lsd{letter-spacing:14.545059px;}
.ls87{letter-spacing:14.549412px;}
.ls6a{letter-spacing:16.160688px;}
.ls6b{letter-spacing:16.163418px;}
.ls28{letter-spacing:17.528915px;}
.ls29{letter-spacing:17.533289px;}
.ls19{letter-spacing:17.534915px;}
.ls93{letter-spacing:17.536528px;}
.ls49{letter-spacing:17.539289px;}
.ls3a{letter-spacing:17.690692px;}
.ls39{letter-spacing:17.696692px;}
.ls18{letter-spacing:18.179412px;}
.ls74{letter-spacing:18.184332px;}
.ls95{letter-spacing:18.184890px;}
.ls3b{letter-spacing:18.185412px;}
.ls76{letter-spacing:18.187603px;}
.ls26{letter-spacing:18.422692px;}
.ls3c{letter-spacing:18.452692px;}
.ls85{letter-spacing:18.506712px;}
.ls92{letter-spacing:19.184149px;}
.ls3e{letter-spacing:19.298692px;}
.ls38{letter-spacing:19.610915px;}
.ls4c{letter-spacing:19.999611px;}
.ls86{letter-spacing:20.005611px;}
.ls72{letter-spacing:20.149604px;}
.ls55{letter-spacing:20.242335px;}
.ls17{letter-spacing:20.527610px;}
.ls1e{letter-spacing:20.533610px;}
.ls16{letter-spacing:21.164915px;}
.ls1d{letter-spacing:21.170915px;}
.ls5e{letter-spacing:21.175289px;}
.ls40{letter-spacing:21.620149px;}
.ls8a{letter-spacing:21.719412px;}
.ls77{letter-spacing:21.933796px;}
.ls25{letter-spacing:23.132915px;}
.ls31{letter-spacing:23.314864px;}
.ls75{letter-spacing:23.807428px;}
.ls51{letter-spacing:23.944347px;}
.ls59{letter-spacing:24.506915px;}
.ls30{letter-spacing:24.800915px;}
.ls36{letter-spacing:24.806915px;}
.ls69{letter-spacing:25.508686px;}
.ls56{letter-spacing:25.781408px;}
.ls52{letter-spacing:25.886696px;}
.ls14{letter-spacing:26.354915px;}
.lsf{letter-spacing:26.950864px;}
.ls66{letter-spacing:27.340880px;}
.ls65{letter-spacing:27.351242px;}
.ls5a{letter-spacing:28.162880px;}
.ls5b{letter-spacing:28.167242px;}
.ls80{letter-spacing:28.214915px;}
.ls6f{letter-spacing:28.946700px;}
.ls7d{letter-spacing:29.213412px;}
.ls2d{letter-spacing:29.222915px;}
.ls3f{letter-spacing:29.858692px;}
.ls34{letter-spacing:29.885412px;}
.ls33{letter-spacing:30.128692px;}
.ls2c{letter-spacing:30.254915px;}
.ls6c{letter-spacing:30.706332px;}
.ls12{letter-spacing:31.027050px;}
.ls7b{letter-spacing:31.270335px;}
.ls7c{letter-spacing:31.561610px;}
.ls64{letter-spacing:31.852890px;}
.ls41{letter-spacing:32.719059px;}
.ls7a{letter-spacing:32.961796px;}
.ls63{letter-spacing:33.007289px;}
.ls6d{letter-spacing:33.326147px;}
.ls13{letter-spacing:34.544915px;}
.ls79{letter-spacing:35.381644px;}
.ls94{letter-spacing:35.714915px;}
.ls70{letter-spacing:39.146147px;}
.ls6e{letter-spacing:44.608332px;}
.ls4d{letter-spacing:49.961412px;}
.ls7f{letter-spacing:77.505796px;}
.ls8f{letter-spacing:109.392532px;}
.ls88{letter-spacing:157.802915px;}
.ls83{letter-spacing:193.814915px;}
.ls50{letter-spacing:256.028712px;}
.ls91{letter-spacing:374.294706px;}
.ls82{letter-spacing:428.222915px;}
.ls81{letter-spacing:559.832915px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws50{word-spacing:-65.454600px;}
.wsef{word-spacing:-58.503976px;}
.ws111{word-spacing:-53.568045px;}
.ws51{word-spacing:-42.637126px;}
.wsf0{word-spacing:-38.109490px;}
.ws7d{word-spacing:-33.211407px;}
.ws120{word-spacing:-32.714209px;}
.wsda{word-spacing:-31.771663px;}
.wsae{word-spacing:-31.706208px;}
.ws9d{word-spacing:-24.608843px;}
.wsd7{word-spacing:-22.133053px;}
.wsd8{word-spacing:-22.128691px;}
.ws54{word-spacing:-18.183288px;}
.wsf3{word-spacing:-16.252405px;}
.ws1{word-spacing:-15.863040px;}
.ws0{word-spacing:-15.847488px;}
.ws2{word-spacing:-13.718160px;}
.wsa{word-spacing:-11.424341px;}
.ws122{word-spacing:-11.043970px;}
.ws11f{word-spacing:-7.252370px;}
.wsc2{word-spacing:-4.245888px;}
.wsa9{word-spacing:-3.652367px;}
.ws11c{word-spacing:-3.639888px;}
.ws65{word-spacing:-3.325094px;}
.ws5c{word-spacing:-3.259639px;}
.ws63{word-spacing:-2.997821px;}
.wsc6{word-spacing:-2.670548px;}
.ws143{word-spacing:-2.609222px;}
.ws10e{word-spacing:-2.539638px;}
.ws60{word-spacing:-2.408729px;}
.ws110{word-spacing:-2.343275px;}
.ws10a{word-spacing:-2.277820px;}
.ws59{word-spacing:-2.016002px;}
.ws90{word-spacing:-1.950547px;}
.ws104{word-spacing:-1.885092px;}
.ws12{word-spacing:-1.802246px;}
.ws114{word-spacing:-1.767545px;}
.ws91{word-spacing:-1.754183px;}
.ws12d{word-spacing:-1.694650px;}
.wsa0{word-spacing:-1.561739px;}
.wsa2{word-spacing:-1.561226px;}
.wsa1{word-spacing:-1.557819px;}
.ws9f{word-spacing:-1.549791px;}
.ws21{word-spacing:-1.361456px;}
.ws12b{word-spacing:-1.318061px;}
.ws32{word-spacing:-1.296001px;}
.ws8b{word-spacing:-1.165092px;}
.ws133{word-spacing:-1.049069px;}
.wsba{word-spacing:-0.968728px;}
.wsa3{word-spacing:-0.730698px;}
.wsa4{word-spacing:-0.706910px;}
.ws73{word-spacing:-0.576000px;}
.ws135{word-spacing:-0.564883px;}
.wsaf{word-spacing:-0.510546px;}
.ws76{word-spacing:-0.445091px;}
.ws10d{word-spacing:-0.379637px;}
.wsc7{word-spacing:-0.314182px;}
.ws100{word-spacing:-0.065455px;}
.ws81{word-spacing:-0.047821px;}
.wsb5{word-spacing:-0.017549px;}
.wsbb{word-spacing:-0.006752px;}
.ws4{word-spacing:0.000000px;}
.ws80{word-spacing:0.013091px;}
.ws7f{word-spacing:0.078546px;}
.ws25{word-spacing:0.144000px;}
.wse2{word-spacing:0.340364px;}
.ws3b{word-spacing:0.536728px;}
.ws6f{word-spacing:0.602182px;}
.ws87{word-spacing:0.667637px;}
.wsc8{word-spacing:0.733092px;}
.wsc{word-spacing:0.833875px;}
.wsa6{word-spacing:0.864001px;}
.ws66{word-spacing:0.929455px;}
.wsad{word-spacing:0.994910px;}
.ws121{word-spacing:0.999138px;}
.wsa8{word-spacing:1.125819px;}
.ws106{word-spacing:1.256728px;}
.ws105{word-spacing:1.267958px;}
.ws2c{word-spacing:1.322183px;}
.wsbe{word-spacing:1.387638px;}
.ws20{word-spacing:1.453092px;}
.wsd1{word-spacing:1.518547px;}
.wse5{word-spacing:1.714217px;}
.wse4{word-spacing:1.714911px;}
.wsdf{word-spacing:1.780365px;}
.ws2f{word-spacing:1.845820px;}
.ws103{word-spacing:1.911274px;}
.ws23{word-spacing:1.976729px;}
.ws5f{word-spacing:2.042184px;}
.ws75{word-spacing:2.107638px;}
.ws44{word-spacing:2.173093px;}
.ws7c{word-spacing:2.238547px;}
.ws33{word-spacing:2.304002px;}
.ws2b{word-spacing:2.434911px;}
.ws88{word-spacing:2.457657px;}
.ws3d{word-spacing:2.500366px;}
.ws52{word-spacing:2.636112px;}
.ws53{word-spacing:2.642112px;}
.ws7e{word-spacing:2.827639px;}
.wsc0{word-spacing:2.893093px;}
.ws77{word-spacing:2.958548px;}
.wse{word-spacing:2.985811px;}
.ws98{word-spacing:3.024003px;}
.ws16{word-spacing:3.039610px;}
.ws142{word-spacing:3.046040px;}
.ws130{word-spacing:3.066351px;}
.ws141{word-spacing:3.081727px;}
.ws140{word-spacing:3.089750px;}
.ws12c{word-spacing:3.093408px;}
.wsfa{word-spacing:3.220366px;}
.wsc1{word-spacing:3.285821px;}
.wsab{word-spacing:3.416730px;}
.wsaa{word-spacing:3.436800px;}
.ws64{word-spacing:3.482185px;}
.ws43{word-spacing:3.547639px;}
.ws24{word-spacing:3.613094px;}
.ws123{word-spacing:3.628242px;}
.ws8{word-spacing:3.629588px;}
.ws9a{word-spacing:3.653768px;}
.wse0{word-spacing:3.678549px;}
.ws14{word-spacing:3.685190px;}
.ws35{word-spacing:3.744003px;}
.wsb0{word-spacing:3.809458px;}
.ws1c{word-spacing:3.874912px;}
.wsb9{word-spacing:3.940367px;}
.ws22{word-spacing:4.005822px;}
.wsff{word-spacing:4.036836px;}
.wsfd{word-spacing:4.071276px;}
.ws109{word-spacing:4.202185px;}
.ws8f{word-spacing:4.267640px;}
.ws13{word-spacing:4.276973px;}
.ws7a{word-spacing:4.398549px;}
.ws74{word-spacing:4.464004px;}
.ws107{word-spacing:4.481711px;}
.ws11{word-spacing:4.492166px;}
.ws108{word-spacing:4.529458px;}
.ws126{word-spacing:4.594913px;}
.ws72{word-spacing:4.660368px;}
.wsc4{word-spacing:4.791277px;}
.wsf9{word-spacing:4.922186px;}
.ws92{word-spacing:4.960800px;}
.ws94{word-spacing:4.987641px;}
.ws46{word-spacing:5.053095px;}
.ws70{word-spacing:5.184004px;}
.wsc3{word-spacing:5.314914px;}
.wsb2{word-spacing:5.380368px;}
.wsb4{word-spacing:5.445823px;}
.ws41{word-spacing:5.642187px;}
.ws4d{word-spacing:5.707641px;}
.ws42{word-spacing:5.838550px;}
.ws49{word-spacing:5.904005px;}
.wsd{word-spacing:5.944723px;}
.ws27{word-spacing:5.969460px;}
.wsfe{word-spacing:6.034914px;}
.ws13a{word-spacing:6.052320px;}
.ws2a{word-spacing:6.100369px;}
.wsf{word-spacing:6.159917px;}
.ws30{word-spacing:6.231278px;}
.ws1d{word-spacing:6.296733px;}
.ws10c{word-spacing:6.362187px;}
.wsdb{word-spacing:6.412261px;}
.ws82{word-spacing:6.412800px;}
.ws84{word-spacing:6.427642px;}
.ws15{word-spacing:6.428909px;}
.ws124{word-spacing:6.493096px;}
.ws10{word-spacing:6.590304px;}
.ws37{word-spacing:6.624006px;}
.ws13c{word-spacing:6.644102px;}
.ws29{word-spacing:6.689460px;}
.ws5e{word-spacing:6.754915px;}
.wsea{word-spacing:6.808261px;}
.wse9{word-spacing:6.818448px;}
.wseb{word-spacing:6.820369px;}
.ws5b{word-spacing:6.885824px;}
.ws48{word-spacing:6.951279px;}
.ws34{word-spacing:7.016733px;}
.wsd0{word-spacing:7.082188px;}
.ws86{word-spacing:7.213097px;}
.wscd{word-spacing:7.278552px;}
.wsd2{word-spacing:7.474915px;}
.wsb1{word-spacing:7.540370px;}
.wsd5{word-spacing:7.605825px;}
.ws137{word-spacing:7.612474px;}
.wsd4{word-spacing:7.631301px;}
.wsb7{word-spacing:7.671279px;}
.ws3c{word-spacing:7.736734px;}
.ws6a{word-spacing:7.802188px;}
.wsa5{word-spacing:7.867643px;}
.ws97{word-spacing:7.933098px;}
.ws7{word-spacing:7.969312px;}
.ws31{word-spacing:7.998552px;}
.ws89{word-spacing:8.028271px;}
.ws8a{word-spacing:8.064007px;}
.wsa7{word-spacing:8.194916px;}
.ws40{word-spacing:8.260371px;}
.ws1a{word-spacing:8.325825px;}
.ws79{word-spacing:8.391280px;}
.wsd3{word-spacing:8.456734px;}
.ws13e{word-spacing:8.527046px;}
.ws8c{word-spacing:8.653098px;}
.ws10b{word-spacing:8.718553px;}
.wsbf{word-spacing:8.784007px;}
.ws3e{word-spacing:8.914917px;}
.ws12f{word-spacing:8.957434px;}
.ws26{word-spacing:9.045826px;}
.ws85{word-spacing:9.111280px;}
.ws7b{word-spacing:9.176735px;}
.ws1f{word-spacing:9.242190px;}
.wsdd{word-spacing:9.307644px;}
.ws132{word-spacing:9.603014px;}
.ws3f{word-spacing:9.765826px;}
.wse1{word-spacing:9.831281px;}
.ws47{word-spacing:9.962190px;}
.ws2e{word-spacing:10.027645px;}
.ws3a{word-spacing:10.093099px;}
.ws8e{word-spacing:10.151126px;}
.ws8d{word-spacing:10.158554px;}
.ws118{word-spacing:10.224009px;}
.ws115{word-spacing:10.252261px;}
.ws113{word-spacing:10.289463px;}
.ws112{word-spacing:10.312269px;}
.wsde{word-spacing:10.616736px;}
.ws9b{word-spacing:10.660269px;}
.ws9c{word-spacing:10.682191px;}
.ws1e{word-spacing:10.747645px;}
.ws101{word-spacing:10.762230px;}
.ws127{word-spacing:10.944009px;}
.ws45{word-spacing:10.982067px;}
.ws1b{word-spacing:11.009464px;}
.ws2d{word-spacing:11.074918px;}
.ws128{word-spacing:11.205828px;}
.wsdc{word-spacing:11.336737px;}
.ws96{word-spacing:11.402191px;}
.ws28{word-spacing:11.467646px;}
.ws6b{word-spacing:11.664010px;}
.wse6{word-spacing:11.794919px;}
.wse7{word-spacing:11.831920px;}
.ws102{word-spacing:11.872836px;}
.ws116{word-spacing:11.912124px;}
.wsbc{word-spacing:11.991283px;}
.ws71{word-spacing:12.253101px;}
.wsbd{word-spacing:12.318556px;}
.wsca{word-spacing:12.384010px;}
.ws67{word-spacing:12.514920px;}
.wsb6{word-spacing:12.580374px;}
.ws18{word-spacing:12.723322px;}
.ws69{word-spacing:12.842193px;}
.ws4a{word-spacing:12.907647px;}
.ws119{word-spacing:13.234920px;}
.wsc9{word-spacing:13.431284px;}
.ws125{word-spacing:13.562193px;}
.ws4c{word-spacing:13.627648px;}
.wse8{word-spacing:13.693102px;}
.ws144{word-spacing:14.471770px;}
.wscb{word-spacing:14.609467px;}
.ws117{word-spacing:14.740376px;}
.ws12e{word-spacing:15.332544px;}
.ws134{word-spacing:15.924326px;}
.ws95{word-spacing:16.049468px;}
.ws136{word-spacing:16.354714px;}
.ws5d{word-spacing:17.018196px;}
.ws61{word-spacing:17.803651px;}
.wsf8{word-spacing:18.615965px;}
.wscc{word-spacing:18.785470px;}
.ws9{word-spacing:19.206029px;}
.ws129{word-spacing:19.322198px;}
.ws139{word-spacing:19.690214px;}
.ws131{word-spacing:19.744013px;}
.wse3{word-spacing:20.290926px;}
.ws62{word-spacing:20.921713px;}
.ws4b{word-spacing:21.339889px;}
.ws13b{word-spacing:22.433933px;}
.ws13d{word-spacing:22.971917px;}
.wsfb{word-spacing:22.974565px;}
.wsb8{word-spacing:23.118565px;}
.ws10f{word-spacing:23.301838px;}
.ws138{word-spacing:23.886490px;}
.ws99{word-spacing:24.162151px;}
.wsc5{word-spacing:24.414566px;}
.ws93{word-spacing:24.545475px;}
.wsac{word-spacing:24.552151px;}
.ws13f{word-spacing:24.693466px;}
.wsb3{word-spacing:24.938203px;}
.wscf{word-spacing:25.881686px;}
.ws83{word-spacing:25.920022px;}
.ws38{word-spacing:26.050931px;}
.wsce{word-spacing:26.705477px;}
.ws36{word-spacing:27.401318px;}
.wsfc{word-spacing:27.985401px;}
.wsf5{word-spacing:29.846593px;}
.wsf7{word-spacing:31.605222px;}
.wsf2{word-spacing:31.610585px;}
.ws68{word-spacing:31.810936px;}
.ws39{word-spacing:33.562752px;}
.wsd6{word-spacing:33.748392px;}
.ws6{word-spacing:34.251648px;}
.ws17{word-spacing:35.644038px;}
.wsf4{word-spacing:47.867953px;}
.ws5{word-spacing:50.929152px;}
.ws56{word-spacing:53.554954px;}
.ws12a{word-spacing:55.248224px;}
.wsee{word-spacing:57.712037px;}
.wsd9{word-spacing:59.969505px;}
.wsf6{word-spacing:64.059193px;}
.ws4f{word-spacing:64.824845px;}
.ws5a{word-spacing:71.669921px;}
.wsf1{word-spacing:77.119941px;}
.wsb{word-spacing:85.186984px;}
.ws4e{word-spacing:93.469169px;}
.ws58{word-spacing:103.038631px;}
.ws6c{word-spacing:111.379993px;}
.wsec{word-spacing:115.779369px;}
.ws6e{word-spacing:123.245336px;}
.wsed{word-spacing:125.818651px;}
.ws11d{word-spacing:157.889586px;}
.ws78{word-spacing:164.910029px;}
.ws9e{word-spacing:176.406460px;}
.ws19{word-spacing:178.651612px;}
.ws55{word-spacing:179.358695px;}
.ws11a{word-spacing:190.616886px;}
.ws6d{word-spacing:201.215774px;}
.ws57{word-spacing:233.882377px;}
.ws11e{word-spacing:341.947921px;}
.ws11b{word-spacing:403.737064px;}
.ws3{word-spacing:849.290400px;}
._27{margin-left:-37.191879px;}
._6{margin-left:-32.280973px;}
._7{margin-left:-27.419251px;}
._3a{margin-left:-14.528556px;}
._1{margin-left:-8.607744px;}
._5{margin-left:-5.523286px;}
._11{margin-left:-4.470034px;}
._2{margin-left:-2.869248px;}
._0{margin-left:-1.310400px;}
._3{width:1.841095px;}
._c{width:2.869248px;}
._2d{width:4.123640px;}
._28{width:5.749655px;}
._35{width:7.134551px;}
._31{width:15.288889px;}
._1c{width:16.363650px;}
._2a{width:17.451279px;}
._29{width:19.272527px;}
._3c{width:20.333867px;}
._26{width:21.346116px;}
._25{width:23.889849px;}
._24{width:25.151493px;}
._1a{width:26.337848px;}
._4{width:27.353414px;}
._10{width:28.388176px;}
._b{width:30.080594px;}
._a{width:31.455437px;}
._8{width:32.805074px;}
._9{width:34.738445px;}
._e{width:36.655884px;}
._1b{width:38.513712px;}
._14{width:39.914794px;}
._2c{width:40.955459px;}
._13{width:42.349126px;}
._16{width:43.843828px;}
._1d{width:44.998447px;}
._f{width:46.014584px;}
._17{width:47.389130px;}
._12{width:49.145650px;}
._2f{width:50.811890px;}
._d{width:51.830597px;}
._1e{width:53.748640px;}
._2e{width:55.309137px;}
._32{width:57.325361px;}
._3e{width:58.966228px;}
._2b{width:65.570084px;}
._19{width:71.738242px;}
._30{width:76.361215px;}
._23{width:117.418973px;}
._1f{width:122.210807px;}
._20{width:127.776951px;}
._37{width:154.623552px;}
._15{width:164.981760px;}
._33{width:203.891079px;}
._38{width:205.001057px;}
._21{width:212.062455px;}
._22{width:217.612732px;}
._36{width:241.174170px;}
._39{width:273.449833px;}
._3d{width:295.040459px;}
._3b{width:630.154076px;}
._18{width:663.034076px;}
._34{width:835.206745px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:19.040400px;}
.fsf{font-size:35.865600px;}
.fsd{font-size:41.254200px;}
.fs7{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fse{font-size:58.503976px;}
.fs10{font-size:59.040000px;}
.fsb{font-size:59.775600px;}
.fs3{font-size:63.048643px;}
.fs0{font-size:64.800000px;}
.fs9{font-size:65.454600px;}
.fs5{font-size:65.753400px;}
.fsa{font-size:71.731200px;}
.fs8{font-size:77.708400px;}
.fs1{font-size:77.760000px;}
.fs4{font-size:89.664000px;}
.fs2{font-size:131.040000px;}
.y0{bottom:0.000000px;}
.y86{bottom:6.854544px;}
.y1{bottom:14.031464px;}
.y84{bottom:18.278784px;}
.y85{bottom:32.420248px;}
.y5{bottom:43.489186px;}
.y4{bottom:63.649186px;}
.y87{bottom:106.630207px;}
.y38{bottom:163.614000px;}
.y82{bottom:216.051000px;}
.y137{bottom:221.541000px;}
.y37{bottom:222.714000px;}
.y61{bottom:224.115000px;}
.y136{bottom:226.825500px;}
.y81{bottom:235.479000px;}
.y36{bottom:242.140500px;}
.y60{bottom:243.541500px;}
.y135{bottom:244.183500px;}
.y134{bottom:249.468000px;}
.yf6{bottom:254.002500px;}
.y80{bottom:254.905500px;}
.y35{bottom:261.568500px;}
.y5f{bottom:262.969500px;}
.yb1{bottom:263.872500px;}
.y133{bottom:270.918000px;}
.yf5{bottom:273.430500px;}
.y7f{bottom:274.333500px;}
.y34{bottom:280.995000px;}
.y5e{bottom:282.396000px;}
.y92{bottom:283.299000px;}
.y132{bottom:290.344500px;}
.y1a7{bottom:292.609037px;}
.yf4{bottom:292.857000px;}
.y7e{bottom:293.760000px;}
.y33{bottom:300.423000px;}
.y5d{bottom:301.824000px;}
.yb0{bottom:302.727000px;}
.yf3{bottom:312.283500px;}
.y7d{bottom:313.186500px;}
.y1a6{bottom:316.009036px;}
.y131{bottom:318.738000px;}
.y32{bottom:319.849500px;}
.yd4{bottom:320.367000px;}
.y5c{bottom:321.250500px;}
.yaf{bottom:322.153500px;}
.yd3{bottom:327.547500px;}
.yd2{bottom:331.593000px;}
.yf2{bottom:331.711500px;}
.y7c{bottom:332.614500px;}
.y15f{bottom:335.923500px;}
.y1a5{bottom:338.689336px;}
.y31{bottom:339.276000px;}
.y5b{bottom:340.677000px;}
.yae{bottom:341.580000px;}
.yf1{bottom:351.138000px;}
.y15e{bottom:351.183000px;}
.y7b{bottom:352.041000px;}
.y15d{bottom:352.441500px;}
.y15c{bottom:356.826000px;}
.y130{bottom:357.592500px;}
.y30{bottom:358.704000px;}
.y5a{bottom:360.105000px;}
.yad{bottom:361.008000px;}
.y114{bottom:368.094199px;}
.yf0{bottom:370.566000px;}
.y7a{bottom:371.469000px;}
.yd1{bottom:371.634000px;}
.y12f{bottom:377.019000px;}
.y2f{bottom:378.130500px;}
.y59{bottom:379.531500px;}
.y15b{bottom:379.683000px;}
.yac{bottom:380.434500px;}
.y113{bottom:385.457799px;}
.yef{bottom:389.992500px;}
.y79{bottom:390.895500px;}
.yd0{bottom:391.060500px;}
.y15a{bottom:394.725000px;}
.y12e{bottom:396.447000px;}
.y2e{bottom:397.558500px;}
.y58{bottom:398.959500px;}
.y159{bottom:399.109500px;}
.yab{bottom:399.862500px;}
.y112{bottom:402.822740px;}
.yee{bottom:409.420500px;}
.y78{bottom:410.323500px;}
.ycf{bottom:410.488500px;}
.y12d{bottom:415.873500px;}
.y2d{bottom:416.985000px;}
.y57{bottom:418.386000px;}
.y158{bottom:418.581000px;}
.yaa{bottom:419.289000px;}
.y111{bottom:428.734738px;}
.yed{bottom:428.847000px;}
.y77{bottom:429.750000px;}
.yce{bottom:429.915000px;}
.y157{bottom:433.623000px;}
.y12c{bottom:435.301500px;}
.y2c{bottom:436.413000px;}
.y56{bottom:437.814000px;}
.y156{bottom:438.007500px;}
.ya9{bottom:438.717000px;}
.y1a4{bottom:440.569037px;}
.yec{bottom:448.275000px;}
.y91{bottom:449.176500px;}
.ycd{bottom:449.343000px;}
.y110{bottom:454.648078px;}
.y12b{bottom:454.728000px;}
.y155{bottom:455.460000px;}
.y2b{bottom:455.839500px;}
.y55{bottom:457.240500px;}
.y76{bottom:458.143500px;}
.y154{bottom:459.844500px;}
.y193{bottom:463.167000px;}
.yeb{bottom:467.701500px;}
.y90{bottom:468.604500px;}
.ycc{bottom:468.769500px;}
.y12a{bottom:474.154500px;}
.y54{bottom:476.667000px;}
.ya8{bottom:477.570000px;}
.y153{bottom:479.316000px;}
.y192{bottom:484.087500px;}
.y2a{bottom:484.233000px;}
.yea{bottom:487.128000px;}
.y8f{bottom:488.031000px;}
.ycb{bottom:488.197500px;}
.y129{bottom:493.582500px;}
.y152{bottom:494.358000px;}
.y53{bottom:496.095000px;}
.y75{bottom:496.998000px;}
.y10f{bottom:497.925017px;}
.y151{bottom:498.742500px;}
.yca{bottom:503.040000px;}
.y191{bottom:505.009500px;}
.ye9{bottom:506.556000px;}
.y8e{bottom:507.459000px;}
.yc9{bottom:507.624000px;}
.y128{bottom:513.009000px;}
.y10e{bottom:515.288617px;}
.y52{bottom:515.521500px;}
.y74{bottom:516.424500px;}
.y150{bottom:518.214000px;}
.y29{bottom:523.087500px;}
.y190{bottom:525.931500px;}
.ye8{bottom:525.982500px;}
.y8d{bottom:526.885500px;}
.yc8{bottom:527.050500px;}
.y127{bottom:532.437000px;}
.y10d{bottom:532.652217px;}
.y14f{bottom:533.256000px;}
.y51{bottom:534.949500px;}
.y73{bottom:535.852500px;}
.y14e{bottom:537.640500px;}
.y1a3{bottom:538.849037px;}
.y28{bottom:539.526000px;}
.y18f{bottom:542.370000px;}
.ye7{bottom:545.410500px;}
.y8c{bottom:546.313500px;}
.y126{bottom:551.863500px;}
.y50{bottom:554.376000px;}
.y72{bottom:555.279000px;}
.yc7{bottom:555.444000px;}
.y10c{bottom:558.565557px;}
.y1a2{bottom:562.249037px;}
.y18e{bottom:563.290500px;}
.ye6{bottom:564.837000px;}
.y8b{bottom:565.740000px;}
.y14d{bottom:566.676000px;}
.y125{bottom:571.291500px;}
.y4f{bottom:573.804000px;}
.y71{bottom:574.707000px;}
.y27{bottom:575.764500px;}
.y18d{bottom:579.729000px;}
.ye5{bottom:584.265000px;}
.y10b{bottom:584.477556px;}
.y176{bottom:585.168000px;}
.y1a1{bottom:585.649036px;}
.y124{bottom:590.718000px;}
.y26{bottom:592.203000px;}
.y4e{bottom:593.230500px;}
.ya7{bottom:594.133500px;}
.yc6{bottom:594.298500px;}
.y18c{bottom:600.651000px;}
.y14c{bottom:600.847500px;}
.y16{bottom:601.129187px;}
.ye4{bottom:603.691500px;}
.y175{bottom:604.594500px;}
.y14b{bottom:605.232000px;}
.y25{bottom:608.641500px;}
.y1a0{bottom:609.049037px;}
.y123{bottom:610.144500px;}
.ya6{bottom:613.560000px;}
.yc5{bottom:613.726500px;}
.y18b{bottom:617.089500px;}
.y10a{bottom:617.406000px;}
.y4d{bottom:621.624000px;}
.ye3{bottom:623.118000px;}
.y174{bottom:624.021000px;}
.y14a{bottom:624.702000px;}
.y24{bottom:625.080000px;}
.y122{bottom:629.572500px;}
.y19f{bottom:632.449036px;}
.yc4{bottom:633.153000px;}
.y109{bottom:636.832500px;}
.y18a{bottom:638.010000px;}
.y15{bottom:639.289187px;}
.y149{bottom:639.745500px;}
.y70{bottom:641.061000px;}
.y23{bottom:641.518500px;}
.ye2{bottom:642.546000px;}
.y173{bottom:643.449000px;}
.y148{bottom:644.130000px;}
.y8a{bottom:644.451000px;}
.ya5{bottom:646.462500px;}
.y121{bottom:648.999000px;}
.y4c{bottom:651.511500px;}
.yc3{bottom:652.581000px;}
.y189{bottom:654.448500px;}
.y19e{bottom:655.849037px;}
.y108{bottom:656.260500px;}
.y22{bottom:657.957000px;}
.y6f{bottom:660.487500px;}
.ye1{bottom:661.972500px;}
.y172{bottom:662.875500px;}
.y147{bottom:663.600000px;}
.y89{bottom:663.877500px;}
.ya2{bottom:666.093000px;}
.y120{bottom:668.427000px;}
.yc2{bottom:672.007500px;}
.y21{bottom:674.395500px;}
.y188{bottom:675.370500px;}
.y14{bottom:677.449186px;}
.y146{bottom:678.643500px;}
.y19d{bottom:679.249037px;}
.ye0{bottom:681.400500px;}
.ya4{bottom:681.639000px;}
.y171{bottom:682.303500px;}
.y145{bottom:683.028000px;}
.ya3{bottom:686.548500px;}
.y11f{bottom:687.853500px;}
.y107{bottom:688.977000px;}
.y6e{bottom:689.479500px;}
.y4b{bottom:690.366000px;}
.y20{bottom:690.832500px;}
.yc1{bottom:691.434000px;}
.y187{bottom:691.809000px;}
.y88{bottom:697.353000px;}
.y144{bottom:700.480500px;}
.ydf{bottom:700.827000px;}
.y170{bottom:701.730000px;}
.y19c{bottom:702.649036px;}
.y143{bottom:704.865000px;}
.y1f{bottom:707.271000px;}
.y11e{bottom:707.281500px;}
.y106{bottom:708.405000px;}
.y4a{bottom:709.794000px;}
.yc0{bottom:710.862000px;}
.y186{bottom:712.731000px;}
.y13{bottom:715.609186px;}
.y83{bottom:717.825000px;}
.ya1{bottom:718.063500px;}
.yde{bottom:720.255000px;}
.y16f{bottom:721.158000px;}
.y1e{bottom:723.709500px;}
.y142{bottom:724.335000px;}
.y19b{bottom:726.049037px;}
.y11d{bottom:726.708000px;}
.y105{bottom:727.831500px;}
.y185{bottom:729.169500px;}
.y49{bottom:729.220500px;}
.ybf{bottom:730.288500px;}
.y6d{bottom:733.414500px;}
.ya0{bottom:737.491500px;}
.y141{bottom:739.378500px;}
.ydd{bottom:739.681500px;}
.y1d{bottom:740.148000px;}
.y16e{bottom:740.584500px;}
.y140{bottom:743.763000px;}
.y184{bottom:745.606500px;}
.y11c{bottom:746.134500px;}
.y104{bottom:747.259500px;}
.y48{bottom:748.648500px;}
.y19a{bottom:749.449036px;}
.ybe{bottom:749.716500px;}
.y6c{bottom:752.841000px;}
.y12{bottom:753.769187px;}
.y9f{bottom:756.918000px;}
.ydc{bottom:759.108000px;}
.y16d{bottom:760.011000px;}
.y13f{bottom:763.233000px;}
.y11b{bottom:765.562500px;}
.y183{bottom:766.528500px;}
.y103{bottom:766.686000px;}
.y47{bottom:768.075000px;}
.y199{bottom:772.849037px;}
.y9e{bottom:776.346000px;}
.y13e{bottom:778.276500px;}
.ydb{bottom:778.536000px;}
.y16c{bottom:779.439000px;}
.ybc{bottom:780.999000px;}
.yba{bottom:781.194000px;}
.y13d{bottom:782.661000px;}
.y182{bottom:782.967000px;}
.y11a{bottom:784.989000px;}
.y102{bottom:786.112500px;}
.y46{bottom:787.501500px;}
.ybd{bottom:788.178000px;}
.y11{bottom:791.929186px;}
.yb9{bottom:792.223500px;}
.y1c{bottom:792.451500px;}
.y198{bottom:796.249037px;}
.yda{bottom:797.962500px;}
.y16b{bottom:798.865500px;}
.ybb{bottom:803.293500px;}
.y181{bottom:803.889000px;}
.y119{bottom:804.417000px;}
.y101{bottom:805.540500px;}
.y45{bottom:806.929500px;}
.y6b{bottom:809.476500px;}
.y13c{bottom:811.695000px;}
.y1b{bottom:811.879500px;}
.y9d{bottom:812.941500px;}
.yd9{bottom:817.390500px;}
.y16a{bottom:818.293500px;}
.y197{bottom:819.649037px;}
.y180{bottom:820.327500px;}
.y118{bottom:823.843500px;}
.y100{bottom:824.967000px;}
.y44{bottom:826.356000px;}
.y6a{bottom:828.903000px;}
.yb8{bottom:829.083000px;}
.y10{bottom:830.089186px;}
.y1a{bottom:831.306000px;}
.y9a{bottom:832.573500px;}
.yd8{bottom:836.817000px;}
.y169{bottom:837.720000px;}
.y17f{bottom:841.248000px;}
.y196{bottom:843.049036px;}
.y117{bottom:843.271500px;}
.yff{bottom:844.395000px;}
.y43{bottom:845.784000px;}
.y9c{bottom:848.118000px;}
.y69{bottom:848.331000px;}
.yb7{bottom:848.509500px;}
.y19{bottom:850.734000px;}
.y9b{bottom:853.027500px;}
.y13b{bottom:855.631500px;}
.yd7{bottom:856.245000px;}
.y168{bottom:857.148000px;}
.y17e{bottom:857.686500px;}
.y116{bottom:862.698000px;}
.yfe{bottom:863.821500px;}
.y42{bottom:865.210500px;}
.y195{bottom:866.449036px;}
.y68{bottom:867.757500px;}
.ye{bottom:868.969186px;}
.yf{bottom:869.188105px;}
.y13a{bottom:875.058000px;}
.yd6{bottom:875.671500px;}
.y167{bottom:876.574500px;}
.yb6{bottom:876.754500px;}
.y17d{bottom:878.608500px;}
.y99{bottom:881.361000px;}
.y115{bottom:882.124500px;}
.yfd{bottom:883.249500px;}
.y41{bottom:884.638500px;}
.y67{bottom:887.184000px;}
.y194{bottom:889.849037px;}
.yd{bottom:892.729186px;}
.y139{bottom:894.484500px;}
.y17c{bottom:895.047000px;}
.yd5{bottom:895.098000px;}
.yb3{bottom:896.385000px;}
.y98{bottom:900.789000px;}
.yfc{bottom:902.676000px;}
.y40{bottom:904.065000px;}
.y166{bottom:904.968000px;}
.y18{bottom:906.027000px;}
.y66{bottom:906.612000px;}
.yb5{bottom:911.931000px;}
.y138{bottom:913.912500px;}
.yc{bottom:917.209186px;}
.yb4{bottom:917.709000px;}
.y97{bottom:920.215500px;}
.yfb{bottom:922.102500px;}
.y17b{bottom:923.440500px;}
.y3f{bottom:923.491500px;}
.y17{bottom:931.431000px;}
.y65{bottom:935.602500px;}
.y164{bottom:939.522000px;}
.yfa{bottom:941.530500px;}
.y3e{bottom:942.919500px;}
.y161{bottom:947.928000px;}
.y96{bottom:952.209000px;}
.y165{bottom:954.817500px;}
.yb{bottom:956.809186px;}
.yb2{bottom:957.763500px;}
.y160{bottom:959.154000px;}
.yf9{bottom:960.957000px;}
.y17a{bottom:962.295000px;}
.y3d{bottom:962.346000px;}
.y93{bottom:971.839500px;}
.y163{bottom:974.698500px;}
.y64{bottom:979.539000px;}
.y162{bottom:979.608000px;}
.y179{bottom:981.721500px;}
.y3c{bottom:981.774000px;}
.y95{bottom:987.385500px;}
.yf8{bottom:990.337500px;}
.y94{bottom:992.293500px;}
.ya{bottom:996.409186px;}
.y63{bottom:998.965500px;}
.y178{bottom:1001.149500px;}
.y3b{bottom:1001.200500px;}
.y62{bottom:1018.392000px;}
.yf7{bottom:1019.719500px;}
.y177{bottom:1020.576000px;}
.y3a{bottom:1020.628500px;}
.y9{bottom:1032.049037px;}
.y8{bottom:1055.449036px;}
.y39{bottom:1055.902500px;}
.y7{bottom:1078.849037px;}
.y6{bottom:1102.249037px;}
.y3{bottom:1212.769186px;}
.y2{bottom:1232.929186px;}
.h18{height:0.000000px;}
.h14{height:19.858542px;}
.hc{height:33.713523px;}
.h17{height:35.865450px;}
.hb{height:38.519654px;}
.hd{height:40.348800px;}
.h23{height:40.952783px;}
.h24{height:41.771839px;}
.h32{height:42.567840px;}
.h15{height:43.026841px;}
.h3{height:43.189453px;}
.h25{height:43.877982px;}
.h7{height:45.808780px;}
.h11{height:45.818220px;}
.h31{height:46.027380px;}
.h6{height:46.720800px;}
.h19{height:46.734584px;}
.hf{height:49.090950px;}
.ha{height:49.315050px;}
.h10{height:50.211840px;}
.he{height:54.395880px;}
.h4{height:56.064960px;}
.h1c{height:57.467523px;}
.h1a{height:59.613450px;}
.h12{height:59.619450px;}
.h9{height:62.764800px;}
.h16{height:62.889450px;}
.h1b{height:62.895450px;}
.h1f{height:65.272950px;}
.h27{height:65.555523px;}
.h29{height:66.628950px;}
.h1d{height:67.420950px;}
.h20{height:67.426950px;}
.h28{height:70.228950px;}
.h2f{height:70.365450px;}
.h2d{height:71.662950px;}
.h26{height:79.234950px;}
.h30{height:80.235450px;}
.h2a{height:81.540584px;}
.h2b{height:81.546584px;}
.h2c{height:85.647450px;}
.h2e{height:93.370950px;}
.h22{height:93.994950px;}
.h5{height:94.479840px;}
.h1e{height:107.787450px;}
.h21{height:109.552950px;}
.h13{height:314.166600px;}
.h2{height:1234.729200px;}
.h0{height:1262.792100px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:242.765100px;}
.w2{width:864.850500px;}
.w0{width:892.913400px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:10.281816px;}
.x1{left:14.031451px;}
.x10{left:21.706056px;}
.xf{left:41.555673px;}
.x11{left:90.160261px;}
.x2{left:97.919998px;}
.x9{left:206.629500px;}
.x46{left:209.311500px;}
.xe{left:211.222500px;}
.x5{left:215.596500px;}
.xa{left:224.563500px;}
.x39{left:226.164000px;}
.x47{left:232.084500px;}
.x7{left:233.529000px;}
.x3{left:253.973848px;}
.x4{left:262.223848px;}
.x3b{left:272.527500px;}
.x30{left:282.306000px;}
.x36{left:291.547500px;}
.x31{left:293.434500px;}
.xd{left:294.736500px;}
.x6{left:297.789000px;}
.x40{left:310.269000px;}
.x33{left:314.098500px;}
.x27{left:317.056500px;}
.x32{left:319.009500px;}
.x13{left:323.775000px;}
.xb{left:327.132000px;}
.x3d{left:334.053000px;}
.xc{left:336.306000px;}
.x1b{left:339.684000px;}
.x3c{left:342.064500px;}
.x48{left:349.919999px;}
.x3e{left:364.560000px;}
.x41{left:369.108000px;}
.x43{left:383.451000px;}
.x44{left:384.990000px;}
.x42{left:391.414500px;}
.x16{left:392.662500px;}
.x2d{left:400.074000px;}
.x34{left:405.648000px;}
.x45{left:407.086500px;}
.x29{left:414.345000px;}
.x2a{left:415.885500px;}
.x28{left:422.988000px;}
.x1d{left:436.974000px;}
.x1e{left:438.514500px;}
.x2b{left:440.709000px;}
.x1c{left:445.615500px;}
.x3a{left:451.619693px;}
.x1f{left:463.338000px;}
.x2f{left:465.732000px;}
.x8{left:467.028000px;}
.x14{left:470.353500px;}
.x2e{left:474.354000px;}
.x18{left:489.952500px;}
.x19{left:491.493000px;}
.x21{left:494.817000px;}
.x22{left:496.356000px;}
.x17{left:498.595500px;}
.x20{left:503.458500px;}
.x3f{left:510.339000px;}
.x1a{left:516.316500px;}
.x37{left:518.035500px;}
.x24{left:521.179500px;}
.x25{left:522.982500px;}
.x23{left:529.822500px;}
.x2c{left:537.004500px;}
.x26{left:547.543500px;}
.x15{left:582.522000px;}
.x35{left:591.834000px;}
.x38{left:605.973000px;}
@media print{
.v3{vertical-align:-8.725333pt;}
.ve{vertical-align:-5.898667pt;}
.v12{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:6.858667pt;}
.va{vertical-align:10.058667pt;}
.v10{vertical-align:11.338667pt;}
.v6{vertical-align:14.384000pt;}
.vc{vertical-align:15.349333pt;}
.v4{vertical-align:16.293333pt;}
.v9{vertical-align:18.789333pt;}
.vf{vertical-align:20.064000pt;}
.v1{vertical-align:21.114667pt;}
.v2{vertical-align:24.021333pt;}
.v7{vertical-align:26.794667pt;}
.v8{vertical-align:28.304000pt;}
.v11{vertical-align:30.666667pt;}
.v5{vertical-align:39.909333pt;}
.vd{vertical-align:44.250667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8b{letter-spacing:0.000125pt;}
.ls8c{letter-spacing:0.000444pt;}
.ls1a{letter-spacing:0.001146pt;}
.ls61{letter-spacing:0.001419pt;}
.ls2f{letter-spacing:0.001422pt;}
.ls84{letter-spacing:0.001427pt;}
.ls42{letter-spacing:0.001431pt;}
.ls43{letter-spacing:0.001910pt;}
.ls67{letter-spacing:0.002145pt;}
.ls68{letter-spacing:0.002155pt;}
.ls71{letter-spacing:0.002384pt;}
.ls20{letter-spacing:0.002397pt;}
.ls10{letter-spacing:0.002400pt;}
.ls45{letter-spacing:0.002405pt;}
.ls11{letter-spacing:0.002411pt;}
.ls23{letter-spacing:0.002717pt;}
.ls27{letter-spacing:0.004336pt;}
.ls8e{letter-spacing:0.005459pt;}
.ls21{letter-spacing:0.006479pt;}
.ls97{letter-spacing:0.048384pt;}
.ls96{letter-spacing:0.067627pt;}
.ls99{letter-spacing:0.076032pt;}
.ls98{letter-spacing:0.103680pt;}
.ls9a{letter-spacing:0.117504pt;}
.ls0{letter-spacing:0.124416pt;}
.ls1{letter-spacing:0.138240pt;}
.ls3d{letter-spacing:0.215727pt;}
.ls2{letter-spacing:0.343467pt;}
.lsb{letter-spacing:0.403200pt;}
.ls2e{letter-spacing:0.451842pt;}
.ls6{letter-spacing:0.454272pt;}
.lsa{letter-spacing:0.478080pt;}
.ls9{letter-spacing:0.558720pt;}
.ls3{letter-spacing:0.614933pt;}
.ls8{letter-spacing:0.645120pt;}
.ls5{letter-spacing:0.722176pt;}
.ls7{letter-spacing:0.904320pt;}
.ls4e{letter-spacing:1.139864pt;}
.ls89{letter-spacing:1.617432pt;}
.ls48{letter-spacing:1.622765pt;}
.ls44{letter-spacing:1.833187pt;}
.ls62{letter-spacing:2.084337pt;}
.ls32{letter-spacing:2.086764pt;}
.ls46{letter-spacing:2.088215pt;}
.ls53{letter-spacing:2.202645pt;}
.ls54{letter-spacing:2.207978pt;}
.ls22{letter-spacing:2.449323pt;}
.ls2b{letter-spacing:2.653258pt;}
.ls8d{letter-spacing:2.656473pt;}
.ls1f{letter-spacing:2.657146pt;}
.ls4b{letter-spacing:2.658591pt;}
.ls1b{letter-spacing:2.662479pt;}
.ls73{letter-spacing:2.919721pt;}
.ls37{letter-spacing:3.071003pt;}
.lsc{letter-spacing:4.564323pt;}
.ls24{letter-spacing:5.105323pt;}
.ls4a{letter-spacing:5.110656pt;}
.ls57{letter-spacing:5.662882pt;}
.ls7e{letter-spacing:6.122350pt;}
.ls1c{letter-spacing:6.260825pt;}
.ls15{letter-spacing:6.266158pt;}
.ls5f{letter-spacing:6.338870pt;}
.ls5c{letter-spacing:6.344203pt;}
.ls35{letter-spacing:6.375244pt;}
.ls4f{letter-spacing:9.031925pt;}
.ls5d{letter-spacing:9.693077pt;}
.ls60{letter-spacing:9.698411pt;}
.ls78{letter-spacing:9.716372pt;}
.ls47{letter-spacing:12.349258pt;}
.ls58{letter-spacing:12.388811pt;}
.ls90{letter-spacing:12.916374pt;}
.lse{letter-spacing:12.923608pt;}
.ls2a{letter-spacing:12.927477pt;}
.lsd{letter-spacing:12.928942pt;}
.ls87{letter-spacing:12.932811pt;}
.ls6a{letter-spacing:14.365056pt;}
.ls6b{letter-spacing:14.367483pt;}
.ls28{letter-spacing:15.581258pt;}
.ls29{letter-spacing:15.585146pt;}
.ls19{letter-spacing:15.586591pt;}
.ls93{letter-spacing:15.588025pt;}
.ls49{letter-spacing:15.590479pt;}
.ls3a{letter-spacing:15.725060pt;}
.ls39{letter-spacing:15.730393pt;}
.ls18{letter-spacing:16.159477pt;}
.ls74{letter-spacing:16.163851pt;}
.ls95{letter-spacing:16.164347pt;}
.ls3b{letter-spacing:16.164811pt;}
.ls76{letter-spacing:16.166759pt;}
.ls26{letter-spacing:16.375727pt;}
.ls3c{letter-spacing:16.402393pt;}
.ls85{letter-spacing:16.450411pt;}
.ls92{letter-spacing:17.052577pt;}
.ls3e{letter-spacing:17.154393pt;}
.ls38{letter-spacing:17.431925pt;}
.ls4c{letter-spacing:17.777432pt;}
.ls86{letter-spacing:17.782765pt;}
.ls72{letter-spacing:17.910759pt;}
.ls55{letter-spacing:17.993187pt;}
.ls17{letter-spacing:18.246764pt;}
.ls1e{letter-spacing:18.252097pt;}
.ls16{letter-spacing:18.813258pt;}
.ls1d{letter-spacing:18.818591pt;}
.ls5e{letter-spacing:18.822479pt;}
.ls40{letter-spacing:19.217910pt;}
.ls8a{letter-spacing:19.306144pt;}
.ls77{letter-spacing:19.496707pt;}
.ls25{letter-spacing:20.562591pt;}
.ls31{letter-spacing:20.724323pt;}
.ls75{letter-spacing:21.162158pt;}
.ls51{letter-spacing:21.283864pt;}
.ls59{letter-spacing:21.783925pt;}
.ls30{letter-spacing:22.045258pt;}
.ls36{letter-spacing:22.050591pt;}
.ls69{letter-spacing:22.674387pt;}
.ls56{letter-spacing:22.916807pt;}
.ls52{letter-spacing:23.010397pt;}
.ls14{letter-spacing:23.426591pt;}
.lsf{letter-spacing:23.956323pt;}
.ls66{letter-spacing:24.303004pt;}
.ls65{letter-spacing:24.312215pt;}
.ls5a{letter-spacing:25.033671pt;}
.ls5b{letter-spacing:25.037548pt;}
.ls80{letter-spacing:25.079925pt;}
.ls6f{letter-spacing:25.730400pt;}
.ls7d{letter-spacing:25.967477pt;}
.ls2d{letter-spacing:25.975925pt;}
.ls3f{letter-spacing:26.541060pt;}
.ls34{letter-spacing:26.564811pt;}
.ls33{letter-spacing:26.781060pt;}
.ls2c{letter-spacing:26.893258pt;}
.ls6c{letter-spacing:27.294517pt;}
.ls12{letter-spacing:27.579600pt;}
.ls7b{letter-spacing:27.795854pt;}
.ls7c{letter-spacing:28.054764pt;}
.ls64{letter-spacing:28.313680pt;}
.ls41{letter-spacing:29.083608pt;}
.ls7a{letter-spacing:29.299374pt;}
.ls63{letter-spacing:29.339812pt;}
.ls6d{letter-spacing:29.623242pt;}
.ls13{letter-spacing:30.706591pt;}
.ls79{letter-spacing:31.450350pt;}
.ls94{letter-spacing:31.746591pt;}
.ls70{letter-spacing:34.796575pt;}
.ls6e{letter-spacing:39.651851pt;}
.ls4d{letter-spacing:44.410144pt;}
.ls7f{letter-spacing:68.894041pt;}
.ls8f{letter-spacing:97.237806pt;}
.ls88{letter-spacing:140.269258pt;}
.ls83{letter-spacing:172.279925pt;}
.ls50{letter-spacing:227.581077pt;}
.ls91{letter-spacing:332.706405pt;}
.ls82{letter-spacing:380.642591pt;}
.ls81{letter-spacing:497.629258pt;}
.ws50{word-spacing:-58.181867pt;}
.wsef{word-spacing:-52.003534pt;}
.ws111{word-spacing:-47.616040pt;}
.ws51{word-spacing:-37.899668pt;}
.wsf0{word-spacing:-33.875102pt;}
.ws7d{word-spacing:-29.521250pt;}
.ws120{word-spacing:-29.079297pt;}
.wsda{word-spacing:-28.241478pt;}
.wsae{word-spacing:-28.183296pt;}
.ws9d{word-spacing:-21.874527pt;}
.wsd7{word-spacing:-19.673825pt;}
.wsd8{word-spacing:-19.669948pt;}
.ws54{word-spacing:-16.162923pt;}
.wsf3{word-spacing:-14.446582pt;}
.ws1{word-spacing:-14.100480pt;}
.ws0{word-spacing:-14.086656pt;}
.ws2{word-spacing:-12.193920pt;}
.wsa{word-spacing:-10.154970pt;}
.ws122{word-spacing:-9.816862pt;}
.ws11f{word-spacing:-6.446551pt;}
.wsc2{word-spacing:-3.774123pt;}
.wsa9{word-spacing:-3.246548pt;}
.ws11c{word-spacing:-3.235456pt;}
.ws65{word-spacing:-2.955639pt;}
.ws5c{word-spacing:-2.897457pt;}
.ws63{word-spacing:-2.664729pt;}
.wsc6{word-spacing:-2.373820pt;}
.ws143{word-spacing:-2.319309pt;}
.ws10e{word-spacing:-2.257456pt;}
.ws60{word-spacing:-2.141093pt;}
.ws110{word-spacing:-2.082911pt;}
.ws10a{word-spacing:-2.024729pt;}
.ws59{word-spacing:-1.792001pt;}
.ws90{word-spacing:-1.733820pt;}
.ws104{word-spacing:-1.675638pt;}
.ws12{word-spacing:-1.601997pt;}
.ws114{word-spacing:-1.571151pt;}
.ws91{word-spacing:-1.559274pt;}
.ws12d{word-spacing:-1.506355pt;}
.wsa0{word-spacing:-1.388213pt;}
.wsa2{word-spacing:-1.387756pt;}
.wsa1{word-spacing:-1.384728pt;}
.ws9f{word-spacing:-1.377592pt;}
.ws21{word-spacing:-1.210183pt;}
.ws12b{word-spacing:-1.171610pt;}
.ws32{word-spacing:-1.152001pt;}
.ws8b{word-spacing:-1.035637pt;}
.ws133{word-spacing:-0.932506pt;}
.wsba{word-spacing:-0.861092pt;}
.wsa3{word-spacing:-0.649509pt;}
.wsa4{word-spacing:-0.628364pt;}
.ws73{word-spacing:-0.512000pt;}
.ws135{word-spacing:-0.502118pt;}
.wsaf{word-spacing:-0.453819pt;}
.ws76{word-spacing:-0.395637pt;}
.ws10d{word-spacing:-0.337455pt;}
.wsc7{word-spacing:-0.279273pt;}
.ws100{word-spacing:-0.058182pt;}
.ws81{word-spacing:-0.042507pt;}
.wsb5{word-spacing:-0.015599pt;}
.wsbb{word-spacing:-0.006002pt;}
.ws4{word-spacing:0.000000pt;}
.ws80{word-spacing:0.011636pt;}
.ws7f{word-spacing:0.069818pt;}
.ws25{word-spacing:0.128000pt;}
.wse2{word-spacing:0.302546pt;}
.ws3b{word-spacing:0.477091pt;}
.ws6f{word-spacing:0.535273pt;}
.ws87{word-spacing:0.593455pt;}
.wsc8{word-spacing:0.651637pt;}
.wsc{word-spacing:0.741222pt;}
.wsa6{word-spacing:0.768001pt;}
.ws66{word-spacing:0.826183pt;}
.wsad{word-spacing:0.884364pt;}
.ws121{word-spacing:0.888123pt;}
.wsa8{word-spacing:1.000728pt;}
.ws106{word-spacing:1.117092pt;}
.ws105{word-spacing:1.127073pt;}
.ws2c{word-spacing:1.175274pt;}
.wsbe{word-spacing:1.233456pt;}
.ws20{word-spacing:1.291637pt;}
.wsd1{word-spacing:1.349819pt;}
.wse5{word-spacing:1.523748pt;}
.wse4{word-spacing:1.524365pt;}
.wsdf{word-spacing:1.582547pt;}
.ws2f{word-spacing:1.640729pt;}
.ws103{word-spacing:1.698911pt;}
.ws23{word-spacing:1.757092pt;}
.ws5f{word-spacing:1.815274pt;}
.ws75{word-spacing:1.873456pt;}
.ws44{word-spacing:1.931638pt;}
.ws7c{word-spacing:1.989820pt;}
.ws33{word-spacing:2.048002pt;}
.ws2b{word-spacing:2.164365pt;}
.ws88{word-spacing:2.184584pt;}
.ws3d{word-spacing:2.222547pt;}
.ws52{word-spacing:2.343211pt;}
.ws53{word-spacing:2.348544pt;}
.ws7e{word-spacing:2.513457pt;}
.wsc0{word-spacing:2.571639pt;}
.ws77{word-spacing:2.629820pt;}
.wse{word-spacing:2.654054pt;}
.ws98{word-spacing:2.688002pt;}
.ws16{word-spacing:2.701875pt;}
.ws142{word-spacing:2.707591pt;}
.ws130{word-spacing:2.725646pt;}
.ws141{word-spacing:2.739313pt;}
.ws140{word-spacing:2.746445pt;}
.ws12c{word-spacing:2.749696pt;}
.wsfa{word-spacing:2.862548pt;}
.wsc1{word-spacing:2.920730pt;}
.wsab{word-spacing:3.037093pt;}
.wsaa{word-spacing:3.054933pt;}
.ws64{word-spacing:3.095275pt;}
.ws43{word-spacing:3.153457pt;}
.ws24{word-spacing:3.211639pt;}
.ws123{word-spacing:3.225104pt;}
.ws8{word-spacing:3.226300pt;}
.ws9a{word-spacing:3.247794pt;}
.wse0{word-spacing:3.269821pt;}
.ws14{word-spacing:3.275725pt;}
.ws35{word-spacing:3.328003pt;}
.wsb0{word-spacing:3.386185pt;}
.ws1c{word-spacing:3.444367pt;}
.wsb9{word-spacing:3.502548pt;}
.ws22{word-spacing:3.560730pt;}
.wsff{word-spacing:3.588299pt;}
.wsfd{word-spacing:3.618912pt;}
.ws109{word-spacing:3.735276pt;}
.ws8f{word-spacing:3.793458pt;}
.ws13{word-spacing:3.801754pt;}
.ws7a{word-spacing:3.909821pt;}
.ws74{word-spacing:3.968003pt;}
.ws107{word-spacing:3.983743pt;}
.ws11{word-spacing:3.993037pt;}
.ws108{word-spacing:4.026185pt;}
.ws126{word-spacing:4.084367pt;}
.ws72{word-spacing:4.142549pt;}
.wsc4{word-spacing:4.258913pt;}
.wsf9{word-spacing:4.375276pt;}
.ws92{word-spacing:4.409600pt;}
.ws94{word-spacing:4.433458pt;}
.ws46{word-spacing:4.491640pt;}
.ws70{word-spacing:4.608004pt;}
.wsc3{word-spacing:4.724368pt;}
.wsb2{word-spacing:4.782549pt;}
.wsb4{word-spacing:4.840731pt;}
.ws41{word-spacing:5.015277pt;}
.ws4d{word-spacing:5.073459pt;}
.ws42{word-spacing:5.189823pt;}
.ws49{word-spacing:5.248004pt;}
.wsd{word-spacing:5.284198pt;}
.ws27{word-spacing:5.306186pt;}
.wsfe{word-spacing:5.364368pt;}
.ws13a{word-spacing:5.379840pt;}
.ws2a{word-spacing:5.422550pt;}
.wsf{word-spacing:5.475482pt;}
.ws30{word-spacing:5.538914pt;}
.ws1d{word-spacing:5.597096pt;}
.ws10c{word-spacing:5.655277pt;}
.wsdb{word-spacing:5.699787pt;}
.ws82{word-spacing:5.700267pt;}
.ws84{word-spacing:5.713459pt;}
.ws15{word-spacing:5.714586pt;}
.ws124{word-spacing:5.771641pt;}
.ws10{word-spacing:5.858048pt;}
.ws37{word-spacing:5.888005pt;}
.ws13c{word-spacing:5.905869pt;}
.ws29{word-spacing:5.946187pt;}
.ws5e{word-spacing:6.004369pt;}
.wsea{word-spacing:6.051787pt;}
.wse9{word-spacing:6.060843pt;}
.wseb{word-spacing:6.062551pt;}
.ws5b{word-spacing:6.120732pt;}
.ws48{word-spacing:6.178914pt;}
.ws34{word-spacing:6.237096pt;}
.wsd0{word-spacing:6.295278pt;}
.ws86{word-spacing:6.411642pt;}
.wscd{word-spacing:6.469824pt;}
.wsd2{word-spacing:6.644369pt;}
.wsb1{word-spacing:6.702551pt;}
.wsd5{word-spacing:6.760733pt;}
.ws137{word-spacing:6.766643pt;}
.wsd4{word-spacing:6.783379pt;}
.wsb7{word-spacing:6.818915pt;}
.ws3c{word-spacing:6.877097pt;}
.ws6a{word-spacing:6.935279pt;}
.wsa5{word-spacing:6.993460pt;}
.ws97{word-spacing:7.051642pt;}
.ws7{word-spacing:7.083833pt;}
.ws31{word-spacing:7.109824pt;}
.ws89{word-spacing:7.136240pt;}
.ws8a{word-spacing:7.168006pt;}
.wsa7{word-spacing:7.284370pt;}
.ws40{word-spacing:7.342552pt;}
.ws1a{word-spacing:7.400733pt;}
.ws79{word-spacing:7.458915pt;}
.wsd3{word-spacing:7.517097pt;}
.ws13e{word-spacing:7.579597pt;}
.ws8c{word-spacing:7.691643pt;}
.ws10b{word-spacing:7.749825pt;}
.wsbf{word-spacing:7.808007pt;}
.ws3e{word-spacing:7.924370pt;}
.ws12f{word-spacing:7.962163pt;}
.ws26{word-spacing:8.040734pt;}
.ws85{word-spacing:8.098916pt;}
.ws7b{word-spacing:8.157098pt;}
.ws1f{word-spacing:8.215280pt;}
.wsdd{word-spacing:8.273461pt;}
.ws132{word-spacing:8.536013pt;}
.ws3f{word-spacing:8.680735pt;}
.wse1{word-spacing:8.738916pt;}
.ws47{word-spacing:8.855280pt;}
.ws2e{word-spacing:8.913462pt;}
.ws3a{word-spacing:8.971644pt;}
.ws8e{word-spacing:9.023223pt;}
.ws8d{word-spacing:9.029826pt;}
.ws118{word-spacing:9.088008pt;}
.ws115{word-spacing:9.113121pt;}
.ws113{word-spacing:9.146189pt;}
.ws112{word-spacing:9.166461pt;}
.wsde{word-spacing:9.437099pt;}
.ws9b{word-spacing:9.475795pt;}
.ws9c{word-spacing:9.495281pt;}
.ws1e{word-spacing:9.553463pt;}
.ws101{word-spacing:9.566427pt;}
.ws127{word-spacing:9.728008pt;}
.ws45{word-spacing:9.761837pt;}
.ws1b{word-spacing:9.786190pt;}
.ws2d{word-spacing:9.844372pt;}
.ws128{word-spacing:9.960736pt;}
.wsdc{word-spacing:10.077099pt;}
.ws96{word-spacing:10.135281pt;}
.ws28{word-spacing:10.193463pt;}
.ws6b{word-spacing:10.368009pt;}
.wse6{word-spacing:10.484372pt;}
.wse7{word-spacing:10.517262pt;}
.ws102{word-spacing:10.553632pt;}
.ws116{word-spacing:10.588555pt;}
.wsbc{word-spacing:10.658918pt;}
.ws71{word-spacing:10.891645pt;}
.wsbd{word-spacing:10.949827pt;}
.wsca{word-spacing:11.008009pt;}
.ws67{word-spacing:11.124373pt;}
.wsb6{word-spacing:11.182555pt;}
.ws18{word-spacing:11.309619pt;}
.ws69{word-spacing:11.415282pt;}
.ws4a{word-spacing:11.473464pt;}
.ws119{word-spacing:11.764373pt;}
.wsc9{word-spacing:11.938919pt;}
.ws125{word-spacing:12.055283pt;}
.ws4c{word-spacing:12.113465pt;}
.wse8{word-spacing:12.171647pt;}
.ws144{word-spacing:12.863795pt;}
.wscb{word-spacing:12.986193pt;}
.ws117{word-spacing:13.102556pt;}
.ws12e{word-spacing:13.628928pt;}
.ws134{word-spacing:14.154957pt;}
.ws95{word-spacing:14.266194pt;}
.ws136{word-spacing:14.537523pt;}
.ws5d{word-spacing:15.127285pt;}
.ws61{word-spacing:15.825468pt;}
.wsf8{word-spacing:16.547525pt;}
.wscc{word-spacing:16.698196pt;}
.ws9{word-spacing:17.072026pt;}
.ws129{word-spacing:17.175287pt;}
.ws139{word-spacing:17.502413pt;}
.ws131{word-spacing:17.550234pt;}
.wse3{word-spacing:18.036379pt;}
.ws62{word-spacing:18.597078pt;}
.ws4b{word-spacing:18.968790pt;}
.ws13b{word-spacing:19.941274pt;}
.ws13d{word-spacing:20.419482pt;}
.wsfb{word-spacing:20.421835pt;}
.wsb8{word-spacing:20.549835pt;}
.ws10f{word-spacing:20.712745pt;}
.ws138{word-spacing:21.232435pt;}
.ws99{word-spacing:21.477467pt;}
.wsc5{word-spacing:21.701836pt;}
.ws93{word-spacing:21.818200pt;}
.wsac{word-spacing:21.824134pt;}
.ws13f{word-spacing:21.949747pt;}
.wsb3{word-spacing:22.167291pt;}
.wscf{word-spacing:23.005943pt;}
.ws83{word-spacing:23.040019pt;}
.ws38{word-spacing:23.156383pt;}
.wsce{word-spacing:23.738202pt;}
.ws36{word-spacing:24.356727pt;}
.wsfc{word-spacing:24.875912pt;}
.wsf5{word-spacing:26.530305pt;}
.wsf7{word-spacing:28.093531pt;}
.wsf2{word-spacing:28.098297pt;}
.ws68{word-spacing:28.276387pt;}
.ws39{word-spacing:29.833557pt;}
.wsd6{word-spacing:29.998570pt;}
.ws6{word-spacing:30.445909pt;}
.ws17{word-spacing:31.683589pt;}
.wsf4{word-spacing:42.549292pt;}
.ws5{word-spacing:45.270357pt;}
.ws56{word-spacing:47.604403pt;}
.ws12a{word-spacing:49.109533pt;}
.wsee{word-spacing:51.299588pt;}
.wsd9{word-spacing:53.306226pt;}
.wsf6{word-spacing:56.941505pt;}
.ws4f{word-spacing:57.622085pt;}
.ws5a{word-spacing:63.706597pt;}
.wsf1{word-spacing:68.551059pt;}
.wsb{word-spacing:75.721764pt;}
.ws4e{word-spacing:83.083706pt;}
.ws58{word-spacing:91.589895pt;}
.ws6c{word-spacing:99.004438pt;}
.wsec{word-spacing:102.914994pt;}
.ws6e{word-spacing:109.551410pt;}
.wsed{word-spacing:111.838801pt;}
.ws11d{word-spacing:140.346299pt;}
.ws78{word-spacing:146.586692pt;}
.ws9e{word-spacing:156.805742pt;}
.ws19{word-spacing:158.801433pt;}
.ws55{word-spacing:159.429951pt;}
.ws11a{word-spacing:169.437232pt;}
.ws6d{word-spacing:178.858466pt;}
.ws57{word-spacing:207.895446pt;}
.ws11e{word-spacing:303.953708pt;}
.ws11b{word-spacing:358.877390pt;}
.ws3{word-spacing:754.924800pt;}
._27{margin-left:-33.059448pt;}
._6{margin-left:-28.694198pt;}
._7{margin-left:-24.372668pt;}
._3a{margin-left:-12.914272pt;}
._1{margin-left:-7.651328pt;}
._5{margin-left:-4.909587pt;}
._11{margin-left:-3.973363pt;}
._2{margin-left:-2.550443pt;}
._0{margin-left:-1.164800pt;}
._3{width:1.636529pt;}
._c{width:2.550443pt;}
._2d{width:3.665458pt;}
._28{width:5.110805pt;}
._35{width:6.341823pt;}
._31{width:13.590124pt;}
._1c{width:14.545467pt;}
._2a{width:15.512248pt;}
._29{width:17.131135pt;}
._3c{width:18.074548pt;}
._26{width:18.974325pt;}
._25{width:21.235421pt;}
._24{width:22.356883pt;}
._1a{width:23.411421pt;}
._4{width:24.314146pt;}
._10{width:25.233934pt;}
._b{width:26.738306pt;}
._a{width:27.960388pt;}
._8{width:29.160066pt;}
._9{width:30.878618pt;}
._e{width:32.583008pt;}
._1b{width:34.234411pt;}
._14{width:35.479817pt;}
._2c{width:36.404852pt;}
._13{width:37.643668pt;}
._16{width:38.972291pt;}
._1d{width:39.998620pt;}
._f{width:40.901852pt;}
._17{width:42.123671pt;}
._12{width:43.685022pt;}
._2f{width:45.166125pt;}
._d{width:46.071642pt;}
._1e{width:47.776569pt;}
._2e{width:49.163677pt;}
._32{width:50.955877pt;}
._3e{width:52.414425pt;}
._2b{width:58.284519pt;}
._19{width:63.767326pt;}
._30{width:67.876635pt;}
._23{width:104.372421pt;}
._1f{width:108.631829pt;}
._20{width:113.579512pt;}
._37{width:137.443157pt;}
._15{width:146.650453pt;}
._33{width:181.236515pt;}
._38{width:182.223162pt;}
._21{width:188.499960pt;}
._22{width:193.433539pt;}
._36{width:214.377040pt;}
._39{width:243.066518pt;}
._3d{width:262.258186pt;}
._3b{width:560.136956pt;}
._18{width:589.363623pt;}
._34{width:742.405995pt;}
.fsc{font-size:16.924800pt;}
.fsf{font-size:31.880533pt;}
.fsd{font-size:36.670400pt;}
.fs7{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fse{font-size:52.003534pt;}
.fs10{font-size:52.480000pt;}
.fsb{font-size:53.133867pt;}
.fs3{font-size:56.043238pt;}
.fs0{font-size:57.600000pt;}
.fs9{font-size:58.181867pt;}
.fs5{font-size:58.447467pt;}
.fsa{font-size:63.761067pt;}
.fs8{font-size:69.074133pt;}
.fs1{font-size:69.120000pt;}
.fs4{font-size:79.701333pt;}
.fs2{font-size:116.480000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:6.092928pt;}
.y1{bottom:12.472412pt;}
.y84{bottom:16.247808pt;}
.y85{bottom:28.817998pt;}
.y5{bottom:38.657055pt;}
.y4{bottom:56.577055pt;}
.y87{bottom:94.782406pt;}
.y38{bottom:145.434667pt;}
.y82{bottom:192.045333pt;}
.y137{bottom:196.925333pt;}
.y37{bottom:197.968000pt;}
.y61{bottom:199.213333pt;}
.y136{bottom:201.622667pt;}
.y81{bottom:209.314667pt;}
.y36{bottom:215.236000pt;}
.y60{bottom:216.481333pt;}
.y135{bottom:217.052000pt;}
.y134{bottom:221.749333pt;}
.yf6{bottom:225.780000pt;}
.y80{bottom:226.582667pt;}
.y35{bottom:232.505333pt;}
.y5f{bottom:233.750667pt;}
.yb1{bottom:234.553333pt;}
.y133{bottom:240.816000pt;}
.yf5{bottom:243.049333pt;}
.y7f{bottom:243.852000pt;}
.y34{bottom:249.773333pt;}
.y5e{bottom:251.018667pt;}
.y92{bottom:251.821333pt;}
.y132{bottom:258.084000pt;}
.y1a7{bottom:260.096921pt;}
.yf4{bottom:260.317333pt;}
.y7e{bottom:261.120000pt;}
.y33{bottom:267.042667pt;}
.y5d{bottom:268.288000pt;}
.yb0{bottom:269.090667pt;}
.yf3{bottom:277.585333pt;}
.y7d{bottom:278.388000pt;}
.y1a6{bottom:280.896921pt;}
.y131{bottom:283.322667pt;}
.y32{bottom:284.310667pt;}
.yd4{bottom:284.770667pt;}
.y5c{bottom:285.556000pt;}
.yaf{bottom:286.358667pt;}
.yd3{bottom:291.153333pt;}
.yd2{bottom:294.749333pt;}
.yf2{bottom:294.854667pt;}
.y7c{bottom:295.657333pt;}
.y15f{bottom:298.598667pt;}
.y1a5{bottom:301.057188pt;}
.y31{bottom:301.578667pt;}
.y5b{bottom:302.824000pt;}
.yae{bottom:303.626667pt;}
.yf1{bottom:312.122667pt;}
.y15e{bottom:312.162667pt;}
.y7b{bottom:312.925333pt;}
.y15d{bottom:313.281333pt;}
.y15c{bottom:317.178667pt;}
.y130{bottom:317.860000pt;}
.y30{bottom:318.848000pt;}
.y5a{bottom:320.093333pt;}
.yad{bottom:320.896000pt;}
.y114{bottom:327.194844pt;}
.yf0{bottom:329.392000pt;}
.y7a{bottom:330.194667pt;}
.yd1{bottom:330.341333pt;}
.y12f{bottom:335.128000pt;}
.y2f{bottom:336.116000pt;}
.y59{bottom:337.361333pt;}
.y15b{bottom:337.496000pt;}
.yac{bottom:338.164000pt;}
.y113{bottom:342.629155pt;}
.yef{bottom:346.660000pt;}
.y79{bottom:347.462667pt;}
.yd0{bottom:347.609333pt;}
.y15a{bottom:350.866667pt;}
.y12e{bottom:352.397333pt;}
.y2e{bottom:353.385333pt;}
.y58{bottom:354.630667pt;}
.y159{bottom:354.764000pt;}
.yab{bottom:355.433333pt;}
.y112{bottom:358.064657pt;}
.yee{bottom:363.929333pt;}
.y78{bottom:364.732000pt;}
.ycf{bottom:364.878667pt;}
.y12d{bottom:369.665333pt;}
.y2d{bottom:370.653333pt;}
.y57{bottom:371.898667pt;}
.y158{bottom:372.072000pt;}
.yaa{bottom:372.701333pt;}
.y111{bottom:381.097545pt;}
.yed{bottom:381.197333pt;}
.y77{bottom:382.000000pt;}
.yce{bottom:382.146667pt;}
.y157{bottom:385.442667pt;}
.y12c{bottom:386.934667pt;}
.y2c{bottom:387.922667pt;}
.y56{bottom:389.168000pt;}
.y156{bottom:389.340000pt;}
.ya9{bottom:389.970667pt;}
.y1a4{bottom:391.616921pt;}
.yec{bottom:398.466667pt;}
.y91{bottom:399.268000pt;}
.ycd{bottom:399.416000pt;}
.y110{bottom:404.131625pt;}
.y12b{bottom:404.202667pt;}
.y155{bottom:404.853333pt;}
.y2b{bottom:405.190667pt;}
.y55{bottom:406.436000pt;}
.y76{bottom:407.238667pt;}
.y154{bottom:408.750667pt;}
.y193{bottom:411.704000pt;}
.yeb{bottom:415.734667pt;}
.y90{bottom:416.537333pt;}
.ycc{bottom:416.684000pt;}
.y12a{bottom:421.470667pt;}
.y54{bottom:423.704000pt;}
.ya8{bottom:424.506667pt;}
.y153{bottom:426.058667pt;}
.y192{bottom:430.300000pt;}
.y2a{bottom:430.429333pt;}
.yea{bottom:433.002667pt;}
.y8f{bottom:433.805333pt;}
.ycb{bottom:433.953333pt;}
.y129{bottom:438.740000pt;}
.y152{bottom:439.429333pt;}
.y53{bottom:440.973333pt;}
.y75{bottom:441.776000pt;}
.y10f{bottom:442.600016pt;}
.y151{bottom:443.326667pt;}
.yca{bottom:447.146667pt;}
.y191{bottom:448.897333pt;}
.ye9{bottom:450.272000pt;}
.y8e{bottom:451.074667pt;}
.yc9{bottom:451.221333pt;}
.y128{bottom:456.008000pt;}
.y10e{bottom:458.034327pt;}
.y52{bottom:458.241333pt;}
.y74{bottom:459.044000pt;}
.y150{bottom:460.634667pt;}
.y29{bottom:464.966667pt;}
.y190{bottom:467.494667pt;}
.ye8{bottom:467.540000pt;}
.y8d{bottom:468.342667pt;}
.yc8{bottom:468.489333pt;}
.y127{bottom:473.277333pt;}
.y10d{bottom:473.468638pt;}
.y14f{bottom:474.005333pt;}
.y51{bottom:475.510667pt;}
.y73{bottom:476.313333pt;}
.y14e{bottom:477.902667pt;}
.y1a3{bottom:478.976921pt;}
.y28{bottom:479.578667pt;}
.y18f{bottom:482.106667pt;}
.ye7{bottom:484.809333pt;}
.y8c{bottom:485.612000pt;}
.y126{bottom:490.545333pt;}
.y50{bottom:492.778667pt;}
.y72{bottom:493.581333pt;}
.yc7{bottom:493.728000pt;}
.y10c{bottom:496.502717pt;}
.y1a2{bottom:499.776921pt;}
.y18e{bottom:500.702667pt;}
.ye6{bottom:502.077333pt;}
.y8b{bottom:502.880000pt;}
.y14d{bottom:503.712000pt;}
.y125{bottom:507.814667pt;}
.y4f{bottom:510.048000pt;}
.y71{bottom:510.850667pt;}
.y27{bottom:511.790667pt;}
.y18d{bottom:515.314667pt;}
.ye5{bottom:519.346667pt;}
.y10b{bottom:519.535605pt;}
.y176{bottom:520.149333pt;}
.y1a1{bottom:520.576921pt;}
.y124{bottom:525.082667pt;}
.y26{bottom:526.402667pt;}
.y4e{bottom:527.316000pt;}
.ya7{bottom:528.118667pt;}
.yc6{bottom:528.265333pt;}
.y18c{bottom:533.912000pt;}
.y14c{bottom:534.086667pt;}
.y16{bottom:534.337055pt;}
.ye4{bottom:536.614667pt;}
.y175{bottom:537.417333pt;}
.y14b{bottom:537.984000pt;}
.y25{bottom:541.014667pt;}
.y1a0{bottom:541.376921pt;}
.y123{bottom:542.350667pt;}
.ya6{bottom:545.386667pt;}
.yc5{bottom:545.534667pt;}
.y18b{bottom:548.524000pt;}
.y10a{bottom:548.805333pt;}
.y4d{bottom:552.554667pt;}
.ye3{bottom:553.882667pt;}
.y174{bottom:554.685333pt;}
.y14a{bottom:555.290667pt;}
.y24{bottom:555.626667pt;}
.y122{bottom:559.620000pt;}
.y19f{bottom:562.176921pt;}
.yc4{bottom:562.802667pt;}
.y109{bottom:566.073333pt;}
.y18a{bottom:567.120000pt;}
.y15{bottom:568.257055pt;}
.y149{bottom:568.662667pt;}
.y70{bottom:569.832000pt;}
.y23{bottom:570.238667pt;}
.ye2{bottom:571.152000pt;}
.y173{bottom:571.954667pt;}
.y148{bottom:572.560000pt;}
.y8a{bottom:572.845333pt;}
.ya5{bottom:574.633333pt;}
.y121{bottom:576.888000pt;}
.y4c{bottom:579.121333pt;}
.yc3{bottom:580.072000pt;}
.y189{bottom:581.732000pt;}
.y19e{bottom:582.976921pt;}
.y108{bottom:583.342667pt;}
.y22{bottom:584.850667pt;}
.y6f{bottom:587.100000pt;}
.ye1{bottom:588.420000pt;}
.y172{bottom:589.222667pt;}
.y147{bottom:589.866667pt;}
.y89{bottom:590.113333pt;}
.ya2{bottom:592.082667pt;}
.y120{bottom:594.157333pt;}
.yc2{bottom:597.340000pt;}
.y21{bottom:599.462667pt;}
.y188{bottom:600.329333pt;}
.y14{bottom:602.177055pt;}
.y146{bottom:603.238667pt;}
.y19d{bottom:603.776921pt;}
.ye0{bottom:605.689333pt;}
.ya4{bottom:605.901333pt;}
.y171{bottom:606.492000pt;}
.y145{bottom:607.136000pt;}
.ya3{bottom:610.265333pt;}
.y11f{bottom:611.425333pt;}
.y107{bottom:612.424000pt;}
.y6e{bottom:612.870667pt;}
.y4b{bottom:613.658667pt;}
.y20{bottom:614.073333pt;}
.yc1{bottom:614.608000pt;}
.y187{bottom:614.941333pt;}
.y88{bottom:619.869333pt;}
.y144{bottom:622.649333pt;}
.ydf{bottom:622.957333pt;}
.y170{bottom:623.760000pt;}
.y19c{bottom:624.576921pt;}
.y143{bottom:626.546667pt;}
.y1f{bottom:628.685333pt;}
.y11e{bottom:628.694667pt;}
.y106{bottom:629.693333pt;}
.y4a{bottom:630.928000pt;}
.yc0{bottom:631.877333pt;}
.y186{bottom:633.538667pt;}
.y13{bottom:636.097055pt;}
.y83{bottom:638.066667pt;}
.ya1{bottom:638.278667pt;}
.yde{bottom:640.226667pt;}
.y16f{bottom:641.029333pt;}
.y1e{bottom:643.297333pt;}
.y142{bottom:643.853333pt;}
.y19b{bottom:645.376921pt;}
.y11d{bottom:645.962667pt;}
.y105{bottom:646.961333pt;}
.y185{bottom:648.150667pt;}
.y49{bottom:648.196000pt;}
.ybf{bottom:649.145333pt;}
.y6d{bottom:651.924000pt;}
.ya0{bottom:655.548000pt;}
.y141{bottom:657.225333pt;}
.ydd{bottom:657.494667pt;}
.y1d{bottom:657.909333pt;}
.y16e{bottom:658.297333pt;}
.y140{bottom:661.122667pt;}
.y184{bottom:662.761333pt;}
.y11c{bottom:663.230667pt;}
.y104{bottom:664.230667pt;}
.y48{bottom:665.465333pt;}
.y19a{bottom:666.176921pt;}
.ybe{bottom:666.414667pt;}
.y6c{bottom:669.192000pt;}
.y12{bottom:670.017055pt;}
.y9f{bottom:672.816000pt;}
.ydc{bottom:674.762667pt;}
.y16d{bottom:675.565333pt;}
.y13f{bottom:678.429333pt;}
.y11b{bottom:680.500000pt;}
.y183{bottom:681.358667pt;}
.y103{bottom:681.498667pt;}
.y47{bottom:682.733333pt;}
.y199{bottom:686.976921pt;}
.y9e{bottom:690.085333pt;}
.y13e{bottom:691.801333pt;}
.ydb{bottom:692.032000pt;}
.y16c{bottom:692.834667pt;}
.ybc{bottom:694.221333pt;}
.yba{bottom:694.394667pt;}
.y13d{bottom:695.698667pt;}
.y182{bottom:695.970667pt;}
.y11a{bottom:697.768000pt;}
.y102{bottom:698.766667pt;}
.y46{bottom:700.001333pt;}
.ybd{bottom:700.602667pt;}
.y11{bottom:703.937055pt;}
.yb9{bottom:704.198667pt;}
.y1c{bottom:704.401333pt;}
.y198{bottom:707.776921pt;}
.yda{bottom:709.300000pt;}
.y16b{bottom:710.102667pt;}
.ybb{bottom:714.038667pt;}
.y181{bottom:714.568000pt;}
.y119{bottom:715.037333pt;}
.y101{bottom:716.036000pt;}
.y45{bottom:717.270667pt;}
.y6b{bottom:719.534667pt;}
.y13c{bottom:721.506667pt;}
.y1b{bottom:721.670667pt;}
.y9d{bottom:722.614667pt;}
.yd9{bottom:726.569333pt;}
.y16a{bottom:727.372000pt;}
.y197{bottom:728.576921pt;}
.y180{bottom:729.180000pt;}
.y118{bottom:732.305333pt;}
.y100{bottom:733.304000pt;}
.y44{bottom:734.538667pt;}
.y6a{bottom:736.802667pt;}
.yb8{bottom:736.962667pt;}
.y10{bottom:737.857055pt;}
.y1a{bottom:738.938667pt;}
.y9a{bottom:740.065333pt;}
.yd8{bottom:743.837333pt;}
.y169{bottom:744.640000pt;}
.y17f{bottom:747.776000pt;}
.y196{bottom:749.376921pt;}
.y117{bottom:749.574667pt;}
.yff{bottom:750.573333pt;}
.y43{bottom:751.808000pt;}
.y9c{bottom:753.882667pt;}
.y69{bottom:754.072000pt;}
.yb7{bottom:754.230667pt;}
.y19{bottom:756.208000pt;}
.y9b{bottom:758.246667pt;}
.y13b{bottom:760.561333pt;}
.yd7{bottom:761.106667pt;}
.y168{bottom:761.909333pt;}
.y17e{bottom:762.388000pt;}
.y116{bottom:766.842667pt;}
.yfe{bottom:767.841333pt;}
.y42{bottom:769.076000pt;}
.y195{bottom:770.176921pt;}
.y68{bottom:771.340000pt;}
.ye{bottom:772.417055pt;}
.yf{bottom:772.611649pt;}
.y13a{bottom:777.829333pt;}
.yd6{bottom:778.374667pt;}
.y167{bottom:779.177333pt;}
.yb6{bottom:779.337333pt;}
.y17d{bottom:780.985333pt;}
.y99{bottom:783.432000pt;}
.y115{bottom:784.110667pt;}
.yfd{bottom:785.110667pt;}
.y41{bottom:786.345333pt;}
.y67{bottom:788.608000pt;}
.y194{bottom:790.976921pt;}
.yd{bottom:793.537055pt;}
.y139{bottom:795.097333pt;}
.y17c{bottom:795.597333pt;}
.yd5{bottom:795.642667pt;}
.yb3{bottom:796.786667pt;}
.y98{bottom:800.701333pt;}
.yfc{bottom:802.378667pt;}
.y40{bottom:803.613333pt;}
.y166{bottom:804.416000pt;}
.y18{bottom:805.357333pt;}
.y66{bottom:805.877333pt;}
.yb5{bottom:810.605333pt;}
.y138{bottom:812.366667pt;}
.yc{bottom:815.297055pt;}
.yb4{bottom:815.741333pt;}
.y97{bottom:817.969333pt;}
.yfb{bottom:819.646667pt;}
.y17b{bottom:820.836000pt;}
.y3f{bottom:820.881333pt;}
.y17{bottom:827.938667pt;}
.y65{bottom:831.646667pt;}
.y164{bottom:835.130667pt;}
.yfa{bottom:836.916000pt;}
.y3e{bottom:838.150667pt;}
.y161{bottom:842.602667pt;}
.y96{bottom:846.408000pt;}
.y165{bottom:848.726667pt;}
.yb{bottom:850.497055pt;}
.yb2{bottom:851.345333pt;}
.y160{bottom:852.581333pt;}
.yf9{bottom:854.184000pt;}
.y17a{bottom:855.373333pt;}
.y3d{bottom:855.418667pt;}
.y93{bottom:863.857333pt;}
.y163{bottom:866.398667pt;}
.y64{bottom:870.701333pt;}
.y162{bottom:870.762667pt;}
.y179{bottom:872.641333pt;}
.y3c{bottom:872.688000pt;}
.y95{bottom:877.676000pt;}
.yf8{bottom:880.300000pt;}
.y94{bottom:882.038667pt;}
.ya{bottom:885.697055pt;}
.y63{bottom:887.969333pt;}
.y178{bottom:889.910667pt;}
.y3b{bottom:889.956000pt;}
.y62{bottom:905.237333pt;}
.yf7{bottom:906.417333pt;}
.y177{bottom:907.178667pt;}
.y3a{bottom:907.225333pt;}
.y9{bottom:917.376921pt;}
.y8{bottom:938.176921pt;}
.y39{bottom:938.580000pt;}
.y7{bottom:958.976921pt;}
.y6{bottom:979.776921pt;}
.y3{bottom:1078.017055pt;}
.y2{bottom:1095.937055pt;}
.h18{height:0.000000pt;}
.h14{height:17.652037pt;}
.hc{height:29.967576pt;}
.h17{height:31.880400pt;}
.hb{height:34.239693pt;}
.hd{height:35.865600pt;}
.h23{height:36.402474pt;}
.h24{height:37.130523pt;}
.h32{height:37.838080pt;}
.h15{height:38.246081pt;}
.h3{height:38.390625pt;}
.h25{height:39.002651pt;}
.h7{height:40.718915pt;}
.h11{height:40.727307pt;}
.h31{height:40.913227pt;}
.h6{height:41.529600pt;}
.h19{height:41.541853pt;}
.hf{height:43.636400pt;}
.ha{height:43.835600pt;}
.h10{height:44.632747pt;}
.he{height:48.351893pt;}
.h4{height:49.835520pt;}
.h1c{height:51.082243pt;}
.h1a{height:52.989733pt;}
.h12{height:52.995067pt;}
.h9{height:55.790933pt;}
.h16{height:55.901733pt;}
.h1b{height:55.907067pt;}
.h1f{height:58.020400pt;}
.h27{height:58.271576pt;}
.h29{height:59.225733pt;}
.h1d{height:59.929733pt;}
.h20{height:59.935067pt;}
.h28{height:62.425733pt;}
.h2f{height:62.547067pt;}
.h2d{height:63.700400pt;}
.h26{height:70.431067pt;}
.h30{height:71.320400pt;}
.h2a{height:72.480519pt;}
.h2b{height:72.485853pt;}
.h2c{height:76.131067pt;}
.h2e{height:82.996400pt;}
.h22{height:83.551067pt;}
.h5{height:83.982080pt;}
.h1e{height:95.811067pt;}
.h21{height:97.380400pt;}
.h13{height:279.259200pt;}
.h2{height:1097.537067pt;}
.h0{height:1122.481867pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:215.791200pt;}
.w2{width:768.756000pt;}
.w0{width:793.700800pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:9.139392pt;}
.x1{left:12.472401pt;}
.x10{left:19.294272pt;}
.xf{left:36.938376pt;}
.x11{left:80.142454pt;}
.x2{left:87.039999pt;}
.x9{left:183.670667pt;}
.x46{left:186.054667pt;}
.xe{left:187.753333pt;}
.x5{left:191.641333pt;}
.xa{left:199.612000pt;}
.x39{left:201.034667pt;}
.x47{left:206.297333pt;}
.x7{left:207.581333pt;}
.x3{left:225.754532pt;}
.x4{left:233.087865pt;}
.x3b{left:242.246667pt;}
.x30{left:250.938667pt;}
.x36{left:259.153333pt;}
.x31{left:260.830667pt;}
.xd{left:261.988000pt;}
.x6{left:264.701333pt;}
.x40{left:275.794667pt;}
.x33{left:279.198667pt;}
.x27{left:281.828000pt;}
.x32{left:283.564000pt;}
.x13{left:287.800000pt;}
.xb{left:290.784000pt;}
.x3d{left:296.936000pt;}
.xc{left:298.938667pt;}
.x1b{left:301.941333pt;}
.x3c{left:304.057333pt;}
.x48{left:311.039999pt;}
.x3e{left:324.053333pt;}
.x41{left:328.096000pt;}
.x43{left:340.845333pt;}
.x44{left:342.213333pt;}
.x42{left:347.924000pt;}
.x16{left:349.033333pt;}
.x2d{left:355.621333pt;}
.x34{left:360.576000pt;}
.x45{left:361.854667pt;}
.x29{left:368.306667pt;}
.x2a{left:369.676000pt;}
.x28{left:375.989333pt;}
.x1d{left:388.421333pt;}
.x1e{left:389.790667pt;}
.x2b{left:391.741333pt;}
.x1c{left:396.102667pt;}
.x3a{left:401.439727pt;}
.x1f{left:411.856000pt;}
.x2f{left:413.984000pt;}
.x8{left:415.136000pt;}
.x14{left:418.092000pt;}
.x2e{left:421.648000pt;}
.x18{left:435.513333pt;}
.x19{left:436.882667pt;}
.x21{left:439.837333pt;}
.x22{left:441.205333pt;}
.x17{left:443.196000pt;}
.x20{left:447.518667pt;}
.x3f{left:453.634667pt;}
.x1a{left:458.948000pt;}
.x37{left:460.476000pt;}
.x24{left:463.270667pt;}
.x25{left:464.873333pt;}
.x23{left:470.953333pt;}
.x2c{left:477.337333pt;}
.x26{left:486.705333pt;}
.x15{left:517.797333pt;}
.x35{left:526.074667pt;}
.x38{left:538.642667pt;}
}




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