
    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_debf41be7a4a9fae610ec4c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c327fe5e3d8d8bf0913cc2a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.771000;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_9f766670de5c55c0d740024b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ce17a487e9cbcc0c159c9129.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.664000;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_9f61cd93a89223a23adff411.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123000;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_768407e96e0295c1248581ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.713000;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_0c0e02de2a85ee996e936c8f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950000;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_7161fa1311a48ba5acdfab2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_e9b55a98d8cb9f89879771d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002000;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_98c8127ff8b0a342621c2ce2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926000;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_9c35f10e129e7fa80714ea95.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_584607c3a07a056d0753fe74.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_95cf837ce90137a4ca03c3a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_715c63342fe19572ce14ba1c.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_22bca84e074e6d9803dc37fa.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d4fb63a365ba5b67967987e0.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2189e42a3aa63997a68dd562.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910000;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_5309cad45e422947878136ae.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.521000;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_febc779f77688785b9ecded0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.084473;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_810d342056516ef9009f80d4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.091797;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_e484a63653468e6f187651f1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.038574;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_4a5de8ca8490b9a328fec48e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.903000;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_35ef93e110bd4e8b66c71390.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_b796bec2ea9a97c5202a6b18.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.929000;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_8f2e7021362d1d6b4ff5966d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.908000;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_8c79fb85e93cdc0c3c46f6a3.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_f34111f3ee0f1b0e2907ceb9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.697000;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:ff1c;src:url('chunks/assets/font_4db82e20c230b9a77b5f5438.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.628000;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:ff1d;src:url('chunks/assets/font_9bcf73f1ef88a8bad64875ab.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.431000;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:ff1e;src:url('chunks/assets/font_b15742e66d5b78c59f85faac.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_2c689440501a9541b8e248c6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.234358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234358,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.696000px;}
.v16{vertical-align:-19.049587px;}
.v5{vertical-align:-10.794000px;}
.v3{vertical-align:-8.964000px;}
.v6{vertical-align:-6.342000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.988000px;}
.vb{vertical-align:5.808000px;}
.v18{vertical-align:8.964000px;}
.v1a{vertical-align:11.958000px;}
.va{vertical-align:14.778000px;}
.v1e{vertical-align:16.878000px;}
.v8{vertical-align:21.690000px;}
.v9{vertical-align:24.684000px;}
.v1{vertical-align:26.034000px;}
.v1b{vertical-align:28.836000px;}
.v19{vertical-align:31.824000px;}
.v1d{vertical-align:33.048000px;}
.v17{vertical-align:35.868000px;}
.v12{vertical-align:41.004000px;}
.v4{vertical-align:44.832000px;}
.v1c{vertical-align:47.826000px;}
.vc{vertical-align:56.790000px;}
.v13{vertical-align:81.444000px;}
.v11{vertical-align:105.696000px;}
.v15{vertical-align:112.902000px;}
.v10{vertical-align:114.666000px;}
.v14{vertical-align:125.292000px;}
.vd{vertical-align:128.220000px;}
.ve{vertical-align:131.010000px;}
.vf{vertical-align:158.508000px;}
.ls9e{letter-spacing:-0.051026px;}
.ls2{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000062px;}
.ls9{letter-spacing:0.000305px;}
.ls63{letter-spacing:0.000312px;}
.lsa4{letter-spacing:0.000411px;}
.ls78{letter-spacing:0.000538px;}
.lsa5{letter-spacing:0.000557px;}
.ls32{letter-spacing:0.000564px;}
.ls2d{letter-spacing:0.000615px;}
.ls34{letter-spacing:0.000961px;}
.lsa0{letter-spacing:0.001536px;}
.ls67{letter-spacing:0.002172px;}
.ls15{letter-spacing:0.002245px;}
.ls1b{letter-spacing:0.002338px;}
.ls21{letter-spacing:0.002450px;}
.ls4e{letter-spacing:0.002685px;}
.ls2f{letter-spacing:0.003031px;}
.ls8d{letter-spacing:0.003181px;}
.lsa3{letter-spacing:0.003197px;}
.ls1a{letter-spacing:0.003220px;}
.ls94{letter-spacing:0.003247px;}
.ls59{letter-spacing:0.003269px;}
.ls75{letter-spacing:0.003299px;}
.ls7d{letter-spacing:0.003413px;}
.ls19{letter-spacing:0.003723px;}
.ls7f{letter-spacing:0.003954px;}
.ls26{letter-spacing:0.004200px;}
.ls9f{letter-spacing:0.004528px;}
.ls3a{letter-spacing:0.004618px;}
.ls71{letter-spacing:0.004648px;}
.lsab{letter-spacing:0.004888px;}
.ls6b{letter-spacing:0.005023px;}
.ls50{letter-spacing:0.006062px;}
.ls95{letter-spacing:0.051026px;}
.ls9d{letter-spacing:0.074838px;}
.ls72{letter-spacing:2.984177px;}
.ls20{letter-spacing:2.984525px;}
.ls10{letter-spacing:2.985954px;}
.ls5c{letter-spacing:2.986738px;}
.ls1{letter-spacing:2.986894px;}
.lsad{letter-spacing:2.988248px;}
.lsaf{letter-spacing:2.988532px;}
.ls14{letter-spacing:2.988615px;}
.ls6c{letter-spacing:2.990177px;}
.ls7{letter-spacing:2.991954px;}
.ls12{letter-spacing:3.002207px;}
.ls57{letter-spacing:5.977480px;}
.ls22{letter-spacing:6.514745px;}
.ls5b{letter-spacing:6.520745px;}
.ls3c{letter-spacing:7.089199px;}
.ls3d{letter-spacing:7.092538px;}
.ls89{letter-spacing:7.173181px;}
.ls18{letter-spacing:7.679376px;}
.lsb8{letter-spacing:8.100668px;}
.ls88{letter-spacing:9.961409px;}
.ls8f{letter-spacing:9.962338px;}
.lsf{letter-spacing:9.966993px;}
.lsa2{letter-spacing:11.289056px;}
.ls2a{letter-spacing:13.278538px;}
.ls29{letter-spacing:13.281199px;}
.ls1d{letter-spacing:13.284538px;}
.lsaa{letter-spacing:14.110669px;}
.lsa9{letter-spacing:14.116059px;}
.lsa1{letter-spacing:14.280248px;}
.ls80{letter-spacing:15.473782px;}
.lsb6{letter-spacing:16.250316px;}
.ls33{letter-spacing:16.268525px;}
.ls1c{letter-spacing:16.272615px;}
.ls61{letter-spacing:16.596312px;}
.ls83{letter-spacing:16.598338px;}
.ls3{letter-spacing:16.599199px;}
.ls6{letter-spacing:16.601607px;}
.ls11{letter-spacing:16.602312px;}
.lsd{letter-spacing:16.602538px;}
.ls8{letter-spacing:16.604685px;}
.ls37{letter-spacing:16.605199px;}
.ls6d{letter-spacing:16.605269px;}
.ls2b{letter-spacing:16.606200px;}
.ls65{letter-spacing:16.607023px;}
.ls4{letter-spacing:16.607607px;}
.ls58{letter-spacing:16.608538px;}
.ls42{letter-spacing:16.610685px;}
.ls27{letter-spacing:16.688685px;}
.lsb4{letter-spacing:16.712316px;}
.lsa6{letter-spacing:16.930528px;}
.lsa7{letter-spacing:16.930726px;}
.ls45{letter-spacing:17.033607px;}
.ls44{letter-spacing:17.042685px;}
.ls66{letter-spacing:17.049954px;}
.ls82{letter-spacing:17.066387px;}
.ls90{letter-spacing:17.422200px;}
.ls16{letter-spacing:17.594685px;}
.ls17{letter-spacing:17.597607px;}
.lse{letter-spacing:17.639376px;}
.ls70{letter-spacing:17.840207px;}
.ls4d{letter-spacing:17.846685px;}
.ls97{letter-spacing:19.084200px;}
.ls99{letter-spacing:19.144200px;}
.ls5a{letter-spacing:19.255480px;}
.ls7b{letter-spacing:19.274685px;}
.ls7a{letter-spacing:19.277023px;}
.ls40{letter-spacing:19.586525px;}
.ls5e{letter-spacing:19.588982px;}
.ls76{letter-spacing:19.590615px;}
.ls2e{letter-spacing:19.592525px;}
.ls8e{letter-spacing:19.593954px;}
.ls25{letter-spacing:19.594738px;}
.ls1e{letter-spacing:19.596615px;}
.lsc{letter-spacing:19.604207px;}
.ls28{letter-spacing:19.674615px;}
.ls3f{letter-spacing:19.682685px;}
.ls3b{letter-spacing:19.814525px;}
.lsb3{letter-spacing:19.916316px;}
.ls84{letter-spacing:19.917269px;}
.ls98{letter-spacing:19.918200px;}
.lsa8{letter-spacing:19.920411px;}
.ls56{letter-spacing:19.920538px;}
.lsb2{letter-spacing:19.922316px;}
.ls48{letter-spacing:20.175199px;}
.ls47{letter-spacing:20.176200px;}
.ls62{letter-spacing:20.324207px;}
.ls69{letter-spacing:20.324685px;}
.ls68{letter-spacing:20.327023px;}
.ls8b{letter-spacing:20.454538px;}
.ls92{letter-spacing:20.460538px;}
.ls4f{letter-spacing:20.836982px;}
.lsb{letter-spacing:20.919954px;}
.ls38{letter-spacing:20.957376px;}
.ls49{letter-spacing:20.963376px;}
.ls46{letter-spacing:21.131376px;}
.ls64{letter-spacing:21.737376px;}
.ls53{letter-spacing:21.746685px;}
.ls7c{letter-spacing:22.220177px;}
.ls6a{letter-spacing:22.220685px;}
.ls93{letter-spacing:22.234200px;}
.ls3e{letter-spacing:22.364525px;}
.lsb0{letter-spacing:22.392615px;}
.ls4c{letter-spacing:22.579480px;}
.ls6e{letter-spacing:22.922207px;}
.ls55{letter-spacing:23.240685px;}
.ls91{letter-spacing:23.457954px;}
.lsb5{letter-spacing:23.510316px;}
.ls86{letter-spacing:23.555276px;}
.ls96{letter-spacing:24.281376px;}
.lsa{letter-spacing:25.607376px;}
.ls51{letter-spacing:25.615480px;}
.ls8c{letter-spacing:25.720200px;}
.ls13{letter-spacing:25.730177px;}
.lsb1{letter-spacing:26.207376px;}
.ls54{letter-spacing:26.230982px;}
.ls9c{letter-spacing:26.363376px;}
.ls0{letter-spacing:26.400479px;}
.ls23{letter-spacing:26.716738px;}
.ls9a{letter-spacing:26.819376px;}
.ls9b{letter-spacing:26.825376px;}
.ls5{letter-spacing:26.879376px;}
.ls36{letter-spacing:27.593376px;}
.ls2c{letter-spacing:27.599376px;}
.ls52{letter-spacing:27.721480px;}
.ls60{letter-spacing:29.635480px;}
.lsb7{letter-spacing:29.906316px;}
.ls85{letter-spacing:43.222200px;}
.ls7e{letter-spacing:49.402745px;}
.ls8a{letter-spacing:57.382200px;}
.ls87{letter-spacing:70.987409px;}
.lsae{letter-spacing:74.718532px;}
.lsac{letter-spacing:268.297534px;}
.ls74{letter-spacing:276.826200px;}
.ls77{letter-spacing:319.450200px;}
.ls6f{letter-spacing:322.899954px;}
.ls39{letter-spacing:344.032200px;}
.ls73{letter-spacing:386.056362px;}
.ls35{letter-spacing:423.380525px;}
.ls79{letter-spacing:428.682615px;}
.ls5f{letter-spacing:441.479376px;}
.ls4a{letter-spacing:475.841376px;}
.ls5d{letter-spacing:510.165269px;}
.ls1f{letter-spacing:530.807376px;}
.ls43{letter-spacing:629.867376px;}
.ls41{letter-spacing:701.544615px;}
.ls31{letter-spacing:719.675376px;}
.ls30{letter-spacing:738.872525px;}
.ls24{letter-spacing:1098.704525px;}
.ls81{letter-spacing:1309.491269px;}
.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;}
}
.ws56{word-spacing:-59.775600px;}
.wsd0{word-spacing:-51.025680px;}
.ws5b{word-spacing:-47.654765px;}
.ws68{word-spacing:-46.505417px;}
.ws74{word-spacing:-46.326090px;}
.ws9f{word-spacing:-43.186340px;}
.wsb8{word-spacing:-43.157983px;}
.ws78{word-spacing:-39.870325px;}
.ws48{word-spacing:-38.937826px;}
.wsd1{word-spacing:-37.418832px;}
.wse3{word-spacing:-33.211407px;}
.wsc9{word-spacing:-29.000659px;}
.ws53{word-spacing:-28.955301px;}
.wsc1{word-spacing:-16.617090px;}
.ws123{word-spacing:-16.611639px;}
.ws51{word-spacing:-16.605662px;}
.ws82{word-spacing:-16.193210px;}
.ws8a{word-spacing:-15.834556px;}
.ws88{word-spacing:-15.817272px;}
.ws89{word-spacing:-15.816381px;}
.ws3d{word-spacing:-15.774781px;}
.ws113{word-spacing:-15.655230px;}
.ws3f{word-spacing:-15.356352px;}
.ws97{word-spacing:-15.057474px;}
.ws44{word-spacing:-14.937922px;}
.ws104{word-spacing:-14.758596px;}
.ws106{word-spacing:-14.698820px;}
.ws9d{word-spacing:-14.639044px;}
.ws12b{word-spacing:-14.545810px;}
.wsf0{word-spacing:-14.519493px;}
.ws105{word-spacing:-14.459718px;}
.ws11f{word-spacing:-14.280391px;}
.wsde{word-spacing:-14.160840px;}
.wsbb{word-spacing:-14.041288px;}
.ws28{word-spacing:-13.981513px;}
.wsc3{word-spacing:-13.921737px;}
.wse0{word-spacing:-13.889466px;}
.wsdc{word-spacing:-13.682635px;}
.ws10e{word-spacing:-13.622859px;}
.wsdd{word-spacing:-13.563084px;}
.ws121{word-spacing:-13.503308px;}
.ws6b{word-spacing:-13.264206px;}
.ws60{word-spacing:-13.204430px;}
.wsf{word-spacing:-13.084879px;}
.ws6d{word-spacing:-13.025103px;}
.wsbc{word-spacing:-12.845776px;}
.ws84{word-spacing:-12.559201px;}
.ws40{word-spacing:-12.546898px;}
.wsca{word-spacing:-12.487123px;}
.wsc8{word-spacing:-12.427347px;}
.wsce{word-spacing:-12.367572px;}
.ws4{word-spacing:-12.307796px;}
.wsba{word-spacing:-12.248020px;}
.ws7e{word-spacing:-12.068694px;}
.ws7c{word-spacing:-12.055570px;}
.ws7d{word-spacing:-12.030381px;}
.ws72{word-spacing:-12.008918px;}
.ws4a{word-spacing:-11.949142px;}
.ws5{word-spacing:-11.889367px;}
.ws109{word-spacing:-11.769816px;}
.ws1d{word-spacing:-11.590489px;}
.ws34{word-spacing:-11.530713px;}
.ws6a{word-spacing:-11.470938px;}
.ws37{word-spacing:-11.351386px;}
.ws101{word-spacing:-11.347272px;}
.wsf2{word-spacing:-11.336737px;}
.wsaa{word-spacing:-11.231835px;}
.ws46{word-spacing:-11.172060px;}
.wsbd{word-spacing:-11.112284px;}
.wsc4{word-spacing:-11.052508px;}
.ws12e{word-spacing:-10.992733px;}
.ws79{word-spacing:-10.932957px;}
.wsd4{word-spacing:-10.878555px;}
.ws3b{word-spacing:-10.873182px;}
.wsd5{word-spacing:-10.813406px;}
.wsdb{word-spacing:-10.758731px;}
.ws43{word-spacing:-10.753630px;}
.wsda{word-spacing:-10.723373px;}
.ws8f{word-spacing:-10.723100px;}
.ws47{word-spacing:-10.693855px;}
.ws49{word-spacing:-10.680381px;}
.ws3a{word-spacing:-10.634079px;}
.wsad{word-spacing:-10.602381px;}
.wsa{word-spacing:-10.574304px;}
.ws6e{word-spacing:-10.518204px;}
.ws38{word-spacing:-10.514528px;}
.ws2d{word-spacing:-10.454752px;}
.ws18{word-spacing:-10.394977px;}
.wscf{word-spacing:-10.358213px;}
.ws4c{word-spacing:-10.335201px;}
.ws99{word-spacing:-10.275426px;}
.ws6f{word-spacing:-10.230550px;}
.ws70{word-spacing:-10.215650px;}
.ws42{word-spacing:-10.155874px;}
.wsb1{word-spacing:-10.096099px;}
.ws33{word-spacing:-10.036323px;}
.ws2{word-spacing:-9.976548px;}
.ws64{word-spacing:-9.974508px;}
.ws62{word-spacing:-9.971015px;}
.ws65{word-spacing:-9.960381px;}
.ws5d{word-spacing:-9.916772px;}
.ws35{word-spacing:-9.856996px;}
.ws100{word-spacing:-9.797221px;}
.ws75{word-spacing:-9.677670px;}
.ws92{word-spacing:-9.558118px;}
.ws93{word-spacing:-9.552381px;}
.ws91{word-spacing:-9.551753px;}
.ws16{word-spacing:-9.498343px;}
.ws32{word-spacing:-9.438567px;}
.ws50{word-spacing:-9.378792px;}
.ws1b{word-spacing:-9.319016px;}
.ws27{word-spacing:-9.259240px;}
.ws15{word-spacing:-9.139689px;}
.ws98{word-spacing:-9.079914px;}
.ws22{word-spacing:-9.020138px;}
.ws9{word-spacing:-8.900587px;}
.ws8e{word-spacing:-8.840811px;}
.ws9b{word-spacing:-8.782355px;}
.ws2c{word-spacing:-8.781036px;}
.wsd8{word-spacing:-8.721260px;}
.ws4f{word-spacing:-8.601709px;}
.ws4e{word-spacing:-8.541933px;}
.ws2f{word-spacing:-8.482158px;}
.ws1f{word-spacing:-8.422382px;}
.ws71{word-spacing:-8.403285px;}
.wsec{word-spacing:-8.362606px;}
.wseb{word-spacing:-8.302831px;}
.ws36{word-spacing:-8.183280px;}
.ws80{word-spacing:-8.142381px;}
.ws17{word-spacing:-8.123504px;}
.ws2a{word-spacing:-8.063728px;}
.ws61{word-spacing:-8.003953px;}
.ws12{word-spacing:-7.944177px;}
.wsd6{word-spacing:-7.884402px;}
.wsa7{word-spacing:-7.824626px;}
.ws73{word-spacing:-7.764850px;}
.ws94{word-spacing:-7.645299px;}
.wscc{word-spacing:-7.643697px;}
.wsd{word-spacing:-7.585524px;}
.ws102{word-spacing:-7.525748px;}
.ws5c{word-spacing:-7.465972px;}
.ws59{word-spacing:-7.286646px;}
.ws117{word-spacing:-7.276780px;}
.ws58{word-spacing:-7.226870px;}
.ws4d{word-spacing:-7.167094px;}
.ws3c{word-spacing:-7.107319px;}
.wsa5{word-spacing:-6.987768px;}
.ws2b{word-spacing:-6.927992px;}
.wsa3{word-spacing:-6.868216px;}
.wsae{word-spacing:-6.748665px;}
.wsa4{word-spacing:-6.688890px;}
.ws45{word-spacing:-6.629114px;}
.ws8b{word-spacing:-6.509563px;}
.ws4b{word-spacing:-6.449787px;}
.ws9a{word-spacing:-6.390012px;}
.wsc7{word-spacing:-6.330236px;}
.ws1a{word-spacing:-6.270460px;}
.ws81{word-spacing:-6.210685px;}
.ws39{word-spacing:-6.150909px;}
.ws1e{word-spacing:-6.091134px;}
.ws20{word-spacing:-6.031358px;}
.wsc6{word-spacing:-5.911807px;}
.ws85{word-spacing:-5.901558px;}
.ws26{word-spacing:-5.852031px;}
.ws29{word-spacing:-5.792256px;}
.wsd3{word-spacing:-5.707641px;}
.ws14{word-spacing:-5.612929px;}
.ws19{word-spacing:-5.553153px;}
.ws3e{word-spacing:-5.493378px;}
.ws10a{word-spacing:-5.373826px;}
.ws6{word-spacing:-5.314051px;}
.wsac{word-spacing:-5.194500px;}
.wsd2{word-spacing:-5.177406px;}
.ws7{word-spacing:-5.134724px;}
.ws10d{word-spacing:-5.074948px;}
.wsf1{word-spacing:-5.015173px;}
.wsb{word-spacing:-4.955397px;}
.wsb4{word-spacing:-4.895622px;}
.ws57{word-spacing:-4.835846px;}
.wsbf{word-spacing:-4.536968px;}
.ws10c{word-spacing:-4.477192px;}
.ws2e{word-spacing:-4.417417px;}
.ws30{word-spacing:-4.297866px;}
.wsed{word-spacing:-4.238090px;}
.ws13{word-spacing:-4.178314px;}
.wsd7{word-spacing:-4.118539px;}
.ws8{word-spacing:-3.819661px;}
.ws1c{word-spacing:-3.700110px;}
.wsc{word-spacing:-3.461007px;}
.ws11b{word-spacing:-3.401232px;}
.ws11a{word-spacing:-3.382835px;}
.ws124{word-spacing:-3.371263px;}
.wsab{word-spacing:-3.341456px;}
.wsb7{word-spacing:-3.319463px;}
.wsbe{word-spacing:-3.221905px;}
.wsa2{word-spacing:-3.162129px;}
.ws21{word-spacing:-3.102354px;}
.ws110{word-spacing:-2.923027px;}
.wsef{word-spacing:-2.863251px;}
.ws23{word-spacing:-2.683924px;}
.ws7a{word-spacing:-2.624149px;}
.ws8d{word-spacing:-2.564373px;}
.ws83{word-spacing:-2.504598px;}
.wsc5{word-spacing:-2.444822px;}
.ws11c{word-spacing:-2.205720px;}
.ws24{word-spacing:-2.086168px;}
.wscb{word-spacing:-2.026393px;}
.ws31{word-spacing:-1.787290px;}
.ws10b{word-spacing:-1.727515px;}
.ws107{word-spacing:-1.428637px;}
.ws11{word-spacing:-1.368861px;}
.wsdf{word-spacing:-1.249310px;}
.wsee{word-spacing:-0.711330px;}
.ws108{word-spacing:-0.532003px;}
.ws119{word-spacing:-0.233125px;}
.ws10f{word-spacing:-0.071731px;}
.wse{word-spacing:-0.059776px;}
.wse9{word-spacing:-0.047821px;}
.ws52{word-spacing:-0.041843px;}
.wse4{word-spacing:-0.035866px;}
.wsb9{word-spacing:-0.015471px;}
.ws9e{word-spacing:-0.006785px;}
.ws25{word-spacing:0.000000px;}
.ws7b{word-spacing:0.011955px;}
.ws128{word-spacing:2.994758px;}
.ws7f{word-spacing:3.060511px;}
.ws115{word-spacing:4.646415px;}
.wsb0{word-spacing:5.331984px;}
.ws87{word-spacing:6.826374px;}
.wsb5{word-spacing:13.480346px;}
.wsf6{word-spacing:14.244939px;}
.wsb6{word-spacing:16.226949px;}
.ws67{word-spacing:16.229134px;}
.ws95{word-spacing:16.230288px;}
.wsff{word-spacing:16.876288px;}
.ws103{word-spacing:16.880672px;}
.wsf5{word-spacing:16.881376px;}
.ws12a{word-spacing:17.095822px;}
.ws11d{word-spacing:17.633802px;}
.ws122{word-spacing:18.052231px;}
.ws11e{word-spacing:18.351109px;}
.wsfe{word-spacing:19.462984px;}
.ws54{word-spacing:19.541474px;}
.wsa9{word-spacing:19.550362px;}
.ws76{word-spacing:19.551257px;}
.ws66{word-spacing:19.553134px;}
.ws5e{word-spacing:19.553866px;}
.wsf7{word-spacing:19.883157px;}
.wse6{word-spacing:19.884793px;}
.wsf4{word-spacing:19.889157px;}
.wscd{word-spacing:19.994473px;}
.ws111{word-spacing:20.622582px;}
.ws6c{word-spacing:20.939134px;}
.ws114{word-spacing:21.280114px;}
.ws112{word-spacing:21.339889px;}
.ws90{word-spacing:22.104288px;}
.wsb2{word-spacing:22.724949px;}
.wsb3{word-spacing:22.728288px;}
.ws63{word-spacing:22.871134px;}
.ws1{word-spacing:23.312640px;}
.wsd9{word-spacing:23.739247px;}
.ws116{word-spacing:23.790689px;}
.ws120{word-spacing:23.970016px;}
.ws9c{word-spacing:24.062949px;}
.ws41{word-spacing:24.687323px;}
.ws0{word-spacing:24.872748px;}
.wsaf{word-spacing:24.906903px;}
.ws129{word-spacing:25.404630px;}
.wsa1{word-spacing:25.625134px;}
.wsa6{word-spacing:25.835134px;}
.ws8c{word-spacing:26.339134px;}
.ws86{word-spacing:26.352903px;}
.ws5a{word-spacing:26.672362px;}
.ws118{word-spacing:28.094532px;}
.ws12d{word-spacing:28.692288px;}
.ws3{word-spacing:29.481523px;}
.wse2{word-spacing:32.015157px;}
.ws12c{word-spacing:46.342312px;}
.ws126{word-spacing:54.395796px;}
.wsc0{word-spacing:62.128346px;}
.ws127{word-spacing:65.072102px;}
.wse1{word-spacing:71.683079px;}
.wse5{word-spacing:74.684339px;}
.wsea{word-spacing:75.652189px;}
.ws10{word-spacing:86.938214px;}
.ws125{word-spacing:103.890506px;}
.wse8{word-spacing:152.834638px;}
.wse7{word-spacing:178.275197px;}
.wsf3{word-spacing:201.946394px;}
.wsfd{word-spacing:257.466110px;}
.wsfa{word-spacing:282.858849px;}
.wsf9{word-spacing:282.906670px;}
.wsfc{word-spacing:322.358665px;}
.wsfb{word-spacing:322.406485px;}
.wsf8{word-spacing:347.799224px;}
.ws96{word-spacing:429.098949px;}
.wsa8{word-spacing:525.338362px;}
.ws77{word-spacing:547.469134px;}
.wsa0{word-spacing:577.376362px;}
.ws55{word-spacing:602.443707px;}
.ws69{word-spacing:840.266362px;}
.ws5f{word-spacing:1034.636362px;}
.wsc2{word-spacing:1108.006499px;}
._4{margin-left:-7.697666px;}
._0{margin-left:-6.218187px;}
._2{margin-left:-4.480769px;}
._6{margin-left:-3.347434px;}
._1{margin-left:-2.094547px;}
._8{margin-left:-1.018586px;}
._3{width:1.673717px;}
._16{width:3.466985px;}
._20{width:5.358112px;}
._40{width:6.607139px;}
._3d{width:8.026441px;}
._1d{width:15.051245px;}
._1a{width:16.201423px;}
._17{width:17.578829px;}
._5{width:18.595014px;}
._1c{width:19.969853px;}
._10{width:21.882672px;}
._c{width:23.314885px;}
._d{width:25.168094px;}
._a{width:26.248692px;}
._f{width:27.317449px;}
._11{width:28.814240px;}
._9{width:30.248855px;}
._15{width:31.743245px;}
._e{width:32.878981px;}
._1e{width:33.892765px;}
._3e{width:35.031235px;}
._18{width:36.047088px;}
._1f{width:37.063273px;}
._13{width:38.196608px;}
._12{width:39.690998px;}
._7{width:41.309742px;}
._21{width:43.165187px;}
._19{width:44.480250px;}
._b{width:46.388267px;}
._14{width:49.018393px;}
._22{width:51.105737px;}
._3f{width:55.768234px;}
._41{width:63.008947px;}
._37{width:71.730900px;}
._1b{width:87.009946px;}
._25{width:110.704689px;}
._34{width:282.954490px;}
._36{width:294.622721px;}
._2a{width:301.461062px;}
._2d{width:303.421707px;}
._31{width:322.454306px;}
._2b{width:326.901622px;}
._2f{width:347.799224px;}
._27{width:352.246540px;}
._39{width:437.175925px;}
._35{width:441.002052px;}
._3c{width:473.519581px;}
._24{width:499.471799px;}
._23{width:506.978541px;}
._3a{width:537.809611px;}
._29{width:585.515426px;}
._28{width:610.908165px;}
._3b{width:613.528739px;}
._26{width:636.300904px;}
._38{width:668.919328px;}
._2c{width:684.107136px;}
._33{width:741.601865px;}
._30{width:792.387342px;}
._32{width:806.494419px;}
._2e{width:831.887158px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs9{font-size:35.865600px;}
.fs8{font-size:37.418832px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:51.025680px;}
.fs7{font-size:51.093714px;}
.fs4{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y2e{bottom:40.207500px;}
.ye9{bottom:81.145005px;}
.ye2{bottom:85.039500px;}
.yeb{bottom:86.523962px;}
.y166{bottom:87.379500px;}
.yf0{bottom:88.650032px;}
.yed{bottom:89.684720px;}
.y138{bottom:92.313000px;}
.y100{bottom:95.428500px;}
.y5e{bottom:95.851500px;}
.ye8{bottom:96.452709px;}
.y88{bottom:97.347000px;}
.yea{bottom:101.831666px;}
.ye1{bottom:102.972000px;}
.yae{bottom:104.818500px;}
.yec{bottom:104.992424px;}
.y165{bottom:105.312000px;}
.y137{bottom:110.245500px;}
.yff{bottom:113.362500px;}
.yad{bottom:119.056500px;}
.y2d{bottom:119.379000px;}
.ye0{bottom:120.904500px;}
.y5d{bottom:122.751000px;}
.y136{bottom:124.483500px;}
.y135{bottom:128.178000px;}
.yfe{bottom:131.295000px;}
.y192{bottom:133.192500px;}
.y164{bottom:136.693500px;}
.y2c{bottom:137.313000px;}
.ydf{bottom:138.837000px;}
.y5c{bottom:140.683500px;}
.y134{bottom:146.110500px;}
.y87{bottom:148.156500px;}
.yfd{bottom:149.227500px;}
.y191{bottom:151.126500px;}
.y163{bottom:154.626000px;}
.y2b{bottom:155.245500px;}
.yde{bottom:156.771000px;}
.yac{bottom:158.616000px;}
.yf3{bottom:162.176620px;}
.yef{bottom:166.088588px;}
.y86{bottom:166.089000px;}
.yfc{bottom:167.160000px;}
.y190{bottom:169.059000px;}
.yf1{bottom:173.076272px;}
.y2a{bottom:173.178000px;}
.ydd{bottom:174.703500px;}
.yab{bottom:176.550000px;}
.y133{bottom:182.500500px;}
.yfb{bottom:185.092500px;}
.y162{bottom:186.009000px;}
.y5b{bottom:189.999000px;}
.y29{bottom:191.110500px;}
.ydc{bottom:192.636000px;}
.yaa{bottom:194.482500px;}
.y132{bottom:196.756500px;}
.y18f{bottom:199.279500px;}
.y85{bottom:201.954000px;}
.yfa{bottom:203.025000px;}
.y161{bottom:203.941500px;}
.y28{bottom:209.043000px;}
.ydb{bottom:210.568500px;}
.y131{bottom:210.954000px;}
.ya9{bottom:212.415000px;}
.y18e{bottom:217.212000px;}
.y84{bottom:219.886500px;}
.y160{bottom:221.874000px;}
.y130{bottom:225.150000px;}
.y5a{bottom:225.864000px;}
.y27{bottom:226.975500px;}
.y18d{bottom:235.144500px;}
.y83{bottom:237.819000px;}
.ye7{bottom:237.949754px;}
.yda{bottom:238.455000px;}
.yf9{bottom:238.891500px;}
.y12f{bottom:239.347500px;}
.ya8{bottom:241.597500px;}
.yf2{bottom:242.953106px;}
.y26{bottom:244.909500px;}
.ya7{bottom:245.292000px;}
.ye6{bottom:251.606211px;}
.y18c{bottom:253.078500px;}
.y12e{bottom:253.543500px;}
.y82{bottom:255.753000px;}
.yf8{bottom:256.824000px;}
.yee{bottom:257.133993px;}
.y15f{bottom:257.740500px;}
.yd7{bottom:261.517500px;}
.y59{bottom:261.730500px;}
.ya6{bottom:267.708000px;}
.y12d{bottom:267.741000px;}
.yd8{bottom:269.823000px;}
.y81{bottom:273.685500px;}
.ye5{bottom:273.873251px;}
.yf7{bottom:274.756500px;}
.yd6{bottom:280.074000px;}
.y25{bottom:280.774500px;}
.y12c{bottom:281.937000px;}
.y18b{bottom:283.299000px;}
.yd9{bottom:286.489500px;}
.y80{bottom:291.618000px;}
.yf6{bottom:292.689000px;}
.y12b{bottom:296.134500px;}
.y24{bottom:298.707000px;}
.y18a{bottom:301.231500px;}
.y7f{bottom:309.550500px;}
.y12a{bottom:310.330500px;}
.y15e{bottom:314.527500px;}
.ya5{bottom:314.823000px;}
.y23{bottom:316.639500px;}
.y58{bottom:318.517500px;}
.y189{bottom:319.164000px;}
.yd5{bottom:319.972500px;}
.y129{bottom:324.526500px;}
.yf5{bottom:324.820500px;}
.y7e{bottom:327.483000px;}
.y15d{bottom:332.460000px;}
.y22{bottom:334.572000px;}
.y57{bottom:336.450000px;}
.y128{bottom:338.724000px;}
.yf4{bottom:345.144000px;}
.y7d{bottom:345.417000px;}
.y188{bottom:349.386000px;}
.y21{bottom:352.506000px;}
.y127{bottom:352.920000px;}
.y56{bottom:354.382500px;}
.yd4{bottom:355.839000px;}
.y125{bottom:363.381000px;}
.y126{bottom:364.128000px;}
.y124{bottom:367.117500px;}
.y15c{bottom:368.325000px;}
.y20{bottom:370.438500px;}
.y55{bottom:372.315000px;}
.yd3{bottom:373.771500px;}
.y7c{bottom:378.292500px;}
.y187{bottom:379.606500px;}
.ye4{bottom:380.412000px;}
.y123{bottom:382.426500px;}
.y1f{bottom:388.371000px;}
.y54{bottom:390.249000px;}
.yd2{bottom:391.704000px;}
.y122{bottom:397.039500px;}
.y186{bottom:397.539000px;}
.y7b{bottom:400.708500px;}
.y1e{bottom:406.303500px;}
.y53{bottom:408.181500px;}
.yd1{bottom:409.636500px;}
.y121{bottom:417.363000px;}
.y7a{bottom:423.124500px;}
.y1d{bottom:424.236000px;}
.y15b{bottom:425.112000px;}
.ya4{bottom:426.114000px;}
.yd0{bottom:427.569000px;}
.y185{bottom:427.761000px;}
.y1c{bottom:442.168500px;}
.y15a{bottom:443.044500px;}
.y52{bottom:444.046500px;}
.ycf{bottom:445.501500px;}
.y184{bottom:445.693500px;}
.y1b{bottom:460.102500px;}
.y159{bottom:460.978500px;}
.y51{bottom:461.979000px;}
.yce{bottom:463.435500px;}
.y120{bottom:465.246000px;}
.y79{bottom:473.934000px;}
.y183{bottom:475.914000px;}
.y1a{bottom:478.035000px;}
.y158{bottom:478.911000px;}
.ya3{bottom:479.911500px;}
.ycd{bottom:481.368000px;}
.y11f{bottom:483.178500px;}
.y78{bottom:491.866500px;}
.y182{bottom:493.846500px;}
.y19{bottom:495.967500px;}
.y157{bottom:496.843500px;}
.ya2{bottom:497.844000px;}
.y50{bottom:497.845500px;}
.ycc{bottom:499.300500px;}
.y11e{bottom:501.111000px;}
.y77{bottom:509.800500px;}
.y181{bottom:511.780500px;}
.y18{bottom:513.900000px;}
.y156{bottom:514.776000px;}
.ya1{bottom:515.778000px;}
.ycb{bottom:517.233000px;}
.y11d{bottom:519.043500px;}
.y76{bottom:527.733000px;}
.y17{bottom:531.832500px;}
.y155{bottom:532.708500px;}
.y4f{bottom:533.710500px;}
.y11c{bottom:536.976000px;}
.y180{bottom:542.001000px;}
.ya0{bottom:548.653500px;}
.y16{bottom:549.766500px;}
.y154{bottom:550.642500px;}
.y4e{bottom:551.643000px;}
.yca{bottom:553.098000px;}
.y11b{bottom:554.908500px;}
.y17f{bottom:559.933500px;}
.y75{bottom:560.610000px;}
.y153{bottom:568.575000px;}
.y4d{bottom:569.575500px;}
.y11a{bottom:572.842500px;}
.y17e{bottom:577.866000px;}
.y74{bottom:583.026000px;}
.y15{bottom:585.631500px;}
.y152{bottom:586.507500px;}
.yc9{bottom:588.964500px;}
.y119{bottom:590.775000px;}
.y9f{bottom:599.463000px;}
.y151{bottom:604.440000px;}
.y4c{bottom:605.442000px;}
.yc8{bottom:606.897000px;}
.y17d{bottom:608.088000px;}
.y118{bottom:608.707500px;}
.y9e{bottom:617.397000px;}
.y150{bottom:622.372500px;}
.y4b{bottom:623.374500px;}
.yc7{bottom:624.829500px;}
.y17c{bottom:626.020500px;}
.y117{bottom:626.640000px;}
.y73{bottom:633.834000px;}
.y9d{bottom:635.329500px;}
.y14f{bottom:640.305000px;}
.y4a{bottom:641.307000px;}
.y14{bottom:642.418500px;}
.yc6{bottom:642.762000px;}
.y17b{bottom:643.953000px;}
.y116{bottom:644.572500px;}
.y72{bottom:651.768000px;}
.y9c{bottom:653.262000px;}
.y14e{bottom:658.239000px;}
.y49{bottom:659.239500px;}
.y13{bottom:660.351000px;}
.y115{bottom:662.505000px;}
.y71{bottom:669.700500px;}
.yc5{bottom:670.648500px;}
.y9b{bottom:671.194500px;}
.y17a{bottom:674.173500px;}
.y14d{bottom:676.171500px;}
.y48{bottom:677.172000px;}
.y114{bottom:680.439000px;}
.y70{bottom:687.633000px;}
.y9a{bottom:689.127000px;}
.y179{bottom:692.107500px;}
.yc4{bottom:693.597000px;}
.yc3{bottom:693.712500px;}
.y14c{bottom:694.104000px;}
.y47{bottom:695.104500px;}
.y12{bottom:696.216000px;}
.y113{bottom:698.371500px;}
.y6f{bottom:705.565500px;}
.y99{bottom:707.059500px;}
.yc2{bottom:711.570000px;}
.y14b{bottom:712.036500px;}
.y46{bottom:713.038500px;}
.y11{bottom:714.150000px;}
.y178{bottom:722.328000px;}
.y6e{bottom:723.498000px;}
.y98{bottom:724.993500px;}
.y14a{bottom:729.969000px;}
.y45{bottom:730.971000px;}
.y10{bottom:732.082500px;}
.y112{bottom:735.591000px;}
.y177{bottom:740.260500px;}
.y6d{bottom:741.432000px;}
.yc1{bottom:742.446000px;}
.y97{bottom:742.926000px;}
.y149{bottom:747.901500px;}
.y44{bottom:748.903500px;}
.y111{bottom:749.787000px;}
.yf{bottom:750.015000px;}
.y110{bottom:763.984500px;}
.y43{bottom:766.836000px;}
.ye{bottom:767.947500px;}
.y176{bottom:770.482500px;}
.y6c{bottom:774.307500px;}
.y10f{bottom:778.180500px;}
.yc0{bottom:778.311000px;}
.y96{bottom:778.791000px;}
.y148{bottom:783.768000px;}
.y42{bottom:784.768500px;}
.yd{bottom:785.880000px;}
.y175{bottom:788.415000px;}
.y10e{bottom:792.378000px;}
.ybf{bottom:796.243500px;}
.y95{bottom:796.723500px;}
.ye3{bottom:802.701000px;}
.yc{bottom:803.812500px;}
.y174{bottom:806.347500px;}
.y10d{bottom:806.574000px;}
.ybe{bottom:814.176000px;}
.y94{bottom:814.656000px;}
.y41{bottom:820.635000px;}
.y10c{bottom:820.771500px;}
.yb{bottom:821.746500px;}
.y6b{bottom:825.117000px;}
.ybd{bottom:832.108500px;}
.y93{bottom:832.590000px;}
.y10b{bottom:834.967500px;}
.y173{bottom:836.568000px;}
.y40{bottom:838.567500px;}
.ya{bottom:839.679000px;}
.y147{bottom:840.555000px;}
.y6a{bottom:843.051000px;}
.y10a{bottom:849.165000px;}
.ybc{bottom:850.042500px;}
.y172{bottom:854.500500px;}
.y3f{bottom:856.500000px;}
.y9{bottom:857.611500px;}
.y146{bottom:858.487500px;}
.y69{bottom:860.983500px;}
.y109{bottom:863.361000px;}
.ybb{bottom:867.975000px;}
.y92{bottom:868.455000px;}
.y171{bottom:872.434500px;}
.y3e{bottom:874.432500px;}
.y8{bottom:875.544000px;}
.y145{bottom:876.420000px;}
.y108{bottom:877.558500px;}
.y68{bottom:878.916000px;}
.yba{bottom:885.907500px;}
.y91{bottom:886.387500px;}
.y107{bottom:891.754500px;}
.y3d{bottom:892.365000px;}
.y144{bottom:894.352500px;}
.y170{bottom:902.655000px;}
.yb9{bottom:903.840000px;}
.y106{bottom:905.952000px;}
.y3c{bottom:910.299000px;}
.y7{bottom:911.409000px;}
.y143{bottom:912.286500px;}
.y67{bottom:914.781000px;}
.y105{bottom:916.413000px;}
.y90{bottom:919.264500px;}
.y104{bottom:920.148000px;}
.y16f{bottom:920.587500px;}
.yb8{bottom:921.772500px;}
.y3b{bottom:928.231500px;}
.y142{bottom:930.219000px;}
.y66{bottom:932.715000px;}
.y103{bottom:935.907000px;}
.yb7{bottom:939.705000px;}
.y3a{bottom:946.164000px;}
.y141{bottom:948.151500px;}
.y102{bottom:950.520000px;}
.y65{bottom:950.647500px;}
.y16e{bottom:950.809500px;}
.yb6{bottom:957.639000px;}
.y140{bottom:966.084000px;}
.y64{bottom:968.580000px;}
.y8f{bottom:970.074000px;}
.y101{bottom:970.843500px;}
.y16d{bottom:981.030000px;}
.y6{bottom:981.738000px;}
.y39{bottom:982.029000px;}
.y13f{bottom:984.016500px;}
.y63{bottom:986.512500px;}
.y8e{bottom:988.006500px;}
.yb5{bottom:993.504000px;}
.y16c{bottom:998.962500px;}
.y38{bottom:999.961500px;}
.y13e{bottom:1001.949000px;}
.y5{bottom:1003.300500px;}
.y62{bottom:1004.445000px;}
.y8d{bottom:1005.939000px;}
.yb4{bottom:1011.436500px;}
.y4{bottom:1014.016500px;}
.y37{bottom:1017.895500px;}
.y61{bottom:1022.377500px;}
.y8c{bottom:1023.873000px;}
.y16b{bottom:1029.183000px;}
.yb3{bottom:1029.369000px;}
.y3{bottom:1035.579000px;}
.y36{bottom:1035.828000px;}
.y13d{bottom:1039.168500px;}
.y8b{bottom:1041.805500px;}
.y16a{bottom:1047.117000px;}
.y13c{bottom:1053.366000px;}
.yb2{bottom:1053.561000px;}
.y35{bottom:1053.760500px;}
.yb1{bottom:1057.255500px;}
.y8a{bottom:1059.738000px;}
.y2{bottom:1062.565500px;}
.y13b{bottom:1067.562000px;}
.y34{bottom:1071.693000px;}
.yb0{bottom:1075.977000px;}
.y169{bottom:1077.337500px;}
.yaf{bottom:1079.671500px;}
.y13a{bottom:1081.759500px;}
.y33{bottom:1089.625500px;}
.y89{bottom:1092.615000px;}
.y168{bottom:1095.270000px;}
.y139{bottom:1096.372500px;}
.y60{bottom:1098.592500px;}
.y32{bottom:1107.558000px;}
.y1{bottom:1108.491000px;}
.y167{bottom:1113.202500px;}
.y5f{bottom:1116.525000px;}
.y31{bottom:1125.492000px;}
.y30{bottom:1143.424500px;}
.y2f{bottom:1161.357000px;}
.h15{height:29.457331px;}
.h4{height:30.547874px;}
.h10{height:31.382100px;}
.h1c{height:33.570061px;}
.h1f{height:35.913271px;}
.h25{height:41.117146px;}
.h26{height:41.544042px;}
.h1b{height:43.003088px;}
.h18{height:44.223917px;}
.h1a{height:44.298662px;}
.h8{height:44.891476px;}
.h20{height:45.335146px;}
.h2{height:45.883675px;}
.h7{height:46.210948px;}
.h1d{height:46.339382px;}
.h6{height:50.283571px;}
.h23{height:50.811450px;}
.h1e{height:50.853271px;}
.h21{height:50.859271px;}
.h19{height:50.944568px;}
.h5{height:52.243874px;}
.h9{height:53.072100px;}
.ha{height:53.078100px;}
.h24{height:53.081146px;}
.hd{height:56.060100px;}
.hb{height:56.066100px;}
.h22{height:57.293146px;}
.h11{height:59.175024px;}
.he{height:59.181024px;}
.h3{height:61.947271px;}
.hc{height:67.021874px;}
.hf{height:130.611024px;}
.h12{height:133.401024px;}
.h14{height:134.516100px;}
.h16{height:140.685619px;}
.h13{height:160.899024px;}
.h17{height:382.692600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.775990px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:89.049464px;}
.x2a{left:93.288017px;}
.x2d{left:115.244785px;}
.x2e{left:124.379597px;}
.x6{left:127.558500px;}
.x5{left:130.023000px;}
.xb{left:136.216500px;}
.x1d{left:138.364500px;}
.xa{left:140.365500px;}
.x3{left:141.373500px;}
.x8{left:144.516000px;}
.x9{left:168.468000px;}
.x2f{left:187.449000px;}
.x1b{left:202.389000px;}
.x35{left:205.404000px;}
.x1{left:209.407500px;}
.x17{left:223.326000px;}
.xf{left:232.657500px;}
.x14{left:234.097500px;}
.x10{left:236.415000px;}
.x1c{left:242.926500px;}
.x2{left:247.110000px;}
.x13{left:255.099000px;}
.x12{left:263.689500px;}
.x16{left:266.637000px;}
.x15{left:268.141500px;}
.xc{left:277.432500px;}
.x19{left:283.242000px;}
.x26{left:298.352932px;}
.x11{left:302.197500px;}
.x25{left:324.879000px;}
.x1e{left:330.765000px;}
.x28{left:340.718531px;}
.x34{left:343.686000px;}
.x4{left:352.488000px;}
.x1f{left:358.162500px;}
.x1a{left:360.561000px;}
.x30{left:373.657500px;}
.xe{left:404.571000px;}
.xd{left:407.556000px;}
.x20{left:416.625000px;}
.x31{left:423.813000px;}
.x2b{left:435.009727px;}
.x7{left:442.389000px;}
.x18{left:450.712500px;}
.x21{left:493.237500px;}
.x27{left:495.472220px;}
.x29{left:504.992356px;}
.x23{left:536.428500px;}
.x22{left:540.402000px;}
.x32{left:546.048000px;}
.x33{left:618.127500px;}
.x24{left:738.793500px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v16{vertical-align:-16.932966pt;}
.v5{vertical-align:-9.594667pt;}
.v3{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.637333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.656000pt;}
.vb{vertical-align:5.162667pt;}
.v18{vertical-align:7.968000pt;}
.v1a{vertical-align:10.629333pt;}
.va{vertical-align:13.136000pt;}
.v1e{vertical-align:15.002667pt;}
.v8{vertical-align:19.280000pt;}
.v9{vertical-align:21.941333pt;}
.v1{vertical-align:23.141333pt;}
.v1b{vertical-align:25.632000pt;}
.v19{vertical-align:28.288000pt;}
.v1d{vertical-align:29.376000pt;}
.v17{vertical-align:31.882667pt;}
.v12{vertical-align:36.448000pt;}
.v4{vertical-align:39.850667pt;}
.v1c{vertical-align:42.512000pt;}
.vc{vertical-align:50.480000pt;}
.v13{vertical-align:72.394667pt;}
.v11{vertical-align:93.952000pt;}
.v15{vertical-align:100.357333pt;}
.v10{vertical-align:101.925333pt;}
.v14{vertical-align:111.370667pt;}
.vd{vertical-align:113.973333pt;}
.ve{vertical-align:116.453333pt;}
.vf{vertical-align:140.896000pt;}
.ls9e{letter-spacing:-0.045356pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000055pt;}
.ls9{letter-spacing:0.000271pt;}
.ls63{letter-spacing:0.000278pt;}
.lsa4{letter-spacing:0.000365pt;}
.ls78{letter-spacing:0.000479pt;}
.lsa5{letter-spacing:0.000495pt;}
.ls32{letter-spacing:0.000501pt;}
.ls2d{letter-spacing:0.000546pt;}
.ls34{letter-spacing:0.000854pt;}
.lsa0{letter-spacing:0.001365pt;}
.ls67{letter-spacing:0.001931pt;}
.ls15{letter-spacing:0.001995pt;}
.ls1b{letter-spacing:0.002079pt;}
.ls21{letter-spacing:0.002178pt;}
.ls4e{letter-spacing:0.002387pt;}
.ls2f{letter-spacing:0.002694pt;}
.ls8d{letter-spacing:0.002827pt;}
.lsa3{letter-spacing:0.002842pt;}
.ls1a{letter-spacing:0.002863pt;}
.ls94{letter-spacing:0.002886pt;}
.ls59{letter-spacing:0.002906pt;}
.ls75{letter-spacing:0.002933pt;}
.ls7d{letter-spacing:0.003033pt;}
.ls19{letter-spacing:0.003310pt;}
.ls7f{letter-spacing:0.003514pt;}
.ls26{letter-spacing:0.003733pt;}
.ls9f{letter-spacing:0.004025pt;}
.ls3a{letter-spacing:0.004105pt;}
.ls71{letter-spacing:0.004132pt;}
.lsab{letter-spacing:0.004345pt;}
.ls6b{letter-spacing:0.004465pt;}
.ls50{letter-spacing:0.005388pt;}
.ls95{letter-spacing:0.045356pt;}
.ls9d{letter-spacing:0.066522pt;}
.ls72{letter-spacing:2.652602pt;}
.ls20{letter-spacing:2.652911pt;}
.ls10{letter-spacing:2.654181pt;}
.ls5c{letter-spacing:2.654878pt;}
.ls1{letter-spacing:2.655017pt;}
.lsad{letter-spacing:2.656220pt;}
.lsaf{letter-spacing:2.656473pt;}
.ls14{letter-spacing:2.656546pt;}
.ls6c{letter-spacing:2.657935pt;}
.ls7{letter-spacing:2.659514pt;}
.ls12{letter-spacing:2.668629pt;}
.ls57{letter-spacing:5.313316pt;}
.ls22{letter-spacing:5.790884pt;}
.ls5b{letter-spacing:5.796218pt;}
.ls3c{letter-spacing:6.301510pt;}
.ls3d{letter-spacing:6.304479pt;}
.ls89{letter-spacing:6.376161pt;}
.ls18{letter-spacing:6.826112pt;}
.lsb8{letter-spacing:7.200594pt;}
.ls88{letter-spacing:8.854586pt;}
.ls8f{letter-spacing:8.855412pt;}
.lsf{letter-spacing:8.859549pt;}
.lsa2{letter-spacing:10.034717pt;}
.ls2a{letter-spacing:11.803145pt;}
.ls29{letter-spacing:11.805510pt;}
.ls1d{letter-spacing:11.808479pt;}
.lsaa{letter-spacing:12.542817pt;}
.lsa9{letter-spacing:12.547608pt;}
.lsa1{letter-spacing:12.693553pt;}
.ls80{letter-spacing:13.754473pt;}
.lsb6{letter-spacing:14.444725pt;}
.ls33{letter-spacing:14.460911pt;}
.ls1c{letter-spacing:14.464546pt;}
.ls61{letter-spacing:14.752278pt;}
.ls83{letter-spacing:14.754079pt;}
.ls3{letter-spacing:14.754843pt;}
.ls6{letter-spacing:14.756984pt;}
.ls11{letter-spacing:14.757611pt;}
.lsd{letter-spacing:14.757812pt;}
.ls8{letter-spacing:14.759720pt;}
.ls37{letter-spacing:14.760177pt;}
.ls6d{letter-spacing:14.760239pt;}
.ls2b{letter-spacing:14.761067pt;}
.ls65{letter-spacing:14.761798pt;}
.ls4{letter-spacing:14.762318pt;}
.ls58{letter-spacing:14.763145pt;}
.ls42{letter-spacing:14.765053pt;}
.ls27{letter-spacing:14.834387pt;}
.lsb4{letter-spacing:14.855392pt;}
.lsa6{letter-spacing:15.049358pt;}
.lsa7{letter-spacing:15.049534pt;}
.ls45{letter-spacing:15.140984pt;}
.ls44{letter-spacing:15.149053pt;}
.ls66{letter-spacing:15.155514pt;}
.ls82{letter-spacing:15.170122pt;}
.ls90{letter-spacing:15.486400pt;}
.ls16{letter-spacing:15.639720pt;}
.ls17{letter-spacing:15.642318pt;}
.lse{letter-spacing:15.679445pt;}
.ls70{letter-spacing:15.857962pt;}
.ls4d{letter-spacing:15.863720pt;}
.ls97{letter-spacing:16.963733pt;}
.ls99{letter-spacing:17.017067pt;}
.ls5a{letter-spacing:17.115982pt;}
.ls7b{letter-spacing:17.133053pt;}
.ls7a{letter-spacing:17.135132pt;}
.ls40{letter-spacing:17.410245pt;}
.ls5e{letter-spacing:17.412428pt;}
.ls76{letter-spacing:17.413880pt;}
.ls2e{letter-spacing:17.415578pt;}
.ls8e{letter-spacing:17.416848pt;}
.ls25{letter-spacing:17.417545pt;}
.ls1e{letter-spacing:17.419213pt;}
.lsc{letter-spacing:17.425962pt;}
.ls28{letter-spacing:17.488546pt;}
.ls3f{letter-spacing:17.495720pt;}
.ls3b{letter-spacing:17.612911pt;}
.lsb3{letter-spacing:17.703392pt;}
.ls84{letter-spacing:17.704239pt;}
.ls98{letter-spacing:17.705067pt;}
.lsa8{letter-spacing:17.707032pt;}
.ls56{letter-spacing:17.707145pt;}
.lsb2{letter-spacing:17.708725pt;}
.ls48{letter-spacing:17.933510pt;}
.ls47{letter-spacing:17.934400pt;}
.ls62{letter-spacing:18.065962pt;}
.ls69{letter-spacing:18.066387pt;}
.ls68{letter-spacing:18.068465pt;}
.ls8b{letter-spacing:18.181812pt;}
.ls92{letter-spacing:18.187145pt;}
.ls4f{letter-spacing:18.521761pt;}
.lsb{letter-spacing:18.595514pt;}
.ls38{letter-spacing:18.628779pt;}
.ls49{letter-spacing:18.634112pt;}
.ls46{letter-spacing:18.783445pt;}
.ls64{letter-spacing:19.322112pt;}
.ls53{letter-spacing:19.330387pt;}
.ls7c{letter-spacing:19.751269pt;}
.ls6a{letter-spacing:19.751720pt;}
.ls93{letter-spacing:19.763733pt;}
.ls3e{letter-spacing:19.879578pt;}
.lsb0{letter-spacing:19.904546pt;}
.ls4c{letter-spacing:20.070649pt;}
.ls6e{letter-spacing:20.375295pt;}
.ls55{letter-spacing:20.658387pt;}
.ls91{letter-spacing:20.851514pt;}
.lsb5{letter-spacing:20.898059pt;}
.ls86{letter-spacing:20.938023pt;}
.ls96{letter-spacing:21.583445pt;}
.lsa{letter-spacing:22.762112pt;}
.ls51{letter-spacing:22.769316pt;}
.ls8c{letter-spacing:22.862400pt;}
.ls13{letter-spacing:22.871269pt;}
.lsb1{letter-spacing:23.295445pt;}
.ls54{letter-spacing:23.316428pt;}
.ls9c{letter-spacing:23.434112pt;}
.ls0{letter-spacing:23.467093pt;}
.ls23{letter-spacing:23.748212pt;}
.ls9a{letter-spacing:23.839445pt;}
.ls9b{letter-spacing:23.844779pt;}
.ls5{letter-spacing:23.892779pt;}
.ls36{letter-spacing:24.527445pt;}
.ls2c{letter-spacing:24.532779pt;}
.ls52{letter-spacing:24.641316pt;}
.ls60{letter-spacing:26.342649pt;}
.lsb7{letter-spacing:26.583392pt;}
.ls85{letter-spacing:38.419733pt;}
.ls7e{letter-spacing:43.913551pt;}
.ls8a{letter-spacing:51.006400pt;}
.ls87{letter-spacing:63.099919pt;}
.lsae{letter-spacing:66.416473pt;}
.lsac{letter-spacing:238.486697pt;}
.ls74{letter-spacing:246.067733pt;}
.ls77{letter-spacing:283.955733pt;}
.ls6f{letter-spacing:287.022181pt;}
.ls39{letter-spacing:305.806400pt;}
.ls73{letter-spacing:343.161211pt;}
.ls35{letter-spacing:376.338245pt;}
.ls79{letter-spacing:381.051213pt;}
.ls5f{letter-spacing:392.426112pt;}
.ls4a{letter-spacing:422.970112pt;}
.ls5d{letter-spacing:453.480239pt;}
.ls1f{letter-spacing:471.828779pt;}
.ls43{letter-spacing:559.882112pt;}
.ls41{letter-spacing:623.595213pt;}
.ls31{letter-spacing:639.711445pt;}
.ls30{letter-spacing:656.775578pt;}
.ls24{letter-spacing:976.626245pt;}
.ls81{letter-spacing:1163.992239pt;}
.ws56{word-spacing:-53.133867pt;}
.wsd0{word-spacing:-45.356160pt;}
.ws5b{word-spacing:-42.359791pt;}
.ws68{word-spacing:-41.338148pt;}
.ws74{word-spacing:-41.178747pt;}
.ws9f{word-spacing:-38.387858pt;}
.wsb8{word-spacing:-38.362652pt;}
.ws78{word-spacing:-35.440289pt;}
.ws48{word-spacing:-34.611401pt;}
.wsd1{word-spacing:-33.261184pt;}
.wse3{word-spacing:-29.521250pt;}
.wsc9{word-spacing:-25.778364pt;}
.ws53{word-spacing:-25.738045pt;}
.wsc1{word-spacing:-14.770747pt;}
.ws123{word-spacing:-14.765902pt;}
.ws51{word-spacing:-14.760588pt;}
.ws82{word-spacing:-14.393964pt;}
.ws8a{word-spacing:-14.075161pt;}
.ws88{word-spacing:-14.059797pt;}
.ws89{word-spacing:-14.059006pt;}
.ws3d{word-spacing:-14.022027pt;}
.ws113{word-spacing:-13.915760pt;}
.ws3f{word-spacing:-13.650090pt;}
.ws97{word-spacing:-13.384421pt;}
.ws44{word-spacing:-13.278153pt;}
.ws104{word-spacing:-13.118752pt;}
.ws106{word-spacing:-13.065618pt;}
.ws9d{word-spacing:-13.012484pt;}
.ws12b{word-spacing:-12.929609pt;}
.wsf0{word-spacing:-12.906216pt;}
.ws105{word-spacing:-12.853082pt;}
.ws11f{word-spacing:-12.693681pt;}
.wsde{word-spacing:-12.587413pt;}
.wsbb{word-spacing:-12.481145pt;}
.ws28{word-spacing:-12.428011pt;}
.wsc3{word-spacing:-12.374878pt;}
.wse0{word-spacing:-12.346192pt;}
.wsdc{word-spacing:-12.162342pt;}
.ws10e{word-spacing:-12.109208pt;}
.wsdd{word-spacing:-12.056074pt;}
.ws121{word-spacing:-12.002940pt;}
.ws6b{word-spacing:-11.790405pt;}
.ws60{word-spacing:-11.737271pt;}
.wsf{word-spacing:-11.631003pt;}
.ws6d{word-spacing:-11.577870pt;}
.wsbc{word-spacing:-11.418468pt;}
.ws84{word-spacing:-11.163734pt;}
.ws40{word-spacing:-11.152799pt;}
.wsca{word-spacing:-11.099665pt;}
.wsc8{word-spacing:-11.046531pt;}
.wsce{word-spacing:-10.993397pt;}
.ws4{word-spacing:-10.940263pt;}
.wsba{word-spacing:-10.887129pt;}
.ws7e{word-spacing:-10.727728pt;}
.ws7c{word-spacing:-10.716062pt;}
.ws7d{word-spacing:-10.693672pt;}
.ws72{word-spacing:-10.674594pt;}
.ws4a{word-spacing:-10.621460pt;}
.ws5{word-spacing:-10.568326pt;}
.ws109{word-spacing:-10.462058pt;}
.ws1d{word-spacing:-10.302657pt;}
.ws34{word-spacing:-10.249523pt;}
.ws6a{word-spacing:-10.196389pt;}
.ws37{word-spacing:-10.090121pt;}
.ws101{word-spacing:-10.086464pt;}
.wsf2{word-spacing:-10.077099pt;}
.wsaa{word-spacing:-9.983854pt;}
.ws46{word-spacing:-9.930720pt;}
.wsbd{word-spacing:-9.877586pt;}
.wsc4{word-spacing:-9.824452pt;}
.ws12e{word-spacing:-9.771318pt;}
.ws79{word-spacing:-9.718184pt;}
.wsd4{word-spacing:-9.669826pt;}
.ws3b{word-spacing:-9.665050pt;}
.wsd5{word-spacing:-9.611916pt;}
.wsdb{word-spacing:-9.563316pt;}
.ws43{word-spacing:-9.558783pt;}
.wsda{word-spacing:-9.531887pt;}
.ws8f{word-spacing:-9.531644pt;}
.ws47{word-spacing:-9.505649pt;}
.ws49{word-spacing:-9.493672pt;}
.ws3a{word-spacing:-9.452515pt;}
.wsad{word-spacing:-9.424339pt;}
.wsa{word-spacing:-9.399381pt;}
.ws6e{word-spacing:-9.349515pt;}
.ws38{word-spacing:-9.346247pt;}
.ws2d{word-spacing:-9.293113pt;}
.ws18{word-spacing:-9.239979pt;}
.wscf{word-spacing:-9.207300pt;}
.ws4c{word-spacing:-9.186846pt;}
.ws99{word-spacing:-9.133712pt;}
.ws6f{word-spacing:-9.093822pt;}
.ws70{word-spacing:-9.080578pt;}
.ws42{word-spacing:-9.027444pt;}
.wsb1{word-spacing:-8.974310pt;}
.ws33{word-spacing:-8.921176pt;}
.ws2{word-spacing:-8.868042pt;}
.ws64{word-spacing:-8.866230pt;}
.ws62{word-spacing:-8.863125pt;}
.ws65{word-spacing:-8.853672pt;}
.ws5d{word-spacing:-8.814908pt;}
.ws35{word-spacing:-8.761775pt;}
.ws100{word-spacing:-8.708641pt;}
.ws75{word-spacing:-8.602373pt;}
.ws92{word-spacing:-8.496105pt;}
.ws93{word-spacing:-8.491006pt;}
.ws91{word-spacing:-8.490447pt;}
.ws16{word-spacing:-8.442971pt;}
.ws32{word-spacing:-8.389838pt;}
.ws50{word-spacing:-8.336704pt;}
.ws1b{word-spacing:-8.283570pt;}
.ws27{word-spacing:-8.230436pt;}
.ws15{word-spacing:-8.124168pt;}
.ws98{word-spacing:-8.071034pt;}
.ws22{word-spacing:-8.017900pt;}
.ws9{word-spacing:-7.911633pt;}
.ws8e{word-spacing:-7.858499pt;}
.ws9b{word-spacing:-7.806538pt;}
.ws2c{word-spacing:-7.805365pt;}
.wsd8{word-spacing:-7.752231pt;}
.ws4f{word-spacing:-7.645963pt;}
.ws4e{word-spacing:-7.592830pt;}
.ws2f{word-spacing:-7.539696pt;}
.ws1f{word-spacing:-7.486562pt;}
.ws71{word-spacing:-7.469587pt;}
.wsec{word-spacing:-7.433428pt;}
.wseb{word-spacing:-7.380294pt;}
.ws36{word-spacing:-7.274026pt;}
.ws80{word-spacing:-7.237672pt;}
.ws17{word-spacing:-7.220892pt;}
.ws2a{word-spacing:-7.167759pt;}
.ws61{word-spacing:-7.114625pt;}
.ws12{word-spacing:-7.061491pt;}
.wsd6{word-spacing:-7.008357pt;}
.wsa7{word-spacing:-6.955223pt;}
.ws73{word-spacing:-6.902089pt;}
.ws94{word-spacing:-6.795822pt;}
.wscc{word-spacing:-6.794397pt;}
.wsd{word-spacing:-6.742688pt;}
.ws102{word-spacing:-6.689554pt;}
.ws5c{word-spacing:-6.636420pt;}
.ws59{word-spacing:-6.477018pt;}
.ws117{word-spacing:-6.468249pt;}
.ws58{word-spacing:-6.423884pt;}
.ws4d{word-spacing:-6.370751pt;}
.ws3c{word-spacing:-6.317617pt;}
.wsa5{word-spacing:-6.211349pt;}
.ws2b{word-spacing:-6.158215pt;}
.wsa3{word-spacing:-6.105081pt;}
.wsae{word-spacing:-5.998814pt;}
.wsa4{word-spacing:-5.945680pt;}
.ws45{word-spacing:-5.892546pt;}
.ws8b{word-spacing:-5.786278pt;}
.ws4b{word-spacing:-5.733144pt;}
.ws9a{word-spacing:-5.680010pt;}
.wsc7{word-spacing:-5.626876pt;}
.ws1a{word-spacing:-5.573743pt;}
.ws81{word-spacing:-5.520609pt;}
.ws39{word-spacing:-5.467475pt;}
.ws1e{word-spacing:-5.414341pt;}
.ws20{word-spacing:-5.361207pt;}
.wsc6{word-spacing:-5.254939pt;}
.ws85{word-spacing:-5.245829pt;}
.ws26{word-spacing:-5.201806pt;}
.ws29{word-spacing:-5.148672pt;}
.wsd3{word-spacing:-5.073459pt;}
.ws14{word-spacing:-4.989270pt;}
.ws19{word-spacing:-4.936136pt;}
.ws3e{word-spacing:-4.883002pt;}
.ws10a{word-spacing:-4.776735pt;}
.ws6{word-spacing:-4.723601pt;}
.wsac{word-spacing:-4.617333pt;}
.wsd2{word-spacing:-4.602138pt;}
.ws7{word-spacing:-4.564199pt;}
.ws10d{word-spacing:-4.511065pt;}
.wsf1{word-spacing:-4.457931pt;}
.wsb{word-spacing:-4.404798pt;}
.wsb4{word-spacing:-4.351664pt;}
.ws57{word-spacing:-4.298530pt;}
.wsbf{word-spacing:-4.032860pt;}
.ws10c{word-spacing:-3.979727pt;}
.ws2e{word-spacing:-3.926593pt;}
.ws30{word-spacing:-3.820325pt;}
.wsed{word-spacing:-3.767191pt;}
.ws13{word-spacing:-3.714057pt;}
.wsd7{word-spacing:-3.660923pt;}
.ws8{word-spacing:-3.395254pt;}
.ws1c{word-spacing:-3.288986pt;}
.wsc{word-spacing:-3.076451pt;}
.ws11b{word-spacing:-3.023317pt;}
.ws11a{word-spacing:-3.006965pt;}
.ws124{word-spacing:-2.996678pt;}
.wsab{word-spacing:-2.970183pt;}
.wsb7{word-spacing:-2.950634pt;}
.wsbe{word-spacing:-2.863915pt;}
.wsa2{word-spacing:-2.810782pt;}
.ws21{word-spacing:-2.757648pt;}
.ws110{word-spacing:-2.598246pt;}
.wsef{word-spacing:-2.545112pt;}
.ws23{word-spacing:-2.385711pt;}
.ws7a{word-spacing:-2.332577pt;}
.ws8d{word-spacing:-2.279443pt;}
.ws83{word-spacing:-2.226309pt;}
.wsc5{word-spacing:-2.173175pt;}
.ws11c{word-spacing:-1.960640pt;}
.ws24{word-spacing:-1.854372pt;}
.wscb{word-spacing:-1.801238pt;}
.ws31{word-spacing:-1.588703pt;}
.ws10b{word-spacing:-1.535569pt;}
.ws107{word-spacing:-1.269899pt;}
.ws11{word-spacing:-1.216766pt;}
.wsdf{word-spacing:-1.110498pt;}
.wsee{word-spacing:-0.632293pt;}
.ws108{word-spacing:-0.472891pt;}
.ws119{word-spacing:-0.207222pt;}
.ws10f{word-spacing:-0.063761pt;}
.wse{word-spacing:-0.053134pt;}
.wse9{word-spacing:-0.042507pt;}
.ws52{word-spacing:-0.037194pt;}
.wse4{word-spacing:-0.031881pt;}
.wsb9{word-spacing:-0.013752pt;}
.ws9e{word-spacing:-0.006031pt;}
.ws25{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.010627pt;}
.ws128{word-spacing:2.662007pt;}
.ws7f{word-spacing:2.720454pt;}
.ws115{word-spacing:4.130146pt;}
.wsb0{word-spacing:4.739541pt;}
.ws87{word-spacing:6.067888pt;}
.wsb5{word-spacing:11.982530pt;}
.wsf6{word-spacing:12.662168pt;}
.wsb6{word-spacing:14.423955pt;}
.ws67{word-spacing:14.425897pt;}
.ws95{word-spacing:14.426923pt;}
.wsff{word-spacing:15.001145pt;}
.ws103{word-spacing:15.005042pt;}
.wsf5{word-spacing:15.005667pt;}
.ws12a{word-spacing:15.196286pt;}
.ws11d{word-spacing:15.674491pt;}
.ws122{word-spacing:16.046428pt;}
.ws11e{word-spacing:16.312097pt;}
.wsfe{word-spacing:17.300430pt;}
.ws54{word-spacing:17.370199pt;}
.wsa9{word-spacing:17.378099pt;}
.ws76{word-spacing:17.378895pt;}
.ws66{word-spacing:17.380564pt;}
.ws5e{word-spacing:17.381214pt;}
.wsf7{word-spacing:17.673917pt;}
.wse6{word-spacing:17.675372pt;}
.wsf4{word-spacing:17.679251pt;}
.wscd{word-spacing:17.772865pt;}
.ws111{word-spacing:18.331184pt;}
.ws6c{word-spacing:18.612564pt;}
.ws114{word-spacing:18.915657pt;}
.ws112{word-spacing:18.968790pt;}
.ws90{word-spacing:19.648256pt;}
.wsb2{word-spacing:20.199955pt;}
.wsb3{word-spacing:20.202923pt;}
.ws63{word-spacing:20.329897pt;}
.ws1{word-spacing:20.722347pt;}
.wsd9{word-spacing:21.101553pt;}
.ws116{word-spacing:21.147279pt;}
.ws120{word-spacing:21.306681pt;}
.ws9c{word-spacing:21.389288pt;}
.ws41{word-spacing:21.944287pt;}
.ws0{word-spacing:22.109109pt;}
.wsaf{word-spacing:22.139469pt;}
.ws129{word-spacing:22.581893pt;}
.wsa1{word-spacing:22.777897pt;}
.wsa6{word-spacing:22.964564pt;}
.ws8c{word-spacing:23.412564pt;}
.ws86{word-spacing:23.424802pt;}
.ws5a{word-spacing:23.708766pt;}
.ws118{word-spacing:24.972917pt;}
.ws12d{word-spacing:25.504256pt;}
.ws3{word-spacing:26.205798pt;}
.wse2{word-spacing:28.457917pt;}
.ws12c{word-spacing:41.193167pt;}
.ws126{word-spacing:48.351819pt;}
.wsc0{word-spacing:55.225196pt;}
.ws127{word-spacing:57.841869pt;}
.wse1{word-spacing:63.718293pt;}
.wse5{word-spacing:66.386079pt;}
.wsea{word-spacing:67.246390pt;}
.ws10{word-spacing:77.278413pt;}
.ws125{word-spacing:92.347116pt;}
.wse8{word-spacing:135.853011pt;}
.wse7{word-spacing:158.466842pt;}
.wsf3{word-spacing:179.507906pt;}
.wsfd{word-spacing:228.858765pt;}
.wsfa{word-spacing:251.430088pt;}
.wsf9{word-spacing:251.472595pt;}
.wsfc{word-spacing:286.541035pt;}
.wsfb{word-spacing:286.583542pt;}
.wsf8{word-spacing:309.154866pt;}
.ws96{word-spacing:381.421288pt;}
.wsa8{word-spacing:466.967433pt;}
.ws77{word-spacing:486.639230pt;}
.wsa0{word-spacing:513.223433pt;}
.ws55{word-spacing:535.505518pt;}
.ws69{word-spacing:746.903433pt;}
.ws5f{word-spacing:919.676766pt;}
.wsc2{word-spacing:984.894666pt;}
._4{margin-left:-6.842370pt;}
._0{margin-left:-5.527277pt;}
._2{margin-left:-3.982906pt;}
._6{margin-left:-2.975497pt;}
._1{margin-left:-1.861820pt;}
._8{margin-left:-0.905410pt;}
._3{width:1.487748pt;}
._16{width:3.081764pt;}
._20{width:4.762766pt;}
._40{width:5.873013pt;}
._3d{width:7.134614pt;}
._1d{width:13.378884pt;}
._1a{width:14.401265pt;}
._17{width:15.625626pt;}
._5{width:16.528901pt;}
._1c{width:17.750980pt;}
._10{width:19.451264pt;}
._c{width:20.724342pt;}
._d{width:22.371639pt;}
._a{width:23.332171pt;}
._f{width:24.282177pt;}
._11{width:25.612658pt;}
._9{width:26.887871pt;}
._15{width:28.216218pt;}
._e{width:29.225761pt;}
._1e{width:30.126902pt;}
._3e{width:31.138876pt;}
._18{width:32.041856pt;}
._1f{width:32.945132pt;}
._13{width:33.952541pt;}
._12{width:35.280887pt;}
._7{width:36.719771pt;}
._21{width:38.369055pt;}
._19{width:39.538000pt;}
._b{width:41.234015pt;}
._14{width:43.571905pt;}
._22{width:45.427322pt;}
._3f{width:49.571763pt;}
._41{width:56.007953pt;}
._37{width:63.760800pt;}
._1b{width:77.342174pt;}
._25{width:98.404168pt;}
._34{width:251.515102pt;}
._36{width:261.886863pt;}
._2a{width:267.965389pt;}
._2d{width:269.708184pt;}
._31{width:286.626050pt;}
._2b{width:290.579219pt;}
._2f{width:309.154866pt;}
._27{width:313.108035pt;}
._39{width:388.600822pt;}
._35{width:392.001824pt;}
._3c{width:420.906294pt;}
._24{width:443.974933pt;}
._23{width:450.647592pt;}
._3a{width:478.052987pt;}
._29{width:520.458157pt;}
._28{width:543.029480pt;}
._3b{width:545.358879pt;}
._26{width:565.600803pt;}
._38{width:594.594958pt;}
._2c{width:608.095232pt;}
._33{width:659.201658pt;}
._30{width:704.344304pt;}
._32{width:716.883928pt;}
._2e{width:739.455251pt;}
.fs5{font-size:26.566933pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:33.261184pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:45.356160pt;}
.fs7{font-size:45.416635pt;}
.fs4{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:35.740000pt;}
.ye9{bottom:72.128893pt;}
.ye2{bottom:75.590667pt;}
.yeb{bottom:76.910189pt;}
.y166{bottom:77.670667pt;}
.yf0{bottom:78.800029pt;}
.yed{bottom:79.719751pt;}
.y138{bottom:82.056000pt;}
.y100{bottom:84.825333pt;}
.y5e{bottom:85.201333pt;}
.ye8{bottom:85.735741pt;}
.y88{bottom:86.530667pt;}
.yea{bottom:90.517037pt;}
.ye1{bottom:91.530667pt;}
.yae{bottom:93.172000pt;}
.yec{bottom:93.326599pt;}
.y165{bottom:93.610667pt;}
.y137{bottom:97.996000pt;}
.yff{bottom:100.766667pt;}
.yad{bottom:105.828000pt;}
.y2d{bottom:106.114667pt;}
.ye0{bottom:107.470667pt;}
.y5d{bottom:109.112000pt;}
.y136{bottom:110.652000pt;}
.y135{bottom:113.936000pt;}
.yfe{bottom:116.706667pt;}
.y192{bottom:118.393333pt;}
.y164{bottom:121.505333pt;}
.y2c{bottom:122.056000pt;}
.ydf{bottom:123.410667pt;}
.y5c{bottom:125.052000pt;}
.y134{bottom:129.876000pt;}
.y87{bottom:131.694667pt;}
.yfd{bottom:132.646667pt;}
.y191{bottom:134.334667pt;}
.y163{bottom:137.445333pt;}
.y2b{bottom:137.996000pt;}
.yde{bottom:139.352000pt;}
.yac{bottom:140.992000pt;}
.yf3{bottom:144.156995pt;}
.yef{bottom:147.634301pt;}
.y86{bottom:147.634667pt;}
.yfc{bottom:148.586667pt;}
.y190{bottom:150.274667pt;}
.yf1{bottom:153.845575pt;}
.y2a{bottom:153.936000pt;}
.ydd{bottom:155.292000pt;}
.yab{bottom:156.933333pt;}
.y133{bottom:162.222667pt;}
.yfb{bottom:164.526667pt;}
.y162{bottom:165.341333pt;}
.y5b{bottom:168.888000pt;}
.y29{bottom:169.876000pt;}
.ydc{bottom:171.232000pt;}
.yaa{bottom:172.873333pt;}
.y132{bottom:174.894667pt;}
.y18f{bottom:177.137333pt;}
.y85{bottom:179.514667pt;}
.yfa{bottom:180.466667pt;}
.y161{bottom:181.281333pt;}
.y28{bottom:185.816000pt;}
.ydb{bottom:187.172000pt;}
.y131{bottom:187.514667pt;}
.ya9{bottom:188.813333pt;}
.y18e{bottom:193.077333pt;}
.y84{bottom:195.454667pt;}
.y160{bottom:197.221333pt;}
.y130{bottom:200.133333pt;}
.y5a{bottom:200.768000pt;}
.y27{bottom:201.756000pt;}
.y18d{bottom:209.017333pt;}
.y83{bottom:211.394667pt;}
.ye7{bottom:211.510893pt;}
.yda{bottom:211.960000pt;}
.yf9{bottom:212.348000pt;}
.y12f{bottom:212.753333pt;}
.ya8{bottom:214.753333pt;}
.yf2{bottom:215.958316pt;}
.y26{bottom:217.697333pt;}
.ya7{bottom:218.037333pt;}
.ye6{bottom:223.649965pt;}
.y18c{bottom:224.958667pt;}
.y12e{bottom:225.372000pt;}
.y82{bottom:227.336000pt;}
.yf8{bottom:228.288000pt;}
.yee{bottom:228.563549pt;}
.y15f{bottom:229.102667pt;}
.yd7{bottom:232.460000pt;}
.y59{bottom:232.649333pt;}
.ya6{bottom:237.962667pt;}
.y12d{bottom:237.992000pt;}
.yd8{bottom:239.842667pt;}
.y81{bottom:243.276000pt;}
.ye5{bottom:243.442889pt;}
.yf7{bottom:244.228000pt;}
.yd6{bottom:248.954667pt;}
.y25{bottom:249.577333pt;}
.y12c{bottom:250.610667pt;}
.y18b{bottom:251.821333pt;}
.yd9{bottom:254.657333pt;}
.y80{bottom:259.216000pt;}
.yf6{bottom:260.168000pt;}
.y12b{bottom:263.230667pt;}
.y24{bottom:265.517333pt;}
.y18a{bottom:267.761333pt;}
.y7f{bottom:275.156000pt;}
.y12a{bottom:275.849333pt;}
.y15e{bottom:279.580000pt;}
.ya5{bottom:279.842667pt;}
.y23{bottom:281.457333pt;}
.y58{bottom:283.126667pt;}
.y189{bottom:283.701333pt;}
.yd5{bottom:284.420000pt;}
.y129{bottom:288.468000pt;}
.yf5{bottom:288.729333pt;}
.y7e{bottom:291.096000pt;}
.y15d{bottom:295.520000pt;}
.y22{bottom:297.397333pt;}
.y57{bottom:299.066667pt;}
.y128{bottom:301.088000pt;}
.yf4{bottom:306.794667pt;}
.y7d{bottom:307.037333pt;}
.y188{bottom:310.565333pt;}
.y21{bottom:313.338667pt;}
.y127{bottom:313.706667pt;}
.y56{bottom:315.006667pt;}
.yd4{bottom:316.301333pt;}
.y125{bottom:323.005333pt;}
.y126{bottom:323.669333pt;}
.y124{bottom:326.326667pt;}
.y15c{bottom:327.400000pt;}
.y20{bottom:329.278667pt;}
.y55{bottom:330.946667pt;}
.yd3{bottom:332.241333pt;}
.y7c{bottom:336.260000pt;}
.y187{bottom:337.428000pt;}
.ye4{bottom:338.144000pt;}
.y123{bottom:339.934667pt;}
.y1f{bottom:345.218667pt;}
.y54{bottom:346.888000pt;}
.yd2{bottom:348.181333pt;}
.y122{bottom:352.924000pt;}
.y186{bottom:353.368000pt;}
.y7b{bottom:356.185333pt;}
.y1e{bottom:361.158667pt;}
.y53{bottom:362.828000pt;}
.yd1{bottom:364.121333pt;}
.y121{bottom:370.989333pt;}
.y7a{bottom:376.110667pt;}
.y1d{bottom:377.098667pt;}
.y15b{bottom:377.877333pt;}
.ya4{bottom:378.768000pt;}
.yd0{bottom:380.061333pt;}
.y185{bottom:380.232000pt;}
.y1c{bottom:393.038667pt;}
.y15a{bottom:393.817333pt;}
.y52{bottom:394.708000pt;}
.ycf{bottom:396.001333pt;}
.y184{bottom:396.172000pt;}
.y1b{bottom:408.980000pt;}
.y159{bottom:409.758667pt;}
.y51{bottom:410.648000pt;}
.yce{bottom:411.942667pt;}
.y120{bottom:413.552000pt;}
.y79{bottom:421.274667pt;}
.y183{bottom:423.034667pt;}
.y1a{bottom:424.920000pt;}
.y158{bottom:425.698667pt;}
.ya3{bottom:426.588000pt;}
.ycd{bottom:427.882667pt;}
.y11f{bottom:429.492000pt;}
.y78{bottom:437.214667pt;}
.y182{bottom:438.974667pt;}
.y19{bottom:440.860000pt;}
.y157{bottom:441.638667pt;}
.ya2{bottom:442.528000pt;}
.y50{bottom:442.529333pt;}
.ycc{bottom:443.822667pt;}
.y11e{bottom:445.432000pt;}
.y77{bottom:453.156000pt;}
.y181{bottom:454.916000pt;}
.y18{bottom:456.800000pt;}
.y156{bottom:457.578667pt;}
.ya1{bottom:458.469333pt;}
.ycb{bottom:459.762667pt;}
.y11d{bottom:461.372000pt;}
.y76{bottom:469.096000pt;}
.y17{bottom:472.740000pt;}
.y155{bottom:473.518667pt;}
.y4f{bottom:474.409333pt;}
.y11c{bottom:477.312000pt;}
.y180{bottom:481.778667pt;}
.ya0{bottom:487.692000pt;}
.y16{bottom:488.681333pt;}
.y154{bottom:489.460000pt;}
.y4e{bottom:490.349333pt;}
.yca{bottom:491.642667pt;}
.y11b{bottom:493.252000pt;}
.y17f{bottom:497.718667pt;}
.y75{bottom:498.320000pt;}
.y153{bottom:505.400000pt;}
.y4d{bottom:506.289333pt;}
.y11a{bottom:509.193333pt;}
.y17e{bottom:513.658667pt;}
.y74{bottom:518.245333pt;}
.y15{bottom:520.561333pt;}
.y152{bottom:521.340000pt;}
.yc9{bottom:523.524000pt;}
.y119{bottom:525.133333pt;}
.y9f{bottom:532.856000pt;}
.y151{bottom:537.280000pt;}
.y4c{bottom:538.170667pt;}
.yc8{bottom:539.464000pt;}
.y17d{bottom:540.522667pt;}
.y118{bottom:541.073333pt;}
.y9e{bottom:548.797333pt;}
.y150{bottom:553.220000pt;}
.y4b{bottom:554.110667pt;}
.yc7{bottom:555.404000pt;}
.y17c{bottom:556.462667pt;}
.y117{bottom:557.013333pt;}
.y73{bottom:563.408000pt;}
.y9d{bottom:564.737333pt;}
.y14f{bottom:569.160000pt;}
.y4a{bottom:570.050667pt;}
.y14{bottom:571.038667pt;}
.yc6{bottom:571.344000pt;}
.y17b{bottom:572.402667pt;}
.y116{bottom:572.953333pt;}
.y72{bottom:579.349333pt;}
.y9c{bottom:580.677333pt;}
.y14e{bottom:585.101333pt;}
.y49{bottom:585.990667pt;}
.y13{bottom:586.978667pt;}
.y115{bottom:588.893333pt;}
.y71{bottom:595.289333pt;}
.yc5{bottom:596.132000pt;}
.y9b{bottom:596.617333pt;}
.y17a{bottom:599.265333pt;}
.y14d{bottom:601.041333pt;}
.y48{bottom:601.930667pt;}
.y114{bottom:604.834667pt;}
.y70{bottom:611.229333pt;}
.y9a{bottom:612.557333pt;}
.y179{bottom:615.206667pt;}
.yc4{bottom:616.530667pt;}
.yc3{bottom:616.633333pt;}
.y14c{bottom:616.981333pt;}
.y47{bottom:617.870667pt;}
.y12{bottom:618.858667pt;}
.y113{bottom:620.774667pt;}
.y6f{bottom:627.169333pt;}
.y99{bottom:628.497333pt;}
.yc2{bottom:632.506667pt;}
.y14b{bottom:632.921333pt;}
.y46{bottom:633.812000pt;}
.y11{bottom:634.800000pt;}
.y178{bottom:642.069333pt;}
.y6e{bottom:643.109333pt;}
.y98{bottom:644.438667pt;}
.y14a{bottom:648.861333pt;}
.y45{bottom:649.752000pt;}
.y10{bottom:650.740000pt;}
.y112{bottom:653.858667pt;}
.y177{bottom:658.009333pt;}
.y6d{bottom:659.050667pt;}
.yc1{bottom:659.952000pt;}
.y97{bottom:660.378667pt;}
.y149{bottom:664.801333pt;}
.y44{bottom:665.692000pt;}
.y111{bottom:666.477333pt;}
.yf{bottom:666.680000pt;}
.y110{bottom:679.097333pt;}
.y43{bottom:681.632000pt;}
.ye{bottom:682.620000pt;}
.y176{bottom:684.873333pt;}
.y6c{bottom:688.273333pt;}
.y10f{bottom:691.716000pt;}
.yc0{bottom:691.832000pt;}
.y96{bottom:692.258667pt;}
.y148{bottom:696.682667pt;}
.y42{bottom:697.572000pt;}
.yd{bottom:698.560000pt;}
.y175{bottom:700.813333pt;}
.y10e{bottom:704.336000pt;}
.ybf{bottom:707.772000pt;}
.y95{bottom:708.198667pt;}
.ye3{bottom:713.512000pt;}
.yc{bottom:714.500000pt;}
.y174{bottom:716.753333pt;}
.y10d{bottom:716.954667pt;}
.ybe{bottom:723.712000pt;}
.y94{bottom:724.138667pt;}
.y41{bottom:729.453333pt;}
.y10c{bottom:729.574667pt;}
.yb{bottom:730.441333pt;}
.y6b{bottom:733.437333pt;}
.ybd{bottom:739.652000pt;}
.y93{bottom:740.080000pt;}
.y10b{bottom:742.193333pt;}
.y173{bottom:743.616000pt;}
.y40{bottom:745.393333pt;}
.ya{bottom:746.381333pt;}
.y147{bottom:747.160000pt;}
.y6a{bottom:749.378667pt;}
.y10a{bottom:754.813333pt;}
.ybc{bottom:755.593333pt;}
.y172{bottom:759.556000pt;}
.y3f{bottom:761.333333pt;}
.y9{bottom:762.321333pt;}
.y146{bottom:763.100000pt;}
.y69{bottom:765.318667pt;}
.y109{bottom:767.432000pt;}
.ybb{bottom:771.533333pt;}
.y92{bottom:771.960000pt;}
.y171{bottom:775.497333pt;}
.y3e{bottom:777.273333pt;}
.y8{bottom:778.261333pt;}
.y145{bottom:779.040000pt;}
.y108{bottom:780.052000pt;}
.y68{bottom:781.258667pt;}
.yba{bottom:787.473333pt;}
.y91{bottom:787.900000pt;}
.y107{bottom:792.670667pt;}
.y3d{bottom:793.213333pt;}
.y144{bottom:794.980000pt;}
.y170{bottom:802.360000pt;}
.yb9{bottom:803.413333pt;}
.y106{bottom:805.290667pt;}
.y3c{bottom:809.154667pt;}
.y7{bottom:810.141333pt;}
.y143{bottom:810.921333pt;}
.y67{bottom:813.138667pt;}
.y105{bottom:814.589333pt;}
.y90{bottom:817.124000pt;}
.y104{bottom:817.909333pt;}
.y16f{bottom:818.300000pt;}
.yb8{bottom:819.353333pt;}
.y3b{bottom:825.094667pt;}
.y142{bottom:826.861333pt;}
.y66{bottom:829.080000pt;}
.y103{bottom:831.917333pt;}
.yb7{bottom:835.293333pt;}
.y3a{bottom:841.034667pt;}
.y141{bottom:842.801333pt;}
.y102{bottom:844.906667pt;}
.y65{bottom:845.020000pt;}
.y16e{bottom:845.164000pt;}
.yb6{bottom:851.234667pt;}
.y140{bottom:858.741333pt;}
.y64{bottom:860.960000pt;}
.y8f{bottom:862.288000pt;}
.y101{bottom:862.972000pt;}
.y16d{bottom:872.026667pt;}
.y6{bottom:872.656000pt;}
.y39{bottom:872.914667pt;}
.y13f{bottom:874.681333pt;}
.y63{bottom:876.900000pt;}
.y8e{bottom:878.228000pt;}
.yb5{bottom:883.114667pt;}
.y16c{bottom:887.966667pt;}
.y38{bottom:888.854667pt;}
.y13e{bottom:890.621333pt;}
.y5{bottom:891.822667pt;}
.y62{bottom:892.840000pt;}
.y8d{bottom:894.168000pt;}
.yb4{bottom:899.054667pt;}
.y4{bottom:901.348000pt;}
.y37{bottom:904.796000pt;}
.y61{bottom:908.780000pt;}
.y8c{bottom:910.109333pt;}
.y16b{bottom:914.829333pt;}
.yb3{bottom:914.994667pt;}
.y3{bottom:920.514667pt;}
.y36{bottom:920.736000pt;}
.y13d{bottom:923.705333pt;}
.y8b{bottom:926.049333pt;}
.y16a{bottom:930.770667pt;}
.y13c{bottom:936.325333pt;}
.yb2{bottom:936.498667pt;}
.y35{bottom:936.676000pt;}
.yb1{bottom:939.782667pt;}
.y8a{bottom:941.989333pt;}
.y2{bottom:944.502667pt;}
.y13b{bottom:948.944000pt;}
.y34{bottom:952.616000pt;}
.yb0{bottom:956.424000pt;}
.y169{bottom:957.633333pt;}
.yaf{bottom:959.708000pt;}
.y13a{bottom:961.564000pt;}
.y33{bottom:968.556000pt;}
.y89{bottom:971.213333pt;}
.y168{bottom:973.573333pt;}
.y139{bottom:974.553333pt;}
.y60{bottom:976.526667pt;}
.y32{bottom:984.496000pt;}
.y1{bottom:985.325333pt;}
.y167{bottom:989.513333pt;}
.y5f{bottom:992.466667pt;}
.y31{bottom:1000.437333pt;}
.y30{bottom:1016.377333pt;}
.y2f{bottom:1032.317333pt;}
.h15{height:26.184294pt;}
.h4{height:27.153666pt;}
.h10{height:27.895200pt;}
.h1c{height:29.840054pt;}
.h1f{height:31.922907pt;}
.h25{height:36.548574pt;}
.h26{height:36.928037pt;}
.h1b{height:38.224967pt;}
.h18{height:39.310148pt;}
.h1a{height:39.376588pt;}
.h8{height:39.903534pt;}
.h20{height:40.297907pt;}
.h2{height:40.785489pt;}
.h7{height:41.076398pt;}
.h1d{height:41.190562pt;}
.h6{height:44.696508pt;}
.h23{height:45.165733pt;}
.h1e{height:45.202907pt;}
.h21{height:45.208241pt;}
.h19{height:45.284061pt;}
.h5{height:46.438999pt;}
.h9{height:47.175200pt;}
.ha{height:47.180533pt;}
.h24{height:47.183241pt;}
.hd{height:49.831200pt;}
.hb{height:49.836533pt;}
.h22{height:50.927241pt;}
.h11{height:52.600021pt;}
.he{height:52.605355pt;}
.h3{height:55.064241pt;}
.hc{height:59.574999pt;}
.hf{height:116.098688pt;}
.h12{height:118.578688pt;}
.h14{height:119.569867pt;}
.h16{height:125.053884pt;}
.h13{height:143.021355pt;}
.h17{height:340.171200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.911992pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:79.155080pt;}
.x2a{left:82.922682pt;}
.x2d{left:102.439809pt;}
.x2e{left:110.559642pt;}
.x6{left:113.385333pt;}
.x5{left:115.576000pt;}
.xb{left:121.081333pt;}
.x1d{left:122.990667pt;}
.xa{left:124.769333pt;}
.x3{left:125.665333pt;}
.x8{left:128.458667pt;}
.x9{left:149.749333pt;}
.x2f{left:166.621333pt;}
.x1b{left:179.901333pt;}
.x35{left:182.581333pt;}
.x1{left:186.140000pt;}
.x17{left:198.512000pt;}
.xf{left:206.806667pt;}
.x14{left:208.086667pt;}
.x10{left:210.146667pt;}
.x1c{left:215.934667pt;}
.x2{left:219.653333pt;}
.x13{left:226.754667pt;}
.x12{left:234.390667pt;}
.x16{left:237.010667pt;}
.x15{left:238.348000pt;}
.xc{left:246.606667pt;}
.x19{left:251.770667pt;}
.x26{left:265.202606pt;}
.x11{left:268.620000pt;}
.x25{left:288.781333pt;}
.x1e{left:294.013333pt;}
.x28{left:302.860917pt;}
.x34{left:305.498667pt;}
.x4{left:313.322667pt;}
.x1f{left:318.366667pt;}
.x1a{left:320.498667pt;}
.x30{left:332.140000pt;}
.xe{left:359.618667pt;}
.xd{left:362.272000pt;}
.x20{left:370.333333pt;}
.x31{left:376.722667pt;}
.x2b{left:386.675313pt;}
.x7{left:393.234667pt;}
.x18{left:400.633333pt;}
.x21{left:438.433333pt;}
.x27{left:440.419752pt;}
.x29{left:448.882094pt;}
.x23{left:476.825333pt;}
.x22{left:480.357333pt;}
.x32{left:485.376000pt;}
.x33{left:549.446667pt;}
.x24{left:656.705333pt;}
}




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