
    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_2ed0663cac2589d1a22fcdfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190918;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_b8579379b97fff5e65806b22.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.190918;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_2e74b8cbde9b956fce36bced.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.191406;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_587dd68f7d1cce56acf50d0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_52bcbe726363e17fa512bba9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191406;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_b099eb963991545792fe1d09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958496;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_5e021d06db93474b51b588dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191406;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_c54014aee881551bdedf94aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.349000;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_f68cc3887eba4c1843426551.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_acb3103bfe37d87aecee4b00.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_f11feffb1e103dceb467b858.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.190918;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_811ed2ca537436c895826fb7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.190918;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_1b31723d0fab4cef18452c31.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.191406;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_4c91e0a9445189c87646a554.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.203000;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_2938dc60205e9d01e8243700.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.362000;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_3c10f019a1e424d979b416ef.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.384000;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_f11feffb1e103dceb467b858.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.190918;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_811ed2ca537436c895826fb7.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.190918;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_1b31723d0fab4cef18452c31.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.191406;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_4c91e0a9445189c87646a554.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.203000;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_811ed2ca537436c895826fb7.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.190918;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_1b31723d0fab4cef18452c31.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.191406;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_4c91e0a9445189c87646a554.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.203000;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_f1dc3b2bdbf962b9f1e0a591.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.200885;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_bd14707089f35dc0cfcbe947.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.411000;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_811ed2ca537436c895826fb7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.190918;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_1b31723d0fab4cef18452c31.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.191406;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_b8e50b7ed6f83a57b2d7974e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958496;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:ff21;src:url('chunks/assets/font_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.203000;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);}
.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:-20.400000px;}
.v4{vertical-align:-18.360000px;}
.v5{vertical-align:-17.340000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.198000px;}
.v1{vertical-align:20.400000px;}
.v6{vertical-align:22.512000px;}
.ls6e{letter-spacing:-2.835000px;}
.ls72{letter-spacing:-2.790000px;}
.ls10{letter-spacing:-0.960000px;}
.ls42{letter-spacing:-0.810000px;}
.ls18{letter-spacing:-0.702000px;}
.ls36{letter-spacing:-0.648000px;}
.ls6c{letter-spacing:-0.585000px;}
.ls30{letter-spacing:-0.546000px;}
.ls39{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.486000px;}
.ls70{letter-spacing:-0.450000px;}
.ls3c{letter-spacing:-0.432000px;}
.ls6a{letter-spacing:-0.405000px;}
.ls6b{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.336000px;}
.ls6f{letter-spacing:-0.315000px;}
.ls46{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.216000px;}
.ls54{letter-spacing:-0.180000px;}
.ls47{letter-spacing:-0.175500px;}
.ls31{letter-spacing:-0.168000px;}
.ls13{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.140400px;}
.ls66{letter-spacing:-0.135000px;}
.ls29{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.105300px;}
.ls73{letter-spacing:-0.090000px;}
.ls43{letter-spacing:-0.070200px;}
.ls45{letter-spacing:-0.060000px;}
.ls16{letter-spacing:-0.054000px;}
.ls55{letter-spacing:-0.045000px;}
.ls37{letter-spacing:-0.035100px;}
.lsf{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013200px;}
.ls25{letter-spacing:0.035100px;}
.ls33{letter-spacing:0.035400px;}
.ls58{letter-spacing:0.045000px;}
.ls1f{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.070200px;}
.ls5f{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.105300px;}
.ls9{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.135000px;}
.ls35{letter-spacing:0.136800px;}
.ls50{letter-spacing:0.140400px;}
.ls34{letter-spacing:0.141000px;}
.ls12{letter-spacing:0.162000px;}
.ls56{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.198000px;}
.ls21{letter-spacing:0.210600px;}
.ls2b{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.221400px;}
.ls5e{letter-spacing:0.225000px;}
.ls41{letter-spacing:0.240000px;}
.ls38{letter-spacing:0.245700px;}
.ls1d{letter-spacing:0.266400px;}
.ls8{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.271650px;}
.ls44{letter-spacing:0.280800px;}
.lse{letter-spacing:0.306000px;}
.ls67{letter-spacing:0.315000px;}
.ls3e{letter-spacing:0.315900px;}
.ls7{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.326100px;}
.lsa{letter-spacing:0.338850px;}
.ls3{letter-spacing:0.351000px;}
.ls6d{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.378000px;}
.ls61{letter-spacing:0.382500px;}
.ls3b{letter-spacing:0.386100px;}
.ls3d{letter-spacing:0.421200px;}
.ls22{letter-spacing:0.432000px;}
.ls74{letter-spacing:0.450000px;}
.ls28{letter-spacing:0.456300px;}
.ls1b{letter-spacing:0.459000px;}
.lsc{letter-spacing:0.463050px;}
.ls3a{letter-spacing:0.486000px;}
.ls64{letter-spacing:0.495000px;}
.ls5{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.561000px;}
.ls40{letter-spacing:0.572400px;}
.ls3f{letter-spacing:0.583200px;}
.ls60{letter-spacing:0.585000px;}
.ls2a{letter-spacing:0.594000px;}
.ls5c{letter-spacing:0.630000px;}
.ls23{letter-spacing:0.648000px;}
.ls26{letter-spacing:0.702000px;}
.lsb{letter-spacing:0.714000px;}
.ls69{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.756000px;}
.ls68{letter-spacing:0.765000px;}
.ls48{letter-spacing:0.788400px;}
.ls5b{letter-spacing:0.805500px;}
.ls20{letter-spacing:0.810000px;}
.ls57{letter-spacing:0.913500px;}
.ls76{letter-spacing:0.918000px;}
.ls5d{letter-spacing:0.940500px;}
.ls1e{letter-spacing:0.972000px;}
.ls2c{letter-spacing:1.026000px;}
.ls65{letter-spacing:1.035000px;}
.ls52{letter-spacing:1.125000px;}
.ls4a{letter-spacing:1.192500px;}
.ls51{letter-spacing:1.215000px;}
.ls71{letter-spacing:1.665000px;}
.ls62{letter-spacing:1.755000px;}
.ls5a{letter-spacing:2.011500px;}
.ls59{letter-spacing:2.358000px;}
.ls53{letter-spacing:2.385000px;}
.ls4d{letter-spacing:2.475000px;}
.ls4e{letter-spacing:2.520000px;}
.ls0{letter-spacing:2.592000px;}
.ls1c{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls49{letter-spacing:2.965500px;}
.ls63{letter-spacing:5.130000px;}
.ls75{letter-spacing:6.120000px;}
.ls4f{letter-spacing:7.821000px;}
.ls2e{letter-spacing:71.862000px;}
.ls2f{letter-spacing:104.538000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws24{word-spacing:-14.700000px;}
.ws39{word-spacing:-13.596000px;}
.ws63{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.480000px;}
.ws4{word-spacing:-12.360000px;}
.ws3a{word-spacing:-12.258000px;}
.ws0{word-spacing:-12.192000px;}
.ws29{word-spacing:-12.042000px;}
.ws73{word-spacing:-11.610000px;}
.ws8{word-spacing:-11.556000px;}
.ws74{word-spacing:-11.430000px;}
.ws81{word-spacing:-11.115000px;}
.ws82{word-spacing:-10.845000px;}
.ws89{word-spacing:-10.485000px;}
.ws76{word-spacing:-10.350000px;}
.ws80{word-spacing:-10.305000px;}
.ws75{word-spacing:-10.215000px;}
.wsa{word-spacing:-10.200000px;}
.ws86{word-spacing:-10.125000px;}
.ws84{word-spacing:-9.990000px;}
.ws83{word-spacing:-9.900000px;}
.ws96{word-spacing:-9.765000px;}
.ws95{word-spacing:-9.675000px;}
.ws47{word-spacing:-9.534000px;}
.ws46{word-spacing:-9.114000px;}
.ws28{word-spacing:-8.424000px;}
.ws5f{word-spacing:-8.388900px;}
.ws57{word-spacing:-8.353800px;}
.ws7{word-spacing:-8.318700px;}
.ws60{word-spacing:-8.283600px;}
.ws65{word-spacing:-8.248500px;}
.ws56{word-spacing:-8.213400px;}
.ws25{word-spacing:-8.178300px;}
.ws72{word-spacing:-8.108100px;}
.ws27{word-spacing:-8.073000px;}
.ws6{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws26{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws55{word-spacing:-7.932600px;}
.ws64{word-spacing:-7.897500px;}
.ws9{word-spacing:-7.827300px;}
.ws66{word-spacing:-7.792200px;}
.ws85{word-spacing:-7.515000px;}
.wsa5{word-spacing:-6.120000px;}
.ws6d{word-spacing:-5.508000px;}
.wsa6{word-spacing:-3.960000px;}
.ws54{word-spacing:-3.948000px;}
.ws51{word-spacing:-3.864000px;}
.wsd{word-spacing:-3.276000px;}
.wse{word-spacing:-2.700000px;}
.ws7e{word-spacing:-2.385000px;}
.ws70{word-spacing:-1.944000px;}
.ws1c{word-spacing:-1.890000px;}
.ws14{word-spacing:-1.836000px;}
.ws40{word-spacing:-1.728000px;}
.ws2c{word-spacing:-1.674000px;}
.wsa0{word-spacing:-1.665000px;}
.ws3b{word-spacing:-1.620000px;}
.ws87{word-spacing:-1.575000px;}
.ws3c{word-spacing:-1.566000px;}
.ws7f{word-spacing:-1.530000px;}
.ws69{word-spacing:-1.512000px;}
.ws58{word-spacing:-1.458000px;}
.ws3e{word-spacing:-1.404000px;}
.wsa7{word-spacing:-1.386000px;}
.ws62{word-spacing:-1.350000px;}
.ws59{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.275000px;}
.ws18{word-spacing:-1.242000px;}
.wsa4{word-spacing:-1.215000px;}
.ws38{word-spacing:-1.188000px;}
.ws9b{word-spacing:-1.170000px;}
.wsf{word-spacing:-1.134000px;}
.ws79{word-spacing:-1.125000px;}
.ws33{word-spacing:-1.080000px;}
.ws7a{word-spacing:-1.035000px;}
.ws6a{word-spacing:-1.026000px;}
.ws22{word-spacing:-1.020000px;}
.ws52{word-spacing:-0.966000px;}
.ws6c{word-spacing:-0.864000px;}
.wsa3{word-spacing:-0.855000px;}
.ws6b{word-spacing:-0.810000px;}
.ws53{word-spacing:-0.798000px;}
.ws8c{word-spacing:-0.765000px;}
.ws42{word-spacing:-0.756000px;}
.ws8f{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.714000px;}
.ws35{word-spacing:-0.648000px;}
.ws90{word-spacing:-0.630000px;}
.ws10{word-spacing:-0.594000px;}
.ws94{word-spacing:-0.585000px;}
.ws1d{word-spacing:-0.561000px;}
.ws16{word-spacing:-0.540000px;}
.ws7b{word-spacing:-0.495000px;}
.ws15{word-spacing:-0.486000px;}
.ws20{word-spacing:-0.459000px;}
.ws50{word-spacing:-0.456300px;}
.ws99{word-spacing:-0.450000px;}
.ws5c{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.378000px;}
.ws13{word-spacing:-0.351000px;}
.ws11{word-spacing:-0.324000px;}
.ws9d{word-spacing:-0.315000px;}
.ws21{word-spacing:-0.306000px;}
.ws4f{word-spacing:-0.270000px;}
.ws67{word-spacing:-0.240000px;}
.ws2d{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.210600px;}
.ws9c{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.162000px;}
.ws7c{word-spacing:-0.135000px;}
.ws3d{word-spacing:-0.108000px;}
.ws98{word-spacing:-0.090000px;}
.ws5a{word-spacing:-0.054000px;}
.ws97{word-spacing:-0.045000px;}
.ws34{word-spacing:-0.035100px;}
.wsb{word-spacing:0.000000px;}
.ws1a{word-spacing:0.054000px;}
.ws6f{word-spacing:0.060000px;}
.ws6e{word-spacing:0.070200px;}
.ws19{word-spacing:0.105300px;}
.ws12{word-spacing:0.108000px;}
.ws91{word-spacing:0.135000px;}
.ws1b{word-spacing:0.140400px;}
.ws32{word-spacing:0.162000px;}
.ws71{word-spacing:0.175500px;}
.wsa2{word-spacing:0.180000px;}
.ws5d{word-spacing:0.270000px;}
.ws88{word-spacing:0.315000px;}
.ws5b{word-spacing:0.324000px;}
.ws61{word-spacing:0.378000px;}
.ws2e{word-spacing:0.432000px;}
.ws37{word-spacing:0.486000px;}
.ws93{word-spacing:0.495000px;}
.ws5e{word-spacing:0.540000px;}
.wsa1{word-spacing:0.585000px;}
.ws36{word-spacing:0.594000px;}
.ws92{word-spacing:0.630000px;}
.ws68{word-spacing:0.648000px;}
.ws31{word-spacing:0.702000px;}
.ws2a{word-spacing:0.756000px;}
.ws8e{word-spacing:0.810000px;}
.ws1f{word-spacing:0.816000px;}
.ws8d{word-spacing:0.855000px;}
.wsc{word-spacing:0.960000px;}
.ws8b{word-spacing:1.035000px;}
.wsa8{word-spacing:1.188000px;}
.ws2f{word-spacing:1.242000px;}
.ws41{word-spacing:1.350000px;}
.ws8a{word-spacing:1.575000px;}
.ws77{word-spacing:1.935000px;}
.ws78{word-spacing:1.980000px;}
.ws30{word-spacing:2.160000px;}
.ws9a{word-spacing:2.835000px;}
.ws9e{word-spacing:3.375000px;}
.ws9f{word-spacing:3.420000px;}
.ws7d{word-spacing:5.220000px;}
.ws4b{word-spacing:62.580000px;}
.ws4e{word-spacing:63.168000px;}
.ws45{word-spacing:76.734000px;}
.ws4d{word-spacing:79.758000px;}
.ws49{word-spacing:82.740000px;}
.ws4c{word-spacing:83.328000px;}
.ws43{word-spacing:86.394000px;}
.ws48{word-spacing:102.900000px;}
.ws44{word-spacing:129.402000px;}
.ws4a{word-spacing:149.268000px;}
._2b{margin-left:-14.805000px;}
._2c{margin-left:-12.285000px;}
._27{margin-left:-11.250000px;}
._4{margin-left:-9.860400px;}
._2a{margin-left:-8.640000px;}
._28{margin-left:-6.977700px;}
._7{margin-left:-5.961900px;}
._2{margin-left:-4.944000px;}
._1{margin-left:-3.229200px;}
._0{margin-left:-1.776000px;}
._5{width:1.044000px;}
._6{width:2.196000px;}
._20{width:3.981000px;}
._1e{width:5.422200px;}
._29{width:6.615000px;}
._24{width:7.695000px;}
._1f{width:8.775000px;}
._23{width:9.855000px;}
._26{width:11.136000px;}
._21{width:12.285000px;}
._22{width:13.635000px;}
._8{width:15.282000px;}
._25{width:16.806000px;}
._3{width:42.560400px;}
._1d{width:48.393000px;}
._e{width:59.718000px;}
._1a{width:77.010000px;}
._11{width:83.581200px;}
._10{width:92.274000px;}
._19{width:93.450000px;}
._a{width:94.650000px;}
._f{width:112.434000px;}
._d{width:125.538000px;}
._1b{width:126.714000px;}
._b{width:130.842000px;}
._14{width:138.642000px;}
._13{width:146.286000px;}
._15{width:158.214000px;}
._12{width:159.390000px;}
._18{width:176.904000px;}
._c{width:178.962000px;}
._17{width:228.858000px;}
._1c{width:293.211900px;}
._16{width:374.316000px;}
._9{width:560.238000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177600px;}
.y1{bottom:27.197850px;}
.y2f{bottom:68.313900px;}
.y14f{bottom:68.551500px;}
.y98{bottom:72.546300px;}
.y85{bottom:72.550800px;}
.ye7{bottom:73.302300px;}
.y193{bottom:73.327050px;}
.y1e1{bottom:80.047800px;}
.y105{bottom:80.794800px;}
.y2e{bottom:83.307900px;}
.y14e{bottom:83.553000px;}
.y192{bottom:86.073300px;}
.y97{bottom:87.544800px;}
.y84{bottom:87.549300px;}
.ye6{bottom:88.300800px;}
.y1e0{bottom:95.046300px;}
.y104{bottom:95.799300px;}
.y2d{bottom:98.307900px;}
.y14d{bottom:98.551500px;}
.y191{bottom:98.819550px;}
.y83{bottom:102.547800px;}
.y96{bottom:102.558300px;}
.ye5{bottom:103.299300px;}
.y1df{bottom:110.044800px;}
.y103{bottom:110.797800px;}
.y190{bottom:111.565800px;}
.y2c{bottom:113.307900px;}
.y14c{bottom:113.553000px;}
.y82{bottom:117.546300px;}
.y95{bottom:117.556800px;}
.ye4{bottom:118.297800px;}
.y55{bottom:120.549300px;}
.y18f{bottom:124.312050px;}
.y1de{bottom:125.043300px;}
.y102{bottom:125.796300px;}
.y14b{bottom:128.551500px;}
.y81{bottom:132.544800px;}
.y94{bottom:132.555300px;}
.y2b{bottom:132.636900px;}
.ye3{bottom:133.296300px;}
.y54{bottom:135.547800px;}
.y18e{bottom:137.058300px;}
.y1dd{bottom:140.043300px;}
.y101{bottom:140.794800px;}
.y14a{bottom:143.550000px;}
.y80{bottom:147.546300px;}
.y93{bottom:147.553800px;}
.ye2{bottom:148.294800px;}
.y18d{bottom:149.804550px;}
.y53{bottom:150.546300px;}
.y100{bottom:155.802300px;}
.y7f{bottom:162.544800px;}
.y18c{bottom:162.550800px;}
.y92{bottom:162.552300px;}
.ye1{bottom:163.297800px;}
.y52{bottom:165.544800px;}
.y2a{bottom:170.188800px;}
.yff{bottom:170.800800px;}
.y1dc{bottom:173.313300px;}
.y149{bottom:173.679150px;}
.y18b{bottom:175.297050px;}
.y7e{bottom:177.543300px;}
.y91{bottom:177.550800px;}
.ye0{bottom:178.296300px;}
.y51{bottom:180.550800px;}
.y29{bottom:185.187300px;}
.yfe{bottom:185.799300px;}
.y1db{bottom:186.059550px;}
.y18a{bottom:188.043300px;}
.y148{bottom:188.677650px;}
.y7d{bottom:192.543300px;}
.y90{bottom:192.549300px;}
.ydf{bottom:193.294800px;}
.y50{bottom:195.549300px;}
.y1da{bottom:198.805800px;}
.y28{bottom:200.185800px;}
.y189{bottom:200.793300px;}
.yfd{bottom:200.797800px;}
.y147{bottom:203.676150px;}
.y8f{bottom:207.547800px;}
.yde{bottom:208.296300px;}
.y4f{bottom:210.547800px;}
.y1d9{bottom:211.552050px;}
.y27{bottom:215.185800px;}
.yfc{bottom:215.796300px;}
.y146{bottom:218.674650px;}
.y8e{bottom:222.546300px;}
.ydd{bottom:223.294800px;}
.y1d8{bottom:224.298300px;}
.y4e{bottom:225.546300px;}
.y7c{bottom:225.579300px;}
.y26{bottom:230.185800px;}
.yfb{bottom:230.794800px;}
.y145{bottom:233.673150px;}
.y188{bottom:233.797800px;}
.y1d7{bottom:237.044550px;}
.y8d{bottom:237.544800px;}
.ydc{bottom:238.299300px;}
.y4d{bottom:240.544800px;}
.y7b{bottom:240.577800px;}
.y25{bottom:245.188800px;}
.yfa{bottom:245.796300px;}
.y144{bottom:248.674650px;}
.y187{bottom:248.796300px;}
.y1d6{bottom:249.790800px;}
.y8c{bottom:252.543300px;}
.ydb{bottom:253.297800px;}
.y4c{bottom:255.544800px;}
.y7a{bottom:255.576300px;}
.y24{bottom:260.187300px;}
.yf9{bottom:260.794800px;}
.y1d5{bottom:262.537050px;}
.y143{bottom:263.673150px;}
.y186{bottom:263.794800px;}
.yda{bottom:268.296300px;}
.y4b{bottom:270.547800px;}
.y79{bottom:270.574800px;}
.y23{bottom:275.185800px;}
.y1d4{bottom:275.283300px;}
.yf8{bottom:275.800800px;}
.y142{bottom:278.676150px;}
.y185{bottom:278.796300px;}
.yd9{bottom:283.294800px;}
.y4a{bottom:285.546300px;}
.y78{bottom:285.573300px;}
.y1d3{bottom:288.029550px;}
.y22{bottom:290.185800px;}
.yf7{bottom:290.799300px;}
.y141{bottom:293.674650px;}
.y184{bottom:293.794800px;}
.yd8{bottom:298.297800px;}
.y49{bottom:300.544800px;}
.y77{bottom:300.571800px;}
.y1d2{bottom:300.775800px;}
.y21{bottom:305.185800px;}
.yf6{bottom:305.797800px;}
.y140{bottom:308.673150px;}
.y183{bottom:308.799300px;}
.yc6{bottom:313.113300px;}
.yd7{bottom:313.296300px;}
.y1d1{bottom:313.522050px;}
.y48{bottom:315.544800px;}
.y76{bottom:315.570300px;}
.y20{bottom:320.185800px;}
.yf5{bottom:320.796300px;}
.y13f{bottom:323.673150px;}
.y182{bottom:323.797800px;}
.y1d0{bottom:326.268300px;}
.yc5{bottom:328.111800px;}
.yd6{bottom:328.294800px;}
.y47{bottom:330.559800px;}
.y75{bottom:330.568800px;}
.y1f{bottom:335.191800px;}
.yf4{bottom:335.794800px;}
.y13e{bottom:338.674650px;}
.y181{bottom:338.796300px;}
.y1cf{bottom:339.014550px;}
.yc4{bottom:343.110300px;}
.yd5{bottom:343.294800px;}
.y46{bottom:345.558300px;}
.y74{bottom:345.567300px;}
.y1e{bottom:350.190300px;}
.yf3{bottom:350.796300px;}
.y1ce{bottom:351.760800px;}
.y13d{bottom:353.673150px;}
.y180{bottom:353.794800px;}
.yc3{bottom:358.108800px;}
.yd4{bottom:358.294800px;}
.y45{bottom:360.556800px;}
.y73{bottom:360.565800px;}
.y1cd{bottom:364.507050px;}
.y1d{bottom:365.188800px;}
.yf2{bottom:365.794800px;}
.y13c{bottom:368.682150px;}
.y17f{bottom:368.800800px;}
.yc2{bottom:373.107300px;}
.yd3{bottom:373.294800px;}
.y44{bottom:375.555300px;}
.y72{bottom:375.564300px;}
.y1cc{bottom:377.253300px;}
.y1c{bottom:380.187300px;}
.yf1{bottom:380.794800px;}
.y13b{bottom:383.680650px;}
.y17e{bottom:383.799300px;}
.yc1{bottom:388.105800px;}
.yd2{bottom:388.297800px;}
.y1cb{bottom:389.999550px;}
.y43{bottom:390.553800px;}
.y71{bottom:390.562800px;}
.y1b{bottom:395.185800px;}
.yf0{bottom:395.793300px;}
.y13a{bottom:398.679150px;}
.y17d{bottom:398.797800px;}
.y1ca{bottom:402.745800px;}
.yd1{bottom:403.296300px;}
.y42{bottom:405.552300px;}
.y70{bottom:405.561300px;}
.y1a{bottom:410.224800px;}
.y139{bottom:413.677650px;}
.y17c{bottom:413.796300px;}
.y1c9{bottom:415.492050px;}
.yc0{bottom:418.194300px;}
.yd0{bottom:418.294800px;}
.y41{bottom:420.550800px;}
.y6f{bottom:420.559800px;}
.y19{bottom:425.223300px;}
.y1c8{bottom:428.238300px;}
.y138{bottom:428.676150px;}
.y17b{bottom:428.794800px;}
.ycf{bottom:433.294800px;}
.y40{bottom:435.549300px;}
.y6e{bottom:435.558300px;}
.ybf{bottom:435.634800px;}
.y18{bottom:440.221800px;}
.y1c7{bottom:440.984550px;}
.y137{bottom:443.674650px;}
.y17a{bottom:443.800800px;}
.y10c{bottom:444.547950px;}
.yce{bottom:448.299300px;}
.y3f{bottom:450.547800px;}
.y6d{bottom:450.556800px;}
.ybe{bottom:453.075300px;}
.y1c6{bottom:453.730800px;}
.y17{bottom:455.220300px;}
.y136{bottom:458.673150px;}
.y179{bottom:458.799300px;}
.y10b{bottom:459.546450px;}
.ycd{bottom:463.297800px;}
.y3e{bottom:465.546300px;}
.y6c{bottom:465.555300px;}
.y1c5{bottom:466.477050px;}
.ybd{bottom:470.515800px;}
.y135{bottom:473.673150px;}
.y178{bottom:473.797800px;}
.y10a{bottom:474.544950px;}
.ycc{bottom:478.296300px;}
.y1c4{bottom:479.223300px;}
.y3d{bottom:480.544800px;}
.y6b{bottom:480.553800px;}
.ybc{bottom:487.956300px;}
.y134{bottom:488.680650px;}
.y177{bottom:488.796300px;}
.y109{bottom:489.543450px;}
.y1c3{bottom:491.969550px;}
.ycb{bottom:493.294800px;}
.y3c{bottom:495.544800px;}
.y6a{bottom:495.552300px;}
.y16{bottom:502.470300px;}
.y133{bottom:503.679150px;}
.y176{bottom:503.794800px;}
.y108{bottom:504.541950px;}
.y1c2{bottom:504.715800px;}
.ybb{bottom:505.396800px;}
.yca{bottom:508.296300px;}
.y3b{bottom:510.544800px;}
.y69{bottom:510.550800px;}
.y1c1{bottom:517.462050px;}
.y132{bottom:518.677650px;}
.y175{bottom:518.799300px;}
.y15{bottom:518.967300px;}
.y107{bottom:519.540450px;}
.yba{bottom:522.837300px;}
.yc9{bottom:523.294800px;}
.y68{bottom:525.549300px;}
.y3a{bottom:525.550800px;}
.y1c0{bottom:530.208300px;}
.y131{bottom:533.676150px;}
.y174{bottom:533.797800px;}
.y106{bottom:534.538950px;}
.y14{bottom:535.464300px;}
.yc8{bottom:538.294800px;}
.yb9{bottom:540.277800px;}
.y67{bottom:540.547800px;}
.y39{bottom:540.549300px;}
.y1bf{bottom:542.954550px;}
.y130{bottom:548.674650px;}
.y173{bottom:548.796300px;}
.y13{bottom:551.961300px;}
.yc7{bottom:553.293300px;}
.y66{bottom:555.546300px;}
.y38{bottom:555.547800px;}
.y1be{bottom:555.700800px;}
.yb8{bottom:557.718300px;}
.y12f{bottom:563.673150px;}
.y172{bottom:563.794800px;}
.y1bd{bottom:568.447050px;}
.y12{bottom:568.458300px;}
.y65{bottom:570.544800px;}
.y37{bottom:570.546300px;}
.yb7{bottom:575.158800px;}
.y12e{bottom:578.671650px;}
.y171{bottom:578.802300px;}
.y1bc{bottom:581.193300px;}
.y11{bottom:584.955300px;}
.y64{bottom:585.543300px;}
.y36{bottom:585.544800px;}
.yb6{bottom:592.599300px;}
.y170{bottom:593.800800px;}
.y1bb{bottom:593.939550px;}
.y35{bottom:600.543300px;}
.y10{bottom:601.452300px;}
.yef{bottom:602.169450px;}
.y1ba{bottom:606.685800px;}
.y16f{bottom:608.799300px;}
.y12d{bottom:608.809800px;}
.yb5{bottom:610.039800px;}
.yee{bottom:617.167950px;}
.yf{bottom:617.949300px;}
.y1b9{bottom:619.432050px;}
.y16e{bottom:623.797800px;}
.y12c{bottom:623.808300px;}
.yb4{bottom:627.480300px;}
.yed{bottom:632.166450px;}
.y1b8{bottom:632.178300px;}
.ye{bottom:634.446300px;}
.y16d{bottom:638.796300px;}
.y12b{bottom:638.806800px;}
.yb3{bottom:644.910300px;}
.y1b7{bottom:644.924550px;}
.yec{bottom:647.164950px;}
.yd{bottom:650.943300px;}
.y16c{bottom:653.794800px;}
.y12a{bottom:653.805300px;}
.yb2{bottom:656.155800px;}
.y1b6{bottom:657.670800px;}
.y63{bottom:658.338450px;}
.yeb{bottom:662.163450px;}
.y8b{bottom:664.201950px;}
.yc{bottom:667.440300px;}
.y16b{bottom:668.797800px;}
.y129{bottom:668.803800px;}
.y1b5{bottom:670.417050px;}
.y62{bottom:673.336950px;}
.yb1{bottom:673.596300px;}
.yea{bottom:677.161950px;}
.y8a{bottom:679.200450px;}
.y1b4{bottom:683.163300px;}
.y16a{bottom:683.796300px;}
.y128{bottom:683.802300px;}
.yb{bottom:683.937300px;}
.y61{bottom:688.335450px;}
.yb0{bottom:691.036800px;}
.ye9{bottom:692.160450px;}
.y89{bottom:694.200450px;}
.y1b3{bottom:695.909550px;}
.y169{bottom:698.794800px;}
.y127{bottom:698.800800px;}
.ya{bottom:700.434300px;}
.y60{bottom:703.333950px;}
.ye8{bottom:707.158950px;}
.yaf{bottom:708.477300px;}
.y1b2{bottom:708.655800px;}
.y88{bottom:709.201950px;}
.y126{bottom:713.799300px;}
.y168{bottom:713.811300px;}
.y5f{bottom:718.332450px;}
.y1b1{bottom:721.402050px;}
.y87{bottom:724.200450px;}
.yae{bottom:725.917800px;}
.y125{bottom:728.797800px;}
.y167{bottom:728.809800px;}
.y9{bottom:730.434300px;}
.y5e{bottom:733.330950px;}
.y1b0{bottom:734.148300px;}
.y86{bottom:739.198950px;}
.yad{bottom:743.358300px;}
.y124{bottom:743.796300px;}
.y166{bottom:743.808300px;}
.y1af{bottom:746.894550px;}
.y5d{bottom:748.329450px;}
.y8{bottom:748.434300px;}
.y32{bottom:757.145400px;}
.y123{bottom:758.794800px;}
.y165{bottom:758.806800px;}
.y1ae{bottom:759.640800px;}
.yac{bottom:760.798800px;}
.y5c{bottom:763.327950px;}
.y1ad{bottom:772.387050px;}
.y122{bottom:773.800800px;}
.y164{bottom:773.805300px;}
.y31{bottom:778.144650px;}
.yab{bottom:778.239300px;}
.y5b{bottom:778.326450px;}
.y7{bottom:781.416300px;}
.y1ac{bottom:785.133300px;}
.y1f1{bottom:786.556800px;}
.y121{bottom:788.799300px;}
.y163{bottom:788.803800px;}
.y5a{bottom:793.324950px;}
.yaa{bottom:795.679800px;}
.y1ab{bottom:797.879550px;}
.y30{bottom:799.143900px;}
.y1f0{bottom:801.555300px;}
.y120{bottom:803.797800px;}
.y162{bottom:803.802300px;}
.y59{bottom:808.323450px;}
.y1aa{bottom:810.625800px;}
.ya9{bottom:813.120300px;}
.y1ef{bottom:816.553800px;}
.y11f{bottom:818.796300px;}
.y161{bottom:818.800800px;}
.y58{bottom:823.321950px;}
.y1a9{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.ya8{bottom:830.560800px;}
.y1ee{bottom:831.552300px;}
.y11e{bottom:833.794800px;}
.y160{bottom:833.799300px;}
.y1a8{bottom:836.118300px;}
.y57{bottom:838.320450px;}
.y1ed{bottom:846.550800px;}
.ya7{bottom:848.001300px;}
.y15f{bottom:848.797800px;}
.y11d{bottom:848.811300px;}
.y1a7{bottom:848.864550px;}
.y56{bottom:853.318950px;}
.y1ec{bottom:861.549300px;}
.y1a6{bottom:861.610800px;}
.y15e{bottom:863.796300px;}
.y11c{bottom:863.809800px;}
.ya6{bottom:865.441800px;}
.y5{bottom:871.428300px;}
.y1a5{bottom:874.357050px;}
.y1eb{bottom:876.547800px;}
.y15d{bottom:878.794800px;}
.y11b{bottom:878.808300px;}
.ya5{bottom:882.882300px;}
.y1a4{bottom:887.103300px;}
.y1ea{bottom:891.546300px;}
.y15c{bottom:893.796300px;}
.y11a{bottom:893.806800px;}
.y1a3{bottom:899.849550px;}
.ya4{bottom:900.322800px;}
.y1e9{bottom:906.544800px;}
.y15b{bottom:908.794800px;}
.y119{bottom:908.805300px;}
.y1a2{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.ya3{bottom:917.763300px;}
.y1e8{bottom:921.543300px;}
.y15a{bottom:923.797800px;}
.y118{bottom:923.803800px;}
.y1a1{bottom:925.342050px;}
.y33{bottom:926.409600px;}
.ya2{bottom:935.203800px;}
.y1a0{bottom:938.088300px;}
.y159{bottom:938.796300px;}
.y117{bottom:938.802300px;}
.y1e7{bottom:943.297800px;}
.y19f{bottom:950.834550px;}
.ya1{bottom:952.644300px;}
.y158{bottom:953.794800px;}
.y116{bottom:953.800800px;}
.y1e6{bottom:958.296300px;}
.y19e{bottom:963.580800px;}
.y157{bottom:968.794800px;}
.y115{bottom:968.799300px;}
.ya0{bottom:970.084800px;}
.y19d{bottom:976.327050px;}
.y1e5{bottom:980.044800px;}
.y114{bottom:983.797800px;}
.y156{bottom:983.803800px;}
.y9f{bottom:987.525300px;}
.y19c{bottom:989.073300px;}
.y113{bottom:998.796300px;}
.y155{bottom:998.802300px;}
.y1e4{bottom:1001.793300px;}
.y19b{bottom:1001.819550px;}
.y9e{bottom:1004.965800px;}
.y112{bottom:1013.794800px;}
.y154{bottom:1013.800800px;}
.y19a{bottom:1014.565800px;}
.y1e3{bottom:1016.793300px;}
.y9d{bottom:1022.406300px;}
.y199{bottom:1027.312050px;}
.y111{bottom:1028.794800px;}
.y153{bottom:1028.799300px;}
.y9c{bottom:1039.846800px;}
.y198{bottom:1040.058300px;}
.y110{bottom:1043.794800px;}
.y1e2{bottom:1043.796300px;}
.y152{bottom:1043.797800px;}
.y197{bottom:1052.804550px;}
.y9b{bottom:1057.287300px;}
.y10f{bottom:1058.794800px;}
.y151{bottom:1058.796300px;}
.y196{bottom:1065.550800px;}
.y10e{bottom:1073.793300px;}
.y150{bottom:1073.794800px;}
.y9a{bottom:1074.727800px;}
.y195{bottom:1078.297050px;}
.y10d{bottom:1088.793300px;}
.y194{bottom:1091.043300px;}
.y99{bottom:1092.168300px;}
.y34{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hb{height:23.842749px;}
.h10{height:35.411133px;}
.he{height:36.681152px;}
.h9{height:38.838867px;}
.hd{height:41.158749px;}
.h16{height:41.538000px;}
.h17{height:42.084000px;}
.h15{height:43.008000px;}
.h4{height:44.233154px;}
.h1c{height:44.505000px;}
.h1d{height:45.090000px;}
.h3{height:45.744000px;}
.h1b{height:46.080000px;}
.h19{height:47.469727px;}
.hc{height:48.510668px;}
.hf{height:48.534668px;}
.h8{height:51.416016px;}
.ha{height:53.406000px;}
.h1a{height:54.096000px;}
.h12{height:54.108000px;}
.h13{height:55.296000px;}
.h2{height:57.099609px;}
.h7{height:57.128906px;}
.h14{height:62.841797px;}
.h18{height:64.050000px;}
.h11{height:77.677734px;}
.h6{height:112.201172px;}
.h5{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:14.078100px;}
.x2{left:61.191450px;}
.x7{left:140.952750px;}
.x4{left:233.456400px;}
.xb{left:238.152600px;}
.x5{left:251.451900px;}
.xd{left:300.594600px;}
.xa{left:356.214600px;}
.x9{left:419.655600px;}
.x3{left:584.586600px;}
.xc{left:816.003600px;}
.x8{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v4{vertical-align:-16.320000pt;}
.v5{vertical-align:-15.413333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.176000pt;}
.v1{vertical-align:18.133333pt;}
.v6{vertical-align:20.010667pt;}
.ls6e{letter-spacing:-2.520000pt;}
.ls72{letter-spacing:-2.480000pt;}
.ls10{letter-spacing:-0.853333pt;}
.ls42{letter-spacing:-0.720000pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls6c{letter-spacing:-0.520000pt;}
.ls30{letter-spacing:-0.485333pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.432000pt;}
.ls70{letter-spacing:-0.400000pt;}
.ls3c{letter-spacing:-0.384000pt;}
.ls6a{letter-spacing:-0.360000pt;}
.ls6b{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.298667pt;}
.ls6f{letter-spacing:-0.280000pt;}
.ls46{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls54{letter-spacing:-0.160000pt;}
.ls47{letter-spacing:-0.156000pt;}
.ls31{letter-spacing:-0.149333pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.124800pt;}
.ls66{letter-spacing:-0.120000pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.093600pt;}
.ls73{letter-spacing:-0.080000pt;}
.ls43{letter-spacing:-0.062400pt;}
.ls45{letter-spacing:-0.053333pt;}
.ls16{letter-spacing:-0.048000pt;}
.ls55{letter-spacing:-0.040000pt;}
.ls37{letter-spacing:-0.031200pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011733pt;}
.ls25{letter-spacing:0.031200pt;}
.ls33{letter-spacing:0.031467pt;}
.ls58{letter-spacing:0.040000pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.062400pt;}
.ls5f{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.093600pt;}
.ls9{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.120000pt;}
.ls35{letter-spacing:0.121600pt;}
.ls50{letter-spacing:0.124800pt;}
.ls34{letter-spacing:0.125333pt;}
.ls12{letter-spacing:0.144000pt;}
.ls56{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.176000pt;}
.ls21{letter-spacing:0.187200pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.196800pt;}
.ls5e{letter-spacing:0.200000pt;}
.ls41{letter-spacing:0.213333pt;}
.ls38{letter-spacing:0.218400pt;}
.ls1d{letter-spacing:0.236800pt;}
.ls8{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.241467pt;}
.ls44{letter-spacing:0.249600pt;}
.lse{letter-spacing:0.272000pt;}
.ls67{letter-spacing:0.280000pt;}
.ls3e{letter-spacing:0.280800pt;}
.ls7{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.289867pt;}
.lsa{letter-spacing:0.301200pt;}
.ls3{letter-spacing:0.312000pt;}
.ls6d{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.336000pt;}
.ls61{letter-spacing:0.340000pt;}
.ls3b{letter-spacing:0.343200pt;}
.ls3d{letter-spacing:0.374400pt;}
.ls22{letter-spacing:0.384000pt;}
.ls74{letter-spacing:0.400000pt;}
.ls28{letter-spacing:0.405600pt;}
.ls1b{letter-spacing:0.408000pt;}
.lsc{letter-spacing:0.411600pt;}
.ls3a{letter-spacing:0.432000pt;}
.ls64{letter-spacing:0.440000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.498667pt;}
.ls40{letter-spacing:0.508800pt;}
.ls3f{letter-spacing:0.518400pt;}
.ls60{letter-spacing:0.520000pt;}
.ls2a{letter-spacing:0.528000pt;}
.ls5c{letter-spacing:0.560000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls26{letter-spacing:0.624000pt;}
.lsb{letter-spacing:0.634667pt;}
.ls69{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.672000pt;}
.ls68{letter-spacing:0.680000pt;}
.ls48{letter-spacing:0.700800pt;}
.ls5b{letter-spacing:0.716000pt;}
.ls20{letter-spacing:0.720000pt;}
.ls57{letter-spacing:0.812000pt;}
.ls76{letter-spacing:0.816000pt;}
.ls5d{letter-spacing:0.836000pt;}
.ls1e{letter-spacing:0.864000pt;}
.ls2c{letter-spacing:0.912000pt;}
.ls65{letter-spacing:0.920000pt;}
.ls52{letter-spacing:1.000000pt;}
.ls4a{letter-spacing:1.060000pt;}
.ls51{letter-spacing:1.080000pt;}
.ls71{letter-spacing:1.480000pt;}
.ls62{letter-spacing:1.560000pt;}
.ls5a{letter-spacing:1.788000pt;}
.ls59{letter-spacing:2.096000pt;}
.ls53{letter-spacing:2.120000pt;}
.ls4d{letter-spacing:2.200000pt;}
.ls4e{letter-spacing:2.240000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls49{letter-spacing:2.636000pt;}
.ls63{letter-spacing:4.560000pt;}
.ls75{letter-spacing:5.440000pt;}
.ls4f{letter-spacing:6.952000pt;}
.ls2e{letter-spacing:63.877333pt;}
.ls2f{letter-spacing:92.922667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws24{word-spacing:-13.066667pt;}
.ws39{word-spacing:-12.085333pt;}
.ws63{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws4{word-spacing:-10.986667pt;}
.ws3a{word-spacing:-10.896000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws29{word-spacing:-10.704000pt;}
.ws73{word-spacing:-10.320000pt;}
.ws8{word-spacing:-10.272000pt;}
.ws74{word-spacing:-10.160000pt;}
.ws81{word-spacing:-9.880000pt;}
.ws82{word-spacing:-9.640000pt;}
.ws89{word-spacing:-9.320000pt;}
.ws76{word-spacing:-9.200000pt;}
.ws80{word-spacing:-9.160000pt;}
.ws75{word-spacing:-9.080000pt;}
.wsa{word-spacing:-9.066667pt;}
.ws86{word-spacing:-9.000000pt;}
.ws84{word-spacing:-8.880000pt;}
.ws83{word-spacing:-8.800000pt;}
.ws96{word-spacing:-8.680000pt;}
.ws95{word-spacing:-8.600000pt;}
.ws47{word-spacing:-8.474667pt;}
.ws46{word-spacing:-8.101333pt;}
.ws28{word-spacing:-7.488000pt;}
.ws5f{word-spacing:-7.456800pt;}
.ws57{word-spacing:-7.425600pt;}
.ws7{word-spacing:-7.394400pt;}
.ws60{word-spacing:-7.363200pt;}
.ws65{word-spacing:-7.332000pt;}
.ws56{word-spacing:-7.300800pt;}
.ws25{word-spacing:-7.269600pt;}
.ws72{word-spacing:-7.207200pt;}
.ws27{word-spacing:-7.176000pt;}
.ws6{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws26{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws55{word-spacing:-7.051200pt;}
.ws64{word-spacing:-7.020000pt;}
.ws9{word-spacing:-6.957600pt;}
.ws66{word-spacing:-6.926400pt;}
.ws85{word-spacing:-6.680000pt;}
.wsa5{word-spacing:-5.440000pt;}
.ws6d{word-spacing:-4.896000pt;}
.wsa6{word-spacing:-3.520000pt;}
.ws54{word-spacing:-3.509333pt;}
.ws51{word-spacing:-3.434667pt;}
.wsd{word-spacing:-2.912000pt;}
.wse{word-spacing:-2.400000pt;}
.ws7e{word-spacing:-2.120000pt;}
.ws70{word-spacing:-1.728000pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws14{word-spacing:-1.632000pt;}
.ws40{word-spacing:-1.536000pt;}
.ws2c{word-spacing:-1.488000pt;}
.wsa0{word-spacing:-1.480000pt;}
.ws3b{word-spacing:-1.440000pt;}
.ws87{word-spacing:-1.400000pt;}
.ws3c{word-spacing:-1.392000pt;}
.ws7f{word-spacing:-1.360000pt;}
.ws69{word-spacing:-1.344000pt;}
.ws58{word-spacing:-1.296000pt;}
.ws3e{word-spacing:-1.248000pt;}
.wsa7{word-spacing:-1.232000pt;}
.ws62{word-spacing:-1.200000pt;}
.ws59{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.133333pt;}
.ws18{word-spacing:-1.104000pt;}
.wsa4{word-spacing:-1.080000pt;}
.ws38{word-spacing:-1.056000pt;}
.ws9b{word-spacing:-1.040000pt;}
.wsf{word-spacing:-1.008000pt;}
.ws79{word-spacing:-1.000000pt;}
.ws33{word-spacing:-0.960000pt;}
.ws7a{word-spacing:-0.920000pt;}
.ws6a{word-spacing:-0.912000pt;}
.ws22{word-spacing:-0.906667pt;}
.ws52{word-spacing:-0.858667pt;}
.ws6c{word-spacing:-0.768000pt;}
.wsa3{word-spacing:-0.760000pt;}
.ws6b{word-spacing:-0.720000pt;}
.ws53{word-spacing:-0.709333pt;}
.ws8c{word-spacing:-0.680000pt;}
.ws42{word-spacing:-0.672000pt;}
.ws8f{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.634667pt;}
.ws35{word-spacing:-0.576000pt;}
.ws90{word-spacing:-0.560000pt;}
.ws10{word-spacing:-0.528000pt;}
.ws94{word-spacing:-0.520000pt;}
.ws1d{word-spacing:-0.498667pt;}
.ws16{word-spacing:-0.480000pt;}
.ws7b{word-spacing:-0.440000pt;}
.ws15{word-spacing:-0.432000pt;}
.ws20{word-spacing:-0.408000pt;}
.ws50{word-spacing:-0.405600pt;}
.ws99{word-spacing:-0.400000pt;}
.ws5c{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.336000pt;}
.ws13{word-spacing:-0.312000pt;}
.ws11{word-spacing:-0.288000pt;}
.ws9d{word-spacing:-0.280000pt;}
.ws21{word-spacing:-0.272000pt;}
.ws4f{word-spacing:-0.240000pt;}
.ws67{word-spacing:-0.213333pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.187200pt;}
.ws9c{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.144000pt;}
.ws7c{word-spacing:-0.120000pt;}
.ws3d{word-spacing:-0.096000pt;}
.ws98{word-spacing:-0.080000pt;}
.ws5a{word-spacing:-0.048000pt;}
.ws97{word-spacing:-0.040000pt;}
.ws34{word-spacing:-0.031200pt;}
.wsb{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.048000pt;}
.ws6f{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.062400pt;}
.ws19{word-spacing:0.093600pt;}
.ws12{word-spacing:0.096000pt;}
.ws91{word-spacing:0.120000pt;}
.ws1b{word-spacing:0.124800pt;}
.ws32{word-spacing:0.144000pt;}
.ws71{word-spacing:0.156000pt;}
.wsa2{word-spacing:0.160000pt;}
.ws5d{word-spacing:0.240000pt;}
.ws88{word-spacing:0.280000pt;}
.ws5b{word-spacing:0.288000pt;}
.ws61{word-spacing:0.336000pt;}
.ws2e{word-spacing:0.384000pt;}
.ws37{word-spacing:0.432000pt;}
.ws93{word-spacing:0.440000pt;}
.ws5e{word-spacing:0.480000pt;}
.wsa1{word-spacing:0.520000pt;}
.ws36{word-spacing:0.528000pt;}
.ws92{word-spacing:0.560000pt;}
.ws68{word-spacing:0.576000pt;}
.ws31{word-spacing:0.624000pt;}
.ws2a{word-spacing:0.672000pt;}
.ws8e{word-spacing:0.720000pt;}
.ws1f{word-spacing:0.725333pt;}
.ws8d{word-spacing:0.760000pt;}
.wsc{word-spacing:0.853333pt;}
.ws8b{word-spacing:0.920000pt;}
.wsa8{word-spacing:1.056000pt;}
.ws2f{word-spacing:1.104000pt;}
.ws41{word-spacing:1.200000pt;}
.ws8a{word-spacing:1.400000pt;}
.ws77{word-spacing:1.720000pt;}
.ws78{word-spacing:1.760000pt;}
.ws30{word-spacing:1.920000pt;}
.ws9a{word-spacing:2.520000pt;}
.ws9e{word-spacing:3.000000pt;}
.ws9f{word-spacing:3.040000pt;}
.ws7d{word-spacing:4.640000pt;}
.ws4b{word-spacing:55.626667pt;}
.ws4e{word-spacing:56.149333pt;}
.ws45{word-spacing:68.208000pt;}
.ws4d{word-spacing:70.896000pt;}
.ws49{word-spacing:73.546667pt;}
.ws4c{word-spacing:74.069333pt;}
.ws43{word-spacing:76.794667pt;}
.ws48{word-spacing:91.466667pt;}
.ws44{word-spacing:115.024000pt;}
.ws4a{word-spacing:132.682667pt;}
._2b{margin-left:-13.160000pt;}
._2c{margin-left:-10.920000pt;}
._27{margin-left:-10.000000pt;}
._4{margin-left:-8.764800pt;}
._2a{margin-left:-7.680000pt;}
._28{margin-left:-6.202400pt;}
._7{margin-left:-5.299467pt;}
._2{margin-left:-4.394667pt;}
._1{margin-left:-2.870400pt;}
._0{margin-left:-1.578667pt;}
._5{width:0.928000pt;}
._6{width:1.952000pt;}
._20{width:3.538667pt;}
._1e{width:4.819733pt;}
._29{width:5.880000pt;}
._24{width:6.840000pt;}
._1f{width:7.800000pt;}
._23{width:8.760000pt;}
._26{width:9.898667pt;}
._21{width:10.920000pt;}
._22{width:12.120000pt;}
._8{width:13.584000pt;}
._25{width:14.938667pt;}
._3{width:37.831467pt;}
._1d{width:43.016000pt;}
._e{width:53.082667pt;}
._1a{width:68.453333pt;}
._11{width:74.294400pt;}
._10{width:82.021333pt;}
._19{width:83.066667pt;}
._a{width:84.133333pt;}
._f{width:99.941333pt;}
._d{width:111.589333pt;}
._1b{width:112.634667pt;}
._b{width:116.304000pt;}
._14{width:123.237333pt;}
._13{width:130.032000pt;}
._15{width:140.634667pt;}
._12{width:141.680000pt;}
._18{width:157.248000pt;}
._c{width:159.077333pt;}
._17{width:203.429333pt;}
._1c{width:260.632800pt;}
._16{width:332.725333pt;}
._9{width:497.989333pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175867pt;}
.y2f{bottom:60.723467pt;}
.y14f{bottom:60.934667pt;}
.y98{bottom:64.485600pt;}
.y85{bottom:64.489600pt;}
.ye7{bottom:65.157600pt;}
.y193{bottom:65.179600pt;}
.y1e1{bottom:71.153600pt;}
.y105{bottom:71.817600pt;}
.y2e{bottom:74.051467pt;}
.y14e{bottom:74.269333pt;}
.y192{bottom:76.509600pt;}
.y97{bottom:77.817600pt;}
.y84{bottom:77.821600pt;}
.ye6{bottom:78.489600pt;}
.y1e0{bottom:84.485600pt;}
.y104{bottom:85.154933pt;}
.y2d{bottom:87.384800pt;}
.y14d{bottom:87.601333pt;}
.y191{bottom:87.839600pt;}
.y83{bottom:91.153600pt;}
.y96{bottom:91.162933pt;}
.ye5{bottom:91.821600pt;}
.y1df{bottom:97.817600pt;}
.y103{bottom:98.486933pt;}
.y190{bottom:99.169600pt;}
.y2c{bottom:100.718133pt;}
.y14c{bottom:100.936000pt;}
.y82{bottom:104.485600pt;}
.y95{bottom:104.494933pt;}
.ye4{bottom:105.153600pt;}
.y55{bottom:107.154933pt;}
.y18f{bottom:110.499600pt;}
.y1de{bottom:111.149600pt;}
.y102{bottom:111.818933pt;}
.y14b{bottom:114.268000pt;}
.y81{bottom:117.817600pt;}
.y94{bottom:117.826933pt;}
.y2b{bottom:117.899467pt;}
.ye3{bottom:118.485600pt;}
.y54{bottom:120.486933pt;}
.y18e{bottom:121.829600pt;}
.y1dd{bottom:124.482933pt;}
.y101{bottom:125.150933pt;}
.y14a{bottom:127.600000pt;}
.y80{bottom:131.152267pt;}
.y93{bottom:131.158933pt;}
.ye2{bottom:131.817600pt;}
.y18d{bottom:133.159600pt;}
.y53{bottom:133.818933pt;}
.y100{bottom:138.490933pt;}
.y7f{bottom:144.484267pt;}
.y18c{bottom:144.489600pt;}
.y92{bottom:144.490933pt;}
.ye1{bottom:145.153600pt;}
.y52{bottom:147.150933pt;}
.y2a{bottom:151.278933pt;}
.yff{bottom:151.822933pt;}
.y1dc{bottom:154.056267pt;}
.y149{bottom:154.381467pt;}
.y18b{bottom:155.819600pt;}
.y7e{bottom:157.816267pt;}
.y91{bottom:157.822933pt;}
.ye0{bottom:158.485600pt;}
.y51{bottom:160.489600pt;}
.y29{bottom:164.610933pt;}
.yfe{bottom:165.154933pt;}
.y1db{bottom:165.386267pt;}
.y18a{bottom:167.149600pt;}
.y148{bottom:167.713467pt;}
.y7d{bottom:171.149600pt;}
.y90{bottom:171.154933pt;}
.ydf{bottom:171.817600pt;}
.y50{bottom:173.821600pt;}
.y1da{bottom:176.716267pt;}
.y28{bottom:177.942933pt;}
.y189{bottom:178.482933pt;}
.yfd{bottom:178.486933pt;}
.y147{bottom:181.045467pt;}
.y8f{bottom:184.486933pt;}
.yde{bottom:185.152267pt;}
.y4f{bottom:187.153600pt;}
.y1d9{bottom:188.046267pt;}
.y27{bottom:191.276267pt;}
.yfc{bottom:191.818933pt;}
.y146{bottom:194.377467pt;}
.y8e{bottom:197.818933pt;}
.ydd{bottom:198.484267pt;}
.y1d8{bottom:199.376267pt;}
.y4e{bottom:200.485600pt;}
.y7c{bottom:200.514933pt;}
.y26{bottom:204.609600pt;}
.yfb{bottom:205.150933pt;}
.y145{bottom:207.709467pt;}
.y188{bottom:207.820267pt;}
.y1d7{bottom:210.706267pt;}
.y8d{bottom:211.150933pt;}
.ydc{bottom:211.821600pt;}
.y4d{bottom:213.817600pt;}
.y7b{bottom:213.846933pt;}
.y25{bottom:217.945600pt;}
.yfa{bottom:218.485600pt;}
.y144{bottom:221.044133pt;}
.y187{bottom:221.152267pt;}
.y1d6{bottom:222.036267pt;}
.y8c{bottom:224.482933pt;}
.ydb{bottom:225.153600pt;}
.y4c{bottom:227.150933pt;}
.y7a{bottom:227.178933pt;}
.y24{bottom:231.277600pt;}
.yf9{bottom:231.817600pt;}
.y1d5{bottom:233.366267pt;}
.y143{bottom:234.376133pt;}
.y186{bottom:234.484267pt;}
.yda{bottom:238.485600pt;}
.y4b{bottom:240.486933pt;}
.y79{bottom:240.510933pt;}
.y23{bottom:244.609600pt;}
.y1d4{bottom:244.696267pt;}
.yf8{bottom:245.156267pt;}
.y142{bottom:247.712133pt;}
.y185{bottom:247.818933pt;}
.yd9{bottom:251.817600pt;}
.y4a{bottom:253.818933pt;}
.y78{bottom:253.842933pt;}
.y1d3{bottom:256.026267pt;}
.y22{bottom:257.942933pt;}
.yf7{bottom:258.488267pt;}
.y141{bottom:261.044133pt;}
.y184{bottom:261.150933pt;}
.yd8{bottom:265.153600pt;}
.y49{bottom:267.150933pt;}
.y77{bottom:267.174933pt;}
.y1d2{bottom:267.356267pt;}
.y21{bottom:271.276267pt;}
.yf6{bottom:271.820267pt;}
.y140{bottom:274.376133pt;}
.y183{bottom:274.488267pt;}
.yc6{bottom:278.322933pt;}
.yd7{bottom:278.485600pt;}
.y1d1{bottom:278.686267pt;}
.y48{bottom:280.484267pt;}
.y76{bottom:280.506933pt;}
.y20{bottom:284.609600pt;}
.yf5{bottom:285.152267pt;}
.y13f{bottom:287.709467pt;}
.y182{bottom:287.820267pt;}
.y1d0{bottom:290.016267pt;}
.yc5{bottom:291.654933pt;}
.yd6{bottom:291.817600pt;}
.y47{bottom:293.830933pt;}
.y75{bottom:293.838933pt;}
.y1f{bottom:297.948267pt;}
.yf4{bottom:298.484267pt;}
.y13e{bottom:301.044133pt;}
.y181{bottom:301.152267pt;}
.y1cf{bottom:301.346267pt;}
.yc4{bottom:304.986933pt;}
.yd5{bottom:305.150933pt;}
.y46{bottom:307.162933pt;}
.y74{bottom:307.170933pt;}
.y1e{bottom:311.280267pt;}
.yf3{bottom:311.818933pt;}
.y1ce{bottom:312.676267pt;}
.y13d{bottom:314.376133pt;}
.y180{bottom:314.484267pt;}
.yc3{bottom:318.318933pt;}
.yd4{bottom:318.484267pt;}
.y45{bottom:320.494933pt;}
.y73{bottom:320.502933pt;}
.y1cd{bottom:324.006267pt;}
.y1d{bottom:324.612267pt;}
.yf2{bottom:325.150933pt;}
.y13c{bottom:327.717467pt;}
.y17f{bottom:327.822933pt;}
.yc2{bottom:331.650933pt;}
.yd3{bottom:331.817600pt;}
.y44{bottom:333.826933pt;}
.y72{bottom:333.834933pt;}
.y1cc{bottom:335.336267pt;}
.y1c{bottom:337.944267pt;}
.yf1{bottom:338.484267pt;}
.y13b{bottom:341.049467pt;}
.y17e{bottom:341.154933pt;}
.yc1{bottom:344.982933pt;}
.yd2{bottom:345.153600pt;}
.y1cb{bottom:346.666267pt;}
.y43{bottom:347.158933pt;}
.y71{bottom:347.166933pt;}
.y1b{bottom:351.276267pt;}
.yf0{bottom:351.816267pt;}
.y13a{bottom:354.381467pt;}
.y17d{bottom:354.486933pt;}
.y1ca{bottom:357.996267pt;}
.yd1{bottom:358.485600pt;}
.y42{bottom:360.490933pt;}
.y70{bottom:360.498933pt;}
.y1a{bottom:364.644267pt;}
.y139{bottom:367.713467pt;}
.y17c{bottom:367.818933pt;}
.y1c9{bottom:369.326267pt;}
.yc0{bottom:371.728267pt;}
.yd0{bottom:371.817600pt;}
.y41{bottom:373.822933pt;}
.y6f{bottom:373.830933pt;}
.y19{bottom:377.976267pt;}
.y1c8{bottom:380.656267pt;}
.y138{bottom:381.045467pt;}
.y17b{bottom:381.150933pt;}
.ycf{bottom:385.150933pt;}
.y40{bottom:387.154933pt;}
.y6e{bottom:387.162933pt;}
.ybf{bottom:387.230933pt;}
.y18{bottom:391.308267pt;}
.y1c7{bottom:391.986267pt;}
.y137{bottom:394.377467pt;}
.y17a{bottom:394.489600pt;}
.y10c{bottom:395.153733pt;}
.yce{bottom:398.488267pt;}
.y3f{bottom:400.486933pt;}
.y6d{bottom:400.494933pt;}
.ybe{bottom:402.733600pt;}
.y1c6{bottom:403.316267pt;}
.y17{bottom:404.640267pt;}
.y136{bottom:407.709467pt;}
.y179{bottom:407.821600pt;}
.y10b{bottom:408.485733pt;}
.ycd{bottom:411.820267pt;}
.y3e{bottom:413.818933pt;}
.y6c{bottom:413.826933pt;}
.y1c5{bottom:414.646267pt;}
.ybd{bottom:418.236267pt;}
.y135{bottom:421.042800pt;}
.y178{bottom:421.153600pt;}
.y10a{bottom:421.817733pt;}
.ycc{bottom:425.152267pt;}
.y1c4{bottom:425.976267pt;}
.y3d{bottom:427.150933pt;}
.y6b{bottom:427.158933pt;}
.ybc{bottom:433.738933pt;}
.y134{bottom:434.382800pt;}
.y177{bottom:434.485600pt;}
.y109{bottom:435.149733pt;}
.y1c3{bottom:437.306267pt;}
.ycb{bottom:438.484267pt;}
.y3c{bottom:440.484267pt;}
.y6a{bottom:440.490933pt;}
.y16{bottom:446.640267pt;}
.y133{bottom:447.714800pt;}
.y176{bottom:447.817600pt;}
.y108{bottom:448.481733pt;}
.y1c2{bottom:448.636267pt;}
.ybb{bottom:449.241600pt;}
.yca{bottom:451.818933pt;}
.y3b{bottom:453.817600pt;}
.y69{bottom:453.822933pt;}
.y1c1{bottom:459.966267pt;}
.y132{bottom:461.046800pt;}
.y175{bottom:461.154933pt;}
.y15{bottom:461.304267pt;}
.y107{bottom:461.813733pt;}
.yba{bottom:464.744267pt;}
.yc9{bottom:465.150933pt;}
.y68{bottom:467.154933pt;}
.y3a{bottom:467.156267pt;}
.y1c0{bottom:471.296267pt;}
.y131{bottom:474.378800pt;}
.y174{bottom:474.486933pt;}
.y106{bottom:475.145733pt;}
.y14{bottom:475.968267pt;}
.yc8{bottom:478.484267pt;}
.yb9{bottom:480.246933pt;}
.y67{bottom:480.486933pt;}
.y39{bottom:480.488267pt;}
.y1bf{bottom:482.626267pt;}
.y130{bottom:487.710800pt;}
.y173{bottom:487.818933pt;}
.y13{bottom:490.632267pt;}
.yc7{bottom:491.816267pt;}
.y66{bottom:493.818933pt;}
.y38{bottom:493.820267pt;}
.y1be{bottom:493.956267pt;}
.yb8{bottom:495.749600pt;}
.y12f{bottom:501.042800pt;}
.y172{bottom:501.150933pt;}
.y1bd{bottom:505.286267pt;}
.y12{bottom:505.296267pt;}
.y65{bottom:507.150933pt;}
.y37{bottom:507.152267pt;}
.yb7{bottom:511.252267pt;}
.y12e{bottom:514.374800pt;}
.y171{bottom:514.490933pt;}
.y1bc{bottom:516.616267pt;}
.y11{bottom:519.960267pt;}
.y64{bottom:520.482933pt;}
.y36{bottom:520.484267pt;}
.yb6{bottom:526.754933pt;}
.y170{bottom:527.822933pt;}
.y1bb{bottom:527.946267pt;}
.y35{bottom:533.816267pt;}
.y10{bottom:534.624267pt;}
.yef{bottom:535.261733pt;}
.y1ba{bottom:539.276267pt;}
.y16f{bottom:541.154933pt;}
.y12d{bottom:541.164267pt;}
.yb5{bottom:542.257600pt;}
.yee{bottom:548.593733pt;}
.yf{bottom:549.288267pt;}
.y1b9{bottom:550.606267pt;}
.y16e{bottom:554.486933pt;}
.y12c{bottom:554.496267pt;}
.yb4{bottom:557.760267pt;}
.yed{bottom:561.925733pt;}
.y1b8{bottom:561.936267pt;}
.ye{bottom:563.952267pt;}
.y16d{bottom:567.818933pt;}
.y12b{bottom:567.828267pt;}
.yb3{bottom:573.253600pt;}
.y1b7{bottom:573.266267pt;}
.yec{bottom:575.257733pt;}
.yd{bottom:578.616267pt;}
.y16c{bottom:581.150933pt;}
.y12a{bottom:581.160267pt;}
.yb2{bottom:583.249600pt;}
.y1b6{bottom:584.596267pt;}
.y63{bottom:585.189733pt;}
.yeb{bottom:588.589733pt;}
.y8b{bottom:590.401733pt;}
.yc{bottom:593.280267pt;}
.y16b{bottom:594.486933pt;}
.y129{bottom:594.492267pt;}
.y1b5{bottom:595.926267pt;}
.y62{bottom:598.521733pt;}
.yb1{bottom:598.752267pt;}
.yea{bottom:601.921733pt;}
.y8a{bottom:603.733733pt;}
.y1b4{bottom:607.256267pt;}
.y16a{bottom:607.818933pt;}
.y128{bottom:607.824267pt;}
.yb{bottom:607.944267pt;}
.y61{bottom:611.853733pt;}
.yb0{bottom:614.254933pt;}
.ye9{bottom:615.253733pt;}
.y89{bottom:617.067067pt;}
.y1b3{bottom:618.586267pt;}
.y169{bottom:621.150933pt;}
.y127{bottom:621.156267pt;}
.ya{bottom:622.608267pt;}
.y60{bottom:625.185733pt;}
.ye8{bottom:628.585733pt;}
.yaf{bottom:629.757600pt;}
.y1b2{bottom:629.916267pt;}
.y88{bottom:630.401733pt;}
.y126{bottom:634.488267pt;}
.y168{bottom:634.498933pt;}
.y5f{bottom:638.517733pt;}
.y1b1{bottom:641.246267pt;}
.y87{bottom:643.733733pt;}
.yae{bottom:645.260267pt;}
.y125{bottom:647.820267pt;}
.y167{bottom:647.830933pt;}
.y9{bottom:649.274933pt;}
.y5e{bottom:651.849733pt;}
.y1b0{bottom:652.576267pt;}
.y86{bottom:657.065733pt;}
.yad{bottom:660.762933pt;}
.y124{bottom:661.152267pt;}
.y166{bottom:661.162933pt;}
.y1af{bottom:663.906267pt;}
.y5d{bottom:665.181733pt;}
.y8{bottom:665.274933pt;}
.y32{bottom:673.018133pt;}
.y123{bottom:674.484267pt;}
.y165{bottom:674.494933pt;}
.y1ae{bottom:675.236267pt;}
.yac{bottom:676.265600pt;}
.y5c{bottom:678.513733pt;}
.y1ad{bottom:686.566267pt;}
.y122{bottom:687.822933pt;}
.y164{bottom:687.826933pt;}
.y31{bottom:691.684133pt;}
.yab{bottom:691.768267pt;}
.y5b{bottom:691.845733pt;}
.y7{bottom:694.592267pt;}
.y1ac{bottom:697.896267pt;}
.y1f1{bottom:699.161600pt;}
.y121{bottom:701.154933pt;}
.y163{bottom:701.158933pt;}
.y5a{bottom:705.177733pt;}
.yaa{bottom:707.270933pt;}
.y1ab{bottom:709.226267pt;}
.y30{bottom:710.350133pt;}
.y1f0{bottom:712.493600pt;}
.y120{bottom:714.486933pt;}
.y162{bottom:714.490933pt;}
.y59{bottom:718.509733pt;}
.y1aa{bottom:720.556267pt;}
.ya9{bottom:722.773600pt;}
.y1ef{bottom:725.825600pt;}
.y11f{bottom:727.818933pt;}
.y161{bottom:727.822933pt;}
.y58{bottom:731.841733pt;}
.y1a9{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.ya8{bottom:738.276267pt;}
.y1ee{bottom:739.157600pt;}
.y11e{bottom:741.150933pt;}
.y160{bottom:741.154933pt;}
.y1a8{bottom:743.216267pt;}
.y57{bottom:745.173733pt;}
.y1ed{bottom:752.489600pt;}
.ya7{bottom:753.778933pt;}
.y15f{bottom:754.486933pt;}
.y11d{bottom:754.498933pt;}
.y1a7{bottom:754.546267pt;}
.y56{bottom:758.505733pt;}
.y1ec{bottom:765.821600pt;}
.y1a6{bottom:765.876267pt;}
.y15e{bottom:767.818933pt;}
.y11c{bottom:767.830933pt;}
.ya6{bottom:769.281600pt;}
.y5{bottom:774.602933pt;}
.y1a5{bottom:777.206267pt;}
.y1eb{bottom:779.153600pt;}
.y15d{bottom:781.150933pt;}
.y11b{bottom:781.162933pt;}
.ya5{bottom:784.784267pt;}
.y1a4{bottom:788.536267pt;}
.y1ea{bottom:792.485600pt;}
.y15c{bottom:794.485600pt;}
.y11a{bottom:794.494933pt;}
.y1a3{bottom:799.866267pt;}
.ya4{bottom:800.286933pt;}
.y1e9{bottom:805.817600pt;}
.y15b{bottom:807.817600pt;}
.y119{bottom:807.826933pt;}
.y1a2{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.ya3{bottom:815.789600pt;}
.y1e8{bottom:819.149600pt;}
.y15a{bottom:821.153600pt;}
.y118{bottom:821.158933pt;}
.y1a1{bottom:822.526267pt;}
.y33{bottom:823.475200pt;}
.ya2{bottom:831.292267pt;}
.y1a0{bottom:833.856267pt;}
.y159{bottom:834.485600pt;}
.y117{bottom:834.490933pt;}
.y1e7{bottom:838.486933pt;}
.y19f{bottom:845.186267pt;}
.ya1{bottom:846.794933pt;}
.y158{bottom:847.817600pt;}
.y116{bottom:847.822933pt;}
.y1e6{bottom:851.818933pt;}
.y19e{bottom:856.516267pt;}
.y157{bottom:861.150933pt;}
.y115{bottom:861.154933pt;}
.ya0{bottom:862.297600pt;}
.y19d{bottom:867.846267pt;}
.y1e5{bottom:871.150933pt;}
.y114{bottom:874.486933pt;}
.y156{bottom:874.492267pt;}
.y9f{bottom:877.800267pt;}
.y19c{bottom:879.176267pt;}
.y113{bottom:887.818933pt;}
.y155{bottom:887.824267pt;}
.y1e4{bottom:890.482933pt;}
.y19b{bottom:890.506267pt;}
.y9e{bottom:893.302933pt;}
.y112{bottom:901.150933pt;}
.y154{bottom:901.156267pt;}
.y19a{bottom:901.836267pt;}
.y1e3{bottom:903.816267pt;}
.y9d{bottom:908.805600pt;}
.y199{bottom:913.166267pt;}
.y111{bottom:914.484267pt;}
.y153{bottom:914.488267pt;}
.y9c{bottom:924.308267pt;}
.y198{bottom:924.496267pt;}
.y110{bottom:927.817600pt;}
.y1e2{bottom:927.818933pt;}
.y152{bottom:927.820267pt;}
.y197{bottom:935.826267pt;}
.y9b{bottom:939.810933pt;}
.y10f{bottom:941.150933pt;}
.y151{bottom:941.152267pt;}
.y196{bottom:947.156267pt;}
.y10e{bottom:954.482933pt;}
.y150{bottom:954.484267pt;}
.y9a{bottom:955.313600pt;}
.y195{bottom:958.486267pt;}
.y10d{bottom:967.816267pt;}
.y194{bottom:969.816267pt;}
.y99{bottom:970.816267pt;}
.y34{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hb{height:21.193555pt;}
.h10{height:31.476562pt;}
.he{height:32.605469pt;}
.h9{height:34.523438pt;}
.hd{height:36.585555pt;}
.h16{height:36.922667pt;}
.h17{height:37.408000pt;}
.h15{height:38.229333pt;}
.h4{height:39.318359pt;}
.h1c{height:39.560000pt;}
.h1d{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1b{height:40.960000pt;}
.h19{height:42.195312pt;}
.hc{height:43.120594pt;}
.hf{height:43.141927pt;}
.h8{height:45.703125pt;}
.ha{height:47.472000pt;}
.h1a{height:48.085333pt;}
.h12{height:48.096000pt;}
.h13{height:49.152000pt;}
.h2{height:50.755208pt;}
.h7{height:50.781250pt;}
.h14{height:55.859375pt;}
.h18{height:56.933333pt;}
.h11{height:69.046875pt;}
.h6{height:99.734375pt;}
.h5{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:12.513867pt;}
.x2{left:54.392400pt;}
.x7{left:125.291333pt;}
.x4{left:207.516800pt;}
.xb{left:211.691200pt;}
.x5{left:223.512800pt;}
.xd{left:267.195200pt;}
.xa{left:316.635200pt;}
.x9{left:373.027200pt;}
.x3{left:519.632533pt;}
.xc{left:725.336533pt;}
.x8{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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