
    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_7dcfdba3b157afefebb07d5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3cfaa477b188e350590fcb8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9608eb3fe50d4da1c75898c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_c7e96bd1d136593fcbbc2b2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022000;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_bf98204c74ef356a3a2319e1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d13cb6c5e9e0a1547fd950ff.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_32f23d82eb415adff44e5cb5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf57ea0866d4c2f7aa2aae7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.907000;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_adf66ca64931d9ba4ae67c52.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_a596d3d17477574c069fd99b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.733000;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_c742bedcef15499a1e30affe.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_39af641b4747df4de98b1472.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.678000;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_52991dd274ccefcd4d3d79f1.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4a75db4a65bb8d1557703d39.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.933594;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_4cb222d7b73b9cbee7e0f3df.woff2')format("woff");}.fff{font-family:fff;line-height:0.933594;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_4a75db4a65bb8d1557703d39.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933594;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_4cb222d7b73b9cbee7e0f3df.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933594;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_4a75db4a65bb8d1557703d39.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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_78b850f1a2efef72ccce44a3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.933594;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_4a75db4a65bb8d1557703d39.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.933594;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_78b850f1a2efef72ccce44a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.933594;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_4a75db4a65bb8d1557703d39.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.933594;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:ff17;src:url('chunks/assets/font_78b850f1a2efef72ccce44a3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.933594;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:ff18;src:url('chunks/assets/font_8280e3f79e64e18baae9f34b.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_74fa44cc2480aec04b16f78b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.733000;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:ff1a;src:url('chunks/assets/font_6f2d6ced7715897610559189.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.960000;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);}
.v6{vertical-align:-56.515560px;}
.v2{vertical-align:-9.053640px;}
.v8{vertical-align:-6.035760px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.071520px;}
.v5{vertical-align:15.931740px;}
.v1{vertical-align:21.912960px;}
.v4{vertical-align:24.930840px;}
.vb{vertical-align:32.360400px;}
.v9{vertical-align:39.414240px;}
.va{vertical-align:40.844400px;}
.vc{vertical-align:82.258440px;}
.v7{vertical-align:96.293400px;}
.ls2a{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000062px;}
.ls3a{letter-spacing:0.000316px;}
.ls9c{letter-spacing:0.000570px;}
.ls8f{letter-spacing:0.001095px;}
.ls25{letter-spacing:0.001152px;}
.ls99{letter-spacing:0.002229px;}
.ls66{letter-spacing:0.002362px;}
.ls0{letter-spacing:0.002424px;}
.ls2{letter-spacing:0.002754px;}
.ls59{letter-spacing:0.002828px;}
.ls40{letter-spacing:0.003038px;}
.ls43{letter-spacing:0.003302px;}
.ls24{letter-spacing:0.003447px;}
.ls9b{letter-spacing:0.003993px;}
.ls7f{letter-spacing:0.004242px;}
.ls17{letter-spacing:0.004945px;}
.ls70{letter-spacing:0.006122px;}
.ls23{letter-spacing:1.517304px;}
.ls3e{letter-spacing:1.518038px;}
.ls68{letter-spacing:2.087617px;}
.ls57{letter-spacing:2.162449px;}
.ls28{letter-spacing:2.165464px;}
.ls6a{letter-spacing:2.168509px;}
.ls18{letter-spacing:3.014371px;}
.ls53{letter-spacing:3.016851px;}
.ls41{letter-spacing:3.017749px;}
.ls14{letter-spacing:3.018501px;}
.ls42{letter-spacing:3.019032px;}
.ls19{letter-spacing:3.020431px;}
.ls1a{letter-spacing:3.021873px;}
.ls5f{letter-spacing:3.022911px;}
.ls2f{letter-spacing:3.478038px;}
.ls8b{letter-spacing:4.212244px;}
.ls87{letter-spacing:4.215002px;}
.ls8a{letter-spacing:4.216773px;}
.ls88{letter-spacing:4.218304px;}
.lsa5{letter-spacing:4.481052px;}
.lsa6{letter-spacing:4.484944px;}
.ls86{letter-spacing:5.456938px;}
.ls7e{letter-spacing:5.462998px;}
.ls37{letter-spacing:6.584413px;}
.ls77{letter-spacing:7.246773px;}
.ls22{letter-spacing:8.387105px;}
.ls21{letter-spacing:10.063842px;}
.ls39{letter-spacing:10.673781px;}
.ls64{letter-spacing:11.450642px;}
.ls65{letter-spacing:11.453944px;}
.ls85{letter-spacing:12.604865px;}
.lsa7{letter-spacing:12.681762px;}
.ls94{letter-spacing:12.952627px;}
.ls2b{letter-spacing:13.402885px;}
.ls7b{letter-spacing:13.411324px;}
.ls5a{letter-spacing:13.414082px;}
.ls27{letter-spacing:13.417384px;}
.ls7a{letter-spacing:13.421913px;}
.ls34{letter-spacing:13.920364px;}
.ls67{letter-spacing:14.558482px;}
.ls48{letter-spacing:15.089716px;}
.ls52{letter-spacing:15.091762px;}
.ls4c{letter-spacing:15.092228px;}
.ls84{letter-spacing:15.092702px;}
.ls92{letter-spacing:15.093642px;}
.ls95{letter-spacing:15.096004px;}
.ls93{letter-spacing:15.098172px;}
.ls61{letter-spacing:15.617164px;}
.ls60{letter-spacing:15.619922px;}
.ls3b{letter-spacing:15.719238px;}
.ls2e{letter-spacing:15.972342px;}
.lsa3{letter-spacing:16.210098px;}
.ls26{letter-spacing:16.429812px;}
.ls11{letter-spacing:16.764322px;}
.ls50{letter-spacing:16.765292px;}
.ls89{letter-spacing:16.766202px;}
.ls3c{letter-spacing:16.768336px;}
.ls3d{letter-spacing:16.768564px;}
.ls54{letter-spacing:16.772262px;}
.ls55{letter-spacing:16.772684px;}
.ls98{letter-spacing:16.773093px;}
.ls51{letter-spacing:16.773684px;}
.ls8c{letter-spacing:17.154873px;}
.ls56{letter-spacing:17.257909px;}
.ls9{letter-spacing:17.926024px;}
.ls31{letter-spacing:18.037388px;}
.ls32{letter-spacing:18.042982px;}
.ls36{letter-spacing:18.043044px;}
.ls8d{letter-spacing:18.083356px;}
.ls4e{letter-spacing:18.112311px;}
.ls8e{letter-spacing:18.186376px;}
.ls2d{letter-spacing:18.386584px;}
.ls46{letter-spacing:18.573498px;}
.ls5d{letter-spacing:18.791089px;}
.ls78{letter-spacing:18.873778px;}
.ls9d{letter-spacing:19.406671px;}
.ls81{letter-spacing:19.474082px;}
.lsa1{letter-spacing:19.479391px;}
.lsa2{letter-spacing:19.485451px;}
.lsd{letter-spacing:19.733722px;}
.ls97{letter-spacing:19.788451px;}
.ls9a{letter-spacing:19.789893px;}
.ls62{letter-spacing:19.800848px;}
.lsf{letter-spacing:19.877730px;}
.lsc{letter-spacing:19.955124px;}
.ls10{letter-spacing:19.962570px;}
.ls91{letter-spacing:20.246058px;}
.ls12{letter-spacing:20.250149px;}
.ls69{letter-spacing:20.408684px;}
.ls33{letter-spacing:20.504233px;}
.ls82{letter-spacing:20.552398px;}
.ls79{letter-spacing:20.659084px;}
.ls71{letter-spacing:20.725821px;}
.ls58{letter-spacing:20.920120px;}
.lsb{letter-spacing:21.403464px;}
.ls4f{letter-spacing:21.509613px;}
.ls6f{letter-spacing:21.609564px;}
.ls74{letter-spacing:21.610504px;}
.ls72{letter-spacing:21.615319px;}
.ls73{letter-spacing:21.620262px;}
.ls4b{letter-spacing:21.673813px;}
.ls7d{letter-spacing:21.797885px;}
.ls83{letter-spacing:21.803945px;}
.ls2c{letter-spacing:21.870138px;}
.ls45{letter-spacing:22.358593px;}
.ls4{letter-spacing:22.716182px;}
.ls5c{letter-spacing:22.796749px;}
.ls1b{letter-spacing:23.389782px;}
.ls1c{letter-spacing:23.390613px;}
.ls76{letter-spacing:23.476505px;}
.ls6d{letter-spacing:23.850342px;}
.ls90{letter-spacing:24.269898px;}
.ls4a{letter-spacing:24.545828px;}
.ls35{letter-spacing:24.618973px;}
.ls6e{letter-spacing:24.635052px;}
.ls5e{letter-spacing:24.723771px;}
.ls9e{letter-spacing:24.812191px;}
.ls9f{letter-spacing:24.839538px;}
.ls75{letter-spacing:25.072652px;}
.lsa0{letter-spacing:25.825902px;}
.ls1f{letter-spacing:26.404041px;}
.ls30{letter-spacing:27.951973px;}
.ls7{letter-spacing:28.046224px;}
.ls4d{letter-spacing:30.186981px;}
.ls47{letter-spacing:30.847521px;}
.ls8{letter-spacing:31.347261px;}
.ls6{letter-spacing:31.527809px;}
.ls3f{letter-spacing:32.087632px;}
.ls20{letter-spacing:32.129419px;}
.ls1e{letter-spacing:32.129724px;}
.ls49{letter-spacing:32.602069px;}
.ls63{letter-spacing:32.853381px;}
.ls6c{letter-spacing:32.979064px;}
.ls3{letter-spacing:33.044209px;}
.lse{letter-spacing:33.153141px;}
.lsa{letter-spacing:34.601481px;}
.ls1d{letter-spacing:35.149152px;}
.ls5{letter-spacing:36.128601px;}
.ls1{letter-spacing:38.774001px;}
.ls6b{letter-spacing:41.365625px;}
.ls38{letter-spacing:46.676241px;}
.ls15{letter-spacing:54.608781px;}
.ls7c{letter-spacing:59.235513px;}
.ls16{letter-spacing:92.984705px;}
.lsa4{letter-spacing:93.023362px;}
.ls5b{letter-spacing:94.192942px;}
.ls80{letter-spacing:94.544422px;}
.ls96{letter-spacing:123.164046px;}
.ls29{letter-spacing:155.671642px;}
.ls44{letter-spacing:257.940202px;}
.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;}
}
.ws4f{word-spacing:-73.776241px;}
.ws42{word-spacing:-60.373356px;}
.ws68{word-spacing:-48.131313px;}
.ws91{word-spacing:-46.970471px;}
.ws95{word-spacing:-45.038524px;}
.ws3e{word-spacing:-43.579618px;}
.ws3b{word-spacing:-40.622338px;}
.ws3c{word-spacing:-39.327204px;}
.wsb7{word-spacing:-39.001188px;}
.ws51{word-spacing:-29.305227px;}
.ws36{word-spacing:-29.244854px;}
.ws77{word-spacing:-28.347470px;}
.ws61{word-spacing:-22.060424px;}
.ws1{word-spacing:-18.112128px;}
.ws4c{word-spacing:-17.773916px;}
.ws4a{word-spacing:-16.771718px;}
.ws31{word-spacing:-15.093339px;}
.wsf9{word-spacing:-13.584096px;}
.wsa2{word-spacing:-12.000000px;}
.ws8f{word-spacing:-6.711034px;}
.ws78{word-spacing:-5.844141px;}
.wse7{word-spacing:-3.380908px;}
.ws71{word-spacing:-3.368833px;}
.wse0{word-spacing:-3.320535px;}
.ws9b{word-spacing:-3.260161px;}
.ws16{word-spacing:-3.199788px;}
.ws2d{word-spacing:-3.139415px;}
.ws119{word-spacing:-3.097174px;}
.wsea{word-spacing:-2.897921px;}
.ws5c{word-spacing:-2.867916px;}
.ws5d{word-spacing:-2.851205px;}
.ws5e{word-spacing:-2.837548px;}
.ws5f{word-spacing:-2.837395px;}
.wsd4{word-spacing:-2.777174px;}
.wsc8{word-spacing:-2.596054px;}
.wsd2{word-spacing:-2.535681px;}
.ws1f{word-spacing:-2.414934px;}
.ws28{word-spacing:-2.354561px;}
.wsed{word-spacing:-2.233814px;}
.ws3{word-spacing:-2.173441px;}
.wsa6{word-spacing:-2.144314px;}
.ws67{word-spacing:-2.138944px;}
.wsdd{word-spacing:-2.113067px;}
.ws5{word-spacing:-1.992321px;}
.wsaf{word-spacing:-1.871574px;}
.wsa8{word-spacing:-1.811201px;}
.wsd8{word-spacing:-1.690454px;}
.ws2{word-spacing:-1.630081px;}
.wsa1{word-spacing:-1.569707px;}
.ws14{word-spacing:-1.509334px;}
.wsde{word-spacing:-1.388587px;}
.ws100{word-spacing:-1.304073px;}
.wsb0{word-spacing:-1.164451px;}
.wsb2{word-spacing:-1.147094px;}
.wsaa{word-spacing:-1.086720px;}
.ws3f{word-spacing:-1.026347px;}
.wsa7{word-spacing:-0.905600px;}
.wscb{word-spacing:-0.784854px;}
.ws102{word-spacing:-0.760709px;}
.ws53{word-spacing:-0.724480px;}
.ws72{word-spacing:-0.664107px;}
.ws73{word-spacing:-0.654153px;}
.ws9a{word-spacing:-0.603734px;}
.ws10f{word-spacing:-0.597700px;}
.ws111{word-spacing:-0.543364px;}
.ws26{word-spacing:-0.543360px;}
.ws112{word-spacing:-0.489027px;}
.ws8c{word-spacing:-0.482987px;}
.wseb{word-spacing:-0.422613px;}
.wsf3{word-spacing:-0.362240px;}
.ws10a{word-spacing:-0.217346px;}
.ws8b{word-spacing:-0.181120px;}
.ws109{word-spacing:-0.163009px;}
.wsf2{word-spacing:-0.120747px;}
.wsb1{word-spacing:-0.072468px;}
.ws4d{word-spacing:-0.042261px;}
.ws4b{word-spacing:-0.015626px;}
.wsa3{word-spacing:-0.005698px;}
.wsa5{word-spacing:-0.005001px;}
.ws6f{word-spacing:-0.003998px;}
.wsfd{word-spacing:-0.003258px;}
.ws76{word-spacing:-0.003005px;}
.ws6d{word-spacing:-0.002721px;}
.ws9c{word-spacing:-0.002390px;}
.ws4e{word-spacing:-0.001708px;}
.ws46{word-spacing:-0.001498px;}
.ws75{word-spacing:-0.001456px;}
.ws106{word-spacing:-0.000048px;}
.ws0{word-spacing:0.000000px;}
.ws74{word-spacing:0.000320px;}
.ws70{word-spacing:0.001237px;}
.ws6e{word-spacing:0.002155px;}
.ws104{word-spacing:0.002356px;}
.ws48{word-spacing:0.003055px;}
.ws8a{word-spacing:0.012075px;}
.ws83{word-spacing:0.060373px;}
.ws65{word-spacing:0.120747px;}
.ws11{word-spacing:0.181120px;}
.wsc{word-spacing:0.301867px;}
.ws2c{word-spacing:0.362240px;}
.ws10b{word-spacing:0.380355px;}
.ws8{word-spacing:0.422613px;}
.wsc4{word-spacing:0.446668px;}
.wsc5{word-spacing:0.482987px;}
.ws57{word-spacing:0.664107px;}
.ws58{word-spacing:0.695917px;}
.ws9e{word-spacing:0.697230px;}
.ws9d{word-spacing:0.724480px;}
.wsf1{word-spacing:0.784854px;}
.ws52{word-spacing:0.845227px;}
.ws10c{word-spacing:0.869382px;}
.ws50{word-spacing:0.873877px;}
.ws29{word-spacing:0.965974px;}
.ws66{word-spacing:0.996912px;}
.ws107{word-spacing:1.032391px;}
.ws118{word-spacing:1.086728px;}
.ws6{word-spacing:1.207467px;}
.ws2e{word-spacing:1.267840px;}
.wsb3{word-spacing:1.298563px;}
.wsb4{word-spacing:1.298995px;}
.wse1{word-spacing:1.328214px;}
.wsbc{word-spacing:1.369880px;}
.wsbe{word-spacing:1.370494px;}
.wsbf{word-spacing:1.371715px;}
.ws47{word-spacing:1.383903px;}
.ws1e{word-spacing:1.388587px;}
.ws20{word-spacing:1.448961px;}
.ws7e{word-spacing:1.509334px;}
.ws3a{word-spacing:1.569707px;}
.wsff{word-spacing:1.575755px;}
.wsab{word-spacing:1.603569px;}
.ws3d{word-spacing:1.610409px;}
.ws49{word-spacing:1.626026px;}
.ws13{word-spacing:1.630081px;}
.wse4{word-spacing:1.690454px;}
.ws108{word-spacing:1.738764px;}
.ws18{word-spacing:1.750827px;}
.wsae{word-spacing:1.871574px;}
.ws25{word-spacing:1.931947px;}
.ws7{word-spacing:1.992321px;}
.ws97{word-spacing:2.052694px;}
.wsd9{word-spacing:2.233814px;}
.wsf{word-spacing:2.354561px;}
.wsbd{word-spacing:2.456942px;}
.ws27{word-spacing:2.535681px;}
.ws62{word-spacing:2.596054px;}
.ws8e{word-spacing:2.617895px;}
.ws94{word-spacing:2.628332px;}
.ws96{word-spacing:2.656428px;}
.ws10{word-spacing:2.716801px;}
.ws10d{word-spacing:2.771156px;}
.ws10e{word-spacing:2.825492px;}
.wse3{word-spacing:2.897921px;}
.ws80{word-spacing:2.947314px;}
.ws81{word-spacing:2.958294px;}
.wsb{word-spacing:3.018668px;}
.ws99{word-spacing:3.079041px;}
.wse9{word-spacing:3.139415px;}
.wsc0{word-spacing:3.320535px;}
.ws2a{word-spacing:3.380908px;}
.ws84{word-spacing:3.441281px;}
.wsad{word-spacing:3.458895px;}
.wsac{word-spacing:3.481495px;}
.ws1c{word-spacing:3.501655px;}
.ws4{word-spacing:3.562028px;}
.ws7d{word-spacing:3.682775px;}
.ws7c{word-spacing:3.689370px;}
.wse2{word-spacing:3.803521px;}
.ws12{word-spacing:3.863895px;}
.ws21{word-spacing:3.984641px;}
.wsdf{word-spacing:4.105388px;}
.ws92{word-spacing:4.346882px;}
.ws93{word-spacing:4.407255px;}
.ws82{word-spacing:4.709122px;}
.wse{word-spacing:4.769495px;}
.ws23{word-spacing:4.829868px;}
.ws69{word-spacing:4.890242px;}
.ws103{word-spacing:4.890275px;}
.wsf6{word-spacing:5.053284px;}
.wsf7{word-spacing:5.107620px;}
.ws105{word-spacing:5.161956px;}
.wsbb{word-spacing:5.192109px;}
.wsfb{word-spacing:5.216293px;}
.ws22{word-spacing:5.252482px;}
.ws114{word-spacing:5.270629px;}
.ws115{word-spacing:5.324966px;}
.wsd5{word-spacing:5.373229px;}
.wsec{word-spacing:5.433602px;}
.ws7b{word-spacing:5.493975px;}
.ws7a{word-spacing:5.534935px;}
.ws101{word-spacing:5.542311px;}
.ws79{word-spacing:5.554349px;}
.wsa{word-spacing:5.614722px;}
.wsfe{word-spacing:5.650984px;}
.wsa0{word-spacing:5.675095px;}
.ws2b{word-spacing:5.795842px;}
.ws110{word-spacing:5.813993px;}
.wsc1{word-spacing:5.916589px;}
.ws1a{word-spacing:5.976962px;}
.wsf8{word-spacing:5.977448px;}
.wsd{word-spacing:6.037336px;}
.ws39{word-spacing:6.097709px;}
.wsd3{word-spacing:6.158082px;}
.wsba{word-spacing:6.218456px;}
.ws55{word-spacing:6.264931px;}
.ws54{word-spacing:6.275155px;}
.ws56{word-spacing:6.278829px;}
.wse8{word-spacing:6.459949px;}
.ws9{word-spacing:6.520322px;}
.ws7f{word-spacing:6.580696px;}
.wsb5{word-spacing:6.701443px;}
.ws2f{word-spacing:6.761816px;}
.wsd6{word-spacing:6.942936px;}
.wsb9{word-spacing:7.184429px;}
.wsb8{word-spacing:7.206253px;}
.wsfa{word-spacing:7.281075px;}
.ws24{word-spacing:7.546670px;}
.ws38{word-spacing:7.607043px;}
.ws6c{word-spacing:7.630860px;}
.wsdc{word-spacing:7.848536px;}
.ws113{word-spacing:7.987448px;}
.wse6{word-spacing:8.090030px;}
.ws44{word-spacing:8.271150px;}
.ws43{word-spacing:8.293135px;}
.ws45{word-spacing:8.295888px;}
.ws19{word-spacing:8.452270px;}
.ws9f{word-spacing:8.573017px;}
.ws8d{word-spacing:8.753350px;}
.ws1d{word-spacing:8.754137px;}
.ws98{word-spacing:8.874883px;}
.wsc6{word-spacing:8.935257px;}
.ws15{word-spacing:8.995630px;}
.wsfc{word-spacing:9.291522px;}
.ws6b{word-spacing:9.418244px;}
.ws6a{word-spacing:9.430208px;}
.ws37{word-spacing:9.520673px;}
.wsc9{word-spacing:9.720110px;}
.wsee{word-spacing:9.840857px;}
.wsc7{word-spacing:9.901230px;}
.wsdb{word-spacing:10.444591px;}
.wsd7{word-spacing:10.565337px;}
.ws63{word-spacing:10.654240px;}
.ws64{word-spacing:10.686084px;}
.wsb6{word-spacing:10.746457px;}
.wsa9{word-spacing:10.987951px;}
.ws1b{word-spacing:11.410564px;}
.wsef{word-spacing:11.591684px;}
.wsf0{word-spacing:12.618031px;}
.ws30{word-spacing:12.859525px;}
.ws32{word-spacing:12.879073px;}
.ws17{word-spacing:13.402885px;}
.wsc3{word-spacing:14.006619px;}
.wsc2{word-spacing:14.024945px;}
.ws35{word-spacing:14.079067px;}
.ws34{word-spacing:14.175174px;}
.ws33{word-spacing:14.187739px;}
.ws90{word-spacing:15.105414px;}
.wsca{word-spacing:15.576326px;}
.wse5{word-spacing:15.878193px;}
.ws117{word-spacing:16.681270px;}
.ws89{word-spacing:16.723420px;}
.wsa4{word-spacing:18.413823px;}
.ws116{word-spacing:19.289416px;}
.ws87{word-spacing:20.345821px;}
.ws88{word-spacing:22.519262px;}
.wscd{word-spacing:22.881502px;}
.wsf5{word-spacing:23.424862px;}
.wsda{word-spacing:23.545609px;}
.ws59{word-spacing:24.710706px;}
.ws5b{word-spacing:24.733932px;}
.ws5a{word-spacing:24.753076px;}
.ws85{word-spacing:26.274485px;}
.ws86{word-spacing:30.186678px;}
.wsf4{word-spacing:31.394145px;}
.ws41{word-spacing:36.586254px;}
.ws40{word-spacing:36.608715px;}
.wscc{word-spacing:41.778362px;}
.wsd0{word-spacing:57.354688px;}
.wsd1{word-spacing:99.676411px;}
.wscf{word-spacing:127.810395px;}
.wsce{word-spacing:135.296691px;}
.ws60{word-spacing:244.029542px;}
._1d{margin-left:-72.000000px;}
._10{margin-left:-10.024475px;}
._2{margin-left:-8.041785px;}
._2b{margin-left:-6.910588px;}
._2c{margin-left:-5.855755px;}
._c{margin-left:-4.829868px;}
._1e{margin-left:-3.767315px;}
._1{margin-left:-2.680595px;}
._3{margin-left:-1.122926px;}
._11{width:1.299027px;}
._1a{width:2.311695px;}
._f{width:3.403609px;}
._0{width:5.913513px;}
._19{width:12.074671px;}
._1c{width:13.463258px;}
._13{width:15.093339px;}
._16{width:16.370543px;}
._7{width:17.629020px;}
._a{width:19.077980px;}
._4{width:20.587314px;}
._8{width:22.410554px;}
._b{width:24.451209px;}
._6{width:25.779423px;}
._17{width:27.331052px;}
._2a{width:28.333182px;}
._d{width:31.090264px;}
._e{width:32.782732px;}
._1f{width:34.231693px;}
._1b{width:36.022960px;}
._5{width:37.938635px;}
._18{width:39.669073px;}
._15{width:41.499239px;}
._14{width:47.136394px;}
._12{width:50.745463px;}
._9{width:52.947433px;}
._2d{width:73.113399px;}
._22{width:93.017173px;}
._21{width:95.933263px;}
._27{width:130.647942px;}
._26{width:145.741281px;}
._28{width:147.793975px;}
._20{width:164.698515px;}
._29{width:166.328596px;}
._25{width:175.143106px;}
._24{width:180.637081px;}
._23{width:250.247561px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.186678px;}
.fs8{font-size:40.802572px;}
.fs3{font-size:42.261228px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:54.336384px;}
.fs7{font-size:58.289574px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:60.373356px;}
.fs9{font-size:66.410934px;}
.fs1{font-size:72.448512px;}
.fs0{font-size:86.937972px;}
.y0{bottom:0.000000px;}
.y91{bottom:0.610884px;}
.y93{bottom:0.753092px;}
.y8a{bottom:3.569618px;}
.y8e{bottom:9.585899px;}
.y54{bottom:52.500000px;}
.y53{bottom:67.500000px;}
.y8c{bottom:89.776482px;}
.y8f{bottom:92.214329px;}
.y51{bottom:106.500002px;}
.y29{bottom:109.790355px;}
.yb8{bottom:112.350639px;}
.y10a{bottom:112.993471px;}
.y4e{bottom:114.514352px;}
.ye8{bottom:114.687165px;}
.y13d{bottom:115.200195px;}
.y88{bottom:117.456795px;}
.y4d{bottom:124.307312px;}
.y28{bottom:127.902180px;}
.yb7{bottom:130.462464px;}
.y109{bottom:131.105296px;}
.ye7{bottom:132.798990px;}
.y13c{bottom:133.312020px;}
.y87{bottom:135.568620px;}
.y50{bottom:138.646787px;}
.y4f{bottom:143.173607px;}
.y27{bottom:146.014005px;}
.yb6{bottom:148.574289px;}
.y108{bottom:149.217121px;}
.ye6{bottom:150.910815px;}
.y13b{bottom:151.423845px;}
.y86{bottom:153.680445px;}
.y170{bottom:153.871337px;}
.y26{bottom:164.125830px;}
.yb5{bottom:166.686114px;}
.y4c{bottom:168.854372px;}
.ye5{bottom:169.022640px;}
.y13a{bottom:169.535670px;}
.y16f{bottom:170.472707px;}
.y85{bottom:171.792270px;}
.y25{bottom:182.237655px;}
.yb4{bottom:184.799454px;}
.y4b{bottom:186.966197px;}
.y16e{bottom:187.075592px;}
.ye4{bottom:187.302630px;}
.y139{bottom:187.647495px;}
.y84{bottom:196.927635px;}
.y107{bottom:200.066581px;}
.y24{bottom:200.350995px;}
.yb3{bottom:202.911279px;}
.y16d{bottom:202.924007px;}
.y4a{bottom:205.078022px;}
.ye3{bottom:205.415970px;}
.y138{bottom:205.936575px;}
.yb2{bottom:206.894214px;}
.y83{bottom:215.039460px;}
.y106{bottom:218.178406px;}
.y23{bottom:218.462820px;}
.y16c{bottom:219.526892px;}
.yb1{bottom:221.023104px;}
.ye2{bottom:223.527795px;}
.y137{bottom:224.048400px;}
.y49{bottom:231.031487px;}
.y82{bottom:233.151285px;}
.y16b{bottom:236.129777px;}
.y22{bottom:236.574645px;}
.yb0{bottom:239.534889px;}
.ye1{bottom:241.639620px;}
.y136{bottom:242.160225px;}
.y48{bottom:249.144827px;}
.y81{bottom:251.264625px;}
.y16a{bottom:252.732662px;}
.y21{bottom:254.686470px;}
.yaf{bottom:257.646714px;}
.ye0{bottom:259.751445px;}
.y135{bottom:260.272050px;}
.y47{bottom:267.256652px;}
.y169{bottom:268.581077px;}
.y80{bottom:269.376450px;}
.y20{bottom:272.798295px;}
.yae{bottom:275.758539px;}
.ydf{bottom:277.863270px;}
.y168{bottom:285.183962px;}
.y7f{bottom:287.488275px;}
.y1f{bottom:290.911635px;}
.y46{bottom:293.210117px;}
.yad{bottom:293.870364px;}
.yde{bottom:295.975095px;}
.y134{bottom:300.042315px;}
.y167{bottom:301.785332px;}
.y7e{bottom:305.600100px;}
.y1e{bottom:309.023460px;}
.y45{bottom:311.321942px;}
.ydd{bottom:314.088435px;}
.y166{bottom:317.633747px;}
.y7d{bottom:323.711925px;}
.y1d{bottom:327.135285px;}
.y44{bottom:329.435282px;}
.ydc{bottom:332.200260px;}
.yac{bottom:332.801319px;}
.y165{bottom:334.236632px;}
.y7c{bottom:341.823750px;}
.y133{bottom:342.830460px;}
.y1c{bottom:345.247110px;}
.y43{bottom:347.547107px;}
.ydb{bottom:350.312085px;}
.y164{bottom:350.839517px;}
.y7b{bottom:359.937090px;}
.y132{bottom:360.942285px;}
.y1b{bottom:363.754350px;}
.y42{bottom:365.658932px;}
.y163{bottom:367.442402px;}
.yda{bottom:368.423910px;}
.yab{bottom:371.733789px;}
.y7a{bottom:378.048915px;}
.y131{bottom:379.054110px;}
.y1a{bottom:381.866175px;}
.y41{bottom:383.770757px;}
.y162{bottom:384.045287px;}
.yd9{bottom:386.535735px;}
.yaa{bottom:389.845614px;}
.y130{bottom:397.165935px;}
.y161{bottom:399.893702px;}
.y19{bottom:399.978000px;}
.y79{bottom:401.991975px;}
.yd8{bottom:404.647560px;}
.ya9{bottom:407.957439px;}
.y40{bottom:409.724222px;}
.y78{bottom:411.845535px;}
.y12f{bottom:415.279275px;}
.y160{bottom:416.496587px;}
.y18{bottom:418.091340px;}
.yd7{bottom:422.760900px;}
.ya8{bottom:426.069264px;}
.y15f{bottom:433.097957px;}
.y12e{bottom:433.391100px;}
.y17{bottom:436.203165px;}
.y77{bottom:438.735270px;}
.yd6{bottom:440.872725px;}
.ya7{bottom:444.181089px;}
.y3f{bottom:446.850812px;}
.y15e{bottom:448.946372px;}
.y12d{bottom:451.502925px;}
.y16{bottom:454.314990px;}
.y76{bottom:456.848610px;}
.yd5{bottom:458.984550px;}
.ya6{bottom:462.292914px;}
.y15d{bottom:465.549257px;}
.y12c{bottom:469.614750px;}
.y105{bottom:470.289556px;}
.y15{bottom:472.426815px;}
.yd4{bottom:477.096375px;}
.ya5{bottom:480.406254px;}
.y15c{bottom:482.152142px;}
.y75{bottom:483.738345px;}
.y3e{bottom:486.996797px;}
.y12b{bottom:487.902315px;}
.y104{bottom:488.401381px;}
.y14{bottom:490.538640px;}
.yd3{bottom:495.208200px;}
.y15b{bottom:498.755027px;}
.y3d{bottom:505.108622px;}
.y12a{bottom:506.014140px;}
.y103{bottom:506.513206px;}
.y13{bottom:508.651980px;}
.y74{bottom:510.629595px;}
.yd2{bottom:513.488190px;}
.ya4{bottom:514.410429px;}
.y15a{bottom:514.603442px;}
.y3c{bottom:523.220447px;}
.y129{bottom:524.125965px;}
.y102{bottom:524.625031px;}
.y159{bottom:531.206327px;}
.yd1{bottom:531.600015px;}
.y73{bottom:535.764960px;}
.y3b{bottom:541.332272px;}
.y128{bottom:542.239305px;}
.y101{bottom:542.738371px;}
.y158{bottom:547.809212px;}
.ya3{bottom:548.413089px;}
.y12{bottom:549.079755px;}
.yd0{bottom:549.713355px;}
.y72{bottom:553.876785px;}
.y3a{bottom:559.444097px;}
.y127{bottom:560.351130px;}
.y100{bottom:560.982001px;}
.y157{bottom:563.656112px;}
.ya2{bottom:566.526429px;}
.ycf{bottom:567.825180px;}
.y71{bottom:571.988610px;}
.y39{bottom:577.557437px;}
.y126{bottom:578.462955px;}
.yff{bottom:579.093826px;}
.y156{bottom:580.258997px;}
.yce{bottom:585.937005px;}
.y70{bottom:590.100435px;}
.ya1{bottom:595.646244px;}
.y38{bottom:595.669262px;}
.y125{bottom:596.574780px;}
.y155{bottom:596.861882px;}
.yfe{bottom:597.337456px;}
.ycd{bottom:604.048830px;}
.ya0{bottom:605.999754px;}
.y6f{bottom:608.212260px;}
.y11{bottom:610.638750px;}
.y154{bottom:612.710297px;}
.y37{bottom:613.781087px;}
.y124{bottom:614.686605px;}
.yfd{bottom:615.449281px;}
.y6e{bottom:626.325600px;}
.y10{bottom:628.750575px;}
.y153{bottom:629.313182px;}
.y36{bottom:631.892912px;}
.y123{bottom:632.799945px;}
.yfc{bottom:633.561106px;}
.ycc{bottom:642.285915px;}
.y6d{bottom:644.437425px;}
.y152{bottom:645.916067px;}
.y9f{bottom:646.454799px;}
.yf{bottom:646.863915px;}
.y35{bottom:650.004737px;}
.y122{bottom:651.087510px;}
.yfb{bottom:651.672931px;}
.y151{bottom:661.762967px;}
.y6c{bottom:662.549250px;}
.y9e{bottom:664.568139px;}
.ye{bottom:664.975740px;}
.y34{bottom:668.116562px;}
.y121{bottom:669.199335px;}
.yfa{bottom:669.784756px;}
.y150{bottom:678.365852px;}
.ycb{bottom:680.523000px;}
.y9d{bottom:682.679964px;}
.yd{bottom:683.087565px;}
.y33{bottom:686.229902px;}
.y6b{bottom:686.693805px;}
.y120{bottom:687.311160px;}
.yf9{bottom:687.898096px;}
.y14f{bottom:694.968737px;}
.y6a{bottom:694.996005px;}
.yca{bottom:698.636340px;}
.yc{bottom:701.199390px;}
.y32{bottom:704.341727px;}
.y69{bottom:704.731395px;}
.y11f{bottom:705.422985px;}
.yf8{bottom:706.009921px;}
.y68{bottom:708.714330px;}
.y14e{bottom:710.817152px;}
.y9c{bottom:714.064704px;}
.yc9{bottom:716.748165px;}
.yb{bottom:719.311215px;}
.y31{bottom:722.453552px;}
.y11e{bottom:723.534810px;}
.yf7{bottom:724.121746px;}
.y14d{bottom:727.420037px;}
.y9b{bottom:732.176529px;}
.y67{bottom:733.984530px;}
.yc8{bottom:735.028155px;}
.ya{bottom:737.424555px;}
.y30{bottom:740.565377px;}
.y11d{bottom:741.822375px;}
.y14c{bottom:743.268452px;}
.y9a{bottom:750.288354px;}
.y66{bottom:752.096355px;}
.yc7{bottom:753.139980px;}
.y9{bottom:755.536380px;}
.y2f{bottom:758.677202px;}
.yf6{bottom:759.109156px;}
.y14b{bottom:759.871337px;}
.y11c{bottom:759.935715px;}
.y99{bottom:768.400179px;}
.yc6{bottom:771.251805px;}
.y8{bottom:773.648205px;}
.y14a{bottom:776.474222px;}
.y2e{bottom:776.790542px;}
.yf5{bottom:777.220981px;}
.y65{bottom:777.231720px;}
.y11b{bottom:778.047540px;}
.yc5{bottom:789.363630px;}
.y7{bottom:791.760030px;}
.y149{bottom:792.321122px;}
.y2d{bottom:794.902367px;}
.yf4{bottom:795.332806px;}
.y64{bottom:795.343545px;}
.y11a{bottom:796.159365px;}
.yc4{bottom:807.643620px;}
.y98{bottom:808.841589px;}
.y148{bottom:808.924007px;}
.y6{bottom:809.871855px;}
.y2c{bottom:813.014192px;}
.yf3{bottom:813.444631px;}
.y63{bottom:813.455370px;}
.y119{bottom:814.271190px;}
.yc3{bottom:825.755445px;}
.y2b{bottom:831.126017px;}
.yf2{bottom:831.556456px;}
.y62{bottom:831.567195px;}
.y118{bottom:832.558755px;}
.yc2{bottom:843.868785px;}
.y5{bottom:846.490920px;}
.y147{bottom:846.658112px;}
.y2a{bottom:849.237842px;}
.y61{bottom:849.679020px;}
.y117{bottom:850.670580px;}
.yf1{bottom:866.774146px;}
.y116{bottom:868.783920px;}
.y97{bottom:871.932158px;}
.y60{bottom:872.088900px;}
.y5f{bottom:880.391100px;}
.yf0{bottom:884.885971px;}
.y115{bottom:886.895745px;}
.y146{bottom:888.919037px;}
.y96{bottom:890.043983px;}
.y5e{bottom:890.126490px;}
.yef{bottom:902.997796px;}
.y114{bottom:905.007570px;}
.y145{bottom:907.030862px;}
.y95{bottom:908.155808px;}
.y5d{bottom:908.238315px;}
.yc1{bottom:909.474345px;}
.y4{bottom:910.186065px;}
.y113{bottom:923.119395px;}
.y144{bottom:925.144202px;}
.y94{bottom:926.267633px;}
.y5c{bottom:926.350140px;}
.y3{bottom:931.317285px;}
.yc0{bottom:933.114405px;}
.y112{bottom:941.231220px;}
.y5b{bottom:944.461965px;}
.ybf{bottom:951.226230px;}
.y2{bottom:952.446990px;}
.y143{bottom:953.477732px;}
.yee{bottom:953.898766px;}
.y111{bottom:959.343045px;}
.ybe{bottom:969.338055px;}
.y5a{bottom:969.597330px;}
.yed{bottom:972.010591px;}
.y8b{bottom:974.567348px;}
.y92{bottom:974.626669px;}
.y90{bottom:976.395733px;}
.y110{bottom:977.456385px;}
.ybd{bottom:987.449880px;}
.y59{bottom:987.709155px;}
.yec{bottom:990.123931px;}
.y142{bottom:995.738657px;}
.y10f{bottom:995.743950px;}
.ybc{bottom:1005.561705px;}
.y58{bottom:1005.820980px;}
.yeb{bottom:1008.235756px;}
.y1{bottom:1009.801860px;}
.y141{bottom:1013.851997px;}
.y10e{bottom:1013.855775px;}
.ybb{bottom:1023.673530px;}
.y57{bottom:1023.932805px;}
.yea{bottom:1026.347581px;}
.y140{bottom:1031.963822px;}
.y10d{bottom:1031.967600px;}
.yba{bottom:1041.786870px;}
.y56{bottom:1042.046145px;}
.y13f{bottom:1050.075647px;}
.y10c{bottom:1050.079425px;}
.y8d{bottom:1060.774091px;}
.y89{bottom:1063.217220px;}
.yb9{bottom:1063.618020px;}
.ye9{bottom:1065.984526px;}
.y55{bottom:1067.179995px;}
.y13e{bottom:1068.187472px;}
.y10b{bottom:1068.191250px;}
.y52{bottom:1110.000000px;}
.he{height:0.000000px;}
.h21{height:7.049441px;}
.h1b{height:10.008581px;}
.h22{height:10.851264px;}
.h1e{height:15.167066px;}
.h28{height:29.582860px;}
.hd{height:29.709643px;}
.h1f{height:31.907611px;}
.hc{height:33.048280px;}
.h11{height:34.453125px;}
.h2a{height:37.383432px;}
.h29{height:37.656132px;}
.h6{height:41.416122px;}
.h7{height:41.536869px;}
.h12{height:42.261349px;}
.h10{height:43.066406px;}
.h1c{height:43.717181px;}
.h23{height:44.736657px;}
.h8{height:45.280017px;}
.h27{height:46.487654px;}
.h9{height:46.608231px;}
.h3{height:49.699679px;}
.h2{height:49.844576px;}
.h5{height:50.713958px;}
.hb{height:51.616543px;}
.ha{height:51.622603px;}
.h15{height:52.986235px;}
.hf{height:52.992295px;}
.h16{height:54.955180px;}
.h18{height:54.961240px;}
.h4{height:55.930251px;}
.h20{height:55.972250px;}
.h19{height:57.973060px;}
.h17{height:57.979120px;}
.h1{height:60.856580px;}
.h13{height:61.211757px;}
.h1a{height:86.022471px;}
.h24{height:86.124417px;}
.h26{height:88.022271px;}
.h14{height:96.293400px;}
.h1d{height:104.014810px;}
.h25{height:128.866671px;}
.h0{height:1188.000000px;}
.w5{width:5.476217px;}
.w1{width:6.620786px;}
.w4{width:6.687421px;}
.w3{width:10.373446px;}
.w2{width:283.602879px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x20{left:7.316507px;}
.x13{left:75.000000px;}
.x9{left:111.095865px;}
.x28{left:116.464950px;}
.x26{left:120.238815px;}
.x8{left:129.207690px;}
.x1{left:133.560285px;}
.x1b{left:141.824460px;}
.x1a{left:171.127590px;}
.x29{left:175.781745px;}
.x27{left:180.037380px;}
.x16{left:193.064790px;}
.x2a{left:197.394735px;}
.x3{left:235.928835px;}
.x7{left:244.427985px;}
.x17{left:248.265330px;}
.x1e{left:262.819786px;}
.x18{left:276.414030px;}
.x2{left:284.776980px;}
.x12{left:296.475000px;}
.x19{left:305.723220px;}
.x6{left:320.593095px;}
.x4{left:342.589380px;}
.x15{left:345.202605px;}
.x5{left:442.205175px;}
.x14{left:450.000000px;}
.xb{left:470.426459px;}
.x30{left:472.801011px;}
.x1d{left:477.601273px;}
.x2d{left:479.592756px;}
.x2b{left:480.819344px;}
.xa{left:488.538284px;}
.x1c{left:493.937286px;}
.x2c{left:502.605938px;}
.x21{left:517.122837px;}
.xc{left:526.943534px;}
.x23{left:574.234290px;}
.x2f{left:582.815766px;}
.x2e{left:610.552386px;}
.x32{left:616.248786px;}
.x31{left:618.886401px;}
.x33{left:620.910441px;}
.xd{left:624.726179px;}
.x24{left:636.506850px;}
.x22{left:644.699846px;}
.xf{left:656.909324px;}
.x10{left:658.033454px;}
.xe{left:662.454224px;}
.x11{left:681.225074px;}
.x1f{left:740.577528px;}
.x25{left:781.496895px;}
@media print{
.v6{vertical-align:-50.236053pt;}
.v2{vertical-align:-8.047680pt;}
.v8{vertical-align:-5.365120pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.730240pt;}
.v5{vertical-align:14.161547pt;}
.v1{vertical-align:19.478187pt;}
.v4{vertical-align:22.160747pt;}
.vb{vertical-align:28.764800pt;}
.v9{vertical-align:35.034880pt;}
.va{vertical-align:36.306133pt;}
.vc{vertical-align:73.118613pt;}
.v7{vertical-align:85.594133pt;}
.ls2a{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000055pt;}
.ls3a{letter-spacing:0.000281pt;}
.ls9c{letter-spacing:0.000506pt;}
.ls8f{letter-spacing:0.000973pt;}
.ls25{letter-spacing:0.001024pt;}
.ls99{letter-spacing:0.001982pt;}
.ls66{letter-spacing:0.002099pt;}
.ls0{letter-spacing:0.002155pt;}
.ls2{letter-spacing:0.002448pt;}
.ls59{letter-spacing:0.002514pt;}
.ls40{letter-spacing:0.002700pt;}
.ls43{letter-spacing:0.002935pt;}
.ls24{letter-spacing:0.003064pt;}
.ls9b{letter-spacing:0.003549pt;}
.ls7f{letter-spacing:0.003771pt;}
.ls17{letter-spacing:0.004395pt;}
.ls70{letter-spacing:0.005442pt;}
.ls23{letter-spacing:1.348715pt;}
.ls3e{letter-spacing:1.349367pt;}
.ls68{letter-spacing:1.855659pt;}
.ls57{letter-spacing:1.922177pt;}
.ls28{letter-spacing:1.924856pt;}
.ls6a{letter-spacing:1.927564pt;}
.ls18{letter-spacing:2.679441pt;}
.ls53{letter-spacing:2.681646pt;}
.ls41{letter-spacing:2.682443pt;}
.ls14{letter-spacing:2.683112pt;}
.ls42{letter-spacing:2.683584pt;}
.ls19{letter-spacing:2.684827pt;}
.ls1a{letter-spacing:2.686109pt;}
.ls5f{letter-spacing:2.687032pt;}
.ls2f{letter-spacing:3.091589pt;}
.ls8b{letter-spacing:3.744217pt;}
.ls87{letter-spacing:3.746668pt;}
.ls8a{letter-spacing:3.748243pt;}
.ls88{letter-spacing:3.749603pt;}
.lsa5{letter-spacing:3.983157pt;}
.lsa6{letter-spacing:3.986617pt;}
.ls86{letter-spacing:4.850611pt;}
.ls7e{letter-spacing:4.855998pt;}
.ls37{letter-spacing:5.852811pt;}
.ls77{letter-spacing:6.441576pt;}
.ls22{letter-spacing:7.455205pt;}
.ls21{letter-spacing:8.945637pt;}
.ls39{letter-spacing:9.487805pt;}
.ls64{letter-spacing:10.178348pt;}
.ls65{letter-spacing:10.181283pt;}
.ls85{letter-spacing:11.204325pt;}
.lsa7{letter-spacing:11.272677pt;}
.ls94{letter-spacing:11.513446pt;}
.ls2b{letter-spacing:11.913676pt;}
.ls7b{letter-spacing:11.921177pt;}
.ls5a{letter-spacing:11.923628pt;}
.ls27{letter-spacing:11.926563pt;}
.ls7a{letter-spacing:11.930590pt;}
.ls34{letter-spacing:12.373657pt;}
.ls67{letter-spacing:12.940873pt;}
.ls48{letter-spacing:13.413081pt;}
.ls52{letter-spacing:13.414899pt;}
.ls4c{letter-spacing:13.415314pt;}
.ls84{letter-spacing:13.415735pt;}
.ls92{letter-spacing:13.416571pt;}
.ls95{letter-spacing:13.418670pt;}
.ls93{letter-spacing:13.420597pt;}
.ls61{letter-spacing:13.881923pt;}
.ls60{letter-spacing:13.884375pt;}
.ls3b{letter-spacing:13.972656pt;}
.ls2e{letter-spacing:14.197637pt;}
.lsa3{letter-spacing:14.408976pt;}
.ls26{letter-spacing:14.604277pt;}
.ls11{letter-spacing:14.901619pt;}
.ls50{letter-spacing:14.902482pt;}
.ls89{letter-spacing:14.903291pt;}
.ls3c{letter-spacing:14.905187pt;}
.ls3d{letter-spacing:14.905390pt;}
.ls54{letter-spacing:14.908677pt;}
.ls55{letter-spacing:14.909052pt;}
.ls98{letter-spacing:14.909416pt;}
.ls51{letter-spacing:14.909941pt;}
.ls8c{letter-spacing:15.248776pt;}
.ls56{letter-spacing:15.340364pt;}
.ls9{letter-spacing:15.934243pt;}
.ls31{letter-spacing:16.033234pt;}
.ls32{letter-spacing:16.038206pt;}
.ls36{letter-spacing:16.038261pt;}
.ls8d{letter-spacing:16.074094pt;}
.ls4e{letter-spacing:16.099832pt;}
.ls8e{letter-spacing:16.165667pt;}
.ls2d{letter-spacing:16.343630pt;}
.ls46{letter-spacing:16.509776pt;}
.ls5d{letter-spacing:16.703190pt;}
.ls78{letter-spacing:16.776691pt;}
.ls9d{letter-spacing:17.250374pt;}
.ls81{letter-spacing:17.310295pt;}
.lsa1{letter-spacing:17.315014pt;}
.lsa2{letter-spacing:17.320401pt;}
.lsd{letter-spacing:17.541086pt;}
.ls97{letter-spacing:17.589734pt;}
.ls9a{letter-spacing:17.591016pt;}
.ls62{letter-spacing:17.600754pt;}
.lsf{letter-spacing:17.669093pt;}
.lsc{letter-spacing:17.737888pt;}
.ls10{letter-spacing:17.744507pt;}
.ls91{letter-spacing:17.996496pt;}
.ls12{letter-spacing:18.000132pt;}
.ls69{letter-spacing:18.141052pt;}
.ls33{letter-spacing:18.225984pt;}
.ls82{letter-spacing:18.268798pt;}
.ls79{letter-spacing:18.363630pt;}
.ls71{letter-spacing:18.422952pt;}
.ls58{letter-spacing:18.595662pt;}
.lsb{letter-spacing:19.025301pt;}
.ls4f{letter-spacing:19.119656pt;}
.ls6f{letter-spacing:19.208501pt;}
.ls74{letter-spacing:19.209337pt;}
.ls72{letter-spacing:19.213617pt;}
.ls73{letter-spacing:19.218011pt;}
.ls4b{letter-spacing:19.265611pt;}
.ls7d{letter-spacing:19.375898pt;}
.ls83{letter-spacing:19.381285pt;}
.ls2c{letter-spacing:19.440123pt;}
.ls45{letter-spacing:19.874304pt;}
.ls4{letter-spacing:20.192162pt;}
.ls5c{letter-spacing:20.263777pt;}
.ls1b{letter-spacing:20.790917pt;}
.ls1c{letter-spacing:20.791656pt;}
.ls76{letter-spacing:20.868005pt;}
.ls6d{letter-spacing:21.200304pt;}
.ls90{letter-spacing:21.573243pt;}
.ls4a{letter-spacing:21.818514pt;}
.ls35{letter-spacing:21.883531pt;}
.ls6e{letter-spacing:21.897824pt;}
.ls5e{letter-spacing:21.976686pt;}
.ls9e{letter-spacing:22.055281pt;}
.ls9f{letter-spacing:22.079589pt;}
.ls75{letter-spacing:22.286802pt;}
.lsa0{letter-spacing:22.956357pt;}
.ls1f{letter-spacing:23.470258pt;}
.ls30{letter-spacing:24.846198pt;}
.ls7{letter-spacing:24.929977pt;}
.ls4d{letter-spacing:26.832872pt;}
.ls47{letter-spacing:27.420019pt;}
.ls8{letter-spacing:27.864232pt;}
.ls6{letter-spacing:28.024719pt;}
.ls3f{letter-spacing:28.522340pt;}
.ls20{letter-spacing:28.559483pt;}
.ls1e{letter-spacing:28.559754pt;}
.ls49{letter-spacing:28.979616pt;}
.ls63{letter-spacing:29.203005pt;}
.ls6c{letter-spacing:29.314723pt;}
.ls3{letter-spacing:29.372630pt;}
.lse{letter-spacing:29.469459pt;}
.lsa{letter-spacing:30.756872pt;}
.ls1d{letter-spacing:31.243690pt;}
.ls5{letter-spacing:32.114312pt;}
.ls1{letter-spacing:34.465779pt;}
.ls6b{letter-spacing:36.769445pt;}
.ls38{letter-spacing:41.489992pt;}
.ls15{letter-spacing:48.541139pt;}
.ls7c{letter-spacing:52.653790pt;}
.ls16{letter-spacing:82.653072pt;}
.lsa4{letter-spacing:82.687433pt;}
.ls5b{letter-spacing:83.727059pt;}
.ls80{letter-spacing:84.039486pt;}
.ls96{letter-spacing:109.479152pt;}
.ls29{letter-spacing:138.374793pt;}
.ls44{letter-spacing:229.280179pt;}
.ws4f{word-spacing:-65.578881pt;}
.ws42{word-spacing:-53.665205pt;}
.ws68{word-spacing:-42.783389pt;}
.ws91{word-spacing:-41.751530pt;}
.ws95{word-spacing:-40.034243pt;}
.ws3e{word-spacing:-38.737438pt;}
.ws3b{word-spacing:-36.108745pt;}
.ws3c{word-spacing:-34.957515pt;}
.wsb7{word-spacing:-34.667723pt;}
.ws51{word-spacing:-26.049091pt;}
.ws36{word-spacing:-25.995425pt;}
.ws77{word-spacing:-25.197751pt;}
.ws61{word-spacing:-19.609266pt;}
.ws1{word-spacing:-16.099669pt;}
.ws4c{word-spacing:-15.799036pt;}
.ws4a{word-spacing:-14.908194pt;}
.ws31{word-spacing:-13.416301pt;}
.wsf9{word-spacing:-12.074752pt;}
.wsa2{word-spacing:-10.666667pt;}
.ws8f{word-spacing:-5.965364pt;}
.ws78{word-spacing:-5.194792pt;}
.wse7{word-spacing:-3.005251pt;}
.ws71{word-spacing:-2.994518pt;}
.wse0{word-spacing:-2.951586pt;}
.ws9b{word-spacing:-2.897921pt;}
.ws16{word-spacing:-2.844256pt;}
.ws2d{word-spacing:-2.790591pt;}
.ws119{word-spacing:-2.753043pt;}
.wsea{word-spacing:-2.575930pt;}
.ws5c{word-spacing:-2.549258pt;}
.ws5d{word-spacing:-2.534404pt;}
.ws5e{word-spacing:-2.522265pt;}
.ws5f{word-spacing:-2.522129pt;}
.wsd4{word-spacing:-2.468599pt;}
.wsc8{word-spacing:-2.307604pt;}
.wsd2{word-spacing:-2.253939pt;}
.ws1f{word-spacing:-2.146608pt;}
.ws28{word-spacing:-2.092943pt;}
.wsed{word-spacing:-1.985613pt;}
.ws3{word-spacing:-1.931947pt;}
.wsa6{word-spacing:-1.906057pt;}
.ws67{word-spacing:-1.901283pt;}
.wsdd{word-spacing:-1.878282pt;}
.ws5{word-spacing:-1.770952pt;}
.wsaf{word-spacing:-1.663621pt;}
.wsa8{word-spacing:-1.609956pt;}
.wsd8{word-spacing:-1.502626pt;}
.ws2{word-spacing:-1.448961pt;}
.wsa1{word-spacing:-1.395295pt;}
.ws14{word-spacing:-1.341630pt;}
.wsde{word-spacing:-1.234300pt;}
.ws100{word-spacing:-1.159176pt;}
.wsb0{word-spacing:-1.035067pt;}
.wsb2{word-spacing:-1.019639pt;}
.wsaa{word-spacing:-0.965974pt;}
.ws3f{word-spacing:-0.912308pt;}
.wsa7{word-spacing:-0.804978pt;}
.wscb{word-spacing:-0.697648pt;}
.ws102{word-spacing:-0.676186pt;}
.ws53{word-spacing:-0.643982pt;}
.ws72{word-spacing:-0.590317pt;}
.ws73{word-spacing:-0.581469pt;}
.ws9a{word-spacing:-0.536652pt;}
.ws10f{word-spacing:-0.531289pt;}
.ws111{word-spacing:-0.482990pt;}
.ws26{word-spacing:-0.482987pt;}
.ws112{word-spacing:-0.434691pt;}
.ws8c{word-spacing:-0.429322pt;}
.wseb{word-spacing:-0.375656pt;}
.wsf3{word-spacing:-0.321991pt;}
.ws10a{word-spacing:-0.193196pt;}
.ws8b{word-spacing:-0.160996pt;}
.ws109{word-spacing:-0.144897pt;}
.wsf2{word-spacing:-0.107330pt;}
.wsb1{word-spacing:-0.064416pt;}
.ws4d{word-spacing:-0.037566pt;}
.ws4b{word-spacing:-0.013890pt;}
.wsa3{word-spacing:-0.005065pt;}
.wsa5{word-spacing:-0.004445pt;}
.ws6f{word-spacing:-0.003554pt;}
.wsfd{word-spacing:-0.002896pt;}
.ws76{word-spacing:-0.002671pt;}
.ws6d{word-spacing:-0.002419pt;}
.ws9c{word-spacing:-0.002125pt;}
.ws4e{word-spacing:-0.001518pt;}
.ws46{word-spacing:-0.001332pt;}
.ws75{word-spacing:-0.001294pt;}
.ws106{word-spacing:-0.000043pt;}
.ws0{word-spacing:0.000000pt;}
.ws74{word-spacing:0.000284pt;}
.ws70{word-spacing:0.001100pt;}
.ws6e{word-spacing:0.001915pt;}
.ws104{word-spacing:0.002094pt;}
.ws48{word-spacing:0.002716pt;}
.ws8a{word-spacing:0.010733pt;}
.ws83{word-spacing:0.053665pt;}
.ws65{word-spacing:0.107330pt;}
.ws11{word-spacing:0.160996pt;}
.wsc{word-spacing:0.268326pt;}
.ws2c{word-spacing:0.321991pt;}
.ws10b{word-spacing:0.338093pt;}
.ws8{word-spacing:0.375656pt;}
.wsc4{word-spacing:0.397038pt;}
.wsc5{word-spacing:0.429322pt;}
.ws57{word-spacing:0.590317pt;}
.ws58{word-spacing:0.618593pt;}
.ws9e{word-spacing:0.619760pt;}
.ws9d{word-spacing:0.643982pt;}
.wsf1{word-spacing:0.697648pt;}
.ws52{word-spacing:0.751313pt;}
.ws10c{word-spacing:0.772784pt;}
.ws50{word-spacing:0.776780pt;}
.ws29{word-spacing:0.858643pt;}
.ws66{word-spacing:0.886144pt;}
.ws107{word-spacing:0.917681pt;}
.ws118{word-spacing:0.965980pt;}
.ws6{word-spacing:1.073304pt;}
.ws2e{word-spacing:1.126969pt;}
.wsb3{word-spacing:1.154279pt;}
.wsb4{word-spacing:1.154662pt;}
.wse1{word-spacing:1.180635pt;}
.wsbc{word-spacing:1.217671pt;}
.wsbe{word-spacing:1.218217pt;}
.wsbf{word-spacing:1.219302pt;}
.ws47{word-spacing:1.230136pt;}
.ws1e{word-spacing:1.234300pt;}
.ws20{word-spacing:1.287965pt;}
.ws7e{word-spacing:1.341630pt;}
.ws3a{word-spacing:1.395295pt;}
.wsff{word-spacing:1.400671pt;}
.wsab{word-spacing:1.425395pt;}
.ws3d{word-spacing:1.431474pt;}
.ws49{word-spacing:1.445357pt;}
.ws13{word-spacing:1.448961pt;}
.wse4{word-spacing:1.502626pt;}
.ws108{word-spacing:1.545568pt;}
.ws18{word-spacing:1.556291pt;}
.wsae{word-spacing:1.663621pt;}
.ws25{word-spacing:1.717287pt;}
.ws7{word-spacing:1.770952pt;}
.ws97{word-spacing:1.824617pt;}
.wsd9{word-spacing:1.985613pt;}
.wsf{word-spacing:2.092943pt;}
.wsbd{word-spacing:2.183949pt;}
.ws27{word-spacing:2.253939pt;}
.ws62{word-spacing:2.307604pt;}
.ws8e{word-spacing:2.327017pt;}
.ws94{word-spacing:2.336295pt;}
.ws96{word-spacing:2.361269pt;}
.ws10{word-spacing:2.414934pt;}
.ws10d{word-spacing:2.463249pt;}
.ws10e{word-spacing:2.511548pt;}
.wse3{word-spacing:2.575930pt;}
.ws80{word-spacing:2.619834pt;}
.ws81{word-spacing:2.629595pt;}
.wsb{word-spacing:2.683260pt;}
.ws99{word-spacing:2.736925pt;}
.wse9{word-spacing:2.790591pt;}
.wsc0{word-spacing:2.951586pt;}
.ws2a{word-spacing:3.005251pt;}
.ws84{word-spacing:3.058917pt;}
.wsad{word-spacing:3.074574pt;}
.wsac{word-spacing:3.094663pt;}
.ws1c{word-spacing:3.112582pt;}
.ws4{word-spacing:3.166247pt;}
.ws7d{word-spacing:3.273578pt;}
.ws7c{word-spacing:3.279440pt;}
.wse2{word-spacing:3.380908pt;}
.ws12{word-spacing:3.434573pt;}
.ws21{word-spacing:3.541904pt;}
.wsdf{word-spacing:3.649234pt;}
.ws92{word-spacing:3.863895pt;}
.ws93{word-spacing:3.917560pt;}
.ws82{word-spacing:4.185886pt;}
.wse{word-spacing:4.239551pt;}
.ws23{word-spacing:4.293216pt;}
.ws69{word-spacing:4.346882pt;}
.ws103{word-spacing:4.346911pt;}
.wsf6{word-spacing:4.491808pt;}
.wsf7{word-spacing:4.540107pt;}
.ws105{word-spacing:4.588406pt;}
.wsbb{word-spacing:4.615208pt;}
.wsfb{word-spacing:4.636705pt;}
.ws22{word-spacing:4.668873pt;}
.ws114{word-spacing:4.685004pt;}
.ws115{word-spacing:4.733303pt;}
.wsd5{word-spacing:4.776203pt;}
.wsec{word-spacing:4.829868pt;}
.ws7b{word-spacing:4.883534pt;}
.ws7a{word-spacing:4.919942pt;}
.ws101{word-spacing:4.926499pt;}
.ws79{word-spacing:4.937199pt;}
.wsa{word-spacing:4.990864pt;}
.wsfe{word-spacing:5.023097pt;}
.wsa0{word-spacing:5.044529pt;}
.ws2b{word-spacing:5.151860pt;}
.ws110{word-spacing:5.167994pt;}
.wsc1{word-spacing:5.259190pt;}
.ws1a{word-spacing:5.312855pt;}
.wsf8{word-spacing:5.313287pt;}
.wsd{word-spacing:5.366521pt;}
.ws39{word-spacing:5.420186pt;}
.wsd3{word-spacing:5.473851pt;}
.wsba{word-spacing:5.527516pt;}
.ws55{word-spacing:5.568828pt;}
.ws54{word-spacing:5.577916pt;}
.ws56{word-spacing:5.581181pt;}
.wse8{word-spacing:5.742177pt;}
.ws9{word-spacing:5.795842pt;}
.ws7f{word-spacing:5.849507pt;}
.wsb5{word-spacing:5.956838pt;}
.ws2f{word-spacing:6.010503pt;}
.wsd6{word-spacing:6.171499pt;}
.wsb9{word-spacing:6.386159pt;}
.wsb8{word-spacing:6.405558pt;}
.wsfa{word-spacing:6.472067pt;}
.ws24{word-spacing:6.708151pt;}
.ws38{word-spacing:6.761816pt;}
.ws6c{word-spacing:6.782987pt;}
.wsdc{word-spacing:6.976477pt;}
.ws113{word-spacing:7.099954pt;}
.wse6{word-spacing:7.191138pt;}
.ws44{word-spacing:7.352133pt;}
.ws43{word-spacing:7.371676pt;}
.ws45{word-spacing:7.374123pt;}
.ws19{word-spacing:7.513129pt;}
.ws9f{word-spacing:7.620459pt;}
.ws8d{word-spacing:7.780756pt;}
.ws1d{word-spacing:7.781455pt;}
.ws98{word-spacing:7.888785pt;}
.wsc6{word-spacing:7.942450pt;}
.ws15{word-spacing:7.996116pt;}
.wsfc{word-spacing:8.259130pt;}
.ws6b{word-spacing:8.371772pt;}
.ws6a{word-spacing:8.382407pt;}
.ws37{word-spacing:8.462821pt;}
.wsc9{word-spacing:8.640098pt;}
.wsee{word-spacing:8.747428pt;}
.wsc7{word-spacing:8.801094pt;}
.wsdb{word-spacing:9.284081pt;}
.wsd7{word-spacing:9.391411pt;}
.ws63{word-spacing:9.470435pt;}
.ws64{word-spacing:9.498741pt;}
.wsb6{word-spacing:9.552407pt;}
.wsa9{word-spacing:9.767067pt;}
.ws1b{word-spacing:10.142724pt;}
.wsef{word-spacing:10.303719pt;}
.wsf0{word-spacing:11.216028pt;}
.ws30{word-spacing:11.430689pt;}
.ws32{word-spacing:11.448065pt;}
.ws17{word-spacing:11.913676pt;}
.wsc3{word-spacing:12.450328pt;}
.wsc2{word-spacing:12.466618pt;}
.ws35{word-spacing:12.514726pt;}
.ws34{word-spacing:12.600155pt;}
.ws33{word-spacing:12.611323pt;}
.ws90{word-spacing:13.427034pt;}
.wsca{word-spacing:13.845623pt;}
.wse5{word-spacing:14.113949pt;}
.ws117{word-spacing:14.827795pt;}
.ws89{word-spacing:14.865262pt;}
.wsa4{word-spacing:16.367842pt;}
.ws116{word-spacing:17.146148pt;}
.ws87{word-spacing:18.085174pt;}
.ws88{word-spacing:20.017122pt;}
.wscd{word-spacing:20.339113pt;}
.wsf5{word-spacing:20.822100pt;}
.wsda{word-spacing:20.929430pt;}
.ws59{word-spacing:21.965072pt;}
.ws5b{word-spacing:21.985718pt;}
.ws5a{word-spacing:22.002734pt;}
.ws85{word-spacing:23.355097pt;}
.ws86{word-spacing:26.832603pt;}
.wsf4{word-spacing:27.905907pt;}
.ws41{word-spacing:32.521114pt;}
.ws40{word-spacing:32.541080pt;}
.wscc{word-spacing:37.136322pt;}
.wsd0{word-spacing:50.981945pt;}
.wsd1{word-spacing:88.601254pt;}
.wscf{word-spacing:113.609240pt;}
.wsce{word-spacing:120.263725pt;}
.ws60{word-spacing:216.915149pt;}
._1d{margin-left:-64.000000pt;}
._10{margin-left:-8.910644pt;}
._2{margin-left:-7.148253pt;}
._2b{margin-left:-6.142745pt;}
._2c{margin-left:-5.205116pt;}
._c{margin-left:-4.293216pt;}
._1e{margin-left:-3.348725pt;}
._1{margin-left:-2.382751pt;}
._3{margin-left:-0.998157pt;}
._11{width:1.154690pt;}
._1a{width:2.054840pt;}
._f{width:3.025430pt;}
._0{width:5.256456pt;}
._19{width:10.733041pt;}
._1c{width:11.967341pt;}
._13{width:13.416301pt;}
._16{width:14.551594pt;}
._7{width:15.670240pt;}
._a{width:16.958205pt;}
._4{width:18.299835pt;}
._8{width:19.920492pt;}
._b{width:21.734408pt;}
._6{width:22.915043pt;}
._17{width:24.294269pt;}
._2a{width:25.185051pt;}
._d{width:27.635790pt;}
._e{width:29.140206pt;}
._1f{width:30.428171pt;}
._1b{width:32.020409pt;}
._5{width:33.723231pt;}
._18{width:35.261398pt;}
._15{width:36.888212pt;}
._14{width:41.899017pt;}
._12{width:45.107078pt;}
._9{width:47.064385pt;}
._2d{width:64.989688pt;}
._22{width:82.681931pt;}
._21{width:85.274011pt;}
._27{width:116.131504pt;}
._26{width:129.547806pt;}
._28{width:131.372423pt;}
._20{width:146.398680pt;}
._29{width:147.847641pt;}
._25{width:155.682761pt;}
._24{width:160.566294pt;}
._23{width:222.442276pt;}
.fs4{font-size:26.832603pt;}
.fs8{font-size:36.268953pt;}
.fs3{font-size:37.565536pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:48.299008pt;}
.fs7{font-size:51.812955pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:53.665205pt;}
.fs9{font-size:59.031941pt;}
.fs1{font-size:64.398677pt;}
.fs0{font-size:77.278197pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:0.543008pt;}
.y93{bottom:0.669415pt;}
.y8a{bottom:3.172993pt;}
.y8e{bottom:8.520799pt;}
.y54{bottom:46.666667pt;}
.y53{bottom:60.000000pt;}
.y8c{bottom:79.801318pt;}
.y8f{bottom:81.968293pt;}
.y51{bottom:94.666669pt;}
.y29{bottom:97.591427pt;}
.yb8{bottom:99.867235pt;}
.y10a{bottom:100.438641pt;}
.y4e{bottom:101.790535pt;}
.ye8{bottom:101.944147pt;}
.y13d{bottom:102.400173pt;}
.y88{bottom:104.406040pt;}
.y4d{bottom:110.495389pt;}
.y28{bottom:113.690827pt;}
.yb7{bottom:115.966635pt;}
.y109{bottom:116.538041pt;}
.ye7{bottom:118.043547pt;}
.y13c{bottom:118.499573pt;}
.y87{bottom:120.505440pt;}
.y50{bottom:123.241589pt;}
.y4f{bottom:127.265429pt;}
.y27{bottom:129.790227pt;}
.yb6{bottom:132.066035pt;}
.y108{bottom:132.637441pt;}
.ye6{bottom:134.142947pt;}
.y13b{bottom:134.598973pt;}
.y86{bottom:136.604840pt;}
.y170{bottom:136.774521pt;}
.y26{bottom:145.889627pt;}
.yb5{bottom:148.165435pt;}
.y4c{bottom:150.092775pt;}
.ye5{bottom:150.242347pt;}
.y13a{bottom:150.698373pt;}
.y16f{bottom:151.531295pt;}
.y85{bottom:152.704240pt;}
.y25{bottom:161.989027pt;}
.yb4{bottom:164.266181pt;}
.y4b{bottom:166.192175pt;}
.y16e{bottom:166.289415pt;}
.ye4{bottom:166.491227pt;}
.y139{bottom:166.797773pt;}
.y84{bottom:175.046787pt;}
.y107{bottom:177.836961pt;}
.y24{bottom:178.089773pt;}
.yb3{bottom:180.365581pt;}
.y16d{bottom:180.376895pt;}
.y4a{bottom:182.291575pt;}
.ye3{bottom:182.591973pt;}
.y138{bottom:183.054733pt;}
.yb2{bottom:183.905968pt;}
.y83{bottom:191.146187pt;}
.y106{bottom:193.936361pt;}
.y23{bottom:194.189173pt;}
.y16c{bottom:195.135015pt;}
.yb1{bottom:196.464981pt;}
.ye2{bottom:198.691373pt;}
.y137{bottom:199.154133pt;}
.y49{bottom:205.361322pt;}
.y82{bottom:207.245587pt;}
.y16b{bottom:209.893135pt;}
.y22{bottom:210.288573pt;}
.yb0{bottom:212.919901pt;}
.ye1{bottom:214.790773pt;}
.y136{bottom:215.253533pt;}
.y48{bottom:221.462069pt;}
.y81{bottom:223.346333pt;}
.y16a{bottom:224.651255pt;}
.y21{bottom:226.387973pt;}
.yaf{bottom:229.019301pt;}
.ye0{bottom:230.890173pt;}
.y135{bottom:231.352933pt;}
.y47{bottom:237.561469pt;}
.y169{bottom:238.738735pt;}
.y80{bottom:239.445733pt;}
.y20{bottom:242.487373pt;}
.yae{bottom:245.118701pt;}
.ydf{bottom:246.989573pt;}
.y168{bottom:253.496855pt;}
.y7f{bottom:255.545133pt;}
.y1f{bottom:258.588120pt;}
.y46{bottom:260.631215pt;}
.yad{bottom:261.218101pt;}
.yde{bottom:263.088973pt;}
.y134{bottom:266.704280pt;}
.y167{bottom:268.253628pt;}
.y7e{bottom:271.644533pt;}
.y1e{bottom:274.687520pt;}
.y45{bottom:276.730615pt;}
.ydd{bottom:279.189720pt;}
.y166{bottom:282.341108pt;}
.y7d{bottom:287.743933pt;}
.y1d{bottom:290.786920pt;}
.y44{bottom:292.831362pt;}
.ydc{bottom:295.289120pt;}
.yac{bottom:295.823395pt;}
.y165{bottom:297.099228pt;}
.y7c{bottom:303.843333pt;}
.y133{bottom:304.738187pt;}
.y1c{bottom:306.886320pt;}
.y43{bottom:308.930762pt;}
.ydb{bottom:311.388520pt;}
.y164{bottom:311.857348pt;}
.y7b{bottom:319.944080pt;}
.y132{bottom:320.837587pt;}
.y1b{bottom:323.337200pt;}
.y42{bottom:325.030162pt;}
.y163{bottom:326.615468pt;}
.yda{bottom:327.487920pt;}
.yab{bottom:330.430035pt;}
.y7a{bottom:336.043480pt;}
.y131{bottom:336.936987pt;}
.y1a{bottom:339.436600pt;}
.y41{bottom:341.129562pt;}
.y162{bottom:341.373588pt;}
.yd9{bottom:343.587320pt;}
.yaa{bottom:346.529435pt;}
.y130{bottom:353.036387pt;}
.y161{bottom:355.461068pt;}
.y19{bottom:355.536000pt;}
.y79{bottom:357.326200pt;}
.yd8{bottom:359.686720pt;}
.ya9{bottom:362.628835pt;}
.y40{bottom:364.199309pt;}
.y78{bottom:366.084920pt;}
.y12f{bottom:369.137133pt;}
.y160{bottom:370.219188pt;}
.y18{bottom:371.636747pt;}
.yd7{bottom:375.787467pt;}
.ya8{bottom:378.728235pt;}
.y15f{bottom:384.975961pt;}
.y12e{bottom:385.236533pt;}
.y17{bottom:387.736147pt;}
.y77{bottom:389.986907pt;}
.yd6{bottom:391.886867pt;}
.ya7{bottom:394.827635pt;}
.y3f{bottom:397.200722pt;}
.y15e{bottom:399.063441pt;}
.y12d{bottom:401.335933pt;}
.y16{bottom:403.835547pt;}
.y76{bottom:406.087653pt;}
.yd5{bottom:407.986267pt;}
.ya6{bottom:410.927035pt;}
.y15d{bottom:413.821561pt;}
.y12c{bottom:417.435333pt;}
.y105{bottom:418.035161pt;}
.y15{bottom:419.934947pt;}
.yd4{bottom:424.085667pt;}
.ya5{bottom:427.027781pt;}
.y15c{bottom:428.579681pt;}
.y75{bottom:429.989640pt;}
.y3e{bottom:432.886042pt;}
.y12b{bottom:433.690947pt;}
.y104{bottom:434.134561pt;}
.y14{bottom:436.034347pt;}
.yd3{bottom:440.185067pt;}
.y15b{bottom:443.337801pt;}
.y3d{bottom:448.985442pt;}
.y12a{bottom:449.790347pt;}
.y103{bottom:450.233961pt;}
.y13{bottom:452.135093pt;}
.y74{bottom:453.892973pt;}
.yd2{bottom:456.433947pt;}
.ya4{bottom:457.253715pt;}
.y15a{bottom:457.425281pt;}
.y3c{bottom:465.084842pt;}
.y129{bottom:465.889747pt;}
.y102{bottom:466.333361pt;}
.y159{bottom:472.183401pt;}
.yd1{bottom:472.533347pt;}
.y73{bottom:476.235520pt;}
.y3b{bottom:481.184242pt;}
.y128{bottom:481.990493pt;}
.y101{bottom:482.434107pt;}
.y158{bottom:486.941521pt;}
.ya3{bottom:487.478301pt;}
.y12{bottom:488.070893pt;}
.yd0{bottom:488.634093pt;}
.y72{bottom:492.334920pt;}
.y3a{bottom:497.283642pt;}
.y127{bottom:498.089893pt;}
.y100{bottom:498.650667pt;}
.y157{bottom:501.027655pt;}
.ya2{bottom:503.579048pt;}
.ycf{bottom:504.733493pt;}
.y71{bottom:508.434320pt;}
.y39{bottom:513.384389pt;}
.y126{bottom:514.189293pt;}
.yff{bottom:514.750067pt;}
.y156{bottom:515.785775pt;}
.yce{bottom:520.832893pt;}
.y70{bottom:524.533720pt;}
.ya1{bottom:529.463328pt;}
.y38{bottom:529.483789pt;}
.y125{bottom:530.288693pt;}
.y155{bottom:530.543895pt;}
.yfe{bottom:530.966627pt;}
.ycd{bottom:536.932293pt;}
.ya0{bottom:538.666448pt;}
.y6f{bottom:540.633120pt;}
.y11{bottom:542.790000pt;}
.y154{bottom:544.631375pt;}
.y37{bottom:545.583189pt;}
.y124{bottom:546.388093pt;}
.yfd{bottom:547.066027pt;}
.y6e{bottom:556.733867pt;}
.y10{bottom:558.889400pt;}
.y153{bottom:559.389495pt;}
.y36{bottom:561.682589pt;}
.y123{bottom:562.488840pt;}
.yfc{bottom:563.165427pt;}
.ycc{bottom:570.920813pt;}
.y6d{bottom:572.833267pt;}
.y152{bottom:574.147615pt;}
.y9f{bottom:574.626488pt;}
.yf{bottom:574.990147pt;}
.y35{bottom:577.781989pt;}
.y122{bottom:578.744453pt;}
.yfb{bottom:579.264827pt;}
.y151{bottom:588.233748pt;}
.y6c{bottom:588.932667pt;}
.y9e{bottom:590.727235pt;}
.ye{bottom:591.089547pt;}
.y34{bottom:593.881389pt;}
.y121{bottom:594.843853pt;}
.yfa{bottom:595.364227pt;}
.y150{bottom:602.991868pt;}
.ycb{bottom:604.909333pt;}
.y9d{bottom:606.826635pt;}
.yd{bottom:607.188947pt;}
.y33{bottom:609.982135pt;}
.y6b{bottom:610.394493pt;}
.y120{bottom:610.943253pt;}
.yf9{bottom:611.464974pt;}
.y14f{bottom:617.749988pt;}
.y6a{bottom:617.774227pt;}
.yca{bottom:621.010080pt;}
.yc{bottom:623.288347pt;}
.y32{bottom:626.081535pt;}
.y69{bottom:626.427907pt;}
.y11f{bottom:627.042653pt;}
.yf8{bottom:627.564374pt;}
.y68{bottom:629.968293pt;}
.y14e{bottom:631.837468pt;}
.y9c{bottom:634.724181pt;}
.yc9{bottom:637.109480pt;}
.yb{bottom:639.387747pt;}
.y31{bottom:642.180935pt;}
.y11e{bottom:643.142053pt;}
.yf7{bottom:643.663774pt;}
.y14d{bottom:646.595588pt;}
.y9b{bottom:650.823581pt;}
.y67{bottom:652.430693pt;}
.yc8{bottom:653.358360pt;}
.ya{bottom:655.488493pt;}
.y30{bottom:658.280335pt;}
.y11d{bottom:659.397667pt;}
.y14c{bottom:660.683068pt;}
.y9a{bottom:666.922981pt;}
.y66{bottom:668.530093pt;}
.yc7{bottom:669.457760pt;}
.y9{bottom:671.587893pt;}
.y2f{bottom:674.379735pt;}
.yf6{bottom:674.763694pt;}
.y14b{bottom:675.441188pt;}
.y11c{bottom:675.498413pt;}
.y99{bottom:683.022381pt;}
.yc6{bottom:685.557160pt;}
.y8{bottom:687.687293pt;}
.y14a{bottom:690.199308pt;}
.y2e{bottom:690.480482pt;}
.yf5{bottom:690.863094pt;}
.y65{bottom:690.872640pt;}
.y11b{bottom:691.597813pt;}
.yc5{bottom:701.656560pt;}
.y7{bottom:703.786693pt;}
.y149{bottom:704.285441pt;}
.y2d{bottom:706.579882pt;}
.yf4{bottom:706.962494pt;}
.y64{bottom:706.972040pt;}
.y11a{bottom:707.697213pt;}
.yc4{bottom:717.905440pt;}
.y98{bottom:718.970301pt;}
.y148{bottom:719.043561pt;}
.y6{bottom:719.886093pt;}
.y2c{bottom:722.679282pt;}
.yf3{bottom:723.061894pt;}
.y63{bottom:723.071440pt;}
.y119{bottom:723.796613pt;}
.yc3{bottom:734.004840pt;}
.y2b{bottom:738.778682pt;}
.yf2{bottom:739.161294pt;}
.y62{bottom:739.170840pt;}
.y118{bottom:740.052227pt;}
.yc2{bottom:750.105587pt;}
.y5{bottom:752.436373pt;}
.y147{bottom:752.584988pt;}
.y2a{bottom:754.878082pt;}
.y61{bottom:755.270240pt;}
.y117{bottom:756.151627pt;}
.yf1{bottom:770.465907pt;}
.y116{bottom:772.252373pt;}
.y97{bottom:775.050807pt;}
.y60{bottom:775.190133pt;}
.y5f{bottom:782.569867pt;}
.yf0{bottom:786.565307pt;}
.y115{bottom:788.351773pt;}
.y146{bottom:790.150255pt;}
.y96{bottom:791.150207pt;}
.y5e{bottom:791.223547pt;}
.yef{bottom:802.664707pt;}
.y114{bottom:804.451173pt;}
.y145{bottom:806.249655pt;}
.y95{bottom:807.249607pt;}
.y5d{bottom:807.322947pt;}
.yc1{bottom:808.421640pt;}
.y4{bottom:809.054280pt;}
.y113{bottom:820.550573pt;}
.y144{bottom:822.350401pt;}
.y94{bottom:823.349007pt;}
.y5c{bottom:823.422347pt;}
.y3{bottom:827.837587pt;}
.yc0{bottom:829.435027pt;}
.y112{bottom:836.649973pt;}
.y5b{bottom:839.521747pt;}
.ybf{bottom:845.534427pt;}
.y2{bottom:846.619547pt;}
.y143{bottom:847.535761pt;}
.yee{bottom:847.910014pt;}
.y111{bottom:852.749373pt;}
.ybe{bottom:861.633827pt;}
.y5a{bottom:861.864293pt;}
.yed{bottom:864.009414pt;}
.y8b{bottom:866.282087pt;}
.y92{bottom:866.334817pt;}
.y90{bottom:867.907319pt;}
.y110{bottom:868.850120pt;}
.ybd{bottom:877.733227pt;}
.y59{bottom:877.963693pt;}
.yec{bottom:880.110161pt;}
.y142{bottom:885.101028pt;}
.y10f{bottom:885.105733pt;}
.ybc{bottom:893.832627pt;}
.y58{bottom:894.063093pt;}
.yeb{bottom:896.209561pt;}
.y1{bottom:897.601653pt;}
.y141{bottom:901.201775pt;}
.y10e{bottom:901.205133pt;}
.ybb{bottom:909.932027pt;}
.y57{bottom:910.162493pt;}
.yea{bottom:912.308961pt;}
.y140{bottom:917.301175pt;}
.y10d{bottom:917.304533pt;}
.yba{bottom:926.032773pt;}
.y56{bottom:926.263240pt;}
.y13f{bottom:933.400575pt;}
.y10c{bottom:933.403933pt;}
.y8d{bottom:942.910303pt;}
.y89{bottom:945.081973pt;}
.yb9{bottom:945.438240pt;}
.ye9{bottom:947.541801pt;}
.y55{bottom:948.604440pt;}
.y13e{bottom:949.499975pt;}
.y10b{bottom:949.503333pt;}
.y52{bottom:986.666667pt;}
.he{height:0.000000pt;}
.h21{height:6.266170pt;}
.h1b{height:8.896517pt;}
.h22{height:9.645568pt;}
.h1e{height:13.481836pt;}
.h28{height:26.295875pt;}
.hd{height:26.408572pt;}
.h1f{height:28.362321pt;}
.hc{height:29.376249pt;}
.h11{height:30.625000pt;}
.h2a{height:33.229718pt;}
.h29{height:33.472118pt;}
.h6{height:36.814331pt;}
.h7{height:36.921661pt;}
.h12{height:37.565644pt;}
.h10{height:38.281250pt;}
.h1c{height:38.859716pt;}
.h23{height:39.765917pt;}
.h8{height:40.248904pt;}
.h27{height:41.322359pt;}
.h9{height:41.429539pt;}
.h3{height:44.177493pt;}
.h2{height:44.306290pt;}
.h5{height:45.079074pt;}
.hb{height:45.881372pt;}
.ha{height:45.886758pt;}
.h15{height:47.098876pt;}
.hf{height:47.104263pt;}
.h16{height:48.849049pt;}
.h18{height:48.854436pt;}
.h4{height:49.715779pt;}
.h20{height:49.753111pt;}
.h19{height:51.531609pt;}
.h17{height:51.536996pt;}
.h1{height:54.094738pt;}
.h13{height:54.410451pt;}
.h1a{height:76.464419pt;}
.h24{height:76.555037pt;}
.h26{height:78.242019pt;}
.h14{height:85.594133pt;}
.h1d{height:92.457609pt;}
.h25{height:114.548152pt;}
.h0{height:1056.000000pt;}
.w5{width:4.867749pt;}
.w1{width:5.885143pt;}
.w4{width:5.944374pt;}
.w3{width:9.220841pt;}
.w2{width:252.091448pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.503562pt;}
.x13{left:66.666667pt;}
.x9{left:98.751880pt;}
.x28{left:103.524400pt;}
.x26{left:106.878947pt;}
.x8{left:114.851280pt;}
.x1{left:118.720253pt;}
.x1b{left:126.066187pt;}
.x1a{left:152.113413pt;}
.x29{left:156.250440pt;}
.x27{left:160.033227pt;}
.x16{left:171.613147pt;}
.x2a{left:175.461987pt;}
.x3{left:209.714520pt;}
.x7{left:217.269320pt;}
.x17{left:220.680293pt;}
.x1e{left:233.617587pt;}
.x18{left:245.701360pt;}
.x2{left:253.135093pt;}
.x12{left:263.533333pt;}
.x19{left:271.753973pt;}
.x6{left:284.971640pt;}
.x4{left:304.523893pt;}
.x15{left:306.846760pt;}
.x5{left:393.071267pt;}
.x14{left:400.000000pt;}
.xb{left:418.156852pt;}
.x30{left:420.267565pt;}
.x1d{left:424.534465pt;}
.x2d{left:426.304672pt;}
.x2b{left:427.394973pt;}
.xa{left:434.256252pt;}
.x1c{left:439.055366pt;}
.x2c{left:446.760834pt;}
.x21{left:459.664744pt;}
.xc{left:468.394252pt;}
.x23{left:510.430480pt;}
.x2f{left:518.058458pt;}
.x2e{left:542.713232pt;}
.x32{left:547.776698pt;}
.x31{left:550.121245pt;}
.x33{left:551.920392pt;}
.xd{left:555.312159pt;}
.x24{left:565.783867pt;}
.x22{left:573.066529pt;}
.xf{left:583.919399pt;}
.x10{left:584.918625pt;}
.xe{left:588.848199pt;}
.x11{left:605.533399pt;}
.x1f{left:658.291136pt;}
.x25{left:694.663907pt;}
}




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