
    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_11be2e38763390e00a6caa23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_b150a6a5d040214f619b931e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_48e13f6c049a8f9b7c413fbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_8679407d1d95e8f1571012a1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7524a83db9b917a7eb69030.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_18705c11dc5c46a73c6aef2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_8aa5a4a246ecc91caf782c64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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_08624e0d76836c80380eb78e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f7f639aee8e8c1d465cc67f4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_044265268476cd7c2a45b95c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0400858be062beda7635ebbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_06d22e76a4b157abd6d261d6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5ed2fbe3e4b6d1e45f21bf5e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.883000;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_daeb43d1a1862bacb48960d2.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_0e156b5ccca0bfef85abc185.woff2')format("woff");}.fff{font-family:fff;line-height:0.901000;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_dec4345ee996527aa0b8249f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.431000;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_8862183f5e855fceb6ae6590.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4b13d59b3c1ce8b83e39eec7.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_ba2dd6f30e4a778428d3a913.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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_6bc623981135f01040cfdc37.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.877000;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_1512b1d70cfb5c55540f6f74.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_13abb625d1e95f43ad69a191.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.683000;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_a8247b224a726c91a5433137.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.726000;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_d0168a82c3a0f46d08933340.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_104c4d075d6be4c0b9043bc8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.917000;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;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m18{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.v3{vertical-align:-22.854000px;}
.v2{vertical-align:-12.912000px;}
.v6{vertical-align:-9.822000px;}
.v11{vertical-align:-6.408168px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.988000px;}
.v1{vertical-align:6.456000px;}
.v10{vertical-align:14.778000px;}
.vf{vertical-align:16.182000px;}
.v4{vertical-align:18.960000px;}
.va{vertical-align:23.754000px;}
.v7{vertical-align:27.024000px;}
.vd{vertical-align:35.076000px;}
.vb{vertical-align:44.280000px;}
.v9{vertical-align:46.872000px;}
.v8{vertical-align:58.206000px;}
.vc{vertical-align:68.034000px;}
.ve{vertical-align:89.178000px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.001590px;}
.ls31{letter-spacing:0.001597px;}
.ls63{letter-spacing:0.002335px;}
.ls2c{letter-spacing:0.002706px;}
.ls25{letter-spacing:0.004338px;}
.ls3b{letter-spacing:0.004379px;}
.lsc{letter-spacing:0.005909px;}
.ls3a{letter-spacing:0.006871px;}
.ls4b{letter-spacing:0.009670px;}
.ls4d{letter-spacing:0.010039px;}
.ls38{letter-spacing:0.010159px;}
.ls5e{letter-spacing:0.010794px;}
.ls54{letter-spacing:0.011088px;}
.ls5c{letter-spacing:0.012087px;}
.ls40{letter-spacing:0.013051px;}
.ls69{letter-spacing:0.013863px;}
.ls6c{letter-spacing:0.015049px;}
.ls65{letter-spacing:0.015167px;}
.ls68{letter-spacing:0.018211px;}
.ls52{letter-spacing:0.018574px;}
.lsa{letter-spacing:0.024427px;}
.ls3f{letter-spacing:0.298878px;}
.ls37{letter-spacing:0.327273px;}
.ls60{letter-spacing:2.135066px;}
.ls5a{letter-spacing:2.138092px;}
.ls5f{letter-spacing:2.139421px;}
.ls44{letter-spacing:2.356366px;}
.lse{letter-spacing:2.966965px;}
.ls1b{letter-spacing:2.984915px;}
.ls51{letter-spacing:2.988710px;}
.ls12{letter-spacing:2.991543px;}
.ls62{letter-spacing:4.072160px;}
.ls17{letter-spacing:4.112572px;}
.lsd{letter-spacing:4.160392px;}
.ls6a{letter-spacing:4.656924px;}
.ls70{letter-spacing:5.105459px;}
.ls49{letter-spacing:5.320028px;}
.ls6{letter-spacing:5.825459px;}
.ls10{letter-spacing:5.890914px;}
.ls41{letter-spacing:6.241481px;}
.ls3d{letter-spacing:6.518651px;}
.ls34{letter-spacing:6.719578px;}
.ls2b{letter-spacing:7.118208px;}
.ls1c{letter-spacing:7.124208px;}
.ls58{letter-spacing:9.480219px;}
.ls18{letter-spacing:10.184786px;}
.ls45{letter-spacing:10.930918px;}
.ls57{letter-spacing:11.627833px;}
.ls56{letter-spacing:11.871625px;}
.ls67{letter-spacing:14.220328px;}
.lsb{letter-spacing:14.530921px;}
.ls55{letter-spacing:15.224007px;}
.ls53{letter-spacing:16.372878px;}
.ls42{letter-spacing:16.617617px;}
.ls2e{letter-spacing:17.528915px;}
.ls32{letter-spacing:17.534915px;}
.ls5d{letter-spacing:17.860783px;}
.ls24{letter-spacing:18.032208px;}
.ls6d{letter-spacing:18.130924px;}
.ls9{letter-spacing:18.179412px;}
.ls5{letter-spacing:18.196379px;}
.ls8{letter-spacing:18.210427px;}
.ls28{letter-spacing:18.589106px;}
.ls29{letter-spacing:18.654561px;}
.ls1f{letter-spacing:18.916379px;}
.ls19{letter-spacing:18.981834px;}
.ls59{letter-spacing:19.214761px;}
.ls3c{letter-spacing:19.590710px;}
.ls3e{letter-spacing:19.596710px;}
.ls50{letter-spacing:19.905275px;}
.ls23{letter-spacing:21.169739px;}
.ls36{letter-spacing:21.170915px;}
.ls33{letter-spacing:21.172059px;}
.ls21{letter-spacing:21.272745px;}
.ls4{letter-spacing:21.419468px;}
.ls15{letter-spacing:21.600018px;}
.ls2d{letter-spacing:21.668208px;}
.ls2f{letter-spacing:21.719412px;}
.ls11{letter-spacing:21.796382px;}
.ls7{letter-spacing:21.861836px;}
.lsf{letter-spacing:22.058200px;}
.ls1e{letter-spacing:22.189109px;}
.ls6f{letter-spacing:22.778201px;}
.ls4f{letter-spacing:22.914710px;}
.ls22{letter-spacing:23.301838px;}
.ls2a{letter-spacing:23.629111px;}
.ls48{letter-spacing:23.890929px;}
.ls46{letter-spacing:24.152747px;}
.ls6e{letter-spacing:24.800915px;}
.ls14{letter-spacing:27.621841px;}
.ls20{letter-spacing:28.940208px;}
.ls27{letter-spacing:29.454570px;}
.ls43{letter-spacing:29.650934px;}
.ls1d{letter-spacing:29.716388px;}
.ls39{letter-spacing:29.847298px;}
.ls13{letter-spacing:29.912752px;}
.ls47{letter-spacing:30.109116px;}
.ls30{letter-spacing:31.256700px;}
.ls16{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls6b{letter-spacing:121.904046px;}
.ls64{letter-spacing:138.055201px;}
.ls5b{letter-spacing:173.538020px;}
.ls61{letter-spacing:285.602270px;}
.ls66{letter-spacing:285.695963px;}
.ls35{letter-spacing:323.672997px;}
.ls0{letter-spacing:345.347589px;}
.ls4a{letter-spacing:416.404687px;}
.ls4e{letter-spacing:419.398362px;}
.ls4c{letter-spacing:422.930651px;}
.ls26{letter-spacing:699.971492px;}
.ls3{letter-spacing:1956.241630px;}
.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;}
}
.ws38{word-spacing:-65.454600px;}
.ws54{word-spacing:-54.589136px;}
.ws46{word-spacing:-47.323676px;}
.ws47{word-spacing:-47.258221px;}
.ws2b{word-spacing:-42.637126px;}
.ws57{word-spacing:-38.937826px;}
.ws51{word-spacing:-33.453846px;}
.ws48{word-spacing:-32.727300px;}
.ws2c{word-spacing:-31.771663px;}
.ws29{word-spacing:-31.706208px;}
.ws7f{word-spacing:-30.551309px;}
.ws69{word-spacing:-29.887800px;}
.ws5a{word-spacing:-29.015076px;}
.ws59{word-spacing:-28.955301px;}
.ws6d{word-spacing:-27.817183px;}
.ws18{word-spacing:-27.646998px;}
.ws4b{word-spacing:-24.506202px;}
.ws70{word-spacing:-20.685667px;}
.ws28{word-spacing:-18.183288px;}
.ws68{word-spacing:-16.605662px;}
.ws0{word-spacing:-16.139475px;}
.ws7c{word-spacing:-14.405920px;}
.ws42{word-spacing:-13.876375px;}
.ws43{word-spacing:-13.810921px;}
.ws36{word-spacing:-13.745466px;}
.ws3{word-spacing:-13.449600px;}
.ws4c{word-spacing:-12.698192px;}
.ws2d{word-spacing:-12.501829px;}
.ws1d{word-spacing:-12.436374px;}
.ws61{word-spacing:-12.370919px;}
.ws5e{word-spacing:-12.240010px;}
.ws53{word-spacing:-12.174556px;}
.ws6f{word-spacing:-11.863085px;}
.ws5c{word-spacing:-11.781828px;}
.ws1b{word-spacing:-11.476915px;}
.ws44{word-spacing:-11.454555px;}
.ws45{word-spacing:-11.389100px;}
.ws75{word-spacing:-11.323646px;}
.ws1c{word-spacing:-11.258191px;}
.ws73{word-spacing:-11.192737px;}
.ws30{word-spacing:-11.127282px;}
.ws1e{word-spacing:-11.061827px;}
.ws23{word-spacing:-10.996373px;}
.ws15{word-spacing:-10.930918px;}
.ws17{word-spacing:-10.865464px;}
.ws39{word-spacing:-10.800009px;}
.ws3b{word-spacing:-10.734554px;}
.ws26{word-spacing:-10.669100px;}
.ws37{word-spacing:-10.603645px;}
.ws7b{word-spacing:-10.586259px;}
.ws3f{word-spacing:-10.538191px;}
.ws3c{word-spacing:-10.472736px;}
.ws4d{word-spacing:-10.282918px;}
.ws4e{word-spacing:-10.217463px;}
.ws11{word-spacing:-10.161852px;}
.wsb{word-spacing:-10.102076px;}
.ws60{word-spacing:-10.080008px;}
.ws2e{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws20{word-spacing:-9.949099px;}
.ws6b{word-spacing:-9.922750px;}
.ws62{word-spacing:-9.890190px;}
.ws7d{word-spacing:-9.862974px;}
.ws27{word-spacing:-9.824735px;}
.ws72{word-spacing:-9.803198px;}
.ws50{word-spacing:-9.759281px;}
.ws3d{word-spacing:-9.752735px;}
.wsf{word-spacing:-9.743423px;}
.ws63{word-spacing:-9.693826px;}
.ws66{word-spacing:-9.687281px;}
.wse{word-spacing:-9.623872px;}
.ws78{word-spacing:-9.504320px;}
.ws6{word-spacing:-9.247945px;}
.ws1f{word-spacing:-9.235644px;}
.ws5{word-spacing:-9.194147px;}
.ws7a{word-spacing:-9.151644px;}
.ws56{word-spacing:-9.098189px;}
.ws67{word-spacing:-8.836371px;}
.ws79{word-spacing:-8.792991px;}
.ws5f{word-spacing:-8.581098px;}
.ws41{word-spacing:-8.181825px;}
.ws76{word-spacing:-8.129482px;}
.ws21{word-spacing:-8.116370px;}
.wsc{word-spacing:-7.950155px;}
.ws35{word-spacing:-7.861097px;}
.ws5b{word-spacing:-7.770828px;}
.wsd{word-spacing:-7.651277px;}
.ws77{word-spacing:-7.597479px;}
.ws22{word-spacing:-7.468370px;}
.ws74{word-spacing:-7.200006px;}
.ws6c{word-spacing:-7.131516px;}
.ws6e{word-spacing:-7.088812px;}
.ws64{word-spacing:-6.021823px;}
.ws65{word-spacing:-5.956369px;}
.wsa{word-spacing:-5.027128px;}
.ws7e{word-spacing:-4.901599px;}
.ws34{word-spacing:-4.712731px;}
.ws80{word-spacing:-3.825638px;}
.ws81{word-spacing:-3.532738px;}
.ws52{word-spacing:-3.338185px;}
.ws3e{word-spacing:-3.010912px;}
.ws71{word-spacing:-2.869229px;}
.ws13{word-spacing:-2.814548px;}
.ws31{word-spacing:-0.183273px;}
.ws2{word-spacing:-0.086077px;}
.ws5d{word-spacing:-0.052364px;}
.ws25{word-spacing:-0.047821px;}
.ws2a{word-spacing:-0.020963px;}
.ws7{word-spacing:0.000000px;}
.ws58{word-spacing:0.011955px;}
.ws19{word-spacing:0.013091px;}
.ws32{word-spacing:0.078546px;}
.ws4f{word-spacing:0.209455px;}
.ws3a{word-spacing:0.602182px;}
.ws14{word-spacing:1.440001px;}
.ws8{word-spacing:2.683639px;}
.ws10{word-spacing:3.658267px;}
.ws40{word-spacing:4.987641px;}
.ws4a{word-spacing:6.673496px;}
.ws12{word-spacing:7.920007px;}
.ws9{word-spacing:11.429123px;}
.ws2f{word-spacing:13.843890px;}
.ws33{word-spacing:13.849890px;}
.ws24{word-spacing:17.487499px;}
.ws49{word-spacing:17.578552px;}
.ws6a{word-spacing:19.546060px;}
.ws1{word-spacing:23.384371px;}
.ws55{word-spacing:99.137537px;}
.ws16{word-spacing:1766.292381px;}
.ws1a{word-spacing:2229.132812px;}
._1{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._7{margin-left:-4.519066px;}
._0{margin-left:-2.668393px;}
._5{margin-left:-1.560154px;}
._6{width:1.398758px;}
._2{width:2.668393px;}
._1c{width:4.304758px;}
._20{width:5.539429px;}
._2c{width:16.250222px;}
._2a{width:17.403222px;}
._4{width:20.959727px;}
._17{width:22.501137px;}
._1b{width:23.907871px;}
._1a{width:25.638938px;}
._8{width:27.288818px;}
._1e{width:28.407296px;}
._18{width:29.641978px;}
._21{width:30.698207px;}
._a{width:33.235234px;}
._9{width:34.989061px;}
._22{width:36.095971px;}
._2e{width:49.376873px;}
._1d{width:53.124934px;}
._19{width:64.787507px;}
._16{width:68.741940px;}
._29{width:74.229474px;}
._2d{width:76.396899px;}
._26{width:96.319639px;}
._28{width:102.531556px;}
._2b{width:125.046864px;}
._1f{width:141.820796px;}
._23{width:209.868747px;}
._27{width:303.025375px;}
._24{width:319.210073px;}
._25{width:532.909794px;}
._10{width:1160.982055px;}
._11{width:1200.181295px;}
._12{width:1306.802356px;}
._d{width:1318.115239px;}
._e{width:1347.012994px;}
._c{width:1359.351637px;}
._15{width:1371.089530px;}
._13{width:1474.420824px;}
._f{width:1753.052090px;}
._14{width:1775.961200px;}
._b{width:1923.234050px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.892496px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs8{font-size:42.703689px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y46{bottom:160.314000px;}
.y2b{bottom:173.425500px;}
.y45{bottom:190.800000px;}
.y5d{bottom:197.904000px;}
.y5b{bottom:199.428000px;}
.ya6{bottom:202.984500px;}
.y5a{bottom:209.622000px;}
.y2a{bottom:212.139000px;}
.y5c{bottom:220.692000px;}
.y73{bottom:221.286000px;}
.yd4{bottom:223.476000px;}
.y44{bottom:229.630500px;}
.y43{bottom:230.377500px;}
.y8d{bottom:230.860500px;}
.ya5{bottom:233.470500px;}
.y72{bottom:251.770500px;}
.yd3{bottom:253.962000px;}
.y59{bottom:258.334500px;}
.y29{bottom:258.987000px;}
.ye{bottom:259.473000px;}
.ya4{bottom:263.956500px;}
.y42{bottom:269.955000px;}
.y8c{bottom:270.919500px;}
.y71{bottom:282.256500px;}
.yb9{bottom:283.758000px;}
.yd2{bottom:286.638000px;}
.yd{bottom:287.119500px;}
.y41{bottom:300.439500px;}
.y8b{bottom:301.405500px;}
.ya3{bottom:305.133000px;}
.y28{bottom:305.836500px;}
.y58{bottom:306.744000px;}
.y70{bottom:312.742500px;}
.yb8{bottom:314.244000px;}
.yc{bottom:314.766000px;}
.yd1{bottom:317.124000px;}
.y89{bottom:330.241500px;}
.ya2{bottom:335.617500px;}
.y8a{bottom:337.420500px;}
.y88{bottom:341.466000px;}
.yb{bottom:342.412500px;}
.y6f{bottom:343.228500px;}
.y40{bottom:352.185000px;}
.y27{bottom:352.686000px;}
.y57{bottom:355.153500px;}
.ye6{bottom:356.190000px;}
.ya1{bottom:366.103500px;}
.yb7{bottom:367.489500px;}
.ya{bottom:370.059000px;}
.y87{bottom:381.526500px;}
.yd0{bottom:382.374000px;}
.ye5{bottom:383.089500px;}
.y6e{bottom:394.974000px;}
.y26{bottom:399.535500px;}
.y56{bottom:403.564500px;}
.ye4{bottom:409.987500px;}
.y3f{bottom:411.946500px;}
.ycf{bottom:412.860000px;}
.ya0{bottom:417.849000px;}
.y86{bottom:433.272000px;}
.ye3{bottom:436.887000px;}
.y3e{bottom:442.432500px;}
.y25{bottom:446.385000px;}
.y55{bottom:451.974000px;}
.y6d{bottom:455.719500px;}
.ye2{bottom:463.786500px;}
.yb6{bottom:468.301500px;}
.yce{bottom:469.243500px;}
.y3d{bottom:472.917000px;}
.y6c{bottom:486.205500px;}
.ye1{bottom:490.686000px;}
.y9{bottom:491.260500px;}
.y85{bottom:493.107000px;}
.y24{bottom:493.234500px;}
.yb5{bottom:495.201000px;}
.y9f{bottom:495.988500px;}
.ycd{bottom:499.729500px;}
.y54{bottom:500.383500px;}
.y3c{bottom:503.403000px;}
.ye0{bottom:517.584000px;}
.y9e{bottom:522.888000px;}
.y84{bottom:523.593000px;}
.y6b{bottom:530.559000px;}
.y53{bottom:530.869500px;}
.y3b{bottom:533.889000px;}
.yb3{bottom:542.323500px;}
.y8{bottom:543.672000px;}
.ydf{bottom:544.483500px;}
.y23{bottom:544.980000px;}
.ycc{bottom:556.113000px;}
.y83{bottom:562.159500px;}
.y3a{bottom:564.375000px;}
.yb2{bottom:569.223000px;}
.y9b{bottom:569.712000px;}
.y7{bottom:570.570000px;}
.yde{bottom:571.383000px;}
.y6a{bottom:575.631000px;}
.y9a{bottom:575.689500px;}
.y52{bottom:579.582000px;}
.y99{bottom:581.667000px;}
.yb4{bottom:585.856500px;}
.ycb{bottom:586.599000px;}
.y82{bottom:592.645500px;}
.y39{bottom:594.861000px;}
.y6{bottom:597.469500px;}
.ydd{bottom:598.282500px;}
.y22{bottom:605.644500px;}
.y69{bottom:620.701500px;}
.y38{bottom:625.345500px;}
.y51{bottom:628.294500px;}
.y81{bottom:631.210500px;}
.y21{bottom:636.129000px;}
.y98{bottom:641.079000px;}
.yca{bottom:642.982500px;}
.yaf{bottom:643.590000px;}
.y97{bottom:644.773500px;}
.y37{bottom:655.831500px;}
.y80{bottom:659.241000px;}
.y7f{bottom:661.696500px;}
.y68{bottom:665.056500px;}
.y20{bottom:666.615000px;}
.yc9{bottom:673.468500px;}
.y50{bottom:680.635500px;}
.y36{bottom:686.317500px;}
.y7e{bottom:692.182500px;}
.y67{bottom:695.542500px;}
.y9d{bottom:695.817000px;}
.ydc{bottom:707.373000px;}
.y96{bottom:710.677500px;}
.y35{bottom:716.803500px;}
.yb1{bottom:717.378000px;}
.y9c{bottom:722.715000px;}
.y1f{bottom:724.000500px;}
.y7d{bottom:732.241500px;}
.ydb{bottom:737.859000px;}
.yc8{bottom:738.718500px;}
.yb0{bottom:744.276000px;}
.y4f{bottom:744.957000px;}
.y66{bottom:747.288000px;}
.y34{bottom:747.289500px;}
.y5{bottom:748.551000px;}
.y1e{bottom:750.900000px;}
.yc7{bottom:771.394500px;}
.y7c{bottom:772.302000px;}
.y95{bottom:774.448500px;}
.y1d{bottom:777.798000px;}
.yda{bottom:783.288000px;}
.y4e{bottom:793.668000px;}
.y33{bottom:799.033500px;}
.yc6{bottom:801.880500px;}
.y1c{bottom:804.697500px;}
.yae{bottom:807.724500px;}
.y65{bottom:808.033500px;}
.y7b{bottom:810.867000px;}
.yd9{bottom:813.774000px;}
.y1b{bottom:831.597000px;}
.yc5{bottom:832.366500px;}
.y94{bottom:836.724000px;}
.yad{bottom:838.209000px;}
.y64{bottom:838.519500px;}
.y4d{bottom:842.380500px;}
.yd8{bottom:844.260000px;}
.y7a{bottom:854.010000px;}
.y1a{bottom:858.496500px;}
.y32{bottom:858.795000px;}
.y63{bottom:869.004000px;}
.yd7{bottom:874.746000px;}
.y93{bottom:884.173500px;}
.y79{bottom:884.494500px;}
.y19{bottom:885.394500px;}
.yc4{bottom:886.302000px;}
.y4c{bottom:890.790000px;}
.yac{bottom:891.144000px;}
.y4{bottom:902.547000px;}
.yd6{bottom:905.230500px;}
.y31{bottom:905.644500px;}
.y18{bottom:912.294000px;}
.y62{bottom:914.853000px;}
.yab{bottom:921.630000px;}
.y4b{bottom:921.873000px;}
.y78{bottom:927.636000px;}
.y92{bottom:928.185000px;}
.y3{bottom:933.928500px;}
.yd5{bottom:935.716500px;}
.yc3{bottom:938.505000px;}
.y17{bottom:939.193500px;}
.y30{bottom:952.494000px;}
.y4a{bottom:957.685500px;}
.y61{bottom:960.702000px;}
.yc2{bottom:965.404500px;}
.y16{bottom:966.093000px;}
.y77{bottom:966.202500px;}
.y91{bottom:972.198000px;}
.y49{bottom:974.515500px;}
.yaa{bottom:974.557500px;}
.yc1{bottom:992.304000px;}
.y15{bottom:992.991000px;}
.y76{bottom:996.688500px;}
.y2f{bottom:999.342000px;}
.y2{bottom:999.790500px;}
.y60{bottom:1009.180500px;}
.y90{bottom:1013.373000px;}
.y14{bottom:1019.890500px;}
.y48{bottom:1023.228000px;}
.yc0{bottom:1025.228341px;}
.ya9{bottom:1025.985000px;}
.y75{bottom:1027.174500px;}
.y5f{bottom:1039.666500px;}
.y1{bottom:1040.139000px;}
.ybf{bottom:1044.445344px;}
.y2e{bottom:1046.191500px;}
.y8f{bottom:1054.549500px;}
.ya8{bottom:1056.471000px;}
.y74{bottom:1057.659000px;}
.y13{bottom:1058.595000px;}
.ybe{bottom:1063.661275px;}
.y12{bottom:1064.019000px;}
.y47{bottom:1075.569000px;}
.ybd{bottom:1082.878278px;}
.ya7{bottom:1086.955500px;}
.y5e{bottom:1088.145000px;}
.y10{bottom:1090.725000px;}
.y2d{bottom:1093.041000px;}
.y11{bottom:1096.663500px;}
.y8e{bottom:1097.220000px;}
.ybc{bottom:1102.095281px;}
.ybb{bottom:1121.312284px;}
.yf{bottom:1139.890500px;}
.yba{bottom:1140.955783px;}
.y2c{bottom:1192.194000px;}
.he{height:16.677504px;}
.ha{height:27.783619px;}
.h1f{height:32.027766px;}
.h12{height:32.661470px;}
.h20{height:35.348240px;}
.h9{height:35.865450px;}
.h7{height:37.927872px;}
.hd{height:41.842920px;}
.hc{height:42.082022px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.h1e{height:44.999700px;}
.h21{height:46.080038px;}
.h16{height:46.865494px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h1b{height:54.183619px;}
.h11{height:58.206000px;}
.h1c{height:59.609700px;}
.h14{height:59.619450px;}
.h2{height:60.254040px;}
.h15{height:60.695702px;}
.h1d{height:62.889450px;}
.h1a{height:65.272950px;}
.h10{height:65.877450px;}
.h4{height:67.226503px;}
.hf{height:68.050950px;}
.h13{height:95.962950px;}
.h17{height:103.899450px;}
.h19{height:104.583470px;}
.h18{height:148.797450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x19{left:108.000000px;}
.x1f{left:110.739000px;}
.x1e{left:114.363000px;}
.x94{left:115.558500px;}
.x1d{left:120.273000px;}
.x1c{left:126.636000px;}
.x16{left:130.416000px;}
.xa4{left:131.869500px;}
.x1b{left:132.999000px;}
.x21{left:150.178500px;}
.x40{left:152.832000px;}
.xb{left:157.849500px;}
.x53{left:159.232500px;}
.x26{left:160.300500px;}
.x11{left:168.979500px;}
.x10{left:173.754000px;}
.x1{left:177.157500px;}
.x54{left:186.967500px;}
.x7f{left:193.258500px;}
.x98{left:195.835500px;}
.x27{left:196.854000px;}
.xa0{left:198.639000px;}
.x7b{left:199.855500px;}
.x3f{left:210.190500px;}
.x2{left:211.674000px;}
.xe{left:214.422000px;}
.x2a{left:217.594500px;}
.xf{left:221.125500px;}
.x4f{left:229.503000px;}
.x7c{left:230.635500px;}
.x2b{left:232.821000px;}
.x5b{left:237.678000px;}
.x2c{left:239.133000px;}
.x50{left:240.639000px;}
.x51{left:247.129500px;}
.x2d{left:249.234000px;}
.x5c{left:251.254500px;}
.x9f{left:258.004500px;}
.x4a{left:270.994500px;}
.x52{left:272.173500px;}
.x3{left:274.819500px;}
.x61{left:283.411500px;}
.x84{left:284.473500px;}
.x85{left:293.251500px;}
.x62{left:294.547500px;}
.x83{left:298.344000px;}
.x30{left:301.399500px;}
.x64{left:311.070000px;}
.x6b{left:317.259000px;}
.x22{left:318.513000px;}
.x25{left:324.967500px;}
.x7{left:329.793000px;}
.x82{left:331.285500px;}
.x68{left:337.440000px;}
.x87{left:339.457500px;}
.x4{left:343.336500px;}
.x86{left:346.335000px;}
.x5d{left:347.578500px;}
.x8e{left:349.947000px;}
.x6c{left:351.699000px;}
.x6d{left:364.324500px;}
.x28{left:367.434000px;}
.x65{left:371.467500px;}
.x41{left:372.762000px;}
.x5e{left:375.937500px;}
.x66{left:377.703000px;}
.x6{left:381.384000px;}
.xc{left:382.602000px;}
.x42{left:383.898000px;}
.x6e{left:386.412000px;}
.x12{left:387.609000px;}
.x43{left:390.231000px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x13{left:399.232500px;}
.x3c{left:400.441500px;}
.x3b{left:401.481000px;}
.x67{left:402.747000px;}
.x29{left:407.535000px;}
.x1a{left:409.203000px;}
.x9{left:414.060000px;}
.x44{left:415.273500px;}
.x6f{left:427.411500px;}
.x3e{left:429.889500px;}
.x3d{left:444.790500px;}
.x45{left:446.961000px;}
.x7d{left:450.132000px;}
.x31{left:458.194500px;}
.x70{left:461.851500px;}
.x71{left:468.165000px;}
.x63{left:472.542000px;}
.x32{left:473.665500px;}
.x14{left:476.938500px;}
.xa1{left:480.082500px;}
.x33{left:481.818000px;}
.x8f{left:487.213500px;}
.x15{left:489.115500px;}
.x72{left:490.252500px;}
.x34{left:492.955500px;}
.x46{left:495.235500px;}
.x35{left:499.395000px;}
.x47{left:506.371500px;}
.x2e{left:507.400500px;}
.xd{left:511.759500px;}
.x88{left:519.703500px;}
.xa2{left:521.772000px;}
.x2f{left:522.967500px;}
.x36{left:524.439000px;}
.xa3{left:531.942000px;}
.x48{left:537.651000px;}
.x73{left:540.325500px;}
.x69{left:551.736000px;}
.x37{left:556.524000px;}
.x78{left:560.254500px;}
.x74{left:562.413000px;}
.x38{left:568.753500px;}
.x79{left:571.392000px;}
.x7a{left:577.806000px;}
.x75{left:581.212500px;}
.x4b{left:589.686000px;}
.x6a{left:591.441000px;}
.x5f{left:592.459500px;}
.x4c{left:602.142000px;}
.x60{left:621.036000px;}
.x7e{left:633.253500px;}
.x8b{left:638.845500px;}
.x55{left:643.911000px;}
.x8a{left:645.489000px;}
.x80{left:650.790000px;}
.x17{left:653.778000px;}
.x56{left:655.047000px;}
.x49{left:657.973500px;}
.x8c{left:663.498000px;}
.x18{left:664.915500px;}
.x93{left:670.296000px;}
.x23{left:672.867000px;}
.x81{left:679.123500px;}
.x8d{left:681.606000px;}
.x24{left:684.003000px;}
.x91{left:694.425000px;}
.x89{left:695.581500px;}
.x92{left:698.460000px;}
.x90{left:706.866000px;}
.x95{left:721.096500px;}
.x57{left:723.286500px;}
.x4d{left:730.869000px;}
.x58{left:734.422500px;}
.x99{left:738.901500px;}
.x59{left:740.659500px;}
.x4e{left:742.005000px;}
.x96{left:745.324500px;}
.x9a{left:749.001000px;}
.x9b{left:755.269500px;}
.x5a{left:765.702000px;}
.x9c{left:767.997000px;}
.x76{left:772.356000px;}
.x9d{left:777.897000px;}
.x97{left:791.013000px;}
.x39{left:794.952000px;}
.x20{left:799.195500px;}
.x77{left:800.755500px;}
.x3a{left:805.051500px;}
.x9e{left:806.074500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-11.477333pt;}
.v6{vertical-align:-8.730667pt;}
.v11{vertical-align:-5.696149pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.656000pt;}
.v1{vertical-align:5.738667pt;}
.v10{vertical-align:13.136000pt;}
.vf{vertical-align:14.384000pt;}
.v4{vertical-align:16.853333pt;}
.va{vertical-align:21.114667pt;}
.v7{vertical-align:24.021333pt;}
.vd{vertical-align:31.178667pt;}
.vb{vertical-align:39.360000pt;}
.v9{vertical-align:41.664000pt;}
.v8{vertical-align:51.738667pt;}
.vc{vertical-align:60.474667pt;}
.ve{vertical-align:79.269333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.001414pt;}
.ls31{letter-spacing:0.001420pt;}
.ls63{letter-spacing:0.002076pt;}
.ls2c{letter-spacing:0.002405pt;}
.ls25{letter-spacing:0.003856pt;}
.ls3b{letter-spacing:0.003892pt;}
.lsc{letter-spacing:0.005253pt;}
.ls3a{letter-spacing:0.006108pt;}
.ls4b{letter-spacing:0.008596pt;}
.ls4d{letter-spacing:0.008923pt;}
.ls38{letter-spacing:0.009030pt;}
.ls5e{letter-spacing:0.009595pt;}
.ls54{letter-spacing:0.009856pt;}
.ls5c{letter-spacing:0.010744pt;}
.ls40{letter-spacing:0.011601pt;}
.ls69{letter-spacing:0.012322pt;}
.ls6c{letter-spacing:0.013376pt;}
.ls65{letter-spacing:0.013482pt;}
.ls68{letter-spacing:0.016188pt;}
.ls52{letter-spacing:0.016510pt;}
.lsa{letter-spacing:0.021713pt;}
.ls3f{letter-spacing:0.265669pt;}
.ls37{letter-spacing:0.290909pt;}
.ls60{letter-spacing:1.897837pt;}
.ls5a{letter-spacing:1.900527pt;}
.ls5f{letter-spacing:1.901707pt;}
.ls44{letter-spacing:2.094547pt;}
.lse{letter-spacing:2.637302pt;}
.ls1b{letter-spacing:2.653258pt;}
.ls51{letter-spacing:2.656631pt;}
.ls12{letter-spacing:2.659149pt;}
.ls62{letter-spacing:3.619698pt;}
.ls17{letter-spacing:3.655619pt;}
.lsd{letter-spacing:3.698126pt;}
.ls6a{letter-spacing:4.139488pt;}
.ls70{letter-spacing:4.538186pt;}
.ls49{letter-spacing:4.728914pt;}
.ls6{letter-spacing:5.178186pt;}
.ls10{letter-spacing:5.236368pt;}
.ls41{letter-spacing:5.547983pt;}
.ls3d{letter-spacing:5.794356pt;}
.ls34{letter-spacing:5.972958pt;}
.ls2b{letter-spacing:6.327296pt;}
.ls1c{letter-spacing:6.332629pt;}
.ls58{letter-spacing:8.426861pt;}
.ls18{letter-spacing:9.053143pt;}
.ls45{letter-spacing:9.716372pt;}
.ls57{letter-spacing:10.335852pt;}
.ls56{letter-spacing:10.552556pt;}
.ls67{letter-spacing:12.640292pt;}
.lsb{letter-spacing:12.916374pt;}
.ls55{letter-spacing:13.532450pt;}
.ls53{letter-spacing:14.553669pt;}
.ls42{letter-spacing:14.771215pt;}
.ls2e{letter-spacing:15.581258pt;}
.ls32{letter-spacing:15.586591pt;}
.ls5d{letter-spacing:15.876251pt;}
.ls24{letter-spacing:16.028629pt;}
.ls6d{letter-spacing:16.116377pt;}
.ls9{letter-spacing:16.159477pt;}
.ls5{letter-spacing:16.174559pt;}
.ls8{letter-spacing:16.187046pt;}
.ls28{letter-spacing:16.523650pt;}
.ls29{letter-spacing:16.581832pt;}
.ls1f{letter-spacing:16.814559pt;}
.ls19{letter-spacing:16.872741pt;}
.ls59{letter-spacing:17.079788pt;}
.ls3c{letter-spacing:17.413964pt;}
.ls3e{letter-spacing:17.419297pt;}
.ls50{letter-spacing:17.693578pt;}
.ls23{letter-spacing:18.817546pt;}
.ls36{letter-spacing:18.818591pt;}
.ls33{letter-spacing:18.819608pt;}
.ls21{letter-spacing:18.909107pt;}
.ls4{letter-spacing:19.039527pt;}
.ls15{letter-spacing:19.200016pt;}
.ls2d{letter-spacing:19.260629pt;}
.ls2f{letter-spacing:19.306144pt;}
.ls11{letter-spacing:19.374562pt;}
.ls7{letter-spacing:19.432743pt;}
.lsf{letter-spacing:19.607289pt;}
.ls1e{letter-spacing:19.723653pt;}
.ls6f{letter-spacing:20.247290pt;}
.ls4f{letter-spacing:20.368631pt;}
.ls22{letter-spacing:20.712745pt;}
.ls2a{letter-spacing:21.003654pt;}
.ls48{letter-spacing:21.236381pt;}
.ls46{letter-spacing:21.469109pt;}
.ls6e{letter-spacing:22.045258pt;}
.ls14{letter-spacing:24.552748pt;}
.ls20{letter-spacing:25.724629pt;}
.ls27{letter-spacing:26.181840pt;}
.ls43{letter-spacing:26.356386pt;}
.ls1d{letter-spacing:26.414567pt;}
.ls39{letter-spacing:26.530931pt;}
.ls13{letter-spacing:26.589113pt;}
.ls47{letter-spacing:26.763659pt;}
.ls30{letter-spacing:27.783733pt;}
.ls16{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls6b{letter-spacing:108.359152pt;}
.ls64{letter-spacing:122.715734pt;}
.ls5b{letter-spacing:154.256018pt;}
.ls61{letter-spacing:253.868684pt;}
.ls66{letter-spacing:253.951967pt;}
.ls35{letter-spacing:287.709331pt;}
.ls0{letter-spacing:306.975635pt;}
.ls4a{letter-spacing:370.137499pt;}
.ls4e{letter-spacing:372.798544pt;}
.ls4c{letter-spacing:375.938356pt;}
.ls26{letter-spacing:622.196882pt;}
.ls3{letter-spacing:1738.881449pt;}
.ws38{word-spacing:-58.181867pt;}
.ws54{word-spacing:-48.523677pt;}
.ws46{word-spacing:-42.065490pt;}
.ws47{word-spacing:-42.007308pt;}
.ws2b{word-spacing:-37.899668pt;}
.ws57{word-spacing:-34.611401pt;}
.ws51{word-spacing:-29.736752pt;}
.ws48{word-spacing:-29.090933pt;}
.ws2c{word-spacing:-28.241478pt;}
.ws29{word-spacing:-28.183296pt;}
.ws7f{word-spacing:-27.156719pt;}
.ws69{word-spacing:-26.566933pt;}
.ws5a{word-spacing:-25.791179pt;}
.ws59{word-spacing:-25.738045pt;}
.ws6d{word-spacing:-24.726385pt;}
.ws18{word-spacing:-24.575109pt;}
.ws4b{word-spacing:-21.783291pt;}
.ws70{word-spacing:-18.387259pt;}
.ws28{word-spacing:-16.162923pt;}
.ws68{word-spacing:-14.760588pt;}
.ws0{word-spacing:-14.346200pt;}
.ws7c{word-spacing:-12.805262pt;}
.ws42{word-spacing:-12.334556pt;}
.ws43{word-spacing:-12.276374pt;}
.ws36{word-spacing:-12.218192pt;}
.ws3{word-spacing:-11.955200pt;}
.ws4c{word-spacing:-11.287282pt;}
.ws2d{word-spacing:-11.112737pt;}
.ws1d{word-spacing:-11.054555pt;}
.ws61{word-spacing:-10.996373pt;}
.ws5e{word-spacing:-10.880009pt;}
.ws53{word-spacing:-10.821827pt;}
.ws6f{word-spacing:-10.544964pt;}
.ws5c{word-spacing:-10.472736pt;}
.ws1b{word-spacing:-10.201702pt;}
.ws44{word-spacing:-10.181827pt;}
.ws45{word-spacing:-10.123645pt;}
.ws75{word-spacing:-10.065463pt;}
.ws1c{word-spacing:-10.007281pt;}
.ws73{word-spacing:-9.949099pt;}
.ws30{word-spacing:-9.890917pt;}
.ws1e{word-spacing:-9.832735pt;}
.ws23{word-spacing:-9.774554pt;}
.ws15{word-spacing:-9.716372pt;}
.ws17{word-spacing:-9.658190pt;}
.ws39{word-spacing:-9.600008pt;}
.ws3b{word-spacing:-9.541826pt;}
.ws26{word-spacing:-9.483644pt;}
.ws37{word-spacing:-9.425462pt;}
.ws7b{word-spacing:-9.410008pt;}
.ws3f{word-spacing:-9.367281pt;}
.ws3c{word-spacing:-9.309099pt;}
.ws4d{word-spacing:-9.140371pt;}
.ws4e{word-spacing:-9.082189pt;}
.ws11{word-spacing:-9.032757pt;}
.wsb{word-spacing:-8.979623pt;}
.ws60{word-spacing:-8.960007pt;}
.ws2e{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws20{word-spacing:-8.843644pt;}
.ws6b{word-spacing:-8.820222pt;}
.ws62{word-spacing:-8.791280pt;}
.ws7d{word-spacing:-8.767088pt;}
.ws27{word-spacing:-8.733098pt;}
.ws72{word-spacing:-8.713954pt;}
.ws50{word-spacing:-8.674916pt;}
.ws3d{word-spacing:-8.669098pt;}
.wsf{word-spacing:-8.660820pt;}
.ws63{word-spacing:-8.616734pt;}
.ws66{word-spacing:-8.610916pt;}
.wse{word-spacing:-8.554553pt;}
.ws78{word-spacing:-8.448285pt;}
.ws6{word-spacing:-8.220396pt;}
.ws1f{word-spacing:-8.209461pt;}
.ws5{word-spacing:-8.172575pt;}
.ws7a{word-spacing:-8.134795pt;}
.ws56{word-spacing:-8.087279pt;}
.ws67{word-spacing:-7.854552pt;}
.ws79{word-spacing:-7.815992pt;}
.ws5f{word-spacing:-7.627643pt;}
.ws41{word-spacing:-7.272733pt;}
.ws76{word-spacing:-7.226206pt;}
.ws21{word-spacing:-7.214551pt;}
.wsc{word-spacing:-7.066804pt;}
.ws35{word-spacing:-6.987642pt;}
.ws5b{word-spacing:-6.907403pt;}
.wsd{word-spacing:-6.801135pt;}
.ws77{word-spacing:-6.753314pt;}
.ws22{word-spacing:-6.638551pt;}
.ws74{word-spacing:-6.400005pt;}
.ws6c{word-spacing:-6.339125pt;}
.ws6e{word-spacing:-6.301167pt;}
.ws64{word-spacing:-5.352732pt;}
.ws65{word-spacing:-5.294550pt;}
.wsa{word-spacing:-4.468558pt;}
.ws7e{word-spacing:-4.356977pt;}
.ws34{word-spacing:-4.189094pt;}
.ws80{word-spacing:-3.400567pt;}
.ws81{word-spacing:-3.140212pt;}
.ws52{word-spacing:-2.967275pt;}
.ws3e{word-spacing:-2.676366pt;}
.ws71{word-spacing:-2.550426pt;}
.ws13{word-spacing:-2.501820pt;}
.ws31{word-spacing:-0.162909pt;}
.ws2{word-spacing:-0.076513pt;}
.ws5d{word-spacing:-0.046545pt;}
.ws25{word-spacing:-0.042507pt;}
.ws2a{word-spacing:-0.018634pt;}
.ws7{word-spacing:0.000000pt;}
.ws58{word-spacing:0.010627pt;}
.ws19{word-spacing:0.011636pt;}
.ws32{word-spacing:0.069818pt;}
.ws4f{word-spacing:0.186182pt;}
.ws3a{word-spacing:0.535273pt;}
.ws14{word-spacing:1.280001pt;}
.ws8{word-spacing:2.385457pt;}
.ws10{word-spacing:3.251793pt;}
.ws40{word-spacing:4.433458pt;}
.ws4a{word-spacing:5.931997pt;}
.ws12{word-spacing:7.040006pt;}
.ws9{word-spacing:10.159221pt;}
.ws2f{word-spacing:12.305680pt;}
.ws33{word-spacing:12.311013pt;}
.ws24{word-spacing:15.544443pt;}
.ws49{word-spacing:15.625380pt;}
.ws6a{word-spacing:17.374276pt;}
.ws1{word-spacing:20.786108pt;}
.ws55{word-spacing:88.122255pt;}
.ws16{word-spacing:1570.037672pt;}
.ws1a{word-spacing:1981.451389pt;}
._1{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._7{margin-left:-4.016947pt;}
._0{margin-left:-2.371905pt;}
._5{margin-left:-1.386803pt;}
._6{width:1.243341pt;}
._2{width:2.371905pt;}
._1c{width:3.826452pt;}
._20{width:4.923937pt;}
._2c{width:14.444642pt;}
._2a{width:15.469531pt;}
._4{width:18.630868pt;}
._17{width:20.001011pt;}
._1b{width:21.251441pt;}
._1a{width:22.790167pt;}
._8{width:24.256727pt;}
._1e{width:25.250930pt;}
._18{width:26.348425pt;}
._21{width:27.287295pt;}
._a{width:29.542430pt;}
._9{width:31.101388pt;}
._22{width:32.085307pt;}
._2e{width:43.890554pt;}
._1d{width:47.222164pt;}
._19{width:57.588895pt;}
._16{width:61.103947pt;}
._29{width:65.981755pt;}
._2d{width:67.908355pt;}
._26{width:85.617457pt;}
._28{width:91.139161pt;}
._2b{width:111.152768pt;}
._1f{width:126.062930pt;}
._23{width:186.549997pt;}
._27{width:269.355889pt;}
._24{width:283.742287pt;}
._25{width:473.697595pt;}
._10{width:1031.984049pt;}
._11{width:1066.827818pt;}
._12{width:1161.602094pt;}
._d{width:1171.657990pt;}
._e{width:1197.344884pt;}
._c{width:1208.312566pt;}
._15{width:1218.746249pt;}
._13{width:1310.596288pt;}
._f{width:1558.268524pt;}
._14{width:1578.632178pt;}
._b{width:1709.541378pt;}
.fs9{font-size:26.571108pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs8{font-size:37.958834pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:142.501333pt;}
.y2b{bottom:154.156000pt;}
.y45{bottom:169.600000pt;}
.y5d{bottom:175.914667pt;}
.y5b{bottom:177.269333pt;}
.ya6{bottom:180.430667pt;}
.y5a{bottom:186.330667pt;}
.y2a{bottom:188.568000pt;}
.y5c{bottom:196.170667pt;}
.y73{bottom:196.698667pt;}
.yd4{bottom:198.645333pt;}
.y44{bottom:204.116000pt;}
.y43{bottom:204.780000pt;}
.y8d{bottom:205.209333pt;}
.ya5{bottom:207.529333pt;}
.y72{bottom:223.796000pt;}
.yd3{bottom:225.744000pt;}
.y59{bottom:229.630667pt;}
.y29{bottom:230.210667pt;}
.ye{bottom:230.642667pt;}
.ya4{bottom:234.628000pt;}
.y42{bottom:239.960000pt;}
.y8c{bottom:240.817333pt;}
.y71{bottom:250.894667pt;}
.yb9{bottom:252.229333pt;}
.yd2{bottom:254.789333pt;}
.yd{bottom:255.217333pt;}
.y41{bottom:267.057333pt;}
.y8b{bottom:267.916000pt;}
.ya3{bottom:271.229333pt;}
.y28{bottom:271.854667pt;}
.y58{bottom:272.661333pt;}
.y70{bottom:277.993333pt;}
.yb8{bottom:279.328000pt;}
.yc{bottom:279.792000pt;}
.yd1{bottom:281.888000pt;}
.y89{bottom:293.548000pt;}
.ya2{bottom:298.326667pt;}
.y8a{bottom:299.929333pt;}
.y88{bottom:303.525333pt;}
.yb{bottom:304.366667pt;}
.y6f{bottom:305.092000pt;}
.y40{bottom:313.053333pt;}
.y27{bottom:313.498667pt;}
.y57{bottom:315.692000pt;}
.ye6{bottom:316.613333pt;}
.ya1{bottom:325.425333pt;}
.yb7{bottom:326.657333pt;}
.ya{bottom:328.941333pt;}
.y87{bottom:339.134667pt;}
.yd0{bottom:339.888000pt;}
.ye5{bottom:340.524000pt;}
.y6e{bottom:351.088000pt;}
.y26{bottom:355.142667pt;}
.y56{bottom:358.724000pt;}
.ye4{bottom:364.433333pt;}
.y3f{bottom:366.174667pt;}
.ycf{bottom:366.986667pt;}
.ya0{bottom:371.421333pt;}
.y86{bottom:385.130667pt;}
.ye3{bottom:388.344000pt;}
.y3e{bottom:393.273333pt;}
.y25{bottom:396.786667pt;}
.y55{bottom:401.754667pt;}
.y6d{bottom:405.084000pt;}
.ye2{bottom:412.254667pt;}
.yb6{bottom:416.268000pt;}
.yce{bottom:417.105333pt;}
.y3d{bottom:420.370667pt;}
.y6c{bottom:432.182667pt;}
.ye1{bottom:436.165333pt;}
.y9{bottom:436.676000pt;}
.y85{bottom:438.317333pt;}
.y24{bottom:438.430667pt;}
.yb5{bottom:440.178667pt;}
.y9f{bottom:440.878667pt;}
.ycd{bottom:444.204000pt;}
.y54{bottom:444.785333pt;}
.y3c{bottom:447.469333pt;}
.ye0{bottom:460.074667pt;}
.y9e{bottom:464.789333pt;}
.y84{bottom:465.416000pt;}
.y6b{bottom:471.608000pt;}
.y53{bottom:471.884000pt;}
.y3b{bottom:474.568000pt;}
.yb3{bottom:482.065333pt;}
.y8{bottom:483.264000pt;}
.ydf{bottom:483.985333pt;}
.y23{bottom:484.426667pt;}
.ycc{bottom:494.322667pt;}
.y83{bottom:499.697333pt;}
.y3a{bottom:501.666667pt;}
.yb2{bottom:505.976000pt;}
.y9b{bottom:506.410667pt;}
.y7{bottom:507.173333pt;}
.yde{bottom:507.896000pt;}
.y6a{bottom:511.672000pt;}
.y9a{bottom:511.724000pt;}
.y52{bottom:515.184000pt;}
.y99{bottom:517.037333pt;}
.yb4{bottom:520.761333pt;}
.ycb{bottom:521.421333pt;}
.y82{bottom:526.796000pt;}
.y39{bottom:528.765333pt;}
.y6{bottom:531.084000pt;}
.ydd{bottom:531.806667pt;}
.y22{bottom:538.350667pt;}
.y69{bottom:551.734667pt;}
.y38{bottom:555.862667pt;}
.y51{bottom:558.484000pt;}
.y81{bottom:561.076000pt;}
.y21{bottom:565.448000pt;}
.y98{bottom:569.848000pt;}
.yca{bottom:571.540000pt;}
.yaf{bottom:572.080000pt;}
.y97{bottom:573.132000pt;}
.y37{bottom:582.961333pt;}
.y80{bottom:585.992000pt;}
.y7f{bottom:588.174667pt;}
.y68{bottom:591.161333pt;}
.y20{bottom:592.546667pt;}
.yc9{bottom:598.638667pt;}
.y50{bottom:605.009333pt;}
.y36{bottom:610.060000pt;}
.y7e{bottom:615.273333pt;}
.y67{bottom:618.260000pt;}
.y9d{bottom:618.504000pt;}
.ydc{bottom:628.776000pt;}
.y96{bottom:631.713333pt;}
.y35{bottom:637.158667pt;}
.yb1{bottom:637.669333pt;}
.y9c{bottom:642.413333pt;}
.y1f{bottom:643.556000pt;}
.y7d{bottom:650.881333pt;}
.ydb{bottom:655.874667pt;}
.yc8{bottom:656.638667pt;}
.yb0{bottom:661.578667pt;}
.y4f{bottom:662.184000pt;}
.y66{bottom:664.256000pt;}
.y34{bottom:664.257333pt;}
.y5{bottom:665.378667pt;}
.y1e{bottom:667.466667pt;}
.yc7{bottom:685.684000pt;}
.y7c{bottom:686.490667pt;}
.y95{bottom:688.398667pt;}
.y1d{bottom:691.376000pt;}
.yda{bottom:696.256000pt;}
.y4e{bottom:705.482667pt;}
.y33{bottom:710.252000pt;}
.yc6{bottom:712.782667pt;}
.y1c{bottom:715.286667pt;}
.yae{bottom:717.977333pt;}
.y65{bottom:718.252000pt;}
.y7b{bottom:720.770667pt;}
.yd9{bottom:723.354667pt;}
.y1b{bottom:739.197333pt;}
.yc5{bottom:739.881333pt;}
.y94{bottom:743.754667pt;}
.yad{bottom:745.074667pt;}
.y64{bottom:745.350667pt;}
.y4d{bottom:748.782667pt;}
.yd8{bottom:750.453333pt;}
.y7a{bottom:759.120000pt;}
.y1a{bottom:763.108000pt;}
.y32{bottom:763.373333pt;}
.y63{bottom:772.448000pt;}
.yd7{bottom:777.552000pt;}
.y93{bottom:785.932000pt;}
.y79{bottom:786.217333pt;}
.y19{bottom:787.017333pt;}
.yc4{bottom:787.824000pt;}
.y4c{bottom:791.813333pt;}
.yac{bottom:792.128000pt;}
.y4{bottom:802.264000pt;}
.yd6{bottom:804.649333pt;}
.y31{bottom:805.017333pt;}
.y18{bottom:810.928000pt;}
.y62{bottom:813.202667pt;}
.yab{bottom:819.226667pt;}
.y4b{bottom:819.442667pt;}
.y78{bottom:824.565333pt;}
.y92{bottom:825.053333pt;}
.y3{bottom:830.158667pt;}
.yd5{bottom:831.748000pt;}
.yc3{bottom:834.226667pt;}
.y17{bottom:834.838667pt;}
.y30{bottom:846.661333pt;}
.y4a{bottom:851.276000pt;}
.y61{bottom:853.957333pt;}
.yc2{bottom:858.137333pt;}
.y16{bottom:858.749333pt;}
.y77{bottom:858.846667pt;}
.y91{bottom:864.176000pt;}
.y49{bottom:866.236000pt;}
.yaa{bottom:866.273333pt;}
.yc1{bottom:882.048000pt;}
.y15{bottom:882.658667pt;}
.y76{bottom:885.945333pt;}
.y2f{bottom:888.304000pt;}
.y2{bottom:888.702667pt;}
.y60{bottom:897.049333pt;}
.y90{bottom:900.776000pt;}
.y14{bottom:906.569333pt;}
.y48{bottom:909.536000pt;}
.yc0{bottom:911.314081pt;}
.ya9{bottom:911.986667pt;}
.y75{bottom:913.044000pt;}
.y5f{bottom:924.148000pt;}
.y1{bottom:924.568000pt;}
.ybf{bottom:928.395861pt;}
.y2e{bottom:929.948000pt;}
.y8f{bottom:937.377333pt;}
.ya8{bottom:939.085333pt;}
.y74{bottom:940.141333pt;}
.y13{bottom:940.973333pt;}
.ybe{bottom:945.476689pt;}
.y12{bottom:945.794667pt;}
.y47{bottom:956.061333pt;}
.ybd{bottom:962.558469pt;}
.ya7{bottom:966.182667pt;}
.y5e{bottom:967.240000pt;}
.y10{bottom:969.533333pt;}
.y2d{bottom:971.592000pt;}
.y11{bottom:974.812000pt;}
.y8e{bottom:975.306667pt;}
.ybc{bottom:979.640250pt;}
.ybb{bottom:996.722030pt;}
.yf{bottom:1013.236000pt;}
.yba{bottom:1014.182918pt;}
.y2c{bottom:1059.728000pt;}
.he{height:14.824448pt;}
.ha{height:24.696550pt;}
.h1f{height:28.469126pt;}
.h12{height:29.032418pt;}
.h20{height:31.420658pt;}
.h9{height:31.880400pt;}
.h7{height:33.713664pt;}
.hd{height:37.193707pt;}
.hc{height:37.406242pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.h1e{height:39.999733pt;}
.h21{height:40.960034pt;}
.h16{height:41.658217pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h1b{height:48.163217pt;}
.h11{height:51.738667pt;}
.h1c{height:52.986400pt;}
.h14{height:52.995067pt;}
.h2{height:53.559147pt;}
.h15{height:53.951735pt;}
.h1d{height:55.901733pt;}
.h1a{height:58.020400pt;}
.h10{height:58.557733pt;}
.h4{height:59.756892pt;}
.hf{height:60.489733pt;}
.h13{height:85.300400pt;}
.h17{height:92.355067pt;}
.h19{height:92.963084pt;}
.h18{height:132.264400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x19{left:96.000000pt;}
.x1f{left:98.434667pt;}
.x1e{left:101.656000pt;}
.x94{left:102.718667pt;}
.x1d{left:106.909333pt;}
.x1c{left:112.565333pt;}
.x16{left:115.925333pt;}
.xa4{left:117.217333pt;}
.x1b{left:118.221333pt;}
.x21{left:133.492000pt;}
.x40{left:135.850667pt;}
.xb{left:140.310667pt;}
.x53{left:141.540000pt;}
.x26{left:142.489333pt;}
.x11{left:150.204000pt;}
.x10{left:154.448000pt;}
.x1{left:157.473333pt;}
.x54{left:166.193333pt;}
.x7f{left:171.785333pt;}
.x98{left:174.076000pt;}
.x27{left:174.981333pt;}
.xa0{left:176.568000pt;}
.x7b{left:177.649333pt;}
.x3f{left:186.836000pt;}
.x2{left:188.154667pt;}
.xe{left:190.597333pt;}
.x2a{left:193.417333pt;}
.xf{left:196.556000pt;}
.x4f{left:204.002667pt;}
.x7c{left:205.009333pt;}
.x2b{left:206.952000pt;}
.x5b{left:211.269333pt;}
.x2c{left:212.562667pt;}
.x50{left:213.901333pt;}
.x51{left:219.670667pt;}
.x2d{left:221.541333pt;}
.x5c{left:223.337333pt;}
.x9f{left:229.337333pt;}
.x4a{left:240.884000pt;}
.x52{left:241.932000pt;}
.x3{left:244.284000pt;}
.x61{left:251.921333pt;}
.x84{left:252.865333pt;}
.x85{left:260.668000pt;}
.x62{left:261.820000pt;}
.x83{left:265.194667pt;}
.x30{left:267.910667pt;}
.x64{left:276.506667pt;}
.x6b{left:282.008000pt;}
.x22{left:283.122667pt;}
.x25{left:288.860000pt;}
.x7{left:293.149333pt;}
.x82{left:294.476000pt;}
.x68{left:299.946667pt;}
.x87{left:301.740000pt;}
.x4{left:305.188000pt;}
.x86{left:307.853333pt;}
.x5d{left:308.958667pt;}
.x8e{left:311.064000pt;}
.x6c{left:312.621333pt;}
.x6d{left:323.844000pt;}
.x28{left:326.608000pt;}
.x65{left:330.193333pt;}
.x41{left:331.344000pt;}
.x5e{left:334.166667pt;}
.x66{left:335.736000pt;}
.x6{left:339.008000pt;}
.xc{left:340.090667pt;}
.x42{left:341.242667pt;}
.x6e{left:343.477333pt;}
.x12{left:344.541333pt;}
.x43{left:346.872000pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x13{left:354.873333pt;}
.x3c{left:355.948000pt;}
.x3b{left:356.872000pt;}
.x67{left:357.997333pt;}
.x29{left:362.253333pt;}
.x1a{left:363.736000pt;}
.x9{left:368.053333pt;}
.x44{left:369.132000pt;}
.x6f{left:379.921333pt;}
.x3e{left:382.124000pt;}
.x3d{left:395.369333pt;}
.x45{left:397.298667pt;}
.x7d{left:400.117333pt;}
.x31{left:407.284000pt;}
.x70{left:410.534667pt;}
.x71{left:416.146667pt;}
.x63{left:420.037333pt;}
.x32{left:421.036000pt;}
.x14{left:423.945333pt;}
.xa1{left:426.740000pt;}
.x33{left:428.282667pt;}
.x8f{left:433.078667pt;}
.x15{left:434.769333pt;}
.x72{left:435.780000pt;}
.x34{left:438.182667pt;}
.x46{left:440.209333pt;}
.x35{left:443.906667pt;}
.x47{left:450.108000pt;}
.x2e{left:451.022667pt;}
.xd{left:454.897333pt;}
.x88{left:461.958667pt;}
.xa2{left:463.797333pt;}
.x2f{left:464.860000pt;}
.x36{left:466.168000pt;}
.xa3{left:472.837333pt;}
.x48{left:477.912000pt;}
.x73{left:480.289333pt;}
.x69{left:490.432000pt;}
.x37{left:494.688000pt;}
.x78{left:498.004000pt;}
.x74{left:499.922667pt;}
.x38{left:505.558667pt;}
.x79{left:507.904000pt;}
.x7a{left:513.605333pt;}
.x75{left:516.633333pt;}
.x4b{left:524.165333pt;}
.x6a{left:525.725333pt;}
.x5f{left:526.630667pt;}
.x4c{left:535.237333pt;}
.x60{left:552.032000pt;}
.x7e{left:562.892000pt;}
.x8b{left:567.862667pt;}
.x55{left:572.365333pt;}
.x8a{left:573.768000pt;}
.x80{left:578.480000pt;}
.x17{left:581.136000pt;}
.x56{left:582.264000pt;}
.x49{left:584.865333pt;}
.x8c{left:589.776000pt;}
.x18{left:591.036000pt;}
.x93{left:595.818667pt;}
.x23{left:598.104000pt;}
.x81{left:603.665333pt;}
.x8d{left:605.872000pt;}
.x24{left:608.002667pt;}
.x91{left:617.266667pt;}
.x89{left:618.294667pt;}
.x92{left:620.853333pt;}
.x90{left:628.325333pt;}
.x95{left:640.974667pt;}
.x57{left:642.921333pt;}
.x4d{left:649.661333pt;}
.x58{left:652.820000pt;}
.x99{left:656.801333pt;}
.x59{left:658.364000pt;}
.x4e{left:659.560000pt;}
.x96{left:662.510667pt;}
.x9a{left:665.778667pt;}
.x9b{left:671.350667pt;}
.x5a{left:680.624000pt;}
.x9c{left:682.664000pt;}
.x76{left:686.538667pt;}
.x9d{left:691.464000pt;}
.x97{left:703.122667pt;}
.x39{left:706.624000pt;}
.x20{left:710.396000pt;}
.x77{left:711.782667pt;}
.x3a{left:715.601333pt;}
.x9e{left:716.510667pt;}
}




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