
    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_3ff9d981fb32132c47fff9f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_b4577ea1d37aa06fdd930b91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.182000;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_ccdf73ad80afa0762424f160.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_812172ef0dfb76f118f79e28.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_ba9a855eae9975a83bee1f41.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_4fd15a3b2acc1654fcad0712.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_bac25e6c016851359e444dd5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783000;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_80a135a02c09e0565b66b16a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.834000;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_fe839d3fa08bf903712ede33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.135000;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_d79a5ff76e9c5dd6bcfe397c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196000;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_f695ddfe50bf9506b44ac5a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.165000;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_c40e46c755e8cba128893025.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;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_c80e8e1d9447f277fb3dd47e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.954000;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_47a3e2b96c4e9fd009a0ee44.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.160000;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_a4a7d69db9c5e67699f28e5a.woff2')format("woff");}.fff{font-family:fff;line-height:1.031000;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_8b6284affd62a2683da54ddb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.672000;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_3f4e268fd94a584aceb60e56.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e64a5859ec567e33c3027a7d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_87917c7f8c14e2cc5e9dd5ab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;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_9ff6c2734c53a1eb67d6f567.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.165000;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_61483d8fcd2caa8e0f1df73c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.126000;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_24650e5d092fb740979eb8f5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.954000;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_2fbced95326904bc9efde78c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.160000;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_ad080dc746d4e0912677eb5a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.016000;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_7579050003babe21ceab6e16.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.669434;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_bcd2c20cc18c2d2252715ce4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.165000;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_80a135a02c09e0565b66b16a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.834000;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_b90d59b4f5212856f13303f2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.126000;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_a4a7d69db9c5e67699f28e5a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.031000;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_eaa281ec457b48df17c66cc4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.954000;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_48fc274a8285c8cc66a8aed4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.160000;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_8b6284affd62a2683da54ddb.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.672000;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_f2136c543f6bd9e6e39d5038.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.165000;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_fd879ce895636bf96c7880d8.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.126000;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:ff23;src:url('chunks/assets/font_2bb7c5cfda6e73161df65a57.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.031000;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:ff24;src:url('chunks/assets/font_cf14a883a05553bdfc13949b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.954000;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:ff25;src:url('chunks/assets/font_0b8492f60d526e5d63b5f6b5.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.160000;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:ff26;src:url('chunks/assets/font_3f4e268fd94a584aceb60e56.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_4bf4afab0847c0a5a450129c.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.165000;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:ff28;src:url('chunks/assets/font_a4a7d69db9c5e67699f28e5a.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.031000;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:ff29;src:url('chunks/assets/font_5b770f4da50d1d7c9bdad42e.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.126000;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:ff2a;src:url('chunks/assets/font_18efc8a1522994eede8619c2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.954000;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:ff2b;src:url('chunks/assets/font_b7a49c8ce540337096df0601.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.160000;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:ff2c;src:url('chunks/assets/font_3f4e268fd94a584aceb60e56.woff2')format("woff");}.ff2c{font-family:ff2c;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;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.016600px;}
.v1{vertical-align:19.932000px;}
.ls68{letter-spacing:-4.233000px;}
.ls45{letter-spacing:-3.834000px;}
.ls50{letter-spacing:-2.970000px;}
.ls69{letter-spacing:-2.805000px;}
.ls59{letter-spacing:-2.106000px;}
.ls62{letter-spacing:-1.674000px;}
.ls6b{letter-spacing:-1.632000px;}
.ls29{letter-spacing:-1.620000px;}
.lsc{letter-spacing:-1.479000px;}
.ls4c{letter-spacing:-1.020000px;}
.ls48{letter-spacing:-0.840000px;}
.ls5c{letter-spacing:-0.780000px;}
.ls5d{letter-spacing:-0.720000px;}
.ls49{letter-spacing:-0.660000px;}
.ls47{letter-spacing:-0.600000px;}
.ls5b{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.510000px;}
.ls5e{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.459000px;}
.ls61{letter-spacing:-0.420000px;}
.ls57{letter-spacing:-0.408000px;}
.ls33{letter-spacing:-0.378000px;}
.ls30{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.357000px;}
.ls46{letter-spacing:-0.300000px;}
.ls52{letter-spacing:-0.279000px;}
.lsf{letter-spacing:-0.255000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls2a{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.153000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls6a{letter-spacing:-0.102000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls11{letter-spacing:-0.055800px;}
.lsb{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.000426px;}
.ls23{letter-spacing:0.030000px;}
.ls5f{letter-spacing:0.047880px;}
.ls7{letter-spacing:0.051000px;}
.ls5a{letter-spacing:0.054000px;}
.ls4f{letter-spacing:0.055800px;}
.ls9{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.076500px;}
.ls4e{letter-spacing:0.090000px;}
.ls4a{letter-spacing:0.111600px;}
.ls20{letter-spacing:0.120000px;}
.ls37{letter-spacing:0.150000px;}
.ls2d{letter-spacing:0.174900px;}
.ls34{letter-spacing:0.178500px;}
.ls21{letter-spacing:0.180000px;}
.ls54{letter-spacing:0.200160px;}
.ls5{letter-spacing:0.204000px;}
.ls27{letter-spacing:0.210000px;}
.ls26{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.255000px;}
.ls4d{letter-spacing:0.261480px;}
.ls12{letter-spacing:0.270000px;}
.ls18{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.306000px;}
.ls4b{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.330000px;}
.lsa{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.390000px;}
.ls6{letter-spacing:0.408000px;}
.ls1a{letter-spacing:0.420000px;}
.ls2e{letter-spacing:0.432000px;}
.ls43{letter-spacing:0.450000px;}
.ls0{letter-spacing:0.459000px;}
.ls19{letter-spacing:0.480000px;}
.ls3c{letter-spacing:0.510000px;}
.ls38{letter-spacing:0.540000px;}
.ls51{letter-spacing:0.561000px;}
.ls22{letter-spacing:0.570000px;}
.ls40{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.629160px;}
.ls42{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.663000px;}
.ls13{letter-spacing:0.696000px;}
.ls14{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.780000px;}
.ls1c{letter-spacing:0.810000px;}
.ls17{letter-spacing:0.840000px;}
.ls3e{letter-spacing:0.900000px;}
.ls2{letter-spacing:0.918000px;}
.ls35{letter-spacing:1.020000px;}
.ls28{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.200000px;}
.ls58{letter-spacing:1.242000px;}
.ls56{letter-spacing:1.458000px;}
.ls53{letter-spacing:1.512000px;}
.ls65{letter-spacing:1.530000px;}
.ls1b{letter-spacing:1.674000px;}
.ls2c{letter-spacing:1.728000px;}
.ls60{letter-spacing:1.782000px;}
.ls67{letter-spacing:1.836000px;}
.ls63{letter-spacing:3.060000px;}
.ls66{letter-spacing:3.315000px;}
.ls3b{letter-spacing:3.330000px;}
.ls39{letter-spacing:3.360000px;}
.ls3a{letter-spacing:3.600000px;}
.ls41{letter-spacing:3.660000px;}
.ls3d{letter-spacing:3.720000px;}
.ls44{letter-spacing:3.840000px;}
.ls3f{letter-spacing:5.400000px;}
.ls25{letter-spacing:7.500000px;}
.ls32{letter-spacing:1004.724000px;}
.ls55{letter-spacing:1190.214000px;}
.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;}
}
.ws85{word-spacing:-15.420000px;}
.ws84{word-spacing:-15.300000px;}
.wsdb{word-spacing:-14.586000px;}
.wsd0{word-spacing:-14.580000px;}
.ws52{word-spacing:-14.526000px;}
.ws1d{word-spacing:-14.472000px;}
.wsba{word-spacing:-14.040000px;}
.wsdd{word-spacing:-14.025000px;}
.ws1f{word-spacing:-13.260000px;}
.wsda{word-spacing:-13.122000px;}
.wsbc{word-spacing:-12.852000px;}
.wse0{word-spacing:-12.801000px;}
.ws1e{word-spacing:-12.600000px;}
.ws3e{word-spacing:-12.420000px;}
.wsc4{word-spacing:-12.258000px;}
.ws90{word-spacing:-12.120000px;}
.ws2{word-spacing:-11.997000px;}
.ws83{word-spacing:-11.850000px;}
.wsa8{word-spacing:-11.790000px;}
.ws3f{word-spacing:-11.700000px;}
.wsd1{word-spacing:-11.520000px;}
.wsca{word-spacing:-11.040000px;}
.wsdc{word-spacing:-10.965000px;}
.wse4{word-spacing:-10.863000px;}
.wse6{word-spacing:-10.710000px;}
.wsbb{word-spacing:-10.692000px;}
.wsde{word-spacing:-10.200000px;}
.wsa7{word-spacing:-9.828000px;}
.ws0{word-spacing:-9.792000px;}
.wse5{word-spacing:-9.333000px;}
.ws9b{word-spacing:-8.964000px;}
.ws1{word-spacing:-8.901000px;}
.wse3{word-spacing:-8.160000px;}
.ws54{word-spacing:-7.520700px;}
.ws53{word-spacing:-7.345800px;}
.wse1{word-spacing:-6.732000px;}
.wse2{word-spacing:-6.392595px;}
.wsdf{word-spacing:-5.946600px;}
.wsa2{word-spacing:-3.120000px;}
.wsf{word-spacing:-3.009000px;}
.wsd5{word-spacing:-2.640000px;}
.ws68{word-spacing:-2.520000px;}
.wsc9{word-spacing:-2.460000px;}
.wsc8{word-spacing:-2.400000px;}
.wsab{word-spacing:-2.100000px;}
.ws2d{word-spacing:-2.040000px;}
.ws94{word-spacing:-1.980000px;}
.ws2e{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.897200px;}
.ws33{word-spacing:-1.860000px;}
.wsb0{word-spacing:-1.841400px;}
.ws11{word-spacing:-1.836000px;}
.ws30{word-spacing:-1.800000px;}
.ws1b{word-spacing:-1.785600px;}
.ws5d{word-spacing:-1.740000px;}
.wse8{word-spacing:-1.734000px;}
.wsb{word-spacing:-1.632000px;}
.ws22{word-spacing:-1.620000px;}
.ws7d{word-spacing:-1.560000px;}
.wsc2{word-spacing:-1.512000px;}
.ws16{word-spacing:-1.500000px;}
.ws70{word-spacing:-1.479000px;}
.ws59{word-spacing:-1.380000px;}
.ws2f{word-spacing:-1.320000px;}
.ws60{word-spacing:-1.283400px;}
.ws12{word-spacing:-1.200000px;}
.ws9f{word-spacing:-1.140000px;}
.ws40{word-spacing:-1.080000px;}
.ws7e{word-spacing:-1.071000px;}
.ws81{word-spacing:-1.020000px;}
.ws4d{word-spacing:-0.960000px;}
.ws8c{word-spacing:-0.900000px;}
.ws74{word-spacing:-0.840000px;}
.ws79{word-spacing:-0.810000px;}
.ws88{word-spacing:-0.765000px;}
.ws44{word-spacing:-0.720000px;}
.wse9{word-spacing:-0.714000px;}
.ws6c{word-spacing:-0.669600px;}
.ws3c{word-spacing:-0.660000px;}
.ws97{word-spacing:-0.600000px;}
.wsb6{word-spacing:-0.561000px;}
.ws8d{word-spacing:-0.540000px;}
.wsc3{word-spacing:-0.510000px;}
.ws5c{word-spacing:-0.480000px;}
.ws8e{word-spacing:-0.459000px;}
.ws21{word-spacing:-0.420000px;}
.ws17{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.300000px;}
.ws82{word-spacing:-0.255000px;}
.ws18{word-spacing:-0.240000px;}
.ws61{word-spacing:-0.223200px;}
.ws51{word-spacing:-0.204000px;}
.ws76{word-spacing:-0.180000px;}
.ws63{word-spacing:-0.167400px;}
.wsa9{word-spacing:-0.150000px;}
.ws1a{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.060000px;}
.wsb9{word-spacing:-0.055800px;}
.ws4f{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.wsb7{word-spacing:0.055800px;}
.ws13{word-spacing:0.060000px;}
.ws23{word-spacing:0.120000px;}
.ws50{word-spacing:0.153000px;}
.wsb5{word-spacing:0.180000px;}
.wse{word-spacing:0.204000px;}
.ws75{word-spacing:0.240000px;}
.wsb8{word-spacing:0.279000px;}
.wsb3{word-spacing:0.300000px;}
.ws8f{word-spacing:0.357000px;}
.ws32{word-spacing:0.360000px;}
.ws71{word-spacing:0.408000px;}
.ws69{word-spacing:0.420000px;}
.ws77{word-spacing:0.480000px;}
.ws7a{word-spacing:0.510000px;}
.ws25{word-spacing:0.540000px;}
.wscf{word-spacing:0.600000px;}
.ws1c{word-spacing:0.613800px;}
.ws5a{word-spacing:0.660000px;}
.wsc{word-spacing:0.714000px;}
.ws98{word-spacing:0.720000px;}
.wsae{word-spacing:0.765000px;}
.ws86{word-spacing:0.780000px;}
.ws5f{word-spacing:0.781200px;}
.wsb4{word-spacing:0.840000px;}
.ws7{word-spacing:0.867000px;}
.ws65{word-spacing:0.900000px;}
.ws42{word-spacing:0.960000px;}
.ws57{word-spacing:1.020000px;}
.ws58{word-spacing:1.080000px;}
.wsad{word-spacing:1.122000px;}
.ws8b{word-spacing:1.140000px;}
.ws62{word-spacing:1.171800px;}
.ws5b{word-spacing:1.200000px;}
.wsaf{word-spacing:1.283400px;}
.ws3a{word-spacing:1.320000px;}
.ws4e{word-spacing:1.326000px;}
.ws39{word-spacing:1.380000px;}
.wsc1{word-spacing:1.428000px;}
.ws36{word-spacing:1.440000px;}
.ws31{word-spacing:1.500000px;}
.wsd{word-spacing:1.530000px;}
.ws37{word-spacing:1.560000px;}
.ws8{word-spacing:1.581000px;}
.wsb2{word-spacing:1.618200px;}
.ws2b{word-spacing:1.620000px;}
.ws80{word-spacing:1.632000px;}
.ws6b{word-spacing:1.680000px;}
.ws45{word-spacing:1.740000px;}
.wsa6{word-spacing:1.785600px;}
.ws67{word-spacing:1.800000px;}
.ws28{word-spacing:1.860000px;}
.ws15{word-spacing:1.920000px;}
.ws92{word-spacing:1.980000px;}
.ws24{word-spacing:2.040000px;}
.wscc{word-spacing:2.100000px;}
.ws43{word-spacing:2.160000px;}
.ws3b{word-spacing:2.220000px;}
.ws48{word-spacing:2.280000px;}
.ws87{word-spacing:2.295000px;}
.ws4a{word-spacing:2.340000px;}
.wsa{word-spacing:2.397000px;}
.ws66{word-spacing:2.400000px;}
.ws5{word-spacing:2.448000px;}
.ws56{word-spacing:2.460000px;}
.ws3d{word-spacing:2.520000px;}
.ws7f{word-spacing:2.550000px;}
.ws29{word-spacing:2.580000px;}
.wsc0{word-spacing:2.601000px;}
.wsbe{word-spacing:2.640000px;}
.ws6f{word-spacing:2.652000px;}
.ws38{word-spacing:2.700000px;}
.ws26{word-spacing:2.820000px;}
.ws6e{word-spacing:2.856000px;}
.wsce{word-spacing:2.880000px;}
.ws46{word-spacing:2.940000px;}
.ws14{word-spacing:3.000000px;}
.ws19{word-spacing:3.060000px;}
.ws5e{word-spacing:3.120000px;}
.ws27{word-spacing:3.180000px;}
.wsa5{word-spacing:3.240000px;}
.ws49{word-spacing:3.300000px;}
.wsbf{word-spacing:3.315000px;}
.ws35{word-spacing:3.360000px;}
.ws10{word-spacing:3.417000px;}
.ws93{word-spacing:3.420000px;}
.ws6d{word-spacing:3.468000px;}
.ws96{word-spacing:3.480000px;}
.ws9a{word-spacing:3.540000px;}
.ws4{word-spacing:3.570000px;}
.ws34{word-spacing:3.600000px;}
.wsa1{word-spacing:3.720000px;}
.ws9d{word-spacing:3.780000px;}
.ws7c{word-spacing:3.840000px;}
.ws9e{word-spacing:3.900000px;}
.wsd7{word-spacing:3.960000px;}
.ws78{word-spacing:4.020000px;}
.ws89{word-spacing:4.080000px;}
.wsa3{word-spacing:4.200000px;}
.ws2a{word-spacing:4.320000px;}
.ws8a{word-spacing:4.440000px;}
.ws47{word-spacing:4.560000px;}
.wsd6{word-spacing:4.740000px;}
.wsac{word-spacing:4.860000px;}
.ws95{word-spacing:4.980000px;}
.ws99{word-spacing:5.220000px;}
.wsc7{word-spacing:5.280000px;}
.wsd4{word-spacing:5.400000px;}
.ws9{word-spacing:5.559000px;}
.wsc6{word-spacing:5.640000px;}
.wsd8{word-spacing:5.700000px;}
.wsa4{word-spacing:5.760000px;}
.ws4c{word-spacing:6.120000px;}
.ws4b{word-spacing:6.540000px;}
.wscd{word-spacing:7.020000px;}
.wsd3{word-spacing:7.440000px;}
.ws6{word-spacing:7.650000px;}
.ws6a{word-spacing:8.940000px;}
.wsea{word-spacing:40.086000px;}
.wsd2{word-spacing:1001.808000px;}
.ws55{word-spacing:1001.862000px;}
.ws20{word-spacing:1001.916000px;}
.wse7{word-spacing:1003.266000px;}
.ws72{word-spacing:1003.914000px;}
.wsc5{word-spacing:1004.130000px;}
.wsaa{word-spacing:1006.506000px;}
.ws9c{word-spacing:1007.424000px;}
.wsbd{word-spacing:1188.756000px;}
.ws91{word-spacing:1190.430000px;}
.ws64{word-spacing:1190.916000px;}
.wsa0{word-spacing:1191.078000px;}
.wscb{word-spacing:1191.726000px;}
.ws7b{word-spacing:1191.780000px;}
.ws41{word-spacing:1194.966000px;}
.wsd9{word-spacing:1195.074000px;}
._12{margin-left:-1006.570500px;}
._14{margin-left:-1005.516300px;}
._f{margin-left:-1003.824600px;}
._1a{margin-left:-1002.457800px;}
._b{margin-left:-1001.037000px;}
._6{margin-left:-19.910400px;}
._15{margin-left:-18.036000px;}
._16{margin-left:-15.170700px;}
._18{margin-left:-13.150200px;}
._7{margin-left:-10.710000px;}
._9{margin-left:-6.888000px;}
._8{margin-left:-5.610000px;}
._c{margin-left:-4.396800px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.440000px;}
._2{width:1.420800px;}
._4{width:2.455200px;}
._3{width:4.112700px;}
._10{width:5.220600px;}
._5{width:7.604400px;}
._e{width:9.515400px;}
._13{width:49.662000px;}
._d{width:51.000600px;}
._19{width:54.850800px;}
._17{width:56.134200px;}
._a{width:59.259000px;}
._11{width:125.016912px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsf{font-size:29.733000px;}
.fs1{font-size:34.980000px;}
.fs5{font-size:41.400000px;}
.fsc{font-size:44.713800px;}
.fse{font-size:45.062400px;}
.fsd{font-size:50.883600px;}
.fs3{font-size:51.000000px;}
.fs8{font-size:52.457400px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs9{font-size:56.653800px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.fsa{font-size:113.832000px;}
.fsb{font-size:131.142600px;}
.yab{bottom:-667.815000px;}
.yaa{bottom:-650.564250px;}
.y15a{bottom:-479.455200px;}
.y159{bottom:-462.059550px;}
.y158{bottom:-423.358500px;}
.y157{bottom:-404.908500px;}
.y7f{bottom:-389.037000px;}
.y156{bottom:-386.458500px;}
.y7e{bottom:-370.587000px;}
.y155{bottom:-368.008500px;}
.y7d{bottom:-352.137000px;}
.y154{bottom:-349.558500px;}
.ya7{bottom:-335.810700px;}
.y7c{bottom:-333.687000px;}
.y153{bottom:-331.108500px;}
.ya6{bottom:-317.360700px;}
.y7b{bottom:-315.237000px;}
.y152{bottom:-312.658500px;}
.ya5{bottom:-298.910700px;}
.y7a{bottom:-296.787000px;}
.y151{bottom:-294.208500px;}
.ya4{bottom:-280.460700px;}
.y79{bottom:-278.337000px;}
.y150{bottom:-275.758500px;}
.ye5{bottom:-273.090300px;}
.ya3{bottom:-262.010700px;}
.y78{bottom:-259.887000px;}
.y14f{bottom:-257.308500px;}
.ye4{bottom:-254.640300px;}
.ya2{bottom:-243.560700px;}
.y122{bottom:-243.553050px;}
.y77{bottom:-241.437000px;}
.y14e{bottom:-238.858500px;}
.ye3{bottom:-236.190300px;}
.y121{bottom:-226.157400px;}
.ya1{bottom:-225.110700px;}
.y76{bottom:-222.987000px;}
.y14d{bottom:-220.408500px;}
.ye2{bottom:-217.740300px;}
.y120{bottom:-208.761750px;}
.ya0{bottom:-206.660700px;}
.y75{bottom:-204.537000px;}
.y14c{bottom:-201.958500px;}
.ye1{bottom:-199.290300px;}
.y11f{bottom:-191.366100px;}
.y9f{bottom:-188.210700px;}
.y74{bottom:-186.087000px;}
.y14b{bottom:-183.508500px;}
.ye0{bottom:-180.840300px;}
.y11e{bottom:-173.970450px;}
.y9e{bottom:-169.760700px;}
.y73{bottom:-167.637000px;}
.y14a{bottom:-165.058500px;}
.ydf{bottom:-162.390300px;}
.y11d{bottom:-156.574800px;}
.y9d{bottom:-151.310700px;}
.y72{bottom:-149.187000px;}
.yde{bottom:-143.940300px;}
.y11c{bottom:-139.179150px;}
.y9c{bottom:-132.860700px;}
.y71{bottom:-130.737000px;}
.y149{bottom:-128.158500px;}
.ydd{bottom:-125.490300px;}
.y11b{bottom:-121.783500px;}
.y9b{bottom:-114.410700px;}
.y70{bottom:-112.287000px;}
.ydc{bottom:-107.040300px;}
.y9a{bottom:-95.960700px;}
.y6f{bottom:-93.837000px;}
.y6e{bottom:-75.387000px;}
.y148{bottom:-74.460750px;}
.y11a{bottom:-59.983950px;}
.y147{bottom:-57.210000px;}
.y6d{bottom:-56.937000px;}
.ydb{bottom:-49.499850px;}
.y89{bottom:-47.939407px;}
.y119{bottom:-42.733200px;}
.ya9{bottom:-42.325500px;}
.y146{bottom:-39.959250px;}
.y6c{bottom:-38.487000px;}
.yc0{bottom:-33.426150px;}
.y88{bottom:-32.857905px;}
.yda{bottom:-32.249100px;}
.y118{bottom:-25.482450px;}
.ya8{bottom:-25.074750px;}
.y145{bottom:-22.708500px;}
.y87{bottom:-17.776402px;}
.ybf{bottom:-16.175400px;}
.yd9{bottom:-14.998350px;}
.y8c{bottom:-5.711250px;}
.y86{bottom:-2.694900px;}
.y8f{bottom:-2.622000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.015750px;}
.y91{bottom:7.081500px;}
.y93{bottom:7.534200px;}
.y92{bottom:10.754400px;}
.y6a{bottom:35.197050px;}
.y82{bottom:57.626369px;}
.y81{bottom:72.734100px;}
.y4a{bottom:89.998500px;}
.y15c{bottom:90.566850px;}
.y101{bottom:90.567150px;}
.y52{bottom:90.571200px;}
.y50{bottom:90.571350px;}
.y138{bottom:90.571500px;}
.y24{bottom:90.575700px;}
.y57{bottom:91.318050px;}
.y97{bottom:91.412100px;}
.y49{bottom:107.249250px;}
.y51{bottom:107.966850px;}
.y4f{bottom:107.967000px;}
.y100{bottom:107.967150px;}
.y23{bottom:107.971350px;}
.y96{bottom:108.662850px;}
.y47{bottom:109.768050px;}
.y48{bottom:124.500000px;}
.y4e{bottom:125.366850px;}
.y22{bottom:125.367000px;}
.yff{bottom:125.367150px;}
.yad{bottom:125.433000px;}
.y46{bottom:128.218050px;}
.y4d{bottom:142.766850px;}
.yfe{bottom:142.771500px;}
.y45{bottom:146.668050px;}
.y137{bottom:146.668200px;}
.yfd{bottom:160.167150px;}
.y4c{bottom:160.171350px;}
.y68{bottom:164.463000px;}
.y21{bottom:165.118050px;}
.y136{bottom:165.118200px;}
.y144{bottom:167.041200px;}
.y197{bottom:170.184300px;}
.y4b{bottom:177.567000px;}
.yfc{bottom:177.571500px;}
.y117{bottom:181.517850px;}
.y67{bottom:182.913000px;}
.y20{bottom:183.568050px;}
.y135{bottom:183.568200px;}
.y143{bottom:185.491200px;}
.y196{bottom:187.435050px;}
.yfb{bottom:194.967150px;}
.y99{bottom:196.713600px;}
.y116{bottom:199.967850px;}
.y66{bottom:201.363000px;}
.y1f{bottom:202.018050px;}
.y134{bottom:202.018200px;}
.y142{bottom:203.941200px;}
.yd8{bottom:206.609550px;}
.yfa{bottom:212.367000px;}
.y115{bottom:218.417850px;}
.y65{bottom:219.813000px;}
.y1e{bottom:220.468050px;}
.y133{bottom:220.468200px;}
.y195{bottom:221.936550px;}
.y141{bottom:222.391200px;}
.yd7{bottom:225.059550px;}
.y114{bottom:236.867850px;}
.y64{bottom:238.263000px;}
.y1d{bottom:238.918050px;}
.y132{bottom:238.918200px;}
.y194{bottom:239.187300px;}
.y140{bottom:240.841200px;}
.yd6{bottom:243.509550px;}
.y113{bottom:255.317850px;}
.y63{bottom:256.713000px;}
.y1c{bottom:257.368050px;}
.y131{bottom:257.368200px;}
.y13f{bottom:259.291200px;}
.yd5{bottom:261.959550px;}
.y112{bottom:273.767850px;}
.yf9{bottom:274.166550px;}
.y62{bottom:275.163000px;}
.y1b{bottom:275.818050px;}
.y130{bottom:275.818200px;}
.y13e{bottom:277.741200px;}
.yd4{bottom:280.409550px;}
.y179{bottom:290.965050px;}
.yf8{bottom:291.417300px;}
.y111{bottom:292.217850px;}
.y61{bottom:293.613000px;}
.y1a{bottom:294.268050px;}
.y12f{bottom:294.268200px;}
.y13d{bottom:296.191200px;}
.ybc{bottom:298.582800px;}
.yd3{bottom:298.859550px;}
.y178{bottom:308.215800px;}
.yf7{bottom:308.668050px;}
.y110{bottom:310.667850px;}
.y60{bottom:312.063000px;}
.y19{bottom:312.718050px;}
.y12e{bottom:312.718200px;}
.y13c{bottom:314.641200px;}
.yc4{bottom:314.908500px;}
.ybb{bottom:317.032800px;}
.yd2{bottom:317.309550px;}
.y193{bottom:325.441050px;}
.y177{bottom:325.466550px;}
.y5f{bottom:330.513000px;}
.y44{bottom:331.168050px;}
.y12d{bottom:331.168200px;}
.yc3{bottom:332.159250px;}
.y13b{bottom:333.091200px;}
.yba{bottom:335.482800px;}
.yd1{bottom:335.759550px;}
.y102{bottom:335.776500px;}
.y192{bottom:342.691800px;}
.y176{bottom:342.717300px;}
.y10f{bottom:347.567850px;}
.y5e{bottom:348.963000px;}
.yc2{bottom:349.410000px;}
.y18{bottom:349.618050px;}
.y12c{bottom:349.618200px;}
.yb9{bottom:353.932800px;}
.yd0{bottom:354.209550px;}
.y191{bottom:359.942550px;}
.y175{bottom:359.962800px;}
.yc5{bottom:363.967500px;}
.y5d{bottom:367.413000px;}
.y43{bottom:368.068050px;}
.y12b{bottom:368.068200px;}
.yb8{bottom:372.382800px;}
.ycf{bottom:372.659550px;}
.y190{bottom:377.193300px;}
.y174{bottom:377.213550px;}
.y10e{bottom:384.467850px;}
.y5c{bottom:385.863000px;}
.y13a{bottom:385.915650px;}
.y42{bottom:386.518050px;}
.y12a{bottom:386.518200px;}
.yb7{bottom:390.832800px;}
.yce{bottom:391.109550px;}
.y18f{bottom:394.444050px;}
.y173{bottom:394.464300px;}
.y10d{bottom:402.917850px;}
.y5b{bottom:404.313000px;}
.y41{bottom:404.968050px;}
.y129{bottom:404.968200px;}
.yb6{bottom:409.282800px;}
.ycd{bottom:409.559550px;}
.y17{bottom:409.752300px;}
.y18e{bottom:411.694800px;}
.y172{bottom:411.715050px;}
.y10c{bottom:421.367850px;}
.y5a{bottom:422.763000px;}
.y40{bottom:423.418050px;}
.y16{bottom:427.003050px;}
.yb5{bottom:427.732800px;}
.ycc{bottom:428.009550px;}
.y18d{bottom:428.945550px;}
.y171{bottom:428.965800px;}
.y10b{bottom:439.817850px;}
.y3f{bottom:441.868050px;}
.y128{bottom:441.868200px;}
.y15{bottom:444.253800px;}
.yb4{bottom:446.182800px;}
.y18c{bottom:446.196300px;}
.y170{bottom:446.216550px;}
.ycb{bottom:446.459550px;}
.y56{bottom:451.153800px;}
.y10a{bottom:458.267850px;}
.y3e{bottom:460.318050px;}
.y14{bottom:461.504550px;}
.y18b{bottom:463.447050px;}
.y16f{bottom:463.467300px;}
.y123{bottom:463.474200px;}
.yb3{bottom:464.632800px;}
.yca{bottom:464.909550px;}
.y55{bottom:468.404550px;}
.y59{bottom:475.587300px;}
.y109{bottom:476.717850px;}
.y3d{bottom:478.768050px;}
.y58{bottom:480.472500px;}
.y18a{bottom:480.697800px;}
.y16e{bottom:480.715950px;}
.yb2{bottom:483.082800px;}
.yc9{bottom:483.359550px;}
.y54{bottom:485.655300px;}
.y108{bottom:495.167850px;}
.y127{bottom:495.565950px;}
.y3c{bottom:497.218050px;}
.y189{bottom:497.948550px;}
.y13{bottom:497.956800px;}
.y16d{bottom:497.966700px;}
.y6b{bottom:498.418800px;}
.yb1{bottom:501.532800px;}
.yc8{bottom:501.809550px;}
.y53{bottom:502.906050px;}
.y126{bottom:512.816700px;}
.y107{bottom:513.617850px;}
.y188{bottom:515.199300px;}
.y12{bottom:515.207550px;}
.y16c{bottom:515.217450px;}
.y3b{bottom:515.668050px;}
.yf6{bottom:515.668200px;}
.y69{bottom:515.669550px;}
.yb0{bottom:519.982800px;}
.y125{bottom:530.067450px;}
.y106{bottom:532.067550px;}
.y187{bottom:532.450050px;}
.y11{bottom:532.458300px;}
.y16b{bottom:532.459800px;}
.y3a{bottom:534.118050px;}
.yf5{bottom:534.118200px;}
.yaf{bottom:538.432800px;}
.yc7{bottom:538.709550px;}
.y80{bottom:542.239500px;}
.y124{bottom:547.318200px;}
.y186{bottom:549.700800px;}
.y10{bottom:549.709050px;}
.y16a{bottom:549.710550px;}
.y8a{bottom:550.036500px;}
.y105{bottom:550.517550px;}
.y39{bottom:552.568050px;}
.yf4{bottom:552.568200px;}
.y85{bottom:554.625795px;}
.y90{bottom:563.544000px;}
.y185{bottom:566.951550px;}
.yf{bottom:566.959800px;}
.y169{bottom:566.961300px;}
.y104{bottom:568.967550px;}
.y84{bottom:569.707298px;}
.y139{bottom:569.763000px;}
.y38{bottom:571.018050px;}
.yf3{bottom:571.018200px;}
.y8e{bottom:575.083500px;}
.y184{bottom:584.202300px;}
.ye{bottom:584.210550px;}
.y168{bottom:584.212050px;}
.y83{bottom:584.788800px;}
.y8d{bottom:585.838500px;}
.y37{bottom:589.468050px;}
.yf2{bottom:589.468200px;}
.yc6{bottom:591.534000px;}
.ybe{bottom:592.068000px;}
.y183{bottom:601.453050px;}
.yd{bottom:601.461300px;}
.y167{bottom:601.462800px;}
.y36{bottom:607.918050px;}
.yf1{bottom:607.918200px;}
.ybd{bottom:609.318750px;}
.y182{bottom:618.703800px;}
.yc{bottom:618.712050px;}
.y166{bottom:618.713550px;}
.y103{bottom:621.792000px;}
.y35{bottom:626.368050px;}
.yf0{bottom:626.368200px;}
.y181{bottom:635.954550px;}
.yb{bottom:635.962800px;}
.y165{bottom:635.964300px;}
.y34{bottom:644.818050px;}
.yef{bottom:644.818200px;}
.y180{bottom:653.205300px;}
.ya{bottom:653.213550px;}
.y164{bottom:653.215050px;}
.y33{bottom:663.268050px;}
.y17f{bottom:670.456050px;}
.y9{bottom:670.464300px;}
.y163{bottom:670.465800px;}
.y32{bottom:681.718050px;}
.yee{bottom:681.718200px;}
.y15b{bottom:687.617550px;}
.y17e{bottom:687.706800px;}
.y8{bottom:687.715050px;}
.y162{bottom:687.716550px;}
.y31{bottom:700.168050px;}
.y17d{bottom:704.957550px;}
.y7{bottom:704.965800px;}
.y161{bottom:704.967300px;}
.yc1{bottom:705.410550px;}
.y30{bottom:718.618050px;}
.yed{bottom:718.618200px;}
.y17c{bottom:722.208300px;}
.y6{bottom:722.216550px;}
.y160{bottom:722.218050px;}
.y95{bottom:728.631600px;}
.y2f{bottom:737.068050px;}
.yec{bottom:737.068200px;}
.y17b{bottom:739.459050px;}
.y5{bottom:739.467300px;}
.y15f{bottom:739.468800px;}
.y94{bottom:745.882350px;}
.y2e{bottom:755.518050px;}
.yeb{bottom:755.518200px;}
.y17a{bottom:756.709800px;}
.y4{bottom:756.718050px;}
.y15e{bottom:756.719550px;}
.y98{bottom:759.826500px;}
.y2d{bottom:773.968050px;}
.yea{bottom:773.968200px;}
.y2c{bottom:792.418050px;}
.ye9{bottom:792.418200px;}
.y15d{bottom:793.618050px;}
.y2b{bottom:810.868050px;}
.ye8{bottom:810.868200px;}
.y3{bottom:826.768050px;}
.y2a{bottom:829.318050px;}
.ye7{bottom:829.318200px;}
.yac{bottom:830.843550px;}
.yae{bottom:831.107100px;}
.y29{bottom:847.768050px;}
.ye6{bottom:847.768200px;}
.y28{bottom:866.218050px;}
.y2{bottom:870.815700px;}
.y27{bottom:884.668050px;}
.y1{bottom:896.303700px;}
.y26{bottom:903.118050px;}
.y25{bottom:955.942350px;}
.h10{height:16.261500px;}
.h14{height:22.675500px;}
.h17{height:25.489500px;}
.h12{height:25.752000px;}
.h13{height:28.710000px;}
.h19{height:29.801922px;}
.h21{height:30.034266px;}
.h1f{height:33.914118px;}
.hf{height:34.963062px;}
.h11{height:37.759979px;}
.h24{height:45.543000px;}
.h22{height:45.576600px;}
.hb{height:45.696000px;}
.h23{height:45.704400px;}
.h25{height:45.717000px;}
.h5{height:46.716000px;}
.h4{height:48.195000px;}
.h8{height:49.996800px;}
.h9{height:50.868000px;}
.hd{height:51.600000px;}
.h1e{height:51.601200px;}
.h7{height:54.960000px;}
.h1c{height:54.960600px;}
.ha{height:56.520000px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.he{height:68.850000px;}
.h15{height:75.812112px;}
.h16{height:87.340972px;}
.h2{height:90.720000px;}
.h20{height:130.960500px;}
.hc{height:135.000000px;}
.h1d{height:141.696000px;}
.h18{height:170.929500px;}
.h1b{height:184.003500px;}
.h1a{height:278.079000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w10{width:6.163500px;}
.wc{width:9.573000px;}
.wd{width:13.900500px;}
.wa{width:16.131000px;}
.wb{width:16.917000px;}
.w8{width:17.442000px;}
.w9{width:17.967000px;}
.wf{width:29.376000px;}
.w13{width:31.204500px;}
.w12{width:31.336500px;}
.w4{width:37.114500px;}
.w7{width:43.278000px;}
.w6{width:52.588500px;}
.w5{width:52.615500px;}
.we{width:352.189500px;}
.w11{width:353.368500px;}
.w3{width:357.487500px;}
.w2{width:552.264000px;}
.w16{width:575.554500px;}
.w14{width:575.607000px;}
.w15{width:575.644500px;}
.w17{width:575.653500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x20{left:3.016950px;}
.x1a{left:4.721400px;}
.x1c{left:6.818850px;}
.x17{left:8.001000px;}
.x6{left:9.192000px;}
.xc{left:12.505017px;}
.x1e{left:14.688600px;}
.xe{left:18.486150px;}
.x13{left:21.639600px;}
.x10{left:26.229600px;}
.xa{left:27.979950px;}
.x7{left:30.447000px;}
.x22{left:46.280550px;}
.x23{left:52.968900px;}
.x2e{left:61.855500px;}
.x5{left:63.421500px;}
.x2b{left:70.873500px;}
.x3{left:72.283500px;}
.x1{left:80.787450px;}
.x31{left:85.033500px;}
.x4{left:93.538500px;}
.x2{left:102.042450px;}
.x24{left:109.655400px;}
.x2d{left:156.493650px;}
.x25{left:158.833950px;}
.x26{left:165.522150px;}
.x9{left:166.585500px;}
.x21{left:170.706000px;}
.x1d{left:171.885000px;}
.x30{left:173.970150px;}
.x2f{left:187.862550px;}
.xb{left:194.565450px;}
.xd{left:197.713500px;}
.x27{left:210.373050px;}
.x28{left:217.061400px;}
.x2c{left:227.367150px;}
.xf{left:238.099500px;}
.x29{left:251.180400px;}
.x2a{left:257.868600px;}
.x11{left:294.000000px;}
.x12{left:349.866000px;}
.x32{left:353.804400px;}
.x33{left:366.171900px;}
.x14{left:396.444000px;}
.x15{left:413.886000px;}
.x1f{left:425.820000px;}
.x16{left:435.130500px;}
.x18{left:454.542000px;}
.x19{left:473.163000px;}
.x1b{left:484.311000px;}
.x8{left:548.615400px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.125867pt;}
.v1{vertical-align:17.717333pt;}
.ls68{letter-spacing:-3.762667pt;}
.ls45{letter-spacing:-3.408000pt;}
.ls50{letter-spacing:-2.640000pt;}
.ls69{letter-spacing:-2.493333pt;}
.ls59{letter-spacing:-1.872000pt;}
.ls62{letter-spacing:-1.488000pt;}
.ls6b{letter-spacing:-1.450667pt;}
.ls29{letter-spacing:-1.440000pt;}
.lsc{letter-spacing:-1.314667pt;}
.ls4c{letter-spacing:-0.906667pt;}
.ls48{letter-spacing:-0.746667pt;}
.ls5c{letter-spacing:-0.693333pt;}
.ls5d{letter-spacing:-0.640000pt;}
.ls49{letter-spacing:-0.586667pt;}
.ls47{letter-spacing:-0.533333pt;}
.ls5b{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.453333pt;}
.ls5e{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.408000pt;}
.ls61{letter-spacing:-0.373333pt;}
.ls57{letter-spacing:-0.362667pt;}
.ls33{letter-spacing:-0.336000pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.317333pt;}
.ls46{letter-spacing:-0.266667pt;}
.ls52{letter-spacing:-0.248000pt;}
.lsf{letter-spacing:-0.226667pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls2a{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.136000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls6a{letter-spacing:-0.090667pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls11{letter-spacing:-0.049600pt;}
.lsb{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.000379pt;}
.ls23{letter-spacing:0.026667pt;}
.ls5f{letter-spacing:0.042560pt;}
.ls7{letter-spacing:0.045333pt;}
.ls5a{letter-spacing:0.048000pt;}
.ls4f{letter-spacing:0.049600pt;}
.ls9{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.068000pt;}
.ls4e{letter-spacing:0.080000pt;}
.ls4a{letter-spacing:0.099200pt;}
.ls20{letter-spacing:0.106667pt;}
.ls37{letter-spacing:0.133333pt;}
.ls2d{letter-spacing:0.155467pt;}
.ls34{letter-spacing:0.158667pt;}
.ls21{letter-spacing:0.160000pt;}
.ls54{letter-spacing:0.177920pt;}
.ls5{letter-spacing:0.181333pt;}
.ls27{letter-spacing:0.186667pt;}
.ls26{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.226667pt;}
.ls4d{letter-spacing:0.232427pt;}
.ls12{letter-spacing:0.240000pt;}
.ls18{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.272000pt;}
.ls4b{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.293333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.346667pt;}
.ls6{letter-spacing:0.362667pt;}
.ls1a{letter-spacing:0.373333pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls43{letter-spacing:0.400000pt;}
.ls0{letter-spacing:0.408000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls3c{letter-spacing:0.453333pt;}
.ls38{letter-spacing:0.480000pt;}
.ls51{letter-spacing:0.498667pt;}
.ls22{letter-spacing:0.506667pt;}
.ls40{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.559253pt;}
.ls42{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.589333pt;}
.ls13{letter-spacing:0.618667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls17{letter-spacing:0.746667pt;}
.ls3e{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.816000pt;}
.ls35{letter-spacing:0.906667pt;}
.ls28{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls58{letter-spacing:1.104000pt;}
.ls56{letter-spacing:1.296000pt;}
.ls53{letter-spacing:1.344000pt;}
.ls65{letter-spacing:1.360000pt;}
.ls1b{letter-spacing:1.488000pt;}
.ls2c{letter-spacing:1.536000pt;}
.ls60{letter-spacing:1.584000pt;}
.ls67{letter-spacing:1.632000pt;}
.ls63{letter-spacing:2.720000pt;}
.ls66{letter-spacing:2.946667pt;}
.ls3b{letter-spacing:2.960000pt;}
.ls39{letter-spacing:2.986667pt;}
.ls3a{letter-spacing:3.200000pt;}
.ls41{letter-spacing:3.253333pt;}
.ls3d{letter-spacing:3.306667pt;}
.ls44{letter-spacing:3.413333pt;}
.ls3f{letter-spacing:4.800000pt;}
.ls25{letter-spacing:6.666667pt;}
.ls32{letter-spacing:893.088000pt;}
.ls55{letter-spacing:1057.968000pt;}
.ws85{word-spacing:-13.706667pt;}
.ws84{word-spacing:-13.600000pt;}
.wsdb{word-spacing:-12.965333pt;}
.wsd0{word-spacing:-12.960000pt;}
.ws52{word-spacing:-12.912000pt;}
.ws1d{word-spacing:-12.864000pt;}
.wsba{word-spacing:-12.480000pt;}
.wsdd{word-spacing:-12.466667pt;}
.ws1f{word-spacing:-11.786667pt;}
.wsda{word-spacing:-11.664000pt;}
.wsbc{word-spacing:-11.424000pt;}
.wse0{word-spacing:-11.378667pt;}
.ws1e{word-spacing:-11.200000pt;}
.ws3e{word-spacing:-11.040000pt;}
.wsc4{word-spacing:-10.896000pt;}
.ws90{word-spacing:-10.773333pt;}
.ws2{word-spacing:-10.664000pt;}
.ws83{word-spacing:-10.533333pt;}
.wsa8{word-spacing:-10.480000pt;}
.ws3f{word-spacing:-10.400000pt;}
.wsd1{word-spacing:-10.240000pt;}
.wsca{word-spacing:-9.813333pt;}
.wsdc{word-spacing:-9.746667pt;}
.wse4{word-spacing:-9.656000pt;}
.wse6{word-spacing:-9.520000pt;}
.wsbb{word-spacing:-9.504000pt;}
.wsde{word-spacing:-9.066667pt;}
.wsa7{word-spacing:-8.736000pt;}
.ws0{word-spacing:-8.704000pt;}
.wse5{word-spacing:-8.296000pt;}
.ws9b{word-spacing:-7.968000pt;}
.ws1{word-spacing:-7.912000pt;}
.wse3{word-spacing:-7.253333pt;}
.ws54{word-spacing:-6.685067pt;}
.ws53{word-spacing:-6.529600pt;}
.wse1{word-spacing:-5.984000pt;}
.wse2{word-spacing:-5.682307pt;}
.wsdf{word-spacing:-5.285867pt;}
.wsa2{word-spacing:-2.773333pt;}
.wsf{word-spacing:-2.674667pt;}
.wsd5{word-spacing:-2.346667pt;}
.ws68{word-spacing:-2.240000pt;}
.wsc9{word-spacing:-2.186667pt;}
.wsc8{word-spacing:-2.133333pt;}
.wsab{word-spacing:-1.866667pt;}
.ws2d{word-spacing:-1.813333pt;}
.ws94{word-spacing:-1.760000pt;}
.ws2e{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.686400pt;}
.ws33{word-spacing:-1.653333pt;}
.wsb0{word-spacing:-1.636800pt;}
.ws11{word-spacing:-1.632000pt;}
.ws30{word-spacing:-1.600000pt;}
.ws1b{word-spacing:-1.587200pt;}
.ws5d{word-spacing:-1.546667pt;}
.wse8{word-spacing:-1.541333pt;}
.wsb{word-spacing:-1.450667pt;}
.ws22{word-spacing:-1.440000pt;}
.ws7d{word-spacing:-1.386667pt;}
.wsc2{word-spacing:-1.344000pt;}
.ws16{word-spacing:-1.333333pt;}
.ws70{word-spacing:-1.314667pt;}
.ws59{word-spacing:-1.226667pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws60{word-spacing:-1.140800pt;}
.ws12{word-spacing:-1.066667pt;}
.ws9f{word-spacing:-1.013333pt;}
.ws40{word-spacing:-0.960000pt;}
.ws7e{word-spacing:-0.952000pt;}
.ws81{word-spacing:-0.906667pt;}
.ws4d{word-spacing:-0.853333pt;}
.ws8c{word-spacing:-0.800000pt;}
.ws74{word-spacing:-0.746667pt;}
.ws79{word-spacing:-0.720000pt;}
.ws88{word-spacing:-0.680000pt;}
.ws44{word-spacing:-0.640000pt;}
.wse9{word-spacing:-0.634667pt;}
.ws6c{word-spacing:-0.595200pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws97{word-spacing:-0.533333pt;}
.wsb6{word-spacing:-0.498667pt;}
.ws8d{word-spacing:-0.480000pt;}
.wsc3{word-spacing:-0.453333pt;}
.ws5c{word-spacing:-0.426667pt;}
.ws8e{word-spacing:-0.408000pt;}
.ws21{word-spacing:-0.373333pt;}
.ws17{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws82{word-spacing:-0.226667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws61{word-spacing:-0.198400pt;}
.ws51{word-spacing:-0.181333pt;}
.ws76{word-spacing:-0.160000pt;}
.ws63{word-spacing:-0.148800pt;}
.wsa9{word-spacing:-0.133333pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.053333pt;}
.wsb9{word-spacing:-0.049600pt;}
.ws4f{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.049600pt;}
.ws13{word-spacing:0.053333pt;}
.ws23{word-spacing:0.106667pt;}
.ws50{word-spacing:0.136000pt;}
.wsb5{word-spacing:0.160000pt;}
.wse{word-spacing:0.181333pt;}
.ws75{word-spacing:0.213333pt;}
.wsb8{word-spacing:0.248000pt;}
.wsb3{word-spacing:0.266667pt;}
.ws8f{word-spacing:0.317333pt;}
.ws32{word-spacing:0.320000pt;}
.ws71{word-spacing:0.362667pt;}
.ws69{word-spacing:0.373333pt;}
.ws77{word-spacing:0.426667pt;}
.ws7a{word-spacing:0.453333pt;}
.ws25{word-spacing:0.480000pt;}
.wscf{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.545600pt;}
.ws5a{word-spacing:0.586667pt;}
.wsc{word-spacing:0.634667pt;}
.ws98{word-spacing:0.640000pt;}
.wsae{word-spacing:0.680000pt;}
.ws86{word-spacing:0.693333pt;}
.ws5f{word-spacing:0.694400pt;}
.wsb4{word-spacing:0.746667pt;}
.ws7{word-spacing:0.770667pt;}
.ws65{word-spacing:0.800000pt;}
.ws42{word-spacing:0.853333pt;}
.ws57{word-spacing:0.906667pt;}
.ws58{word-spacing:0.960000pt;}
.wsad{word-spacing:0.997333pt;}
.ws8b{word-spacing:1.013333pt;}
.ws62{word-spacing:1.041600pt;}
.ws5b{word-spacing:1.066667pt;}
.wsaf{word-spacing:1.140800pt;}
.ws3a{word-spacing:1.173333pt;}
.ws4e{word-spacing:1.178667pt;}
.ws39{word-spacing:1.226667pt;}
.wsc1{word-spacing:1.269333pt;}
.ws36{word-spacing:1.280000pt;}
.ws31{word-spacing:1.333333pt;}
.wsd{word-spacing:1.360000pt;}
.ws37{word-spacing:1.386667pt;}
.ws8{word-spacing:1.405333pt;}
.wsb2{word-spacing:1.438400pt;}
.ws2b{word-spacing:1.440000pt;}
.ws80{word-spacing:1.450667pt;}
.ws6b{word-spacing:1.493333pt;}
.ws45{word-spacing:1.546667pt;}
.wsa6{word-spacing:1.587200pt;}
.ws67{word-spacing:1.600000pt;}
.ws28{word-spacing:1.653333pt;}
.ws15{word-spacing:1.706667pt;}
.ws92{word-spacing:1.760000pt;}
.ws24{word-spacing:1.813333pt;}
.wscc{word-spacing:1.866667pt;}
.ws43{word-spacing:1.920000pt;}
.ws3b{word-spacing:1.973333pt;}
.ws48{word-spacing:2.026667pt;}
.ws87{word-spacing:2.040000pt;}
.ws4a{word-spacing:2.080000pt;}
.wsa{word-spacing:2.130667pt;}
.ws66{word-spacing:2.133333pt;}
.ws5{word-spacing:2.176000pt;}
.ws56{word-spacing:2.186667pt;}
.ws3d{word-spacing:2.240000pt;}
.ws7f{word-spacing:2.266667pt;}
.ws29{word-spacing:2.293333pt;}
.wsc0{word-spacing:2.312000pt;}
.wsbe{word-spacing:2.346667pt;}
.ws6f{word-spacing:2.357333pt;}
.ws38{word-spacing:2.400000pt;}
.ws26{word-spacing:2.506667pt;}
.ws6e{word-spacing:2.538667pt;}
.wsce{word-spacing:2.560000pt;}
.ws46{word-spacing:2.613333pt;}
.ws14{word-spacing:2.666667pt;}
.ws19{word-spacing:2.720000pt;}
.ws5e{word-spacing:2.773333pt;}
.ws27{word-spacing:2.826667pt;}
.wsa5{word-spacing:2.880000pt;}
.ws49{word-spacing:2.933333pt;}
.wsbf{word-spacing:2.946667pt;}
.ws35{word-spacing:2.986667pt;}
.ws10{word-spacing:3.037333pt;}
.ws93{word-spacing:3.040000pt;}
.ws6d{word-spacing:3.082667pt;}
.ws96{word-spacing:3.093333pt;}
.ws9a{word-spacing:3.146667pt;}
.ws4{word-spacing:3.173333pt;}
.ws34{word-spacing:3.200000pt;}
.wsa1{word-spacing:3.306667pt;}
.ws9d{word-spacing:3.360000pt;}
.ws7c{word-spacing:3.413333pt;}
.ws9e{word-spacing:3.466667pt;}
.wsd7{word-spacing:3.520000pt;}
.ws78{word-spacing:3.573333pt;}
.ws89{word-spacing:3.626667pt;}
.wsa3{word-spacing:3.733333pt;}
.ws2a{word-spacing:3.840000pt;}
.ws8a{word-spacing:3.946667pt;}
.ws47{word-spacing:4.053333pt;}
.wsd6{word-spacing:4.213333pt;}
.wsac{word-spacing:4.320000pt;}
.ws95{word-spacing:4.426667pt;}
.ws99{word-spacing:4.640000pt;}
.wsc7{word-spacing:4.693333pt;}
.wsd4{word-spacing:4.800000pt;}
.ws9{word-spacing:4.941333pt;}
.wsc6{word-spacing:5.013333pt;}
.wsd8{word-spacing:5.066667pt;}
.wsa4{word-spacing:5.120000pt;}
.ws4c{word-spacing:5.440000pt;}
.ws4b{word-spacing:5.813333pt;}
.wscd{word-spacing:6.240000pt;}
.wsd3{word-spacing:6.613333pt;}
.ws6{word-spacing:6.800000pt;}
.ws6a{word-spacing:7.946667pt;}
.wsea{word-spacing:35.632000pt;}
.wsd2{word-spacing:890.496000pt;}
.ws55{word-spacing:890.544000pt;}
.ws20{word-spacing:890.592000pt;}
.wse7{word-spacing:891.792000pt;}
.ws72{word-spacing:892.368000pt;}
.wsc5{word-spacing:892.560000pt;}
.wsaa{word-spacing:894.672000pt;}
.ws9c{word-spacing:895.488000pt;}
.wsbd{word-spacing:1056.672000pt;}
.ws91{word-spacing:1058.160000pt;}
.ws64{word-spacing:1058.592000pt;}
.wsa0{word-spacing:1058.736000pt;}
.wscb{word-spacing:1059.312000pt;}
.ws7b{word-spacing:1059.360000pt;}
.ws41{word-spacing:1062.192000pt;}
.wsd9{word-spacing:1062.288000pt;}
._12{margin-left:-894.729333pt;}
._14{margin-left:-893.792267pt;}
._f{margin-left:-892.288533pt;}
._1a{margin-left:-891.073600pt;}
._b{margin-left:-889.810667pt;}
._6{margin-left:-17.698133pt;}
._15{margin-left:-16.032000pt;}
._16{margin-left:-13.485067pt;}
._18{margin-left:-11.689067pt;}
._7{margin-left:-9.520000pt;}
._9{margin-left:-6.122667pt;}
._8{margin-left:-4.986667pt;}
._c{margin-left:-3.908267pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.280000pt;}
._2{width:1.262933pt;}
._4{width:2.182400pt;}
._3{width:3.655733pt;}
._10{width:4.640533pt;}
._5{width:6.759467pt;}
._e{width:8.458133pt;}
._13{width:44.144000pt;}
._d{width:45.333867pt;}
._19{width:48.756267pt;}
._17{width:49.897067pt;}
._a{width:52.674667pt;}
._11{width:111.126144pt;}
.fsf{font-size:26.429333pt;}
.fs1{font-size:31.093333pt;}
.fs5{font-size:36.800000pt;}
.fsc{font-size:39.745600pt;}
.fse{font-size:40.055467pt;}
.fsd{font-size:45.229867pt;}
.fs3{font-size:45.333333pt;}
.fs8{font-size:46.628800pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs9{font-size:50.358933pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.fsa{font-size:101.184000pt;}
.fsb{font-size:116.571200pt;}
.yab{bottom:-593.613333pt;}
.yaa{bottom:-578.279333pt;}
.y15a{bottom:-426.182400pt;}
.y159{bottom:-410.719600pt;}
.y158{bottom:-376.318667pt;}
.y157{bottom:-359.918667pt;}
.y7f{bottom:-345.810667pt;}
.y156{bottom:-343.518667pt;}
.y7e{bottom:-329.410667pt;}
.y155{bottom:-327.118667pt;}
.y7d{bottom:-313.010667pt;}
.y154{bottom:-310.718667pt;}
.ya7{bottom:-298.498400pt;}
.y7c{bottom:-296.610667pt;}
.y153{bottom:-294.318667pt;}
.ya6{bottom:-282.098400pt;}
.y7b{bottom:-280.210667pt;}
.y152{bottom:-277.918667pt;}
.ya5{bottom:-265.698400pt;}
.y7a{bottom:-263.810667pt;}
.y151{bottom:-261.518667pt;}
.ya4{bottom:-249.298400pt;}
.y79{bottom:-247.410667pt;}
.y150{bottom:-245.118667pt;}
.ye5{bottom:-242.746933pt;}
.ya3{bottom:-232.898400pt;}
.y78{bottom:-231.010667pt;}
.y14f{bottom:-228.718667pt;}
.ye4{bottom:-226.346933pt;}
.ya2{bottom:-216.498400pt;}
.y122{bottom:-216.491600pt;}
.y77{bottom:-214.610667pt;}
.y14e{bottom:-212.318667pt;}
.ye3{bottom:-209.946933pt;}
.y121{bottom:-201.028800pt;}
.ya1{bottom:-200.098400pt;}
.y76{bottom:-198.210667pt;}
.y14d{bottom:-195.918667pt;}
.ye2{bottom:-193.546933pt;}
.y120{bottom:-185.566000pt;}
.ya0{bottom:-183.698400pt;}
.y75{bottom:-181.810667pt;}
.y14c{bottom:-179.518667pt;}
.ye1{bottom:-177.146933pt;}
.y11f{bottom:-170.103200pt;}
.y9f{bottom:-167.298400pt;}
.y74{bottom:-165.410667pt;}
.y14b{bottom:-163.118667pt;}
.ye0{bottom:-160.746933pt;}
.y11e{bottom:-154.640400pt;}
.y9e{bottom:-150.898400pt;}
.y73{bottom:-149.010667pt;}
.y14a{bottom:-146.718667pt;}
.ydf{bottom:-144.346933pt;}
.y11d{bottom:-139.177600pt;}
.y9d{bottom:-134.498400pt;}
.y72{bottom:-132.610667pt;}
.yde{bottom:-127.946933pt;}
.y11c{bottom:-123.714800pt;}
.y9c{bottom:-118.098400pt;}
.y71{bottom:-116.210667pt;}
.y149{bottom:-113.918667pt;}
.ydd{bottom:-111.546933pt;}
.y11b{bottom:-108.252000pt;}
.y9b{bottom:-101.698400pt;}
.y70{bottom:-99.810667pt;}
.ydc{bottom:-95.146933pt;}
.y9a{bottom:-85.298400pt;}
.y6f{bottom:-83.410667pt;}
.y6e{bottom:-67.010667pt;}
.y148{bottom:-66.187333pt;}
.y11a{bottom:-53.319067pt;}
.y147{bottom:-50.853333pt;}
.y6d{bottom:-50.610667pt;}
.ydb{bottom:-43.999867pt;}
.y89{bottom:-42.612807pt;}
.y119{bottom:-37.985067pt;}
.ya9{bottom:-37.622667pt;}
.y146{bottom:-35.519333pt;}
.y6c{bottom:-34.210667pt;}
.yc0{bottom:-29.712133pt;}
.y88{bottom:-29.207027pt;}
.yda{bottom:-28.665867pt;}
.y118{bottom:-22.651067pt;}
.ya8{bottom:-22.288667pt;}
.y145{bottom:-20.185333pt;}
.y87{bottom:-15.801247pt;}
.ybf{bottom:-14.378133pt;}
.yd9{bottom:-13.331867pt;}
.y8c{bottom:-5.076667pt;}
.y86{bottom:-2.395467pt;}
.y8f{bottom:-2.330667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:2.680667pt;}
.y91{bottom:6.294667pt;}
.y93{bottom:6.697067pt;}
.y92{bottom:9.559467pt;}
.y6a{bottom:31.286267pt;}
.y82{bottom:51.223439pt;}
.y81{bottom:64.652533pt;}
.y4a{bottom:79.998667pt;}
.y15c{bottom:80.503867pt;}
.y101{bottom:80.504133pt;}
.y52{bottom:80.507733pt;}
.y50{bottom:80.507867pt;}
.y138{bottom:80.508000pt;}
.y24{bottom:80.511733pt;}
.y57{bottom:81.171600pt;}
.y97{bottom:81.255200pt;}
.y49{bottom:95.332667pt;}
.y51{bottom:95.970533pt;}
.y4f{bottom:95.970667pt;}
.y100{bottom:95.970800pt;}
.y23{bottom:95.974533pt;}
.y96{bottom:96.589200pt;}
.y47{bottom:97.571600pt;}
.y48{bottom:110.666667pt;}
.y4e{bottom:111.437200pt;}
.y22{bottom:111.437333pt;}
.yff{bottom:111.437467pt;}
.yad{bottom:111.496000pt;}
.y46{bottom:113.971600pt;}
.y4d{bottom:126.903867pt;}
.yfe{bottom:126.908000pt;}
.y45{bottom:130.371600pt;}
.y137{bottom:130.371733pt;}
.yfd{bottom:142.370800pt;}
.y4c{bottom:142.374533pt;}
.y68{bottom:146.189333pt;}
.y21{bottom:146.771600pt;}
.y136{bottom:146.771733pt;}
.y144{bottom:148.481067pt;}
.y197{bottom:151.274933pt;}
.y4b{bottom:157.837333pt;}
.yfc{bottom:157.841333pt;}
.y117{bottom:161.349200pt;}
.y67{bottom:162.589333pt;}
.y20{bottom:163.171600pt;}
.y135{bottom:163.171733pt;}
.y143{bottom:164.881067pt;}
.y196{bottom:166.608933pt;}
.yfb{bottom:173.304133pt;}
.y99{bottom:174.856533pt;}
.y116{bottom:177.749200pt;}
.y66{bottom:178.989333pt;}
.y1f{bottom:179.571600pt;}
.y134{bottom:179.571733pt;}
.y142{bottom:181.281067pt;}
.yd8{bottom:183.652933pt;}
.yfa{bottom:188.770667pt;}
.y115{bottom:194.149200pt;}
.y65{bottom:195.389333pt;}
.y1e{bottom:195.971600pt;}
.y133{bottom:195.971733pt;}
.y195{bottom:197.276933pt;}
.y141{bottom:197.681067pt;}
.yd7{bottom:200.052933pt;}
.y114{bottom:210.549200pt;}
.y64{bottom:211.789333pt;}
.y1d{bottom:212.371600pt;}
.y132{bottom:212.371733pt;}
.y194{bottom:212.610933pt;}
.y140{bottom:214.081067pt;}
.yd6{bottom:216.452933pt;}
.y113{bottom:226.949200pt;}
.y63{bottom:228.189333pt;}
.y1c{bottom:228.771600pt;}
.y131{bottom:228.771733pt;}
.y13f{bottom:230.481067pt;}
.yd5{bottom:232.852933pt;}
.y112{bottom:243.349200pt;}
.yf9{bottom:243.703600pt;}
.y62{bottom:244.589333pt;}
.y1b{bottom:245.171600pt;}
.y130{bottom:245.171733pt;}
.y13e{bottom:246.881067pt;}
.yd4{bottom:249.252933pt;}
.y179{bottom:258.635600pt;}
.yf8{bottom:259.037600pt;}
.y111{bottom:259.749200pt;}
.y61{bottom:260.989333pt;}
.y1a{bottom:261.571600pt;}
.y12f{bottom:261.571733pt;}
.y13d{bottom:263.281067pt;}
.ybc{bottom:265.406933pt;}
.yd3{bottom:265.652933pt;}
.y178{bottom:273.969600pt;}
.yf7{bottom:274.371600pt;}
.y110{bottom:276.149200pt;}
.y60{bottom:277.389333pt;}
.y19{bottom:277.971600pt;}
.y12e{bottom:277.971733pt;}
.y13c{bottom:279.681067pt;}
.yc4{bottom:279.918667pt;}
.ybb{bottom:281.806933pt;}
.yd2{bottom:282.052933pt;}
.y193{bottom:289.280933pt;}
.y177{bottom:289.303600pt;}
.y5f{bottom:293.789333pt;}
.y44{bottom:294.371600pt;}
.y12d{bottom:294.371733pt;}
.yc3{bottom:295.252667pt;}
.y13b{bottom:296.081067pt;}
.yba{bottom:298.206933pt;}
.yd1{bottom:298.452933pt;}
.y102{bottom:298.468000pt;}
.y192{bottom:304.614933pt;}
.y176{bottom:304.637600pt;}
.y10f{bottom:308.949200pt;}
.y5e{bottom:310.189333pt;}
.yc2{bottom:310.586667pt;}
.y18{bottom:310.771600pt;}
.y12c{bottom:310.771733pt;}
.yb9{bottom:314.606933pt;}
.yd0{bottom:314.852933pt;}
.y191{bottom:319.948933pt;}
.y175{bottom:319.966933pt;}
.yc5{bottom:323.526667pt;}
.y5d{bottom:326.589333pt;}
.y43{bottom:327.171600pt;}
.y12b{bottom:327.171733pt;}
.yb8{bottom:331.006933pt;}
.ycf{bottom:331.252933pt;}
.y190{bottom:335.282933pt;}
.y174{bottom:335.300933pt;}
.y10e{bottom:341.749200pt;}
.y5c{bottom:342.989333pt;}
.y13a{bottom:343.036133pt;}
.y42{bottom:343.571600pt;}
.y12a{bottom:343.571733pt;}
.yb7{bottom:347.406933pt;}
.yce{bottom:347.652933pt;}
.y18f{bottom:350.616933pt;}
.y173{bottom:350.634933pt;}
.y10d{bottom:358.149200pt;}
.y5b{bottom:359.389333pt;}
.y41{bottom:359.971600pt;}
.y129{bottom:359.971733pt;}
.yb6{bottom:363.806933pt;}
.ycd{bottom:364.052933pt;}
.y17{bottom:364.224267pt;}
.y18e{bottom:365.950933pt;}
.y172{bottom:365.968933pt;}
.y10c{bottom:374.549200pt;}
.y5a{bottom:375.789333pt;}
.y40{bottom:376.371600pt;}
.y16{bottom:379.558267pt;}
.yb5{bottom:380.206933pt;}
.ycc{bottom:380.452933pt;}
.y18d{bottom:381.284933pt;}
.y171{bottom:381.302933pt;}
.y10b{bottom:390.949200pt;}
.y3f{bottom:392.771600pt;}
.y128{bottom:392.771733pt;}
.y15{bottom:394.892267pt;}
.yb4{bottom:396.606933pt;}
.y18c{bottom:396.618933pt;}
.y170{bottom:396.636933pt;}
.ycb{bottom:396.852933pt;}
.y56{bottom:401.025600pt;}
.y10a{bottom:407.349200pt;}
.y3e{bottom:409.171600pt;}
.y14{bottom:410.226267pt;}
.y18b{bottom:411.952933pt;}
.y16f{bottom:411.970933pt;}
.y123{bottom:411.977067pt;}
.yb3{bottom:413.006933pt;}
.yca{bottom:413.252933pt;}
.y55{bottom:416.359600pt;}
.y59{bottom:422.744267pt;}
.y109{bottom:423.749200pt;}
.y3d{bottom:425.571600pt;}
.y58{bottom:427.086667pt;}
.y18a{bottom:427.286933pt;}
.y16e{bottom:427.303067pt;}
.yb2{bottom:429.406933pt;}
.yc9{bottom:429.652933pt;}
.y54{bottom:431.693600pt;}
.y108{bottom:440.149200pt;}
.y127{bottom:440.503067pt;}
.y3c{bottom:441.971600pt;}
.y189{bottom:442.620933pt;}
.y13{bottom:442.628267pt;}
.y16d{bottom:442.637067pt;}
.y6b{bottom:443.038933pt;}
.yb1{bottom:445.806933pt;}
.yc8{bottom:446.052933pt;}
.y53{bottom:447.027600pt;}
.y126{bottom:455.837067pt;}
.y107{bottom:456.549200pt;}
.y188{bottom:457.954933pt;}
.y12{bottom:457.962267pt;}
.y16c{bottom:457.971067pt;}
.y3b{bottom:458.371600pt;}
.yf6{bottom:458.371733pt;}
.y69{bottom:458.372933pt;}
.yb0{bottom:462.206933pt;}
.y125{bottom:471.171067pt;}
.y106{bottom:472.948933pt;}
.y187{bottom:473.288933pt;}
.y11{bottom:473.296267pt;}
.y16b{bottom:473.297600pt;}
.y3a{bottom:474.771600pt;}
.yf5{bottom:474.771733pt;}
.yaf{bottom:478.606933pt;}
.yc7{bottom:478.852933pt;}
.y80{bottom:481.990667pt;}
.y124{bottom:486.505067pt;}
.y186{bottom:488.622933pt;}
.y10{bottom:488.630267pt;}
.y16a{bottom:488.631600pt;}
.y8a{bottom:488.921333pt;}
.y105{bottom:489.348933pt;}
.y39{bottom:491.171600pt;}
.yf4{bottom:491.171733pt;}
.y85{bottom:493.000707pt;}
.y90{bottom:500.928000pt;}
.y185{bottom:503.956933pt;}
.yf{bottom:503.964267pt;}
.y169{bottom:503.965600pt;}
.y104{bottom:505.748933pt;}
.y84{bottom:506.406487pt;}
.y139{bottom:506.456000pt;}
.y38{bottom:507.571600pt;}
.yf3{bottom:507.571733pt;}
.y8e{bottom:511.185333pt;}
.y184{bottom:519.290933pt;}
.ye{bottom:519.298267pt;}
.y168{bottom:519.299600pt;}
.y83{bottom:519.812267pt;}
.y8d{bottom:520.745333pt;}
.y37{bottom:523.971600pt;}
.yf2{bottom:523.971733pt;}
.yc6{bottom:525.808000pt;}
.ybe{bottom:526.282667pt;}
.y183{bottom:534.624933pt;}
.yd{bottom:534.632267pt;}
.y167{bottom:534.633600pt;}
.y36{bottom:540.371600pt;}
.yf1{bottom:540.371733pt;}
.ybd{bottom:541.616667pt;}
.y182{bottom:549.958933pt;}
.yc{bottom:549.966267pt;}
.y166{bottom:549.967600pt;}
.y103{bottom:552.704000pt;}
.y35{bottom:556.771600pt;}
.yf0{bottom:556.771733pt;}
.y181{bottom:565.292933pt;}
.yb{bottom:565.300267pt;}
.y165{bottom:565.301600pt;}
.y34{bottom:573.171600pt;}
.yef{bottom:573.171733pt;}
.y180{bottom:580.626933pt;}
.ya{bottom:580.634267pt;}
.y164{bottom:580.635600pt;}
.y33{bottom:589.571600pt;}
.y17f{bottom:595.960933pt;}
.y9{bottom:595.968267pt;}
.y163{bottom:595.969600pt;}
.y32{bottom:605.971600pt;}
.yee{bottom:605.971733pt;}
.y15b{bottom:611.215600pt;}
.y17e{bottom:611.294933pt;}
.y8{bottom:611.302267pt;}
.y162{bottom:611.303600pt;}
.y31{bottom:622.371600pt;}
.y17d{bottom:626.628933pt;}
.y7{bottom:626.636267pt;}
.y161{bottom:626.637600pt;}
.yc1{bottom:627.031600pt;}
.y30{bottom:638.771600pt;}
.yed{bottom:638.771733pt;}
.y17c{bottom:641.962933pt;}
.y6{bottom:641.970267pt;}
.y160{bottom:641.971600pt;}
.y95{bottom:647.672533pt;}
.y2f{bottom:655.171600pt;}
.yec{bottom:655.171733pt;}
.y17b{bottom:657.296933pt;}
.y5{bottom:657.304267pt;}
.y15f{bottom:657.305600pt;}
.y94{bottom:663.006533pt;}
.y2e{bottom:671.571600pt;}
.yeb{bottom:671.571733pt;}
.y17a{bottom:672.630933pt;}
.y4{bottom:672.638267pt;}
.y15e{bottom:672.639600pt;}
.y98{bottom:675.401333pt;}
.y2d{bottom:687.971600pt;}
.yea{bottom:687.971733pt;}
.y2c{bottom:704.371600pt;}
.ye9{bottom:704.371733pt;}
.y15d{bottom:705.438267pt;}
.y2b{bottom:720.771600pt;}
.ye8{bottom:720.771733pt;}
.y3{bottom:734.904933pt;}
.y2a{bottom:737.171600pt;}
.ye7{bottom:737.171733pt;}
.yac{bottom:738.527600pt;}
.yae{bottom:738.761867pt;}
.y29{bottom:753.571600pt;}
.ye6{bottom:753.571733pt;}
.y28{bottom:769.971600pt;}
.y2{bottom:774.058400pt;}
.y27{bottom:786.371600pt;}
.y1{bottom:796.714400pt;}
.y26{bottom:802.771600pt;}
.y25{bottom:849.726533pt;}
.h10{height:14.454667pt;}
.h14{height:20.156000pt;}
.h17{height:22.657333pt;}
.h12{height:22.890667pt;}
.h13{height:25.520000pt;}
.h19{height:26.490598pt;}
.h21{height:26.697125pt;}
.h1f{height:30.145883pt;}
.hf{height:31.078277pt;}
.h11{height:33.564426pt;}
.h24{height:40.482667pt;}
.h22{height:40.512533pt;}
.hb{height:40.618667pt;}
.h23{height:40.626133pt;}
.h25{height:40.637333pt;}
.h5{height:41.525333pt;}
.h4{height:42.840000pt;}
.h8{height:44.441600pt;}
.h9{height:45.216000pt;}
.hd{height:45.866667pt;}
.h1e{height:45.867733pt;}
.h7{height:48.853333pt;}
.h1c{height:48.853867pt;}
.ha{height:50.240000pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.he{height:61.200000pt;}
.h15{height:67.388544pt;}
.h16{height:77.636419pt;}
.h2{height:80.640000pt;}
.h20{height:116.409333pt;}
.hc{height:120.000000pt;}
.h1d{height:125.952000pt;}
.h18{height:151.937333pt;}
.h1b{height:163.558667pt;}
.h1a{height:247.181333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w10{width:5.478667pt;}
.wc{width:8.509333pt;}
.wd{width:12.356000pt;}
.wa{width:14.338667pt;}
.wb{width:15.037333pt;}
.w8{width:15.504000pt;}
.w9{width:15.970667pt;}
.wf{width:26.112000pt;}
.w13{width:27.737333pt;}
.w12{width:27.854667pt;}
.w4{width:32.990667pt;}
.w7{width:38.469333pt;}
.w6{width:46.745333pt;}
.w5{width:46.769333pt;}
.we{width:313.057333pt;}
.w11{width:314.105333pt;}
.w3{width:317.766667pt;}
.w2{width:490.901333pt;}
.w16{width:511.604000pt;}
.w14{width:511.650667pt;}
.w15{width:511.684000pt;}
.w17{width:511.692000pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x20{left:2.681733pt;}
.x1a{left:4.196800pt;}
.x1c{left:6.061200pt;}
.x17{left:7.112000pt;}
.x6{left:8.170667pt;}
.xc{left:11.115571pt;}
.x1e{left:13.056533pt;}
.xe{left:16.432133pt;}
.x13{left:19.235200pt;}
.x10{left:23.315200pt;}
.xa{left:24.871067pt;}
.x7{left:27.064000pt;}
.x22{left:41.138267pt;}
.x23{left:47.083467pt;}
.x2e{left:54.982667pt;}
.x5{left:56.374667pt;}
.x2b{left:62.998667pt;}
.x3{left:64.252000pt;}
.x1{left:71.811067pt;}
.x31{left:75.585333pt;}
.x4{left:83.145333pt;}
.x2{left:90.704400pt;}
.x24{left:97.471467pt;}
.x2d{left:139.105467pt;}
.x25{left:141.185733pt;}
.x26{left:147.130800pt;}
.x9{left:148.076000pt;}
.x21{left:151.738667pt;}
.x1d{left:152.786667pt;}
.x30{left:154.640133pt;}
.x2f{left:166.988933pt;}
.xb{left:172.947067pt;}
.xd{left:175.745333pt;}
.x27{left:186.998267pt;}
.x28{left:192.943467pt;}
.x2c{left:202.104133pt;}
.xf{left:211.644000pt;}
.x29{left:223.271467pt;}
.x2a{left:229.216533pt;}
.x11{left:261.333333pt;}
.x12{left:310.992000pt;}
.x32{left:314.492800pt;}
.x33{left:325.486133pt;}
.x14{left:352.394667pt;}
.x15{left:367.898667pt;}
.x1f{left:378.506667pt;}
.x16{left:386.782667pt;}
.x18{left:404.037333pt;}
.x19{left:420.589333pt;}
.x1b{left:430.498667pt;}
.x8{left:487.658133pt;}
}




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