
    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_11d059399a80c9fd5268e2a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65ee380adc2af77c27399338.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1fb4b582b6e5d8019c34aba0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.949219;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_9c04ca6d92cf83bc334df482.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_626e31e90aab2e24d7dde5fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_f9c34d87b668c00c56901750.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_689090c03a2407e051530430.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853000;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_31c664be8761466e40ec1afd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052000;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_6ef283f8742db93bf002c466.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904000;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_d70618a1101112ccbe173d7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.687000;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_de417481533ce4e290fde415.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.848000;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_c622143d5d15df26d9ddc930.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.681000;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_19ae124aaf082ff6f79ddcae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.956000;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_19c300e5aec75b8b4da440fa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.510000;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_65eed1f578e3fab9af12fa0b.woff2')format("woff");}.fff{font-family:fff;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5d9c882bb1aa170f15908e3b.woff2')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c00a1bccea0fe62ced814906.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.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:ff12;src:url('chunks/assets/font_80336bc7bf993ef896e1b4b4.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_3a8cc16ef0a2308730e2042e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.818000;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_e7b281bea95d009c9ca32b9b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.484500;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_4cf51af71d4dfa5859ccab68.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.111000;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_679171e49d313164f5bf33e3.woff2')format("woff");}.ff16{font-family:ff16;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;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2aa013fb7cc387627414fdd0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.952000;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_d071456fa8031493d176e934.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.952000;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_e232923e64928085be43f45b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.879000;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_f31b8bfd951406a0ca5d7833.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.750000;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_dadaed42a59ada87c4c22b44.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.443000;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_f68d0c7d63956659ef0e446a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.438000;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_797ce3526010c6c94a737505.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.040000;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_b8b2bae5ccf1769517afe97d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.356000;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_57f837df351e6698ed51987a.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_52a8e072036582673c953edd.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.099000;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);}
.m5{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281276,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,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);}
.v7{vertical-align:-47.287262px;}
.v5{vertical-align:-37.122151px;}
.vb{vertical-align:-33.749550px;}
.v9{vertical-align:-22.500000px;}
.v6{vertical-align:-20.250938px;}
.v4{vertical-align:-16.874400px;}
.v8{vertical-align:-6.757317px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.375000px;}
.va{vertical-align:13.498988px;}
.vc{vertical-align:23.453832px;}
.v2{vertical-align:37.122151px;}
.v3{vertical-align:47.252337px;}
.vd{vertical-align:57.451042px;}
.ls54{letter-spacing:-0.495525px;}
.ls5e{letter-spacing:-0.429853px;}
.ls4d{letter-spacing:-0.395774px;}
.ls46{letter-spacing:-0.395438px;}
.ls58{letter-spacing:-0.366770px;}
.ls55{letter-spacing:-0.292539px;}
.ls51{letter-spacing:-0.070992px;}
.ls0{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.023910px;}
.ls20{letter-spacing:0.035865px;}
.lsf{letter-spacing:0.047820px;}
.ls18{letter-spacing:0.059776px;}
.ls17{letter-spacing:0.083686px;}
.ls71{letter-spacing:0.089663px;}
.ls63{letter-spacing:0.100425px;}
.lsa{letter-spacing:0.124933px;}
.ls29{letter-spacing:0.125529px;}
.ls62{letter-spacing:0.131506px;}
.ls6{letter-spacing:0.132484px;}
.ls8{letter-spacing:0.133899px;}
.lsc{letter-spacing:0.143461px;}
.ls9{letter-spacing:0.144659px;}
.ls61{letter-spacing:0.155399px;}
.ls35{letter-spacing:0.155417px;}
.ls65{letter-spacing:0.176938px;}
.ls11{letter-spacing:0.178847px;}
.ls82{letter-spacing:0.185304px;}
.ls86{letter-spacing:0.200849px;}
.ls6d{letter-spacing:0.209215px;}
.ls84{letter-spacing:0.224760px;}
.lsd{letter-spacing:0.233125px;}
.ls7{letter-spacing:0.239106px;}
.ls2{letter-spacing:0.248670px;}
.ls66{letter-spacing:0.253452px;}
.ls1d{letter-spacing:0.257035px;}
.ls5{letter-spacing:0.258232px;}
.ls88{letter-spacing:0.263017px;}
.ls3b{letter-spacing:0.268990px;}
.ls6e{letter-spacing:0.280945px;}
.ls69{letter-spacing:0.304856px;}
.ls70{letter-spacing:0.306056px;}
.ls1a{letter-spacing:0.316811px;}
.ls64{letter-spacing:0.334748px;}
.ls33{letter-spacing:0.395438px;}
.ls60{letter-spacing:0.621666px;}
.ls13{letter-spacing:1.906842px;}
.ls14{letter-spacing:1.909830px;}
.ls8c{letter-spacing:2.041965px;}
.ls15{letter-spacing:2.131000px;}
.ls16{letter-spacing:2.154910px;}
.ls4{letter-spacing:2.564373px;}
.ls12{letter-spacing:6.641720px;}
.ls72{letter-spacing:7.393158px;}
.ls77{letter-spacing:7.397940px;}
.ls7a{letter-spacing:7.474454px;}
.ls7c{letter-spacing:7.479236px;}
.ls6f{letter-spacing:7.498364px;}
.ls1{letter-spacing:7.570096px;}
.ls74{letter-spacing:7.584442px;}
.ls67{letter-spacing:7.617917px;}
.ls75{letter-spacing:7.660956px;}
.ls3{letter-spacing:7.732688px;}
.ls73{letter-spacing:7.737470px;}
.ls78{letter-spacing:7.818766px;}
.ls8a{letter-spacing:7.909626px;}
.ls10{letter-spacing:9.324994px;}
.ls1f{letter-spacing:9.348904px;}
.ls6c{letter-spacing:9.372814px;}
.ls3c{letter-spacing:9.396724px;}
.ls1c{letter-spacing:9.462477px;}
.ls19{letter-spacing:9.522253px;}
.ls2f{letter-spacing:9.546163px;}
.ls6a{letter-spacing:9.582029px;}
.ls6b{letter-spacing:9.605939px;}
.lse{letter-spacing:9.665715px;}
.ls1b{letter-spacing:9.677670px;}
.ls28{letter-spacing:9.779288px;}
.lsb{letter-spacing:9.785266px;}
.ls83{letter-spacing:9.803198px;}
.ls1e{letter-spacing:9.862974px;}
.ls80{letter-spacing:9.886884px;}
.ls81{letter-spacing:9.922750px;}
.ls85{letter-spacing:20.998289px;}
.ls8b{letter-spacing:20.998724px;}
.ls4a{letter-spacing:27.552409px;}
.ls5b{letter-spacing:28.555371px;}
.ls48{letter-spacing:29.645252px;}
.ls2e{letter-spacing:34.998902px;}
.ls27{letter-spacing:39.645300px;}
.ls47{letter-spacing:39.769475px;}
.ls4e{letter-spacing:39.803892px;}
.ls5f{letter-spacing:39.821101px;}
.ls2a{letter-spacing:40.573712px;}
.ls3d{letter-spacing:60.865985px;}
.ls42{letter-spacing:82.216085px;}
.ls49{letter-spacing:82.287236px;}
.ls5d{letter-spacing:82.322812px;}
.ls56{letter-spacing:83.988492px;}
.ls38{letter-spacing:84.597451px;}
.ls24{letter-spacing:93.374400px;}
.ls25{letter-spacing:97.301058px;}
.ls23{letter-spacing:110.287253px;}
.ls68{letter-spacing:119.643860px;}
.ls39{letter-spacing:120.514053px;}
.ls36{letter-spacing:123.130032px;}
.ls4f{letter-spacing:138.990439px;}
.ls5c{letter-spacing:140.842516px;}
.ls89{letter-spacing:146.127241px;}
.ls59{letter-spacing:149.087335px;}
.ls53{letter-spacing:151.809737px;}
.ls43{letter-spacing:166.536912px;}
.ls7d{letter-spacing:179.425142px;}
.ls7b{letter-spacing:186.995238px;}
.ls50{letter-spacing:188.890099px;}
.ls87{letter-spacing:210.126353px;}
.ls2b{letter-spacing:242.636648px;}
.ls76{letter-spacing:243.802042px;}
.ls5a{letter-spacing:248.216204px;}
.ls22{letter-spacing:258.859333px;}
.ls7e{letter-spacing:259.425228px;}
.ls34{letter-spacing:259.552688px;}
.ls52{letter-spacing:270.084973px;}
.ls3f{letter-spacing:276.532767px;}
.ls40{letter-spacing:279.989502px;}
.ls45{letter-spacing:342.738939px;}
.ls31{letter-spacing:348.992325px;}
.ls30{letter-spacing:355.236712px;}
.ls79{letter-spacing:373.655728px;}
.ls3e{letter-spacing:395.118453px;}
.ls21{letter-spacing:431.669353px;}
.ls4b{letter-spacing:435.485610px;}
.ls44{letter-spacing:467.729568px;}
.ls2c{letter-spacing:532.041378px;}
.ls3a{letter-spacing:541.817716px;}
.ls41{letter-spacing:550.826717px;}
.ls37{letter-spacing:586.916455px;}
.ls2d{letter-spacing:660.446227px;}
.ls26{letter-spacing:758.869551px;}
.ls32{letter-spacing:798.245505px;}
.ls57{letter-spacing:803.472795px;}
.ls4c{letter-spacing:804.253452px;}
.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;}
}
.ws78{word-spacing:-798.305129px;}
.ws6f{word-spacing:-686.115858px;}
.ws74{word-spacing:-495.161610px;}
.ws6e{word-spacing:-342.798563px;}
.ws80{word-spacing:-329.786773px;}
.wsb9{word-spacing:-259.473049px;}
.ws6d{word-spacing:-226.161312px;}
.ws87{word-spacing:-172.377007px;}
.ws72{word-spacing:-81.219036px;}
.ws84{word-spacing:-64.901827px;}
.ws88{word-spacing:-59.701800px;}
.ws73{word-spacing:-52.813260px;}
.ws75{word-spacing:-45.717784px;}
.ws62{word-spacing:-9.922750px;}
.ws63{word-spacing:-9.582029px;}
.ws4{word-spacing:-2.624149px;}
.ws4c{word-spacing:-2.184798px;}
.ws49{word-spacing:-1.939718px;}
.ws47{word-spacing:-1.936729px;}
.ws7a{word-spacing:-0.437063px;}
.ws21{word-spacing:-0.065754px;}
.ws31{word-spacing:-0.059776px;}
.ws89{word-spacing:-0.059702px;}
.ws77{word-spacing:-0.059624px;}
.ws2{word-spacing:-0.047821px;}
.ws50{word-spacing:-0.040647px;}
.wsa9{word-spacing:-0.039846px;}
.ws9{word-spacing:-0.034864px;}
.ws0{word-spacing:0.000000px;}
.ws85{word-spacing:0.325092px;}
.ws4b{word-spacing:2.668981px;}
.ws52{word-spacing:6.397838px;}
.ws53{word-spacing:6.410032px;}
.ws48{word-spacing:6.422226px;}
.ws4d{word-spacing:6.450679px;}
.ws4f{word-spacing:6.479132px;}
.ws54{word-spacing:6.483196px;}
.ws4e{word-spacing:6.495391px;}
.ws51{word-spacing:6.507585px;}
.ws55{word-spacing:6.645784px;}
.ws4a{word-spacing:6.662043px;}
.wsdb{word-spacing:7.340554px;}
.wsd6{word-spacing:7.345336px;}
.wsdd{word-spacing:7.383593px;}
.wsdc{word-spacing:7.426632px;}
.wsd0{word-spacing:7.431414px;}
.wsb4{word-spacing:7.450543px;}
.wsd4{word-spacing:7.479236px;}
.wscf{word-spacing:7.484018px;}
.wsaf{word-spacing:7.493582px;}
.wsc2{word-spacing:7.498364px;}
.ws95{word-spacing:7.503146px;}
.ws97{word-spacing:7.507928px;}
.ws17{word-spacing:7.512711px;}
.ws10{word-spacing:7.522275px;}
.ws1b{word-spacing:7.527057px;}
.ws15{word-spacing:7.531839px;}
.ws11{word-spacing:7.536621px;}
.ws1a{word-spacing:7.541403px;}
.ws57{word-spacing:7.546185px;}
.ws9c{word-spacing:7.550967px;}
.wsb2{word-spacing:7.555750px;}
.ws8e{word-spacing:7.560532px;}
.ws96{word-spacing:7.565314px;}
.ws13{word-spacing:7.570096px;}
.ws93{word-spacing:7.574878px;}
.wsb6{word-spacing:7.579660px;}
.wsae{word-spacing:7.584442px;}
.ws9b{word-spacing:7.598789px;}
.wsc3{word-spacing:7.608353px;}
.wsbd{word-spacing:7.617917px;}
.wsd9{word-spacing:7.622699px;}
.ws1{word-spacing:7.627481px;}
.wsa3{word-spacing:7.632264px;}
.ws19{word-spacing:7.637046px;}
.wsce{word-spacing:7.641828px;}
.ws18{word-spacing:7.646610px;}
.ws56{word-spacing:7.651392px;}
.wsda{word-spacing:7.656174px;}
.ws91{word-spacing:7.660956px;}
.ws99{word-spacing:7.665738px;}
.wsa5{word-spacing:7.670520px;}
.ws12{word-spacing:7.680085px;}
.wsd8{word-spacing:7.684867px;}
.wsd5{word-spacing:7.689649px;}
.wsd7{word-spacing:7.694431px;}
.ws98{word-spacing:7.699213px;}
.ws9a{word-spacing:7.703995px;}
.ws92{word-spacing:7.708777px;}
.wsab{word-spacing:7.713560px;}
.ws14{word-spacing:7.737470px;}
.wsb5{word-spacing:7.751817px;}
.wsba{word-spacing:7.785291px;}
.wsde{word-spacing:7.790073px;}
.wsd1{word-spacing:7.813984px;}
.ws9d{word-spacing:7.818766px;}
.wsad{word-spacing:7.847459px;}
.wsb3{word-spacing:7.895280px;}
.wsb7{word-spacing:7.900062px;}
.wsac{word-spacing:7.923973px;}
.wsd3{word-spacing:7.947883px;}
.ws94{word-spacing:8.100911px;}
.ws3c{word-spacing:9.378792px;}
.ws41{word-spacing:9.384769px;}
.ws35{word-spacing:9.390747px;}
.ws5c{word-spacing:9.402702px;}
.wsc{word-spacing:9.408679px;}
.ws67{word-spacing:9.414657px;}
.ws58{word-spacing:9.420635px;}
.ws40{word-spacing:9.426612px;}
.ws65{word-spacing:9.438567px;}
.ws3e{word-spacing:9.450522px;}
.ws8{word-spacing:9.462477px;}
.wsc9{word-spacing:9.480410px;}
.ws37{word-spacing:9.486388px;}
.wsa{word-spacing:9.492365px;}
.ws3b{word-spacing:9.498343px;}
.wsd{word-spacing:9.510298px;}
.ws6c{word-spacing:9.516276px;}
.ws46{word-spacing:9.522253px;}
.ws5e{word-spacing:9.528231px;}
.ws39{word-spacing:9.534208px;}
.wsb{word-spacing:9.540186px;}
.ws3a{word-spacing:9.546163px;}
.wsaa{word-spacing:9.552141px;}
.ws36{word-spacing:9.558118px;}
.ws45{word-spacing:9.564096px;}
.ws43{word-spacing:9.570074px;}
.ws68{word-spacing:9.576051px;}
.ws42{word-spacing:9.588006px;}
.ws30{word-spacing:9.599961px;}
.ws66{word-spacing:9.605939px;}
.ws5b{word-spacing:9.611916px;}
.ws33{word-spacing:9.617894px;}
.ws3f{word-spacing:9.623872px;}
.ws7{word-spacing:9.635827px;}
.ws60{word-spacing:9.641804px;}
.ws44{word-spacing:9.647782px;}
.ws69{word-spacing:9.653759px;}
.ws6b{word-spacing:9.659737px;}
.wsc8{word-spacing:9.665715px;}
.ws38{word-spacing:9.671692px;}
.wsc7{word-spacing:9.689625px;}
.wsc5{word-spacing:9.695602px;}
.ws5d{word-spacing:9.719513px;}
.ws59{word-spacing:9.731468px;}
.ws8f{word-spacing:9.743423px;}
.ws16{word-spacing:9.750743px;}
.ws5a{word-spacing:9.755378px;}
.ws3d{word-spacing:9.767333px;}
.wsa8{word-spacing:9.779288px;}
.ws61{word-spacing:9.803198px;}
.wsca{word-spacing:9.821131px;}
.ws90{word-spacing:9.827109px;}
.wsc4{word-spacing:9.833086px;}
.wscc{word-spacing:9.839064px;}
.ws34{word-spacing:9.868952px;}
.wsb0{word-spacing:9.880907px;}
.wsc6{word-spacing:9.898839px;}
.ws32{word-spacing:9.910794px;}
.ws6a{word-spacing:9.922750px;}
.ws64{word-spacing:9.928727px;}
.ws5f{word-spacing:9.964593px;}
.wsb1{word-spacing:9.994480px;}
.ws22{word-spacing:10.329953px;}
.ws28{word-spacing:10.369406px;}
.ws1e{word-spacing:10.382557px;}
.ws2c{word-spacing:10.428584px;}
.ws25{word-spacing:10.454886px;}
.ws1f{word-spacing:10.461461px;}
.ws2d{word-spacing:10.474612px;}
.ws26{word-spacing:10.481188px;}
.ws20{word-spacing:10.494338px;}
.ws29{word-spacing:10.500914px;}
.ws1c{word-spacing:10.507489px;}
.ws27{word-spacing:10.533791px;}
.ws24{word-spacing:10.540366px;}
.ws2b{word-spacing:10.579819px;}
.ws2e{word-spacing:10.632422px;}
.ws1d{word-spacing:10.645573px;}
.ws2a{word-spacing:10.671874px;}
.ws23{word-spacing:10.685025px;}
.wse{word-spacing:11.180597px;}
.ws7b{word-spacing:11.188800px;}
.ws2f{word-spacing:11.319089px;}
.wscd{word-spacing:11.340608px;}
.wsf{word-spacing:11.362317px;}
.wscb{word-spacing:11.527107px;}
.ws7e{word-spacing:12.862080px;}
.ws5{word-spacing:17.140170px;}
.ws6{word-spacing:17.215488px;}
.ws83{word-spacing:22.967282px;}
.ws76{word-spacing:29.180181px;}
.ws7f{word-spacing:32.483749px;}
.ws81{word-spacing:33.104648px;}
.ws7c{word-spacing:36.688275px;}
.ws8a{word-spacing:55.737600px;}
.wsa2{word-spacing:119.471704px;}
.wsa0{word-spacing:123.536506px;}
.ws8c{word-spacing:124.743451px;}
.wsa6{word-spacing:131.039652px;}
.wsa1{word-spacing:131.360054px;}
.ws9f{word-spacing:135.104454px;}
.wsa7{word-spacing:136.467358px;}
.wsa4{word-spacing:136.472141px;}
.wsd2{word-spacing:156.552262px;}
.ws9e{word-spacing:162.888571px;}
.ws79{word-spacing:184.927387px;}
.wsbc{word-spacing:186.430948px;}
.ws82{word-spacing:193.165174px;}
.ws8b{word-spacing:194.359210px;}
.wsc1{word-spacing:236.848839px;}
.ws70{word-spacing:267.069612px;}
.wsb8{word-spacing:271.036215px;}
.wsbe{word-spacing:282.943694px;}
.wsc0{word-spacing:286.434642px;}
.wsbf{word-spacing:294.946815px;}
.wsbb{word-spacing:329.899330px;}
.ws86{word-spacing:333.870376px;}
.ws7d{word-spacing:403.072869px;}
.ws71{word-spacing:754.189036px;}
.ws8d{word-spacing:992.852874px;}
.ws3{word-spacing:1104.091083px;}
._9{margin-left:-1106.444028px;}
._c{margin-left:-1102.323137px;}
._8{margin-left:-940.485473px;}
._14{margin-left:-902.522618px;}
._1f{margin-left:-815.508677px;}
._b{margin-left:-710.973896px;}
._20{margin-left:-642.457040px;}
._15{margin-left:-263.122477px;}
._30{margin-left:-251.950774px;}
._1c{margin-left:-160.371749px;}
._1a{margin-left:-150.247526px;}
._11{margin-left:-139.228936px;}
._18{margin-left:-132.747764px;}
._7{margin-left:-125.926733px;}
._19{margin-left:-116.494153px;}
._12{margin-left:-111.461853px;}
._1e{margin-left:-84.484017px;}
._13{margin-left:-70.028858px;}
._1b{margin-left:-54.621913px;}
._35{margin-left:-17.651735px;}
._10{margin-left:-11.260861px;}
._5{margin-left:-9.922750px;}
._6{margin-left:-1.093893px;}
._4{width:1.028140px;}
._24{width:7.718342px;}
._2{width:8.784754px;}
._3{width:10.885137px;}
._1{width:12.400037px;}
._0{width:18.603487px;}
._16{width:37.125337px;}
._a{width:56.930904px;}
._34{width:75.130144px;}
._17{width:109.502888px;}
._1d{width:115.080717px;}
._29{width:119.519525px;}
._2a{width:137.093816px;}
._2d{width:147.977921px;}
._27{width:153.969918px;}
._e{width:156.506278px;}
._2e{width:165.423095px;}
._36{width:204.053060px;}
._25{width:212.579580px;}
._32{width:219.068917px;}
._28{width:224.487059px;}
._2c{width:227.978007px;}
._37{width:230.263860px;}
._2b{width:236.490180px;}
._38{width:242.266981px;}
._39{width:252.467243px;}
._26{width:257.488469px;}
._33{width:290.944181px;}
._2f{width:329.951934px;}
._31{width:340.984284px;}
._d{width:385.077293px;}
._23{width:548.030952px;}
._f{width:760.939242px;}
._21{width:804.356381px;}
._22{width:1717.154085px;}
.fc4{color:rgb(210,32,39);}
.fc3{color:rgb(47,122,181);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.095400px;}
.fse{font-size:29.887800px;}
.fs1c{font-size:31.876200px;}
.fs8{font-size:34.864200px;}
.fsd{font-size:39.846000px;}
.fsf{font-size:40.647000px;}
.fs13{font-size:41.625000px;}
.fs16{font-size:41.660400px;}
.fs1a{font-size:41.678400px;}
.fs17{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:43.831200px;}
.fs5{font-size:47.821200px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs12{font-size:59.624400px;}
.fs15{font-size:59.676000px;}
.fs19{font-size:59.701800px;}
.fs18{font-size:59.759400px;}
.fs6{font-size:59.775600px;}
.fsa{font-size:65.754000px;}
.fsc{font-size:71.730600px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:80.999400px;}
.fs14{font-size:81.069600px;}
.fs2{font-size:96.000000px;}
.fs10{font-size:96.749400px;}
.fs1b{font-size:96.874800px;}
.fs7{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.ya5{bottom:3.745350px;}
.ya3{bottom:9.325350px;}
.ycc{bottom:39.968550px;}
.y14{bottom:58.020000px;}
.y62{bottom:63.439350px;}
.yca{bottom:73.984200px;}
.ycb{bottom:76.450350px;}
.y13d{bottom:76.450896px;}
.yd5{bottom:76.451004px;}
.yc9{bottom:76.452237px;}
.y101{bottom:76.455600px;}
.y115{bottom:76.456543px;}
.y16f{bottom:77.470962px;}
.y12e{bottom:88.015338px;}
.y16e{bottom:92.352920px;}
.yc8{bottom:95.075325px;}
.y114{bottom:95.079632px;}
.y100{bottom:95.163868px;}
.y13c{bottom:95.755426px;}
.yd4{bottom:95.924400px;}
.yd2{bottom:95.925184px;}
.y12d{bottom:101.451900px;}
.yd3{bottom:102.557400px;}
.y16d{bottom:107.319760px;}
.yd0{bottom:112.847250px;}
.yc7{bottom:113.783593px;}
.yff{bottom:113.786957px;}
.y113{bottom:113.787900px;}
.y13b{bottom:115.143642px;}
.yd1{bottom:115.313400px;}
.ycf{bottom:115.314385px;}
.y16c{bottom:122.286600px;}
.y4d{bottom:126.113774px;}
.yc6{bottom:132.491862px;}
.yfe{bottom:132.495225px;}
.y112{bottom:132.496168px;}
.yce{bottom:134.022654px;}
.y13a{bottom:134.448172px;}
.y4b{bottom:143.206350px;}
.y4c{bottom:145.672350px;}
.y4a{bottom:145.678649px;}
.y16b{bottom:150.689700px;}
.yc5{bottom:151.114950px;}
.y111{bottom:151.119257px;}
.yfd{bottom:151.203493px;}
.ycd{bottom:153.496050px;}
.y139{bottom:153.836388px;}
.y49{bottom:165.322405px;}
.yfc{bottom:169.826582px;}
.y110{bottom:169.827525px;}
.y138{bottom:173.224604px;}
.y48{bottom:184.880982px;}
.yc4{bottom:188.532300px;}
.yfb{bottom:188.534850px;}
.y10f{bottom:188.535793px;}
.y137{bottom:192.529134px;}
.y16a{bottom:193.719600px;}
.ye6{bottom:199.079984px;}
.y47{bottom:204.439558px;}
.yfa{bottom:207.157938px;}
.y10e{bottom:207.158882px;}
.y136{bottom:211.237402px;}
.ye5{bottom:215.492220px;}
.y46{bottom:223.998134px;}
.yf9{bottom:225.866207px;}
.y10d{bottom:225.867150px;}
.y135{bottom:230.541932px;}
.y169{bottom:231.051900px;}
.ye4{bottom:231.904456px;}
.y45{bottom:243.556711px;}
.yc1{bottom:243.755107px;}
.yf8{bottom:244.574475px;}
.y10c{bottom:244.575418px;}
.ybf{bottom:245.163812px;}
.ybc{bottom:247.415531px;}
.ye3{bottom:248.401574px;}
.yc2{bottom:248.823789px;}
.y134{bottom:249.930148px;}
.yb9{bottom:253.330200px;}
.ybd{bottom:256.991100px;}
.yba{bottom:259.243950px;}
.yc0{bottom:263.186550px;}
.yf7{bottom:263.197563px;}
.y10b{bottom:263.198507px;}
.y44{bottom:263.200467px;}
.ye2{bottom:264.813810px;}
.ybb{bottom:268.536535px;}
.yc3{bottom:268.537324px;}
.y133{bottom:269.234678px;}
.ybe{bottom:273.606194px;}
.y168{bottom:276.633000px;}
.ye1{bottom:281.226046px;}
.yf6{bottom:281.905832px;}
.y10a{bottom:281.906775px;}
.y43{bottom:282.759043px;}
.y132{bottom:288.624388px;}
.ye0{bottom:297.723164px;}
.yb8{bottom:299.423840px;}
.yf5{bottom:300.614100px;}
.y109{bottom:300.615043px;}
.yf3{bottom:300.617262px;}
.y42{bottom:301.382132px;}
.yf4{bottom:307.247250px;}
.y131{bottom:308.012604px;}
.y167{bottom:313.965300px;}
.ydf{bottom:314.135400px;}
.yb7{bottom:314.815650px;}
.yb6{bottom:317.281800px;}
.y108{bottom:319.238132px;}
.yf2{bottom:319.240350px;}
.y41{bottom:321.025888px;}
.y130{bottom:327.317134px;}
.y107{bottom:337.946400px;}
.yf1{bottom:337.948618px;}
.yb2{bottom:339.094866px;}
.y40{bottom:340.584464px;}
.yde{bottom:341.688150px;}
.yb5{bottom:343.600859px;}
.yac{bottom:343.601335px;}
.ydd{bottom:343.727995px;}
.yb0{bottom:343.882950px;}
.yb3{bottom:345.853109px;}
.y12f{bottom:346.705350px;}
.yae{bottom:353.176200px;}
.yad{bottom:355.429754px;}
.yf0{bottom:356.656887px;}
.y166{bottom:359.547675px;}
.y3f{bottom:360.143041px;}
.yb1{bottom:360.215870px;}
.yaf{bottom:364.159500px;}
.yb4{bottom:364.721863px;}
.yab{bottom:366.411900px;}
.ydc{bottom:370.090627px;}
.yef{bottom:375.279975px;}
.y165{bottom:378.255943px;}
.y3e{bottom:379.701617px;}
.ydb{bottom:383.527188px;}
.yaa{bottom:391.860682px;}
.yee{bottom:393.988243px;}
.yda{bottom:396.963750px;}
.y164{bottom:396.964212px;}
.y3d{bottom:399.260193px;}
.y12b{bottom:399.514864px;}
.ya2{bottom:402.492000px;}
.y140{bottom:404.616888px;}
.ya7{bottom:406.237242px;}
.ya4{bottom:406.237350px;}
.ya8{bottom:409.549500px;}
.ya1{bottom:412.100426px;}
.ya9{bottom:412.100700px;}
.yed{bottom:412.696512px;}
.y163{bottom:415.587300px;}
.y12a{bottom:416.013178px;}
.ya6{bottom:417.937350px;}
.y13f{bottom:418.053450px;}
.y3c{bottom:418.903950px;}
.ya0{bottom:426.897600px;}
.y9f{bottom:429.448800px;}
.yec{bottom:431.319600px;}
.yea{bottom:431.320875px;}
.y129{bottom:432.425414px;}
.yeb{bottom:438.037650px;}
.y127{bottom:446.881800px;}
.y126{bottom:448.837400px;}
.y128{bottom:448.837650px;}
.ye9{bottom:450.029143px;}
.y162{bottom:453.004650px;}
.y9b{bottom:455.481122px;}
.y3b{bottom:456.236100px;}
.yd9{bottom:465.164988px;}
.y125{bottom:465.249636px;}
.y9c{bottom:465.606403px;}
.y98{bottom:468.418650px;}
.ye8{bottom:468.737412px;}
.y9a{bottom:468.981150px;}
.y99{bottom:471.231150px;}
.y9e{bottom:476.293622px;}
.y9d{bottom:477.418538px;}
.yd8{bottom:478.601550px;}
.y123{bottom:479.707050px;}
.y124{bottom:481.747950px;}
.y122{bottom:481.748578px;}
.ye7{bottom:487.360500px;}
.y160{bottom:496.034550px;}
.y121{bottom:498.160814px;}
.y161{bottom:498.585750px;}
.y15f{bottom:498.588300px;}
.y97{bottom:501.732309px;}
.y3a{bottom:511.598148px;}
.y11f{bottom:512.617200px;}
.y120{bottom:514.573050px;}
.y11e{bottom:514.573996px;}
.y96{bottom:517.209300px;}
.y15e{bottom:517.211388px;}
.y95{bottom:519.675450px;}
.y11d{bottom:531.071114px;}
.y39{bottom:531.751749px;}
.y1ac{bottom:532.261527px;}
.y15d{bottom:535.919657px;}
.y106{bottom:541.359271px;}
.y11b{bottom:545.527350px;}
.y1ab{bottom:547.143485px;}
.y11a{bottom:547.482418px;}
.y11c{bottom:547.483350px;}
.y37{bottom:549.184050px;}
.y91{bottom:550.840350px;}
.y38{bottom:551.905350px;}
.y36{bottom:551.912048px;}
.y90{bottom:553.091543px;}
.y8e{bottom:553.093034px;}
.y15c{bottom:554.627925px;}
.y105{bottom:554.880715px;}
.y8b{bottom:562.099950px;}
.y1aa{bottom:562.110325px;}
.y93{bottom:562.662530px;}
.y8c{bottom:564.914850px;}
.y104{bottom:568.317277px;}
.y94{bottom:569.981221px;}
.y35{bottom:572.151130px;}
.y15b{bottom:573.251013px;}
.y92{bottom:573.641087px;}
.y8f{bottom:574.203419px;}
.y8d{bottom:575.893742px;}
.y119{bottom:577.076568px;}
.y1a9{bottom:577.077165px;}
.y103{bottom:581.753838px;}
.y1a8{bottom:591.959122px;}
.y15a{bottom:591.959282px;}
.y34{bottom:592.304731px;}
.y102{bottom:595.190400px;}
.y89{bottom:598.591950px;}
.y8a{bottom:601.058100px;}
.y88{bottom:601.058259px;}
.y118{bottom:603.439200px;}
.y1a7{bottom:606.925962px;}
.y159{bottom:610.667550px;}
.y33{bottom:612.458332px;}
.y86{bottom:619.001400px;}
.y1a6{bottom:621.892802px;}
.y87{bottom:625.634550px;}
.y32{bottom:632.611933px;}
.y1a5{bottom:636.859643px;}
.y158{bottom:647.999850px;}
.y82{bottom:649.234500px;}
.y1a4{bottom:651.742107px;}
.y31{bottom:652.851014px;}
.y80{bottom:653.171266px;}
.y84{bottom:653.453194px;}
.y7e{bottom:659.078100px;}
.y117{bottom:660.840438px;}
.y83{bottom:662.734528px;}
.y7f{bottom:664.984350px;}
.y1a3{bottom:666.708947px;}
.y30{bottom:673.004615px;}
.y116{bottom:674.277000px;}
.y81{bottom:678.484200px;}
.y85{bottom:679.328334px;}
.y1a2{bottom:681.675787px;}
.y156{bottom:691.114800px;}
.y2f{bottom:693.158216px;}
.y157{bottom:693.580950px;}
.y155{bottom:693.581282px;}
.y1a1{bottom:696.642627px;}
.y7d{bottom:703.360500px;}
.y7b{bottom:703.364937px;}
.y7c{bottom:709.993500px;}
.y1a0{bottom:711.524585px;}
.y154{bottom:712.289550px;}
.y152{bottom:712.290162px;}
.y2e{bottom:713.311817px;}
.y153{bottom:718.922700px;}
.y61{bottom:720.877230px;}
.y7a{bottom:721.988025px;}
.y19f{bottom:726.491425px;}
.y150{bottom:728.447100px;}
.y151{bottom:730.913250px;}
.y14f{bottom:730.913913px;}
.y60{bottom:732.782736px;}
.y2d{bottom:733.550898px;}
.y79{bottom:740.696293px;}
.y19e{bottom:741.458265px;}
.y5f{bottom:744.773601px;}
.y14e{bottom:749.622182px;}
.y2c{bottom:753.704499px;}
.y19d{bottom:756.425105px;}
.y5e{bottom:756.679108px;}
.y78{bottom:759.404562px;}
.y14c{bottom:765.779400px;}
.y14d{bottom:768.330450px;}
.y14b{bottom:768.335037px;}
.y5d{bottom:768.669973px;}
.y19c{bottom:771.307062px;}
.y2b{bottom:773.858100px;}
.y77{bottom:778.027650px;}
.y5c{bottom:780.575479px;}
.y19b{bottom:786.273902px;}
.y14a{bottom:786.958125px;}
.y76{bottom:796.735918px;}
.y5b{bottom:798.264037px;}
.y19a{bottom:801.240743px;}
.y149{bottom:805.666393px;}
.y5a{bottom:810.169544px;}
.y75{bottom:815.444187px;}
.y199{bottom:816.123217px;}
.y59{bottom:822.160409px;}
.y148{bottom:824.289482px;}
.y2a{bottom:827.688477px;}
.y198{bottom:831.090057px;}
.y74{bottom:834.067275px;}
.y58{bottom:834.151274px;}
.y147{bottom:842.997750px;}
.y57{bottom:846.056780px;}
.y197{bottom:846.056897px;}
.y12c{bottom:851.158800px;}
.y73{bottom:852.775543px;}
.y29{bottom:853.030126px;}
.y196{bottom:861.023737px;}
.y146{bottom:861.706018px;}
.yd7{bottom:862.978938px;}
.y13e{bottom:865.190400px;}
.y72{bottom:871.483812px;}
.y28{bottom:873.949510px;}
.y195{bottom:875.905695px;}
.yd6{bottom:876.415500px;}
.y145{bottom:880.329107px;}
.y56{bottom:881.943000px;}
.y27{bottom:888.916350px;}
.y71{bottom:890.106900px;}
.y6f{bottom:890.109450px;}
.y194{bottom:890.872535px;}
.y26{bottom:893.423400px;}
.y55{bottom:893.933550px;}
.y70{bottom:896.740050px;}
.y144{bottom:899.037375px;}
.y7{bottom:903.300000px;}
.y25{bottom:903.883350px;}
.y193{bottom:905.839375px;}
.y24{bottom:908.390400px;}
.y6e{bottom:908.817718px;}
.y13{bottom:910.260000px;}
.y54{bottom:913.322700px;}
.y143{bottom:917.745643px;}
.y23{bottom:918.850200px;}
.y192{bottom:920.806215px;}
.y12{bottom:922.260000px;}
.y22{bottom:923.357250px;}
.y53{bottom:925.313250px;}
.y6d{bottom:927.525987px;}
.y6{bottom:932.400000px;}
.y21{bottom:933.732000px;}
.y11{bottom:934.260000px;}
.y191{bottom:935.688172px;}
.y142{bottom:936.368732px;}
.y20{bottom:938.239200px;}
.y52{bottom:944.702100px;}
.y6c{bottom:946.149075px;}
.y1f{bottom:948.699160px;}
.y190{bottom:950.655012px;}
.y141{bottom:955.077000px;}
.y51{bottom:956.692800px;}
.y10{bottom:957.510000px;}
.y1e{bottom:963.666000px;}
.y6b{bottom:964.857343px;}
.y18f{bottom:965.621852px;}
.y1d{bottom:968.173050px;}
.yf{bottom:969.510000px;}
.y5{bottom:972.750000px;}
.y50{bottom:976.081650px;}
.y18e{bottom:980.503810px;}
.ye{bottom:981.510000px;}
.y1c{bottom:983.054850px;}
.y1a{bottom:983.055159px;}
.y6a{bottom:983.565612px;}
.y4f{bottom:988.072200px;}
.y1b{bottom:988.922550px;}
.yd{bottom:993.510000px;}
.y18d{bottom:995.471157px;}
.y18{bottom:1000.998300px;}
.y69{bottom:1002.188700px;}
.y19{bottom:1006.780950px;}
.y18c{bottom:1010.437997px;}
.y4{bottom:1011.165000px;}
.y182{bottom:1014.265060px;}
.yc{bottom:1016.760000px;}
.y4e{bottom:1023.703650px;}
.y18b{bottom:1025.404837px;}
.yb{bottom:1028.760000px;}
.y181{bottom:1030.677296px;}
.y68{bottom:1039.606050px;}
.y3{bottom:1039.965000px;}
.y18a{bottom:1040.286795px;}
.ya{bottom:1040.760000px;}
.y17{bottom:1041.391800px;}
.y180{bottom:1047.089532px;}
.y9{bottom:1052.760000px;}
.y189{bottom:1055.253635px;}
.y17f{bottom:1063.586650px;}
.y188{bottom:1070.220475px;}
.y8{bottom:1078.260000px;}
.y2{bottom:1081.485000px;}
.y16{bottom:1081.700550px;}
.y187{bottom:1085.187315px;}
.y67{bottom:1085.189037px;}
.y178{bottom:1091.139900px;}
.y176{bottom:1093.180370px;}
.y179{bottom:1093.180800px;}
.y17d{bottom:1093.181264px;}
.y17e{bottom:1098.453300px;}
.y186{bottom:1100.069272px;}
.y66{bottom:1103.812125px;}
.y17b{bottom:1107.552450px;}
.y177{bottom:1109.592606px;}
.y17a{bottom:1109.593036px;}
.y17c{bottom:1109.593500px;}
.y185{bottom:1115.036112px;}
.y65{bottom:1122.520393px;}
.y184{bottom:1130.002952px;}
.y175{bottom:1135.955238px;}
.y64{bottom:1141.228662px;}
.y183{bottom:1144.884910px;}
.y172{bottom:1147.435950px;}
.y171{bottom:1149.391638px;}
.y173{bottom:1149.391800px;}
.y174{bottom:1154.749350px;}
.y63{bottom:1159.851750px;}
.y170{bottom:1162.828200px;}
.y1{bottom:1191.570000px;}
.y15{bottom:1212.150900px;}
.h15{height:20.234041px;}
.hc{height:21.947274px;}
.h3c{height:22.632102px;}
.h28{height:23.725500px;}
.h3e{height:23.811521px;}
.h39{height:25.819722px;}
.hb{height:28.240002px;}
.h1c{height:28.290660px;}
.h1b{height:29.553750px;}
.h22{height:29.578884px;}
.h31{height:29.591664px;}
.h2a{height:29.649600px;}
.h3a{height:29.764962px;}
.h10{height:31.120152px;}
.h13{height:32.275260px;}
.h14{height:32.374952px;}
.h16{height:32.924070px;}
.h3d{height:33.761767px;}
.hd{height:33.953052px;}
.h7{height:38.735172px;}
.h1a{height:39.543750px;}
.h8{height:40.468081px;}
.h27{height:41.140836px;}
.h23{height:41.176440px;}
.h35{height:41.194242px;}
.h1e{height:42.131256px;}
.h2c{height:42.149471px;}
.ha{height:42.201574px;}
.h26{height:42.333324px;}
.h20{height:42.369960px;}
.h29{height:42.429174px;}
.h3b{height:42.440676px;}
.h5{height:43.804688px;}
.h32{height:44.776350px;}
.he{height:46.685340px;}
.h12{height:48.418236px;}
.h4{height:50.062500px;}
.h11{height:50.928726px;}
.hf{height:53.260740px;}
.h2{height:56.320312px;}
.h25{height:56.643180px;}
.h2e{height:56.716710px;}
.h2b{height:71.872068px;}
.h3{height:72.000000px;}
.h9{height:73.273421px;}
.h1{height:75.093750px;}
.h33{height:76.060093px;}
.h24{height:76.949430px;}
.h1d{height:77.016120px;}
.h18{height:79.216978px;}
.h2f{height:79.558619px;}
.h36{height:88.507918px;}
.h21{height:89.657222px;}
.h30{height:89.701954px;}
.h17{height:91.911930px;}
.h37{height:92.031060px;}
.h2d{height:93.887051px;}
.h19{height:103.895517px;}
.h1f{height:103.979462px;}
.h38{height:126.872295px;}
.h34{height:133.511135px;}
.h6{height:1262.835000px;}
.h0{height:1263.000000px;}
.w3{width:46.090500px;}
.w0{width:892.500000px;}
.w1{width:892.914000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:38.339400px;}
.x1{left:58.500000px;}
.x1f{left:63.694500px;}
.x6{left:178.837800px;}
.x84{left:184.705500px;}
.x43{left:186.321150px;}
.x38{left:188.192100px;}
.x1b{left:190.658250px;}
.x39{left:193.634550px;}
.x1c{left:201.125263px;}
.x77{left:213.788850px;}
.x5{left:216.450000px;}
.x82{left:224.418750px;}
.x4c{left:227.820450px;}
.x4d{left:233.092800px;}
.x15{left:255.373200px;}
.x16{left:260.050350px;}
.x1d{left:266.173200px;}
.x7{left:268.299150px;}
.x1e{left:271.530600px;}
.x8{left:272.976300px;}
.x71{left:292.195200px;}
.x57{left:294.151500px;}
.x58{left:300.271050px;}
.x5a{left:303.871050px;}
.x5b{left:310.440942px;}
.x7e{left:312.179400px;}
.x7f{left:318.557400px;}
.x85{left:321.703800px;}
.x6f{left:335.990400px;}
.x70{left:352.403100px;}
.x9{left:361.842450px;}
.x83{left:366.859800px;}
.x17{left:368.985750px;}
.x50{left:371.420700px;}
.x45{left:372.715500px;}
.x51{left:378.170700px;}
.x3b{left:379.576950px;}
.xa{left:380.636100px;}
.x4a{left:382.849576px;}
.x6a{left:388.799850px;}
.x5f{left:389.996786px;}
.x6b{left:394.157400px;}
.x4b{left:397.768350px;}
.x6d{left:400.365300px;}
.x79{left:402.745686px;}
.x6e{left:405.722700px;}
.x5d{left:408.302850px;}
.x7a{left:412.270800px;}
.x78{left:414.907050px;}
.x7b{left:416.607750px;}
.x3a{left:419.795550px;}
.x89{left:420.858666px;}
.x75{left:422.645550px;}
.x8a{left:427.067053px;}
.x3f{left:428.514178px;}
.x3d{left:434.420400px;}
.x76{left:439.058100px;}
.x49{left:440.836339px;}
.x6c{left:442.799850px;}
.x4f{left:443.982900px;}
.x55{left:448.072350px;}
.x48{left:452.659765px;}
.x69{left:458.128800px;}
.x61{left:459.837939px;}
.x56{left:461.338500px;}
.x40{left:463.107675px;}
.xb{left:464.825100px;}
.x18{left:467.121150px;}
.xc{left:469.502250px;}
.x3c{left:470.700921px;}
.x52{left:472.389928px;}
.x44{left:473.771400px;}
.x53{left:475.764675px;}
.x64{left:480.094650px;}
.x20{left:481.662900px;}
.x5e{left:483.210698px;}
.x21{left:487.020300px;}
.x19{left:489.231300px;}
.x47{left:496.010339px;}
.x46{left:497.417215px;}
.x86{left:500.286450px;}
.x22{left:504.878700px;}
.x67{left:506.003800px;}
.x23{left:510.236100px;}
.x65{left:513.607036px;}
.x87{left:516.273900px;}
.x54{left:517.390716px;}
.x60{left:521.229300px;}
.x88{left:522.736950px;}
.x24{left:524.522700px;}
.x25{left:529.965300px;}
.x63{left:531.086067px;}
.xd{left:534.982500px;}
.xe{left:539.659650px;}
.x26{left:541.785750px;}
.x27{left:547.143150px;}
.x8b{left:558.028200px;}
.x28{left:564.916350px;}
.x3e{left:568.014122px;}
.x29{left:570.273900px;}
.x41{left:571.974600px;}
.x66{left:573.308836px;}
.x42{left:577.332150px;}
.x68{left:580.632134px;}
.x2a{left:584.645550px;}
.x2b{left:590.002950px;}
.x1a{left:598.421850px;}
.x2c{left:601.823400px;}
.x62{left:604.023756px;}
.x2{left:605.490000px;}
.x2d{left:607.180950px;}
.x4e{left:616.705350px;}
.x2e{left:624.954150px;}
.x8c{left:625.974044px;}
.x4{left:627.990000px;}
.x2f{left:630.396600px;}
.xf{left:631.842300px;}
.x3{left:634.410000px;}
.x10{left:636.519450px;}
.x8d{left:641.451750px;}
.x30{left:644.683350px;}
.x31{left:650.040750px;}
.x32{left:661.861200px;}
.x80{left:666.198300px;}
.x33{left:669.684900px;}
.x81{left:672.491250px;}
.x73{left:673.766700px;}
.x74{left:690.179400px;}
.x72{left:695.536800px;}
.x34{left:706.166700px;}
.x35{left:711.524250px;}
.x11{left:723.769800px;}
.x36{left:725.810850px;}
.x5c{left:727.256400px;}
.x12{left:728.446950px;}
.x37{left:733.549500px;}
.x7c{left:750.557250px;}
.x7d{left:756.935250px;}
.x13{left:812.635950px;}
.x14{left:817.398150px;}
@media print{
.v7{vertical-align:-42.033122pt;}
.v5{vertical-align:-32.997468pt;}
.vb{vertical-align:-29.999600pt;}
.v9{vertical-align:-20.000000pt;}
.v6{vertical-align:-18.000833pt;}
.v4{vertical-align:-14.999467pt;}
.v8{vertical-align:-6.006504pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.000000pt;}
.va{vertical-align:11.999100pt;}
.vc{vertical-align:20.847851pt;}
.v2{vertical-align:32.997468pt;}
.v3{vertical-align:42.002077pt;}
.vd{vertical-align:51.067593pt;}
.ls54{letter-spacing:-0.440467pt;}
.ls5e{letter-spacing:-0.382092pt;}
.ls4d{letter-spacing:-0.351799pt;}
.ls46{letter-spacing:-0.351500pt;}
.ls58{letter-spacing:-0.326018pt;}
.ls55{letter-spacing:-0.260035pt;}
.ls51{letter-spacing:-0.063104pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.021254pt;}
.ls20{letter-spacing:0.031880pt;}
.lsf{letter-spacing:0.042507pt;}
.ls18{letter-spacing:0.053134pt;}
.ls17{letter-spacing:0.074387pt;}
.ls71{letter-spacing:0.079701pt;}
.ls63{letter-spacing:0.089266pt;}
.lsa{letter-spacing:0.111051pt;}
.ls29{letter-spacing:0.111581pt;}
.ls62{letter-spacing:0.116895pt;}
.ls6{letter-spacing:0.117764pt;}
.ls8{letter-spacing:0.119022pt;}
.lsc{letter-spacing:0.127521pt;}
.ls9{letter-spacing:0.128586pt;}
.ls61{letter-spacing:0.138133pt;}
.ls35{letter-spacing:0.138148pt;}
.ls65{letter-spacing:0.157279pt;}
.ls11{letter-spacing:0.158975pt;}
.ls82{letter-spacing:0.164715pt;}
.ls86{letter-spacing:0.178532pt;}
.ls6d{letter-spacing:0.185969pt;}
.ls84{letter-spacing:0.199786pt;}
.lsd{letter-spacing:0.207222pt;}
.ls7{letter-spacing:0.212539pt;}
.ls2{letter-spacing:0.221040pt;}
.ls66{letter-spacing:0.225291pt;}
.ls1d{letter-spacing:0.228476pt;}
.ls5{letter-spacing:0.229540pt;}
.ls88{letter-spacing:0.233793pt;}
.ls3b{letter-spacing:0.239102pt;}
.ls6e{letter-spacing:0.249729pt;}
.ls69{letter-spacing:0.270983pt;}
.ls70{letter-spacing:0.272049pt;}
.ls1a{letter-spacing:0.281609pt;}
.ls64{letter-spacing:0.297554pt;}
.ls33{letter-spacing:0.351500pt;}
.ls60{letter-spacing:0.552592pt;}
.ls13{letter-spacing:1.694970pt;}
.ls14{letter-spacing:1.697627pt;}
.ls8c{letter-spacing:1.815080pt;}
.ls15{letter-spacing:1.894222pt;}
.ls16{letter-spacing:1.915476pt;}
.ls4{letter-spacing:2.279443pt;}
.ls12{letter-spacing:5.903751pt;}
.ls72{letter-spacing:6.571696pt;}
.ls77{letter-spacing:6.575946pt;}
.ls7a{letter-spacing:6.643959pt;}
.ls7c{letter-spacing:6.648209pt;}
.ls6f{letter-spacing:6.665213pt;}
.ls1{letter-spacing:6.728974pt;}
.ls74{letter-spacing:6.741727pt;}
.ls67{letter-spacing:6.771482pt;}
.ls75{letter-spacing:6.809739pt;}
.ls3{letter-spacing:6.873500pt;}
.ls73{letter-spacing:6.877751pt;}
.ls78{letter-spacing:6.950014pt;}
.ls8a{letter-spacing:7.030779pt;}
.ls10{letter-spacing:8.288883pt;}
.ls1f{letter-spacing:8.310137pt;}
.ls6c{letter-spacing:8.331390pt;}
.ls3c{letter-spacing:8.352644pt;}
.ls1c{letter-spacing:8.411091pt;}
.ls19{letter-spacing:8.464225pt;}
.ls2f{letter-spacing:8.485479pt;}
.ls6a{letter-spacing:8.517359pt;}
.ls6b{letter-spacing:8.538612pt;}
.lse{letter-spacing:8.591746pt;}
.ls1b{letter-spacing:8.602373pt;}
.ls28{letter-spacing:8.692701pt;}
.lsb{letter-spacing:8.698014pt;}
.ls83{letter-spacing:8.713954pt;}
.ls1e{letter-spacing:8.767088pt;}
.ls80{letter-spacing:8.788342pt;}
.ls81{letter-spacing:8.820222pt;}
.ls85{letter-spacing:18.665146pt;}
.ls8b{letter-spacing:18.665532pt;}
.ls4a{letter-spacing:24.491030pt;}
.ls5b{letter-spacing:25.382552pt;}
.ls48{letter-spacing:26.351335pt;}
.ls2e{letter-spacing:31.110135pt;}
.ls27{letter-spacing:35.240267pt;}
.ls47{letter-spacing:35.350644pt;}
.ls4e{letter-spacing:35.381237pt;}
.ls5f{letter-spacing:35.396534pt;}
.ls2a{letter-spacing:36.065522pt;}
.ls3d{letter-spacing:54.103098pt;}
.ls42{letter-spacing:73.080965pt;}
.ls49{letter-spacing:73.144210pt;}
.ls5d{letter-spacing:73.175833pt;}
.ls56{letter-spacing:74.656438pt;}
.ls38{letter-spacing:75.197734pt;}
.ls24{letter-spacing:82.999467pt;}
.ls25{letter-spacing:86.489830pt;}
.ls23{letter-spacing:98.033113pt;}
.ls68{letter-spacing:106.350098pt;}
.ls39{letter-spacing:107.123603pt;}
.ls36{letter-spacing:109.448917pt;}
.ls4f{letter-spacing:123.547057pt;}
.ls5c{letter-spacing:125.193348pt;}
.ls89{letter-spacing:129.890881pt;}
.ls59{letter-spacing:132.522076pt;}
.ls53{letter-spacing:134.941988pt;}
.ls43{letter-spacing:148.032810pt;}
.ls7d{letter-spacing:159.489015pt;}
.ls7b{letter-spacing:166.217990pt;}
.ls50{letter-spacing:167.902310pt;}
.ls87{letter-spacing:186.778980pt;}
.ls2b{letter-spacing:215.677021pt;}
.ls76{letter-spacing:216.712926pt;}
.ls5a{letter-spacing:220.636625pt;}
.ls22{letter-spacing:230.097185pt;}
.ls7e{letter-spacing:230.600203pt;}
.ls34{letter-spacing:230.713500pt;}
.ls52{letter-spacing:240.075532pt;}
.ls3f{letter-spacing:245.806904pt;}
.ls40{letter-spacing:248.879557pt;}
.ls45{letter-spacing:304.656834pt;}
.ls31{letter-spacing:310.215400pt;}
.ls30{letter-spacing:315.765966pt;}
.ls79{letter-spacing:332.138425pt;}
.ls3e{letter-spacing:351.216402pt;}
.ls21{letter-spacing:383.706092pt;}
.ls4b{letter-spacing:387.098320pt;}
.ls44{letter-spacing:415.759616pt;}
.ls2c{letter-spacing:472.925669pt;}
.ls3a{letter-spacing:481.615747pt;}
.ls41{letter-spacing:489.623749pt;}
.ls37{letter-spacing:521.703516pt;}
.ls2d{letter-spacing:587.063313pt;}
.ls26{letter-spacing:674.550712pt;}
.ls32{letter-spacing:709.551560pt;}
.ls57{letter-spacing:714.198040pt;}
.ls4c{letter-spacing:714.891957pt;}
.ws78{word-spacing:-709.604559pt;}
.ws6f{word-spacing:-609.880763pt;}
.ws74{word-spacing:-440.143653pt;}
.ws6e{word-spacing:-304.709834pt;}
.ws80{word-spacing:-293.143798pt;}
.wsb9{word-spacing:-230.642710pt;}
.ws6d{word-spacing:-201.032277pt;}
.ws87{word-spacing:-153.224006pt;}
.ws72{word-spacing:-72.194699pt;}
.ws84{word-spacing:-57.690513pt;}
.ws88{word-spacing:-53.068267pt;}
.ws73{word-spacing:-46.945120pt;}
.ws75{word-spacing:-40.638030pt;}
.ws62{word-spacing:-8.820222pt;}
.ws63{word-spacing:-8.517359pt;}
.ws4{word-spacing:-2.332577pt;}
.ws4c{word-spacing:-1.942043pt;}
.ws49{word-spacing:-1.724194pt;}
.ws47{word-spacing:-1.721537pt;}
.ws7a{word-spacing:-0.388500pt;}
.ws21{word-spacing:-0.058448pt;}
.ws31{word-spacing:-0.053134pt;}
.ws89{word-spacing:-0.053068pt;}
.ws77{word-spacing:-0.052999pt;}
.ws2{word-spacing:-0.042508pt;}
.ws50{word-spacing:-0.036131pt;}
.wsa9{word-spacing:-0.035419pt;}
.ws9{word-spacing:-0.030990pt;}
.ws0{word-spacing:0.000000pt;}
.ws85{word-spacing:0.288970pt;}
.ws4b{word-spacing:2.372427pt;}
.ws52{word-spacing:5.686967pt;}
.ws53{word-spacing:5.697806pt;}
.ws48{word-spacing:5.708645pt;}
.ws4d{word-spacing:5.733937pt;}
.ws4f{word-spacing:5.759228pt;}
.ws54{word-spacing:5.762841pt;}
.ws4e{word-spacing:5.773681pt;}
.ws51{word-spacing:5.784520pt;}
.ws55{word-spacing:5.907364pt;}
.ws4a{word-spacing:5.921816pt;}
.wsdb{word-spacing:6.524937pt;}
.wsd6{word-spacing:6.529188pt;}
.wsdd{word-spacing:6.563194pt;}
.wsdc{word-spacing:6.601451pt;}
.wsd0{word-spacing:6.605702pt;}
.wsb4{word-spacing:6.622705pt;}
.wsd4{word-spacing:6.648209pt;}
.wscf{word-spacing:6.652460pt;}
.wsaf{word-spacing:6.660962pt;}
.wsc2{word-spacing:6.665213pt;}
.ws95{word-spacing:6.669463pt;}
.ws97{word-spacing:6.673714pt;}
.ws17{word-spacing:6.677965pt;}
.ws10{word-spacing:6.686466pt;}
.ws1b{word-spacing:6.690717pt;}
.ws15{word-spacing:6.694968pt;}
.ws11{word-spacing:6.699219pt;}
.ws1a{word-spacing:6.703470pt;}
.ws57{word-spacing:6.707720pt;}
.ws9c{word-spacing:6.711971pt;}
.wsb2{word-spacing:6.716222pt;}
.ws8e{word-spacing:6.720473pt;}
.ws96{word-spacing:6.724723pt;}
.ws13{word-spacing:6.728974pt;}
.ws93{word-spacing:6.733225pt;}
.wsb6{word-spacing:6.737476pt;}
.wsae{word-spacing:6.741727pt;}
.ws9b{word-spacing:6.754479pt;}
.wsc3{word-spacing:6.762980pt;}
.wsbd{word-spacing:6.771482pt;}
.wsd9{word-spacing:6.775733pt;}
.ws1{word-spacing:6.779983pt;}
.wsa3{word-spacing:6.784234pt;}
.ws19{word-spacing:6.788485pt;}
.wsce{word-spacing:6.792736pt;}
.ws18{word-spacing:6.796987pt;}
.ws56{word-spacing:6.801237pt;}
.wsda{word-spacing:6.805488pt;}
.ws91{word-spacing:6.809739pt;}
.ws99{word-spacing:6.813990pt;}
.wsa5{word-spacing:6.818240pt;}
.ws12{word-spacing:6.826742pt;}
.wsd8{word-spacing:6.830993pt;}
.wsd5{word-spacing:6.835244pt;}
.wsd7{word-spacing:6.839494pt;}
.ws98{word-spacing:6.843745pt;}
.ws9a{word-spacing:6.847996pt;}
.ws92{word-spacing:6.852247pt;}
.wsab{word-spacing:6.856497pt;}
.ws14{word-spacing:6.877751pt;}
.wsb5{word-spacing:6.890504pt;}
.wsba{word-spacing:6.920259pt;}
.wsde{word-spacing:6.924510pt;}
.wsd1{word-spacing:6.945764pt;}
.ws9d{word-spacing:6.950014pt;}
.wsad{word-spacing:6.975519pt;}
.wsb3{word-spacing:7.018027pt;}
.wsb7{word-spacing:7.022278pt;}
.wsac{word-spacing:7.043531pt;}
.wsd3{word-spacing:7.064785pt;}
.ws94{word-spacing:7.200810pt;}
.ws3c{word-spacing:8.336704pt;}
.ws41{word-spacing:8.342017pt;}
.ws35{word-spacing:8.347330pt;}
.ws5c{word-spacing:8.357957pt;}
.wsc{word-spacing:8.363271pt;}
.ws67{word-spacing:8.368584pt;}
.ws58{word-spacing:8.373897pt;}
.ws40{word-spacing:8.379211pt;}
.ws65{word-spacing:8.389838pt;}
.ws3e{word-spacing:8.400464pt;}
.ws8{word-spacing:8.411091pt;}
.wsc9{word-spacing:8.427031pt;}
.ws37{word-spacing:8.432345pt;}
.wsa{word-spacing:8.437658pt;}
.ws3b{word-spacing:8.442971pt;}
.wsd{word-spacing:8.453598pt;}
.ws6c{word-spacing:8.458912pt;}
.ws46{word-spacing:8.464225pt;}
.ws5e{word-spacing:8.469538pt;}
.ws39{word-spacing:8.474852pt;}
.wsb{word-spacing:8.480165pt;}
.ws3a{word-spacing:8.485479pt;}
.wsaa{word-spacing:8.490792pt;}
.ws36{word-spacing:8.496105pt;}
.ws45{word-spacing:8.501419pt;}
.ws43{word-spacing:8.506732pt;}
.ws68{word-spacing:8.512045pt;}
.ws42{word-spacing:8.522672pt;}
.ws30{word-spacing:8.533299pt;}
.ws66{word-spacing:8.538612pt;}
.ws5b{word-spacing:8.543926pt;}
.ws33{word-spacing:8.549239pt;}
.ws3f{word-spacing:8.554553pt;}
.ws7{word-spacing:8.565179pt;}
.ws60{word-spacing:8.570493pt;}
.ws44{word-spacing:8.575806pt;}
.ws69{word-spacing:8.581119pt;}
.ws6b{word-spacing:8.586433pt;}
.wsc8{word-spacing:8.591746pt;}
.ws38{word-spacing:8.597060pt;}
.wsc7{word-spacing:8.613000pt;}
.wsc5{word-spacing:8.618313pt;}
.ws5d{word-spacing:8.639567pt;}
.ws59{word-spacing:8.650193pt;}
.ws8f{word-spacing:8.660820pt;}
.ws16{word-spacing:8.667327pt;}
.ws5a{word-spacing:8.671447pt;}
.ws3d{word-spacing:8.682074pt;}
.wsa8{word-spacing:8.692701pt;}
.ws61{word-spacing:8.713954pt;}
.wsca{word-spacing:8.729894pt;}
.ws90{word-spacing:8.735208pt;}
.wsc4{word-spacing:8.740521pt;}
.wscc{word-spacing:8.745834pt;}
.ws34{word-spacing:8.772401pt;}
.wsb0{word-spacing:8.783028pt;}
.wsc6{word-spacing:8.798968pt;}
.ws32{word-spacing:8.809595pt;}
.ws6a{word-spacing:8.820222pt;}
.ws64{word-spacing:8.825535pt;}
.ws5f{word-spacing:8.857416pt;}
.wsb1{word-spacing:8.883983pt;}
.ws22{word-spacing:9.182181pt;}
.ws28{word-spacing:9.217250pt;}
.ws1e{word-spacing:9.228939pt;}
.ws2c{word-spacing:9.269853pt;}
.ws25{word-spacing:9.293232pt;}
.ws1f{word-spacing:9.299077pt;}
.ws2d{word-spacing:9.310766pt;}
.ws26{word-spacing:9.316611pt;}
.ws20{word-spacing:9.328301pt;}
.ws29{word-spacing:9.334146pt;}
.ws1c{word-spacing:9.339990pt;}
.ws27{word-spacing:9.363370pt;}
.ws24{word-spacing:9.369214pt;}
.ws2b{word-spacing:9.404283pt;}
.ws2e{word-spacing:9.451042pt;}
.ws1d{word-spacing:9.462731pt;}
.ws2a{word-spacing:9.486110pt;}
.ws23{word-spacing:9.497800pt;}
.wse{word-spacing:9.938308pt;}
.ws7b{word-spacing:9.945600pt;}
.ws2f{word-spacing:10.061412pt;}
.wscd{word-spacing:10.080540pt;}
.wsf{word-spacing:10.099837pt;}
.wscb{word-spacing:10.246318pt;}
.ws7e{word-spacing:11.432960pt;}
.ws5{word-spacing:15.235707pt;}
.ws6{word-spacing:15.302656pt;}
.ws83{word-spacing:20.415362pt;}
.ws76{word-spacing:25.937939pt;}
.ws7f{word-spacing:28.874444pt;}
.ws81{word-spacing:29.426354pt;}
.ws7c{word-spacing:32.611800pt;}
.ws8a{word-spacing:49.544534pt;}
.wsa2{word-spacing:106.197070pt;}
.wsa0{word-spacing:109.810228pt;}
.ws8c{word-spacing:110.883068pt;}
.wsa6{word-spacing:116.479691pt;}
.wsa1{word-spacing:116.764493pt;}
.ws9f{word-spacing:120.092848pt;}
.wsa7{word-spacing:121.304319pt;}
.wsa4{word-spacing:121.308569pt;}
.wsd2{word-spacing:139.157567pt;}
.ws9e{word-spacing:144.789841pt;}
.ws79{word-spacing:164.379900pt;}
.wsbc{word-spacing:165.716398pt;}
.ws82{word-spacing:171.702377pt;}
.ws8b{word-spacing:172.763742pt;}
.wsc1{word-spacing:210.532302pt;}
.ws70{word-spacing:237.395211pt;}
.wsb8{word-spacing:240.921080pt;}
.wsbe{word-spacing:251.505506pt;}
.wsc0{word-spacing:254.608570pt;}
.wsbf{word-spacing:262.174947pt;}
.wsbb{word-spacing:293.243849pt;}
.ws86{word-spacing:296.773668pt;}
.ws7d{word-spacing:358.286995pt;}
.ws71{word-spacing:670.390254pt;}
.ws8d{word-spacing:882.535888pt;}
.ws3{word-spacing:981.414296pt;}
._9{margin-left:-983.505803pt;}
._c{margin-left:-979.842788pt;}
._8{margin-left:-835.987087pt;}
._14{margin-left:-802.242327pt;}
._1f{margin-left:-724.896602pt;}
._b{margin-left:-631.976797pt;}
._20{margin-left:-571.072924pt;}
._15{margin-left:-233.886646pt;}
._30{margin-left:-223.956244pt;}
._1c{margin-left:-142.552665pt;}
._1a{margin-left:-133.553356pt;}
._11{margin-left:-123.759055pt;}
._18{margin-left:-117.998013pt;}
._7{margin-left:-111.934874pt;}
._19{margin-left:-103.550358pt;}
._12{margin-left:-99.077203pt;}
._1e{margin-left:-75.096904pt;}
._13{margin-left:-62.247874pt;}
._1b{margin-left:-48.552811pt;}
._35{margin-left:-15.690431pt;}
._10{margin-left:-10.009654pt;}
._5{margin-left:-8.820222pt;}
._6{margin-left:-0.972350pt;}
._4{width:0.913903pt;}
._24{width:6.860748pt;}
._2{width:7.808671pt;}
._3{width:9.675677pt;}
._1{width:11.022255pt;}
._0{width:16.536433pt;}
._16{width:33.000300pt;}
._a{width:50.605248pt;}
._34{width:66.782350pt;}
._17{width:97.335900pt;}
._1d{width:102.293970pt;}
._29{width:106.239578pt;}
._2a{width:121.861170pt;}
._2d{width:131.535930pt;}
._27{width:136.862149pt;}
._e{width:139.116691pt;}
._2e{width:147.042751pt;}
._36{width:181.380498pt;}
._25{width:188.959627pt;}
._32{width:194.727926pt;}
._28{width:199.544053pt;}
._2c{width:202.647117pt;}
._37{width:204.678987pt;}
._2b{width:210.213494pt;}
._38{width:215.348428pt;}
._39{width:224.415327pt;}
._26{width:228.878639pt;}
._33{width:258.617050pt;}
._2f{width:293.290608pt;}
._31{width:303.097142pt;}
._d{width:342.290927pt;}
._23{width:487.138624pt;}
._f{width:676.390437pt;}
._21{width:714.983450pt;}
._22{width:1526.359187pt;}
.fs9{font-size:24.084800pt;}
.fse{font-size:26.566933pt;}
.fs1c{font-size:28.334400pt;}
.fs8{font-size:30.990400pt;}
.fsd{font-size:35.418667pt;}
.fsf{font-size:36.130667pt;}
.fs13{font-size:37.000000pt;}
.fs16{font-size:37.031467pt;}
.fs1a{font-size:37.047467pt;}
.fs17{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:38.961067pt;}
.fs5{font-size:42.507733pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs12{font-size:52.999467pt;}
.fs15{font-size:53.045333pt;}
.fs19{font-size:53.068267pt;}
.fs18{font-size:53.119467pt;}
.fs6{font-size:53.133867pt;}
.fsa{font-size:58.448000pt;}
.fsc{font-size:63.760533pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:71.999467pt;}
.fs14{font-size:72.061867pt;}
.fs2{font-size:85.333333pt;}
.fs10{font-size:85.999467pt;}
.fs1b{font-size:86.110933pt;}
.fs7{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:3.329200pt;}
.ya3{bottom:8.289200pt;}
.ycc{bottom:35.527600pt;}
.y14{bottom:51.573333pt;}
.y62{bottom:56.390533pt;}
.yca{bottom:65.763733pt;}
.ycb{bottom:67.955867pt;}
.y13d{bottom:67.956352pt;}
.yd5{bottom:67.956448pt;}
.yc9{bottom:67.957544pt;}
.y101{bottom:67.960533pt;}
.y115{bottom:67.961372pt;}
.y16f{bottom:68.863078pt;}
.y12e{bottom:78.235856pt;}
.y16e{bottom:82.091484pt;}
.yc8{bottom:84.511400pt;}
.y114{bottom:84.515228pt;}
.y100{bottom:84.590105pt;}
.y13c{bottom:85.115934pt;}
.yd4{bottom:85.266133pt;}
.yd2{bottom:85.266830pt;}
.y12d{bottom:90.179467pt;}
.yd3{bottom:91.162133pt;}
.y16d{bottom:95.395342pt;}
.yd0{bottom:100.308667pt;}
.yc7{bottom:101.140972pt;}
.yff{bottom:101.143961pt;}
.y113{bottom:101.144800pt;}
.y13b{bottom:102.349904pt;}
.yd1{bottom:102.500800pt;}
.ycf{bottom:102.501676pt;}
.y16c{bottom:108.699200pt;}
.y4d{bottom:112.101132pt;}
.yc6{bottom:117.770544pt;}
.yfe{bottom:117.773533pt;}
.y112{bottom:117.774372pt;}
.yce{bottom:119.131248pt;}
.y13a{bottom:119.509486pt;}
.y4b{bottom:127.294533pt;}
.y4c{bottom:129.486533pt;}
.y4a{bottom:129.492132pt;}
.y16b{bottom:133.946400pt;}
.yc5{bottom:134.324400pt;}
.y111{bottom:134.328228pt;}
.yfd{bottom:134.403105pt;}
.ycd{bottom:136.440933pt;}
.y139{bottom:136.743456pt;}
.y49{bottom:146.953249pt;}
.yfc{bottom:150.956961pt;}
.y110{bottom:150.957800pt;}
.y138{bottom:153.977425pt;}
.y48{bottom:164.338650pt;}
.yc4{bottom:167.584267pt;}
.yfb{bottom:167.586533pt;}
.y10f{bottom:167.587372pt;}
.y137{bottom:171.137008pt;}
.y16a{bottom:172.195200pt;}
.ye6{bottom:176.959986pt;}
.y47{bottom:181.724051pt;}
.yfa{bottom:184.140389pt;}
.y10e{bottom:184.141228pt;}
.y136{bottom:187.766580pt;}
.ye5{bottom:191.548640pt;}
.y46{bottom:199.109453pt;}
.yf9{bottom:200.769961pt;}
.y10d{bottom:200.770800pt;}
.y135{bottom:204.926162pt;}
.y169{bottom:205.379467pt;}
.ye4{bottom:206.137294pt;}
.y45{bottom:216.494854pt;}
.yc1{bottom:216.671206pt;}
.yf8{bottom:217.399533pt;}
.y10c{bottom:217.400372pt;}
.ybf{bottom:217.923388pt;}
.ybc{bottom:219.924916pt;}
.ye3{bottom:220.801399pt;}
.yc2{bottom:221.176702pt;}
.y134{bottom:222.160132pt;}
.yb9{bottom:225.182400pt;}
.ybd{bottom:228.436533pt;}
.yba{bottom:230.439067pt;}
.yc0{bottom:233.943600pt;}
.yf7{bottom:233.953389pt;}
.y10b{bottom:233.954228pt;}
.y44{bottom:233.955971pt;}
.ye2{bottom:235.390053pt;}
.ybb{bottom:238.699142pt;}
.yc3{bottom:238.699843pt;}
.y133{bottom:239.319714pt;}
.ybe{bottom:243.205506pt;}
.y168{bottom:245.896000pt;}
.ye1{bottom:249.978707pt;}
.yf6{bottom:250.582961pt;}
.y10a{bottom:250.583800pt;}
.y43{bottom:251.341372pt;}
.y132{bottom:256.555012pt;}
.ye0{bottom:264.642813pt;}
.yb8{bottom:266.154524pt;}
.yf5{bottom:267.212533pt;}
.y109{bottom:267.213372pt;}
.yf3{bottom:267.215344pt;}
.y42{bottom:267.895228pt;}
.yf4{bottom:273.108667pt;}
.y131{bottom:273.788981pt;}
.y167{bottom:279.080267pt;}
.ydf{bottom:279.231467pt;}
.yb7{bottom:279.836133pt;}
.yb6{bottom:282.028267pt;}
.y108{bottom:283.767228pt;}
.yf2{bottom:283.769200pt;}
.y41{bottom:285.356345pt;}
.y130{bottom:290.948564pt;}
.y107{bottom:300.396800pt;}
.yf1{bottom:300.398772pt;}
.yb2{bottom:301.417658pt;}
.y40{bottom:302.741746pt;}
.yde{bottom:303.722800pt;}
.yb5{bottom:305.422986pt;}
.yac{bottom:305.423409pt;}
.ydd{bottom:305.535995pt;}
.yb0{bottom:305.673733pt;}
.yb3{bottom:307.424986pt;}
.y12f{bottom:308.182533pt;}
.yae{bottom:313.934400pt;}
.yad{bottom:315.937559pt;}
.yf0{bottom:317.028344pt;}
.y166{bottom:319.597933pt;}
.y3f{bottom:320.127147pt;}
.yb1{bottom:320.191884pt;}
.yaf{bottom:323.697334pt;}
.yb4{bottom:324.197212pt;}
.yab{bottom:325.699467pt;}
.ydc{bottom:328.969446pt;}
.yef{bottom:333.582200pt;}
.y165{bottom:336.227505pt;}
.y3e{bottom:337.512549pt;}
.ydb{bottom:340.913056pt;}
.yaa{bottom:348.320606pt;}
.yee{bottom:350.211772pt;}
.yda{bottom:352.856667pt;}
.y164{bottom:352.857077pt;}
.y3d{bottom:354.897950pt;}
.y12b{bottom:355.124324pt;}
.ya2{bottom:357.770667pt;}
.y140{bottom:359.659456pt;}
.ya7{bottom:361.099771pt;}
.ya4{bottom:361.099867pt;}
.ya8{bottom:364.044000pt;}
.ya1{bottom:366.311490pt;}
.ya9{bottom:366.311733pt;}
.yed{bottom:366.841344pt;}
.y163{bottom:369.410933pt;}
.y12a{bottom:369.789492pt;}
.ya6{bottom:371.499867pt;}
.y13f{bottom:371.603067pt;}
.y3c{bottom:372.359067pt;}
.ya0{bottom:379.464533pt;}
.y9f{bottom:381.732267pt;}
.yec{bottom:383.395200pt;}
.yea{bottom:383.396333pt;}
.y129{bottom:384.378146pt;}
.yeb{bottom:389.366800pt;}
.y127{bottom:397.228267pt;}
.y126{bottom:398.966578pt;}
.y128{bottom:398.966800pt;}
.ye9{bottom:400.025905pt;}
.y162{bottom:402.670800pt;}
.y9b{bottom:404.872108pt;}
.y3b{bottom:405.543200pt;}
.yd9{bottom:413.479990pt;}
.y125{bottom:413.555232pt;}
.y9c{bottom:413.872358pt;}
.y98{bottom:416.372133pt;}
.ye8{bottom:416.655477pt;}
.y9a{bottom:416.872133pt;}
.y99{bottom:418.872133pt;}
.y9e{bottom:423.372108pt;}
.y9d{bottom:424.372033pt;}
.yd8{bottom:425.423600pt;}
.y123{bottom:426.406267pt;}
.y124{bottom:428.220400pt;}
.y122{bottom:428.220959pt;}
.ye7{bottom:433.209333pt;}
.y160{bottom:440.919600pt;}
.y121{bottom:442.809613pt;}
.y161{bottom:443.187333pt;}
.y15f{bottom:443.189600pt;}
.y97{bottom:445.984275pt;}
.y3a{bottom:454.753909pt;}
.y11f{bottom:455.659733pt;}
.y120{bottom:457.398267pt;}
.y11e{bottom:457.399107pt;}
.y96{bottom:459.741600pt;}
.y15e{bottom:459.743456pt;}
.y95{bottom:461.933733pt;}
.y11d{bottom:472.063213pt;}
.y39{bottom:472.668221pt;}
.y1ac{bottom:473.121358pt;}
.y15d{bottom:476.373028pt;}
.y106{bottom:481.208241pt;}
.y11b{bottom:484.913200pt;}
.y1ab{bottom:486.349764pt;}
.y11a{bottom:486.651039pt;}
.y11c{bottom:486.651867pt;}
.y37{bottom:488.163600pt;}
.y91{bottom:489.635867pt;}
.y38{bottom:490.582533pt;}
.y36{bottom:490.588487pt;}
.y90{bottom:491.636927pt;}
.y8e{bottom:491.638253pt;}
.y15c{bottom:493.002600pt;}
.y105{bottom:493.227302pt;}
.y8b{bottom:499.644400pt;}
.y1aa{bottom:499.653622pt;}
.y93{bottom:500.144471pt;}
.y8c{bottom:502.146533pt;}
.y104{bottom:505.170913pt;}
.y94{bottom:506.649974pt;}
.y35{bottom:508.578782pt;}
.y15b{bottom:509.556456pt;}
.y92{bottom:509.903188pt;}
.y8f{bottom:510.403039pt;}
.y8d{bottom:511.905549pt;}
.y119{bottom:512.956949pt;}
.y1a9{bottom:512.957480pt;}
.y103{bottom:517.114523pt;}
.y1a8{bottom:526.185887pt;}
.y15a{bottom:526.186028pt;}
.y34{bottom:526.493094pt;}
.y102{bottom:529.058133pt;}
.y89{bottom:532.081733pt;}
.y8a{bottom:534.273867pt;}
.y88{bottom:534.274008pt;}
.y118{bottom:536.390400pt;}
.y1a7{bottom:539.489744pt;}
.y159{bottom:542.815600pt;}
.y33{bottom:544.407406pt;}
.y86{bottom:550.223467pt;}
.y1a6{bottom:552.793602pt;}
.y87{bottom:556.119600pt;}
.y32{bottom:562.321718pt;}
.y1a5{bottom:566.097460pt;}
.y158{bottom:575.999867pt;}
.y82{bottom:577.097333pt;}
.y1a4{bottom:579.326317pt;}
.y31{bottom:580.312012pt;}
.y80{bottom:580.596681pt;}
.y84{bottom:580.847283pt;}
.y7e{bottom:585.847200pt;}
.y117{bottom:587.413723pt;}
.y83{bottom:589.097358pt;}
.y7f{bottom:591.097200pt;}
.y1a3{bottom:592.630175pt;}
.y30{bottom:598.226324pt;}
.y116{bottom:599.357333pt;}
.y81{bottom:603.097067pt;}
.y85{bottom:603.847408pt;}
.y1a2{bottom:605.934033pt;}
.y156{bottom:614.324267pt;}
.y2f{bottom:616.140636pt;}
.y157{bottom:616.516400pt;}
.y155{bottom:616.516695pt;}
.y1a1{bottom:619.237891pt;}
.y7d{bottom:625.209333pt;}
.y7b{bottom:625.213277pt;}
.y7c{bottom:631.105333pt;}
.y1a0{bottom:632.466298pt;}
.y154{bottom:633.146267pt;}
.y152{bottom:633.146811pt;}
.y2e{bottom:634.054948pt;}
.y153{bottom:639.042400pt;}
.y61{bottom:640.779760pt;}
.y7a{bottom:641.767133pt;}
.y19f{bottom:645.770155pt;}
.y150{bottom:647.508533pt;}
.y151{bottom:649.700667pt;}
.y14f{bottom:649.701256pt;}
.y60{bottom:651.362432pt;}
.y2d{bottom:652.045243pt;}
.y79{bottom:658.396705pt;}
.y19e{bottom:659.074013pt;}
.y5f{bottom:662.020979pt;}
.y14e{bottom:666.330828pt;}
.y2c{bottom:669.959555pt;}
.y19d{bottom:672.377871pt;}
.y5e{bottom:672.603651pt;}
.y78{bottom:675.026277pt;}
.y14c{bottom:680.692800pt;}
.y14d{bottom:682.960400pt;}
.y14b{bottom:682.964477pt;}
.y5d{bottom:683.262198pt;}
.y19c{bottom:685.606278pt;}
.y2b{bottom:687.873867pt;}
.y77{bottom:691.580133pt;}
.y5c{bottom:693.844870pt;}
.y19b{bottom:698.910136pt;}
.y14a{bottom:699.518333pt;}
.y76{bottom:708.209705pt;}
.y5b{bottom:709.568033pt;}
.y19a{bottom:712.213993pt;}
.y149{bottom:716.147905pt;}
.y5a{bottom:720.150705pt;}
.y75{bottom:724.839277pt;}
.y199{bottom:725.442860pt;}
.y59{bottom:730.809252pt;}
.y148{bottom:732.701761pt;}
.y2a{bottom:735.723090pt;}
.y198{bottom:738.746717pt;}
.y74{bottom:741.393133pt;}
.y58{bottom:741.467799pt;}
.y147{bottom:749.331333pt;}
.y57{bottom:752.050471pt;}
.y197{bottom:752.050575pt;}
.y12c{bottom:756.585600pt;}
.y73{bottom:758.022705pt;}
.y29{bottom:758.249001pt;}
.y196{bottom:765.354433pt;}
.y146{bottom:765.960905pt;}
.yd7{bottom:767.092390pt;}
.y13e{bottom:769.058133pt;}
.y72{bottom:774.652277pt;}
.y28{bottom:776.844009pt;}
.y195{bottom:778.582840pt;}
.yd6{bottom:779.036000pt;}
.y145{bottom:782.514761pt;}
.y56{bottom:783.949333pt;}
.y27{bottom:790.147867pt;}
.y71{bottom:791.206133pt;}
.y6f{bottom:791.208400pt;}
.y194{bottom:791.886698pt;}
.y26{bottom:794.154133pt;}
.y55{bottom:794.607600pt;}
.y70{bottom:797.102267pt;}
.y144{bottom:799.144333pt;}
.y7{bottom:802.933333pt;}
.y25{bottom:803.451867pt;}
.y193{bottom:805.190555pt;}
.y24{bottom:807.458133pt;}
.y6e{bottom:807.837972pt;}
.y13{bottom:809.120000pt;}
.y54{bottom:811.842400pt;}
.y143{bottom:815.773905pt;}
.y23{bottom:816.755733pt;}
.y192{bottom:818.494413pt;}
.y12{bottom:819.786667pt;}
.y22{bottom:820.762000pt;}
.y53{bottom:822.500667pt;}
.y6d{bottom:824.467544pt;}
.y6{bottom:828.800000pt;}
.y21{bottom:829.984000pt;}
.y11{bottom:830.453333pt;}
.y191{bottom:831.722820pt;}
.y142{bottom:832.327761pt;}
.y20{bottom:833.990400pt;}
.y52{bottom:839.735200pt;}
.y6c{bottom:841.021400pt;}
.y1f{bottom:843.288142pt;}
.y190{bottom:845.026678pt;}
.y141{bottom:848.957333pt;}
.y51{bottom:850.393600pt;}
.y10{bottom:851.120000pt;}
.y1e{bottom:856.592000pt;}
.y6b{bottom:857.650972pt;}
.y18f{bottom:858.330536pt;}
.y1d{bottom:860.598267pt;}
.yf{bottom:861.786667pt;}
.y5{bottom:864.666667pt;}
.y50{bottom:867.628133pt;}
.y18e{bottom:871.558942pt;}
.ye{bottom:872.453333pt;}
.y1c{bottom:873.826533pt;}
.y1a{bottom:873.826808pt;}
.y6a{bottom:874.280544pt;}
.y4f{bottom:878.286400pt;}
.y1b{bottom:879.042267pt;}
.yd{bottom:883.120000pt;}
.y18d{bottom:884.863251pt;}
.y18{bottom:889.776267pt;}
.y69{bottom:890.834400pt;}
.y19{bottom:894.916400pt;}
.y18c{bottom:898.167109pt;}
.y4{bottom:898.813333pt;}
.y182{bottom:901.568942pt;}
.yc{bottom:903.786667pt;}
.y4e{bottom:909.958800pt;}
.y18b{bottom:911.470966pt;}
.yb{bottom:914.453333pt;}
.y181{bottom:916.157597pt;}
.y68{bottom:924.094267pt;}
.y3{bottom:924.413333pt;}
.y18a{bottom:924.699373pt;}
.ya{bottom:925.120000pt;}
.y17{bottom:925.681600pt;}
.y180{bottom:930.746251pt;}
.y9{bottom:935.786667pt;}
.y189{bottom:938.003231pt;}
.y17f{bottom:945.410356pt;}
.y188{bottom:951.307089pt;}
.y8{bottom:958.453333pt;}
.y2{bottom:961.320000pt;}
.y16{bottom:961.511600pt;}
.y187{bottom:964.610947pt;}
.y67{bottom:964.612477pt;}
.y178{bottom:969.902133pt;}
.y176{bottom:971.715885pt;}
.y179{bottom:971.716267pt;}
.y17d{bottom:971.716679pt;}
.y17e{bottom:976.402933pt;}
.y186{bottom:977.839353pt;}
.y66{bottom:981.166333pt;}
.y17b{bottom:984.491067pt;}
.y177{bottom:986.304539pt;}
.y17a{bottom:986.304921pt;}
.y17c{bottom:986.305333pt;}
.y185{bottom:991.143211pt;}
.y65{bottom:997.795905pt;}
.y184{bottom:1004.447069pt;}
.y175{bottom:1009.737990pt;}
.y64{bottom:1014.425477pt;}
.y183{bottom:1017.675475pt;}
.y172{bottom:1019.943067pt;}
.y171{bottom:1021.681456pt;}
.y173{bottom:1021.681600pt;}
.y174{bottom:1026.443867pt;}
.y63{bottom:1030.979333pt;}
.y170{bottom:1033.625067pt;}
.y1{bottom:1059.173333pt;}
.y15{bottom:1077.467467pt;}
.h15{height:17.985814pt;}
.hc{height:19.508688pt;}
.h3c{height:20.117424pt;}
.h28{height:21.089333pt;}
.h3e{height:21.165797pt;}
.h39{height:22.950864pt;}
.hb{height:25.102224pt;}
.h1c{height:25.147253pt;}
.h1b{height:26.270000pt;}
.h22{height:26.292341pt;}
.h31{height:26.303701pt;}
.h2a{height:26.355200pt;}
.h3a{height:26.457744pt;}
.h10{height:27.662357pt;}
.h13{height:28.689120pt;}
.h14{height:28.777735pt;}
.h16{height:29.265840pt;}
.h3d{height:30.010460pt;}
.hd{height:30.180491pt;}
.h7{height:34.431264pt;}
.h1a{height:35.150000pt;}
.h8{height:35.971628pt;}
.h27{height:36.569632pt;}
.h23{height:36.601280pt;}
.h35{height:36.617104pt;}
.h1e{height:37.450005pt;}
.h2c{height:37.466196pt;}
.ha{height:37.512510pt;}
.h26{height:37.629621pt;}
.h20{height:37.662187pt;}
.h29{height:37.714821pt;}
.h3b{height:37.725045pt;}
.h5{height:38.937500pt;}
.h32{height:39.801200pt;}
.he{height:41.498080pt;}
.h12{height:43.038432pt;}
.h4{height:44.500000pt;}
.h11{height:45.269979pt;}
.hf{height:47.342880pt;}
.h2{height:50.062500pt;}
.h25{height:50.349493pt;}
.h2e{height:50.414853pt;}
.h2b{height:63.886283pt;}
.h3{height:64.000000pt;}
.h9{height:65.131930pt;}
.h1{height:66.750000pt;}
.h33{height:67.608972pt;}
.h24{height:68.399493pt;}
.h1d{height:68.458773pt;}
.h18{height:70.415091pt;}
.h2f{height:70.718772pt;}
.h36{height:78.673705pt;}
.h21{height:79.695309pt;}
.h30{height:79.735071pt;}
.h17{height:81.699493pt;}
.h37{height:81.805387pt;}
.h2d{height:83.455156pt;}
.h19{height:92.351571pt;}
.h1f{height:92.426189pt;}
.h38{height:112.775373pt;}
.h34{height:118.676565pt;}
.h6{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w3{width:40.969333pt;}
.w0{width:793.333333pt;}
.w1{width:793.701333pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:34.079467pt;}
.x1{left:52.000000pt;}
.x1f{left:56.617333pt;}
.x6{left:158.966933pt;}
.x84{left:164.182667pt;}
.x43{left:165.618800pt;}
.x38{left:167.281867pt;}
.x1b{left:169.474000pt;}
.x39{left:172.119600pt;}
.x1c{left:178.778011pt;}
.x77{left:190.034533pt;}
.x5{left:192.400000pt;}
.x82{left:199.483333pt;}
.x4c{left:202.507067pt;}
.x4d{left:207.193600pt;}
.x15{left:226.998400pt;}
.x16{left:231.155867pt;}
.x1d{left:236.598400pt;}
.x7{left:238.488133pt;}
.x1e{left:241.360533pt;}
.x8{left:242.645600pt;}
.x71{left:259.729067pt;}
.x57{left:261.468000pt;}
.x58{left:266.907600pt;}
.x5a{left:270.107600pt;}
.x5b{left:275.947504pt;}
.x7e{left:277.492800pt;}
.x7f{left:283.162133pt;}
.x85{left:285.958933pt;}
.x6f{left:298.658133pt;}
.x70{left:313.247200pt;}
.x9{left:321.637733pt;}
.x83{left:326.097600pt;}
.x17{left:327.987333pt;}
.x50{left:330.151733pt;}
.x45{left:331.302667pt;}
.x51{left:336.151733pt;}
.x3b{left:337.401733pt;}
.xa{left:338.343200pt;}
.x4a{left:340.310735pt;}
.x6a{left:345.599867pt;}
.x5f{left:346.663809pt;}
.x6b{left:350.362133pt;}
.x4b{left:353.571867pt;}
.x6d{left:355.880267pt;}
.x79{left:357.996165pt;}
.x6e{left:360.642400pt;}
.x5d{left:362.935867pt;}
.x7a{left:366.462933pt;}
.x78{left:368.806267pt;}
.x7b{left:370.318000pt;}
.x3a{left:373.151600pt;}
.x89{left:374.096592pt;}
.x75{left:375.684933pt;}
.x8a{left:379.615158pt;}
.x3f{left:380.901492pt;}
.x3d{left:386.151467pt;}
.x76{left:390.273867pt;}
.x49{left:391.854523pt;}
.x6c{left:393.599867pt;}
.x4f{left:394.651467pt;}
.x55{left:398.286533pt;}
.x48{left:402.364236pt;}
.x69{left:407.225600pt;}
.x61{left:408.744835pt;}
.x56{left:410.078667pt;}
.x40{left:411.651267pt;}
.xb{left:413.177867pt;}
.x18{left:415.218800pt;}
.xc{left:417.335333pt;}
.x3c{left:418.400818pt;}
.x52{left:419.902158pt;}
.x44{left:421.130133pt;}
.x53{left:422.901933pt;}
.x64{left:426.750800pt;}
.x20{left:428.144800pt;}
.x5e{left:429.520621pt;}
.x21{left:432.906933pt;}
.x19{left:434.872267pt;}
.x47{left:440.898079pt;}
.x46{left:442.148636pt;}
.x86{left:444.699067pt;}
.x22{left:448.781067pt;}
.x67{left:449.781156pt;}
.x23{left:453.543200pt;}
.x65{left:456.539588pt;}
.x87{left:458.910133pt;}
.x54{left:459.902858pt;}
.x60{left:463.314933pt;}
.x88{left:464.655067pt;}
.x24{left:466.242400pt;}
.x25{left:471.080267pt;}
.x63{left:472.076504pt;}
.xd{left:475.540000pt;}
.xe{left:479.697467pt;}
.x26{left:481.587333pt;}
.x27{left:486.349467pt;}
.x8b{left:496.025067pt;}
.x28{left:502.147867pt;}
.x3e{left:504.901442pt;}
.x29{left:506.910133pt;}
.x41{left:508.421867pt;}
.x66{left:509.607854pt;}
.x42{left:513.184133pt;}
.x68{left:516.117452pt;}
.x2a{left:519.684933pt;}
.x2b{left:524.447067pt;}
.x1a{left:531.930533pt;}
.x2c{left:534.954133pt;}
.x62{left:536.910006pt;}
.x2{left:538.213333pt;}
.x2d{left:539.716400pt;}
.x4e{left:548.182533pt;}
.x2e{left:555.514800pt;}
.x8c{left:556.421373pt;}
.x4{left:558.213333pt;}
.x2f{left:560.352533pt;}
.xf{left:561.637600pt;}
.x3{left:563.920000pt;}
.x10{left:565.795067pt;}
.x8d{left:570.179333pt;}
.x30{left:573.051867pt;}
.x31{left:577.814000pt;}
.x32{left:588.321067pt;}
.x80{left:592.176267pt;}
.x33{left:595.275467pt;}
.x81{left:597.770000pt;}
.x73{left:598.903733pt;}
.x74{left:613.492800pt;}
.x72{left:618.254933pt;}
.x34{left:627.703733pt;}
.x35{left:632.466000pt;}
.x11{left:643.350933pt;}
.x36{left:645.165200pt;}
.x5c{left:646.450133pt;}
.x12{left:647.508400pt;}
.x37{left:652.044000pt;}
.x7c{left:667.162000pt;}
.x7d{left:672.831333pt;}
.x13{left:722.343067pt;}
.x14{left:726.576133pt;}
}




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