
    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_d782a7e8b9b7a4629f2379b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_a441df47b16a96d3a131b43a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_06118985cf3f96da8dacbe7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_d2371ab25aa7119042fa2e3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_661b1dbea7596b587fb9ec7d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_29581f50a2fa79533323c6d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_e103a95a6a8a770cfb4352fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_e7c92b3de293448864d0a67a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.835449;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_99e647a4cc39c58249b8cc1b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_b6b0682cf00b8383f9eb7086.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_8cd134fceee9a97c3198a0d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d1ec2b72b4cb8c3613323e2f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_602f09d38eee6f9c92209e53.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_694bf0f9f322f3787354fe0a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.898000;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_84878a906c67d2672ab7f8d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715000;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_0f0b0861fdeed6d5d95e6e99.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c9c36fb4115c7b36ddebc25d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.720000;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_664e3281dfaf02ef20e12819.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.725000;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_c50e394bebf559c87a8bc88d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.001000;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_8f92146df5092a4051ac67e5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_da49975a847869e6f5367745.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284668;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_eafb2ffa76506da8fcc7b3e5.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.281250;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_be2032d1ce4d344e47088605.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;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_4215ce68334e119dc81c385c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c8e04a5067249233e44cedf4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.520000;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_c4401816640009d9863ce641.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_83d603b3a166dcdf41086803.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.909000;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_1ab0e7ea1f42a4edbe235d9d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:2.222000;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;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.m5{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m7{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v9{vertical-align:-13.320000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:6.360000px;}
.vc{vertical-align:16.182000px;}
.vd{vertical-align:18.912000px;}
.v12{vertical-align:19.932000px;}
.va{vertical-align:23.754000px;}
.v4{vertical-align:27.030000px;}
.v8{vertical-align:32.526000px;}
.v3{vertical-align:34.464000px;}
.v5{vertical-align:40.632000px;}
.vf{vertical-align:43.206000px;}
.v2{vertical-align:44.280000px;}
.ve{vertical-align:45.810000px;}
.v10{vertical-align:51.120000px;}
.vb{vertical-align:71.922000px;}
.v6{vertical-align:89.178000px;}
.v7{vertical-align:129.804000px;}
.ls2{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.000103px;}
.ls4b{letter-spacing:0.000504px;}
.ls43{letter-spacing:0.000520px;}
.ls3a{letter-spacing:0.001051px;}
.lsb{letter-spacing:0.001058px;}
.ls6a{letter-spacing:0.001067px;}
.ls48{letter-spacing:0.001592px;}
.ls1f{letter-spacing:0.002149px;}
.ls55{letter-spacing:0.002153px;}
.ls89{letter-spacing:0.002158px;}
.ls59{letter-spacing:0.002682px;}
.ls10{letter-spacing:0.002686px;}
.ls15{letter-spacing:0.002700px;}
.ls6f{letter-spacing:0.002701px;}
.lsd{letter-spacing:0.002706px;}
.ls63{letter-spacing:0.002712px;}
.ls3b{letter-spacing:0.003786px;}
.ls2b{letter-spacing:0.004344px;}
.ls83{letter-spacing:0.006520px;}
.ls0{letter-spacing:0.018600px;}
.ls6d{letter-spacing:1.816884px;}
.ls6c{letter-spacing:2.090153px;}
.ls8d{letter-spacing:2.348155px;}
.ls8c{letter-spacing:2.422878px;}
.lsf{letter-spacing:2.984915px;}
.ls76{letter-spacing:2.988103px;}
.ls60{letter-spacing:2.990122px;}
.ls4c{letter-spacing:2.990915px;}
.ls77{letter-spacing:3.284686px;}
.ls30{letter-spacing:3.632153px;}
.ls37{letter-spacing:3.638153px;}
.ls68{letter-spacing:3.767414px;}
.ls6b{letter-spacing:3.771239px;}
.ls75{letter-spacing:3.773414px;}
.ls28{letter-spacing:5.975950px;}
.ls27{letter-spacing:5.981950px;}
.ls79{letter-spacing:6.758915px;}
.ls33{letter-spacing:7.169412px;}
.lse{letter-spacing:7.172696px;}
.ls31{letter-spacing:7.175412px;}
.ls1b{letter-spacing:7.407249px;}
.ls6e{letter-spacing:9.296915px;}
.ls42{letter-spacing:10.902504px;}
.ls47{letter-spacing:10.903592px;}
.ls58{letter-spacing:10.904712px;}
.ls40{letter-spacing:10.905249px;}
.ls25{letter-spacing:10.907412px;}
.ls3f{letter-spacing:10.908504px;}
.ls45{letter-spacing:10.909051px;}
.ls5c{letter-spacing:10.909592px;}
.ls87{letter-spacing:10.910682px;}
.ls3e{letter-spacing:10.915051px;}
.ls6{letter-spacing:13.892915px;}
.ls4{letter-spacing:13.898915px;}
.lsc{letter-spacing:14.538504px;}
.ls8{letter-spacing:14.543412px;}
.ls21{letter-spacing:14.546149px;}
.ls34{letter-spacing:14.546153px;}
.ls4d{letter-spacing:14.546706px;}
.ls2d{letter-spacing:14.548344px;}
.ls23{letter-spacing:14.549412px;}
.ls24{letter-spacing:14.552149px;}
.ls95{letter-spacing:16.223412px;}
.ls7b{letter-spacing:17.534915px;}
.ls72{letter-spacing:17.666915px;}
.ls3{letter-spacing:18.174504px;}
.ls5{letter-spacing:18.175592px;}
.ls8b{letter-spacing:18.176712px;}
.ls66{letter-spacing:18.177242px;}
.ls7{letter-spacing:18.179412px;}
.ls22{letter-spacing:18.182149px;}
.ls2e{letter-spacing:18.185412px;}
.ls2a{letter-spacing:18.196379px;}
.ls14{letter-spacing:18.767412px;}
.ls17{letter-spacing:19.877412px;}
.ls16{letter-spacing:19.881791px;}
.ls94{letter-spacing:19.997414px;}
.ls7e{letter-spacing:20.264700px;}
.ls71{letter-spacing:20.270700px;}
.ls64{letter-spacing:21.164915px;}
.ls56{letter-spacing:21.165072px;}
.ls61{letter-spacing:21.170915px;}
.ls86{letter-spacing:21.302915px;}
.ls82{letter-spacing:21.308915px;}
.ls9{letter-spacing:21.703599px;}
.ls50{letter-spacing:21.713412px;}
.ls5f{letter-spacing:21.715051px;}
.ls4e{letter-spacing:21.719412px;}
.ls44{letter-spacing:21.813249px;}
.ls3d{letter-spacing:21.815972px;}
.ls5b{letter-spacing:21.816504px;}
.ls8a{letter-spacing:21.953414px;}
.ls93{letter-spacing:22.379412px;}
.ls13{letter-spacing:22.541414px;}
.ls96{letter-spacing:22.792890px;}
.ls1a{letter-spacing:22.838696px;}
.ls74{letter-spacing:22.978878px;}
.ls18{letter-spacing:23.090712px;}
.ls73{letter-spacing:23.544103px;}
.ls91{letter-spacing:23.588122px;}
.ls11{letter-spacing:23.894915px;}
.ls57{letter-spacing:24.059950px;}
.ls2c{letter-spacing:24.155950px;}
.ls20{letter-spacing:24.161950px;}
.ls4a{letter-spacing:24.327249px;}
.ls1e{letter-spacing:24.758149px;}
.ls3c{letter-spacing:24.800915px;}
.ls98{letter-spacing:24.806122px;}
.ls65{letter-spacing:24.806915px;}
.ls84{letter-spacing:24.944915px;}
.ls7d{letter-spacing:25.349412px;}
.ls38{letter-spacing:25.355412px;}
.ls81{letter-spacing:25.454154px;}
.ls90{letter-spacing:25.637400px;}
.ls8f{letter-spacing:25.640149px;}
.ls19{letter-spacing:25.826915px;}
.ls1d{letter-spacing:26.585412px;}
.ls5a{letter-spacing:27.266147px;}
.ls8e{letter-spacing:27.272155px;}
.ls1{letter-spacing:27.559489px;}
.ls54{letter-spacing:27.695950px;}
.ls92{letter-spacing:28.887779px;}
.ls97{letter-spacing:29.223249px;}
.ls5e{letter-spacing:29.315414px;}
.ls67{letter-spacing:31.178700px;}
.ls80{letter-spacing:31.217412px;}
.ls12{letter-spacing:31.322915px;}
.ls78{letter-spacing:31.998103px;}
.ls1c{letter-spacing:33.993249px;}
.ls7f{letter-spacing:37.193950px;}
.ls53{letter-spacing:42.704706px;}
.lsa{letter-spacing:42.905412px;}
.ls70{letter-spacing:47.171424px;}
.ls35{letter-spacing:48.215950px;}
.ls7c{letter-spacing:55.631412px;}
.ls26{letter-spacing:76.436149px;}
.ls29{letter-spacing:93.482149px;}
.ls32{letter-spacing:99.581950px;}
.ls52{letter-spacing:100.985950px;}
.ls88{letter-spacing:141.818712px;}
.ls36{letter-spacing:148.988712px;}
.ls39{letter-spacing:202.592712px;}
.ls85{letter-spacing:279.008915px;}
.ls51{letter-spacing:292.193950px;}
.ls5d{letter-spacing:390.950149px;}
.ls2f{letter-spacing:556.430712px;}
.ls4f{letter-spacing:645.779950px;}
.ls62{letter-spacing:779.318149px;}
.ls41{letter-spacing:845.501950px;}
.ls46{letter-spacing:867.986149px;}
.ls49{letter-spacing:927.947950px;}
.ls69{letter-spacing:957.740915px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws37{word-spacing:-65.454600px;}
.ws5f{word-spacing:-60.833505px;}
.ws6c{word-spacing:-50.923679px;}
.ws4{word-spacing:-44.819982px;}
.ws17{word-spacing:-42.637126px;}
.wse{word-spacing:-38.937826px;}
.ws70{word-spacing:-36.379667px;}
.ws9a{word-spacing:-33.211407px;}
.ws3{word-spacing:-32.418587px;}
.ws6e{word-spacing:-31.706208px;}
.ws1b{word-spacing:-28.826206px;}
.ws60{word-spacing:-28.063188px;}
.ws1e{word-spacing:-28.057188px;}
.wsc4{word-spacing:-26.899125px;}
.ws1d{word-spacing:-24.474234px;}
.ws3a{word-spacing:-24.405362px;}
.ws6d{word-spacing:-20.823906px;}
.ws72{word-spacing:-20.817906px;}
.wsc3{word-spacing:-18.423362px;}
.ws22{word-spacing:-18.183288px;}
.ws76{word-spacing:-17.421928px;}
.ws80{word-spacing:-17.093533px;}
.ws5{word-spacing:-16.613273px;}
.ws7c{word-spacing:-15.392386px;}
.wsb2{word-spacing:-15.014301px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.970234px;}
.ws0{word-spacing:-13.505755px;}
.ws5b{word-spacing:-7.290706px;}
.ws5a{word-spacing:-7.287461px;}
.ws5c{word-spacing:-7.284167px;}
.ws9b{word-spacing:-7.279758px;}
.ws63{word-spacing:-7.279740px;}
.ws62{word-spacing:-7.276446px;}
.ws57{word-spacing:-7.273740px;}
.ws55{word-spacing:-7.273200px;}
.ws18{word-spacing:-7.269906px;}
.ws5d{word-spacing:-7.267200px;}
.ws1c{word-spacing:-7.263906px;}
.ws74{word-spacing:-7.247582px;}
.wsb1{word-spacing:-5.283034px;}
.ws2f{word-spacing:-3.652367px;}
.ws97{word-spacing:-3.639882px;}
.wsca{word-spacing:-3.063275px;}
.ws31{word-spacing:-2.592000px;}
.ws27{word-spacing:-2.539638px;}
.wsc9{word-spacing:-2.474184px;}
.ws26{word-spacing:-2.408729px;}
.wsc6{word-spacing:-2.277820px;}
.wsb8{word-spacing:-2.146911px;}
.wsc8{word-spacing:-2.081456px;}
.ws33{word-spacing:-1.230546px;}
.wsbd{word-spacing:-1.165092px;}
.ws91{word-spacing:-1.099637px;}
.ws44{word-spacing:-1.034183px;}
.wsb3{word-spacing:-0.641455px;}
.wsc7{word-spacing:-0.576000px;}
.ws9f{word-spacing:-0.314182px;}
.ws8a{word-spacing:-0.183273px;}
.ws20{word-spacing:-0.065455px;}
.ws2d{word-spacing:-0.059776px;}
.ws58{word-spacing:-0.020849px;}
.ws73{word-spacing:-0.017549px;}
.ws5e{word-spacing:-0.004464px;}
.ws6{word-spacing:0.000000px;}
.ws21{word-spacing:0.013091px;}
.ws39{word-spacing:0.078546px;}
.ws32{word-spacing:0.274909px;}
.ws4e{word-spacing:0.340364px;}
.ws12{word-spacing:0.848814px;}
.wsf{word-spacing:1.028140px;}
.ws45{word-spacing:1.125819px;}
.ws8e{word-spacing:1.256728px;}
.wsaf{word-spacing:1.518547px;}
.ws68{word-spacing:1.845820px;}
.ws67{word-spacing:1.911274px;}
.ws6b{word-spacing:2.042184px;}
.ws9d{word-spacing:2.173093px;}
.ws13{word-spacing:2.223652px;}
.wsbb{word-spacing:2.238547px;}
.ws8b{word-spacing:2.369457px;}
.wsaa{word-spacing:2.434911px;}
.wsc1{word-spacing:2.500366px;}
.ws99{word-spacing:2.565820px;}
.wsad{word-spacing:2.631275px;}
.ws25{word-spacing:2.696730px;}
.wsd{word-spacing:2.701857px;}
.ws10{word-spacing:2.821408px;}
.ws92{word-spacing:2.958548px;}
.ws9e{word-spacing:3.024003px;}
.ws34{word-spacing:3.089457px;}
.ws3d{word-spacing:3.285821px;}
.wsb{word-spacing:3.299613px;}
.ws83{word-spacing:3.482185px;}
.ws84{word-spacing:3.525562px;}
.ws85{word-spacing:3.547639px;}
.wsb0{word-spacing:3.611081px;}
.ws69{word-spacing:3.612716px;}
.ws15{word-spacing:3.613094px;}
.ws6f{word-spacing:3.622070px;}
.ws86{word-spacing:3.628261px;}
.ws7a{word-spacing:3.678549px;}
.wsc{word-spacing:3.777818px;}
.ws1a{word-spacing:3.940367px;}
.ws3e{word-spacing:4.005822px;}
.ws3b{word-spacing:4.071276px;}
.ws16{word-spacing:4.464004px;}
.ws6a{word-spacing:4.483200px;}
.ws11{word-spacing:4.554901px;}
.wsb6{word-spacing:4.585125px;}
.ws46{word-spacing:4.594913px;}
.ws3f{word-spacing:4.648261px;}
.ws40{word-spacing:4.660368px;}
.ws9{word-spacing:4.674452px;}
.ws89{word-spacing:4.725822px;}
.ws2b{word-spacing:4.791277px;}
.wsb4{word-spacing:4.856731px;}
.ws87{word-spacing:5.053095px;}
.ws35{word-spacing:5.184004px;}
.ws3c{word-spacing:5.249459px;}
.ws2a{word-spacing:5.314914px;}
.ws71{word-spacing:5.379825px;}
.ws2c{word-spacing:5.642187px;}
.wsb9{word-spacing:5.707641px;}
.ws50{word-spacing:5.773096px;}
.ws78{word-spacing:5.940035px;}
.ws4c{word-spacing:5.969460px;}
.wsc2{word-spacing:6.034914px;}
.ws79{word-spacing:6.100369px;}
.ws4b{word-spacing:6.165823px;}
.ws4a{word-spacing:6.231278px;}
.wsa7{word-spacing:6.427642px;}
.ws52{word-spacing:6.538747px;}
.ws24{word-spacing:6.558551px;}
.wsae{word-spacing:6.689460px;}
.wsa0{word-spacing:6.754915px;}
.wsa4{word-spacing:6.885824px;}
.ws38{word-spacing:7.016733px;}
.ws75{word-spacing:7.018070px;}
.ws7d{word-spacing:7.147642px;}
.ws82{word-spacing:7.278552px;}
.ws81{word-spacing:7.344006px;}
.ws7f{word-spacing:7.354261px;}
.ws7e{word-spacing:7.366230px;}
.ws8{word-spacing:7.603456px;}
.wsab{word-spacing:7.867643px;}
.wsa5{word-spacing:7.998552px;}
.wsa9{word-spacing:8.129461px;}
.wsa6{word-spacing:8.194916px;}
.wscc{word-spacing:8.456734px;}
.ws4f{word-spacing:8.653098px;}
.wsa8{word-spacing:8.718553px;}
.wsa1{word-spacing:8.784007px;}
.ws98{word-spacing:9.045826px;}
.wsb7{word-spacing:9.242190px;}
.ws42{word-spacing:10.027645px;}
.ws36{word-spacing:10.158554px;}
.wsc0{word-spacing:10.420372px;}
.ws8c{word-spacing:10.485827px;}
.wsbc{word-spacing:10.682191px;}
.ws49{word-spacing:10.747645px;}
.ws4d{word-spacing:10.813100px;}
.ws14{word-spacing:10.878555px;}
.ws8d{word-spacing:11.205828px;}
.ws51{word-spacing:11.271282px;}
.ws48{word-spacing:11.402191px;}
.ws95{word-spacing:11.467646px;}
.wsa3{word-spacing:11.533101px;}
.ws88{word-spacing:11.598555px;}
.wsac{word-spacing:12.056737px;}
.wsba{word-spacing:12.384010px;}
.ws28{word-spacing:12.449465px;}
.ws29{word-spacing:12.514920px;}
.ws66{word-spacing:12.645829px;}
.ws65{word-spacing:12.753162px;}
.wsc5{word-spacing:12.776738px;}
.wsa{word-spacing:13.341914px;}
.ws47{word-spacing:14.151285px;}
.wscb{word-spacing:16.311286px;}
.ws93{word-spacing:21.116981px;}
.ws96{word-spacing:21.122981px;}
.ws8f{word-spacing:21.141836px;}
.ws90{word-spacing:22.012217px;}
.ws7{word-spacing:23.312640px;}
.ws41{word-spacing:23.760020px;}
.ws59{word-spacing:24.126035px;}
.wsb5{word-spacing:24.218202px;}
.ws2e{word-spacing:25.391166px;}
.wsbe{word-spacing:27.360023px;}
.ws53{word-spacing:27.762035px;}
.wsa2{word-spacing:28.080023px;}
.ws43{word-spacing:29.192752px;}
.wsbf{word-spacing:29.585479px;}
.ws64{word-spacing:56.847162px;}
.ws61{word-spacing:67.100616px;}
.ws30{word-spacing:69.937725px;}
.ws77{word-spacing:97.325913px;}
.ws54{word-spacing:99.170076px;}
.ws56{word-spacing:99.183735px;}
.ws9c{word-spacing:99.193542px;}
.ws19{word-spacing:99.202992px;}
.ws94{word-spacing:387.569778px;}
.ws1f{word-spacing:452.912076px;}
.ws7b{word-spacing:630.340889px;}
.ws23{word-spacing:731.961735px;}
._16{margin-left:-37.195179px;}
._34{margin-left:-32.628186px;}
._1b{margin-left:-30.797594px;}
._11{margin-left:-27.579426px;}
._28{margin-left:-18.172529px;}
._25{margin-left:-10.460625px;}
._2d{margin-left:-7.045092px;}
._13{margin-left:-5.821108px;}
._26{margin-left:-4.789320px;}
._6{margin-left:-3.692584px;}
._3{margin-left:-2.308374px;}
._0{margin-left:-1.107114px;}
._1{width:1.009932px;}
._14{width:2.159036px;}
._4{width:3.310590px;}
._7{width:4.493965px;}
._a{width:5.514373px;}
._21{width:8.288844px;}
._8{width:9.328244px;}
._9{width:10.337071px;}
._19{width:16.952741px;}
._5{width:18.247605px;}
._20{width:19.326570px;}
._22{width:21.158652px;}
._18{width:22.804340px;}
._30{width:23.977037px;}
._10{width:25.575108px;}
._35{width:26.619406px;}
._b{width:27.709218px;}
._c{width:29.050274px;}
._15{width:30.960026px;}
._1d{width:32.138209px;}
._1a{width:33.464763px;}
._1c{width:34.577491px;}
._31{width:35.660570px;}
._23{width:37.392518px;}
._2e{width:38.613863px;}
._1f{width:39.703795px;}
._33{width:41.234720px;}
._2f{width:42.497498px;}
._24{width:44.323809px;}
._1e{width:48.632768px;}
._32{width:50.958604px;}
._2b{width:52.180039px;}
._12{width:57.136625px;}
._d{width:61.882131px;}
._e{width:66.902423px;}
._f{width:67.907918px;}
._2a{width:74.621860px;}
._27{width:80.697600px;}
._29{width:96.836850px;}
._17{width:142.501816px;}
._2c{width:382.903296px;}
._2{width:1669.138900px;}
.fcb{color:transparent;}
.fc9{color:rgb(44,62,80);}
.fcc{color:rgb(128,0,0);}
.fc8{color:rgb(83,129,53);}
.fc7{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs6{font-size:33.119987px;}
.fs10{font-size:35.865600px;}
.fsa{font-size:47.820600px;}
.fs5{font-size:48.239981px;}
.fs1{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs8{font-size:59.775600px;}
.fsd{font-size:60.000000px;}
.fs9{font-size:65.454600px;}
.fsf{font-size:66.000000px;}
.fs0{font-size:66.239974px;}
.fs7{font-size:71.731200px;}
.fs4{font-size:71.999971px;}
.fse{font-size:72.000000px;}
.fsb{font-size:86.077200px;}
.fsc{font-size:96.000000px;}
.fs2{font-size:102.239959px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.120234px;}
.y45{bottom:1.439261px;}
.y75{bottom:2.355022px;}
.y1d{bottom:2.699070px;}
.y70{bottom:2.826022px;}
.y6e{bottom:3.240022px;}
.y73{bottom:3.564022px;}
.y17{bottom:3.958984px;}
.y7{bottom:4.320004px;}
.y11{bottom:4.498951px;}
.y1b{bottom:4.499057px;}
.y29{bottom:4.499072px;}
.y6d{bottom:21.210022px;}
.y5{bottom:24.600290px;}
.y71{bottom:29.484000px;}
.y72{bottom:33.468000px;}
.y6c{bottom:39.180022px;}
.y74{bottom:51.870000px;}
.y87{bottom:108.000000px;}
.yf9{bottom:120.195000px;}
.ya5{bottom:122.137500px;}
.y63{bottom:128.323500px;}
.y114{bottom:147.379500px;}
.y62{bottom:148.647000px;}
.ya4{bottom:152.175000px;}
.yf8{bottom:160.842000px;}
.y133{bottom:161.371500px;}
.y113{bottom:167.703000px;}
.y61{bottom:168.972000px;}
.y132{bottom:181.695000px;}
.yf6{bottom:183.414000px;}
.y112{bottom:188.028000px;}
.y60{bottom:189.295500px;}
.yf5{bottom:190.474500px;}
.yf7{bottom:190.593000px;}
.ya3{bottom:192.822000px;}
.yf4{bottom:194.638500px;}
.ye{bottom:198.479921px;}
.y111{bottom:208.351500px;}
.y5f{bottom:209.619000px;}
.ya2{bottom:217.848000px;}
.y135{bottom:218.224503px;}
.y3f{bottom:227.999909px;}
.y110{bottom:228.675000px;}
.ya1{bottom:229.072500px;}
.y86{bottom:229.942500px;}
.yf3{bottom:230.304000px;}
.yf2{bottom:235.287000px;}
.y3e{bottom:246.359901px;}
.y10f{bottom:248.998500px;}
.y5e{bottom:250.266000px;}
.yf1{bottom:255.610500px;}
.yc9{bottom:255.772500px;}
.y3d{bottom:264.719894px;}
.y131{bottom:269.440500px;}
.y5d{bottom:270.591000px;}
.ya0{bottom:273.325500px;}
.yf0{bottom:275.934000px;}
.yc8{bottom:276.096000px;}
.y10e{bottom:279.891000px;}
.y5c{bottom:290.914500px;}
.y3c{bottom:296.399881px;}
.yc7{bottom:296.419500px;}
.yee{bottom:298.506000px;}
.yed{bottom:305.566500px;}
.yef{bottom:305.685000px;}
.y130{bottom:305.968500px;}
.yec{bottom:309.730500px;}
.y5b{bottom:311.238000px;}
.y27{bottom:313.859874px;}
.y9f{bottom:313.972500px;}
.yc6{bottom:316.743000px;}
.y10d{bottom:323.710500px;}
.y3b{bottom:326.099870px;}
.y85{bottom:331.561500px;}
.y9e{bottom:334.296000px;}
.y5a{bottom:341.494500px;}
.y10c{bottom:344.034000px;}
.y44{bottom:345.360600px;}
.yc5{bottom:346.780500px;}
.yeb{bottom:350.377500px;}
.y84{bottom:351.885000px;}
.y59{bottom:352.719000px;}
.y12f{bottom:357.184500px;}
.y43{bottom:364.079854px;}
.y9d{bottom:365.188500px;}
.yea{bottom:370.701000px;}
.y83{bottom:372.210000px;}
.y12e{bottom:377.508000px;}
.y10b{bottom:377.806500px;}
.y42{bottom:381.359847px;}
.yc4{bottom:387.427500px;}
.y82{bottom:392.533500px;}
.y58{bottom:393.865500px;}
.y12d{bottom:397.831500px;}
.y10a{bottom:398.131500px;}
.y41{bottom:398.639841px;}
.ye7{bottom:400.230000px;}
.ye9{bottom:407.290500px;}
.ye8{bottom:407.409000px;}
.y9c{bottom:409.008000px;}
.ye6{bottom:411.454500px;}
.y81{bottom:412.857000px;}
.y40{bottom:416.639833px;}
.yc3{bottom:416.724000px;}
.y12c{bottom:418.155000px;}
.y57{bottom:422.791500px;}
.yc2{bottom:428.037000px;}
.y26{bottom:428.339829px;}
.y109{bottom:431.904000px;}
.y80{bottom:433.180500px;}
.y12b{bottom:438.480000px;}
.y56{bottom:443.115000px;}
.y9b{bottom:449.655000px;}
.y108{bottom:452.227500px;}
.y3a{bottom:452.459819px;}
.y7f{bottom:453.504000px;}
.ye5{bottom:454.888500px;}
.y12a{bottom:458.803500px;}
.y55{bottom:463.438500px;}
.y9a{bottom:469.978500px;}
.yc1{bottom:471.585000px;}
.y107{bottom:472.551000px;}
.ye4{bottom:475.212000px;}
.y99{bottom:490.302000px;}
.y7e{bottom:491.878500px;}
.y106{bottom:492.876000px;}
.yc0{bottom:494.157000px;}
.y129{bottom:494.883000px;}
.ye3{bottom:495.535500px;}
.y68{bottom:499.968000px;}
.y39{bottom:502.859799px;}
.ybf{bottom:505.470000px;}
.y7d{bottom:512.202000px;}
.y128{bottom:515.206500px;}
.ye2{bottom:515.860500px;}
.y38{bottom:522.659791px;}
.y105{bottom:526.648500px;}
.y7c{bottom:532.525500px;}
.ybe{bottom:532.579500px;}
.ye1{bottom:536.184000px;}
.y25{bottom:541.559783px;}
.y104{bottom:546.972000px;}
.y127{bottom:548.254500px;}
.y98{bottom:549.675000px;}
.y97{bottom:549.763500px;}
.y67{bottom:551.176486px;}
.y7b{bottom:552.849000px;}
.ybd{bottom:554.968500px;}
.y37{bottom:555.419778px;}
.ye0{bottom:556.507500px;}
.ybc{bottom:566.281500px;}
.y103{bottom:567.297000px;}
.y126{bottom:568.578000px;}
.y66{bottom:571.499986px;}
.y96{bottom:572.058000px;}
.y7a{bottom:573.174000px;}
.y36{bottom:574.679770px;}
.ydf{bottom:576.831000px;}
.y35{bottom:593.759762px;}
.y24{bottom:603.299759px;}
.y54{bottom:604.162500px;}
.y125{bottom:604.659000px;}
.y102{bottom:605.553000px;}
.ybb{bottom:609.843000px;}
.ydd{bottom:610.210500px;}
.y34{bottom:612.119755px;}
.yde{bottom:617.389500px;}
.y23{bottom:618.599753px;}
.y95{bottom:618.727500px;}
.yba{bottom:621.156000px;}
.ydc{bottom:621.435000px;}
.y53{bottom:622.095000px;}
.y124{bottom:624.982500px;}
.y33{bottom:631.919747px;}
.y22{bottom:633.899746px;}
.y101{bottom:636.445500px;}
.y52{bottom:640.029000px;}
.y123{bottom:645.306000px;}
.y21{bottom:647.939741px;}
.y32{bottom:651.179740px;}
.y94{bottom:659.376000px;}
.ydb{bottom:665.731500px;}
.yb9{bottom:669.183000px;}
.y31{bottom:670.259732px;}
.y116{bottom:673.570500px;}
.y122{bottom:674.256000px;}
.y51{bottom:675.894000px;}
.y30{bottom:689.519724px;}
.yb8{bottom:691.755000px;}
.y50{bottom:693.826500px;}
.y93{bottom:696.138000px;}
.yd9{bottom:698.391000px;}
.y145{bottom:698.745000px;}
.yb7{bottom:703.066500px;}
.y20{bottom:708.599717px;}
.y2f{bottom:708.779716px;}
.yd8{bottom:709.615500px;}
.y4f{bottom:711.759000px;}
.y121{bottom:714.903000px;}
.y144{bottom:719.068500px;}
.yda{bottom:720.687000px;}
.y100{bottom:725.128500px;}
.y2e{bottom:728.039709px;}
.y4e{bottom:729.693000px;}
.y120{bottom:735.226500px;}
.y143{bottom:739.392000px;}
.yff{bottom:745.453500px;}
.y4d{bottom:747.625500px;}
.yb6{bottom:748.228500px;}
.yd7{bottom:752.346000px;}
.y11f{bottom:755.550000px;}
.y2d{bottom:756.299697px;}
.y4c{bottom:765.558000px;}
.yfe{bottom:765.777000px;}
.y1f{bottom:769.079692px;}
.y92{bottom:769.662000px;}
.yb5{bottom:770.617500px;}
.y142{bottom:773.166000px;}
.y2c{bottom:775.379690px;}
.y11e{bottom:775.875000px;}
.yb3{bottom:781.842000px;}
.y4b{bottom:783.490500px;}
.y1e{bottom:784.559686px;}
.yfd{bottom:786.100500px;}
.yfa{bottom:788.873963px;}
.yb4{bottom:792.912000px;}
.y141{bottom:793.489500px;}
.y2b{bottom:794.639682px;}
.y11d{bottom:796.198500px;}
.y4a{bottom:801.423000px;}
.yfc{bottom:806.424000px;}
.y2a{bottom:813.899674px;}
.y28{bottom:816.060600px;}
.y11c{bottom:816.522000px;}
.y49{bottom:819.355500px;}
.y1c{bottom:822.180600px;}
.y91{bottom:826.747500px;}
.y140{bottom:827.263500px;}
.yb2{bottom:829.869000px;}
.y48{bottom:837.289500px;}
.yd6{bottom:840.433500px;}
.y90{bottom:847.072500px;}
.y13f{bottom:847.587000px;}
.y18{bottom:849.539660px;}
.y19{bottom:849.719660px;}
.yb1{bottom:850.194000px;}
.y134{bottom:853.050000px;}
.y1a{bottom:854.220600px;}
.yd5{bottom:860.757000px;}
.y65{bottom:862.341025px;}
.y8f{bottom:867.396000px;}
.yb0{bottom:872.764500px;}
.yd4{bottom:881.080500px;}
.y13e{bottom:881.359500px;}
.yaf{bottom:884.077500px;}
.y8e{bottom:887.719500px;}
.yd{bottom:897.059641px;}
.yd3{bottom:901.404000px;}
.y13d{bottom:901.684500px;}
.y11b{bottom:904.266000px;}
.y8d{bottom:908.043000px;}
.yc{bottom:916.319633px;}
.yd2{bottom:921.727500px;}
.y11a{bottom:924.589500px;}
.y8c{bottom:928.366500px;}
.yae{bottom:932.104500px;}
.y13c{bottom:935.457000px;}
.y47{bottom:936.241500px;}
.yb{bottom:937.379625px;}
.yd0{bottom:944.299500px;}
.y119{bottom:944.914500px;}
.y8b{bottom:948.691500px;}
.yd1{bottom:951.478500px;}
.yad{bottom:954.493500px;}
.ycf{bottom:955.524000px;}
.y13b{bottom:955.780500px;}
.y46{bottom:957.163500px;}
.yac{bottom:965.719500px;}
.ya{bottom:968.339613px;}
.y8a{bottom:969.015000px;}
.y13a{bottom:976.105500px;}
.y115{bottom:985.219527px;}
.y118{bottom:985.561500px;}
.y89{bottom:989.338500px;}
.y64{bottom:994.448959px;}
.yce{bottom:996.172500px;}
.y9{bottom:999.479600px;}
.y88{bottom:1009.662000px;}
.y139{bottom:1009.878000px;}
.yab{bottom:1013.746500px;}
.ycd{bottom:1026.208500px;}
.y138{bottom:1030.201500px;}
.yaa{bottom:1034.070000px;}
.y6a{bottom:1034.532977px;}
.y16{bottom:1034.940600px;}
.y15{bottom:1038.899584px;}
.yf{bottom:1041.599583px;}
.ya6{bottom:1046.189972px;}
.y117{bottom:1046.533500px;}
.y137{bottom:1050.526500px;}
.yfb{bottom:1057.101000px;}
.y14{bottom:1057.259577px;}
.ya9{bottom:1064.107500px;}
.ycc{bottom:1066.857000px;}
.y69{bottom:1070.656262px;}
.y13{bottom:1075.619570px;}
.y79{bottom:1077.424500px;}
.y136{bottom:1084.299000px;}
.ycb{bottom:1087.180500px;}
.y78{bottom:1097.748000px;}
.ya8{bottom:1103.244000px;}
.y12{bottom:1103.339559px;}
.yca{bottom:1107.504000px;}
.ya7{bottom:1114.468500px;}
.y77{bottom:1118.073000px;}
.y10{bottom:1119.000600px;}
.y76{bottom:1138.396500px;}
.y4{bottom:1147.979541px;}
.y8{bottom:1177.499529px;}
.y3{bottom:1179.839528px;}
.y6b{bottom:1187.325000px;}
.y6f{bottom:1198.557000px;}
.y2{bottom:1198.919520px;}
.y1{bottom:1217.999513px;}
.he{height:14.040000px;}
.h16{height:14.760000px;}
.h17{height:15.660000px;}
.h28{height:17.565000px;}
.h27{height:19.767000px;}
.hb{height:19.800000px;}
.h3{height:20.160000px;}
.h24{height:21.078000px;}
.h13{height:23.772647px;}
.hf{height:33.706744px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.h9{height:36.914048px;}
.hd{height:38.759750px;}
.h10{height:39.339828px;}
.h12{height:39.830258px;}
.h6{height:40.851546px;}
.h1f{height:41.723369px;}
.h8{height:42.894123px;}
.h15{height:43.506897px;}
.h14{height:43.536076px;}
.hc{height:44.149201px;}
.h1a{height:44.831700px;}
.ha{height:45.281232px;}
.h1{height:46.025138px;}
.h2{height:47.545293px;}
.h1b{height:49.090950px;}
.h1e{height:50.498765px;}
.h7{height:51.679667px;}
.h19{height:53.798400px;}
.h22{height:53.910000px;}
.h39{height:56.935496px;}
.h38{height:56.941496px;}
.h29{height:58.857422px;}
.h23{height:58.886719px;}
.h45{height:59.613450px;}
.h3e{height:59.619450px;}
.h47{height:60.211496px;}
.h1d{height:60.217496px;}
.h2d{height:60.674870px;}
.h2a{height:60.680870px;}
.h48{height:62.181870px;}
.h42{height:62.889450px;}
.h2b{height:63.950870px;}
.h2c{height:63.956870px;}
.h20{height:64.557900px;}
.h26{height:64.775391px;}
.h3b{height:65.272950px;}
.h49{height:65.632950px;}
.h46{height:69.022950px;}
.h5{height:69.890597px;}
.h25{height:70.628906px;}
.h43{height:76.393496px;}
.h3f{height:79.071450px;}
.h1c{height:93.370950px;}
.h3c{height:93.376950px;}
.h32{height:93.988950px;}
.h36{height:94.336950px;}
.h35{height:94.342950px;}
.h3d{height:94.900950px;}
.h21{height:100.125000px;}
.h34{height:104.960870px;}
.h3a{height:105.109496px;}
.h41{height:107.787450px;}
.h37{height:109.202870px;}
.h44{height:109.552950px;}
.h40{height:110.026950px;}
.h31{height:138.268950px;}
.h2f{height:138.622950px;}
.h2e{height:149.852870px;}
.h33{height:149.858870px;}
.h30{height:150.206870px;}
.h18{height:1262.835000px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w8{width:7.020000px;}
.w6{width:8.100000px;}
.w4{width:8.280000px;}
.wb{width:9.000000px;}
.w2{width:9.720000px;}
.w7{width:113.760000px;}
.w9{width:135.720000px;}
.wa{width:157.860000px;}
.wf{width:367.372500px;}
.w3{width:397.980000px;}
.we{width:837.495000px;}
.w10{width:882.114000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.wc{width:892.914000px;}
.wd{width:893.250000px;}
.x13{left:-4.680264px;}
.xd{left:-1.980103px;}
.x0{left:0.000000px;}
.x3d{left:10.800000px;}
.x3a{left:54.000000px;}
.x3c{left:86.400000px;}
.x1d{left:91.079964px;}
.x1b{left:97.019961px;}
.x2e{left:108.000000px;}
.x19{left:111.060000px;}
.x1f{left:112.139955px;}
.x38{left:113.741022px;}
.x1{left:116.999953px;}
.x2{left:118.979952px;}
.x14{left:120.239952px;}
.x3e{left:127.110000px;}
.x3f{left:131.371500px;}
.x35{left:133.404000px;}
.x78{left:141.636000px;}
.x2d{left:148.909500px;}
.x1e{left:151.739939px;}
.x1c{left:153.719939px;}
.xa{left:156.239938px;}
.x2c{left:171.325500px;}
.x4{left:181.259927px;}
.x59{left:188.475000px;}
.xb{left:201.959919px;}
.x70{left:206.095500px;}
.x15{left:215.999914px;}
.x16{left:218.879912px;}
.x1a{left:224.820000px;}
.x75{left:232.818000px;}
.x60{left:234.828000px;}
.x20{left:237.779915px;}
.x21{left:238.859904px;}
.x76{left:242.185500px;}
.x55{left:244.893000px;}
.x2f{left:252.801000px;}
.xc{left:260.280000px;}
.x17{left:261.720000px;}
.x5{left:263.339825px;}
.x40{left:268.017000px;}
.x50{left:273.649500px;}
.x18{left:281.879887px;}
.x5b{left:284.080500px;}
.x27{left:285.119886px;}
.x24{left:286.199886px;}
.x25{left:287.279885px;}
.x23{left:290.879884px;}
.x5d{left:299.220000px;}
.x41{left:301.308000px;}
.x22{left:304.199878px;}
.x5e{left:307.377000px;}
.x71{left:309.685500px;}
.x4c{left:314.692500px;}
.x10{left:315.719838px;}
.x30{left:322.560000px;}
.x39{left:323.735022px;}
.x47{left:325.381500px;}
.x53{left:330.768000px;}
.x61{left:331.920000px;}
.x65{left:336.637500px;}
.x46{left:338.790000px;}
.x26{left:343.439859px;}
.x4f{left:345.904500px;}
.x77{left:349.399500px;}
.x31{left:358.386000px;}
.x6c{left:364.624500px;}
.x2b{left:366.466500px;}
.x36{left:369.421492px;}
.x4b{left:374.824500px;}
.x32{left:379.866000px;}
.x6{left:381.059848px;}
.x8{left:383.939846px;}
.x69{left:385.435500px;}
.x74{left:391.015500px;}
.x42{left:392.628000px;}
.xf{left:396.719841px;}
.x2a{left:400.123500px;}
.x66{left:401.328000px;}
.x7{left:408.059837px;}
.x62{left:411.088500px;}
.x37{left:413.578491px;}
.x28{left:420.840000px;}
.xe{left:425.339830px;}
.x51{left:434.488500px;}
.x67{left:438.007500px;}
.x5f{left:441.769500px;}
.x6a{left:449.682000px;}
.x48{left:453.436500px;}
.x68{left:454.470000px;}
.x6d{left:469.284000px;}
.x6b{left:475.011000px;}
.x63{left:481.980000px;}
.x33{left:489.252000px;}
.x49{left:491.290500px;}
.x43{left:493.429500px;}
.x6e{left:496.216500px;}
.x54{left:497.970000px;}
.x11{left:504.900000px;}
.x64{left:510.036000px;}
.x9{left:512.819795px;}
.x34{left:524.323500px;}
.x4a{left:525.778500px;}
.x4d{left:536.467500px;}
.x6f{left:546.879000px;}
.x5c{left:553.174500px;}
.x52{left:555.834000px;}
.x56{left:559.653000px;}
.x58{left:568.512000px;}
.x29{left:578.700000px;}
.x44{left:581.047500px;}
.x57{left:595.188000px;}
.x5a{left:600.978000px;}
.x72{left:615.163500px;}
.x73{left:640.491000px;}
.x12{left:665.640000px;}
.x3{left:671.039732px;}
.x45{left:672.367500px;}
.x3b{left:743.964001px;}
.x4e{left:764.004000px;}
@media print{
.v9{vertical-align:-11.840000pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:5.653333pt;}
.vc{vertical-align:14.384000pt;}
.vd{vertical-align:16.810667pt;}
.v12{vertical-align:17.717333pt;}
.va{vertical-align:21.114667pt;}
.v4{vertical-align:24.026667pt;}
.v8{vertical-align:28.912000pt;}
.v3{vertical-align:30.634667pt;}
.v5{vertical-align:36.117333pt;}
.vf{vertical-align:38.405333pt;}
.v2{vertical-align:39.360000pt;}
.ve{vertical-align:40.720000pt;}
.v10{vertical-align:45.440000pt;}
.vb{vertical-align:63.930667pt;}
.v6{vertical-align:79.269333pt;}
.v7{vertical-align:115.381333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.000092pt;}
.ls4b{letter-spacing:0.000448pt;}
.ls43{letter-spacing:0.000462pt;}
.ls3a{letter-spacing:0.000935pt;}
.lsb{letter-spacing:0.000940pt;}
.ls6a{letter-spacing:0.000948pt;}
.ls48{letter-spacing:0.001415pt;}
.ls1f{letter-spacing:0.001911pt;}
.ls55{letter-spacing:0.001914pt;}
.ls89{letter-spacing:0.001918pt;}
.ls59{letter-spacing:0.002384pt;}
.ls10{letter-spacing:0.002387pt;}
.ls15{letter-spacing:0.002400pt;}
.ls6f{letter-spacing:0.002401pt;}
.lsd{letter-spacing:0.002405pt;}
.ls63{letter-spacing:0.002411pt;}
.ls3b{letter-spacing:0.003365pt;}
.ls2b{letter-spacing:0.003861pt;}
.ls83{letter-spacing:0.005796pt;}
.ls0{letter-spacing:0.016533pt;}
.ls6d{letter-spacing:1.615008pt;}
.ls6c{letter-spacing:1.857914pt;}
.ls8d{letter-spacing:2.087249pt;}
.ls8c{letter-spacing:2.153669pt;}
.lsf{letter-spacing:2.653258pt;}
.ls76{letter-spacing:2.656092pt;}
.ls60{letter-spacing:2.657886pt;}
.ls4c{letter-spacing:2.658591pt;}
.ls77{letter-spacing:2.919721pt;}
.ls30{letter-spacing:3.228580pt;}
.ls37{letter-spacing:3.233914pt;}
.ls68{letter-spacing:3.348813pt;}
.ls6b{letter-spacing:3.352213pt;}
.ls75{letter-spacing:3.354146pt;}
.ls28{letter-spacing:5.311956pt;}
.ls27{letter-spacing:5.317289pt;}
.ls79{letter-spacing:6.007925pt;}
.ls33{letter-spacing:6.372811pt;}
.lse{letter-spacing:6.375730pt;}
.ls31{letter-spacing:6.378144pt;}
.ls1b{letter-spacing:6.584221pt;}
.ls6e{letter-spacing:8.263925pt;}
.ls42{letter-spacing:9.691115pt;}
.ls47{letter-spacing:9.692082pt;}
.ls58{letter-spacing:9.693077pt;}
.ls40{letter-spacing:9.693555pt;}
.ls25{letter-spacing:9.695477pt;}
.ls3f{letter-spacing:9.696448pt;}
.ls45{letter-spacing:9.696935pt;}
.ls5c{letter-spacing:9.697415pt;}
.ls87{letter-spacing:9.698384pt;}
.ls3e{letter-spacing:9.702268pt;}
.ls6{letter-spacing:12.349258pt;}
.ls4{letter-spacing:12.354591pt;}
.lsc{letter-spacing:12.923115pt;}
.ls8{letter-spacing:12.927477pt;}
.ls21{letter-spacing:12.929911pt;}
.ls34{letter-spacing:12.929914pt;}
.ls4d{letter-spacing:12.930405pt;}
.ls2d{letter-spacing:12.931861pt;}
.ls23{letter-spacing:12.932811pt;}
.ls24{letter-spacing:12.935244pt;}
.ls95{letter-spacing:14.420811pt;}
.ls7b{letter-spacing:15.586591pt;}
.ls72{letter-spacing:15.703925pt;}
.ls3{letter-spacing:16.155115pt;}
.ls5{letter-spacing:16.156082pt;}
.ls8b{letter-spacing:16.157077pt;}
.ls66{letter-spacing:16.157548pt;}
.ls7{letter-spacing:16.159477pt;}
.ls22{letter-spacing:16.161911pt;}
.ls2e{letter-spacing:16.164811pt;}
.ls2a{letter-spacing:16.174559pt;}
.ls14{letter-spacing:16.682144pt;}
.ls17{letter-spacing:17.668811pt;}
.ls16{letter-spacing:17.672703pt;}
.ls94{letter-spacing:17.775479pt;}
.ls7e{letter-spacing:18.013067pt;}
.ls71{letter-spacing:18.018400pt;}
.ls64{letter-spacing:18.813258pt;}
.ls56{letter-spacing:18.813398pt;}
.ls61{letter-spacing:18.818591pt;}
.ls86{letter-spacing:18.935925pt;}
.ls82{letter-spacing:18.941258pt;}
.ls9{letter-spacing:19.292088pt;}
.ls50{letter-spacing:19.300811pt;}
.ls5f{letter-spacing:19.302268pt;}
.ls4e{letter-spacing:19.306144pt;}
.ls44{letter-spacing:19.389555pt;}
.ls3d{letter-spacing:19.391975pt;}
.ls5b{letter-spacing:19.392448pt;}
.ls8a{letter-spacing:19.514146pt;}
.ls93{letter-spacing:19.892811pt;}
.ls13{letter-spacing:20.036813pt;}
.ls96{letter-spacing:20.260347pt;}
.ls1a{letter-spacing:20.301063pt;}
.ls74{letter-spacing:20.425669pt;}
.ls18{letter-spacing:20.525077pt;}
.ls73{letter-spacing:20.928092pt;}
.ls91{letter-spacing:20.967219pt;}
.ls11{letter-spacing:21.239925pt;}
.ls57{letter-spacing:21.386622pt;}
.ls2c{letter-spacing:21.471956pt;}
.ls20{letter-spacing:21.477289pt;}
.ls4a{letter-spacing:21.624221pt;}
.ls1e{letter-spacing:22.007244pt;}
.ls3c{letter-spacing:22.045258pt;}
.ls98{letter-spacing:22.049886pt;}
.ls65{letter-spacing:22.050591pt;}
.ls84{letter-spacing:22.173258pt;}
.ls7d{letter-spacing:22.532811pt;}
.ls38{letter-spacing:22.538144pt;}
.ls81{letter-spacing:22.625914pt;}
.ls90{letter-spacing:22.788800pt;}
.ls8f{letter-spacing:22.791244pt;}
.ls19{letter-spacing:22.957258pt;}
.ls1d{letter-spacing:23.631477pt;}
.ls5a{letter-spacing:24.236575pt;}
.ls8e{letter-spacing:24.241916pt;}
.ls1{letter-spacing:24.497324pt;}
.ls54{letter-spacing:24.618622pt;}
.ls92{letter-spacing:25.678026pt;}
.ls97{letter-spacing:25.976221pt;}
.ls5e{letter-spacing:26.058146pt;}
.ls67{letter-spacing:27.714400pt;}
.ls80{letter-spacing:27.748811pt;}
.ls12{letter-spacing:27.842591pt;}
.ls78{letter-spacing:28.442758pt;}
.ls1c{letter-spacing:30.216221pt;}
.ls7f{letter-spacing:33.061289pt;}
.ls53{letter-spacing:37.959739pt;}
.lsa{letter-spacing:38.138144pt;}
.ls70{letter-spacing:41.930155pt;}
.ls35{letter-spacing:42.858622pt;}
.ls7c{letter-spacing:49.450144pt;}
.ls26{letter-spacing:67.943244pt;}
.ls29{letter-spacing:83.095244pt;}
.ls32{letter-spacing:88.517289pt;}
.ls52{letter-spacing:89.765289pt;}
.ls88{letter-spacing:126.061077pt;}
.ls36{letter-spacing:132.434411pt;}
.ls39{letter-spacing:180.082411pt;}
.ls85{letter-spacing:248.007925pt;}
.ls51{letter-spacing:259.727956pt;}
.ls5d{letter-spacing:347.511244pt;}
.ls2f{letter-spacing:494.605077pt;}
.ls4f{letter-spacing:574.026622pt;}
.ls62{letter-spacing:692.727244pt;}
.ls41{letter-spacing:751.557289pt;}
.ls46{letter-spacing:771.543244pt;}
.ls49{letter-spacing:824.842622pt;}
.ls69{letter-spacing:851.325258pt;}
.ws37{word-spacing:-58.181867pt;}
.ws5f{word-spacing:-54.074227pt;}
.ws6c{word-spacing:-45.265492pt;}
.ws4{word-spacing:-39.839984pt;}
.ws17{word-spacing:-37.899668pt;}
.wse{word-spacing:-34.611401pt;}
.ws70{word-spacing:-32.337481pt;}
.ws9a{word-spacing:-29.521250pt;}
.ws3{word-spacing:-28.816521pt;}
.ws6e{word-spacing:-28.183296pt;}
.ws1b{word-spacing:-25.623294pt;}
.ws60{word-spacing:-24.945056pt;}
.ws1e{word-spacing:-24.939722pt;}
.wsc4{word-spacing:-23.910333pt;}
.ws1d{word-spacing:-21.754875pt;}
.ws3a{word-spacing:-21.693655pt;}
.ws6d{word-spacing:-18.510138pt;}
.ws72{word-spacing:-18.504805pt;}
.wsc3{word-spacing:-16.376322pt;}
.ws22{word-spacing:-16.162923pt;}
.ws76{word-spacing:-15.486158pt;}
.ws80{word-spacing:-15.194252pt;}
.ws5{word-spacing:-14.767354pt;}
.ws7c{word-spacing:-13.682121pt;}
.wsb2{word-spacing:-13.346045pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.306875pt;}
.ws0{word-spacing:-12.005115pt;}
.ws5b{word-spacing:-6.480628pt;}
.ws5a{word-spacing:-6.477743pt;}
.ws5c{word-spacing:-6.474815pt;}
.ws9b{word-spacing:-6.470896pt;}
.ws63{word-spacing:-6.470880pt;}
.ws62{word-spacing:-6.467952pt;}
.ws57{word-spacing:-6.465546pt;}
.ws55{word-spacing:-6.465067pt;}
.ws18{word-spacing:-6.462139pt;}
.ws5d{word-spacing:-6.459734pt;}
.ws1c{word-spacing:-6.456806pt;}
.ws74{word-spacing:-6.442295pt;}
.wsb1{word-spacing:-4.696030pt;}
.ws2f{word-spacing:-3.246548pt;}
.ws97{word-spacing:-3.235451pt;}
.wsca{word-spacing:-2.722911pt;}
.ws31{word-spacing:-2.304000pt;}
.ws27{word-spacing:-2.257456pt;}
.wsc9{word-spacing:-2.199275pt;}
.ws26{word-spacing:-2.141093pt;}
.wsc6{word-spacing:-2.024729pt;}
.wsb8{word-spacing:-1.908365pt;}
.wsc8{word-spacing:-1.850183pt;}
.ws33{word-spacing:-1.093819pt;}
.wsbd{word-spacing:-1.035637pt;}
.ws91{word-spacing:-0.977455pt;}
.ws44{word-spacing:-0.919273pt;}
.wsb3{word-spacing:-0.570182pt;}
.wsc7{word-spacing:-0.512000pt;}
.ws9f{word-spacing:-0.279273pt;}
.ws8a{word-spacing:-0.162909pt;}
.ws20{word-spacing:-0.058182pt;}
.ws2d{word-spacing:-0.053134pt;}
.ws58{word-spacing:-0.018532pt;}
.ws73{word-spacing:-0.015599pt;}
.ws5e{word-spacing:-0.003968pt;}
.ws6{word-spacing:0.000000pt;}
.ws21{word-spacing:0.011636pt;}
.ws39{word-spacing:0.069818pt;}
.ws32{word-spacing:0.244364pt;}
.ws4e{word-spacing:0.302546pt;}
.ws12{word-spacing:0.754501pt;}
.wsf{word-spacing:0.913903pt;}
.ws45{word-spacing:1.000728pt;}
.ws8e{word-spacing:1.117092pt;}
.wsaf{word-spacing:1.349819pt;}
.ws68{word-spacing:1.640729pt;}
.ws67{word-spacing:1.698911pt;}
.ws6b{word-spacing:1.815274pt;}
.ws9d{word-spacing:1.931638pt;}
.ws13{word-spacing:1.976580pt;}
.wsbb{word-spacing:1.989820pt;}
.ws8b{word-spacing:2.106184pt;}
.wsaa{word-spacing:2.164365pt;}
.wsc1{word-spacing:2.222547pt;}
.ws99{word-spacing:2.280729pt;}
.wsad{word-spacing:2.338911pt;}
.ws25{word-spacing:2.397093pt;}
.wsd{word-spacing:2.401651pt;}
.ws10{word-spacing:2.507919pt;}
.ws92{word-spacing:2.629820pt;}
.ws9e{word-spacing:2.688002pt;}
.ws34{word-spacing:2.746184pt;}
.ws3d{word-spacing:2.920730pt;}
.wsb{word-spacing:2.932989pt;}
.ws83{word-spacing:3.095275pt;}
.ws84{word-spacing:3.133833pt;}
.ws85{word-spacing:3.153457pt;}
.wsb0{word-spacing:3.209850pt;}
.ws69{word-spacing:3.211303pt;}
.ws15{word-spacing:3.211639pt;}
.ws6f{word-spacing:3.219617pt;}
.ws86{word-spacing:3.225121pt;}
.ws7a{word-spacing:3.269821pt;}
.wsc{word-spacing:3.358060pt;}
.ws1a{word-spacing:3.502548pt;}
.ws3e{word-spacing:3.560730pt;}
.ws3b{word-spacing:3.618912pt;}
.ws16{word-spacing:3.968003pt;}
.ws6a{word-spacing:3.985067pt;}
.ws11{word-spacing:4.048801pt;}
.wsb6{word-spacing:4.075667pt;}
.ws46{word-spacing:4.084367pt;}
.ws3f{word-spacing:4.131787pt;}
.ws40{word-spacing:4.142549pt;}
.ws9{word-spacing:4.155068pt;}
.ws89{word-spacing:4.200731pt;}
.ws2b{word-spacing:4.258913pt;}
.wsb4{word-spacing:4.317095pt;}
.ws87{word-spacing:4.491640pt;}
.ws35{word-spacing:4.608004pt;}
.ws3c{word-spacing:4.666186pt;}
.ws2a{word-spacing:4.724368pt;}
.ws71{word-spacing:4.782067pt;}
.ws2c{word-spacing:5.015277pt;}
.wsb9{word-spacing:5.073459pt;}
.ws50{word-spacing:5.131641pt;}
.ws78{word-spacing:5.280031pt;}
.ws4c{word-spacing:5.306186pt;}
.wsc2{word-spacing:5.364368pt;}
.ws79{word-spacing:5.422550pt;}
.ws4b{word-spacing:5.480732pt;}
.ws4a{word-spacing:5.538914pt;}
.wsa7{word-spacing:5.713459pt;}
.ws52{word-spacing:5.812220pt;}
.ws24{word-spacing:5.829823pt;}
.wsae{word-spacing:5.946187pt;}
.wsa0{word-spacing:6.004369pt;}
.wsa4{word-spacing:6.120732pt;}
.ws38{word-spacing:6.237096pt;}
.ws75{word-spacing:6.238284pt;}
.ws7d{word-spacing:6.353460pt;}
.ws82{word-spacing:6.469824pt;}
.ws81{word-spacing:6.528005pt;}
.ws7f{word-spacing:6.537121pt;}
.ws7e{word-spacing:6.547760pt;}
.ws8{word-spacing:6.758628pt;}
.wsab{word-spacing:6.993460pt;}
.wsa5{word-spacing:7.109824pt;}
.wsa9{word-spacing:7.226188pt;}
.wsa6{word-spacing:7.284370pt;}
.wscc{word-spacing:7.517097pt;}
.ws4f{word-spacing:7.691643pt;}
.wsa8{word-spacing:7.749825pt;}
.wsa1{word-spacing:7.808007pt;}
.ws98{word-spacing:8.040734pt;}
.wsb7{word-spacing:8.215280pt;}
.ws42{word-spacing:8.913462pt;}
.ws36{word-spacing:9.029826pt;}
.wsc0{word-spacing:9.262553pt;}
.ws8c{word-spacing:9.320735pt;}
.wsbc{word-spacing:9.495281pt;}
.ws49{word-spacing:9.553463pt;}
.ws4d{word-spacing:9.611644pt;}
.ws14{word-spacing:9.669826pt;}
.ws8d{word-spacing:9.960736pt;}
.ws51{word-spacing:10.018917pt;}
.ws48{word-spacing:10.135281pt;}
.ws95{word-spacing:10.193463pt;}
.wsa3{word-spacing:10.251645pt;}
.ws88{word-spacing:10.309827pt;}
.wsac{word-spacing:10.717100pt;}
.wsba{word-spacing:11.008009pt;}
.ws28{word-spacing:11.066191pt;}
.ws29{word-spacing:11.124373pt;}
.ws66{word-spacing:11.240737pt;}
.ws65{word-spacing:11.336144pt;}
.wsc5{word-spacing:11.357100pt;}
.wsa{word-spacing:11.859479pt;}
.ws47{word-spacing:12.578920pt;}
.wscb{word-spacing:14.498921pt;}
.ws93{word-spacing:18.770650pt;}
.ws96{word-spacing:18.775983pt;}
.ws8f{word-spacing:18.792743pt;}
.ws90{word-spacing:19.566415pt;}
.ws7{word-spacing:20.722347pt;}
.ws41{word-spacing:21.120018pt;}
.ws59{word-spacing:21.445364pt;}
.wsb5{word-spacing:21.527291pt;}
.ws2e{word-spacing:22.569925pt;}
.wsbe{word-spacing:24.320020pt;}
.ws53{word-spacing:24.677364pt;}
.wsa2{word-spacing:24.960021pt;}
.ws43{word-spacing:25.949113pt;}
.wsbf{word-spacing:26.298204pt;}
.ws64{word-spacing:50.530811pt;}
.ws61{word-spacing:59.644992pt;}
.ws30{word-spacing:62.166867pt;}
.ws77{word-spacing:86.511922pt;}
.ws54{word-spacing:88.151178pt;}
.ws56{word-spacing:88.163320pt;}
.ws9c{word-spacing:88.172037pt;}
.ws19{word-spacing:88.180437pt;}
.ws94{word-spacing:344.506469pt;}
.ws1f{word-spacing:402.588512pt;}
.ws7b{word-spacing:560.303012pt;}
.ws23{word-spacing:650.632653pt;}
._16{margin-left:-33.062382pt;}
._34{margin-left:-29.002832pt;}
._1b{margin-left:-27.375639pt;}
._11{margin-left:-24.515046pt;}
._28{margin-left:-16.153360pt;}
._25{margin-left:-9.298333pt;}
._2d{margin-left:-6.262304pt;}
._13{margin-left:-5.174318pt;}
._26{margin-left:-4.257173pt;}
._6{margin-left:-3.282297pt;}
._3{margin-left:-2.051888pt;}
._0{margin-left:-0.984101pt;}
._1{width:0.897717pt;}
._14{width:1.919143pt;}
._4{width:2.942746pt;}
._7{width:3.994636pt;}
._a{width:4.901665pt;}
._21{width:7.367861pt;}
._8{width:8.291772pt;}
._9{width:9.188507pt;}
._19{width:15.069103pt;}
._5{width:16.220093pt;}
._20{width:17.179173pt;}
._22{width:18.807690pt;}
._18{width:20.270524pt;}
._30{width:21.312922pt;}
._10{width:22.733430pt;}
._35{width:23.661694pt;}
._b{width:24.630416pt;}
._c{width:25.822466pt;}
._15{width:27.520023pt;}
._1d{width:28.567297pt;}
._1a{width:29.746456pt;}
._1c{width:30.735548pt;}
._31{width:31.698284pt;}
._23{width:33.237794pt;}
._2e{width:34.323433pt;}
._1f{width:35.292262pt;}
._33{width:36.653084pt;}
._2f{width:37.775554pt;}
._24{width:39.398941pt;}
._1e{width:43.229127pt;}
._32{width:45.296537pt;}
._2b{width:46.382257pt;}
._12{width:50.788111pt;}
._d{width:55.006339pt;}
._e{width:59.468821pt;}
._f{width:60.362594pt;}
._2a{width:66.330542pt;}
._27{width:71.731200pt;}
._29{width:86.077200pt;}
._17{width:126.668280pt;}
._2c{width:340.358485pt;}
._2{width:1483.679023pt;}
.fs6{font-size:29.439988pt;}
.fs10{font-size:31.880533pt;}
.fsa{font-size:42.507200pt;}
.fs5{font-size:42.879983pt;}
.fs1{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs8{font-size:53.133867pt;}
.fsd{font-size:53.333333pt;}
.fs9{font-size:58.181867pt;}
.fsf{font-size:58.666667pt;}
.fs0{font-size:58.879976pt;}
.fs7{font-size:63.761067pt;}
.fs4{font-size:63.999974pt;}
.fse{font-size:64.000000pt;}
.fsb{font-size:76.513067pt;}
.fsc{font-size:85.333333pt;}
.fs2{font-size:90.879964pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.106875pt;}
.y45{bottom:1.279343pt;}
.y75{bottom:2.093353pt;}
.y1d{bottom:2.399173pt;}
.y70{bottom:2.512020pt;}
.y6e{bottom:2.880020pt;}
.y73{bottom:3.168020pt;}
.y17{bottom:3.519097pt;}
.y7{bottom:3.840003pt;}
.y11{bottom:3.999067pt;}
.y1b{bottom:3.999161pt;}
.y29{bottom:3.999175pt;}
.y6d{bottom:18.853353pt;}
.y5{bottom:21.866925pt;}
.y71{bottom:26.208000pt;}
.y72{bottom:29.749333pt;}
.y6c{bottom:34.826686pt;}
.y74{bottom:46.106667pt;}
.y87{bottom:96.000000pt;}
.yf9{bottom:106.840000pt;}
.ya5{bottom:108.566667pt;}
.y63{bottom:114.065333pt;}
.y114{bottom:131.004000pt;}
.y62{bottom:132.130667pt;}
.ya4{bottom:135.266667pt;}
.yf8{bottom:142.970667pt;}
.y133{bottom:143.441333pt;}
.y113{bottom:149.069333pt;}
.y61{bottom:150.197333pt;}
.y132{bottom:161.506667pt;}
.yf6{bottom:163.034667pt;}
.y112{bottom:167.136000pt;}
.y60{bottom:168.262667pt;}
.yf5{bottom:169.310667pt;}
.yf7{bottom:169.416000pt;}
.ya3{bottom:171.397333pt;}
.yf4{bottom:173.012000pt;}
.ye{bottom:176.426596pt;}
.y111{bottom:185.201333pt;}
.y5f{bottom:186.328000pt;}
.ya2{bottom:193.642667pt;}
.y135{bottom:193.977336pt;}
.y3f{bottom:202.666586pt;}
.y110{bottom:203.266667pt;}
.ya1{bottom:203.620000pt;}
.y86{bottom:204.393333pt;}
.yf3{bottom:204.714667pt;}
.yf2{bottom:209.144000pt;}
.y3e{bottom:218.986579pt;}
.y10f{bottom:221.332000pt;}
.y5e{bottom:222.458667pt;}
.yf1{bottom:227.209333pt;}
.yc9{bottom:227.353333pt;}
.y3d{bottom:235.306573pt;}
.y131{bottom:239.502667pt;}
.y5d{bottom:240.525333pt;}
.ya0{bottom:242.956000pt;}
.yf0{bottom:245.274667pt;}
.yc8{bottom:245.418667pt;}
.y10e{bottom:248.792000pt;}
.y5c{bottom:258.590667pt;}
.y3c{bottom:263.466561pt;}
.yc7{bottom:263.484000pt;}
.yee{bottom:265.338667pt;}
.yed{bottom:271.614667pt;}
.yef{bottom:271.720000pt;}
.y130{bottom:271.972000pt;}
.yec{bottom:275.316000pt;}
.y5b{bottom:276.656000pt;}
.y27{bottom:278.986555pt;}
.y9f{bottom:279.086667pt;}
.yc6{bottom:281.549333pt;}
.y10d{bottom:287.742667pt;}
.y3b{bottom:289.866551pt;}
.y85{bottom:294.721333pt;}
.y9e{bottom:297.152000pt;}
.y5a{bottom:303.550667pt;}
.y10c{bottom:305.808000pt;}
.y44{bottom:306.987200pt;}
.yc5{bottom:308.249333pt;}
.yeb{bottom:311.446667pt;}
.y84{bottom:312.786667pt;}
.y59{bottom:313.528000pt;}
.y12f{bottom:317.497333pt;}
.y43{bottom:323.626537pt;}
.y9d{bottom:324.612000pt;}
.yea{bottom:329.512000pt;}
.y83{bottom:330.853333pt;}
.y12e{bottom:335.562667pt;}
.y10b{bottom:335.828000pt;}
.y42{bottom:338.986531pt;}
.yc4{bottom:344.380000pt;}
.y82{bottom:348.918667pt;}
.y58{bottom:350.102667pt;}
.y12d{bottom:353.628000pt;}
.y10a{bottom:353.894667pt;}
.y41{bottom:354.346525pt;}
.ye7{bottom:355.760000pt;}
.ye9{bottom:362.036000pt;}
.ye8{bottom:362.141333pt;}
.y9c{bottom:363.562667pt;}
.ye6{bottom:365.737333pt;}
.y81{bottom:366.984000pt;}
.y40{bottom:370.346519pt;}
.yc3{bottom:370.421333pt;}
.y12c{bottom:371.693333pt;}
.y57{bottom:375.814667pt;}
.yc2{bottom:380.477333pt;}
.y26{bottom:380.746514pt;}
.y109{bottom:383.914667pt;}
.y80{bottom:385.049333pt;}
.y12b{bottom:389.760000pt;}
.y56{bottom:393.880000pt;}
.y9b{bottom:399.693333pt;}
.y108{bottom:401.980000pt;}
.y3a{bottom:402.186506pt;}
.y7f{bottom:403.114667pt;}
.ye5{bottom:404.345333pt;}
.y12a{bottom:407.825333pt;}
.y55{bottom:411.945333pt;}
.y9a{bottom:417.758667pt;}
.yc1{bottom:419.186667pt;}
.y107{bottom:420.045333pt;}
.ye4{bottom:422.410667pt;}
.y99{bottom:435.824000pt;}
.y7e{bottom:437.225333pt;}
.y106{bottom:438.112000pt;}
.yc0{bottom:439.250667pt;}
.y129{bottom:439.896000pt;}
.ye3{bottom:440.476000pt;}
.y68{bottom:444.416000pt;}
.y39{bottom:446.986488pt;}
.ybf{bottom:449.306667pt;}
.y7d{bottom:455.290667pt;}
.y128{bottom:457.961333pt;}
.ye2{bottom:458.542667pt;}
.y38{bottom:464.586481pt;}
.y105{bottom:468.132000pt;}
.y7c{bottom:473.356000pt;}
.ybe{bottom:473.404000pt;}
.ye1{bottom:476.608000pt;}
.y25{bottom:481.386474pt;}
.y104{bottom:486.197333pt;}
.y127{bottom:487.337333pt;}
.y98{bottom:488.600000pt;}
.y97{bottom:488.678667pt;}
.y67{bottom:489.934654pt;}
.y7b{bottom:491.421333pt;}
.ybd{bottom:493.305333pt;}
.y37{bottom:493.706469pt;}
.ye0{bottom:494.673333pt;}
.ybc{bottom:503.361333pt;}
.y103{bottom:504.264000pt;}
.y126{bottom:505.402667pt;}
.y66{bottom:507.999988pt;}
.y96{bottom:508.496000pt;}
.y7a{bottom:509.488000pt;}
.y36{bottom:510.826462pt;}
.ydf{bottom:512.738667pt;}
.y35{bottom:527.786456pt;}
.y24{bottom:536.266452pt;}
.y54{bottom:537.033333pt;}
.y125{bottom:537.474667pt;}
.y102{bottom:538.269333pt;}
.ybb{bottom:542.082667pt;}
.ydd{bottom:542.409333pt;}
.y34{bottom:544.106449pt;}
.yde{bottom:548.790667pt;}
.y23{bottom:549.866447pt;}
.y95{bottom:549.980000pt;}
.yba{bottom:552.138667pt;}
.ydc{bottom:552.386667pt;}
.y53{bottom:552.973333pt;}
.y124{bottom:555.540000pt;}
.y33{bottom:561.706442pt;}
.y22{bottom:563.466441pt;}
.y101{bottom:565.729333pt;}
.y52{bottom:568.914667pt;}
.y123{bottom:573.605333pt;}
.y21{bottom:575.946436pt;}
.y32{bottom:578.826435pt;}
.y94{bottom:586.112000pt;}
.ydb{bottom:591.761333pt;}
.yb9{bottom:594.829333pt;}
.y31{bottom:595.786428pt;}
.y116{bottom:598.729333pt;}
.y122{bottom:599.338667pt;}
.y51{bottom:600.794667pt;}
.y30{bottom:612.906422pt;}
.yb8{bottom:614.893333pt;}
.y50{bottom:616.734667pt;}
.y93{bottom:618.789333pt;}
.yd9{bottom:620.792000pt;}
.y145{bottom:621.106667pt;}
.yb7{bottom:624.948000pt;}
.y20{bottom:629.866415pt;}
.y2f{bottom:630.026415pt;}
.yd8{bottom:630.769333pt;}
.y4f{bottom:632.674667pt;}
.y121{bottom:635.469333pt;}
.y144{bottom:639.172000pt;}
.yda{bottom:640.610667pt;}
.y100{bottom:644.558667pt;}
.y2e{bottom:647.146408pt;}
.y4e{bottom:648.616000pt;}
.y120{bottom:653.534667pt;}
.y143{bottom:657.237333pt;}
.yff{bottom:662.625333pt;}
.y4d{bottom:664.556000pt;}
.yb6{bottom:665.092000pt;}
.yd7{bottom:668.752000pt;}
.y11f{bottom:671.600000pt;}
.y2d{bottom:672.266398pt;}
.y4c{bottom:680.496000pt;}
.yfe{bottom:680.690667pt;}
.y1f{bottom:683.626393pt;}
.y92{bottom:684.144000pt;}
.yb5{bottom:684.993333pt;}
.y142{bottom:687.258667pt;}
.y2c{bottom:689.226391pt;}
.y11e{bottom:689.666667pt;}
.yb3{bottom:694.970667pt;}
.y4b{bottom:696.436000pt;}
.y1e{bottom:697.386388pt;}
.yfd{bottom:698.756000pt;}
.yfa{bottom:701.221300pt;}
.yb4{bottom:704.810667pt;}
.y141{bottom:705.324000pt;}
.y2b{bottom:706.346384pt;}
.y11d{bottom:707.732000pt;}
.y4a{bottom:712.376000pt;}
.yfc{bottom:716.821333pt;}
.y2a{bottom:723.466377pt;}
.y28{bottom:725.387200pt;}
.y11c{bottom:725.797333pt;}
.y49{bottom:728.316000pt;}
.y1c{bottom:730.827200pt;}
.y91{bottom:734.886667pt;}
.y140{bottom:735.345333pt;}
.yb2{bottom:737.661333pt;}
.y48{bottom:744.257333pt;}
.yd6{bottom:747.052000pt;}
.y90{bottom:752.953333pt;}
.y13f{bottom:753.410667pt;}
.y18{bottom:755.146365pt;}
.y19{bottom:755.306365pt;}
.yb1{bottom:755.728000pt;}
.y134{bottom:758.266667pt;}
.y1a{bottom:759.307200pt;}
.yd5{bottom:765.117333pt;}
.y65{bottom:766.525356pt;}
.y8f{bottom:771.018667pt;}
.yb0{bottom:775.790667pt;}
.yd4{bottom:783.182667pt;}
.y13e{bottom:783.430667pt;}
.yaf{bottom:785.846667pt;}
.y8e{bottom:789.084000pt;}
.yd{bottom:797.386348pt;}
.yd3{bottom:801.248000pt;}
.y13d{bottom:801.497333pt;}
.y11b{bottom:803.792000pt;}
.y8d{bottom:807.149333pt;}
.yc{bottom:814.506341pt;}
.yd2{bottom:819.313333pt;}
.y11a{bottom:821.857333pt;}
.y8c{bottom:825.214667pt;}
.yae{bottom:828.537333pt;}
.y13c{bottom:831.517333pt;}
.y47{bottom:832.214667pt;}
.yb{bottom:833.226333pt;}
.yd0{bottom:839.377333pt;}
.y119{bottom:839.924000pt;}
.y8b{bottom:843.281333pt;}
.yd1{bottom:845.758667pt;}
.yad{bottom:848.438667pt;}
.ycf{bottom:849.354667pt;}
.y13b{bottom:849.582667pt;}
.y46{bottom:850.812000pt;}
.yac{bottom:858.417333pt;}
.ya{bottom:860.746322pt;}
.y8a{bottom:861.346667pt;}
.y13a{bottom:867.649333pt;}
.y115{bottom:875.750690pt;}
.y118{bottom:876.054667pt;}
.y89{bottom:879.412000pt;}
.y64{bottom:883.954631pt;}
.yce{bottom:885.486667pt;}
.y9{bottom:888.426311pt;}
.y88{bottom:897.477333pt;}
.y139{bottom:897.669333pt;}
.yab{bottom:901.108000pt;}
.ycd{bottom:912.185333pt;}
.y138{bottom:915.734667pt;}
.yaa{bottom:919.173333pt;}
.y6a{bottom:919.584868pt;}
.y16{bottom:919.947200pt;}
.y15{bottom:923.466297pt;}
.yf{bottom:925.866296pt;}
.ya6{bottom:929.946642pt;}
.y117{bottom:930.252000pt;}
.y137{bottom:933.801333pt;}
.yfb{bottom:939.645333pt;}
.y14{bottom:939.786291pt;}
.ya9{bottom:945.873333pt;}
.ycc{bottom:948.317333pt;}
.y69{bottom:951.694455pt;}
.y13{bottom:956.106284pt;}
.y79{bottom:957.710667pt;}
.y136{bottom:963.821333pt;}
.ycb{bottom:966.382667pt;}
.y78{bottom:975.776000pt;}
.ya8{bottom:980.661333pt;}
.y12{bottom:980.746274pt;}
.yca{bottom:984.448000pt;}
.ya7{bottom:990.638667pt;}
.y77{bottom:993.842667pt;}
.y10{bottom:994.667200pt;}
.y76{bottom:1011.908000pt;}
.y4{bottom:1020.426258pt;}
.y8{bottom:1046.666248pt;}
.y3{bottom:1048.746247pt;}
.y6b{bottom:1055.400000pt;}
.y6f{bottom:1065.384000pt;}
.y2{bottom:1065.706240pt;}
.y1{bottom:1082.666234pt;}
.he{height:12.480000pt;}
.h16{height:13.120000pt;}
.h17{height:13.920000pt;}
.h28{height:15.613333pt;}
.h27{height:17.570667pt;}
.hb{height:17.600000pt;}
.h3{height:17.920000pt;}
.h24{height:18.736000pt;}
.h13{height:21.131242pt;}
.hf{height:29.961551pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.h9{height:32.812487pt;}
.hd{height:34.453111pt;}
.h10{height:34.968736pt;}
.h12{height:35.404673pt;}
.h6{height:36.312485pt;}
.h1f{height:37.087439pt;}
.h8{height:38.128110pt;}
.h15{height:38.672797pt;}
.h14{height:38.698735pt;}
.hc{height:39.243734pt;}
.h1a{height:39.850400pt;}
.ha{height:40.249984pt;}
.h1{height:40.911234pt;}
.h2{height:42.262483pt;}
.h1b{height:43.636400pt;}
.h1e{height:44.887791pt;}
.h7{height:45.937482pt;}
.h19{height:47.820800pt;}
.h22{height:47.920000pt;}
.h39{height:50.609330pt;}
.h38{height:50.614663pt;}
.h29{height:52.317708pt;}
.h23{height:52.343750pt;}
.h45{height:52.989733pt;}
.h3e{height:52.995067pt;}
.h47{height:53.521330pt;}
.h1d{height:53.526663pt;}
.h2d{height:53.933218pt;}
.h2a{height:53.938551pt;}
.h48{height:55.272773pt;}
.h42{height:55.901733pt;}
.h2b{height:56.845218pt;}
.h2c{height:56.850551pt;}
.h20{height:57.384800pt;}
.h26{height:57.578125pt;}
.h3b{height:58.020400pt;}
.h49{height:58.340400pt;}
.h46{height:61.353733pt;}
.h5{height:62.124975pt;}
.h25{height:62.781250pt;}
.h43{height:67.905330pt;}
.h3f{height:70.285733pt;}
.h1c{height:82.996400pt;}
.h3c{height:83.001733pt;}
.h32{height:83.545733pt;}
.h36{height:83.855067pt;}
.h35{height:83.860400pt;}
.h3d{height:84.356400pt;}
.h21{height:89.000000pt;}
.h34{height:93.298551pt;}
.h3a{height:93.430663pt;}
.h41{height:95.811067pt;}
.h37{height:97.069218pt;}
.h44{height:97.380400pt;}
.h40{height:97.801733pt;}
.h31{height:122.905733pt;}
.h2f{height:123.220400pt;}
.h2e{height:133.202551pt;}
.h33{height:133.207885pt;}
.h30{height:133.517218pt;}
.h18{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w8{width:6.240000pt;}
.w6{width:7.200000pt;}
.w4{width:7.360000pt;}
.wb{width:8.000000pt;}
.w2{width:8.640000pt;}
.w7{width:101.120000pt;}
.w9{width:120.640000pt;}
.wa{width:140.320000pt;}
.wf{width:326.553333pt;}
.w3{width:353.760000pt;}
.we{width:744.440000pt;}
.w10{width:784.101333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.wc{width:793.701333pt;}
.wd{width:794.000000pt;}
.x13{left:-4.160235pt;}
.xd{left:-1.760092pt;}
.x0{left:0.000000pt;}
.x3d{left:9.600000pt;}
.x3a{left:48.000000pt;}
.x3c{left:76.800000pt;}
.x1d{left:80.959968pt;}
.x1b{left:86.239966pt;}
.x2e{left:96.000000pt;}
.x19{left:98.720000pt;}
.x1f{left:99.679960pt;}
.x38{left:101.103131pt;}
.x1{left:103.999958pt;}
.x2{left:105.759958pt;}
.x14{left:106.879957pt;}
.x3e{left:112.986667pt;}
.x3f{left:116.774667pt;}
.x35{left:118.581333pt;}
.x78{left:125.898667pt;}
.x2d{left:132.364000pt;}
.x1e{left:134.879946pt;}
.x1c{left:136.639945pt;}
.xa{left:138.879944pt;}
.x2c{left:152.289333pt;}
.x4{left:161.119936pt;}
.x59{left:167.533333pt;}
.xb{left:179.519928pt;}
.x70{left:183.196000pt;}
.x15{left:191.999923pt;}
.x16{left:194.559922pt;}
.x1a{left:199.840000pt;}
.x75{left:206.949333pt;}
.x60{left:208.736000pt;}
.x20{left:211.359924pt;}
.x21{left:212.319915pt;}
.x76{left:215.276000pt;}
.x55{left:217.682667pt;}
.x2f{left:224.712000pt;}
.xc{left:231.360000pt;}
.x17{left:232.640000pt;}
.x5{left:234.079844pt;}
.x40{left:238.237333pt;}
.x50{left:243.244000pt;}
.x18{left:250.559900pt;}
.x5b{left:252.516000pt;}
.x27{left:253.439899pt;}
.x24{left:254.399898pt;}
.x25{left:255.359898pt;}
.x23{left:258.559897pt;}
.x5d{left:265.973333pt;}
.x41{left:267.829333pt;}
.x22{left:270.399892pt;}
.x5e{left:273.224000pt;}
.x71{left:275.276000pt;}
.x4c{left:279.726667pt;}
.x10{left:280.639856pt;}
.x30{left:286.720000pt;}
.x39{left:287.764464pt;}
.x47{left:289.228000pt;}
.x53{left:294.016000pt;}
.x61{left:295.040000pt;}
.x65{left:299.233333pt;}
.x46{left:301.146667pt;}
.x26{left:305.279875pt;}
.x4f{left:307.470667pt;}
.x77{left:310.577333pt;}
.x31{left:318.565333pt;}
.x6c{left:324.110667pt;}
.x2b{left:325.748000pt;}
.x36{left:328.374660pt;}
.x4b{left:333.177333pt;}
.x32{left:337.658667pt;}
.x6{left:338.719865pt;}
.x8{left:341.279863pt;}
.x69{left:342.609333pt;}
.x74{left:347.569333pt;}
.x42{left:349.002667pt;}
.xf{left:352.639859pt;}
.x2a{left:355.665333pt;}
.x66{left:356.736000pt;}
.x7{left:362.719855pt;}
.x62{left:365.412000pt;}
.x37{left:367.625326pt;}
.x28{left:374.080000pt;}
.xe{left:378.079849pt;}
.x51{left:386.212000pt;}
.x67{left:389.340000pt;}
.x5f{left:392.684000pt;}
.x6a{left:399.717333pt;}
.x48{left:403.054667pt;}
.x68{left:403.973333pt;}
.x6d{left:417.141333pt;}
.x6b{left:422.232000pt;}
.x63{left:428.426667pt;}
.x33{left:434.890667pt;}
.x49{left:436.702667pt;}
.x43{left:438.604000pt;}
.x6e{left:441.081333pt;}
.x54{left:442.640000pt;}
.x11{left:448.800000pt;}
.x64{left:453.365333pt;}
.x9{left:455.839818pt;}
.x34{left:466.065333pt;}
.x4a{left:467.358667pt;}
.x4d{left:476.860000pt;}
.x6f{left:486.114667pt;}
.x5c{left:491.710667pt;}
.x52{left:494.074667pt;}
.x56{left:497.469333pt;}
.x58{left:505.344000pt;}
.x29{left:514.400000pt;}
.x44{left:516.486667pt;}
.x57{left:529.056000pt;}
.x5a{left:534.202667pt;}
.x72{left:546.812000pt;}
.x73{left:569.325333pt;}
.x12{left:591.680000pt;}
.x3{left:596.479761pt;}
.x45{left:597.660000pt;}
.x3b{left:661.301335pt;}
.x4e{left:679.114667pt;}
}




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