
    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_af4d8dd82e39a54ead721bfb.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_6a8e0a3d24dbaf3fd12f6e31.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_d478c7b072537c58a2b5a1f1.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_9a6a506fd49a2745ec0db83a.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_a38efa26fd30f0f9f58d0f94.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_70f50d354110dbb9495f507d.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_e5ba0524c4e619fce499f0ea.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_f2367fda13cb3eb4930fb5cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.268000;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_2f32c620b2ccfd8214f0f9a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ba922795f88a9d2c6005aa6e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_db341347fc7cf6417bcc9c17.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4b79b6c7f81c195cda596974.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d4a13480789f0e7f111ea899.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_f575a951fa1ed72feaa9972a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6a8e0a3d24dbaf3fd12f6e31.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d478c7b072537c58a2b5a1f1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_06ef4ec1f360b6e5af1aac9e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9c58097766261ab9e14b6fec.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_574a869e93996a41e58da9fe.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_dcc1836293529d1aed645c26.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0d6d10a12e448dfebeb32221.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_4ab6c86d8aeebdcfbc6736c2.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_4bd5ba5869f467c318501ed0.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_dcc1836293529d1aed645c26.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_0d6d10a12e448dfebeb32221.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_4ab6c86d8aeebdcfbc6736c2.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_3a40bbf63b7fb53cb6b7f294.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_dcc1836293529d1aed645c26.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_0d6d10a12e448dfebeb32221.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_4ab6c86d8aeebdcfbc6736c2.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_a38efa26fd30f0f9f58d0f94.woff2')format("woff");}.ff22{font-family:ff22;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.400600px;}
.v6{vertical-align:-18.360000px;}
.v7{vertical-align:-17.340000px;}
.v4{vertical-align:-10.806000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.800000px;}
.v8{vertical-align:17.316000px;}
.v3{vertical-align:18.324000px;}
.v1{vertical-align:20.400600px;}
.ls62{letter-spacing:-2.457000px;}
.ls58{letter-spacing:-2.386800px;}
.ls5a{letter-spacing:-2.316600px;}
.ls59{letter-spacing:-2.246400px;}
.ls21{letter-spacing:-2.211300px;}
.ls61{letter-spacing:-2.176200px;}
.ls65{letter-spacing:-2.141100px;}
.ls1e{letter-spacing:-1.965600px;}
.ls83{letter-spacing:-1.350000px;}
.ls92{letter-spacing:-1.305000px;}
.ls60{letter-spacing:-0.972000px;}
.ls19{letter-spacing:-0.960000px;}
.ls64{letter-spacing:-0.864000px;}
.ls96{letter-spacing:-0.765000px;}
.ls91{letter-spacing:-0.630000px;}
.ls35{letter-spacing:-0.594000px;}
.ls8e{letter-spacing:-0.585000px;}
.ls98{letter-spacing:-0.495000px;}
.ls81{letter-spacing:-0.450000px;}
.ls9c{letter-spacing:-0.432000px;}
.ls99{letter-spacing:-0.405000px;}
.ls44{letter-spacing:-0.378000px;}
.ls9a{letter-spacing:-0.360000px;}
.ls50{letter-spacing:-0.324000px;}
.ls90{letter-spacing:-0.315000px;}
.ls37{letter-spacing:-0.270000px;}
.ls95{letter-spacing:-0.225000px;}
.ls45{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.204000px;}
.ls84{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.162000px;}
.ls63{letter-spacing:-0.140400px;}
.ls93{letter-spacing:-0.135000px;}
.ls34{letter-spacing:-0.108000px;}
.ls43{letter-spacing:-0.105300px;}
.ls82{letter-spacing:-0.090000px;}
.ls2f{letter-spacing:-0.060000px;}
.ls1f{letter-spacing:-0.054000px;}
.ls97{letter-spacing:-0.045000px;}
.ls6b{letter-spacing:-0.035100px;}
.ls18{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004800px;}
.ls3{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.013800px;}
.ls54{letter-spacing:0.014400px;}
.ls3e{letter-spacing:0.018000px;}
.ls77{letter-spacing:0.021600px;}
.ls4a{letter-spacing:0.033300px;}
.ls73{letter-spacing:0.033600px;}
.ls48{letter-spacing:0.034800px;}
.ls2e{letter-spacing:0.035100px;}
.ls85{letter-spacing:0.045000px;}
.ls2a{letter-spacing:0.054000px;}
.ls7f{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.063600px;}
.ls2c{letter-spacing:0.070200px;}
.ls56{letter-spacing:0.075000px;}
.ls52{letter-spacing:0.078000px;}
.ls76{letter-spacing:0.080400px;}
.ls57{letter-spacing:0.087600px;}
.ls88{letter-spacing:0.090000px;}
.lse{letter-spacing:0.098400px;}
.ls5f{letter-spacing:0.105300px;}
.ls1a{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.108600px;}
.ls79{letter-spacing:0.111000px;}
.ls55{letter-spacing:0.112200px;}
.ls8a{letter-spacing:0.135000px;}
.ls2d{letter-spacing:0.140400px;}
.ls51{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.162000px;}
.ls39{letter-spacing:0.167400px;}
.ls3c{letter-spacing:0.175500px;}
.ls40{letter-spacing:0.180000px;}
.ls7b{letter-spacing:0.186000px;}
.lsf{letter-spacing:0.191400px;}
.ls53{letter-spacing:0.192000px;}
.ls78{letter-spacing:0.205200px;}
.ls10{letter-spacing:0.210600px;}
.ls20{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.225900px;}
.ls7a{letter-spacing:0.229200px;}
.ls6c{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.245700px;}
.ls4b{letter-spacing:0.250200px;}
.ls29{letter-spacing:0.251400px;}
.ls11{letter-spacing:0.258600px;}
.ls67{letter-spacing:0.261000px;}
.lsc{letter-spacing:0.261300px;}
.ls9{letter-spacing:0.265500px;}
.ls5e{letter-spacing:0.268200px;}
.ls33{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.280800px;}
.ls5d{letter-spacing:0.282600px;}
.ls4f{letter-spacing:0.287100px;}
.ls8{letter-spacing:0.289800px;}
.ls6e{letter-spacing:0.290400px;}
.ls6f{letter-spacing:0.291000px;}
.ls5c{letter-spacing:0.295200px;}
.ls74{letter-spacing:0.297000px;}
.ls6{letter-spacing:0.298800px;}
.ls3a{letter-spacing:0.300000px;}
.ls7c{letter-spacing:0.315000px;}
.ls12{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.325050px;}
.ls66{letter-spacing:0.351000px;}
.ls89{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378000px;}
.ls4c{letter-spacing:0.386100px;}
.ls72{letter-spacing:0.406800px;}
.ls6d{letter-spacing:0.427200px;}
.ls5{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.439050px;}
.ls8c{letter-spacing:0.450000px;}
.ls71{letter-spacing:0.469800px;}
.ls14{letter-spacing:0.474450px;}
.ls4e{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.486000px;}
.ls94{letter-spacing:0.495000px;}
.ls16{letter-spacing:0.510000px;}
.ls3f{letter-spacing:0.513000px;}
.ls1d{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.594000px;}
.ls6a{letter-spacing:0.600000px;}
.ls80{letter-spacing:0.630000px;}
.ls75{letter-spacing:0.642600px;}
.ls4d{letter-spacing:0.648000px;}
.ls86{letter-spacing:0.675000px;}
.ls8b{letter-spacing:0.697500px;}
.ls36{letter-spacing:0.702000px;}
.ls22{letter-spacing:0.714000px;}
.ls87{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.737100px;}
.ls47{letter-spacing:0.756000px;}
.ls15{letter-spacing:0.765000px;}
.ls38{letter-spacing:0.783000px;}
.ls41{letter-spacing:0.810000px;}
.ls27{letter-spacing:0.835800px;}
.ls8f{letter-spacing:0.855000px;}
.ls5b{letter-spacing:0.918000px;}
.ls8d{letter-spacing:0.945000px;}
.ls31{letter-spacing:0.960000px;}
.ls32{letter-spacing:0.972000px;}
.ls24{letter-spacing:1.020000px;}
.ls9b{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.134000px;}
.ls26{letter-spacing:1.188000px;}
.ls46{letter-spacing:1.242000px;}
.ls3b{letter-spacing:1.260000px;}
.ls70{letter-spacing:1.350000px;}
.ls68{letter-spacing:1.404000px;}
.ls7e{letter-spacing:1.512000px;}
.ls69{letter-spacing:1.566000px;}
.ls0{letter-spacing:2.592000px;}
.ls25{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls7d{letter-spacing:6.120000px;}
.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;}
.ws2b{word-spacing:-14.700000px;}
.ws30{word-spacing:-13.596000px;}
.ws4a{word-spacing:-13.500000px;}
.ws4c{word-spacing:-13.014000px;}
.ws5b{word-spacing:-12.906000px;}
.ws74{word-spacing:-12.636000px;}
.ws1{word-spacing:-12.480000px;}
.ws69{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws9{word-spacing:-12.258000px;}
.ws31{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws3f{word-spacing:-12.150000px;}
.ws48{word-spacing:-12.096000px;}
.ws6a{word-spacing:-12.042000px;}
.ws6d{word-spacing:-11.286000px;}
.ws7c{word-spacing:-11.250000px;}
.wsc{word-spacing:-10.710000px;}
.wsa1{word-spacing:-10.620000px;}
.ws8a{word-spacing:-10.305000px;}
.ws7b{word-spacing:-10.215000px;}
.wsd{word-spacing:-10.200000px;}
.ws7d{word-spacing:-10.125000px;}
.ws8c{word-spacing:-9.990000px;}
.ws7a{word-spacing:-9.855000px;}
.ws9a{word-spacing:-9.765000px;}
.wsa5{word-spacing:-9.720000px;}
.ws95{word-spacing:-9.675000px;}
.ws92{word-spacing:-9.585000px;}
.ws8b{word-spacing:-9.540000px;}
.wsa4{word-spacing:-9.495000px;}
.ws4{word-spacing:-8.775000px;}
.ws2c{word-spacing:-8.704800px;}
.ws5a{word-spacing:-8.353800px;}
.ws8{word-spacing:-8.248500px;}
.ws5c{word-spacing:-8.213400px;}
.wsa{word-spacing:-8.178300px;}
.ws4b{word-spacing:-8.143200px;}
.ws2e{word-spacing:-8.108100px;}
.ws6c{word-spacing:-8.073000px;}
.ws2d{word-spacing:-8.037900px;}
.ws2f{word-spacing:-8.002800px;}
.ws7{word-spacing:-7.967700px;}
.ws75{word-spacing:-7.932600px;}
.ws49{word-spacing:-7.862400px;}
.ws70{word-spacing:-7.827300px;}
.wsb{word-spacing:-6.630000px;}
.ws7e{word-spacing:-6.120000px;}
.ws5{word-spacing:-6.002100px;}
.ws71{word-spacing:-5.826600px;}
.ws6e{word-spacing:-5.791500px;}
.ws6{word-spacing:-5.756400px;}
.ws67{word-spacing:-5.721300px;}
.ws68{word-spacing:-5.651100px;}
.ws66{word-spacing:-5.580900px;}
.ws6f{word-spacing:-5.510700px;}
.ws3e{word-spacing:-5.508000px;}
.wsa9{word-spacing:-3.960000px;}
.ws12{word-spacing:-3.840000px;}
.ws11{word-spacing:-3.600000px;}
.ws10{word-spacing:-3.276000px;}
.ws65{word-spacing:-1.998000px;}
.ws43{word-spacing:-1.890000px;}
.ws3b{word-spacing:-1.860000px;}
.ws21{word-spacing:-1.836000px;}
.ws58{word-spacing:-1.782000px;}
.ws5d{word-spacing:-1.728000px;}
.ws64{word-spacing:-1.674000px;}
.ws9d{word-spacing:-1.665000px;}
.ws9c{word-spacing:-1.620000px;}
.ws27{word-spacing:-1.581000px;}
.ws86{word-spacing:-1.575000px;}
.ws52{word-spacing:-1.566000px;}
.ws85{word-spacing:-1.530000px;}
.ws34{word-spacing:-1.512000px;}
.ws9f{word-spacing:-1.485000px;}
.ws4f{word-spacing:-1.458000px;}
.ws44{word-spacing:-1.404000px;}
.ws3a{word-spacing:-1.350000px;}
.ws62{word-spacing:-1.296000px;}
.ws2a{word-spacing:-1.275000px;}
.ws13{word-spacing:-1.260000px;}
.ws1e{word-spacing:-1.242000px;}
.ws3d{word-spacing:-1.188000px;}
.ws14{word-spacing:-1.134000px;}
.ws76{word-spacing:-1.080000px;}
.ws84{word-spacing:-1.035000px;}
.ws40{word-spacing:-1.026000px;}
.ws9e{word-spacing:-0.990000px;}
.ws59{word-spacing:-0.972000px;}
.ws45{word-spacing:-0.918000px;}
.ws87{word-spacing:-0.900000px;}
.ws3c{word-spacing:-0.864000px;}
.ws9b{word-spacing:-0.855000px;}
.ws39{word-spacing:-0.810000px;}
.ws73{word-spacing:-0.756000px;}
.ws94{word-spacing:-0.720000px;}
.ws47{word-spacing:-0.702000px;}
.wsa3{word-spacing:-0.675000px;}
.ws4d{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.648000px;}
.wsa7{word-spacing:-0.630000px;}
.ws79{word-spacing:-0.600000px;}
.ws17{word-spacing:-0.594000px;}
.ws90{word-spacing:-0.585000px;}
.ws1f{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.510000px;}
.ws8d{word-spacing:-0.495000px;}
.ws53{word-spacing:-0.486000px;}
.ws55{word-spacing:-0.480000px;}
.ws8e{word-spacing:-0.450000px;}
.ws22{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.408000px;}
.ws1d{word-spacing:-0.378000px;}
.ws1a{word-spacing:-0.324000px;}
.ws89{word-spacing:-0.315000px;}
.ws1b{word-spacing:-0.280800px;}
.ws38{word-spacing:-0.270000px;}
.ws63{word-spacing:-0.245700px;}
.ws18{word-spacing:-0.216000px;}
.ws98{word-spacing:-0.180000px;}
.ws1c{word-spacing:-0.162000px;}
.ws35{word-spacing:-0.140400px;}
.ws36{word-spacing:-0.108000px;}
.wsa6{word-spacing:-0.090000px;}
.ws60{word-spacing:-0.060000px;}
.ws54{word-spacing:-0.054000px;}
.ws97{word-spacing:-0.045000px;}
.ws37{word-spacing:-0.035100px;}
.wse{word-spacing:0.000000px;}
.ws51{word-spacing:0.054000px;}
.ws19{word-spacing:0.108000px;}
.ws99{word-spacing:0.135000px;}
.ws61{word-spacing:0.162000px;}
.ws29{word-spacing:0.204000px;}
.ws6b{word-spacing:0.216000px;}
.ws96{word-spacing:0.225000px;}
.ws82{word-spacing:0.240000px;}
.ws16{word-spacing:0.270000px;}
.ws88{word-spacing:0.315000px;}
.ws20{word-spacing:0.324000px;}
.ws50{word-spacing:0.378000px;}
.wsa2{word-spacing:0.405000px;}
.ws5e{word-spacing:0.432000px;}
.ws46{word-spacing:0.486000px;}
.ws80{word-spacing:0.594000px;}
.ws23{word-spacing:0.663000px;}
.ws8f{word-spacing:0.675000px;}
.ws5f{word-spacing:0.702000px;}
.ws4e{word-spacing:0.756000px;}
.ws25{word-spacing:0.816000px;}
.ws93{word-spacing:0.855000px;}
.ws83{word-spacing:0.945000px;}
.wsf{word-spacing:0.960000px;}
.ws91{word-spacing:1.035000px;}
.ws81{word-spacing:1.080000px;}
.ws72{word-spacing:1.134000px;}
.ws42{word-spacing:1.188000px;}
.ws41{word-spacing:1.200000px;}
.wsa0{word-spacing:1.305000px;}
.wsa8{word-spacing:1.404000px;}
.ws28{word-spacing:1.479000px;}
.ws33{word-spacing:1.620000px;}
.ws32{word-spacing:1.674000px;}
.ws78{word-spacing:1.782000px;}
.ws57{word-spacing:1.836000px;}
.ws56{word-spacing:1.860000px;}
.ws77{word-spacing:2.376000px;}
.ws7f{word-spacing:2.538000px;}
._16{margin-left:-11.565000px;}
._4{margin-left:-9.859800px;}
._c{margin-left:-7.893600px;}
._b{margin-left:-6.498000px;}
._7{margin-left:-5.464200px;}
._6{margin-left:-4.408800px;}
._2{margin-left:-3.123000px;}
._0{margin-left:-1.776000px;}
._5{width:1.006200px;}
._1{width:2.805000px;}
._d{width:4.563000px;}
._12{width:6.321000px;}
._14{width:7.965000px;}
._11{width:10.215000px;}
._15{width:11.970000px;}
._13{width:13.545000px;}
._9{width:15.282000px;}
._17{width:17.730000px;}
._10{width:41.485800px;}
._3{width:43.011000px;}
._f{width:45.063000px;}
._a{width:46.654800px;}
._e{width:48.577800px;}
._8{width:49.843200px;}
.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: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;}
.y31{bottom:68.319900px;}
.ya5{bottom:68.554500px;}
.y87{bottom:68.556000px;}
.y4d{bottom:68.557500px;}
.y14a{bottom:68.557800px;}
.y184{bottom:68.583750px;}
.y1d5{bottom:71.343300px;}
.y69{bottom:76.312800px;}
.yd7{bottom:79.605450px;}
.y183{bottom:81.330000px;}
.y30{bottom:83.313900px;}
.ya4{bottom:83.553000px;}
.y86{bottom:83.554500px;}
.y4c{bottom:83.556000px;}
.y149{bottom:83.556300px;}
.y1d4{bottom:84.089550px;}
.y68{bottom:91.311300px;}
.y182{bottom:94.076250px;}
.yd6{bottom:94.606950px;}
.y101{bottom:95.799300px;}
.y1d3{bottom:96.835800px;}
.y2f{bottom:98.307900px;}
.ya3{bottom:98.551500px;}
.y85{bottom:98.553000px;}
.y4b{bottom:98.554500px;}
.y67{bottom:106.309800px;}
.y181{bottom:106.822500px;}
.y1d2{bottom:109.582050px;}
.yd5{bottom:109.605450px;}
.y100{bottom:110.797800px;}
.y2e{bottom:113.307900px;}
.y84{bottom:113.551500px;}
.y4a{bottom:113.553000px;}
.ya2{bottom:113.556000px;}
.y148{bottom:115.645800px;}
.y180{bottom:119.568750px;}
.y66{bottom:121.308300px;}
.y1d1{bottom:122.328300px;}
.yd4{bottom:124.605450px;}
.yff{bottom:125.796300px;}
.y2d{bottom:128.307900px;}
.y49{bottom:128.551500px;}
.y83{bottom:128.553000px;}
.ya1{bottom:128.554500px;}
.y147{bottom:130.644300px;}
.y17f{bottom:132.315000px;}
.ybb{bottom:133.296300px;}
.y1d0{bottom:135.074550px;}
.y65{bottom:136.306800px;}
.yd3{bottom:139.603950px;}
.yfe{bottom:140.794800px;}
.y2c{bottom:143.307900px;}
.y48{bottom:143.550000px;}
.y82{bottom:143.551500px;}
.ya0{bottom:143.553000px;}
.y17e{bottom:145.061250px;}
.y146{bottom:145.642800px;}
.y1cf{bottom:147.820800px;}
.yba{bottom:148.294800px;}
.y64{bottom:151.305300px;}
.yfd{bottom:155.796300px;}
.y17d{bottom:157.807500px;}
.y47{bottom:158.550000px;}
.y81{bottom:158.551500px;}
.y1ce{bottom:160.567050px;}
.y145{bottom:160.641300px;}
.y2b{bottom:162.636900px;}
.yb9{bottom:163.294800px;}
.y63{bottom:166.303800px;}
.y17c{bottom:170.553750px;}
.yfc{bottom:170.794800px;}
.y1cd{bottom:173.313300px;}
.y9f{bottom:173.550000px;}
.y80{bottom:173.551500px;}
.y144{bottom:175.639800px;}
.yb8{bottom:178.294800px;}
.y62{bottom:181.302300px;}
.y17b{bottom:183.300000px;}
.yfb{bottom:185.800800px;}
.y1cc{bottom:186.059550px;}
.y46{bottom:186.549300px;}
.y7f{bottom:188.550000px;}
.y143{bottom:190.638300px;}
.yb7{bottom:193.294800px;}
.y17a{bottom:196.050000px;}
.y61{bottom:196.300800px;}
.y2a{bottom:198.685800px;}
.y1cb{bottom:198.805800px;}
.yfa{bottom:200.799300px;}
.y45{bottom:201.547800px;}
.y9e{bottom:203.055300px;}
.y7e{bottom:203.550000px;}
.y142{bottom:205.636800px;}
.yb6{bottom:208.294800px;}
.y60{bottom:211.299300px;}
.y1ca{bottom:211.552050px;}
.y29{bottom:213.687300px;}
.yf9{bottom:215.797800px;}
.y44{bottom:216.546300px;}
.y9d{bottom:218.053800px;}
.y141{bottom:220.635300px;}
.yb5{bottom:223.294800px;}
.y1c9{bottom:224.298300px;}
.y179{bottom:224.604600px;}
.y5f{bottom:226.297800px;}
.y28{bottom:228.685800px;}
.yf8{bottom:230.796300px;}
.y43{bottom:231.544800px;}
.y7d{bottom:232.303800px;}
.y9c{bottom:233.052300px;}
.y140{bottom:235.633800px;}
.y1c8{bottom:237.044550px;}
.yb4{bottom:238.293300px;}
.y178{bottom:239.603100px;}
.y5e{bottom:241.296300px;}
.y27{bottom:243.685800px;}
.yf7{bottom:245.794800px;}
.y42{bottom:246.546300px;}
.y7c{bottom:247.302300px;}
.y9b{bottom:248.050800px;}
.y1c7{bottom:249.790800px;}
.y177{bottom:254.601600px;}
.y5d{bottom:256.294800px;}
.y26{bottom:258.685800px;}
.yf6{bottom:260.802300px;}
.y41{bottom:261.544800px;}
.y7b{bottom:262.300800px;}
.y1c6{bottom:262.537050px;}
.y9a{bottom:263.049300px;}
.y13f{bottom:265.024800px;}
.y176{bottom:269.600100px;}
.y5c{bottom:271.297800px;}
.y25{bottom:273.685800px;}
.y1c5{bottom:275.283300px;}
.yf5{bottom:275.800800px;}
.y40{bottom:276.544800px;}
.y7a{bottom:277.299300px;}
.y99{bottom:278.047800px;}
.y13e{bottom:280.023300px;}
.y175{bottom:284.598600px;}
.y5b{bottom:286.296300px;}
.y1c4{bottom:288.029550px;}
.y24{bottom:288.687300px;}
.yf4{bottom:290.799300px;}
.y3f{bottom:291.544800px;}
.y79{bottom:292.297800px;}
.y98{bottom:293.046300px;}
.y13d{bottom:295.021800px;}
.ycb{bottom:296.760450px;}
.y1c3{bottom:300.775800px;}
.y5a{bottom:301.294800px;}
.y23{bottom:303.685800px;}
.yf3{bottom:305.797800px;}
.y3e{bottom:306.546300px;}
.y78{bottom:307.296300px;}
.y97{bottom:308.044800px;}
.y13c{bottom:310.026300px;}
.yca{bottom:311.766450px;}
.y174{bottom:313.150350px;}
.y1c2{bottom:313.522050px;}
.y59{bottom:316.293300px;}
.y22{bottom:318.685800px;}
.yf2{bottom:320.796300px;}
.y3d{bottom:321.544800px;}
.y77{bottom:322.294800px;}
.y96{bottom:323.049300px;}
.y13b{bottom:325.024800px;}
.y1c1{bottom:326.268300px;}
.yc9{bottom:326.764950px;}
.y173{bottom:328.148850px;}
.y21{bottom:333.687300px;}
.yf1{bottom:335.794800px;}
.y3c{bottom:336.546300px;}
.y76{bottom:337.296300px;}
.y95{bottom:338.047800px;}
.y1c0{bottom:339.014550px;}
.y13a{bottom:340.023300px;}
.yc8{bottom:341.763450px;}
.y172{bottom:343.148850px;}
.y20{bottom:348.685800px;}
.y58{bottom:349.294800px;}
.yf0{bottom:350.800800px;}
.y3b{bottom:351.544800px;}
.y1bf{bottom:351.760800px;}
.y75{bottom:352.294800px;}
.y94{bottom:353.046300px;}
.y139{bottom:355.021800px;}
.yc7{bottom:356.761950px;}
.y171{bottom:358.153350px;}
.y1f{bottom:363.685800px;}
.y57{bottom:364.293300px;}
.y1be{bottom:364.507050px;}
.yef{bottom:365.799300px;}
.y3a{bottom:366.544800px;}
.y74{bottom:367.299300px;}
.y93{bottom:368.044800px;}
.y138{bottom:370.020300px;}
.yc6{bottom:371.760450px;}
.y170{bottom:373.151850px;}
.y1bd{bottom:377.253300px;}
.y1e{bottom:378.685800px;}
.yee{bottom:380.797800px;}
.y39{bottom:381.544800px;}
.y73{bottom:382.297800px;}
.y92{bottom:383.049300px;}
.yc5{bottom:386.764950px;}
.y16f{bottom:388.150350px;}
.y1bc{bottom:389.999550px;}
.y1d{bottom:393.685800px;}
.yed{bottom:395.796300px;}
.y38{bottom:396.544800px;}
.y72{bottom:397.296300px;}
.y91{bottom:398.047800px;}
.y137{bottom:399.411300px;}
.yc4{bottom:401.763450px;}
.y1bb{bottom:402.745800px;}
.y16e{bottom:403.148850px;}
.y1c{bottom:408.721800px;}
.yec{bottom:410.794800px;}
.y37{bottom:411.543300px;}
.y71{bottom:412.294800px;}
.y90{bottom:413.046300px;}
.y6f{bottom:413.646450px;}
.y136{bottom:414.409800px;}
.y1ba{bottom:415.492050px;}
.yc3{bottom:416.761950px;}
.y16d{bottom:418.148850px;}
.y1b{bottom:423.720300px;}
.yeb{bottom:425.796300px;}
.y70{bottom:427.293300px;}
.y8f{bottom:428.044800px;}
.y1b9{bottom:428.238300px;}
.y6e{bottom:428.644950px;}
.y135{bottom:429.408300px;}
.yc2{bottom:431.760450px;}
.y16c{bottom:433.150350px;}
.y1a{bottom:438.718800px;}
.yea{bottom:440.794800px;}
.y1b8{bottom:440.984550px;}
.y8e{bottom:443.043300px;}
.y6d{bottom:443.643450px;}
.y134{bottom:444.406800px;}
.yc1{bottom:446.761950px;}
.y16b{bottom:448.148850px;}
.y19{bottom:453.717300px;}
.y1b7{bottom:453.730800px;}
.ye9{bottom:455.797800px;}
.y6c{bottom:458.641950px;}
.y133{bottom:459.406800px;}
.y56{bottom:460.803450px;}
.yc0{bottom:461.760450px;}
.y16a{bottom:463.148850px;}
.y1b6{bottom:466.477050px;}
.y18{bottom:468.715800px;}
.ye8{bottom:470.796300px;}
.y6b{bottom:473.640450px;}
.y55{bottom:475.801950px;}
.ybf{bottom:476.761950px;}
.y8d{bottom:477.366450px;}
.y169{bottom:478.148850px;}
.y1b5{bottom:479.223300px;}
.y17{bottom:483.714300px;}
.ye7{bottom:485.794800px;}
.y6a{bottom:488.638950px;}
.y132{bottom:488.794800px;}
.y54{bottom:490.800450px;}
.ybe{bottom:491.760450px;}
.y1b4{bottom:491.969550px;}
.yb3{bottom:492.192450px;}
.y8c{bottom:492.364950px;}
.y168{bottom:493.147350px;}
.ye6{bottom:500.796300px;}
.y131{bottom:503.805300px;}
.y1b3{bottom:504.715800px;}
.y53{bottom:505.800450px;}
.ybd{bottom:506.760450px;}
.yb2{bottom:507.190950px;}
.y8b{bottom:507.363450px;}
.ye5{bottom:515.794800px;}
.y1b2{bottom:517.462050px;}
.y130{bottom:518.803800px;}
.y52{bottom:520.804950px;}
.y167{bottom:521.704950px;}
.ybc{bottom:521.758950px;}
.yb1{bottom:522.189450px;}
.y8a{bottom:522.361950px;}
.y1b1{bottom:530.208300px;}
.ye4{bottom:530.794800px;}
.y16{bottom:530.964300px;}
.y12f{bottom:533.802300px;}
.y51{bottom:535.803450px;}
.y166{bottom:536.703450px;}
.yb0{bottom:537.187950px;}
.y89{bottom:537.360450px;}
.y1b0{bottom:542.954550px;}
.ye3{bottom:545.796300px;}
.y15{bottom:547.461300px;}
.y12e{bottom:548.800800px;}
.y50{bottom:550.801950px;}
.y165{bottom:551.701950px;}
.yaf{bottom:552.186450px;}
.y88{bottom:552.358950px;}
.y1af{bottom:555.700800px;}
.ye2{bottom:560.794800px;}
.y12d{bottom:563.799300px;}
.y14{bottom:563.958300px;}
.y4f{bottom:565.800450px;}
.y164{bottom:566.700450px;}
.yae{bottom:567.184950px;}
.y1ae{bottom:568.447050px;}
.ye1{bottom:575.800800px;}
.y12c{bottom:578.797800px;}
.y13{bottom:580.455300px;}
.y4e{bottom:580.798950px;}
.y1ad{bottom:581.193300px;}
.y163{bottom:581.698950px;}
.yad{bottom:582.183450px;}
.ye0{bottom:590.799300px;}
.y12b{bottom:593.796300px;}
.y1ac{bottom:593.939550px;}
.y162{bottom:596.697450px;}
.y12{bottom:596.952300px;}
.yac{bottom:597.181950px;}
.ydf{bottom:605.797800px;}
.y1ab{bottom:606.685800px;}
.y12a{bottom:608.794800px;}
.y161{bottom:611.697450px;}
.yab{bottom:612.180450px;}
.y11{bottom:613.449300px;}
.y1aa{bottom:619.432050px;}
.yde{bottom:620.796300px;}
.y129{bottom:623.794800px;}
.y160{bottom:626.695950px;}
.yaa{bottom:627.184950px;}
.y10{bottom:629.946300px;}
.y1a9{bottom:632.178300px;}
.ydd{bottom:635.794800px;}
.y128{bottom:638.794800px;}
.ya9{bottom:642.183450px;}
.y1a8{bottom:644.924550px;}
.yf{bottom:646.443300px;}
.ydc{bottom:650.797800px;}
.y127{bottom:653.811300px;}
.y15f{bottom:655.247550px;}
.ya8{bottom:657.181950px;}
.y1a7{bottom:657.670800px;}
.ye{bottom:662.940300px;}
.ydb{bottom:665.796300px;}
.y126{bottom:668.809800px;}
.y1ee{bottom:669.552300px;}
.y15e{bottom:670.246050px;}
.y1a6{bottom:670.417050px;}
.ya7{bottom:672.180450px;}
.yd{bottom:679.437300px;}
.yda{bottom:680.794800px;}
.y1a5{bottom:683.163300px;}
.y125{bottom:683.808300px;}
.y1ed{bottom:684.550800px;}
.y15d{bottom:685.250550px;}
.ya6{bottom:687.178950px;}
.yd9{bottom:695.793300px;}
.y1a4{bottom:695.909550px;}
.yc{bottom:695.943300px;}
.y124{bottom:698.806800px;}
.y1ec{bottom:699.549300px;}
.yd2{bottom:700.141950px;}
.y15c{bottom:700.249050px;}
.y1a3{bottom:708.655800px;}
.yd8{bottom:710.793300px;}
.yb{bottom:712.440300px;}
.y123{bottom:713.805300px;}
.y1eb{bottom:714.547800px;}
.yd1{bottom:715.140450px;}
.y15b{bottom:715.247550px;}
.y1a2{bottom:721.402050px;}
.y122{bottom:728.803800px;}
.ya{bottom:728.937300px;}
.y1ea{bottom:729.546300px;}
.yd0{bottom:730.141950px;}
.y15a{bottom:730.246050px;}
.y1a1{bottom:734.148300px;}
.y121{bottom:743.802300px;}
.y1e9{bottom:744.544800px;}
.ycf{bottom:745.140450px;}
.y159{bottom:745.246050px;}
.y9{bottom:745.434300px;}
.y1a0{bottom:746.894550px;}
.y34{bottom:757.151400px;}
.y120{bottom:758.800800px;}
.y1e8{bottom:759.543300px;}
.y19f{bottom:759.640800px;}
.yce{bottom:760.141950px;}
.y158{bottom:760.246050px;}
.y19e{bottom:772.387050px;}
.y109{bottom:772.629450px;}
.y11f{bottom:773.799300px;}
.ycd{bottom:775.140450px;}
.y157{bottom:775.252050px;}
.y8{bottom:775.434300px;}
.y33{bottom:778.150650px;}
.y1e7{bottom:781.297800px;}
.y19d{bottom:785.133300px;}
.y108{bottom:787.627950px;}
.y11e{bottom:788.797800px;}
.ycc{bottom:790.138950px;}
.y156{bottom:790.250550px;}
.y7{bottom:793.434300px;}
.y1e6{bottom:796.296300px;}
.y19c{bottom:797.879550px;}
.y32{bottom:799.149900px;}
.y107{bottom:802.626450px;}
.y11d{bottom:803.796300px;}
.y155{bottom:805.249050px;}
.y19b{bottom:810.625800px;}
.y106{bottom:817.624950px;}
.y1e5{bottom:818.044800px;}
.y11c{bottom:818.794800px;}
.y154{bottom:820.247550px;}
.y19a{bottom:823.372050px;}
.y6{bottom:826.422300px;}
.y105{bottom:832.623450px;}
.y11b{bottom:833.796300px;}
.y153{bottom:835.246050px;}
.y199{bottom:836.118300px;}
.y1e4{bottom:839.793300px;}
.y104{bottom:847.621950px;}
.y11a{bottom:848.794800px;}
.y198{bottom:848.864550px;}
.y152{bottom:850.249050px;}
.y1e3{bottom:854.793300px;}
.y197{bottom:861.610800px;}
.y103{bottom:862.620450px;}
.y119{bottom:863.799300px;}
.y151{bottom:865.247550px;}
.y5{bottom:871.428300px;}
.y196{bottom:874.357050px;}
.y102{bottom:877.618950px;}
.y118{bottom:878.797800px;}
.y150{bottom:880.246050px;}
.y1e2{bottom:881.797800px;}
.y195{bottom:887.103300px;}
.y117{bottom:893.796300px;}
.y14f{bottom:895.247550px;}
.y1e1{bottom:896.796300px;}
.y194{bottom:899.849550px;}
.y116{bottom:908.794800px;}
.y14e{bottom:910.246050px;}
.y1e0{bottom:911.794800px;}
.y193{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y115{bottom:923.794800px;}
.y14d{bottom:925.244550px;}
.y192{bottom:925.342050px;}
.y35{bottom:926.409600px;}
.y1df{bottom:926.793300px;}
.y191{bottom:938.088300px;}
.y114{bottom:938.808300px;}
.y1de{bottom:941.793300px;}
.y190{bottom:950.834550px;}
.y14c{bottom:953.796300px;}
.y113{bottom:953.806800px;}
.y18f{bottom:963.580800px;}
.y14b{bottom:968.794800px;}
.y1dd{bottom:968.803800px;}
.y112{bottom:968.805300px;}
.y18e{bottom:976.327050px;}
.y1dc{bottom:983.802300px;}
.y111{bottom:983.803800px;}
.y18d{bottom:989.073300px;}
.y1db{bottom:998.800800px;}
.y110{bottom:998.802300px;}
.y18c{bottom:1001.819550px;}
.y1da{bottom:1013.799300px;}
.y10f{bottom:1013.800800px;}
.y18b{bottom:1014.565800px;}
.y18a{bottom:1027.312050px;}
.y1d9{bottom:1028.797800px;}
.y10e{bottom:1028.799300px;}
.y189{bottom:1040.058300px;}
.y1d8{bottom:1043.796300px;}
.y10d{bottom:1043.797800px;}
.y188{bottom:1052.804550px;}
.y1d7{bottom:1058.794800px;}
.y10c{bottom:1058.796300px;}
.y187{bottom:1065.550800px;}
.y1d6{bottom:1073.793300px;}
.y10b{bottom:1073.794800px;}
.y186{bottom:1078.297050px;}
.y10a{bottom:1088.793300px;}
.y185{bottom:1091.043300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hb{height:31.194668px;}
.he{height:35.411133px;}
.h9{height:38.838867px;}
.hd{height:41.158749px;}
.h4{height:44.233154px;}
.h18{height:44.505000px;}
.h16{height:45.090000px;}
.h3{height:45.744000px;}
.h17{height:46.080000px;}
.h19{height:47.469727px;}
.hc{height:48.534668px;}
.h7{height:51.416016px;}
.h8{height:52.020000px;}
.ha{height:53.406000px;}
.h15{height:54.060000px;}
.h13{height:54.102000px;}
.h12{height:54.108000px;}
.h14{height:55.284000px;}
.h11{height:55.296000px;}
.h2{height:57.099609px;}
.h6{height:57.128906px;}
.h10{height:62.841797px;}
.hf{height:77.677734px;}
.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:59.889000px;}
.x2{left:61.191450px;}
.x7{left:73.353000px;}
.x8{left:98.088000px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.x5{left:251.458200px;}
.xc{left:300.348750px;}
.x3{left:584.586600px;}
.xb{left:816.003600px;}
.xa{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v2{vertical-align:-18.133867pt;}
.v6{vertical-align:-16.320000pt;}
.v7{vertical-align:-15.413333pt;}
.v4{vertical-align:-9.605333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.600000pt;}
.v8{vertical-align:15.392000pt;}
.v3{vertical-align:16.288000pt;}
.v1{vertical-align:18.133867pt;}
.ls62{letter-spacing:-2.184000pt;}
.ls58{letter-spacing:-2.121600pt;}
.ls5a{letter-spacing:-2.059200pt;}
.ls59{letter-spacing:-1.996800pt;}
.ls21{letter-spacing:-1.965600pt;}
.ls61{letter-spacing:-1.934400pt;}
.ls65{letter-spacing:-1.903200pt;}
.ls1e{letter-spacing:-1.747200pt;}
.ls83{letter-spacing:-1.200000pt;}
.ls92{letter-spacing:-1.160000pt;}
.ls60{letter-spacing:-0.864000pt;}
.ls19{letter-spacing:-0.853333pt;}
.ls64{letter-spacing:-0.768000pt;}
.ls96{letter-spacing:-0.680000pt;}
.ls91{letter-spacing:-0.560000pt;}
.ls35{letter-spacing:-0.528000pt;}
.ls8e{letter-spacing:-0.520000pt;}
.ls98{letter-spacing:-0.440000pt;}
.ls81{letter-spacing:-0.400000pt;}
.ls9c{letter-spacing:-0.384000pt;}
.ls99{letter-spacing:-0.360000pt;}
.ls44{letter-spacing:-0.336000pt;}
.ls9a{letter-spacing:-0.320000pt;}
.ls50{letter-spacing:-0.288000pt;}
.ls90{letter-spacing:-0.280000pt;}
.ls37{letter-spacing:-0.240000pt;}
.ls95{letter-spacing:-0.200000pt;}
.ls45{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.181333pt;}
.ls84{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.144000pt;}
.ls63{letter-spacing:-0.124800pt;}
.ls93{letter-spacing:-0.120000pt;}
.ls34{letter-spacing:-0.096000pt;}
.ls43{letter-spacing:-0.093600pt;}
.ls82{letter-spacing:-0.080000pt;}
.ls2f{letter-spacing:-0.053333pt;}
.ls1f{letter-spacing:-0.048000pt;}
.ls97{letter-spacing:-0.040000pt;}
.ls6b{letter-spacing:-0.031200pt;}
.ls18{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004267pt;}
.ls3{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.012267pt;}
.ls54{letter-spacing:0.012800pt;}
.ls3e{letter-spacing:0.016000pt;}
.ls77{letter-spacing:0.019200pt;}
.ls4a{letter-spacing:0.029600pt;}
.ls73{letter-spacing:0.029867pt;}
.ls48{letter-spacing:0.030933pt;}
.ls2e{letter-spacing:0.031200pt;}
.ls85{letter-spacing:0.040000pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls7f{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.056533pt;}
.ls2c{letter-spacing:0.062400pt;}
.ls56{letter-spacing:0.066667pt;}
.ls52{letter-spacing:0.069333pt;}
.ls76{letter-spacing:0.071467pt;}
.ls57{letter-spacing:0.077867pt;}
.ls88{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.087467pt;}
.ls5f{letter-spacing:0.093600pt;}
.ls1a{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.096533pt;}
.ls79{letter-spacing:0.098667pt;}
.ls55{letter-spacing:0.099733pt;}
.ls8a{letter-spacing:0.120000pt;}
.ls2d{letter-spacing:0.124800pt;}
.ls51{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls39{letter-spacing:0.148800pt;}
.ls3c{letter-spacing:0.156000pt;}
.ls40{letter-spacing:0.160000pt;}
.ls7b{letter-spacing:0.165333pt;}
.lsf{letter-spacing:0.170133pt;}
.ls53{letter-spacing:0.170667pt;}
.ls78{letter-spacing:0.182400pt;}
.ls10{letter-spacing:0.187200pt;}
.ls20{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.200800pt;}
.ls7a{letter-spacing:0.203733pt;}
.ls6c{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.218400pt;}
.ls4b{letter-spacing:0.222400pt;}
.ls29{letter-spacing:0.223467pt;}
.ls11{letter-spacing:0.229867pt;}
.ls67{letter-spacing:0.232000pt;}
.lsc{letter-spacing:0.232267pt;}
.ls9{letter-spacing:0.236000pt;}
.ls5e{letter-spacing:0.238400pt;}
.ls33{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.249600pt;}
.ls5d{letter-spacing:0.251200pt;}
.ls4f{letter-spacing:0.255200pt;}
.ls8{letter-spacing:0.257600pt;}
.ls6e{letter-spacing:0.258133pt;}
.ls6f{letter-spacing:0.258667pt;}
.ls5c{letter-spacing:0.262400pt;}
.ls74{letter-spacing:0.264000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls3a{letter-spacing:0.266667pt;}
.ls7c{letter-spacing:0.280000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.288933pt;}
.ls66{letter-spacing:0.312000pt;}
.ls89{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336000pt;}
.ls4c{letter-spacing:0.343200pt;}
.ls72{letter-spacing:0.361600pt;}
.ls6d{letter-spacing:0.379733pt;}
.ls5{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.390267pt;}
.ls8c{letter-spacing:0.400000pt;}
.ls71{letter-spacing:0.417600pt;}
.ls14{letter-spacing:0.421733pt;}
.ls4e{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.432000pt;}
.ls94{letter-spacing:0.440000pt;}
.ls16{letter-spacing:0.453333pt;}
.ls3f{letter-spacing:0.456000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls6a{letter-spacing:0.533333pt;}
.ls80{letter-spacing:0.560000pt;}
.ls75{letter-spacing:0.571200pt;}
.ls4d{letter-spacing:0.576000pt;}
.ls86{letter-spacing:0.600000pt;}
.ls8b{letter-spacing:0.620000pt;}
.ls36{letter-spacing:0.624000pt;}
.ls22{letter-spacing:0.634667pt;}
.ls87{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.655200pt;}
.ls47{letter-spacing:0.672000pt;}
.ls15{letter-spacing:0.680000pt;}
.ls38{letter-spacing:0.696000pt;}
.ls41{letter-spacing:0.720000pt;}
.ls27{letter-spacing:0.742933pt;}
.ls8f{letter-spacing:0.760000pt;}
.ls5b{letter-spacing:0.816000pt;}
.ls8d{letter-spacing:0.840000pt;}
.ls31{letter-spacing:0.853333pt;}
.ls32{letter-spacing:0.864000pt;}
.ls24{letter-spacing:0.906667pt;}
.ls9b{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.008000pt;}
.ls26{letter-spacing:1.056000pt;}
.ls46{letter-spacing:1.104000pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls70{letter-spacing:1.200000pt;}
.ls68{letter-spacing:1.248000pt;}
.ls7e{letter-spacing:1.344000pt;}
.ls69{letter-spacing:1.392000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls25{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls7d{letter-spacing:5.440000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws2b{word-spacing:-13.066667pt;}
.ws30{word-spacing:-12.085333pt;}
.ws4a{word-spacing:-12.000000pt;}
.ws4c{word-spacing:-11.568000pt;}
.ws5b{word-spacing:-11.472000pt;}
.ws74{word-spacing:-11.232000pt;}
.ws1{word-spacing:-11.093333pt;}
.ws69{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws9{word-spacing:-10.896000pt;}
.ws31{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws3f{word-spacing:-10.800000pt;}
.ws48{word-spacing:-10.752000pt;}
.ws6a{word-spacing:-10.704000pt;}
.ws6d{word-spacing:-10.032000pt;}
.ws7c{word-spacing:-10.000000pt;}
.wsc{word-spacing:-9.520000pt;}
.wsa1{word-spacing:-9.440000pt;}
.ws8a{word-spacing:-9.160000pt;}
.ws7b{word-spacing:-9.080000pt;}
.wsd{word-spacing:-9.066667pt;}
.ws7d{word-spacing:-9.000000pt;}
.ws8c{word-spacing:-8.880000pt;}
.ws7a{word-spacing:-8.760000pt;}
.ws9a{word-spacing:-8.680000pt;}
.wsa5{word-spacing:-8.640000pt;}
.ws95{word-spacing:-8.600000pt;}
.ws92{word-spacing:-8.520000pt;}
.ws8b{word-spacing:-8.480000pt;}
.wsa4{word-spacing:-8.440000pt;}
.ws4{word-spacing:-7.800000pt;}
.ws2c{word-spacing:-7.737600pt;}
.ws5a{word-spacing:-7.425600pt;}
.ws8{word-spacing:-7.332000pt;}
.ws5c{word-spacing:-7.300800pt;}
.wsa{word-spacing:-7.269600pt;}
.ws4b{word-spacing:-7.238400pt;}
.ws2e{word-spacing:-7.207200pt;}
.ws6c{word-spacing:-7.176000pt;}
.ws2d{word-spacing:-7.144800pt;}
.ws2f{word-spacing:-7.113600pt;}
.ws7{word-spacing:-7.082400pt;}
.ws75{word-spacing:-7.051200pt;}
.ws49{word-spacing:-6.988800pt;}
.ws70{word-spacing:-6.957600pt;}
.wsb{word-spacing:-5.893333pt;}
.ws7e{word-spacing:-5.440000pt;}
.ws5{word-spacing:-5.335200pt;}
.ws71{word-spacing:-5.179200pt;}
.ws6e{word-spacing:-5.148000pt;}
.ws6{word-spacing:-5.116800pt;}
.ws67{word-spacing:-5.085600pt;}
.ws68{word-spacing:-5.023200pt;}
.ws66{word-spacing:-4.960800pt;}
.ws6f{word-spacing:-4.898400pt;}
.ws3e{word-spacing:-4.896000pt;}
.wsa9{word-spacing:-3.520000pt;}
.ws12{word-spacing:-3.413333pt;}
.ws11{word-spacing:-3.200000pt;}
.ws10{word-spacing:-2.912000pt;}
.ws65{word-spacing:-1.776000pt;}
.ws43{word-spacing:-1.680000pt;}
.ws3b{word-spacing:-1.653333pt;}
.ws21{word-spacing:-1.632000pt;}
.ws58{word-spacing:-1.584000pt;}
.ws5d{word-spacing:-1.536000pt;}
.ws64{word-spacing:-1.488000pt;}
.ws9d{word-spacing:-1.480000pt;}
.ws9c{word-spacing:-1.440000pt;}
.ws27{word-spacing:-1.405333pt;}
.ws86{word-spacing:-1.400000pt;}
.ws52{word-spacing:-1.392000pt;}
.ws85{word-spacing:-1.360000pt;}
.ws34{word-spacing:-1.344000pt;}
.ws9f{word-spacing:-1.320000pt;}
.ws4f{word-spacing:-1.296000pt;}
.ws44{word-spacing:-1.248000pt;}
.ws3a{word-spacing:-1.200000pt;}
.ws62{word-spacing:-1.152000pt;}
.ws2a{word-spacing:-1.133333pt;}
.ws13{word-spacing:-1.120000pt;}
.ws1e{word-spacing:-1.104000pt;}
.ws3d{word-spacing:-1.056000pt;}
.ws14{word-spacing:-1.008000pt;}
.ws76{word-spacing:-0.960000pt;}
.ws84{word-spacing:-0.920000pt;}
.ws40{word-spacing:-0.912000pt;}
.ws9e{word-spacing:-0.880000pt;}
.ws59{word-spacing:-0.864000pt;}
.ws45{word-spacing:-0.816000pt;}
.ws87{word-spacing:-0.800000pt;}
.ws3c{word-spacing:-0.768000pt;}
.ws9b{word-spacing:-0.760000pt;}
.ws39{word-spacing:-0.720000pt;}
.ws73{word-spacing:-0.672000pt;}
.ws94{word-spacing:-0.640000pt;}
.ws47{word-spacing:-0.624000pt;}
.wsa3{word-spacing:-0.600000pt;}
.ws4d{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.576000pt;}
.wsa7{word-spacing:-0.560000pt;}
.ws79{word-spacing:-0.533333pt;}
.ws17{word-spacing:-0.528000pt;}
.ws90{word-spacing:-0.520000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.453333pt;}
.ws8d{word-spacing:-0.440000pt;}
.ws53{word-spacing:-0.432000pt;}
.ws55{word-spacing:-0.426667pt;}
.ws8e{word-spacing:-0.400000pt;}
.ws22{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.362667pt;}
.ws1d{word-spacing:-0.336000pt;}
.ws1a{word-spacing:-0.288000pt;}
.ws89{word-spacing:-0.280000pt;}
.ws1b{word-spacing:-0.249600pt;}
.ws38{word-spacing:-0.240000pt;}
.ws63{word-spacing:-0.218400pt;}
.ws18{word-spacing:-0.192000pt;}
.ws98{word-spacing:-0.160000pt;}
.ws1c{word-spacing:-0.144000pt;}
.ws35{word-spacing:-0.124800pt;}
.ws36{word-spacing:-0.096000pt;}
.wsa6{word-spacing:-0.080000pt;}
.ws60{word-spacing:-0.053333pt;}
.ws54{word-spacing:-0.048000pt;}
.ws97{word-spacing:-0.040000pt;}
.ws37{word-spacing:-0.031200pt;}
.wse{word-spacing:0.000000pt;}
.ws51{word-spacing:0.048000pt;}
.ws19{word-spacing:0.096000pt;}
.ws99{word-spacing:0.120000pt;}
.ws61{word-spacing:0.144000pt;}
.ws29{word-spacing:0.181333pt;}
.ws6b{word-spacing:0.192000pt;}
.ws96{word-spacing:0.200000pt;}
.ws82{word-spacing:0.213333pt;}
.ws16{word-spacing:0.240000pt;}
.ws88{word-spacing:0.280000pt;}
.ws20{word-spacing:0.288000pt;}
.ws50{word-spacing:0.336000pt;}
.wsa2{word-spacing:0.360000pt;}
.ws5e{word-spacing:0.384000pt;}
.ws46{word-spacing:0.432000pt;}
.ws80{word-spacing:0.528000pt;}
.ws23{word-spacing:0.589333pt;}
.ws8f{word-spacing:0.600000pt;}
.ws5f{word-spacing:0.624000pt;}
.ws4e{word-spacing:0.672000pt;}
.ws25{word-spacing:0.725333pt;}
.ws93{word-spacing:0.760000pt;}
.ws83{word-spacing:0.840000pt;}
.wsf{word-spacing:0.853333pt;}
.ws91{word-spacing:0.920000pt;}
.ws81{word-spacing:0.960000pt;}
.ws72{word-spacing:1.008000pt;}
.ws42{word-spacing:1.056000pt;}
.ws41{word-spacing:1.066667pt;}
.wsa0{word-spacing:1.160000pt;}
.wsa8{word-spacing:1.248000pt;}
.ws28{word-spacing:1.314667pt;}
.ws33{word-spacing:1.440000pt;}
.ws32{word-spacing:1.488000pt;}
.ws78{word-spacing:1.584000pt;}
.ws57{word-spacing:1.632000pt;}
.ws56{word-spacing:1.653333pt;}
.ws77{word-spacing:2.112000pt;}
.ws7f{word-spacing:2.256000pt;}
._16{margin-left:-10.280000pt;}
._4{margin-left:-8.764267pt;}
._c{margin-left:-7.016533pt;}
._b{margin-left:-5.776000pt;}
._7{margin-left:-4.857067pt;}
._6{margin-left:-3.918933pt;}
._2{margin-left:-2.776000pt;}
._0{margin-left:-1.578667pt;}
._5{width:0.894400pt;}
._1{width:2.493333pt;}
._d{width:4.056000pt;}
._12{width:5.618667pt;}
._14{width:7.080000pt;}
._11{width:9.080000pt;}
._15{width:10.640000pt;}
._13{width:12.040000pt;}
._9{width:13.584000pt;}
._17{width:15.760000pt;}
._10{width:36.876267pt;}
._3{width:38.232000pt;}
._f{width:40.056000pt;}
._a{width:41.470933pt;}
._e{width:43.180267pt;}
._8{width:44.305067pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{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;}
.y31{bottom:60.728800pt;}
.ya5{bottom:60.937333pt;}
.y87{bottom:60.938667pt;}
.y4d{bottom:60.940000pt;}
.y14a{bottom:60.940267pt;}
.y184{bottom:60.963333pt;}
.y1d5{bottom:63.416267pt;}
.y69{bottom:67.833600pt;}
.yd7{bottom:70.760400pt;}
.y183{bottom:72.293333pt;}
.y30{bottom:74.056800pt;}
.ya4{bottom:74.269333pt;}
.y86{bottom:74.270667pt;}
.y4c{bottom:74.272000pt;}
.y149{bottom:74.272267pt;}
.y1d4{bottom:74.746267pt;}
.y68{bottom:81.165600pt;}
.y182{bottom:83.623333pt;}
.yd6{bottom:84.095067pt;}
.y101{bottom:85.154933pt;}
.y1d3{bottom:86.076267pt;}
.y2f{bottom:87.384800pt;}
.ya3{bottom:87.601333pt;}
.y85{bottom:87.602667pt;}
.y4b{bottom:87.604000pt;}
.y67{bottom:94.497600pt;}
.y181{bottom:94.953333pt;}
.y1d2{bottom:97.406267pt;}
.yd5{bottom:97.427067pt;}
.y100{bottom:98.486933pt;}
.y2e{bottom:100.718133pt;}
.y84{bottom:100.934667pt;}
.y4a{bottom:100.936000pt;}
.ya2{bottom:100.938667pt;}
.y148{bottom:102.796267pt;}
.y180{bottom:106.283333pt;}
.y66{bottom:107.829600pt;}
.y1d1{bottom:108.736267pt;}
.yd4{bottom:110.760400pt;}
.yff{bottom:111.818933pt;}
.y2d{bottom:114.051467pt;}
.y49{bottom:114.268000pt;}
.y83{bottom:114.269333pt;}
.ya1{bottom:114.270667pt;}
.y147{bottom:116.128267pt;}
.y17f{bottom:117.613333pt;}
.ybb{bottom:118.485600pt;}
.y1d0{bottom:120.066267pt;}
.y65{bottom:121.161600pt;}
.yd3{bottom:124.092400pt;}
.yfe{bottom:125.150933pt;}
.y2c{bottom:127.384800pt;}
.y48{bottom:127.600000pt;}
.y82{bottom:127.601333pt;}
.ya0{bottom:127.602667pt;}
.y17e{bottom:128.943333pt;}
.y146{bottom:129.460267pt;}
.y1cf{bottom:131.396267pt;}
.yba{bottom:131.817600pt;}
.y64{bottom:134.493600pt;}
.yfd{bottom:138.485600pt;}
.y17d{bottom:140.273333pt;}
.y47{bottom:140.933333pt;}
.y81{bottom:140.934667pt;}
.y1ce{bottom:142.726267pt;}
.y145{bottom:142.792267pt;}
.y2b{bottom:144.566133pt;}
.yb9{bottom:145.150933pt;}
.y63{bottom:147.825600pt;}
.y17c{bottom:151.603333pt;}
.yfc{bottom:151.817600pt;}
.y1cd{bottom:154.056267pt;}
.y9f{bottom:154.266667pt;}
.y80{bottom:154.268000pt;}
.y144{bottom:156.124267pt;}
.yb8{bottom:158.484267pt;}
.y62{bottom:161.157600pt;}
.y17b{bottom:162.933333pt;}
.yfb{bottom:165.156267pt;}
.y1cc{bottom:165.386267pt;}
.y46{bottom:165.821600pt;}
.y7f{bottom:167.600000pt;}
.y143{bottom:169.456267pt;}
.yb7{bottom:171.817600pt;}
.y17a{bottom:174.266667pt;}
.y61{bottom:174.489600pt;}
.y2a{bottom:176.609600pt;}
.y1cb{bottom:176.716267pt;}
.yfa{bottom:178.488267pt;}
.y45{bottom:179.153600pt;}
.y9e{bottom:180.493600pt;}
.y7e{bottom:180.933333pt;}
.y142{bottom:182.788267pt;}
.yb6{bottom:185.150933pt;}
.y60{bottom:187.821600pt;}
.y1ca{bottom:188.046267pt;}
.y29{bottom:189.944267pt;}
.yf9{bottom:191.820267pt;}
.y44{bottom:192.485600pt;}
.y9d{bottom:193.825600pt;}
.y141{bottom:196.120267pt;}
.yb5{bottom:198.484267pt;}
.y1c9{bottom:199.376267pt;}
.y179{bottom:199.648533pt;}
.y5f{bottom:201.153600pt;}
.y28{bottom:203.276267pt;}
.yf8{bottom:205.152267pt;}
.y43{bottom:205.817600pt;}
.y7d{bottom:206.492267pt;}
.y9c{bottom:207.157600pt;}
.y140{bottom:209.452267pt;}
.y1c8{bottom:210.706267pt;}
.yb4{bottom:211.816267pt;}
.y178{bottom:212.980533pt;}
.y5e{bottom:214.485600pt;}
.y27{bottom:216.609600pt;}
.yf7{bottom:218.484267pt;}
.y42{bottom:219.152267pt;}
.y7c{bottom:219.824267pt;}
.y9b{bottom:220.489600pt;}
.y1c7{bottom:222.036267pt;}
.y177{bottom:226.312533pt;}
.y5d{bottom:227.817600pt;}
.y26{bottom:229.942933pt;}
.yf6{bottom:231.824267pt;}
.y41{bottom:232.484267pt;}
.y7b{bottom:233.156267pt;}
.y1c6{bottom:233.366267pt;}
.y9a{bottom:233.821600pt;}
.y13f{bottom:235.577600pt;}
.y176{bottom:239.644533pt;}
.y5c{bottom:241.153600pt;}
.y25{bottom:243.276267pt;}
.y1c5{bottom:244.696267pt;}
.yf5{bottom:245.156267pt;}
.y40{bottom:245.817600pt;}
.y7a{bottom:246.488267pt;}
.y99{bottom:247.153600pt;}
.y13e{bottom:248.909600pt;}
.y175{bottom:252.976533pt;}
.y5b{bottom:254.485600pt;}
.y1c4{bottom:256.026267pt;}
.y24{bottom:256.610933pt;}
.yf4{bottom:258.488267pt;}
.y3f{bottom:259.150933pt;}
.y79{bottom:259.820267pt;}
.y98{bottom:260.485600pt;}
.y13d{bottom:262.241600pt;}
.ycb{bottom:263.787067pt;}
.y1c3{bottom:267.356267pt;}
.y5a{bottom:267.817600pt;}
.y23{bottom:269.942933pt;}
.yf3{bottom:271.820267pt;}
.y3e{bottom:272.485600pt;}
.y78{bottom:273.152267pt;}
.y97{bottom:273.817600pt;}
.y13c{bottom:275.578933pt;}
.yca{bottom:277.125733pt;}
.y174{bottom:278.355867pt;}
.y1c2{bottom:278.686267pt;}
.y59{bottom:281.149600pt;}
.y22{bottom:283.276267pt;}
.yf2{bottom:285.152267pt;}
.y3d{bottom:285.817600pt;}
.y77{bottom:286.484267pt;}
.y96{bottom:287.154933pt;}
.y13b{bottom:288.910933pt;}
.y1c1{bottom:290.016267pt;}
.yc9{bottom:290.457733pt;}
.y173{bottom:291.687867pt;}
.y21{bottom:296.610933pt;}
.yf1{bottom:298.484267pt;}
.y3c{bottom:299.152267pt;}
.y76{bottom:299.818933pt;}
.y95{bottom:300.486933pt;}
.y1c0{bottom:301.346267pt;}
.y13a{bottom:302.242933pt;}
.yc8{bottom:303.789733pt;}
.y172{bottom:305.021200pt;}
.y20{bottom:309.942933pt;}
.y58{bottom:310.484267pt;}
.yf0{bottom:311.822933pt;}
.y3b{bottom:312.484267pt;}
.y1bf{bottom:312.676267pt;}
.y75{bottom:313.150933pt;}
.y94{bottom:313.818933pt;}
.y139{bottom:315.574933pt;}
.yc7{bottom:317.121733pt;}
.y171{bottom:318.358533pt;}
.y1f{bottom:323.276267pt;}
.y57{bottom:323.816267pt;}
.y1be{bottom:324.006267pt;}
.yef{bottom:325.154933pt;}
.y3a{bottom:325.817600pt;}
.y74{bottom:326.488267pt;}
.y93{bottom:327.150933pt;}
.y138{bottom:328.906933pt;}
.yc6{bottom:330.453733pt;}
.y170{bottom:331.690533pt;}
.y1bd{bottom:335.336267pt;}
.y1e{bottom:336.609600pt;}
.yee{bottom:338.486933pt;}
.y39{bottom:339.150933pt;}
.y73{bottom:339.820267pt;}
.y92{bottom:340.488267pt;}
.yc5{bottom:343.791067pt;}
.y16f{bottom:345.022533pt;}
.y1bc{bottom:346.666267pt;}
.y1d{bottom:349.942933pt;}
.yed{bottom:351.818933pt;}
.y38{bottom:352.484267pt;}
.y72{bottom:353.152267pt;}
.y91{bottom:353.820267pt;}
.y137{bottom:355.032267pt;}
.yc4{bottom:357.123067pt;}
.y1bb{bottom:357.996267pt;}
.y16e{bottom:358.354533pt;}
.y1c{bottom:363.308267pt;}
.yec{bottom:365.150933pt;}
.y37{bottom:365.816267pt;}
.y71{bottom:366.484267pt;}
.y90{bottom:367.152267pt;}
.y6f{bottom:367.685733pt;}
.y136{bottom:368.364267pt;}
.y1ba{bottom:369.326267pt;}
.yc3{bottom:370.455067pt;}
.y16d{bottom:371.687867pt;}
.y1b{bottom:376.640267pt;}
.yeb{bottom:378.485600pt;}
.y70{bottom:379.816267pt;}
.y8f{bottom:380.484267pt;}
.y1b9{bottom:380.656267pt;}
.y6e{bottom:381.017733pt;}
.y135{bottom:381.696267pt;}
.yc2{bottom:383.787067pt;}
.y16c{bottom:385.022533pt;}
.y1a{bottom:389.972267pt;}
.yea{bottom:391.817600pt;}
.y1b8{bottom:391.986267pt;}
.y8e{bottom:393.816267pt;}
.y6d{bottom:394.349733pt;}
.y134{bottom:395.028267pt;}
.yc1{bottom:397.121733pt;}
.y16b{bottom:398.354533pt;}
.y19{bottom:403.304267pt;}
.y1b7{bottom:403.316267pt;}
.ye9{bottom:405.153600pt;}
.y6c{bottom:407.681733pt;}
.y133{bottom:408.361600pt;}
.y56{bottom:409.603067pt;}
.yc0{bottom:410.453733pt;}
.y16a{bottom:411.687867pt;}
.y1b6{bottom:414.646267pt;}
.y18{bottom:416.636267pt;}
.ye8{bottom:418.485600pt;}
.y6b{bottom:421.013733pt;}
.y55{bottom:422.935067pt;}
.ybf{bottom:423.788400pt;}
.y8d{bottom:424.325733pt;}
.y169{bottom:425.021200pt;}
.y1b5{bottom:425.976267pt;}
.y17{bottom:429.968267pt;}
.ye7{bottom:431.817600pt;}
.y6a{bottom:434.345733pt;}
.y132{bottom:434.484267pt;}
.y54{bottom:436.267067pt;}
.ybe{bottom:437.120400pt;}
.y1b4{bottom:437.306267pt;}
.yb3{bottom:437.504400pt;}
.y8c{bottom:437.657733pt;}
.y168{bottom:438.353200pt;}
.ye6{bottom:445.152267pt;}
.y131{bottom:447.826933pt;}
.y1b3{bottom:448.636267pt;}
.y53{bottom:449.600400pt;}
.ybd{bottom:450.453733pt;}
.yb2{bottom:450.836400pt;}
.y8b{bottom:450.989733pt;}
.ye5{bottom:458.484267pt;}
.y1b2{bottom:459.966267pt;}
.y130{bottom:461.158933pt;}
.y52{bottom:462.937733pt;}
.y167{bottom:463.737733pt;}
.ybc{bottom:463.785733pt;}
.yb1{bottom:464.168400pt;}
.y8a{bottom:464.321733pt;}
.y1b1{bottom:471.296267pt;}
.ye4{bottom:471.817600pt;}
.y16{bottom:471.968267pt;}
.y12f{bottom:474.490933pt;}
.y51{bottom:476.269733pt;}
.y166{bottom:477.069733pt;}
.yb0{bottom:477.500400pt;}
.y89{bottom:477.653733pt;}
.y1b0{bottom:482.626267pt;}
.ye3{bottom:485.152267pt;}
.y15{bottom:486.632267pt;}
.y12e{bottom:487.822933pt;}
.y50{bottom:489.601733pt;}
.y165{bottom:490.401733pt;}
.yaf{bottom:490.832400pt;}
.y88{bottom:490.985733pt;}
.y1af{bottom:493.956267pt;}
.ye2{bottom:498.484267pt;}
.y12d{bottom:501.154933pt;}
.y14{bottom:501.296267pt;}
.y4f{bottom:502.933733pt;}
.y164{bottom:503.733733pt;}
.yae{bottom:504.164400pt;}
.y1ae{bottom:505.286267pt;}
.ye1{bottom:511.822933pt;}
.y12c{bottom:514.486933pt;}
.y13{bottom:515.960267pt;}
.y4e{bottom:516.265733pt;}
.y1ad{bottom:516.616267pt;}
.y163{bottom:517.065733pt;}
.yad{bottom:517.496400pt;}
.ye0{bottom:525.154933pt;}
.y12b{bottom:527.818933pt;}
.y1ac{bottom:527.946267pt;}
.y162{bottom:530.397733pt;}
.y12{bottom:530.624267pt;}
.yac{bottom:530.828400pt;}
.ydf{bottom:538.486933pt;}
.y1ab{bottom:539.276267pt;}
.y12a{bottom:541.150933pt;}
.y161{bottom:543.731067pt;}
.yab{bottom:544.160400pt;}
.y11{bottom:545.288267pt;}
.y1aa{bottom:550.606267pt;}
.yde{bottom:551.818933pt;}
.y129{bottom:554.484267pt;}
.y160{bottom:557.063067pt;}
.yaa{bottom:557.497733pt;}
.y10{bottom:559.952267pt;}
.y1a9{bottom:561.936267pt;}
.ydd{bottom:565.150933pt;}
.y128{bottom:567.817600pt;}
.ya9{bottom:570.829733pt;}
.y1a8{bottom:573.266267pt;}
.yf{bottom:574.616267pt;}
.ydc{bottom:578.486933pt;}
.y127{bottom:581.165600pt;}
.y15f{bottom:582.442267pt;}
.ya8{bottom:584.161733pt;}
.y1a7{bottom:584.596267pt;}
.ye{bottom:589.280267pt;}
.ydb{bottom:591.818933pt;}
.y126{bottom:594.497600pt;}
.y1ee{bottom:595.157600pt;}
.y15e{bottom:595.774267pt;}
.y1a6{bottom:595.926267pt;}
.ya7{bottom:597.493733pt;}
.yd{bottom:603.944267pt;}
.yda{bottom:605.150933pt;}
.y1a5{bottom:607.256267pt;}
.y125{bottom:607.829600pt;}
.y1ed{bottom:608.489600pt;}
.y15d{bottom:609.111600pt;}
.ya6{bottom:610.825733pt;}
.yd9{bottom:618.482933pt;}
.y1a4{bottom:618.586267pt;}
.yc{bottom:618.616267pt;}
.y124{bottom:621.161600pt;}
.y1ec{bottom:621.821600pt;}
.yd2{bottom:622.348400pt;}
.y15c{bottom:622.443600pt;}
.y1a3{bottom:629.916267pt;}
.yd8{bottom:631.816267pt;}
.yb{bottom:633.280267pt;}
.y123{bottom:634.493600pt;}
.y1eb{bottom:635.153600pt;}
.yd1{bottom:635.680400pt;}
.y15b{bottom:635.775600pt;}
.y1a2{bottom:641.246267pt;}
.y122{bottom:647.825600pt;}
.ya{bottom:647.944267pt;}
.y1ea{bottom:648.485600pt;}
.yd0{bottom:649.015067pt;}
.y15a{bottom:649.107600pt;}
.y1a1{bottom:652.576267pt;}
.y121{bottom:661.157600pt;}
.y1e9{bottom:661.817600pt;}
.ycf{bottom:662.347067pt;}
.y159{bottom:662.440933pt;}
.y9{bottom:662.608267pt;}
.y1a0{bottom:663.906267pt;}
.y34{bottom:673.023467pt;}
.y120{bottom:674.489600pt;}
.y1e8{bottom:675.149600pt;}
.y19f{bottom:675.236267pt;}
.yce{bottom:675.681733pt;}
.y158{bottom:675.774267pt;}
.y19e{bottom:686.566267pt;}
.y109{bottom:686.781733pt;}
.y11f{bottom:687.821600pt;}
.ycd{bottom:689.013733pt;}
.y157{bottom:689.112933pt;}
.y8{bottom:689.274933pt;}
.y33{bottom:691.689467pt;}
.y1e7{bottom:694.486933pt;}
.y19d{bottom:697.896267pt;}
.y108{bottom:700.113733pt;}
.y11e{bottom:701.153600pt;}
.ycc{bottom:702.345733pt;}
.y156{bottom:702.444933pt;}
.y7{bottom:705.274933pt;}
.y1e6{bottom:707.818933pt;}
.y19c{bottom:709.226267pt;}
.y32{bottom:710.355467pt;}
.y107{bottom:713.445733pt;}
.y11d{bottom:714.485600pt;}
.y155{bottom:715.776933pt;}
.y19b{bottom:720.556267pt;}
.y106{bottom:726.777733pt;}
.y1e5{bottom:727.150933pt;}
.y11c{bottom:727.817600pt;}
.y154{bottom:729.108933pt;}
.y19a{bottom:731.886267pt;}
.y6{bottom:734.597600pt;}
.y105{bottom:740.109733pt;}
.y11b{bottom:741.152267pt;}
.y153{bottom:742.440933pt;}
.y199{bottom:743.216267pt;}
.y1e4{bottom:746.482933pt;}
.y104{bottom:753.441733pt;}
.y11a{bottom:754.484267pt;}
.y198{bottom:754.546267pt;}
.y152{bottom:755.776933pt;}
.y1e3{bottom:759.816267pt;}
.y197{bottom:765.876267pt;}
.y103{bottom:766.773733pt;}
.y119{bottom:767.821600pt;}
.y151{bottom:769.108933pt;}
.y5{bottom:774.602933pt;}
.y196{bottom:777.206267pt;}
.y102{bottom:780.105733pt;}
.y118{bottom:781.153600pt;}
.y150{bottom:782.440933pt;}
.y1e2{bottom:783.820267pt;}
.y195{bottom:788.536267pt;}
.y117{bottom:794.485600pt;}
.y14f{bottom:795.775600pt;}
.y1e1{bottom:797.152267pt;}
.y194{bottom:799.866267pt;}
.y116{bottom:807.817600pt;}
.y14e{bottom:809.107600pt;}
.y1e0{bottom:810.484267pt;}
.y193{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y115{bottom:821.150933pt;}
.y14d{bottom:822.439600pt;}
.y192{bottom:822.526267pt;}
.y35{bottom:823.475200pt;}
.y1df{bottom:823.816267pt;}
.y191{bottom:833.856267pt;}
.y114{bottom:834.496267pt;}
.y1de{bottom:837.149600pt;}
.y190{bottom:845.186267pt;}
.y14c{bottom:847.818933pt;}
.y113{bottom:847.828267pt;}
.y18f{bottom:856.516267pt;}
.y14b{bottom:861.150933pt;}
.y1dd{bottom:861.158933pt;}
.y112{bottom:861.160267pt;}
.y18e{bottom:867.846267pt;}
.y1dc{bottom:874.490933pt;}
.y111{bottom:874.492267pt;}
.y18d{bottom:879.176267pt;}
.y1db{bottom:887.822933pt;}
.y110{bottom:887.824267pt;}
.y18c{bottom:890.506267pt;}
.y1da{bottom:901.154933pt;}
.y10f{bottom:901.156267pt;}
.y18b{bottom:901.836267pt;}
.y18a{bottom:913.166267pt;}
.y1d9{bottom:914.486933pt;}
.y10e{bottom:914.488267pt;}
.y189{bottom:924.496267pt;}
.y1d8{bottom:927.818933pt;}
.y10d{bottom:927.820267pt;}
.y188{bottom:935.826267pt;}
.y1d7{bottom:941.150933pt;}
.y10c{bottom:941.152267pt;}
.y187{bottom:947.156267pt;}
.y1d6{bottom:954.482933pt;}
.y10b{bottom:954.484267pt;}
.y186{bottom:958.486267pt;}
.y10a{bottom:967.816267pt;}
.y185{bottom:969.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hb{height:27.728594pt;}
.he{height:31.476562pt;}
.h9{height:34.523438pt;}
.hd{height:36.585555pt;}
.h4{height:39.318359pt;}
.h18{height:39.560000pt;}
.h16{height:40.080000pt;}
.h3{height:40.661333pt;}
.h17{height:40.960000pt;}
.h19{height:42.195312pt;}
.hc{height:43.141927pt;}
.h7{height:45.703125pt;}
.h8{height:46.240000pt;}
.ha{height:47.472000pt;}
.h15{height:48.053333pt;}
.h13{height:48.090667pt;}
.h12{height:48.096000pt;}
.h14{height:49.141333pt;}
.h11{height:49.152000pt;}
.h2{height:50.755208pt;}
.h6{height:50.781250pt;}
.h10{height:55.859375pt;}
.hf{height:69.046875pt;}
.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:53.234667pt;}
.x2{left:54.392400pt;}
.x7{left:65.202667pt;}
.x8{left:87.189333pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.x5{left:223.518400pt;}
.xc{left:266.976667pt;}
.x3{left:519.632533pt;}
.xb{left:725.336533pt;}
.xa{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; }
  