
    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_63090024e5d4afd49f15f30c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_7fd586788b0f738183d8f9d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.085938;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_021ae2a2dacb7edd050d5b67.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_3b87482b41dd3122ca9f5b21.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_95a072bb7412dcda502350b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_3543ec9ac31c20f6c7a6ba7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.085938;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_e9701fdb2700a3c07933b740.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943848;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_de380e6758014cb52e854579.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.085938;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_9ab4825bdbb3223442d4d728.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2d0bcb5d8cefd3bed9026baf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4ca3dfa9b44da94797fddb88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_9f2b8ea8de2363c2559c490b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_cb10d5bbc09880552aa67ff2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3543ec9ac31c20f6c7a6ba7f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.085938;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_5a51fbd65f3879f0bd5fb7de.woff2')format("woff");}.fff{font-family:fff;line-height:1.085938;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;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_a852f218d24a956c3a632bb9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926270;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_3b849fce7100d3a2d2486df0.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.549805;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_05150c303477ef9fb1976afe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861328;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_b7484fbcd68f6f60afd10865.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;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_50405ccc9bc70935daa687be.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_08719fbb5c59687fe06e45b7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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);}
.v4{vertical-align:-88.880974px;}
.v13{vertical-align:-85.347072px;}
.v14{vertical-align:-38.226153px;}
.v2{vertical-align:-22.200000px;}
.v9{vertical-align:-15.113400px;}
.v7{vertical-align:-7.116000px;}
.vb{vertical-align:-2.671169px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.671169px;}
.v8{vertical-align:7.110000px;}
.vd{vertical-align:15.114000px;}
.va{vertical-align:17.784000px;}
.v1{vertical-align:22.200000px;}
.v16{vertical-align:33.694097px;}
.v6{vertical-align:38.226153px;}
.vf{vertical-align:51.563893px;}
.ve{vertical-align:56.898852px;}
.v3{vertical-align:58.242000px;}
.v15{vertical-align:60.456399px;}
.v5{vertical-align:77.345784px;}
.v12{vertical-align:98.688000px;}
.vc{vertical-align:104.017259px;}
.v10{vertical-align:108.462745px;}
.ls4f{letter-spacing:-1.333548px;}
.lsa4{letter-spacing:-0.693445px;}
.ls9f{letter-spacing:-0.666774px;}
.ls37{letter-spacing:-0.653439px;}
.ls4d{letter-spacing:-0.640103px;}
.ls66{letter-spacing:-0.613432px;}
.ls9e{letter-spacing:-0.600097px;}
.ls6a{letter-spacing:-0.586761px;}
.ls9d{letter-spacing:-0.520084px;}
.ls77{letter-spacing:-0.438294px;}
.ls79{letter-spacing:-0.184473px;}
.ls80{letter-spacing:-0.175318px;}
.ls4e{letter-spacing:-0.153358px;}
.ls93{letter-spacing:-0.146690px;}
.ls22{letter-spacing:-0.142245px;}
.ls4c{letter-spacing:-0.138541px;}
.ls15{letter-spacing:-0.088903px;}
.ls14{letter-spacing:-0.080013px;}
.ls35{letter-spacing:-0.075568px;}
.ls17{letter-spacing:-0.044452px;}
.ls64{letter-spacing:-0.044081px;}
.ls8{letter-spacing:-0.026671px;}
.ls4{letter-spacing:-0.013335px;}
.ls3f{letter-spacing:-0.012595px;}
.ls1a{letter-spacing:-0.004445px;}
.ls5{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004445px;}
.ls1d{letter-spacing:0.006668px;}
.ls16{letter-spacing:0.012595px;}
.ls6{letter-spacing:0.013335px;}
.ls83{letter-spacing:0.020003px;}
.ls23{letter-spacing:0.026671px;}
.ls7b{letter-spacing:0.029516px;}
.ls3e{letter-spacing:0.033339px;}
.lsa2{letter-spacing:0.035561px;}
.ls55{letter-spacing:0.040006px;}
.ls33{letter-spacing:0.046674px;}
.ls45{letter-spacing:0.053342px;}
.ls42{letter-spacing:0.060010px;}
.ls7a{letter-spacing:0.061877px;}
.ls5d{letter-spacing:0.062232px;}
.ls43{letter-spacing:0.066677px;}
.ls0{letter-spacing:0.067366px;}
.ls5f{letter-spacing:0.071123px;}
.ls99{letter-spacing:0.073345px;}
.ls1c{letter-spacing:0.080013px;}
.ls34{letter-spacing:0.086681px;}
.ls58{letter-spacing:0.093348px;}
.ls39{letter-spacing:0.097794px;}
.ls31{letter-spacing:0.100016px;}
.ls5e{letter-spacing:0.106684px;}
.ls5a{letter-spacing:0.113352px;}
.ls24{letter-spacing:0.115574px;}
.ls56{letter-spacing:0.120019px;}
.ls2a{letter-spacing:0.124464px;}
.ls3d{letter-spacing:0.126687px;}
.ls26{letter-spacing:0.133355px;}
.ls3c{letter-spacing:0.140023px;}
.ls59{letter-spacing:0.146690px;}
.ls30{letter-spacing:0.153358px;}
.ls7d{letter-spacing:0.154957px;}
.ls2c{letter-spacing:0.160026px;}
.ls29{letter-spacing:0.166694px;}
.ls5c{letter-spacing:0.168916px;}
.ls63{letter-spacing:0.172910px;}
.ls28{letter-spacing:0.173361px;}
.ls9b{letter-spacing:0.179510px;}
.ls27{letter-spacing:0.180029px;}
.ls3a{letter-spacing:0.186697px;}
.ls2f{letter-spacing:0.193364px;}
.ls3b{letter-spacing:0.195587px;}
.ls2e{letter-spacing:0.200032px;}
.ls70{letter-spacing:0.204477px;}
.ls2d{letter-spacing:0.206700px;}
.ls2b{letter-spacing:0.213368px;}
.ls40{letter-spacing:0.220035px;}
.ls36{letter-spacing:0.226703px;}
.ls4b{letter-spacing:0.233371px;}
.ls41{letter-spacing:0.240039px;}
.ls60{letter-spacing:0.246706px;}
.ls52{letter-spacing:0.253374px;}
.ls51{letter-spacing:0.260042px;}
.ls78{letter-spacing:0.262976px;}
.ls44{letter-spacing:0.266710px;}
.ls53{letter-spacing:0.273020px;}
.ls57{letter-spacing:0.273377px;}
.ls68{letter-spacing:0.280045px;}
.ls62{letter-spacing:0.293381px;}
.ls69{letter-spacing:0.306716px;}
.ls75{letter-spacing:0.316999px;}
.ls50{letter-spacing:0.340055px;}
.ls7e{letter-spacing:0.383704px;}
.lsa3{letter-spacing:0.406732px;}
.ls6b{letter-spacing:0.408836px;}
.ls1f{letter-spacing:0.453406px;}
.ls9a{letter-spacing:0.486171px;}
.ls1{letter-spacing:0.573426px;}
.ls12{letter-spacing:0.620100px;}
.ls13{letter-spacing:0.640103px;}
.ls1e{letter-spacing:0.646771px;}
.ls2{letter-spacing:0.660106px;}
.lse{letter-spacing:0.686777px;}
.ls9{letter-spacing:0.692703px;}
.lsc{letter-spacing:0.693445px;}
.ls11{letter-spacing:0.720116px;}
.lsd{letter-spacing:0.746787px;}
.ls10{letter-spacing:0.773458px;}
.ls38{letter-spacing:0.780865px;}
.ls67{letter-spacing:0.791238px;}
.lsf{letter-spacing:0.800129px;}
.ls6d{letter-spacing:0.811681px;}
.lsa{letter-spacing:0.812352px;}
.ls7{letter-spacing:1.135086px;}
.lsb{letter-spacing:1.209084px;}
.ls65{letter-spacing:1.246865px;}
.ls7c{letter-spacing:1.263318px;}
.ls61{letter-spacing:1.273538px;}
.lsa1{letter-spacing:1.309838px;}
.ls18{letter-spacing:1.337993px;}
.ls6e{letter-spacing:1.379858px;}
.lsa0{letter-spacing:1.467271px;}
.ls21{letter-spacing:2.207022px;}
.ls20{letter-spacing:2.220357px;}
.ls73{letter-spacing:2.840884px;}
.ls1b{letter-spacing:3.178272px;}
.ls3{letter-spacing:7.091100px;}
.ls9c{letter-spacing:7.267837px;}
.ls71{letter-spacing:10.544477px;}
.ls74{letter-spacing:16.646844px;}
.ls7f{letter-spacing:16.882969px;}
.ls6c{letter-spacing:89.786699px;}
.ls84{letter-spacing:126.373676px;}
.ls5b{letter-spacing:128.153963px;}
.ls97{letter-spacing:235.071174px;}
.ls94{letter-spacing:240.405366px;}
.ls95{letter-spacing:254.560978px;}
.ls96{letter-spacing:256.407942px;}
.ls89{letter-spacing:275.731052px;}
.ls92{letter-spacing:284.845853px;}
.ls90{letter-spacing:346.189061px;}
.ls47{letter-spacing:357.524219px;}
.ls8e{letter-spacing:359.311173px;}
.ls72{letter-spacing:390.285837px;}
.ls8f{letter-spacing:395.970408px;}
.ls91{letter-spacing:419.900927px;}
.ls49{letter-spacing:514.016077px;}
.ls82{letter-spacing:524.011019px;}
.ls6f{letter-spacing:547.128977px;}
.ls8a{letter-spacing:549.528460px;}
.ls85{letter-spacing:555.109358px;}
.ls88{letter-spacing:564.890933px;}
.ls8b{letter-spacing:575.559317px;}
.ls8c{letter-spacing:578.226413px;}
.ls48{letter-spacing:628.694537px;}
.ls87{letter-spacing:684.023443px;}
.ls4a{letter-spacing:691.778025px;}
.ls86{letter-spacing:705.360211px;}
.ls46{letter-spacing:765.583239px;}
.ls81{letter-spacing:807.596669px;}
.ls98{letter-spacing:1048.508783px;}
.ls8d{letter-spacing:1048.608900px;}
.ls32{letter-spacing:1048.611900px;}
.ls54{letter-spacing:1048.625700px;}
.ls76{letter-spacing:1069.832215px;}
.ls25{letter-spacing:2035.520999px;}
.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;}
}
.wsb5{word-spacing:-163.575899px;}
.wsc0{word-spacing:-90.672169px;}
.wsbd{word-spacing:-84.333677px;}
.wsbb{word-spacing:-81.995277px;}
.wsbf{word-spacing:-74.172904px;}
.wsbe{word-spacing:-73.944157px;}
.wsb7{word-spacing:-73.789200px;}
.wsc{word-spacing:-67.566328px;}
.ws1{word-spacing:-67.560328px;}
.wse{word-spacing:-66.677400px;}
.ws2{word-spacing:-56.728800px;}
.wsba{word-spacing:-52.827318px;}
.wsb6{word-spacing:-51.826976px;}
.wsb8{word-spacing:-51.625877px;}
.wsc1{word-spacing:-51.388682px;}
.wsbc{word-spacing:-26.592040px;}
.wsb4{word-spacing:-25.265578px;}
.ws9{word-spacing:-24.635077px;}
.wsd{word-spacing:-19.183088px;}
.wsf{word-spacing:-18.989724px;}
.wsea{word-spacing:-18.829698px;}
.ws109{word-spacing:-18.816332px;}
.ws58{word-spacing:-18.749685px;}
.wsd4{word-spacing:-18.716346px;}
.wsd5{word-spacing:-18.709678px;}
.wsd3{word-spacing:-18.676340px;}
.wsd0{word-spacing:-18.649669px;}
.wse8{word-spacing:-18.636333px;}
.wse9{word-spacing:-18.629666px;}
.wsb{word-spacing:-18.625120px;}
.wsd1{word-spacing:-18.602995px;}
.wsec{word-spacing:-18.589659px;}
.wsd2{word-spacing:-18.576324px;}
.ws22{word-spacing:-18.536317px;}
.wseb{word-spacing:-18.389627px;}
.ws10a{word-spacing:-17.922885px;}
.ws57{word-spacing:-17.367953px;}
.wsa{word-spacing:-13.695538px;}
.ws7e{word-spacing:-13.148783px;}
.ws7f{word-spacing:-12.526461px;}
.wsef{word-spacing:-12.455338px;}
.ws80{word-spacing:-12.424222px;}
.ws81{word-spacing:-12.419777px;}
.ws7d{word-spacing:-12.357545px;}
.ws0{word-spacing:-11.941724px;}
.ws1f{word-spacing:-2.207022px;}
.ws20{word-spacing:-2.193686px;}
.ws7b{word-spacing:-1.886970px;}
.ws79{word-spacing:-1.860299px;}
.ws77{word-spacing:-1.840296px;}
.ws82{word-spacing:-1.234271px;}
.ws15{word-spacing:-1.200193px;}
.wsd7{word-spacing:-0.926816px;}
.ws74{word-spacing:-0.920148px;}
.ws8a{word-spacing:-0.906813px;}
.ws85{word-spacing:-0.900145px;}
.ws11c{word-spacing:-0.880142px;}
.ws3e{word-spacing:-0.873474px;}
.ws55{word-spacing:-0.846803px;}
.ws11{word-spacing:-0.799757px;}
.ws41{word-spacing:-0.768271px;}
.ws1b{word-spacing:-0.760122px;}
.ws19{word-spacing:-0.733451px;}
.ws1c{word-spacing:-0.706780px;}
.ws18{word-spacing:-0.680109px;}
.ws10{word-spacing:-0.680108px;}
.ws1a{word-spacing:-0.673442px;}
.ws88{word-spacing:-0.660106px;}
.ws8{word-spacing:-0.646771px;}
.ws1e{word-spacing:-0.626768px;}
.ws1d{word-spacing:-0.606764px;}
.ws7{word-spacing:-0.560090px;}
.ws8e{word-spacing:-0.306716px;}
.ws94{word-spacing:-0.266710px;}
.wsce{word-spacing:-0.240039px;}
.ws83{word-spacing:-0.220035px;}
.ws102{word-spacing:-0.213368px;}
.wse1{word-spacing:-0.206700px;}
.ws71{word-spacing:-0.200032px;}
.ws9f{word-spacing:-0.193364px;}
.ws86{word-spacing:-0.186697px;}
.wsc3{word-spacing:-0.180029px;}
.ws89{word-spacing:-0.173361px;}
.ws54{word-spacing:-0.166694px;}
.ws8b{word-spacing:-0.160026px;}
.ws49{word-spacing:-0.153358px;}
.ws87{word-spacing:-0.146690px;}
.ws90{word-spacing:-0.140023px;}
.ws92{word-spacing:-0.133355px;}
.ws52{word-spacing:-0.126687px;}
.ws3b{word-spacing:-0.120019px;}
.ws3c{word-spacing:-0.106684px;}
.ws73{word-spacing:-0.100016px;}
.ws24{word-spacing:-0.097794px;}
.ws7c{word-spacing:-0.093348px;}
.ws28{word-spacing:-0.086681px;}
.ws3d{word-spacing:-0.080013px;}
.ws40{word-spacing:-0.073345px;}
.ws16{word-spacing:-0.066677px;}
.ws27{word-spacing:-0.060010px;}
.ws6e{word-spacing:-0.053342px;}
.ws76{word-spacing:-0.051652px;}
.ws75{word-spacing:-0.046674px;}
.ws25{word-spacing:-0.040006px;}
.ws3f{word-spacing:-0.033339px;}
.ws91{word-spacing:-0.026671px;}
.ws56{word-spacing:-0.020003px;}
.ws26{word-spacing:-0.006668px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:0.004445px;}
.ws17{word-spacing:0.006668px;}
.ws97{word-spacing:0.008890px;}
.ws5{word-spacing:0.013335px;}
.ws23{word-spacing:0.017781px;}
.ws123{word-spacing:0.020003px;}
.ws4{word-spacing:0.026671px;}
.ws96{word-spacing:0.033339px;}
.ws3{word-spacing:0.040006px;}
.ws29{word-spacing:0.046674px;}
.ws93{word-spacing:0.060010px;}
.ws13{word-spacing:0.062232px;}
.ws78{word-spacing:0.073345px;}
.ws95{word-spacing:0.075568px;}
.ws8f{word-spacing:0.093348px;}
.ws12{word-spacing:0.106684px;}
.wsee{word-spacing:0.120019px;}
.wscf{word-spacing:0.126687px;}
.ws21{word-spacing:0.160026px;}
.ws6f{word-spacing:0.166694px;}
.ws6c{word-spacing:0.200032px;}
.wsd6{word-spacing:0.293381px;}
.ws84{word-spacing:0.580093px;}
.wsed{word-spacing:0.660106px;}
.ws103{word-spacing:0.720116px;}
.ws111{word-spacing:0.733451px;}
.ws9a{word-spacing:0.760122px;}
.wsb0{word-spacing:0.766790px;}
.ws33{word-spacing:0.773458px;}
.wsaf{word-spacing:0.780126px;}
.ws32{word-spacing:0.786793px;}
.wsae{word-spacing:0.806797px;}
.wse5{word-spacing:0.820132px;}
.wsb1{word-spacing:0.826800px;}
.ws110{word-spacing:0.833468px;}
.ws120{word-spacing:1.026832px;}
.ws6b{word-spacing:1.586922px;}
.ws70{word-spacing:1.613593px;}
.ws72{word-spacing:1.633596px;}
.ws3a{word-spacing:1.666935px;}
.ws115{word-spacing:1.673603px;}
.ws2a{word-spacing:1.680270px;}
.ws2b{word-spacing:1.693606px;}
.ws9c{word-spacing:1.700274px;}
.wse7{word-spacing:1.706941px;}
.ws69{word-spacing:1.713609px;}
.wsa1{word-spacing:1.720277px;}
.ws53{word-spacing:1.726945px;}
.ws39{word-spacing:1.733612px;}
.wsc9{word-spacing:1.746948px;}
.wsf2{word-spacing:1.753616px;}
.ws9b{word-spacing:1.760283px;}
.wsa8{word-spacing:2.520406px;}
.ws107{word-spacing:2.527073px;}
.ws98{word-spacing:2.553744px;}
.ws4b{word-spacing:2.567080px;}
.ws10e{word-spacing:2.587083px;}
.wsff{word-spacing:2.600419px;}
.ws4a{word-spacing:2.607086px;}
.wsdc{word-spacing:2.613754px;}
.wsfa{word-spacing:2.620422px;}
.wsdb{word-spacing:2.633757px;}
.ws112{word-spacing:2.673764px;}
.ws60{word-spacing:3.407215px;}
.ws30{word-spacing:3.413883px;}
.wsc8{word-spacing:3.427218px;}
.wse6{word-spacing:3.433886px;}
.ws9e{word-spacing:3.447222px;}
.ws100{word-spacing:3.453889px;}
.ws9d{word-spacing:3.460557px;}
.wsa7{word-spacing:3.473893px;}
.ws105{word-spacing:3.480560px;}
.ws61{word-spacing:3.487228px;}
.ws11f{word-spacing:3.593912px;}
.wsa3{word-spacing:4.360702px;}
.ws10c{word-spacing:4.367370px;}
.wsa2{word-spacing:4.380705px;}
.wsfc{word-spacing:4.400708px;}
.ws11b{word-spacing:4.427379px;}
.ws11a{word-spacing:4.487389px;}
.ws113{word-spacing:5.187502px;}
.ws59{word-spacing:5.194169px;}
.ws63{word-spacing:5.220840px;}
.wsf6{word-spacing:5.234176px;}
.ws62{word-spacing:5.240844px;}
.ws68{word-spacing:5.247511px;}
.wsf7{word-spacing:5.260847px;}
.wsaa{word-spacing:5.267515px;}
.wsab{word-spacing:5.287518px;}
.ws114{word-spacing:5.314189px;}
.ws5f{word-spacing:6.060976px;}
.wse2{word-spacing:6.094314px;}
.wsb2{word-spacing:6.100982px;}
.ws5e{word-spacing:6.107650px;}
.wsd9{word-spacing:6.120985px;}
.wsda{word-spacing:6.234337px;}
.wsb3{word-spacing:6.867772px;}
.ws65{word-spacing:6.974456px;}
.ws48{word-spacing:7.001127px;}
.wsfb{word-spacing:7.014462px;}
.wsf3{word-spacing:7.021130px;}
.wsf4{word-spacing:7.027798px;}
.wsc2{word-spacing:7.034466px;}
.ws34{word-spacing:7.041133px;}
.ws99{word-spacing:7.047801px;}
.ws5a{word-spacing:7.054469px;}
.ws4c{word-spacing:7.061137px;}
.ws5b{word-spacing:7.087808px;}
.wse4{word-spacing:7.094475px;}
.wsb9{word-spacing:7.098521px;}
.ws5d{word-spacing:7.101143px;}
.ws66{word-spacing:7.121146px;}
.wsfd{word-spacing:7.887936px;}
.ws5c{word-spacing:7.894604px;}
.ws51{word-spacing:7.901272px;}
.wsa0{word-spacing:7.907940px;}
.wsfe{word-spacing:7.934611px;}
.wsf1{word-spacing:7.941278px;}
.wsde{word-spacing:8.001288px;}
.wsad{word-spacing:8.741407px;}
.ws67{word-spacing:8.754743px;}
.ws10d{word-spacing:8.761410px;}
.wsdd{word-spacing:8.774746px;}
.wscd{word-spacing:8.781414px;}
.wsac{word-spacing:8.788081px;}
.ws2d{word-spacing:8.794749px;}
.ws108{word-spacing:8.801417px;}
.ws117{word-spacing:8.808085px;}
.wsa9{word-spacing:8.828088px;}
.ws2c{word-spacing:8.861426px;}
.ws106{word-spacing:9.588210px;}
.wsa6{word-spacing:9.614881px;}
.ws6a{word-spacing:9.674891px;}
.wsf9{word-spacing:9.688226px;}
.wsdf{word-spacing:9.701562px;}
.wse3{word-spacing:9.721565px;}
.ws116{word-spacing:9.734900px;}
.wsa5{word-spacing:10.508358px;}
.wscc{word-spacing:10.541697px;}
.wsf8{word-spacing:10.555032px;}
.wsc7{word-spacing:10.561700px;}
.wsa4{word-spacing:10.568368px;}
.ws47{word-spacing:10.581703px;}
.ws46{word-spacing:10.595039px;}
.ws45{word-spacing:10.601707px;}
.ws43{word-spacing:10.608374px;}
.ws44{word-spacing:10.628378px;}
.ws118{word-spacing:11.388500px;}
.wsc4{word-spacing:11.395168px;}
.wsc6{word-spacing:11.455177px;}
.wse0{word-spacing:11.461845px;}
.ws2e{word-spacing:11.481848px;}
.wsf5{word-spacing:11.495184px;}
.wsc5{word-spacing:11.541858px;}
.ws101{word-spacing:12.235303px;}
.wscb{word-spacing:12.395329px;}
.wsca{word-spacing:12.401996px;}
.ws50{word-spacing:13.202125px;}
.ws36{word-spacing:14.095602px;}
.ws35{word-spacing:14.102270px;}
.ws31{word-spacing:14.115606px;}
.ws64{word-spacing:14.182283px;}
.ws2f{word-spacing:15.889224px;}
.ws122{word-spacing:18.562988px;}
.ws4e{word-spacing:18.569656px;}
.ws4f{word-spacing:18.629666px;}
.ws38{word-spacing:21.223416px;}
.ws37{word-spacing:21.276758px;}
.ws11d{word-spacing:27.444418px;}
.ws11e{word-spacing:28.337895px;}
.ws4d{word-spacing:61.334318px;}
.ws10f{word-spacing:61.396550px;}
.ws42{word-spacing:61.432111px;}
.ws10b{word-spacing:61.458782px;}
.ws119{word-spacing:61.494343px;}
.ws104{word-spacing:102.243125px;}
.wsd8{word-spacing:102.269796px;}
.wsf0{word-spacing:102.289799px;}
.ws121{word-spacing:117.405566px;}
.ws8c{word-spacing:414.200009px;}
.ws6d{word-spacing:757.681967px;}
.ws8d{word-spacing:863.485665px;}
.ws7a{word-spacing:946.932432px;}
._16{margin-left:-948.648738px;}
._18{margin-left:-947.343606px;}
._b{margin-left:-758.522102px;}
._a{margin-left:-757.195222px;}
._17{margin-left:-432.631862px;}
._22{margin-left:-361.069234px;}
._35{margin-left:-256.092335px;}
._34{margin-left:-254.245371px;}
._33{margin-left:-239.471882px;}
._36{margin-left:-235.257870px;}
._32{margin-left:-102.267574px;}
._45{margin-left:-97.720175px;}
._31{margin-left:-62.036653px;}
._2e{margin-left:-33.131351px;}
._2d{margin-left:-17.023168px;}
._30{margin-left:-15.554763px;}
._2f{margin-left:-14.270831px;}
._2a{margin-left:-11.803727px;}
._8{margin-left:-9.683778px;}
._1{margin-left:-8.117891px;}
._42{margin-left:-6.939366px;}
._6{margin-left:-5.919676px;}
._4{margin-left:-3.444980px;}
._3{margin-left:-2.382606px;}
._0{margin-left:-1.137487px;}
._2{width:1.624703px;}
._5{width:3.123535px;}
._9{width:4.128131px;}
._7{width:5.278953px;}
._28{width:9.002282px;}
._2c{width:12.116187px;}
._2b{width:16.026579px;}
._27{width:19.256586px;}
._38{width:36.839264px;}
._3f{width:55.969010px;}
._26{width:60.685324px;}
._3d{width:69.884583px;}
._37{width:75.072085px;}
._44{width:89.121013px;}
._3a{width:91.901460px;}
._15{width:99.918309px;}
._29{width:104.625707px;}
._43{width:112.184725px;}
._41{width:115.178541px;}
._3b{width:126.280328px;}
._40{width:129.614198px;}
._e{width:142.569637px;}
._39{width:148.163851px;}
._c{width:173.221218px;}
._3e{width:197.731830px;}
._3c{width:226.543134px;}
._1e{width:238.793995px;}
._1f{width:276.997023px;}
._14{width:287.435159px;}
._1a{width:516.560933px;}
._13{width:545.934548px;}
._25{width:580.013367px;}
._10{width:595.829246px;}
._1b{width:615.158550px;}
._24{width:621.360023px;}
._20{width:664.150881px;}
._1d{width:675.692739px;}
._1c{width:678.635909px;}
._21{width:691.251274px;}
._11{width:774.988723px;}
._19{width:807.293924px;}
._12{width:821.732278px;}
._f{width:878.728119px;}
._23{width:945.142780px;}
._d{width:1070.819041px;}
.fc3{color:transparent;}
.fc1{color:rgb(109,110,112);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:7.112400px;}
.fs2{font-size:38.872800px;}
.fs7{font-size:44.451600px;}
.fsb{font-size:51.564000px;}
.fs8{font-size:55.564200px;}
.fs4{font-size:56.728800px;}
.fs5{font-size:62.973000px;}
.fs1{font-size:66.677400px;}
.fs9{font-size:73.789200px;}
.fsa{font-size:81.790800px;}
.fs6{font-size:88.903200px;}
.fs0{font-size:133.354200px;}
.fs3{font-size:141.822600px;}
.y161{bottom:-11.146950px;}
.y0{bottom:0.000000px;}
.y72{bottom:3.343200px;}
.yc{bottom:33.082050px;}
.ye{bottom:33.088247px;}
.ya{bottom:43.522200px;}
.y1b{bottom:43.525350px;}
.y71{bottom:67.209000px;}
.y70{bottom:70.552200px;}
.y28{bottom:76.914877px;}
.y9{bottom:87.306000px;}
.y6e{bottom:91.444200px;}
.y15e{bottom:91.624200px;}
.y27{bottom:99.136787px;}
.ycf{bottom:104.826615px;}
.yf4{bottom:110.071200px;}
.y8{bottom:116.267700px;}
.yb{bottom:116.645700px;}
.y95{bottom:121.799700px;}
.yce{bottom:127.048526px;}
.yf3{bottom:130.076538px;}
.y12d{bottom:133.191702px;}
.y26{bottom:143.593944px;}
.y94{bottom:146.915700px;}
.ycd{bottom:149.268769px;}
.yf2{bottom:152.301783px;}
.y12c{bottom:152.744850px;}
.y150{bottom:157.856850px;}
.y25{bottom:165.814187px;}
.ycc{bottom:171.489013px;}
.y93{bottom:174.475350px;}
.yf1{bottom:174.560366px;}
.y12b{bottom:176.749350px;}
.y14f{bottom:177.920106px;}
.y18e{bottom:192.793180px;}
.y7{bottom:192.890850px;}
.ycb{bottom:193.709256px;}
.yf0{bottom:196.780609px;}
.y14e{bottom:200.140350px;}
.y92{bottom:202.257000px;}
.y12a{bottom:206.086500px;}
.y24{bottom:210.271344px;}
.y122{bottom:213.907350px;}
.y18d{bottom:215.018424px;}
.y18c{bottom:215.056764px;}
.yca{bottom:215.939348px;}
.yef{bottom:219.000853px;}
.y14d{bottom:222.427271px;}
.y91{bottom:229.818000px;}
.y121{bottom:233.982919px;}
.y129{bottom:235.480500px;}
.y18b{bottom:237.343685px;}
.yc9{bottom:238.226269px;}
.yf7{bottom:241.480500px;}
.y14c{bottom:244.647514px;}
.y23{bottom:254.728500px;}
.y11d{bottom:255.660150px;}
.y120{bottom:256.203163px;}
.y8e{bottom:257.655000px;}
.y18a{bottom:259.563928px;}
.yc8{bottom:260.446513px;}
.y128{bottom:264.819656px;}
.y14b{bottom:266.867758px;}
.yee{bottom:268.625508px;}
.y11f{bottom:278.423406px;}
.y189{bottom:281.784172px;}
.yc7{bottom:282.666756px;}
.y90{bottom:285.216150px;}
.y14a{bottom:289.088002px;}
.yed{bottom:290.845751px;}
.y4c{bottom:293.490150px;}
.y22{bottom:299.185656px;}
.y127{bottom:300.367045px;}
.y11e{bottom:300.643650px;}
.y188{bottom:304.004415px;}
.yc6{bottom:304.893906px;}
.y149{bottom:311.308245px;}
.y8f{bottom:312.997242px;}
.yec{bottom:313.065995px;}
.y4b{bottom:313.508585px;}
.y11c{bottom:322.979351px;}
.y187{bottom:326.224659px;}
.yc5{bottom:327.177332px;}
.y126{bottom:330.821947px;}
.y148{bottom:333.528489px;}
.yeb{bottom:335.286238px;}
.y4a{bottom:335.728829px;}
.y8d{bottom:340.779150px;}
.y21{bottom:343.642813px;}
.y15d{bottom:343.724212px;}
.y11b{bottom:345.199594px;}
.y186{bottom:348.444902px;}
.yc4{bottom:349.397576px;}
.y125{bottom:349.941692px;}
.y6d{bottom:351.592575px;}
.y147{bottom:355.748732px;}
.yea{bottom:357.506482px;}
.y160{bottom:363.945150px;}
.y20{bottom:365.863056px;}
.y11a{bottom:367.419838px;}
.y8c{bottom:368.340300px;}
.y12f{bottom:370.168800px;}
.y185{bottom:370.665146px;}
.yc3{bottom:371.617819px;}
.y6c{bottom:373.812819px;}
.y146{bottom:377.968976px;}
.y15c{bottom:385.280901px;}
.y1f{bottom:388.083300px;}
.y119{bottom:389.640081px;}
.y8b{bottom:392.343095px;}
.y184{bottom:392.885390px;}
.yc2{bottom:393.838063px;}
.y6b{bottom:396.033062px;}
.y145{bottom:400.189219px;}
.ye9{bottom:401.063494px;}
.y8a{bottom:401.901300px;}
.y49{bottom:402.404562px;}
.y118{bottom:411.860325px;}
.y183{bottom:415.107300px;}
.yc1{bottom:416.058306px;}
.y6a{bottom:418.253306px;}
.ye8{bottom:420.399940px;}
.y144{bottom:422.409463px;}
.y48{bottom:424.626473px;}
.y89{bottom:431.909059px;}
.y117{bottom:434.080569px;}
.y182{bottom:437.332800px;}
.yc0{bottom:438.278550px;}
.y69{bottom:440.473549px;}
.yf6{bottom:440.623908px;}
.y143{bottom:444.629706px;}
.y47{bottom:446.846716px;}
.y88{bottom:451.245505px;}
.y1e{bottom:454.766706px;}
.y116{bottom:456.300812px;}
.y181{bottom:459.561123px;}
.ybf{bottom:460.498794px;}
.yf5{bottom:462.627450px;}
.y68{bottom:462.693793px;}
.y142{bottom:466.882220px;}
.y46{bottom:469.071960px;}
.y1d{bottom:476.986950px;}
.y115{bottom:478.521056px;}
.y180{bottom:480.897891px;}
.y87{bottom:481.943780px;}
.ybe{bottom:482.719037px;}
.y67{bottom:484.914036px;}
.y141{bottom:489.102464px;}
.y45{bottom:491.298872px;}
.y114{bottom:500.741299px;}
.y17f{bottom:500.901111px;}
.ybd{bottom:504.939281px;}
.y66{bottom:507.132613px;}
.y140{bottom:511.322707px;}
.y86{bottom:512.163645px;}
.y44{bottom:513.529117px;}
.y113{bottom:522.961543px;}
.y17e{bottom:523.121355px;}
.ybc{bottom:527.159524px;}
.y65{bottom:529.352856px;}
.y85{bottom:532.166865px;}
.y13f{bottom:533.542951px;}
.y43{bottom:535.749360px;}
.y112{bottom:545.181786px;}
.y17d{bottom:545.341598px;}
.ybb{bottom:549.379768px;}
.y64{bottom:551.573100px;}
.y84{bottom:554.387108px;}
.y13e{bottom:555.763195px;}
.y42{bottom:557.969604px;}
.y111{bottom:567.450371px;}
.y17c{bottom:567.611850px;}
.yba{bottom:571.650019px;}
.y63{bottom:573.836100px;}
.y83{bottom:576.607352px;}
.y13d{bottom:578.033446px;}
.y41{bottom:580.239856px;}
.y110{bottom:589.670615px;}
.y17b{bottom:589.837094px;}
.yb9{bottom:593.870263px;}
.y62{bottom:596.068859px;}
.y82{bottom:598.875936px;}
.y13c{bottom:600.253690px;}
.y40{bottom:602.470101px;}
.y10f{bottom:611.890858px;}
.y17a{bottom:612.090677px;}
.yb8{bottom:616.090506px;}
.y61{bottom:618.289102px;}
.y81{bottom:621.096180px;}
.y13b{bottom:622.473933px;}
.y3f{bottom:624.690344px;}
.y10e{bottom:634.111102px;}
.y179{bottom:634.310920px;}
.yb7{bottom:638.310750px;}
.y6f{bottom:640.512750px;}
.y80{bottom:643.316423px;}
.y13a{bottom:644.694177px;}
.y3e{bottom:646.922256px;}
.y10d{bottom:656.331345px;}
.y15b{bottom:656.467889px;}
.y178{bottom:656.531164px;}
.yb6{bottom:660.537750px;}
.y7f{bottom:665.536667px;}
.y139{bottom:666.030945px;}
.y3d{bottom:669.142500px;}
.y15f{bottom:676.476900px;}
.y10c{bottom:678.551589px;}
.y177{bottom:678.751407px;}
.yb5{bottom:682.763250px;}
.y152{bottom:686.033489px;}
.y7e{bottom:687.761911px;}
.y3c{bottom:691.379413px;}
.y15a{bottom:698.257949px;}
.y10b{bottom:700.771832px;}
.y176{bottom:700.971651px;}
.yb4{bottom:704.766900px;}
.y6{bottom:706.491900px;}
.y151{bottom:708.260400px;}
.y7d{bottom:709.997157px;}
.y3b{bottom:713.599656px;}
.y10a{bottom:722.992076px;}
.y175{bottom:723.191894px;}
.yb3{bottom:726.548323px;}
.ye7{bottom:730.958265px;}
.y7c{bottom:732.217401px;}
.y3a{bottom:735.819900px;}
.y109{bottom:745.212319px;}
.y174{bottom:745.423806px;}
.yaf{bottom:745.656306px;}
.ye6{bottom:750.961485px;}
.y7b{bottom:754.437644px;}
.y39{bottom:758.045550px;}
.yb2{bottom:764.764475px;}
.yae{bottom:764.776050px;}
.y108{bottom:767.432563px;}
.y173{bottom:767.644050px;}
.y124{bottom:768.940806px;}
.ye5{bottom:773.181728px;}
.y7a{bottom:776.664556px;}
.yb1{bottom:783.884220px;}
.y29{bottom:787.042050px;}
.ya9{bottom:788.771895px;}
.y107{bottom:789.652806px;}
.y172{bottom:789.871050px;}
.y123{bottom:791.161050px;}
.ye4{bottom:795.401972px;}
.y38{bottom:796.973224px;}
.y79{bottom:798.906469px;}
.yb0{bottom:803.220666px;}
.ya8{bottom:807.889972px;}
.y106{bottom:811.873050px;}
.y171{bottom:812.168119px;}
.y12e{bottom:813.610050px;}
.ye3{bottom:817.622215px;}
.y37{bottom:819.193468px;}
.y78{bottom:821.126713px;}
.yac{bottom:823.229306px;}
.ya7{bottom:827.008050px;}
.y105{bottom:834.100200px;}
.y170{bottom:834.388363px;}
.ye2{bottom:839.842459px;}
.y36{bottom:841.413711px;}
.yab{bottom:842.344050px;}
.y77{bottom:843.346956px;}
.y5{bottom:853.181700px;}
.y104{bottom:856.330956px;}
.y16f{bottom:856.608606px;}
.yad{bottom:861.680496px;}
.ye1{bottom:862.062702px;}
.y35{bottom:863.633955px;}
.y76{bottom:865.567200px;}
.y1a{bottom:868.167000px;}
.y103{bottom:878.551200px;}
.y16e{bottom:878.828850px;}
.ye0{bottom:884.282946px;}
.yaa{bottom:885.454125px;}
.y34{bottom:885.854198px;}
.y75{bottom:888.023678px;}
.y4{bottom:895.410960px;}
.y19{bottom:897.131700px;}
.y1c{bottom:897.509700px;}
.y16d{bottom:901.115771px;}
.y102{bottom:906.166200px;}
.ydf{bottom:906.568200px;}
.y33{bottom:908.141119px;}
.y96{bottom:909.352350px;}
.ya4{bottom:909.521606px;}
.y4d{bottom:911.236200px;}
.y101{bottom:921.280350px;}
.y16c{bottom:923.336015px;}
.y60{bottom:926.420370px;}
.ya6{bottom:928.631349px;}
.ya3{bottom:928.636350px;}
.y32{bottom:930.361363px;}
.y74{bottom:931.190360px;}
.y3{bottom:935.417220px;}
.ydd{bottom:940.129350px;}
.y16b{bottom:945.556258px;}
.ya5{bottom:947.749427px;}
.y14{bottom:948.494850px;}
.y5f{bottom:948.640613px;}
.y31{bottom:952.581606px;}
.ydc{bottom:964.799877px;}
.y100{bottom:966.620850px;}
.y16a{bottom:967.776502px;}
.y159{bottom:970.406758px;}
.y5e{bottom:970.860857px;}
.ya2{bottom:971.753850px;}
.y30{bottom:974.801850px;}
.y2{bottom:975.423480px;}
.ydb{bottom:977.690850px;}
.y53{bottom:977.940932px;}
.y169{bottom:989.996745px;}
.y158{bottom:992.627002px;}
.y5d{bottom:993.081101px;}
.yde{bottom:994.356650px;}
.yff{bottom:996.847350px;}
.y2f{bottom:997.027350px;}
.y138{bottom:997.911036px;}
.ya1{bottom:999.313500px;}
.y52{bottom:1000.161176px;}
.y168{bottom:1012.216989px;}
.y157{bottom:1014.847245px;}
.y5c{bottom:1015.301344px;}
.y137{bottom:1017.030780px;}
.y51{bottom:1022.381419px;}
.yfb{bottom:1026.408000px;}
.ya0{bottom:1027.096500px;}
.yfe{bottom:1027.297500px;}
.yd9{bottom:1029.255000px;}
.y18{bottom:1029.624000px;}
.y167{bottom:1034.437232px;}
.y2e{bottom:1035.922500px;}
.y136{bottom:1037.046163px;}
.y156{bottom:1037.067489px;}
.y5b{bottom:1037.521588px;}
.y13{bottom:1039.621200px;}
.y50{bottom:1044.601663px;}
.y9f{bottom:1050.877612px;}
.yd8{bottom:1051.258058px;}
.yd6{bottom:1051.258185px;}
.y17{bottom:1052.775690px;}
.y1{bottom:1055.436000px;}
.yfd{bottom:1056.634650px;}
.y166{bottom:1056.657476px;}
.y12{bottom:1058.513100px;}
.y135{bottom:1059.266406px;}
.y155{bottom:1059.287732px;}
.y5a{bottom:1059.746832px;}
.y9e{bottom:1060.434150px;}
.yda{bottom:1065.917726px;}
.y16{bottom:1066.111170px;}
.y4f{bottom:1066.821906px;}
.yd4{bottom:1073.484150px;}
.y2d{bottom:1074.829213px;}
.yd3{bottom:1077.262500px;}
.y11{bottom:1077.405000px;}
.y165{bottom:1078.877719px;}
.y15{bottom:1079.446650px;}
.y154{bottom:1081.507976px;}
.y134{bottom:1081.508126px;}
.y59{bottom:1081.978744px;}
.yfc{bottom:1085.972588px;}
.y4e{bottom:1089.042150px;}
.y9d{bottom:1090.216406px;}
.y164{bottom:1101.097963px;}
.y153{bottom:1103.728219px;}
.y133{bottom:1103.728369px;}
.y58{bottom:1104.198988px;}
.yd7{bottom:1107.045150px;}
.y9c{bottom:1109.331150px;}
.yd5{bottom:1109.934150px;}
.y10{bottom:1115.188230px;}
.yfa{bottom:1115.754587px;}
.y2c{bottom:1119.269700px;}
.y163{bottom:1123.318206px;}
.yd2{bottom:1125.948463px;}
.y132{bottom:1125.948613px;}
.y57{bottom:1126.424232px;}
.y99{bottom:1129.551156px;}
.yf9{bottom:1134.869330px;}
.y9b{bottom:1139.102693px;}
.y2b{bottom:1142.162130px;}
.y162{bottom:1145.538450px;}
.y56{bottom:1147.761000px;}
.yd1{bottom:1148.168706px;}
.y131{bottom:1148.168856px;}
.y98{bottom:1148.670900px;}
.y9a{bottom:1158.222438px;}
.y2a{bottom:1167.721800px;}
.y55{bottom:1167.764100px;}
.yf{bottom:1168.530150px;}
.yf8{bottom:1169.986650px;}
.yd0{bottom:1170.388950px;}
.y130{bottom:1170.389100px;}
.y73{bottom:1188.563400px;}
.y54{bottom:1218.657403px;}
.y97{bottom:1218.662126px;}
.yd{bottom:1218.663600px;}
.h2c{height:6.411000px;}
.h2b{height:7.418011px;}
.h11{height:20.901000px;}
.h9{height:38.851740px;}
.ha{height:40.262340px;}
.h6{height:40.334177px;}
.h5{height:40.901465px;}
.he{height:48.542970px;}
.h7{height:55.039878px;}
.h4{height:55.554000px;}
.hb{height:55.557000px;}
.h1f{height:56.670481px;}
.h24{height:56.678660px;}
.h20{height:56.703197px;}
.h2{height:58.277610px;}
.h8{height:64.420092px;}
.hd{height:69.542445px;}
.h25{height:69.562448px;}
.h18{height:69.562822px;}
.h19{height:69.588744px;}
.hf{height:72.420064px;}
.h1a{height:74.365678px;}
.h28{height:80.055726px;}
.h29{height:80.099578px;}
.h2a{height:80.147275px;}
.h1d{height:80.493217px;}
.h10{height:85.305248px;}
.hc{height:92.723259px;}
.h1{height:96.629704px;}
.h3{height:102.254095px;}
.h17{height:107.748595px;}
.h13{height:107.768598px;}
.h16{height:107.775266px;}
.h1b{height:115.187535px;}
.h26{height:129.998843px;}
.h1c{height:132.971535px;}
.h14{height:146.001419px;}
.h15{height:146.021422px;}
.h12{height:146.888229px;}
.h21{height:172.086387px;}
.h1e{height:219.204794px;}
.h22{height:223.650280px;}
.h23{height:230.745110px;}
.h27{height:1128.789000px;}
.h0{height:1263.000000px;}
.w2{width:216.810000px;}
.w3{width:692.889000px;}
.w5{width:735.766500px;}
.w4{width:745.527000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x19{left:13.967100px;}
.x26{left:47.562450px;}
.x9{left:49.876800px;}
.x21{left:59.786850px;}
.x12{left:62.898450px;}
.x41{left:65.565450px;}
.xf{left:68.677050px;}
.x24{left:76.011600px;}
.x40{left:78.456450px;}
.x3f{left:79.789950px;}
.x3e{left:98.014730px;}
.x30{left:102.237900px;}
.x3c{left:107.628000px;}
.x16{left:118.037700px;}
.x36{left:123.149550px;}
.x27{left:128.039250px;}
.x4{left:130.178721px;}
.x1a{left:141.341250px;}
.x29{left:144.264000px;}
.x25{left:151.807134px;}
.x17{left:158.043300px;}
.xe{left:160.471800px;}
.x42{left:170.497811px;}
.xb{left:183.756300px;}
.x1e{left:200.754602px;}
.x35{left:212.494572px;}
.x3{left:213.658450px;}
.x2c{left:218.756117px;}
.x32{left:230.312840px;}
.x2a{left:232.055994px;}
.x13{left:233.647950px;}
.x2b{left:275.653950px;}
.x33{left:277.432670px;}
.x2{left:284.036129px;}
.x34{left:321.877433px;}
.x1b{left:328.828800px;}
.x10{left:339.231713px;}
.x1{left:349.779750px;}
.x22{left:361.890481px;}
.x1f{left:376.374539px;}
.x3b{left:378.801750px;}
.x2e{left:385.265673px;}
.x5{left:404.138250px;}
.xc{left:406.455750px;}
.x37{left:411.250927px;}
.x3a{left:413.474250px;}
.x2d{left:415.047750px;}
.x6{left:430.014750px;}
.x39{left:447.738900px;}
.x38{left:448.850400px;}
.x1c{left:456.003000px;}
.x2f{left:482.168400px;}
.xd{left:493.307400px;}
.x15{left:526.397985px;}
.x11{left:563.299629px;}
.x23{left:571.960963px;}
.x20{left:589.573859px;}
.x7{left:617.743200px;}
.x28{left:640.220031px;}
.xa{left:654.652174px;}
.x8{left:704.596350px;}
.x3d{left:735.340650px;}
.x31{left:759.161158px;}
.x1d{left:774.935750px;}
.x14{left:816.388650px;}
.x18{left:843.190650px;}
@media print{
.v4{vertical-align:-79.005310pt;}
.v13{vertical-align:-75.864064pt;}
.v14{vertical-align:-33.978803pt;}
.v2{vertical-align:-19.733333pt;}
.v9{vertical-align:-13.434133pt;}
.v7{vertical-align:-6.325333pt;}
.vb{vertical-align:-2.374372pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.374372pt;}
.v8{vertical-align:6.320000pt;}
.vd{vertical-align:13.434667pt;}
.va{vertical-align:15.808000pt;}
.v1{vertical-align:19.733333pt;}
.v16{vertical-align:29.950308pt;}
.v6{vertical-align:33.978803pt;}
.vf{vertical-align:45.834572pt;}
.ve{vertical-align:50.576757pt;}
.v3{vertical-align:51.770667pt;}
.v15{vertical-align:53.739021pt;}
.v5{vertical-align:68.751808pt;}
.v12{vertical-align:87.722667pt;}
.vc{vertical-align:92.459786pt;}
.v10{vertical-align:96.411329pt;}
.ls4f{letter-spacing:-1.185376pt;}
.lsa4{letter-spacing:-0.616396pt;}
.ls9f{letter-spacing:-0.592688pt;}
.ls37{letter-spacing:-0.580834pt;}
.ls4d{letter-spacing:-0.568980pt;}
.ls66{letter-spacing:-0.545273pt;}
.ls9e{letter-spacing:-0.533419pt;}
.ls6a{letter-spacing:-0.521565pt;}
.ls9d{letter-spacing:-0.462297pt;}
.ls77{letter-spacing:-0.389595pt;}
.ls79{letter-spacing:-0.163976pt;}
.ls80{letter-spacing:-0.155838pt;}
.ls4e{letter-spacing:-0.136318pt;}
.ls93{letter-spacing:-0.130391pt;}
.ls22{letter-spacing:-0.126440pt;}
.ls4c{letter-spacing:-0.123147pt;}
.ls15{letter-spacing:-0.079025pt;}
.ls14{letter-spacing:-0.071123pt;}
.ls35{letter-spacing:-0.067171pt;}
.ls17{letter-spacing:-0.039513pt;}
.ls64{letter-spacing:-0.039183pt;}
.ls8{letter-spacing:-0.023708pt;}
.ls4{letter-spacing:-0.011854pt;}
.ls3f{letter-spacing:-0.011195pt;}
.ls1a{letter-spacing:-0.003951pt;}
.ls5{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003951pt;}
.ls1d{letter-spacing:0.005927pt;}
.ls16{letter-spacing:0.011195pt;}
.ls6{letter-spacing:0.011854pt;}
.ls83{letter-spacing:0.017781pt;}
.ls23{letter-spacing:0.023708pt;}
.ls7b{letter-spacing:0.026236pt;}
.ls3e{letter-spacing:0.029634pt;}
.lsa2{letter-spacing:0.031610pt;}
.ls55{letter-spacing:0.035561pt;}
.ls33{letter-spacing:0.041488pt;}
.ls45{letter-spacing:0.047415pt;}
.ls42{letter-spacing:0.053342pt;}
.ls7a{letter-spacing:0.055002pt;}
.ls5d{letter-spacing:0.055318pt;}
.ls43{letter-spacing:0.059269pt;}
.ls0{letter-spacing:0.059881pt;}
.ls5f{letter-spacing:0.063220pt;}
.ls99{letter-spacing:0.065196pt;}
.ls1c{letter-spacing:0.071123pt;}
.ls34{letter-spacing:0.077049pt;}
.ls58{letter-spacing:0.082976pt;}
.ls39{letter-spacing:0.086928pt;}
.ls31{letter-spacing:0.088903pt;}
.ls5e{letter-spacing:0.094830pt;}
.ls5a{letter-spacing:0.100757pt;}
.ls24{letter-spacing:0.102733pt;}
.ls56{letter-spacing:0.106684pt;}
.ls2a{letter-spacing:0.110635pt;}
.ls3d{letter-spacing:0.112611pt;}
.ls26{letter-spacing:0.118538pt;}
.ls3c{letter-spacing:0.124464pt;}
.ls59{letter-spacing:0.130391pt;}
.ls30{letter-spacing:0.136318pt;}
.ls7d{letter-spacing:0.137740pt;}
.ls2c{letter-spacing:0.142245pt;}
.ls29{letter-spacing:0.148172pt;}
.ls5c{letter-spacing:0.150148pt;}
.ls63{letter-spacing:0.153698pt;}
.ls28{letter-spacing:0.154099pt;}
.ls9b{letter-spacing:0.159565pt;}
.ls27{letter-spacing:0.160026pt;}
.ls3a{letter-spacing:0.165953pt;}
.ls2f{letter-spacing:0.171880pt;}
.ls3b{letter-spacing:0.173855pt;}
.ls2e{letter-spacing:0.177806pt;}
.ls70{letter-spacing:0.181757pt;}
.ls2d{letter-spacing:0.183733pt;}
.ls2b{letter-spacing:0.189660pt;}
.ls40{letter-spacing:0.195587pt;}
.ls36{letter-spacing:0.201514pt;}
.ls4b{letter-spacing:0.207441pt;}
.ls41{letter-spacing:0.213368pt;}
.ls60{letter-spacing:0.219295pt;}
.ls52{letter-spacing:0.225221pt;}
.ls51{letter-spacing:0.231148pt;}
.ls78{letter-spacing:0.233757pt;}
.ls44{letter-spacing:0.237075pt;}
.ls53{letter-spacing:0.242684pt;}
.ls57{letter-spacing:0.243002pt;}
.ls68{letter-spacing:0.248929pt;}
.ls62{letter-spacing:0.260783pt;}
.ls69{letter-spacing:0.272636pt;}
.ls75{letter-spacing:0.281777pt;}
.ls50{letter-spacing:0.302271pt;}
.ls7e{letter-spacing:0.341070pt;}
.lsa3{letter-spacing:0.361540pt;}
.ls6b{letter-spacing:0.363410pt;}
.ls1f{letter-spacing:0.403028pt;}
.ls9a{letter-spacing:0.432152pt;}
.ls1{letter-spacing:0.509712pt;}
.ls12{letter-spacing:0.551200pt;}
.ls13{letter-spacing:0.568980pt;}
.ls1e{letter-spacing:0.574907pt;}
.ls2{letter-spacing:0.586761pt;}
.lse{letter-spacing:0.610469pt;}
.ls9{letter-spacing:0.615736pt;}
.lsc{letter-spacing:0.616396pt;}
.ls11{letter-spacing:0.640103pt;}
.lsd{letter-spacing:0.663811pt;}
.ls10{letter-spacing:0.687518pt;}
.ls38{letter-spacing:0.694102pt;}
.ls67{letter-spacing:0.703323pt;}
.lsf{letter-spacing:0.711226pt;}
.ls6d{letter-spacing:0.721494pt;}
.lsa{letter-spacing:0.722090pt;}
.ls7{letter-spacing:1.008965pt;}
.lsb{letter-spacing:1.074741pt;}
.ls65{letter-spacing:1.108325pt;}
.ls7c{letter-spacing:1.122949pt;}
.ls61{letter-spacing:1.132034pt;}
.lsa1{letter-spacing:1.164301pt;}
.ls18{letter-spacing:1.189327pt;}
.ls6e{letter-spacing:1.226540pt;}
.lsa0{letter-spacing:1.304241pt;}
.ls21{letter-spacing:1.961797pt;}
.ls20{letter-spacing:1.973651pt;}
.ls73{letter-spacing:2.525230pt;}
.ls1b{letter-spacing:2.825131pt;}
.ls3{letter-spacing:6.303200pt;}
.ls9c{letter-spacing:6.460299pt;}
.ls71{letter-spacing:9.372868pt;}
.ls74{letter-spacing:14.797194pt;}
.ls7f{letter-spacing:15.007084pt;}
.ls6c{letter-spacing:79.810399pt;}
.ls84{letter-spacing:112.332157pt;}
.ls5b{letter-spacing:113.914634pt;}
.ls97{letter-spacing:208.952154pt;}
.ls94{letter-spacing:213.693658pt;}
.ls95{letter-spacing:226.276425pt;}
.ls96{letter-spacing:227.918170pt;}
.ls89{letter-spacing:245.094269pt;}
.ls92{letter-spacing:253.196314pt;}
.ls90{letter-spacing:307.723610pt;}
.ls47{letter-spacing:317.799306pt;}
.ls8e{letter-spacing:319.387709pt;}
.ls72{letter-spacing:346.920744pt;}
.ls8f{letter-spacing:351.973696pt;}
.ls91{letter-spacing:373.245268pt;}
.ls49{letter-spacing:456.903179pt;}
.ls82{letter-spacing:465.787572pt;}
.ls6f{letter-spacing:486.336868pt;}
.ls8a{letter-spacing:488.469742pt;}
.ls85{letter-spacing:493.430541pt;}
.ls88{letter-spacing:502.125274pt;}
.ls8b{letter-spacing:511.608282pt;}
.ls8c{letter-spacing:513.979034pt;}
.ls48{letter-spacing:558.839588pt;}
.ls87{letter-spacing:608.020839pt;}
.ls4a{letter-spacing:614.913800pt;}
.ls86{letter-spacing:626.986855pt;}
.ls46{letter-spacing:680.518435pt;}
.ls81{letter-spacing:717.863706pt;}
.ls98{letter-spacing:932.007807pt;}
.ls8d{letter-spacing:932.096800pt;}
.ls32{letter-spacing:932.099467pt;}
.ls54{letter-spacing:932.111733pt;}
.ls76{letter-spacing:950.961969pt;}
.ls25{letter-spacing:1809.352000pt;}
.wsb5{word-spacing:-145.400799pt;}
.wsc0{word-spacing:-80.597484pt;}
.wsbd{word-spacing:-74.963268pt;}
.wsbb{word-spacing:-72.884691pt;}
.wsbf{word-spacing:-65.931470pt;}
.wsbe{word-spacing:-65.728140pt;}
.wsb7{word-spacing:-65.590400pt;}
.wsc{word-spacing:-60.058958pt;}
.ws1{word-spacing:-60.053625pt;}
.wse{word-spacing:-59.268800pt;}
.ws2{word-spacing:-50.425600pt;}
.wsba{word-spacing:-46.957616pt;}
.wsb6{word-spacing:-46.068423pt;}
.wsb8{word-spacing:-45.889668pt;}
.wsc1{word-spacing:-45.678829pt;}
.wsbc{word-spacing:-23.637369pt;}
.wsb4{word-spacing:-22.458291pt;}
.ws9{word-spacing:-21.897846pt;}
.wsd{word-spacing:-17.051634pt;}
.wsf{word-spacing:-16.879754pt;}
.wsea{word-spacing:-16.737509pt;}
.ws109{word-spacing:-16.725629pt;}
.ws58{word-spacing:-16.666387pt;}
.wsd4{word-spacing:-16.636752pt;}
.wsd5{word-spacing:-16.630825pt;}
.wsd3{word-spacing:-16.601191pt;}
.wsd0{word-spacing:-16.577483pt;}
.wse8{word-spacing:-16.565630pt;}
.wse9{word-spacing:-16.559703pt;}
.wsb{word-spacing:-16.555662pt;}
.wsd1{word-spacing:-16.535995pt;}
.wsec{word-spacing:-16.524141pt;}
.wsd2{word-spacing:-16.512288pt;}
.ws22{word-spacing:-16.476726pt;}
.wseb{word-spacing:-16.346335pt;}
.ws10a{word-spacing:-15.931453pt;}
.ws57{word-spacing:-15.438181pt;}
.wsa{word-spacing:-12.173812pt;}
.ws7e{word-spacing:-11.687807pt;}
.ws7f{word-spacing:-11.134632pt;}
.wsef{word-spacing:-11.071412pt;}
.ws80{word-spacing:-11.043753pt;}
.ws81{word-spacing:-11.039802pt;}
.ws7d{word-spacing:-10.984484pt;}
.ws0{word-spacing:-10.614866pt;}
.ws1f{word-spacing:-1.961797pt;}
.ws20{word-spacing:-1.949944pt;}
.ws7b{word-spacing:-1.677307pt;}
.ws79{word-spacing:-1.653600pt;}
.ws77{word-spacing:-1.635819pt;}
.ws82{word-spacing:-1.097130pt;}
.ws15{word-spacing:-1.066838pt;}
.wsd7{word-spacing:-0.823836pt;}
.ws74{word-spacing:-0.817909pt;}
.ws8a{word-spacing:-0.806056pt;}
.ws85{word-spacing:-0.800129pt;}
.ws11c{word-spacing:-0.782348pt;}
.ws3e{word-spacing:-0.776421pt;}
.ws55{word-spacing:-0.752714pt;}
.ws11{word-spacing:-0.710895pt;}
.ws41{word-spacing:-0.682907pt;}
.ws1b{word-spacing:-0.675664pt;}
.ws19{word-spacing:-0.651957pt;}
.ws1c{word-spacing:-0.628249pt;}
.ws18{word-spacing:-0.604542pt;}
.ws10{word-spacing:-0.604541pt;}
.ws1a{word-spacing:-0.598615pt;}
.ws88{word-spacing:-0.586761pt;}
.ws8{word-spacing:-0.574907pt;}
.ws1e{word-spacing:-0.557127pt;}
.ws1d{word-spacing:-0.539346pt;}
.ws7{word-spacing:-0.497858pt;}
.ws8e{word-spacing:-0.272636pt;}
.ws94{word-spacing:-0.237075pt;}
.wsce{word-spacing:-0.213368pt;}
.ws83{word-spacing:-0.195587pt;}
.ws102{word-spacing:-0.189660pt;}
.wse1{word-spacing:-0.183733pt;}
.ws71{word-spacing:-0.177806pt;}
.ws9f{word-spacing:-0.171880pt;}
.ws86{word-spacing:-0.165953pt;}
.wsc3{word-spacing:-0.160026pt;}
.ws89{word-spacing:-0.154099pt;}
.ws54{word-spacing:-0.148172pt;}
.ws8b{word-spacing:-0.142245pt;}
.ws49{word-spacing:-0.136318pt;}
.ws87{word-spacing:-0.130391pt;}
.ws90{word-spacing:-0.124464pt;}
.ws92{word-spacing:-0.118538pt;}
.ws52{word-spacing:-0.112611pt;}
.ws3b{word-spacing:-0.106684pt;}
.ws3c{word-spacing:-0.094830pt;}
.ws73{word-spacing:-0.088903pt;}
.ws24{word-spacing:-0.086928pt;}
.ws7c{word-spacing:-0.082976pt;}
.ws28{word-spacing:-0.077049pt;}
.ws3d{word-spacing:-0.071123pt;}
.ws40{word-spacing:-0.065196pt;}
.ws16{word-spacing:-0.059269pt;}
.ws27{word-spacing:-0.053342pt;}
.ws6e{word-spacing:-0.047415pt;}
.ws76{word-spacing:-0.045913pt;}
.ws75{word-spacing:-0.041488pt;}
.ws25{word-spacing:-0.035561pt;}
.ws3f{word-spacing:-0.029634pt;}
.ws91{word-spacing:-0.023708pt;}
.ws56{word-spacing:-0.017781pt;}
.ws26{word-spacing:-0.005927pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:0.003951pt;}
.ws17{word-spacing:0.005927pt;}
.ws97{word-spacing:0.007903pt;}
.ws5{word-spacing:0.011854pt;}
.ws23{word-spacing:0.015805pt;}
.ws123{word-spacing:0.017781pt;}
.ws4{word-spacing:0.023707pt;}
.ws96{word-spacing:0.029634pt;}
.ws3{word-spacing:0.035561pt;}
.ws29{word-spacing:0.041488pt;}
.ws93{word-spacing:0.053342pt;}
.ws13{word-spacing:0.055318pt;}
.ws78{word-spacing:0.065196pt;}
.ws95{word-spacing:0.067171pt;}
.ws8f{word-spacing:0.082976pt;}
.ws12{word-spacing:0.094830pt;}
.wsee{word-spacing:0.106684pt;}
.wscf{word-spacing:0.112611pt;}
.ws21{word-spacing:0.142245pt;}
.ws6f{word-spacing:0.148172pt;}
.ws6c{word-spacing:0.177806pt;}
.wsd6{word-spacing:0.260783pt;}
.ws84{word-spacing:0.515639pt;}
.wsed{word-spacing:0.586761pt;}
.ws103{word-spacing:0.640103pt;}
.ws111{word-spacing:0.651957pt;}
.ws9a{word-spacing:0.675664pt;}
.wsb0{word-spacing:0.681591pt;}
.ws33{word-spacing:0.687518pt;}
.wsaf{word-spacing:0.693445pt;}
.ws32{word-spacing:0.699372pt;}
.wsae{word-spacing:0.717152pt;}
.wse5{word-spacing:0.729006pt;}
.wsb1{word-spacing:0.734933pt;}
.ws110{word-spacing:0.740860pt;}
.ws120{word-spacing:0.912740pt;}
.ws6b{word-spacing:1.410597pt;}
.ws70{word-spacing:1.434305pt;}
.ws72{word-spacing:1.452086pt;}
.ws3a{word-spacing:1.481720pt;}
.ws115{word-spacing:1.487647pt;}
.ws2a{word-spacing:1.493574pt;}
.ws2b{word-spacing:1.505428pt;}
.ws9c{word-spacing:1.511354pt;}
.wse7{word-spacing:1.517281pt;}
.ws69{word-spacing:1.523208pt;}
.wsa1{word-spacing:1.529135pt;}
.ws53{word-spacing:1.535062pt;}
.ws39{word-spacing:1.540989pt;}
.wsc9{word-spacing:1.552843pt;}
.wsf2{word-spacing:1.558769pt;}
.ws9b{word-spacing:1.564696pt;}
.wsa8{word-spacing:2.240361pt;}
.ws107{word-spacing:2.246288pt;}
.ws98{word-spacing:2.269995pt;}
.ws4b{word-spacing:2.281849pt;}
.ws10e{word-spacing:2.299629pt;}
.wsff{word-spacing:2.311483pt;}
.ws4a{word-spacing:2.317410pt;}
.wsdc{word-spacing:2.323337pt;}
.wsfa{word-spacing:2.329264pt;}
.wsdb{word-spacing:2.341118pt;}
.ws112{word-spacing:2.376679pt;}
.ws60{word-spacing:3.028636pt;}
.ws30{word-spacing:3.034563pt;}
.wsc8{word-spacing:3.046416pt;}
.wse6{word-spacing:3.052343pt;}
.ws9e{word-spacing:3.064197pt;}
.ws100{word-spacing:3.070124pt;}
.ws9d{word-spacing:3.076051pt;}
.wsa7{word-spacing:3.087904pt;}
.ws105{word-spacing:3.093831pt;}
.ws61{word-spacing:3.099758pt;}
.ws11f{word-spacing:3.194588pt;}
.wsa3{word-spacing:3.876180pt;}
.ws10c{word-spacing:3.882106pt;}
.wsa2{word-spacing:3.893960pt;}
.wsfc{word-spacing:3.911741pt;}
.ws11b{word-spacing:3.935448pt;}
.ws11a{word-spacing:3.988790pt;}
.ws113{word-spacing:4.611113pt;}
.ws59{word-spacing:4.617040pt;}
.ws63{word-spacing:4.640747pt;}
.wsf6{word-spacing:4.652601pt;}
.ws62{word-spacing:4.658528pt;}
.ws68{word-spacing:4.664455pt;}
.wsf7{word-spacing:4.676308pt;}
.wsaa{word-spacing:4.682235pt;}
.wsab{word-spacing:4.700016pt;}
.ws114{word-spacing:4.723723pt;}
.ws5f{word-spacing:5.387534pt;}
.wse2{word-spacing:5.417168pt;}
.wsb2{word-spacing:5.423095pt;}
.ws5e{word-spacing:5.429022pt;}
.wsd9{word-spacing:5.440876pt;}
.wsda{word-spacing:5.541633pt;}
.wsb3{word-spacing:6.104686pt;}
.ws65{word-spacing:6.199516pt;}
.ws48{word-spacing:6.223224pt;}
.wsfb{word-spacing:6.235078pt;}
.wsf3{word-spacing:6.241005pt;}
.wsf4{word-spacing:6.246932pt;}
.wsc2{word-spacing:6.252858pt;}
.ws34{word-spacing:6.258785pt;}
.ws99{word-spacing:6.264712pt;}
.ws5a{word-spacing:6.270639pt;}
.ws4c{word-spacing:6.276566pt;}
.ws5b{word-spacing:6.300273pt;}
.wse4{word-spacing:6.306200pt;}
.wsb9{word-spacing:6.309796pt;}
.ws5d{word-spacing:6.312127pt;}
.ws66{word-spacing:6.329908pt;}
.wsfd{word-spacing:7.011499pt;}
.ws5c{word-spacing:7.017426pt;}
.ws51{word-spacing:7.023353pt;}
.wsa0{word-spacing:7.029280pt;}
.wsfe{word-spacing:7.052987pt;}
.wsf1{word-spacing:7.058914pt;}
.wsde{word-spacing:7.112256pt;}
.wsad{word-spacing:7.770140pt;}
.ws67{word-spacing:7.781993pt;}
.ws10d{word-spacing:7.787920pt;}
.wsdd{word-spacing:7.799774pt;}
.wscd{word-spacing:7.805701pt;}
.wsac{word-spacing:7.811628pt;}
.ws2d{word-spacing:7.817555pt;}
.ws108{word-spacing:7.823482pt;}
.ws117{word-spacing:7.829408pt;}
.wsa9{word-spacing:7.847189pt;}
.ws2c{word-spacing:7.876824pt;}
.ws106{word-spacing:8.522853pt;}
.wsa6{word-spacing:8.546561pt;}
.ws6a{word-spacing:8.599903pt;}
.wsf9{word-spacing:8.611757pt;}
.wsdf{word-spacing:8.623610pt;}
.wse3{word-spacing:8.641391pt;}
.ws116{word-spacing:8.653245pt;}
.wsa5{word-spacing:9.340763pt;}
.wscc{word-spacing:9.370397pt;}
.wsf8{word-spacing:9.382251pt;}
.wsc7{word-spacing:9.388178pt;}
.wsa4{word-spacing:9.394105pt;}
.ws47{word-spacing:9.405959pt;}
.ws46{word-spacing:9.417812pt;}
.ws45{word-spacing:9.423739pt;}
.ws43{word-spacing:9.429666pt;}
.ws44{word-spacing:9.447447pt;}
.ws118{word-spacing:10.123111pt;}
.wsc4{word-spacing:10.129038pt;}
.wsc6{word-spacing:10.182380pt;}
.wse0{word-spacing:10.188307pt;}
.ws2e{word-spacing:10.206087pt;}
.wsf5{word-spacing:10.217941pt;}
.wsc5{word-spacing:10.259429pt;}
.ws101{word-spacing:10.875825pt;}
.wscb{word-spacing:11.018070pt;}
.wsca{word-spacing:11.023997pt;}
.ws50{word-spacing:11.735222pt;}
.ws36{word-spacing:12.529424pt;}
.ws35{word-spacing:12.535351pt;}
.ws31{word-spacing:12.547205pt;}
.ws64{word-spacing:12.606474pt;}
.ws2f{word-spacing:14.123755pt;}
.ws122{word-spacing:16.500434pt;}
.ws4e{word-spacing:16.506361pt;}
.ws4f{word-spacing:16.559703pt;}
.ws38{word-spacing:18.865259pt;}
.ws37{word-spacing:18.912674pt;}
.ws11d{word-spacing:24.395038pt;}
.ws11e{word-spacing:25.189240pt;}
.ws4d{word-spacing:54.519393pt;}
.ws10f{word-spacing:54.574711pt;}
.ws42{word-spacing:54.606321pt;}
.ws10b{word-spacing:54.630029pt;}
.ws119{word-spacing:54.661639pt;}
.ws104{word-spacing:90.882778pt;}
.wsd8{word-spacing:90.906485pt;}
.wsf0{word-spacing:90.924266pt;}
.ws121{word-spacing:104.360503pt;}
.ws8c{word-spacing:368.177786pt;}
.ws6d{word-spacing:673.495082pt;}
.ws8d{word-spacing:767.542814pt;}
.ws7a{word-spacing:841.717717pt;}
._16{margin-left:-843.243322pt;}
._18{margin-left:-842.083206pt;}
._b{margin-left:-674.241869pt;}
._a{margin-left:-673.062420pt;}
._17{margin-left:-384.561655pt;}
._22{margin-left:-320.950430pt;}
._35{margin-left:-227.637631pt;}
._34{margin-left:-225.995886pt;}
._33{margin-left:-212.863895pt;}
._36{margin-left:-209.118107pt;}
._32{margin-left:-90.904510pt;}
._45{margin-left:-86.862378pt;}
._31{margin-left:-55.143692pt;}
._2e{margin-left:-29.450090pt;}
._2d{margin-left:-15.131705pt;}
._30{margin-left:-13.826456pt;}
._2f{margin-left:-12.685183pt;}
._2a{margin-left:-10.492202pt;}
._8{margin-left:-8.607803pt;}
._1{margin-left:-7.215903pt;}
._42{margin-left:-6.168326pt;}
._6{margin-left:-5.261935pt;}
._4{margin-left:-3.062205pt;}
._3{margin-left:-2.117872pt;}
._0{margin-left:-1.011099pt;}
._2{width:1.444181pt;}
._5{width:2.776476pt;}
._9{width:3.669450pt;}
._7{width:4.692403pt;}
._28{width:8.002029pt;}
._2c{width:10.769944pt;}
._2b{width:14.245848pt;}
._27{width:17.116965pt;}
._38{width:32.746012pt;}
._3f{width:49.750231pt;}
._26{width:53.942511pt;}
._3d{width:62.119629pt;}
._37{width:66.730742pt;}
._44{width:79.218678pt;}
._3a{width:81.690187pt;}
._15{width:88.816275pt;}
._29{width:93.000628pt;}
._43{width:99.719756pt;}
._41{width:102.380925pt;}
._3b{width:112.249180pt;}
._40{width:115.212620pt;}
._e{width:126.728567pt;}
._39{width:131.701200pt;}
._c{width:153.974416pt;}
._3e{width:175.761626pt;}
._3c{width:201.371675pt;}
._1e{width:212.261329pt;}
._1f{width:246.219576pt;}
._14{width:255.497919pt;}
._1a{width:459.165274pt;}
._13{width:485.275154pt;}
._25{width:515.567437pt;}
._10{width:529.625997pt;}
._1b{width:546.807600pt;}
._24{width:552.320020pt;}
._20{width:590.356339pt;}
._1d{width:600.615768pt;}
._1c{width:603.231920pt;}
._21{width:614.445576pt;}
._11{width:688.878865pt;}
._19{width:717.594599pt;}
._12{width:730.428691pt;}
._f{width:781.091661pt;}
._23{width:840.126916pt;}
._d{width:951.839147pt;}
.fsc{font-size:6.322133pt;}
.fs2{font-size:34.553600pt;}
.fs7{font-size:39.512533pt;}
.fsb{font-size:45.834667pt;}
.fs8{font-size:49.390400pt;}
.fs4{font-size:50.425600pt;}
.fs5{font-size:55.976000pt;}
.fs1{font-size:59.268800pt;}
.fs9{font-size:65.590400pt;}
.fsa{font-size:72.702933pt;}
.fs6{font-size:79.025067pt;}
.fs0{font-size:118.537067pt;}
.fs3{font-size:126.064533pt;}
.y161{bottom:-9.908400pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.971733pt;}
.yc{bottom:29.406267pt;}
.ye{bottom:29.411775pt;}
.ya{bottom:38.686400pt;}
.y1b{bottom:38.689200pt;}
.y71{bottom:59.741333pt;}
.y70{bottom:62.713067pt;}
.y28{bottom:68.368779pt;}
.y9{bottom:77.605333pt;}
.y6e{bottom:81.283733pt;}
.y15e{bottom:81.443733pt;}
.y27{bottom:88.121589pt;}
.ycf{bottom:93.179214pt;}
.yf4{bottom:97.841067pt;}
.y8{bottom:103.349067pt;}
.yb{bottom:103.685067pt;}
.y95{bottom:108.266400pt;}
.yce{bottom:112.932023pt;}
.yf3{bottom:115.623590pt;}
.y12d{bottom:118.392624pt;}
.y26{bottom:127.639061pt;}
.y94{bottom:130.591733pt;}
.ycd{bottom:132.683351pt;}
.yf2{bottom:135.379362pt;}
.y12c{bottom:135.773200pt;}
.y150{bottom:140.317200pt;}
.y25{bottom:147.390389pt;}
.ycc{bottom:152.434678pt;}
.y93{bottom:155.089200pt;}
.yf1{bottom:155.164770pt;}
.y12b{bottom:157.110533pt;}
.y14f{bottom:158.151206pt;}
.y18e{bottom:171.371715pt;}
.y7{bottom:171.458533pt;}
.ycb{bottom:172.186006pt;}
.yf0{bottom:174.916097pt;}
.y14e{bottom:177.902533pt;}
.y92{bottom:179.784000pt;}
.y12a{bottom:183.188000pt;}
.y24{bottom:186.907861pt;}
.y122{bottom:190.139867pt;}
.y18d{bottom:191.127488pt;}
.y18c{bottom:191.161568pt;}
.yca{bottom:191.946087pt;}
.yef{bottom:194.667425pt;}
.y14d{bottom:197.713130pt;}
.y91{bottom:204.282667pt;}
.y121{bottom:207.984817pt;}
.y129{bottom:209.316000pt;}
.y18b{bottom:210.972164pt;}
.yc9{bottom:211.756684pt;}
.yf7{bottom:214.649333pt;}
.y14c{bottom:217.464457pt;}
.y23{bottom:226.425333pt;}
.y11d{bottom:227.253467pt;}
.y120{bottom:227.736145pt;}
.y8e{bottom:229.026667pt;}
.y18a{bottom:230.723492pt;}
.yc8{bottom:231.508011pt;}
.y128{bottom:235.395250pt;}
.y14b{bottom:237.215785pt;}
.yee{bottom:238.778229pt;}
.y11f{bottom:247.487472pt;}
.y189{bottom:250.474819pt;}
.yc7{bottom:251.259339pt;}
.y90{bottom:253.525467pt;}
.y14a{bottom:256.967113pt;}
.yed{bottom:258.529557pt;}
.y4c{bottom:260.880133pt;}
.y22{bottom:265.942806pt;}
.y127{bottom:266.992929pt;}
.y11e{bottom:267.238800pt;}
.y188{bottom:270.226147pt;}
.yc6{bottom:271.016806pt;}
.y149{bottom:276.718440pt;}
.y8f{bottom:278.219771pt;}
.yec{bottom:278.280884pt;}
.y4b{bottom:278.674298pt;}
.y11c{bottom:287.092756pt;}
.y187{bottom:289.977475pt;}
.yc5{bottom:290.824295pt;}
.y126{bottom:294.063953pt;}
.y148{bottom:296.469768pt;}
.yeb{bottom:298.032212pt;}
.y4a{bottom:298.425626pt;}
.y8d{bottom:302.914800pt;}
.y21{bottom:305.460278pt;}
.y15d{bottom:305.532633pt;}
.y11b{bottom:306.844084pt;}
.y186{bottom:309.728802pt;}
.yc4{bottom:310.575623pt;}
.y125{bottom:311.059282pt;}
.y6d{bottom:312.526733pt;}
.y147{bottom:316.221095pt;}
.yea{bottom:317.783540pt;}
.y160{bottom:323.506800pt;}
.y20{bottom:325.211606pt;}
.y11a{bottom:326.595411pt;}
.y8c{bottom:327.413600pt;}
.y12f{bottom:329.038933pt;}
.y185{bottom:329.480130pt;}
.yc3{bottom:330.326951pt;}
.y6c{bottom:332.278061pt;}
.y146{bottom:335.972423pt;}
.y15c{bottom:342.471912pt;}
.y1f{bottom:344.962933pt;}
.y119{bottom:346.346739pt;}
.y8b{bottom:348.749418pt;}
.y184{bottom:349.231457pt;}
.yc2{bottom:350.078278pt;}
.y6b{bottom:352.029389pt;}
.y145{bottom:355.723751pt;}
.ye9{bottom:356.500883pt;}
.y8a{bottom:357.245600pt;}
.y49{bottom:357.692944pt;}
.y118{bottom:366.098067pt;}
.y183{bottom:368.984267pt;}
.yc1{bottom:369.829606pt;}
.y6a{bottom:371.780716pt;}
.ye8{bottom:373.688835pt;}
.y144{bottom:375.475078pt;}
.y48{bottom:377.445753pt;}
.y89{bottom:383.919164pt;}
.y117{bottom:385.849394pt;}
.y182{bottom:388.740267pt;}
.yc0{bottom:389.580933pt;}
.y69{bottom:391.532044pt;}
.yf6{bottom:391.665696pt;}
.y143{bottom:395.226406pt;}
.y47{bottom:397.197081pt;}
.y88{bottom:401.107116pt;}
.y1e{bottom:404.237072pt;}
.y116{bottom:405.600722pt;}
.y181{bottom:408.498776pt;}
.ybf{bottom:409.332261pt;}
.yf5{bottom:411.224400pt;}
.y68{bottom:411.283371pt;}
.y142{bottom:415.006418pt;}
.y46{bottom:416.952854pt;}
.y1d{bottom:423.988400pt;}
.y115{bottom:425.352049pt;}
.y180{bottom:427.464792pt;}
.y87{bottom:428.394471pt;}
.ybe{bottom:429.083589pt;}
.y67{bottom:431.034699pt;}
.y141{bottom:434.757746pt;}
.y45{bottom:436.710108pt;}
.y114{bottom:445.103377pt;}
.y17f{bottom:445.245432pt;}
.ybd{bottom:448.834916pt;}
.y66{bottom:450.784545pt;}
.y140{bottom:454.509073pt;}
.y86{bottom:455.256573pt;}
.y44{bottom:456.470326pt;}
.y113{bottom:464.854705pt;}
.y17e{bottom:464.996760pt;}
.ybc{bottom:468.586244pt;}
.y65{bottom:470.535872pt;}
.y85{bottom:473.037213pt;}
.y13f{bottom:474.260401pt;}
.y43{bottom:476.221654pt;}
.y112{bottom:484.606032pt;}
.y17d{bottom:484.748087pt;}
.ybb{bottom:488.337571pt;}
.y64{bottom:490.287200pt;}
.y84{bottom:492.788541pt;}
.y13e{bottom:494.011728pt;}
.y42{bottom:495.972981pt;}
.y111{bottom:504.400330pt;}
.y17c{bottom:504.543867pt;}
.yba{bottom:508.133351pt;}
.y63{bottom:510.076533pt;}
.y83{bottom:512.539868pt;}
.y13d{bottom:513.807508pt;}
.y41{bottom:515.768761pt;}
.y110{bottom:524.151657pt;}
.y17b{bottom:524.299639pt;}
.yb9{bottom:527.884678pt;}
.y62{bottom:529.838985pt;}
.y82{bottom:532.334166pt;}
.y13c{bottom:533.558835pt;}
.y40{bottom:535.528978pt;}
.y10f{bottom:543.902985pt;}
.y17a{bottom:544.080601pt;}
.yb8{bottom:547.636006pt;}
.y61{bottom:549.590313pt;}
.y81{bottom:552.085493pt;}
.y13b{bottom:553.310163pt;}
.y3f{bottom:555.280306pt;}
.y10e{bottom:563.654313pt;}
.y179{bottom:563.831929pt;}
.yb7{bottom:567.387333pt;}
.y6f{bottom:569.344667pt;}
.y80{bottom:571.836821pt;}
.y13a{bottom:573.061490pt;}
.y3e{bottom:575.042006pt;}
.y10d{bottom:583.405640pt;}
.y15b{bottom:583.527012pt;}
.y178{bottom:583.583257pt;}
.yb6{bottom:587.144667pt;}
.y7f{bottom:591.588148pt;}
.y139{bottom:592.027506pt;}
.y3d{bottom:594.793333pt;}
.y15f{bottom:601.312800pt;}
.y10c{bottom:603.156968pt;}
.y177{bottom:603.334584pt;}
.yb5{bottom:606.900667pt;}
.y152{bottom:609.807546pt;}
.y7e{bottom:611.343921pt;}
.y3c{bottom:614.559478pt;}
.y15a{bottom:620.673733pt;}
.y10b{bottom:622.908295pt;}
.y176{bottom:623.085912pt;}
.yb4{bottom:626.459467pt;}
.y6{bottom:627.992800pt;}
.y151{bottom:629.564800pt;}
.y7d{bottom:631.108584pt;}
.y3b{bottom:634.310806pt;}
.y10a{bottom:642.659623pt;}
.y175{bottom:642.837239pt;}
.yb3{bottom:645.820732pt;}
.ye7{bottom:649.740680pt;}
.y7c{bottom:650.859912pt;}
.y3a{bottom:654.062133pt;}
.y109{bottom:662.410951pt;}
.y174{bottom:662.598939pt;}
.yaf{bottom:662.805605pt;}
.ye6{bottom:667.521320pt;}
.y7b{bottom:670.611239pt;}
.y39{bottom:673.818267pt;}
.yb2{bottom:679.790645pt;}
.yae{bottom:679.800933pt;}
.y108{bottom:682.162278pt;}
.y173{bottom:682.350267pt;}
.y124{bottom:683.502939pt;}
.ye5{bottom:687.272647pt;}
.y7a{bottom:690.368494pt;}
.yb1{bottom:696.785973pt;}
.y29{bottom:699.592933pt;}
.ya9{bottom:701.130573pt;}
.y107{bottom:701.913606pt;}
.y172{bottom:702.107600pt;}
.y123{bottom:703.254267pt;}
.ye4{bottom:707.023975pt;}
.y38{bottom:708.420644pt;}
.y79{bottom:710.139084pt;}
.yb0{bottom:713.973925pt;}
.ya8{bottom:718.124420pt;}
.y106{bottom:721.664933pt;}
.y171{bottom:721.927217pt;}
.y12e{bottom:723.208933pt;}
.ye3{bottom:726.775303pt;}
.y37{bottom:728.171971pt;}
.y78{bottom:729.890411pt;}
.yac{bottom:731.759383pt;}
.ya7{bottom:735.118267pt;}
.y105{bottom:741.422400pt;}
.y170{bottom:741.678545pt;}
.ye2{bottom:746.526630pt;}
.y36{bottom:747.923299pt;}
.yab{bottom:748.750267pt;}
.y77{bottom:749.641739pt;}
.y5{bottom:758.383733pt;}
.y104{bottom:761.183072pt;}
.y16f{bottom:761.429872pt;}
.yad{bottom:765.938219pt;}
.ye1{bottom:766.277958pt;}
.y35{bottom:767.674627pt;}
.y76{bottom:769.393067pt;}
.y1a{bottom:771.704000pt;}
.y103{bottom:780.934400pt;}
.y16e{bottom:781.181200pt;}
.ye0{bottom:786.029285pt;}
.yaa{bottom:787.070333pt;}
.y34{bottom:787.425954pt;}
.y75{bottom:789.354380pt;}
.y4{bottom:795.920853pt;}
.y19{bottom:797.450400pt;}
.y1c{bottom:797.786400pt;}
.y16d{bottom:800.991796pt;}
.y102{bottom:805.481067pt;}
.ydf{bottom:805.838400pt;}
.y33{bottom:807.236551pt;}
.y96{bottom:808.313200pt;}
.ya4{bottom:808.463650pt;}
.y4d{bottom:809.987733pt;}
.y101{bottom:818.915867pt;}
.y16c{bottom:820.743124pt;}
.y60{bottom:823.484773pt;}
.ya6{bottom:825.450088pt;}
.ya3{bottom:825.454533pt;}
.y32{bottom:826.987878pt;}
.y74{bottom:827.724764pt;}
.y3{bottom:831.481973pt;}
.ydd{bottom:835.670533pt;}
.y16b{bottom:840.494452pt;}
.ya5{bottom:842.443935pt;}
.y14{bottom:843.106533pt;}
.y5f{bottom:843.236101pt;}
.y31{bottom:846.739206pt;}
.ydc{bottom:857.599890pt;}
.y100{bottom:859.218533pt;}
.y16a{bottom:860.245779pt;}
.y159{bottom:862.583785pt;}
.y5e{bottom:862.987428pt;}
.ya2{bottom:863.781200pt;}
.y30{bottom:866.490533pt;}
.y2{bottom:867.043093pt;}
.ydb{bottom:869.058533pt;}
.y53{bottom:869.280829pt;}
.y169{bottom:879.997107pt;}
.y158{bottom:882.335113pt;}
.y5d{bottom:882.738756pt;}
.yde{bottom:883.872578pt;}
.yff{bottom:886.086533pt;}
.y2f{bottom:886.246533pt;}
.y138{bottom:887.032032pt;}
.ya1{bottom:888.278667pt;}
.y52{bottom:889.032156pt;}
.y168{bottom:899.748434pt;}
.y157{bottom:902.086440pt;}
.y5c{bottom:902.490084pt;}
.y137{bottom:904.027360pt;}
.y51{bottom:908.783484pt;}
.yfb{bottom:912.362667pt;}
.ya0{bottom:912.974667pt;}
.yfe{bottom:913.153333pt;}
.yd9{bottom:914.893333pt;}
.y18{bottom:915.221333pt;}
.y167{bottom:919.499762pt;}
.y2e{bottom:920.820000pt;}
.y136{bottom:921.818811pt;}
.y156{bottom:921.837768pt;}
.y5b{bottom:922.241411pt;}
.y13{bottom:924.107733pt;}
.y50{bottom:928.534811pt;}
.y9f{bottom:934.113433pt;}
.yd8{bottom:934.451607pt;}
.yd6{bottom:934.451720pt;}
.y17{bottom:935.800613pt;}
.y1{bottom:938.165333pt;}
.yfd{bottom:939.230800pt;}
.y166{bottom:939.251090pt;}
.y12{bottom:940.900533pt;}
.y135{bottom:941.570139pt;}
.y155{bottom:941.589095pt;}
.y5a{bottom:941.997184pt;}
.y9e{bottom:942.608133pt;}
.yda{bottom:947.482423pt;}
.y16{bottom:947.654373pt;}
.y4f{bottom:948.286139pt;}
.yd4{bottom:954.208133pt;}
.y2d{bottom:955.403745pt;}
.yd3{bottom:957.566667pt;}
.y11{bottom:957.693333pt;}
.y165{bottom:959.002417pt;}
.y15{bottom:959.508133pt;}
.y154{bottom:961.340423pt;}
.y134{bottom:961.340556pt;}
.y59{bottom:961.758884pt;}
.yfc{bottom:965.308967pt;}
.y4e{bottom:968.037467pt;}
.y9d{bottom:969.081250pt;}
.y164{bottom:978.753745pt;}
.y153{bottom:981.091751pt;}
.y133{bottom:981.091884pt;}
.y58{bottom:981.510211pt;}
.yd7{bottom:984.040133pt;}
.y9c{bottom:986.072133pt;}
.yd5{bottom:986.608133pt;}
.y10{bottom:991.278427pt;}
.yfa{bottom:991.781855pt;}
.y2c{bottom:994.906400pt;}
.y163{bottom:998.505072pt;}
.yd2{bottom:1000.843078pt;}
.y132{bottom:1000.843211pt;}
.y57{bottom:1001.265984pt;}
.y99{bottom:1004.045472pt;}
.yf9{bottom:1008.772738pt;}
.y9b{bottom:1012.535727pt;}
.y2b{bottom:1015.255227pt;}
.y162{bottom:1018.256400pt;}
.y56{bottom:1020.232000pt;}
.yd1{bottom:1020.594406pt;}
.y131{bottom:1020.594539pt;}
.y98{bottom:1021.040800pt;}
.y9a{bottom:1029.531056pt;}
.y2a{bottom:1037.974933pt;}
.y55{bottom:1038.012533pt;}
.yf{bottom:1038.693467pt;}
.yf8{bottom:1039.988133pt;}
.yd0{bottom:1040.345733pt;}
.y130{bottom:1040.345867pt;}
.y73{bottom:1056.500800pt;}
.y54{bottom:1083.251025pt;}
.y97{bottom:1083.255223pt;}
.yd{bottom:1083.256533pt;}
.h2c{height:5.698667pt;}
.h2b{height:6.593787pt;}
.h11{height:18.578667pt;}
.h9{height:34.534880pt;}
.ha{height:35.788747pt;}
.h6{height:35.852602pt;}
.h5{height:36.356858pt;}
.he{height:43.149307pt;}
.h7{height:48.924336pt;}
.h4{height:49.381333pt;}
.hb{height:49.384000pt;}
.h1f{height:50.373761pt;}
.h24{height:50.381031pt;}
.h20{height:50.402842pt;}
.h2{height:51.802320pt;}
.h8{height:57.262304pt;}
.hd{height:61.815506pt;}
.h25{height:61.833287pt;}
.h18{height:61.833620pt;}
.h19{height:61.856661pt;}
.hf{height:64.373391pt;}
.h1a{height:66.102825pt;}
.h28{height:71.160646pt;}
.h29{height:71.199625pt;}
.h2a{height:71.242022pt;}
.h1d{height:71.549526pt;}
.h10{height:75.826887pt;}
.hc{height:82.420675pt;}
.h1{height:85.893070pt;}
.h3{height:90.892529pt;}
.h17{height:95.776529pt;}
.h13{height:95.794309pt;}
.h16{height:95.800236pt;}
.h1b{height:102.388920pt;}
.h26{height:115.554527pt;}
.h1c{height:118.196920pt;}
.h14{height:129.779039pt;}
.h15{height:129.796820pt;}
.h12{height:130.567314pt;}
.h21{height:152.965678pt;}
.h1e{height:194.848706pt;}
.h22{height:198.800249pt;}
.h23{height:205.106764pt;}
.h27{height:1003.368000pt;}
.h0{height:1122.666667pt;}
.w2{width:192.720000pt;}
.w3{width:615.901333pt;}
.w5{width:654.014667pt;}
.w4{width:662.690667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x19{left:12.415200pt;}
.x26{left:42.277733pt;}
.x9{left:44.334933pt;}
.x21{left:53.143867pt;}
.x12{left:55.909733pt;}
.x41{left:58.280400pt;}
.xf{left:61.046267pt;}
.x24{left:67.565867pt;}
.x40{left:69.739067pt;}
.x3f{left:70.924400pt;}
.x3e{left:87.124205pt;}
.x30{left:90.878133pt;}
.x3c{left:95.669333pt;}
.x16{left:104.922400pt;}
.x36{left:109.466267pt;}
.x27{left:113.812667pt;}
.x4{left:115.714419pt;}
.x1a{left:125.636667pt;}
.x29{left:128.234667pt;}
.x25{left:134.939675pt;}
.x17{left:140.482933pt;}
.xe{left:142.641600pt;}
.x42{left:151.553610pt;}
.xb{left:163.338933pt;}
.x1e{left:178.448535pt;}
.x35{left:188.884064pt;}
.x3{left:189.918623pt;}
.x2c{left:194.449882pt;}
.x32{left:204.722525pt;}
.x2a{left:206.271995pt;}
.x13{left:207.687067pt;}
.x2b{left:245.025733pt;}
.x33{left:246.606818pt;}
.x2{left:252.476559pt;}
.x34{left:286.113274pt;}
.x1b{left:292.292267pt;}
.x10{left:301.539301pt;}
.x1{left:310.915333pt;}
.x22{left:321.680427pt;}
.x1f{left:334.555146pt;}
.x3b{left:336.712667pt;}
.x2e{left:342.458376pt;}
.x5{left:359.234000pt;}
.xc{left:361.294000pt;}
.x37{left:365.556379pt;}
.x3a{left:367.532667pt;}
.x2d{left:368.931333pt;}
.x6{left:382.235333pt;}
.x39{left:397.990133pt;}
.x38{left:398.978133pt;}
.x1c{left:405.336000pt;}
.x2f{left:428.594133pt;}
.xd{left:438.495467pt;}
.x15{left:467.909320pt;}
.x11{left:500.710781pt;}
.x23{left:508.409745pt;}
.x20{left:524.065652pt;}
.x7{left:549.105067pt;}
.x28{left:569.084472pt;}
.xa{left:581.913044pt;}
.x8{left:626.307867pt;}
.x3d{left:653.636133pt;}
.x31{left:674.809918pt;}
.x1d{left:688.831778pt;}
.x14{left:725.678800pt;}
.x18{left:749.502800pt;}
}




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