
    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_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.742000;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_fe2df89e4a374e2ee57552fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_eef583f29cdc62eb8a52a0ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_269ae1376c5bf5804e3865d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_b4cd2d8f421e777b9a514df1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_6c7b143b228cd05ad2fd2949.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4a9e4027f7f8cd4f2def3112.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7dba67153f94ad02871ffc56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873000;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_73b317a9d0b37f6d7e090286.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ae72f7988516a1f95a9085ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4f9c359322a1e7a29367c104.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942871;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_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;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_479a3acc1f98463eaa1731f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919434;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_a272947f3aa4ba577b20b633.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.041504;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_bed5908aa5fb3bdf481aa444.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.742000;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_479a3acc1f98463eaa1731f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919434;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_a272947f3aa4ba577b20b633.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.041504;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_bed5908aa5fb3bdf481aa444.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.742000;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_95293b961c129addc93e8ca9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.742000;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_62fc9a337a00257771bf8b08.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919434;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_c59dc8e77bca61b009c17f8e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.041504;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_6244057c5bfb2ab0b570d173.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d2936a38b27accb6a49f9714.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.041504;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_8a6723eabef347b207e16ccf.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.943359;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_51526987a64740b5fdcf6730.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.942871;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_d3d2c5be7ab999f34c68bc81.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8f51a16f1aeeaf95815cb97f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.742000;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_62fc9a337a00257771bf8b08.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.919434;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_c59dc8e77bca61b009c17f8e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.041504;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_6244057c5bfb2ab0b570d173.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_0729756f8633297516ab7595.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.914062;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_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.742000;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_62fc9a337a00257771bf8b08.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.919434;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_c59dc8e77bca61b009c17f8e.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.041504;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_95293b961c129addc93e8ca9.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.742000;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_e94a36e095e6d3eee8556aa5.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.943359;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_269ae1376c5bf5804e3865d9.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.912000;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_7088b977e4aa7b023413b1e5.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.742000;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_82b3c20282b8df0a1304bfc8.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.919434;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_15b63de4db896a8512e2722b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.041504;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_e94a36e095e6d3eee8556aa5.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.943359;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:ff2d;src:url('chunks/assets/font_2cd6ddaecdf17c6747a48e51.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.690918;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:ff2e;src:url('chunks/assets/font_5a3765d06462231c06dc6bc9.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_7c2b6e882c9d86181cc72ead.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_431d016f119c2e0a4c61820c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.943359;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:ff31;src:url('chunks/assets/font_6983574fad8f44d77339c49a.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.942871;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:32.399400px;}
.v6{vertical-align:64.800000px;}
.v1{vertical-align:86.400600px;}
.ls9{letter-spacing:-4.440000px;}
.ls11{letter-spacing:-1.782000px;}
.ls5{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.702000px;}
.ls10{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.008400px;}
.ls2{letter-spacing:1.890000px;}
.ls8{letter-spacing:2.100000px;}
.lsb{letter-spacing:7.200000px;}
.lsa{letter-spacing:9.000000px;}
.ls1{letter-spacing:10.800000px;}
.ls6{letter-spacing:36.000000px;}
.ls7{letter-spacing:57.600000px;}
.lse{letter-spacing:184.913400px;}
.lsd{letter-spacing:286.788000px;}
.lsc{letter-spacing:500.376000px;}
.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;}
}
.ws15{word-spacing:-120.960000px;}
.ws2{word-spacing:-100.080000px;}
.ws13{word-spacing:-98.766600px;}
.ws0{word-spacing:-74.747520px;}
.ws1{word-spacing:-69.120000px;}
.ws66{word-spacing:-54.000000px;}
.ws7c{word-spacing:-53.298000px;}
.ws14{word-spacing:-36.180000px;}
.ws6{word-spacing:-25.812000px;}
.ws6f{word-spacing:-23.040000px;}
.ws85{word-spacing:-20.016000px;}
.ws25{word-spacing:-18.780000px;}
.ws37{word-spacing:-16.680000px;}
.ws58{word-spacing:-16.200000px;}
.ws1e{word-spacing:-15.780000px;}
.ws7{word-spacing:-15.012000px;}
.ws82{word-spacing:-14.958000px;}
.ws20{word-spacing:-14.160000px;}
.ws65{word-spacing:-14.100000px;}
.ws57{word-spacing:-14.040000px;}
.ws26{word-spacing:-13.980000px;}
.ws27{word-spacing:-13.920000px;}
.ws45{word-spacing:-13.860000px;}
.ws48{word-spacing:-13.800000px;}
.ws4e{word-spacing:-13.740000px;}
.ws3e{word-spacing:-13.680000px;}
.ws39{word-spacing:-13.620000px;}
.ws21{word-spacing:-13.560000px;}
.ws3{word-spacing:-13.344000px;}
.ws3c{word-spacing:-12.900000px;}
.ws24{word-spacing:-12.240000px;}
.ws33{word-spacing:-12.120000px;}
.ws1a{word-spacing:-11.820000px;}
.ws4{word-spacing:-11.523576px;}
.ws54{word-spacing:-10.980000px;}
.ws35{word-spacing:-10.860000px;}
.ws23{word-spacing:-10.800000px;}
.ws3d{word-spacing:-10.740000px;}
.ws43{word-spacing:-10.680000px;}
.ws19{word-spacing:-10.620000px;}
.ws5a{word-spacing:-10.560000px;}
.ws4b{word-spacing:-10.500000px;}
.ws3b{word-spacing:-10.440000px;}
.ws3f{word-spacing:-10.380000px;}
.ws2b{word-spacing:-10.320000px;}
.ws42{word-spacing:-10.260000px;}
.ws4d{word-spacing:-10.200000px;}
.ws5e{word-spacing:-10.140000px;}
.ws70{word-spacing:-9.724440px;}
.ws5c{word-spacing:-9.540000px;}
.ws22{word-spacing:-9.480000px;}
.ws67{word-spacing:-9.000000px;}
.ws78{word-spacing:-8.751996px;}
.ws63{word-spacing:-8.460000px;}
.ws8{word-spacing:-8.400680px;}
.ws62{word-spacing:-8.340000px;}
.ws79{word-spacing:-7.662000px;}
.ws47{word-spacing:-7.620000px;}
.ws4c{word-spacing:-7.560000px;}
.ws46{word-spacing:-7.500000px;}
.ws32{word-spacing:-7.440000px;}
.ws1b{word-spacing:-7.320000px;}
.ws1c{word-spacing:-7.260000px;}
.ws18{word-spacing:-7.200000px;}
.ws50{word-spacing:-7.140000px;}
.ws1d{word-spacing:-7.080000px;}
.ws51{word-spacing:-7.020000px;}
.ws36{word-spacing:-6.960000px;}
.ws34{word-spacing:-6.900000px;}
.ws53{word-spacing:-6.562200px;}
.ws49{word-spacing:-6.240000px;}
.ws2f{word-spacing:-6.120000px;}
.ws59{word-spacing:-5.940000px;}
.ws5f{word-spacing:-5.100000px;}
.ws2c{word-spacing:-4.260000px;}
.ws64{word-spacing:-4.140000px;}
.ws1f{word-spacing:-4.080000px;}
.ws52{word-spacing:-4.020000px;}
.ws28{word-spacing:-3.960000px;}
.ws3a{word-spacing:-3.900000px;}
.ws16{word-spacing:-3.882669px;}
.ws29{word-spacing:-3.840000px;}
.ws5b{word-spacing:-3.780000px;}
.ws56{word-spacing:-3.720000px;}
.ws17{word-spacing:-3.660000px;}
.ws2e{word-spacing:-3.600000px;}
.ws4a{word-spacing:-3.540000px;}
.ws4f{word-spacing:-3.360000px;}
.wsb{word-spacing:-2.970000px;}
.wsa{word-spacing:-2.916000px;}
.ws61{word-spacing:-2.760000px;}
.ws44{word-spacing:-2.520000px;}
.wsc{word-spacing:-1.998000px;}
.ws2d{word-spacing:-1.860000px;}
.ws40{word-spacing:-1.800000px;}
.ws41{word-spacing:-1.776000px;}
.ws2a{word-spacing:-1.140000px;}
.wse{word-spacing:-1.104000px;}
.ws9{word-spacing:-0.918000px;}
.ws60{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.840000px;}
.ws55{word-spacing:-0.780000px;}
.ws30{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.660000px;}
.ws5d{word-spacing:-0.600000px;}
.ws5{word-spacing:0.000000px;}
.ws6a{word-spacing:1.782000px;}
.ws6d{word-spacing:2.214000px;}
.ws69{word-spacing:3.510000px;}
.wsf{word-spacing:3.696000px;}
.ws6c{word-spacing:3.996000px;}
.ws6b{word-spacing:4.104000px;}
.ws6e{word-spacing:4.698000px;}
.ws10{word-spacing:5.808000px;}
.ws68{word-spacing:9.504000px;}
.wsd{word-spacing:13.296000px;}
.ws11{word-spacing:19.440000px;}
.ws81{word-spacing:50.447400px;}
.ws80{word-spacing:61.609200px;}
.ws12{word-spacing:81.018000px;}
.ws75{word-spacing:145.056000px;}
.ws71{word-spacing:163.727400px;}
.ws7a{word-spacing:180.180000px;}
.ws72{word-spacing:182.487600px;}
.ws76{word-spacing:198.143400px;}
.ws73{word-spacing:198.235200px;}
.ws7f{word-spacing:241.644600px;}
.ws77{word-spacing:291.012600px;}
.ws84{word-spacing:300.388200px;}
.ws7d{word-spacing:380.740200px;}
.ws7b{word-spacing:388.742400px;}
.ws7e{word-spacing:412.090200px;}
.ws74{word-spacing:419.916000px;}
.ws83{word-spacing:659.220600px;}
._0{margin-left:-17.129640px;}
._13{margin-left:-14.953560px;}
._7{margin-left:-13.451418px;}
._1{margin-left:-11.523576px;}
._6{margin-left:-9.364601px;}
._b{margin-left:-8.265600px;}
._11{margin-left:-7.212000px;}
._9{margin-left:-5.972400px;}
._4{margin-left:-3.996000px;}
._3{margin-left:-2.361600px;}
._2{margin-left:-1.346400px;}
._5{width:1.069200px;}
._a{width:3.013200px;}
._c{width:4.080000px;}
._d{width:5.100000px;}
._14{width:6.773400px;}
._15{width:8.308800px;}
._e{width:9.540000px;}
._f{width:10.620000px;}
._18{width:11.754000px;}
._16{width:12.846000px;}
._17{width:14.356800px;}
._19{width:15.502800px;}
._1c{width:18.036000px;}
._1b{width:19.911600px;}
._1a{width:20.940000px;}
._27{width:22.328400px;}
._2f{width:25.005600px;}
._2e{width:26.178000px;}
._31{width:28.983600px;}
._32{width:32.979600px;}
._29{width:35.760000px;}
._28{width:49.080000px;}
._20{width:56.408400px;}
._30{width:59.007000px;}
._2a{width:81.375000px;}
._21{width:83.006400px;}
._24{width:88.431600px;}
._23{width:96.206400px;}
._2c{width:98.925000px;}
._10{width:125.521378px;}
._12{width:143.868600px;}
._2d{width:182.547000px;}
._25{width:219.708000px;}
._26{width:244.470000px;}
._1e{width:256.032600px;}
._2b{width:262.366200px;}
._22{width:285.780000px;}
._8{width:313.293535px;}
._1d{width:331.672200px;}
._1f{width:334.538400px;}
.fce{color:rgb(246,130,19);}
.fcd{color:rgb(55,159,146);}
.fc0{color:rgb(246,131,19);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(35,31,32);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(54,159,146);}
.fcb{color:rgb(0,173,239);}
.fc4{color:rgb(61,122,199);}
.fc8{color:rgb(42,62,146);}
.fc6{color:rgb(38,122,200);}
.fca{color:rgb(210,32,39);}
.fc3{color:rgb(47,168,65);}
.fcc{color:transparent;}
.fc9{color:rgb(217,242,245);}
.fsf{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fsd{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:104.937000px;}
.fsb{font-size:120.000000px;}
.fs10{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:180.000000px;}
.fs7{font-size:227.045400px;}
.fs4{font-size:288.000000px;}
.fs0{font-size:311.448000px;}
.fs5{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y97{bottom:76.343700px;}
.y1cc{bottom:76.439550px;}
.y96{bottom:106.299150px;}
.y291{bottom:107.196900px;}
.y32b{bottom:110.955150px;}
.y267{bottom:112.755300px;}
.y231{bottom:112.870650px;}
.y191{bottom:112.967700px;}
.y2bd{bottom:112.975350px;}
.y1c6{bottom:113.117700px;}
.y160{bottom:114.115650px;}
.y2f7{bottom:114.425400px;}
.y128{bottom:114.963750px;}
.y104{bottom:115.615650px;}
.y1fb{bottom:115.624650px;}
.y21{bottom:116.447250px;}
.y93{bottom:116.550750px;}
.y59{bottom:117.648900px;}
.ycc{bottom:118.594500px;}
.y355{bottom:124.299150px;}
.y290{bottom:125.196900px;}
.y32a{bottom:128.355150px;}
.y15f{bottom:128.515800px;}
.y1c5{bottom:128.567700px;}
.y3{bottom:129.136200px;}
.y190{bottom:129.167700px;}
.y127{bottom:129.663750px;}
.y103{bottom:130.315800px;}
.y266{bottom:130.755300px;}
.y230{bottom:131.320650px;}
.y1fa{bottom:131.824650px;}
.y2bc{bottom:132.325350px;}
.y2f6{bottom:132.425400px;}
.y92{bottom:132.450750px;}
.y20{bottom:132.647250px;}
.ycb{bottom:132.994500px;}
.y28f{bottom:143.196900px;}
.y58{bottom:144.152700px;}
.y329{bottom:145.755150px;}
.y1f9{bottom:148.024650px;}
.y91{bottom:148.350750px;}
.y102{bottom:148.615650px;}
.y265{bottom:148.755300px;}
.y1f{bottom:148.847250px;}
.y22f{bottom:149.770650px;}
.y2f5{bottom:150.425400px;}
.y15e{bottom:150.767700px;}
.y2{bottom:151.134450px;}
.y1c4{bottom:151.869750px;}
.y126{bottom:152.215800px;}
.y18f{bottom:153.219750px;}
.yca{bottom:155.246400px;}
.y2bb{bottom:160.179300px;}
.y28e{bottom:161.196900px;}
.y57{bottom:162.152700px;}
.y328{bottom:163.155150px;}
.y90{bottom:164.250750px;}
.y15d{bottom:165.167700px;}
.y264{bottom:166.755300px;}
.y125{bottom:166.915800px;}
.y1c3{bottom:167.319600px;}
.y2f4{bottom:168.425400px;}
.y18e{bottom:169.419750px;}
.yc9{bottom:169.646400px;}
.y101{bottom:171.167700px;}
.y1f8{bottom:172.728600px;}
.y22e{bottom:173.215650px;}
.y28d{bottom:179.196900px;}
.y8f{bottom:180.150750px;}
.y56{bottom:180.152700px;}
.y327{bottom:180.555150px;}
.y263{bottom:184.755300px;}
.y124{bottom:185.215800px;}
.y100{bottom:185.867700px;}
.y2f3{bottom:186.425400px;}
.y22d{bottom:186.670650px;}
.y15c{bottom:187.419750px;}
.y2ba{bottom:188.033250px;}
.y1f7{bottom:188.928600px;}
.y1c2{bottom:190.621650px;}
.yc8{bottom:191.898450px;}
.y18d{bottom:193.471650px;}
.y8e{bottom:196.050750px;}
.y28c{bottom:197.196900px;}
.y326{bottom:197.955150px;}
.y55{bottom:198.152700px;}
.y15b{bottom:201.819600px;}
.y262{bottom:202.755300px;}
.yff{bottom:204.167700px;}
.y2f2{bottom:204.425400px;}
.y22c{bottom:205.120650px;}
.y1f6{bottom:205.128600px;}
.y1c1{bottom:206.071650px;}
.yc7{bottom:206.298450px;}
.y2b9{bottom:207.383250px;}
.y123{bottom:207.767700px;}
.y18c{bottom:209.671650px;}
.y8d{bottom:211.950750px;}
.y28b{bottom:215.196900px;}
.y325{bottom:215.355150px;}
.y54{bottom:216.152700px;}
.y261{bottom:220.755300px;}
.y1f5{bottom:221.328600px;}
.y2f1{bottom:222.425400px;}
.y122{bottom:222.467700px;}
.y22b{bottom:223.570650px;}
.y15a{bottom:224.071650px;}
.yfe{bottom:226.719750px;}
.y8c{bottom:227.850750px;}
.yc6{bottom:228.550350px;}
.y1c0{bottom:229.373700px;}
.y18b{bottom:229.471650px;}
.y324{bottom:232.755150px;}
.y53{bottom:234.152850px;}
.y2b8{bottom:235.237200px;}
.y1f4{bottom:237.528600px;}
.y4f{bottom:238.380300px;}
.y159{bottom:238.471650px;}
.y260{bottom:238.755300px;}
.y2f0{bottom:240.425400px;}
.yfd{bottom:241.419750px;}
.y28a{bottom:241.700850px;}
.y22a{bottom:242.020650px;}
.yc5{bottom:242.950350px;}
.y8b{bottom:243.750750px;}
.y1{bottom:244.568850px;}
.y1bf{bottom:244.823700px;}
.y121{bottom:245.019750px;}
.y323{bottom:250.155150px;}
.y18a{bottom:253.523550px;}
.y1f3{bottom:253.728600px;}
.y4e{bottom:254.880300px;}
.y25f{bottom:256.755300px;}
.y2ef{bottom:258.425400px;}
.y8a{bottom:259.650750px;}
.y120{bottom:259.719750px;}
.y229{bottom:260.470650px;}
.y52{bottom:260.656650px;}
.y158{bottom:260.723550px;}
.y2b7{bottom:263.091150px;}
.yfc{bottom:263.971650px;}
.yc4{bottom:265.202400px;}
.y322{bottom:267.555150px;}
.y1be{bottom:268.125600px;}
.y289{bottom:268.204800px;}
.y189{bottom:269.723550px;}
.y1f2{bottom:269.928600px;}
.y4d{bottom:271.380300px;}
.y25e{bottom:274.755300px;}
.y157{bottom:275.123700px;}
.y89{bottom:275.550750px;}
.y2ee{bottom:276.425400px;}
.yfb{bottom:278.671650px;}
.y228{bottom:278.920650px;}
.yc3{bottom:279.602400px;}
.y11f{bottom:282.271650px;}
.y1bd{bottom:283.575600px;}
.y321{bottom:284.955150px;}
.y1f1{bottom:286.128600px;}
.y288{bottom:286.204800px;}
.y51{bottom:287.160600px;}
.y4c{bottom:287.880300px;}
.y2b6{bottom:290.945100px;}
.y88{bottom:291.450750px;}
.y25d{bottom:292.755300px;}
.y156{bottom:293.123700px;}
.y188{bottom:293.775600px;}
.y2ed{bottom:294.425400px;}
.yfa{bottom:296.971650px;}
.y227{bottom:297.370650px;}
.yc2{bottom:301.854300px;}
.y1f0{bottom:302.328600px;}
.y320{bottom:302.355150px;}
.y287{bottom:304.204800px;}
.y4b{bottom:304.380300px;}
.y50{bottom:305.160600px;}
.y1bc{bottom:306.877500px;}
.y87{bottom:307.350750px;}
.y187{bottom:309.975600px;}
.y2b5{bottom:310.295100px;}
.y25c{bottom:310.755300px;}
.y2ec{bottom:312.425400px;}
.y11e{bottom:315.271650px;}
.y155{bottom:315.375600px;}
.y226{bottom:315.820650px;}
.yc1{bottom:316.254300px;}
.yf9{bottom:319.523550px;}
.y31f{bottom:319.755150px;}
.y4a{bottom:320.880300px;}
.y286{bottom:322.204800px;}
.y1bb{bottom:322.327650px;}
.y1ef{bottom:324.156900px;}
.y2b4{bottom:329.645100px;}
.y154{bottom:329.775600px;}
.y2eb{bottom:330.425400px;}
.y16{bottom:331.071300px;}
.yf8{bottom:334.223550px;}
.y225{bottom:334.270650px;}
.y31e{bottom:337.155150px;}
.y25b{bottom:337.259100px;}
.y49{bottom:337.380300px;}
.y11d{bottom:337.823700px;}
.yc0{bottom:338.506200px;}
.y285{bottom:340.204800px;}
.y1ee{bottom:340.356900px;}
.y1ba{bottom:341.377500px;}
.y15{bottom:347.271300px;}
.y153{bottom:347.775600px;}
.y2ea{bottom:348.425400px;}
.yf7{bottom:352.523550px;}
.y224{bottom:352.720650px;}
.ybf{bottom:352.906200px;}
.y186{bottom:353.827650px;}
.y48{bottom:353.880300px;}
.y31d{bottom:354.555150px;}
.y1ed{bottom:356.556900px;}
.y2b3{bottom:357.498900px;}
.y284{bottom:358.204800px;}
.y14{bottom:363.471300px;}
.y35a{bottom:363.748200px;}
.y1b9{bottom:364.679550px;}
.y2e9{bottom:366.425400px;}
.y34b{bottom:369.107850px;}
.y152{bottom:370.027650px;}
.y47{bottom:370.380300px;}
.y11c{bottom:370.823700px;}
.ybe{bottom:370.906200px;}
.y223{bottom:371.170650px;}
.yf6{bottom:375.075600px;}
.y283{bottom:376.204800px;}
.y25a{bottom:376.859100px;}
.y13{bottom:379.671300px;}
.y1b8{bottom:380.129550px;}
.y1ec{bottom:381.260850px;}
.y359{bottom:383.548200px;}
.y2e8{bottom:384.425400px;}
.y151{bottom:384.427500px;}
.y2b2{bottom:385.353000px;}
.y46{bottom:386.880300px;}
.y222{bottom:389.620650px;}
.yf5{bottom:389.775600px;}
.y185{bottom:389.827500px;}
.y86{bottom:390.943200px;}
.y31c{bottom:391.155150px;}
.ybd{bottom:393.158250px;}
.y11b{bottom:393.375600px;}
.y282{bottom:394.204800px;}
.y259{bottom:394.859100px;}
.y12{bottom:395.871300px;}
.y1eb{bottom:397.460850px;}
.y17{bottom:398.194050px;}
.y34a{bottom:399.211800px;}
.y2e7{bottom:402.425400px;}
.y358{bottom:403.348200px;}
.y45{bottom:403.380300px;}
.y1b7{bottom:403.431450px;}
.y2b1{bottom:404.703000px;}
.y150{bottom:406.679550px;}
.y85{bottom:407.443200px;}
.ybc{bottom:407.558250px;}
.y221{bottom:408.070650px;}
.yf4{bottom:408.075600px;}
.y31b{bottom:410.355150px;}
.y11{bottom:412.071300px;}
.y281{bottom:412.204800px;}
.y258{bottom:412.859100px;}
.y1ea{bottom:413.660850px;}
.y184{bottom:413.879550px;}
.y1b6{bottom:418.881450px;}
.y44{bottom:419.880300px;}
.y2e6{bottom:420.425400px;}
.y14f{bottom:421.079550px;}
.y357{bottom:423.148200px;}
.y84{bottom:423.943200px;}
.y11a{bottom:426.375600px;}
.y10{bottom:428.271300px;}
.y349{bottom:429.315750px;}
.y31a{bottom:429.555150px;}
.ybb{bottom:429.810150px;}
.y1e9{bottom:429.860850px;}
.y183{bottom:430.079550px;}
.yf3{bottom:430.627650px;}
.y257{bottom:430.859100px;}
.y2b0{bottom:432.556800px;}
.y220{bottom:435.024600px;}
.y43{bottom:436.380300px;}
.y1b5{bottom:437.931450px;}
.y2e5{bottom:438.425400px;}
.y14e{bottom:439.079550px;}
.y83{bottom:440.443200px;}
.y356{bottom:442.948200px;}
.yba{bottom:444.210150px;}
.yf{bottom:444.471300px;}
.yf2{bottom:445.327500px;}
.y1e8{bottom:446.060850px;}
.y319{bottom:448.755150px;}
.y256{bottom:448.859100px;}
.y119{bottom:448.927500px;}
.y280{bottom:450.556050px;}
.y2af{bottom:451.906800px;}
.y42{bottom:452.880300px;}
.y182{bottom:454.131450px;}
.y2e4{bottom:456.425400px;}
.y82{bottom:456.943200px;}
.y348{bottom:459.419700px;}
.ye{bottom:460.671300px;}
.y1b4{bottom:461.233500px;}
.y14d{bottom:461.331600px;}
.y1e7{bottom:462.260850px;}
.yf1{bottom:463.627650px;}
.yb9{bottom:466.462200px;}
.y27f{bottom:466.756050px;}
.y255{bottom:466.859100px;}
.y318{bottom:467.955150px;}
.y41{bottom:469.380300px;}
.y181{bottom:470.331600px;}
.y18{bottom:471.499950px;}
.y81{bottom:473.443200px;}
.y2e3{bottom:474.425400px;}
.y21f{bottom:475.524600px;}
.y14c{bottom:475.731450px;}
.y1b3{bottom:476.683500px;}
.yd{bottom:476.871300px;}
.y1e6{bottom:478.460850px;}
.y2ae{bottom:479.760750px;}
.yb8{bottom:480.862200px;}
.y118{bottom:481.927500px;}
.y254{bottom:484.859100px;}
.y40{bottom:485.880300px;}
.yf0{bottom:486.179550px;}
.y317{bottom:487.155150px;}
.y347{bottom:489.523650px;}
.y80{bottom:489.943200px;}
.y2e2{bottom:492.425400px;}
.yc{bottom:493.071300px;}
.y27e{bottom:493.286700px;}
.y14b{bottom:493.731450px;}
.y21e{bottom:493.974600px;}
.y180{bottom:494.383500px;}
.y1e5{bottom:494.660850px;}
.y1b2{bottom:495.733500px;}
.yb7{bottom:498.862200px;}
.y2ad{bottom:499.110750px;}
.yef{bottom:500.879550px;}
.y3f{bottom:502.380300px;}
.y253{bottom:502.859100px;}
.y117{bottom:504.479550px;}
.y316{bottom:506.355150px;}
.y7f{bottom:506.443200px;}
.yb{bottom:509.271300px;}
.y27d{bottom:509.486850px;}
.y2e1{bottom:510.425400px;}
.y17f{bottom:510.583500px;}
.y21d{bottom:512.424600px;}
.y14a{bottom:515.983500px;}
.y1e4{bottom:516.489300px;}
.y3e{bottom:518.880300px;}
.y1b1{bottom:519.035400px;}
.yee{bottom:519.179550px;}
.y346{bottom:519.627600px;}
.y252{bottom:520.859100px;}
.yb6{bottom:521.114100px;}
.y7e{bottom:522.943200px;}
.ya{bottom:525.471300px;}
.y315{bottom:525.555150px;}
.y2ac{bottom:526.964700px;}
.y2e0{bottom:528.425400px;}
.y149{bottom:530.383500px;}
.y21c{bottom:530.874600px;}
.y1e3{bottom:532.689300px;}
.y1b0{bottom:534.485400px;}
.y17e{bottom:534.635400px;}
.y3d{bottom:535.380300px;}
.yb5{bottom:535.514100px;}
.y27c{bottom:536.017650px;}
.y251{bottom:538.859100px;}
.y7d{bottom:539.443200px;}
.y9{bottom:541.671300px;}
.yed{bottom:541.731450px;}
.y314{bottom:544.755150px;}
.y2ab{bottom:546.314700px;}
.y2df{bottom:546.425400px;}
.y148{bottom:548.383500px;}
.y1e2{bottom:548.889300px;}
.y21b{bottom:549.324600px;}
.y345{bottom:549.731550px;}
.y17d{bottom:550.835400px;}
.y3c{bottom:551.880300px;}
.y27b{bottom:552.217650px;}
.y1af{bottom:553.535400px;}
.y7c{bottom:555.943200px;}
.yec{bottom:556.431450px;}
.y250{bottom:556.859100px;}
.yb4{bottom:557.766150px;}
.y8{bottom:557.871300px;}
.y313{bottom:563.955150px;}
.y2de{bottom:564.425400px;}
.y21a{bottom:567.774600px;}
.y3b{bottom:568.380300px;}
.y147{bottom:570.635400px;}
.yb3{bottom:572.166150px;}
.y354{bottom:572.325300px;}
.y7b{bottom:572.443200px;}
.y1e1{bottom:573.593100px;}
.y7{bottom:574.071300px;}
.y2aa{bottom:574.168650px;}
.y116{bottom:574.731450px;}
.y24f{bottom:574.859100px;}
.y17c{bottom:574.887450px;}
.y1ae{bottom:576.837450px;}
.y27a{bottom:578.748450px;}
.yeb{bottom:578.983500px;}
.y344{bottom:579.835350px;}
.y2dd{bottom:582.425400px;}
.y312{bottom:583.155150px;}
.y3a{bottom:584.880300px;}
.y146{bottom:585.035400px;}
.y219{bottom:586.224600px;}
.y7a{bottom:588.943200px;}
.y1e0{bottom:589.793250px;}
.y6{bottom:590.271450px;}
.y17b{bottom:591.087450px;}
.y353{bottom:592.125300px;}
.y1ad{bottom:592.287450px;}
.y24e{bottom:592.859100px;}
.yea{bottom:593.683500px;}
.yb2{bottom:594.418050px;}
.y279{bottom:594.948450px;}
.y115{bottom:597.283500px;}
.y2dc{bottom:600.425400px;}
.y39{bottom:601.380300px;}
.y2a9{bottom:602.022600px;}
.y311{bottom:602.355150px;}
.y145{bottom:603.035400px;}
.y218{bottom:604.674600px;}
.y79{bottom:605.443200px;}
.y1df{bottom:605.993250px;}
.y5{bottom:606.471300px;}
.yb1{bottom:608.818050px;}
.y343{bottom:609.939450px;}
.y24d{bottom:610.859100px;}
.y352{bottom:611.925300px;}
.y114{bottom:611.983500px;}
.y17a{bottom:615.139350px;}
.y1ac{bottom:615.589350px;}
.ye9{bottom:616.235400px;}
.y38{bottom:617.880300px;}
.y2db{bottom:618.425400px;}
.y278{bottom:621.479250px;}
.y310{bottom:621.555150px;}
.y78{bottom:621.943200px;}
.y1de{bottom:622.193250px;}
.y217{bottom:623.124600px;}
.y144{bottom:625.287450px;}
.y24c{bottom:628.859100px;}
.y277{bottom:629.579250px;}
.y2a8{bottom:629.876550px;}
.ye8{bottom:630.935400px;}
.y1ab{bottom:631.039350px;}
.yb0{bottom:631.069950px;}
.y179{bottom:631.339350px;}
.y351{bottom:631.725300px;}
.y37{bottom:634.380300px;}
.y113{bottom:634.535400px;}
.y1dd{bottom:638.393250px;}
.y77{bottom:638.443200px;}
.y143{bottom:639.687450px;}
.y342{bottom:640.043400px;}
.y30f{bottom:640.755150px;}
.y216{bottom:641.574600px;}
.yaf{bottom:645.470100px;}
.y24b{bottom:646.859100px;}
.y2a7{bottom:649.226550px;}
.y112{bottom:649.235400px;}
.y1aa{bottom:650.089350px;}
.y36{bottom:650.880300px;}
.ye7{bottom:653.487450px;}
.y1dc{bottom:654.593250px;}
.y76{bottom:654.943200px;}
.y178{bottom:655.391400px;}
.y142{bottom:657.687450px;}
.y30e{bottom:659.955150px;}
.y215{bottom:660.024600px;}
.y2da{bottom:662.720100px;}
.yae{bottom:663.470100px;}
.y276{bottom:664.210050px;}
.y24a{bottom:664.859100px;}
.y35{bottom:667.380300px;}
.ye6{bottom:668.187450px;}
.y2a6{bottom:668.576550px;}
.y341{bottom:670.147200px;}
.y1db{bottom:670.793250px;}
.y2d7{bottom:670.820100px;}
.y75{bottom:671.443200px;}
.y177{bottom:671.591400px;}
.y111{bottom:671.787450px;}
.y275{bottom:672.310050px;}
.y1a9{bottom:673.391400px;}
.y141{bottom:675.687450px;}
.y214{bottom:678.474600px;}
.y2d9{bottom:678.920100px;}
.y30d{bottom:679.155150px;}
.y249{bottom:682.859100px;}
.y34{bottom:683.880300px;}
.yad{bottom:685.722000px;}
.y110{bottom:686.487450px;}
.y1da{bottom:686.993250px;}
.y2d6{bottom:687.020100px;}
.y2a5{bottom:687.926550px;}
.y74{bottom:687.943200px;}
.y1a8{bottom:688.841400px;}
.ye5{bottom:690.739350px;}
.y2d8{bottom:695.120100px;}
.y176{bottom:695.643300px;}
.y213{bottom:696.924600px;}
.y140{bottom:697.939350px;}
.y30c{bottom:698.355150px;}
.yac{bottom:700.122000px;}
.y340{bottom:700.251150px;}
.y33{bottom:700.380300px;}
.y248{bottom:700.859100px;}
.y1d9{bottom:703.193250px;}
.y73{bottom:704.443200px;}
.ye4{bottom:705.439350px;}
.y274{bottom:706.940850px;}
.y1a7{bottom:707.891400px;}
.y10f{bottom:709.039350px;}
.y175{bottom:711.843300px;}
.y13f{bottom:712.339350px;}
.y273{bottom:715.040850px;}
.y212{bottom:715.374600px;}
.y2a4{bottom:715.780500px;}
.y32{bottom:716.880300px;}
.y30b{bottom:717.555150px;}
.yab{bottom:718.122000px;}
.y247{bottom:718.859100px;}
.y1d8{bottom:719.393250px;}
.y72{bottom:720.943200px;}
.y10e{bottom:723.739350px;}
.ye3{bottom:727.991400px;}
.y33f{bottom:730.355100px;}
.y1a6{bottom:731.193300px;}
.y174{bottom:731.643300px;}
.y31{bottom:733.380300px;}
.y2d5{bottom:733.538100px;}
.y211{bottom:733.824600px;}
.y13e{bottom:734.591400px;}
.y30a{bottom:736.755150px;}
.y246{bottom:736.859100px;}
.y71{bottom:737.443200px;}
.yaa{bottom:740.373900px;}
.y2d3{bottom:741.638100px;}
.ye2{bottom:742.691400px;}
.y10d{bottom:746.291400px;}
.y1a5{bottom:746.643300px;}
.y13d{bottom:748.991400px;}
.y272{bottom:749.671650px;}
.y2d2{bottom:749.738100px;}
.y30{bottom:749.880300px;}
.y2a3{bottom:752.138400px;}
.y210{bottom:752.274600px;}
.y70{bottom:753.943200px;}
.ya9{bottom:754.773900px;}
.y245{bottom:754.859100px;}
.y173{bottom:755.695350px;}
.y309{bottom:755.955150px;}
.y271{bottom:757.771800px;}
.y33e{bottom:760.459050px;}
.y10c{bottom:760.991400px;}
.y34c{bottom:761.102400px;}
.ye1{bottom:765.243300px;}
.y2d4{bottom:765.938100px;}
.y2f{bottom:766.380300px;}
.y1a4{bottom:769.945350px;}
.y6f{bottom:770.443200px;}
.y20f{bottom:770.724600px;}
.y13c{bottom:771.243300px;}
.y2a2{bottom:771.488400px;}
.y172{bottom:771.895350px;}
.y244{bottom:772.859100px;}
.y308{bottom:775.155150px;}
.ya8{bottom:777.025950px;}
.ye0{bottom:779.943300px;}
.y2e{bottom:782.880300px;}
.y10b{bottom:783.543300px;}
.y1a3{bottom:785.395350px;}
.y13b{bottom:785.643300px;}
.y6e{bottom:786.943200px;}
.y20e{bottom:789.174600px;}
.y1d7{bottom:789.977550px;}
.y270{bottom:790.051350px;}
.y33d{bottom:790.563000px;}
.y2a1{bottom:790.838400px;}
.y243{bottom:790.859100px;}
.ya7{bottom:791.425950px;}
.y171{bottom:791.695350px;}
.y307{bottom:794.355150px;}
.ydf{bottom:798.243300px;}
.y2d{bottom:799.380300px;}
.y6d{bottom:803.443200px;}
.y13a{bottom:803.643300px;}
.y2d1{bottom:804.356100px;}
.y350{bottom:806.079750px;}
.y20d{bottom:807.624600px;}
.y1d6{bottom:807.977550px;}
.y1a2{bottom:808.697250px;}
.y242{bottom:808.859100px;}
.y306{bottom:813.555150px;}
.ya6{bottom:813.678000px;}
.y170{bottom:815.747250px;}
.y2c{bottom:815.880300px;}
.y2a0{bottom:818.692350px;}
.y6c{bottom:819.943200px;}
.y2cf{bottom:820.556100px;}
.y33c{bottom:820.666950px;}
.yde{bottom:820.795200px;}
.y1a1{bottom:824.147250px;}
.y26f{bottom:824.251350px;}
.y139{bottom:825.895350px;}
.y1d5{bottom:825.977550px;}
.y20c{bottom:826.074600px;}
.y241{bottom:826.859100px;}
.ya5{bottom:828.077850px;}
.y16f{bottom:831.947250px;}
.y2b{bottom:832.380300px;}
.y305{bottom:832.755150px;}
.ydd{bottom:835.495200px;}
.y34f{bottom:836.183550px;}
.y6b{bottom:836.443200px;}
.y2ce{bottom:836.756100px;}
.y29f{bottom:838.042350px;}
.y138{bottom:840.295200px;}
.y26e{bottom:842.251350px;}
.y1d4{bottom:843.977550px;}
.y20b{bottom:844.524600px;}
.y240{bottom:844.859100px;}
.y1a0{bottom:847.449300px;}
.y2a{bottom:848.880300px;}
.ya4{bottom:850.329900px;}
.y33b{bottom:850.770900px;}
.y16e{bottom:851.747250px;}
.y304{bottom:851.955150px;}
.y6a{bottom:852.943200px;}
.y2d0{bottom:852.956250px;}
.y29e{bottom:857.392200px;}
.ydc{bottom:858.047250px;}
.y26d{bottom:860.251350px;}
.y1d3{bottom:861.977550px;}
.y137{bottom:862.547250px;}
.y23f{bottom:862.859100px;}
.y19f{bottom:862.899300px;}
.y20a{bottom:862.974600px;}
.ya3{bottom:864.729900px;}
.y29{bottom:865.380300px;}
.y34e{bottom:866.287650px;}
.y69{bottom:869.443200px;}
.y303{bottom:871.155150px;}
.ydb{bottom:872.747250px;}
.y16d{bottom:875.799150px;}
.y136{bottom:876.947250px;}
.y26c{bottom:878.251350px;}
.y23e{bottom:880.859100px;}
.y33a{bottom:880.874850px;}
.y209{bottom:881.424600px;}
.y28{bottom:881.880300px;}
.y19e{bottom:881.949300px;}
.ya2{bottom:882.729900px;}
.y29d{bottom:885.246300px;}
.y68{bottom:885.943200px;}
.y302{bottom:890.355150px;}
.y2cd{bottom:891.374100px;}
.y16c{bottom:891.999150px;}
.yda{bottom:895.299150px;}
.y26b{bottom:896.251350px;}
.y34d{bottom:896.391600px;}
.y27{bottom:898.380300px;}
.y23d{bottom:898.859100px;}
.y135{bottom:899.199300px;}
.y2ca{bottom:899.474100px;}
.y1d2{bottom:899.777550px;}
.y208{bottom:899.874600px;}
.y67{bottom:902.443200px;}
.y29c{bottom:904.596150px;}
.ya1{bottom:904.981800px;}
.y19d{bottom:905.251200px;}
.y339{bottom:906.551100px;}
.y2cc{bottom:907.574100px;}
.y301{bottom:909.555150px;}
.yd9{bottom:909.999150px;}
.y16b{bottom:911.799150px;}
.y134{bottom:913.599300px;}
.y26a{bottom:914.251350px;}
.y26{bottom:914.880300px;}
.y2c9{bottom:915.674100px;}
.y23c{bottom:916.859100px;}
.y207{bottom:918.324600px;}
.y66{bottom:918.943200px;}
.ya0{bottom:919.381950px;}
.y19c{bottom:920.701200px;}
.y338{bottom:922.751100px;}
.y2cb{bottom:923.774100px;}
.y29b{bottom:923.946300px;}
.yd8{bottom:928.299150px;}
.y300{bottom:928.755150px;}
.y133{bottom:931.599300px;}
.y10a{bottom:932.551200px;}
.y23b{bottom:934.859100px;}
.y65{bottom:935.443200px;}
.y16a{bottom:935.851200px;}
.y206{bottom:936.774600px;}
.y9f{bottom:937.381950px;}
.y337{bottom:938.951100px;}
.y19b{bottom:939.751200px;}
.y25{bottom:939.884250px;}
.y269{bottom:940.755300px;}
.y1d1{bottom:942.977550px;}
.y29a{bottom:943.296150px;}
.y109{bottom:947.251200px;}
.y2ff{bottom:947.955150px;}
.y1cb{bottom:950.251200px;}
.yd7{bottom:950.851200px;}
.y64{bottom:951.943200px;}
.y169{bottom:952.051200px;}
.y23a{bottom:952.859100px;}
.y132{bottom:953.851200px;}
.y336{bottom:955.151100px;}
.y205{bottom:955.224600px;}
.y24{bottom:956.384250px;}
.y9e{bottom:959.633850px;}
.y2c8{bottom:962.192100px;}
.y299{bottom:962.646300px;}
.y19a{bottom:963.053250px;}
.yd6{bottom:965.551200px;}
.y2fe{bottom:967.155150px;}
.y268{bottom:967.259100px;}
.y131{bottom:968.251200px;}
.y63{bottom:968.443200px;}
.y108{bottom:969.803250px;}
.y239{bottom:970.859100px;}
.y335{bottom:971.351100px;}
.y1ca{bottom:972.503100px;}
.y204{bottom:973.674600px;}
.y9d{bottom:974.034000px;}
.y168{bottom:976.103250px;}
.y2c7{bottom:978.392100px;}
.y199{bottom:978.503100px;}
.y23{bottom:981.388200px;}
.y107{bottom:984.503100px;}
.y62{bottom:984.943200px;}
.y1d0{bottom:986.177550px;}
.y2fd{bottom:986.355150px;}
.y1c9{bottom:986.903100px;}
.y334{bottom:987.551100px;}
.yd5{bottom:988.103250px;}
.y238{bottom:988.859100px;}
.y298{bottom:990.500100px;}
.y130{bottom:990.503100px;}
.y203{bottom:992.124600px;}
.y167{bottom:992.303250px;}
.y9c{bottom:996.285900px;}
.y22{bottom:997.888200px;}
.y61{bottom:1001.443200px;}
.y198{bottom:1001.805150px;}
.yd4{bottom:1002.803250px;}
.y333{bottom:1003.751100px;}
.y12f{bottom:1004.903100px;}
.y2fc{bottom:1005.555150px;}
.y237{bottom:1006.859100px;}
.y202{bottom:1010.574600px;}
.y9b{bottom:1010.685900px;}
.y166{bottom:1016.355150px;}
.y2c6{bottom:1016.810100px;}
.y197{bottom:1017.255150px;}
.y60{bottom:1017.943200px;}
.y297{bottom:1018.354200px;}
.y332{bottom:1019.951100px;}
.y236{bottom:1024.859100px;}
.y2c3{bottom:1024.910100px;}
.yd3{bottom:1025.355150px;}
.y12e{bottom:1027.155150px;}
.y9a{bottom:1028.685900px;}
.y201{bottom:1029.024600px;}
.y1cf{bottom:1029.377550px;}
.y165{bottom:1032.555150px;}
.y2c5{bottom:1033.010100px;}
.y2fb{bottom:1033.259100px;}
.y5f{bottom:1034.443200px;}
.y1d{bottom:1035.138750px;}
.y1e{bottom:1035.138900px;}
.y331{bottom:1036.151100px;}
.y196{bottom:1036.305150px;}
.yd2{bottom:1040.055150px;}
.y2c2{bottom:1041.110100px;}
.y12d{bottom:1041.555150px;}
.y235{bottom:1042.859100px;}
.y296{bottom:1046.208000px;}
.y200{bottom:1047.474600px;}
.y2c4{bottom:1049.210100px;}
.y5e{bottom:1050.943200px;}
.y330{bottom:1052.351100px;}
.y164{bottom:1052.355150px;}
.y195{bottom:1059.607050px;}
.y234{bottom:1060.859100px;}
.yd1{bottom:1062.607050px;}
.y12c{bottom:1063.807050px;}
.y295{bottom:1065.558150px;}
.y1ff{bottom:1065.924600px;}
.y32f{bottom:1068.551100px;}
.y1ce{bottom:1072.577550px;}
.y194{bottom:1075.057050px;}
.y2fa{bottom:1075.259100px;}
.y5d{bottom:1075.947150px;}
.y163{bottom:1076.407050px;}
.yd0{bottom:1077.307050px;}
.y12b{bottom:1078.207050px;}
.y233{bottom:1078.859100px;}
.y1fe{bottom:1084.374600px;}
.y32e{bottom:1084.751100px;}
.y294{bottom:1084.908150px;}
.y2c0{bottom:1087.628100px;}
.y99{bottom:1087.775700px;}
.y5c{bottom:1092.447150px;}
.y162{bottom:1092.607050px;}
.y2f9{bottom:1094.459250px;}
.y106{bottom:1095.607050px;}
.y2bf{bottom:1095.728100px;}
.y12a{bottom:1096.207050px;}
.y232{bottom:1096.859100px;}
.y193{bottom:1098.359100px;}
.ycf{bottom:1099.859100px;}
.y1c8{bottom:1100.459100px;}
.y32d{bottom:1100.951100px;}
.y1fd{bottom:1102.824600px;}
.y1c{bottom:1103.252400px;}
.y2c1{bottom:1103.828100px;}
.y293{bottom:1104.258150px;}
.y2f8{bottom:1113.659250px;}
.y192{bottom:1113.809100px;}
.yce{bottom:1114.559100px;}
.y1c7{bottom:1114.859100px;}
.y1cd{bottom:1115.777550px;}
.y161{bottom:1116.659100px;}
.y32c{bottom:1117.151100px;}
.y5b{bottom:1117.451100px;}
.y105{bottom:1118.159100px;}
.y129{bottom:1118.459100px;}
.y1fc{bottom:1129.778550px;}
.y292{bottom:1132.112100px;}
.ycd{bottom:1132.859100px;}
.y5a{bottom:1133.951100px;}
.y2be{bottom:1133.951250px;}
.y4{bottom:1155.259800px;}
.y1b{bottom:1159.171200px;}
.y95{bottom:1168.374600px;}
.y1a{bottom:1171.171200px;}
.y19{bottom:1183.171200px;}
.y98{bottom:1185.032850px;}
.y94{bottom:1199.855700px;}
.h1f{height:25.483477px;}
.h8{height:34.945312px;}
.he{height:34.968750px;}
.h15{height:35.156250px;}
.hf{height:35.179688px;}
.h5{height:39.312000px;}
.hc{height:39.313477px;}
.hb{height:39.339844px;}
.hd{height:39.550781px;}
.h1a{height:39.577148px;}
.h26{height:40.917129px;}
.h28{height:41.055478px;}
.h2b{height:41.056078px;}
.h22{height:42.041016px;}
.h16{height:43.710938px;}
.h14{height:43.974609px;}
.h1d{height:45.463477px;}
.h21{height:45.464077px;}
.h1e{height:45.617197px;}
.h20{height:45.617797px;}
.h30{height:48.082031px;}
.h31{height:48.339844px;}
.h19{height:48.372070px;}
.h3{height:50.484375px;}
.h12{height:52.416000px;}
.ha{height:52.417969px;}
.h2f{height:52.453125px;}
.h4{height:61.195312px;}
.h2d{height:61.564453px;}
.h1c{height:62.367188px;}
.h23{height:71.950181px;}
.h2c{height:71.950781px;}
.h24{height:71.951381px;}
.h25{height:71.977148px;}
.h29{height:73.455478px;}
.h10{height:76.394136px;}
.h2e{height:85.148438px;}
.h1b{height:103.945312px;}
.h17{height:103.945913px;}
.h27{height:104.377148px;}
.h2a{height:104.377748px;}
.h18{height:124.734375px;}
.h11{height:155.917969px;}
.h9{height:165.289051px;}
.h13{height:201.937500px;}
.h6{height:209.664000px;}
.h2{height:226.734144px;}
.h7{height:263.847656px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1e{left:-667.732650px;}
.x0{left:0.000000px;}
.x17{left:68.031450px;}
.x22{left:70.582650px;}
.x1a{left:72.283350px;}
.x2f{left:74.031450px;}
.x18{left:76.960650px;}
.x28{left:78.643050px;}
.x42{left:88.116150px;}
.xc{left:98.032500px;}
.xb{left:104.598450px;}
.x41{left:106.348350px;}
.x2c{left:107.925150px;}
.x23{left:110.551200px;}
.x2{left:127.133700px;}
.x5{left:132.371250px;}
.x37{left:136.489950px;}
.x1d{left:140.314950px;}
.x31{left:149.818200px;}
.x2d{left:172.070700px;}
.x40{left:178.582650px;}
.x49{left:186.097050px;}
.x2a{left:190.316850px;}
.x47{left:198.173850px;}
.x27{left:202.709400px;}
.x29{left:208.650750px;}
.x48{left:212.393850px;}
.x1c{left:214.597950px;}
.x46{left:220.631850px;}
.x9{left:225.295650px;}
.x3b{left:238.440900px;}
.x26{left:246.039450px;}
.x3e{left:252.514200px;}
.x44{left:268.706100px;}
.x35{left:275.545350px;}
.x1{left:292.535400px;}
.x43{left:299.518350px;}
.x2b{left:306.528000px;}
.x4a{left:313.698000px;}
.x4{left:341.574750px;}
.x45{left:374.189550px;}
.x34{left:384.445350px;}
.x3f{left:388.743900px;}
.x3{left:399.207150px;}
.x3c{left:401.433150px;}
.x38{left:409.770150px;}
.x2e{left:413.528250px;}
.x36{left:490.045350px;}
.x39{left:514.560900px;}
.x3a{left:515.806800px;}
.x32{left:518.464050px;}
.x1f{left:559.728000px;}
.x11{left:565.511850px;}
.x10{left:566.635800px;}
.x13{left:572.594700px;}
.xd{left:576.774000px;}
.x12{left:580.162050px;}
.x14{left:585.778350px;}
.x16{left:587.614200px;}
.x3d{left:588.946350px;}
.x30{left:593.960550px;}
.x15{left:607.149000px;}
.x8{left:611.427300px;}
.x1b{left:614.450550px;}
.x6{left:615.874650px;}
.xf{left:620.269950px;}
.x33{left:622.645350px;}
.x7{left:628.317000px;}
.xe{left:655.928250px;}
.xa{left:677.805750px;}
.x24{left:769.198500px;}
.x21{left:786.478200px;}
.x25{left:843.964950px;}
.x20{left:855.632400px;}
.x19{left:1452.641400px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:28.799467pt;}
.v6{vertical-align:57.600000pt;}
.v1{vertical-align:76.800533pt;}
.ls9{letter-spacing:-3.946667pt;}
.ls11{letter-spacing:-1.584000pt;}
.ls5{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls10{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.007467pt;}
.ls2{letter-spacing:1.680000pt;}
.ls8{letter-spacing:1.866667pt;}
.lsb{letter-spacing:6.400000pt;}
.lsa{letter-spacing:8.000000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls6{letter-spacing:32.000000pt;}
.ls7{letter-spacing:51.200000pt;}
.lse{letter-spacing:164.367467pt;}
.lsd{letter-spacing:254.922667pt;}
.lsc{letter-spacing:444.778667pt;}
.ws15{word-spacing:-107.520000pt;}
.ws2{word-spacing:-88.960000pt;}
.ws13{word-spacing:-87.792533pt;}
.ws0{word-spacing:-66.442240pt;}
.ws1{word-spacing:-61.440000pt;}
.ws66{word-spacing:-48.000000pt;}
.ws7c{word-spacing:-47.376000pt;}
.ws14{word-spacing:-32.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws6f{word-spacing:-20.480000pt;}
.ws85{word-spacing:-17.792000pt;}
.ws25{word-spacing:-16.693333pt;}
.ws37{word-spacing:-14.826667pt;}
.ws58{word-spacing:-14.400000pt;}
.ws1e{word-spacing:-14.026667pt;}
.ws7{word-spacing:-13.344000pt;}
.ws82{word-spacing:-13.296000pt;}
.ws20{word-spacing:-12.586667pt;}
.ws65{word-spacing:-12.533333pt;}
.ws57{word-spacing:-12.480000pt;}
.ws26{word-spacing:-12.426667pt;}
.ws27{word-spacing:-12.373333pt;}
.ws45{word-spacing:-12.320000pt;}
.ws48{word-spacing:-12.266667pt;}
.ws4e{word-spacing:-12.213333pt;}
.ws3e{word-spacing:-12.160000pt;}
.ws39{word-spacing:-12.106667pt;}
.ws21{word-spacing:-12.053333pt;}
.ws3{word-spacing:-11.861333pt;}
.ws3c{word-spacing:-11.466667pt;}
.ws24{word-spacing:-10.880000pt;}
.ws33{word-spacing:-10.773333pt;}
.ws1a{word-spacing:-10.506667pt;}
.ws4{word-spacing:-10.243179pt;}
.ws54{word-spacing:-9.760000pt;}
.ws35{word-spacing:-9.653333pt;}
.ws23{word-spacing:-9.600000pt;}
.ws3d{word-spacing:-9.546667pt;}
.ws43{word-spacing:-9.493333pt;}
.ws19{word-spacing:-9.440000pt;}
.ws5a{word-spacing:-9.386667pt;}
.ws4b{word-spacing:-9.333333pt;}
.ws3b{word-spacing:-9.280000pt;}
.ws3f{word-spacing:-9.226667pt;}
.ws2b{word-spacing:-9.173333pt;}
.ws42{word-spacing:-9.120000pt;}
.ws4d{word-spacing:-9.066667pt;}
.ws5e{word-spacing:-9.013333pt;}
.ws70{word-spacing:-8.643947pt;}
.ws5c{word-spacing:-8.480000pt;}
.ws22{word-spacing:-8.426667pt;}
.ws67{word-spacing:-8.000000pt;}
.ws78{word-spacing:-7.779552pt;}
.ws63{word-spacing:-7.520000pt;}
.ws8{word-spacing:-7.467271pt;}
.ws62{word-spacing:-7.413333pt;}
.ws79{word-spacing:-6.810667pt;}
.ws47{word-spacing:-6.773333pt;}
.ws4c{word-spacing:-6.720000pt;}
.ws46{word-spacing:-6.666667pt;}
.ws32{word-spacing:-6.613333pt;}
.ws1b{word-spacing:-6.506667pt;}
.ws1c{word-spacing:-6.453333pt;}
.ws18{word-spacing:-6.400000pt;}
.ws50{word-spacing:-6.346667pt;}
.ws1d{word-spacing:-6.293333pt;}
.ws51{word-spacing:-6.240000pt;}
.ws36{word-spacing:-6.186667pt;}
.ws34{word-spacing:-6.133333pt;}
.ws53{word-spacing:-5.833067pt;}
.ws49{word-spacing:-5.546667pt;}
.ws2f{word-spacing:-5.440000pt;}
.ws59{word-spacing:-5.280000pt;}
.ws5f{word-spacing:-4.533333pt;}
.ws2c{word-spacing:-3.786667pt;}
.ws64{word-spacing:-3.680000pt;}
.ws1f{word-spacing:-3.626667pt;}
.ws52{word-spacing:-3.573333pt;}
.ws28{word-spacing:-3.520000pt;}
.ws3a{word-spacing:-3.466667pt;}
.ws16{word-spacing:-3.451261pt;}
.ws29{word-spacing:-3.413333pt;}
.ws5b{word-spacing:-3.360000pt;}
.ws56{word-spacing:-3.306667pt;}
.ws17{word-spacing:-3.253333pt;}
.ws2e{word-spacing:-3.200000pt;}
.ws4a{word-spacing:-3.146667pt;}
.ws4f{word-spacing:-2.986667pt;}
.wsb{word-spacing:-2.640000pt;}
.wsa{word-spacing:-2.592000pt;}
.ws61{word-spacing:-2.453333pt;}
.ws44{word-spacing:-2.240000pt;}
.wsc{word-spacing:-1.776000pt;}
.ws2d{word-spacing:-1.653333pt;}
.ws40{word-spacing:-1.600000pt;}
.ws41{word-spacing:-1.578667pt;}
.ws2a{word-spacing:-1.013333pt;}
.wse{word-spacing:-0.981333pt;}
.ws9{word-spacing:-0.816000pt;}
.ws60{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.746667pt;}
.ws55{word-spacing:-0.693333pt;}
.ws30{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.586667pt;}
.ws5d{word-spacing:-0.533333pt;}
.ws5{word-spacing:0.000000pt;}
.ws6a{word-spacing:1.584000pt;}
.ws6d{word-spacing:1.968000pt;}
.ws69{word-spacing:3.120000pt;}
.wsf{word-spacing:3.285333pt;}
.ws6c{word-spacing:3.552000pt;}
.ws6b{word-spacing:3.648000pt;}
.ws6e{word-spacing:4.176000pt;}
.ws10{word-spacing:5.162667pt;}
.ws68{word-spacing:8.448000pt;}
.wsd{word-spacing:11.818667pt;}
.ws11{word-spacing:17.280000pt;}
.ws81{word-spacing:44.842133pt;}
.ws80{word-spacing:54.763733pt;}
.ws12{word-spacing:72.016000pt;}
.ws75{word-spacing:128.938667pt;}
.ws71{word-spacing:145.535467pt;}
.ws7a{word-spacing:160.160000pt;}
.ws72{word-spacing:162.211200pt;}
.ws76{word-spacing:176.127467pt;}
.ws73{word-spacing:176.209067pt;}
.ws7f{word-spacing:214.795200pt;}
.ws77{word-spacing:258.677867pt;}
.ws84{word-spacing:267.011733pt;}
.ws7d{word-spacing:338.435733pt;}
.ws7b{word-spacing:345.548800pt;}
.ws7e{word-spacing:366.302400pt;}
.ws74{word-spacing:373.258667pt;}
.ws83{word-spacing:585.973867pt;}
._0{margin-left:-15.226347pt;}
._13{margin-left:-13.292053pt;}
._7{margin-left:-11.956816pt;}
._1{margin-left:-10.243179pt;}
._6{margin-left:-8.324090pt;}
._b{margin-left:-7.347200pt;}
._11{margin-left:-6.410667pt;}
._9{margin-left:-5.308800pt;}
._4{margin-left:-3.552000pt;}
._3{margin-left:-2.099200pt;}
._2{margin-left:-1.196800pt;}
._5{width:0.950400pt;}
._a{width:2.678400pt;}
._c{width:3.626667pt;}
._d{width:4.533333pt;}
._14{width:6.020800pt;}
._15{width:7.385600pt;}
._e{width:8.480000pt;}
._f{width:9.440000pt;}
._18{width:10.448000pt;}
._16{width:11.418667pt;}
._17{width:12.761600pt;}
._19{width:13.780267pt;}
._1c{width:16.032000pt;}
._1b{width:17.699200pt;}
._1a{width:18.613333pt;}
._27{width:19.847467pt;}
._2f{width:22.227200pt;}
._2e{width:23.269333pt;}
._31{width:25.763200pt;}
._32{width:29.315200pt;}
._29{width:31.786667pt;}
._28{width:43.626667pt;}
._20{width:50.140800pt;}
._30{width:52.450667pt;}
._2a{width:72.333333pt;}
._21{width:73.783467pt;}
._24{width:78.605867pt;}
._23{width:85.516800pt;}
._2c{width:87.933333pt;}
._10{width:111.574558pt;}
._12{width:127.883200pt;}
._2d{width:162.264000pt;}
._25{width:195.296000pt;}
._26{width:217.306667pt;}
._1e{width:227.584533pt;}
._2b{width:233.214400pt;}
._22{width:254.026667pt;}
._8{width:278.483142pt;}
._1d{width:294.819733pt;}
._1f{width:297.367467pt;}
.fsf{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fsd{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:93.277333pt;}
.fsb{font-size:106.666667pt;}
.fs10{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:160.000000pt;}
.fs7{font-size:201.818133pt;}
.fs4{font-size:256.000000pt;}
.fs0{font-size:276.842667pt;}
.fs5{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:67.861067pt;}
.y1cc{bottom:67.946267pt;}
.y96{bottom:94.488133pt;}
.y291{bottom:95.286133pt;}
.y32b{bottom:98.626800pt;}
.y267{bottom:100.226933pt;}
.y231{bottom:100.329467pt;}
.y191{bottom:100.415733pt;}
.y2bd{bottom:100.422533pt;}
.y1c6{bottom:100.549067pt;}
.y160{bottom:101.436133pt;}
.y2f7{bottom:101.711467pt;}
.y128{bottom:102.190000pt;}
.y104{bottom:102.769467pt;}
.y1fb{bottom:102.777467pt;}
.y21{bottom:103.508667pt;}
.y93{bottom:103.600667pt;}
.y59{bottom:104.576800pt;}
.ycc{bottom:105.417333pt;}
.y355{bottom:110.488133pt;}
.y290{bottom:111.286133pt;}
.y32a{bottom:114.093467pt;}
.y15f{bottom:114.236267pt;}
.y1c5{bottom:114.282400pt;}
.y3{bottom:114.787733pt;}
.y190{bottom:114.815733pt;}
.y127{bottom:115.256667pt;}
.y103{bottom:115.836267pt;}
.y266{bottom:116.226933pt;}
.y230{bottom:116.729467pt;}
.y1fa{bottom:117.177467pt;}
.y2bc{bottom:117.622533pt;}
.y2f6{bottom:117.711467pt;}
.y92{bottom:117.734000pt;}
.y20{bottom:117.908667pt;}
.ycb{bottom:118.217333pt;}
.y28f{bottom:127.286133pt;}
.y58{bottom:128.135733pt;}
.y329{bottom:129.560133pt;}
.y1f9{bottom:131.577467pt;}
.y91{bottom:131.867333pt;}
.y102{bottom:132.102800pt;}
.y265{bottom:132.226933pt;}
.y1f{bottom:132.308667pt;}
.y22f{bottom:133.129467pt;}
.y2f5{bottom:133.711467pt;}
.y15e{bottom:134.015733pt;}
.y2{bottom:134.341733pt;}
.y1c4{bottom:134.995333pt;}
.y126{bottom:135.302933pt;}
.y18f{bottom:136.195333pt;}
.yca{bottom:137.996800pt;}
.y2bb{bottom:142.381600pt;}
.y28e{bottom:143.286133pt;}
.y57{bottom:144.135733pt;}
.y328{bottom:145.026800pt;}
.y90{bottom:146.000667pt;}
.y15d{bottom:146.815733pt;}
.y264{bottom:148.226933pt;}
.y125{bottom:148.369600pt;}
.y1c3{bottom:148.728533pt;}
.y2f4{bottom:149.711467pt;}
.y18e{bottom:150.595333pt;}
.yc9{bottom:150.796800pt;}
.y101{bottom:152.149067pt;}
.y1f8{bottom:153.536533pt;}
.y22e{bottom:153.969467pt;}
.y28d{bottom:159.286133pt;}
.y8f{bottom:160.134000pt;}
.y56{bottom:160.135733pt;}
.y327{bottom:160.493467pt;}
.y263{bottom:164.226933pt;}
.y124{bottom:164.636267pt;}
.y100{bottom:165.215733pt;}
.y2f3{bottom:165.711467pt;}
.y22d{bottom:165.929467pt;}
.y15c{bottom:166.595333pt;}
.y2ba{bottom:167.140667pt;}
.y1f7{bottom:167.936533pt;}
.y1c2{bottom:169.441467pt;}
.yc8{bottom:170.576400pt;}
.y18d{bottom:171.974800pt;}
.y8e{bottom:174.267333pt;}
.y28c{bottom:175.286133pt;}
.y326{bottom:175.960133pt;}
.y55{bottom:176.135733pt;}
.y15b{bottom:179.395200pt;}
.y262{bottom:180.226933pt;}
.yff{bottom:181.482400pt;}
.y2f2{bottom:181.711467pt;}
.y22c{bottom:182.329467pt;}
.y1f6{bottom:182.336533pt;}
.y1c1{bottom:183.174800pt;}
.yc7{bottom:183.376400pt;}
.y2b9{bottom:184.340667pt;}
.y123{bottom:184.682400pt;}
.y18c{bottom:186.374800pt;}
.y8d{bottom:188.400667pt;}
.y28b{bottom:191.286133pt;}
.y325{bottom:191.426800pt;}
.y54{bottom:192.135733pt;}
.y261{bottom:196.226933pt;}
.y1f5{bottom:196.736533pt;}
.y2f1{bottom:197.711467pt;}
.y122{bottom:197.749067pt;}
.y22b{bottom:198.729467pt;}
.y15a{bottom:199.174800pt;}
.yfe{bottom:201.528667pt;}
.y8c{bottom:202.534000pt;}
.yc6{bottom:203.155867pt;}
.y1c0{bottom:203.887733pt;}
.y18b{bottom:203.974800pt;}
.y324{bottom:206.893467pt;}
.y53{bottom:208.135867pt;}
.y2b8{bottom:209.099733pt;}
.y1f4{bottom:211.136533pt;}
.y4f{bottom:211.893600pt;}
.y159{bottom:211.974800pt;}
.y260{bottom:212.226933pt;}
.y2f0{bottom:213.711467pt;}
.yfd{bottom:214.595333pt;}
.y28a{bottom:214.845200pt;}
.y22a{bottom:215.129467pt;}
.yc5{bottom:215.955867pt;}
.y8b{bottom:216.667333pt;}
.y1{bottom:217.394533pt;}
.y1bf{bottom:217.621067pt;}
.y121{bottom:217.795333pt;}
.y323{bottom:222.360133pt;}
.y18a{bottom:225.354267pt;}
.y1f3{bottom:225.536533pt;}
.y4e{bottom:226.560267pt;}
.y25f{bottom:228.226933pt;}
.y2ef{bottom:229.711467pt;}
.y8a{bottom:230.800667pt;}
.y120{bottom:230.862000pt;}
.y229{bottom:231.529467pt;}
.y52{bottom:231.694800pt;}
.y158{bottom:231.754267pt;}
.y2b7{bottom:233.858800pt;}
.yfc{bottom:234.641467pt;}
.yc4{bottom:235.735467pt;}
.y322{bottom:237.826800pt;}
.y1be{bottom:238.333867pt;}
.y289{bottom:238.404267pt;}
.y189{bottom:239.754267pt;}
.y1f2{bottom:239.936533pt;}
.y4d{bottom:241.226933pt;}
.y25e{bottom:244.226933pt;}
.y157{bottom:244.554400pt;}
.y89{bottom:244.934000pt;}
.y2ee{bottom:245.711467pt;}
.yfb{bottom:247.708133pt;}
.y228{bottom:247.929467pt;}
.yc3{bottom:248.535467pt;}
.y11f{bottom:250.908133pt;}
.y1bd{bottom:252.067200pt;}
.y321{bottom:253.293467pt;}
.y1f1{bottom:254.336533pt;}
.y288{bottom:254.404267pt;}
.y51{bottom:255.253867pt;}
.y4c{bottom:255.893600pt;}
.y2b6{bottom:258.617867pt;}
.y88{bottom:259.067333pt;}
.y25d{bottom:260.226933pt;}
.y156{bottom:260.554400pt;}
.y188{bottom:261.133867pt;}
.y2ed{bottom:261.711467pt;}
.yfa{bottom:263.974800pt;}
.y227{bottom:264.329467pt;}
.yc2{bottom:268.314933pt;}
.y1f0{bottom:268.736533pt;}
.y320{bottom:268.760133pt;}
.y287{bottom:270.404267pt;}
.y4b{bottom:270.560267pt;}
.y50{bottom:271.253867pt;}
.y1bc{bottom:272.780000pt;}
.y87{bottom:273.200667pt;}
.y187{bottom:275.533867pt;}
.y2b5{bottom:275.817867pt;}
.y25c{bottom:276.226933pt;}
.y2ec{bottom:277.711467pt;}
.y11e{bottom:280.241467pt;}
.y155{bottom:280.333867pt;}
.y226{bottom:280.729467pt;}
.yc1{bottom:281.114933pt;}
.yf9{bottom:284.020933pt;}
.y31f{bottom:284.226800pt;}
.y4a{bottom:285.226933pt;}
.y286{bottom:286.404267pt;}
.y1bb{bottom:286.513467pt;}
.y1ef{bottom:288.139467pt;}
.y2b4{bottom:293.017867pt;}
.y154{bottom:293.133867pt;}
.y2eb{bottom:293.711467pt;}
.y16{bottom:294.285600pt;}
.yf8{bottom:297.087600pt;}
.y225{bottom:297.129467pt;}
.y31e{bottom:299.693467pt;}
.y25b{bottom:299.785867pt;}
.y49{bottom:299.893600pt;}
.y11d{bottom:300.287733pt;}
.yc0{bottom:300.894400pt;}
.y285{bottom:302.404267pt;}
.y1ee{bottom:302.539467pt;}
.y1ba{bottom:303.446667pt;}
.y15{bottom:308.685600pt;}
.y153{bottom:309.133867pt;}
.y2ea{bottom:309.711467pt;}
.yf7{bottom:313.354267pt;}
.y224{bottom:313.529467pt;}
.ybf{bottom:313.694400pt;}
.y186{bottom:314.513467pt;}
.y48{bottom:314.560267pt;}
.y31d{bottom:315.160133pt;}
.y1ed{bottom:316.939467pt;}
.y2b3{bottom:317.776800pt;}
.y284{bottom:318.404267pt;}
.y14{bottom:323.085600pt;}
.y35a{bottom:323.331733pt;}
.y1b9{bottom:324.159600pt;}
.y2e9{bottom:325.711467pt;}
.y34b{bottom:328.095867pt;}
.y152{bottom:328.913467pt;}
.y47{bottom:329.226933pt;}
.y11c{bottom:329.621067pt;}
.ybe{bottom:329.694400pt;}
.y223{bottom:329.929467pt;}
.yf6{bottom:333.400533pt;}
.y283{bottom:334.404267pt;}
.y25a{bottom:334.985867pt;}
.y13{bottom:337.485600pt;}
.y1b8{bottom:337.892933pt;}
.y1ec{bottom:338.898533pt;}
.y359{bottom:340.931733pt;}
.y2e8{bottom:341.711467pt;}
.y151{bottom:341.713333pt;}
.y2b2{bottom:342.536000pt;}
.y46{bottom:343.893600pt;}
.y222{bottom:346.329467pt;}
.yf5{bottom:346.467200pt;}
.y185{bottom:346.513333pt;}
.y86{bottom:347.505067pt;}
.y31c{bottom:347.693467pt;}
.ybd{bottom:349.474000pt;}
.y11b{bottom:349.667200pt;}
.y282{bottom:350.404267pt;}
.y259{bottom:350.985867pt;}
.y12{bottom:351.885600pt;}
.y1eb{bottom:353.298533pt;}
.y17{bottom:353.950267pt;}
.y34a{bottom:354.854933pt;}
.y2e7{bottom:357.711467pt;}
.y358{bottom:358.531733pt;}
.y45{bottom:358.560267pt;}
.y1b7{bottom:358.605733pt;}
.y2b1{bottom:359.736000pt;}
.y150{bottom:361.492933pt;}
.y85{bottom:362.171733pt;}
.ybc{bottom:362.274000pt;}
.y221{bottom:362.729467pt;}
.yf4{bottom:362.733867pt;}
.y31b{bottom:364.760133pt;}
.y11{bottom:366.285600pt;}
.y281{bottom:366.404267pt;}
.y258{bottom:366.985867pt;}
.y1ea{bottom:367.698533pt;}
.y184{bottom:367.892933pt;}
.y1b6{bottom:372.339067pt;}
.y44{bottom:373.226933pt;}
.y2e6{bottom:373.711467pt;}
.y14f{bottom:374.292933pt;}
.y357{bottom:376.131733pt;}
.y84{bottom:376.838400pt;}
.y11a{bottom:379.000533pt;}
.y10{bottom:380.685600pt;}
.y349{bottom:381.614000pt;}
.y31a{bottom:381.826800pt;}
.ybb{bottom:382.053467pt;}
.y1e9{bottom:382.098533pt;}
.y183{bottom:382.292933pt;}
.yf3{bottom:382.780133pt;}
.y257{bottom:382.985867pt;}
.y2b0{bottom:384.494933pt;}
.y220{bottom:386.688533pt;}
.y43{bottom:387.893600pt;}
.y1b5{bottom:389.272400pt;}
.y2e5{bottom:389.711467pt;}
.y14e{bottom:390.292933pt;}
.y83{bottom:391.505067pt;}
.y356{bottom:393.731733pt;}
.yba{bottom:394.853467pt;}
.yf{bottom:395.085600pt;}
.yf2{bottom:395.846667pt;}
.y1e8{bottom:396.498533pt;}
.y319{bottom:398.893467pt;}
.y256{bottom:398.985867pt;}
.y119{bottom:399.046667pt;}
.y280{bottom:400.494267pt;}
.y2af{bottom:401.694933pt;}
.y42{bottom:402.560267pt;}
.y182{bottom:403.672400pt;}
.y2e4{bottom:405.711467pt;}
.y82{bottom:406.171733pt;}
.y348{bottom:408.373067pt;}
.ye{bottom:409.485600pt;}
.y1b4{bottom:409.985333pt;}
.y14d{bottom:410.072533pt;}
.y1e7{bottom:410.898533pt;}
.yf1{bottom:412.113467pt;}
.yb9{bottom:414.633067pt;}
.y27f{bottom:414.894267pt;}
.y255{bottom:414.985867pt;}
.y318{bottom:415.960133pt;}
.y41{bottom:417.226933pt;}
.y181{bottom:418.072533pt;}
.y18{bottom:419.111067pt;}
.y81{bottom:420.838400pt;}
.y2e3{bottom:421.711467pt;}
.y21f{bottom:422.688533pt;}
.y14c{bottom:422.872400pt;}
.y1b3{bottom:423.718667pt;}
.yd{bottom:423.885600pt;}
.y1e6{bottom:425.298533pt;}
.y2ae{bottom:426.454000pt;}
.yb8{bottom:427.433067pt;}
.y118{bottom:428.380000pt;}
.y254{bottom:430.985867pt;}
.y40{bottom:431.893600pt;}
.yf0{bottom:432.159600pt;}
.y317{bottom:433.026800pt;}
.y347{bottom:435.132133pt;}
.y80{bottom:435.505067pt;}
.y2e2{bottom:437.711467pt;}
.yc{bottom:438.285600pt;}
.y27e{bottom:438.477067pt;}
.y14b{bottom:438.872400pt;}
.y21e{bottom:439.088533pt;}
.y180{bottom:439.452000pt;}
.y1e5{bottom:439.698533pt;}
.y1b2{bottom:440.652000pt;}
.yb7{bottom:443.433067pt;}
.y2ad{bottom:443.654000pt;}
.yef{bottom:445.226267pt;}
.y3f{bottom:446.560267pt;}
.y253{bottom:446.985867pt;}
.y117{bottom:448.426267pt;}
.y316{bottom:450.093467pt;}
.y7f{bottom:450.171733pt;}
.yb{bottom:452.685600pt;}
.y27d{bottom:452.877200pt;}
.y2e1{bottom:453.711467pt;}
.y17f{bottom:453.852000pt;}
.y21d{bottom:455.488533pt;}
.y14a{bottom:458.652000pt;}
.y1e4{bottom:459.101600pt;}
.y3e{bottom:461.226933pt;}
.y1b1{bottom:461.364800pt;}
.yee{bottom:461.492933pt;}
.y346{bottom:461.891200pt;}
.y252{bottom:462.985867pt;}
.yb6{bottom:463.212533pt;}
.y7e{bottom:464.838400pt;}
.ya{bottom:467.085600pt;}
.y315{bottom:467.160133pt;}
.y2ac{bottom:468.413067pt;}
.y2e0{bottom:469.711467pt;}
.y149{bottom:471.452000pt;}
.y21c{bottom:471.888533pt;}
.y1e3{bottom:473.501600pt;}
.y1b0{bottom:475.098133pt;}
.y17e{bottom:475.231467pt;}
.y3d{bottom:475.893600pt;}
.yb5{bottom:476.012533pt;}
.y27c{bottom:476.460133pt;}
.y251{bottom:478.985867pt;}
.y7d{bottom:479.505067pt;}
.y9{bottom:481.485600pt;}
.yed{bottom:481.539067pt;}
.y314{bottom:484.226800pt;}
.y2ab{bottom:485.613067pt;}
.y2df{bottom:485.711467pt;}
.y148{bottom:487.452000pt;}
.y1e2{bottom:487.901600pt;}
.y21b{bottom:488.288533pt;}
.y345{bottom:488.650267pt;}
.y17d{bottom:489.631467pt;}
.y3c{bottom:490.560267pt;}
.y27b{bottom:490.860133pt;}
.y1af{bottom:492.031467pt;}
.y7c{bottom:494.171733pt;}
.yec{bottom:494.605733pt;}
.y250{bottom:494.985867pt;}
.yb4{bottom:495.792133pt;}
.y8{bottom:495.885600pt;}
.y313{bottom:501.293467pt;}
.y2de{bottom:501.711467pt;}
.y21a{bottom:504.688533pt;}
.y3b{bottom:505.226933pt;}
.y147{bottom:507.231467pt;}
.yb3{bottom:508.592133pt;}
.y354{bottom:508.733600pt;}
.y7b{bottom:508.838400pt;}
.y1e1{bottom:509.860533pt;}
.y7{bottom:510.285600pt;}
.y2aa{bottom:510.372133pt;}
.y116{bottom:510.872400pt;}
.y24f{bottom:510.985867pt;}
.y17c{bottom:511.011067pt;}
.y1ae{bottom:512.744400pt;}
.y27a{bottom:514.443067pt;}
.yeb{bottom:514.652000pt;}
.y344{bottom:515.409200pt;}
.y2dd{bottom:517.711467pt;}
.y312{bottom:518.360133pt;}
.y3a{bottom:519.893600pt;}
.y146{bottom:520.031467pt;}
.y219{bottom:521.088533pt;}
.y7a{bottom:523.505067pt;}
.y1e0{bottom:524.260667pt;}
.y6{bottom:524.685733pt;}
.y17b{bottom:525.411067pt;}
.y353{bottom:526.333600pt;}
.y1ad{bottom:526.477733pt;}
.y24e{bottom:526.985867pt;}
.yea{bottom:527.718667pt;}
.yb2{bottom:528.371600pt;}
.y279{bottom:528.843067pt;}
.y115{bottom:530.918667pt;}
.y2dc{bottom:533.711467pt;}
.y39{bottom:534.560267pt;}
.y2a9{bottom:535.131200pt;}
.y311{bottom:535.426800pt;}
.y145{bottom:536.031467pt;}
.y218{bottom:537.488533pt;}
.y79{bottom:538.171733pt;}
.y1df{bottom:538.660667pt;}
.y5{bottom:539.085600pt;}
.yb1{bottom:541.171600pt;}
.y343{bottom:542.168400pt;}
.y24d{bottom:542.985867pt;}
.y352{bottom:543.933600pt;}
.y114{bottom:543.985333pt;}
.y17a{bottom:546.790533pt;}
.y1ac{bottom:547.190533pt;}
.ye9{bottom:547.764800pt;}
.y38{bottom:549.226933pt;}
.y2db{bottom:549.711467pt;}
.y278{bottom:552.426000pt;}
.y310{bottom:552.493467pt;}
.y78{bottom:552.838400pt;}
.y1de{bottom:553.060667pt;}
.y217{bottom:553.888533pt;}
.y144{bottom:555.811067pt;}
.y24c{bottom:558.985867pt;}
.y277{bottom:559.626000pt;}
.y2a8{bottom:559.890267pt;}
.ye8{bottom:560.831467pt;}
.y1ab{bottom:560.923867pt;}
.yb0{bottom:560.951067pt;}
.y179{bottom:561.190533pt;}
.y351{bottom:561.533600pt;}
.y37{bottom:563.893600pt;}
.y113{bottom:564.031467pt;}
.y1dd{bottom:567.460667pt;}
.y77{bottom:567.505067pt;}
.y143{bottom:568.611067pt;}
.y342{bottom:568.927467pt;}
.y30f{bottom:569.560133pt;}
.y216{bottom:570.288533pt;}
.yaf{bottom:573.751200pt;}
.y24b{bottom:574.985867pt;}
.y2a7{bottom:577.090267pt;}
.y112{bottom:577.098133pt;}
.y1aa{bottom:577.857200pt;}
.y36{bottom:578.560267pt;}
.ye7{bottom:580.877733pt;}
.y1dc{bottom:581.860667pt;}
.y76{bottom:582.171733pt;}
.y178{bottom:582.570133pt;}
.y142{bottom:584.611067pt;}
.y30e{bottom:586.626800pt;}
.y215{bottom:586.688533pt;}
.y2da{bottom:589.084533pt;}
.yae{bottom:589.751200pt;}
.y276{bottom:590.408933pt;}
.y24a{bottom:590.985867pt;}
.y35{bottom:593.226933pt;}
.ye6{bottom:593.944400pt;}
.y2a6{bottom:594.290267pt;}
.y341{bottom:595.686400pt;}
.y1db{bottom:596.260667pt;}
.y2d7{bottom:596.284533pt;}
.y75{bottom:596.838400pt;}
.y177{bottom:596.970133pt;}
.y111{bottom:597.144400pt;}
.y275{bottom:597.608933pt;}
.y1a9{bottom:598.570133pt;}
.y141{bottom:600.611067pt;}
.y214{bottom:603.088533pt;}
.y2d9{bottom:603.484533pt;}
.y30d{bottom:603.693467pt;}
.y249{bottom:606.985867pt;}
.y34{bottom:607.893600pt;}
.yad{bottom:609.530667pt;}
.y110{bottom:610.211067pt;}
.y1da{bottom:610.660667pt;}
.y2d6{bottom:610.684533pt;}
.y2a5{bottom:611.490267pt;}
.y74{bottom:611.505067pt;}
.y1a8{bottom:612.303467pt;}
.ye5{bottom:613.990533pt;}
.y2d8{bottom:617.884533pt;}
.y176{bottom:618.349600pt;}
.y213{bottom:619.488533pt;}
.y140{bottom:620.390533pt;}
.y30c{bottom:620.760133pt;}
.yac{bottom:622.330667pt;}
.y340{bottom:622.445467pt;}
.y33{bottom:622.560267pt;}
.y248{bottom:622.985867pt;}
.y1d9{bottom:625.060667pt;}
.y73{bottom:626.171733pt;}
.ye4{bottom:627.057200pt;}
.y274{bottom:628.391867pt;}
.y1a7{bottom:629.236800pt;}
.y10f{bottom:630.257200pt;}
.y175{bottom:632.749600pt;}
.y13f{bottom:633.190533pt;}
.y273{bottom:635.591867pt;}
.y212{bottom:635.888533pt;}
.y2a4{bottom:636.249333pt;}
.y32{bottom:637.226933pt;}
.y30b{bottom:637.826800pt;}
.yab{bottom:638.330667pt;}
.y247{bottom:638.985867pt;}
.y1d8{bottom:639.460667pt;}
.y72{bottom:640.838400pt;}
.y10e{bottom:643.323867pt;}
.ye3{bottom:647.103467pt;}
.y33f{bottom:649.204533pt;}
.y1a6{bottom:649.949600pt;}
.y174{bottom:650.349600pt;}
.y31{bottom:651.893600pt;}
.y2d5{bottom:652.033867pt;}
.y211{bottom:652.288533pt;}
.y13e{bottom:652.970133pt;}
.y30a{bottom:654.893467pt;}
.y246{bottom:654.985867pt;}
.y71{bottom:655.505067pt;}
.yaa{bottom:658.110133pt;}
.y2d3{bottom:659.233867pt;}
.ye2{bottom:660.170133pt;}
.y10d{bottom:663.370133pt;}
.y1a5{bottom:663.682933pt;}
.y13d{bottom:665.770133pt;}
.y272{bottom:666.374800pt;}
.y2d2{bottom:666.433867pt;}
.y30{bottom:666.560267pt;}
.y2a3{bottom:668.567467pt;}
.y210{bottom:668.688533pt;}
.y70{bottom:670.171733pt;}
.ya9{bottom:670.910133pt;}
.y245{bottom:670.985867pt;}
.y173{bottom:671.729200pt;}
.y309{bottom:671.960133pt;}
.y271{bottom:673.574933pt;}
.y33e{bottom:675.963600pt;}
.y10c{bottom:676.436800pt;}
.y34c{bottom:676.535467pt;}
.ye1{bottom:680.216267pt;}
.y2d4{bottom:680.833867pt;}
.y2f{bottom:681.226933pt;}
.y1a4{bottom:684.395867pt;}
.y6f{bottom:684.838400pt;}
.y20f{bottom:685.088533pt;}
.y13c{bottom:685.549600pt;}
.y2a2{bottom:685.767467pt;}
.y172{bottom:686.129200pt;}
.y244{bottom:686.985867pt;}
.y308{bottom:689.026800pt;}
.ya8{bottom:690.689733pt;}
.ye0{bottom:693.282933pt;}
.y2e{bottom:695.893600pt;}
.y10b{bottom:696.482933pt;}
.y1a3{bottom:698.129200pt;}
.y13b{bottom:698.349600pt;}
.y6e{bottom:699.505067pt;}
.y20e{bottom:701.488533pt;}
.y1d7{bottom:702.202267pt;}
.y270{bottom:702.267867pt;}
.y33d{bottom:702.722667pt;}
.y2a1{bottom:702.967467pt;}
.y243{bottom:702.985867pt;}
.ya7{bottom:703.489733pt;}
.y171{bottom:703.729200pt;}
.y307{bottom:706.093467pt;}
.ydf{bottom:709.549600pt;}
.y2d{bottom:710.560267pt;}
.y6d{bottom:714.171733pt;}
.y13a{bottom:714.349600pt;}
.y2d1{bottom:714.983200pt;}
.y350{bottom:716.515333pt;}
.y20d{bottom:717.888533pt;}
.y1d6{bottom:718.202267pt;}
.y1a2{bottom:718.842000pt;}
.y242{bottom:718.985867pt;}
.y306{bottom:723.160133pt;}
.ya6{bottom:723.269333pt;}
.y170{bottom:725.108667pt;}
.y2c{bottom:725.226933pt;}
.y2a0{bottom:727.726533pt;}
.y6c{bottom:728.838400pt;}
.y2cf{bottom:729.383200pt;}
.y33c{bottom:729.481733pt;}
.yde{bottom:729.595733pt;}
.y1a1{bottom:732.575333pt;}
.y26f{bottom:732.667867pt;}
.y139{bottom:734.129200pt;}
.y1d5{bottom:734.202267pt;}
.y20c{bottom:734.288533pt;}
.y241{bottom:734.985867pt;}
.ya5{bottom:736.069200pt;}
.y16f{bottom:739.508667pt;}
.y2b{bottom:739.893600pt;}
.y305{bottom:740.226800pt;}
.ydd{bottom:742.662400pt;}
.y34f{bottom:743.274267pt;}
.y6b{bottom:743.505067pt;}
.y2ce{bottom:743.783200pt;}
.y29f{bottom:744.926533pt;}
.y138{bottom:746.929067pt;}
.y26e{bottom:748.667867pt;}
.y1d4{bottom:750.202267pt;}
.y20b{bottom:750.688533pt;}
.y240{bottom:750.985867pt;}
.y1a0{bottom:753.288267pt;}
.y2a{bottom:754.560267pt;}
.ya4{bottom:755.848800pt;}
.y33b{bottom:756.240800pt;}
.y16e{bottom:757.108667pt;}
.y304{bottom:757.293467pt;}
.y6a{bottom:758.171733pt;}
.y2d0{bottom:758.183333pt;}
.y29e{bottom:762.126400pt;}
.ydc{bottom:762.708667pt;}
.y26d{bottom:764.667867pt;}
.y1d3{bottom:766.202267pt;}
.y137{bottom:766.708667pt;}
.y23f{bottom:766.985867pt;}
.y19f{bottom:767.021600pt;}
.y20a{bottom:767.088533pt;}
.ya3{bottom:768.648800pt;}
.y29{bottom:769.226933pt;}
.y34e{bottom:770.033467pt;}
.y69{bottom:772.838400pt;}
.y303{bottom:774.360133pt;}
.ydb{bottom:775.775333pt;}
.y16d{bottom:778.488133pt;}
.y136{bottom:779.508667pt;}
.y26c{bottom:780.667867pt;}
.y23e{bottom:782.985867pt;}
.y33a{bottom:782.999867pt;}
.y209{bottom:783.488533pt;}
.y28{bottom:783.893600pt;}
.y19e{bottom:783.954933pt;}
.ya2{bottom:784.648800pt;}
.y29d{bottom:786.885600pt;}
.y68{bottom:787.505067pt;}
.y302{bottom:791.426800pt;}
.y2cd{bottom:792.332533pt;}
.y16c{bottom:792.888133pt;}
.yda{bottom:795.821467pt;}
.y26b{bottom:796.667867pt;}
.y34d{bottom:796.792533pt;}
.y27{bottom:798.560267pt;}
.y23d{bottom:798.985867pt;}
.y135{bottom:799.288267pt;}
.y2ca{bottom:799.532533pt;}
.y1d2{bottom:799.802267pt;}
.y208{bottom:799.888533pt;}
.y67{bottom:802.171733pt;}
.y29c{bottom:804.085467pt;}
.ya1{bottom:804.428267pt;}
.y19d{bottom:804.667733pt;}
.y339{bottom:805.823200pt;}
.y2cc{bottom:806.732533pt;}
.y301{bottom:808.493467pt;}
.yd9{bottom:808.888133pt;}
.y16b{bottom:810.488133pt;}
.y134{bottom:812.088267pt;}
.y26a{bottom:812.667867pt;}
.y26{bottom:813.226933pt;}
.y2c9{bottom:813.932533pt;}
.y23c{bottom:814.985867pt;}
.y207{bottom:816.288533pt;}
.y66{bottom:816.838400pt;}
.ya0{bottom:817.228400pt;}
.y19c{bottom:818.401067pt;}
.y338{bottom:820.223200pt;}
.y2cb{bottom:821.132533pt;}
.y29b{bottom:821.285600pt;}
.yd8{bottom:825.154800pt;}
.y300{bottom:825.560133pt;}
.y133{bottom:828.088267pt;}
.y10a{bottom:828.934400pt;}
.y23b{bottom:830.985867pt;}
.y65{bottom:831.505067pt;}
.y16a{bottom:831.867733pt;}
.y206{bottom:832.688533pt;}
.y9f{bottom:833.228400pt;}
.y337{bottom:834.623200pt;}
.y19b{bottom:835.334400pt;}
.y25{bottom:835.452667pt;}
.y269{bottom:836.226933pt;}
.y1d1{bottom:838.202267pt;}
.y29a{bottom:838.485467pt;}
.y109{bottom:842.001067pt;}
.y2ff{bottom:842.626800pt;}
.y1cb{bottom:844.667733pt;}
.yd7{bottom:845.201067pt;}
.y64{bottom:846.171733pt;}
.y169{bottom:846.267733pt;}
.y23a{bottom:846.985867pt;}
.y132{bottom:847.867733pt;}
.y336{bottom:849.023200pt;}
.y205{bottom:849.088533pt;}
.y24{bottom:850.119333pt;}
.y9e{bottom:853.007867pt;}
.y2c8{bottom:855.281867pt;}
.y299{bottom:855.685600pt;}
.y19a{bottom:856.047333pt;}
.yd6{bottom:858.267733pt;}
.y2fe{bottom:859.693467pt;}
.y268{bottom:859.785867pt;}
.y131{bottom:860.667733pt;}
.y63{bottom:860.838400pt;}
.y108{bottom:862.047333pt;}
.y239{bottom:862.985867pt;}
.y335{bottom:863.423200pt;}
.y1ca{bottom:864.447200pt;}
.y204{bottom:865.488533pt;}
.y9d{bottom:865.808000pt;}
.y168{bottom:867.647333pt;}
.y2c7{bottom:869.681867pt;}
.y199{bottom:869.780533pt;}
.y23{bottom:872.345067pt;}
.y107{bottom:875.113867pt;}
.y62{bottom:875.505067pt;}
.y1d0{bottom:876.602267pt;}
.y2fd{bottom:876.760133pt;}
.y1c9{bottom:877.247200pt;}
.y334{bottom:877.823200pt;}
.yd5{bottom:878.314000pt;}
.y238{bottom:878.985867pt;}
.y298{bottom:880.444533pt;}
.y130{bottom:880.447200pt;}
.y203{bottom:881.888533pt;}
.y167{bottom:882.047333pt;}
.y9c{bottom:885.587467pt;}
.y22{bottom:887.011733pt;}
.y61{bottom:890.171733pt;}
.y198{bottom:890.493467pt;}
.yd4{bottom:891.380667pt;}
.y333{bottom:892.223200pt;}
.y12f{bottom:893.247200pt;}
.y2fc{bottom:893.826800pt;}
.y237{bottom:894.985867pt;}
.y202{bottom:898.288533pt;}
.y9b{bottom:898.387467pt;}
.y166{bottom:903.426800pt;}
.y2c6{bottom:903.831200pt;}
.y197{bottom:904.226800pt;}
.y60{bottom:904.838400pt;}
.y297{bottom:905.203733pt;}
.y332{bottom:906.623200pt;}
.y236{bottom:910.985867pt;}
.y2c3{bottom:911.031200pt;}
.yd3{bottom:911.426800pt;}
.y12e{bottom:913.026800pt;}
.y9a{bottom:914.387467pt;}
.y201{bottom:914.688533pt;}
.y1cf{bottom:915.002267pt;}
.y165{bottom:917.826800pt;}
.y2c5{bottom:918.231200pt;}
.y2fb{bottom:918.452533pt;}
.y5f{bottom:919.505067pt;}
.y1d{bottom:920.123333pt;}
.y1e{bottom:920.123467pt;}
.y331{bottom:921.023200pt;}
.y196{bottom:921.160133pt;}
.yd2{bottom:924.493467pt;}
.y2c2{bottom:925.431200pt;}
.y12d{bottom:925.826800pt;}
.y235{bottom:926.985867pt;}
.y296{bottom:929.962667pt;}
.y200{bottom:931.088533pt;}
.y2c4{bottom:932.631200pt;}
.y5e{bottom:934.171733pt;}
.y330{bottom:935.423200pt;}
.y164{bottom:935.426800pt;}
.y195{bottom:941.872933pt;}
.y234{bottom:942.985867pt;}
.yd1{bottom:944.539600pt;}
.y12c{bottom:945.606267pt;}
.y295{bottom:947.162800pt;}
.y1ff{bottom:947.488533pt;}
.y32f{bottom:949.823200pt;}
.y1ce{bottom:953.402267pt;}
.y194{bottom:955.606267pt;}
.y2fa{bottom:955.785867pt;}
.y5d{bottom:956.397467pt;}
.y163{bottom:956.806267pt;}
.yd0{bottom:957.606267pt;}
.y12b{bottom:958.406267pt;}
.y233{bottom:958.985867pt;}
.y1fe{bottom:963.888533pt;}
.y32e{bottom:964.223200pt;}
.y294{bottom:964.362800pt;}
.y2c0{bottom:966.780533pt;}
.y99{bottom:966.911733pt;}
.y5c{bottom:971.064133pt;}
.y162{bottom:971.206267pt;}
.y2f9{bottom:972.852667pt;}
.y106{bottom:973.872933pt;}
.y2bf{bottom:973.980533pt;}
.y12a{bottom:974.406267pt;}
.y232{bottom:974.985867pt;}
.y193{bottom:976.319200pt;}
.ycf{bottom:977.652533pt;}
.y1c8{bottom:978.185867pt;}
.y32d{bottom:978.623200pt;}
.y1fd{bottom:980.288533pt;}
.y1c{bottom:980.668800pt;}
.y2c1{bottom:981.180533pt;}
.y293{bottom:981.562800pt;}
.y2f8{bottom:989.919333pt;}
.y192{bottom:990.052533pt;}
.yce{bottom:990.719200pt;}
.y1c7{bottom:990.985867pt;}
.y1cd{bottom:991.802267pt;}
.y161{bottom:992.585867pt;}
.y32c{bottom:993.023200pt;}
.y5b{bottom:993.289867pt;}
.y105{bottom:993.919200pt;}
.y129{bottom:994.185867pt;}
.y1fc{bottom:1004.247600pt;}
.y292{bottom:1006.321867pt;}
.ycd{bottom:1006.985867pt;}
.y5a{bottom:1007.956533pt;}
.y2be{bottom:1007.956667pt;}
.y4{bottom:1026.897600pt;}
.y1b{bottom:1030.374400pt;}
.y95{bottom:1038.555200pt;}
.y1a{bottom:1041.041067pt;}
.y19{bottom:1051.707733pt;}
.y98{bottom:1053.362533pt;}
.y94{bottom:1066.538400pt;}
.h1f{height:22.651979pt;}
.h8{height:31.062500pt;}
.he{height:31.083333pt;}
.h15{height:31.250000pt;}
.hf{height:31.270833pt;}
.h5{height:34.944000pt;}
.hc{height:34.945312pt;}
.hb{height:34.968750pt;}
.hd{height:35.156250pt;}
.h1a{height:35.179688pt;}
.h26{height:36.370781pt;}
.h28{height:36.493758pt;}
.h2b{height:36.494291pt;}
.h22{height:37.369792pt;}
.h16{height:38.854167pt;}
.h14{height:39.088542pt;}
.h1d{height:40.411979pt;}
.h21{height:40.412512pt;}
.h1e{height:40.548620pt;}
.h20{height:40.549153pt;}
.h30{height:42.739583pt;}
.h31{height:42.968750pt;}
.h19{height:42.997396pt;}
.h3{height:44.875000pt;}
.h12{height:46.592000pt;}
.ha{height:46.593750pt;}
.h2f{height:46.625000pt;}
.h4{height:54.395833pt;}
.h2d{height:54.723958pt;}
.h1c{height:55.437500pt;}
.h23{height:63.955717pt;}
.h2c{height:63.956250pt;}
.h24{height:63.956783pt;}
.h25{height:63.979688pt;}
.h29{height:65.293758pt;}
.h10{height:67.905899pt;}
.h2e{height:75.687500pt;}
.h1b{height:92.395833pt;}
.h17{height:92.396367pt;}
.h27{height:92.779688pt;}
.h2a{height:92.780221pt;}
.h18{height:110.875000pt;}
.h11{height:138.593750pt;}
.h9{height:146.923601pt;}
.h13{height:179.500000pt;}
.h6{height:186.368000pt;}
.h2{height:201.541461pt;}
.h7{height:234.531250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1e{left:-593.540133pt;}
.x0{left:0.000000pt;}
.x17{left:60.472400pt;}
.x22{left:62.740133pt;}
.x1a{left:64.251867pt;}
.x2f{left:65.805733pt;}
.x18{left:68.409467pt;}
.x28{left:69.904933pt;}
.x42{left:78.325467pt;}
.xc{left:87.140000pt;}
.xb{left:92.976400pt;}
.x41{left:94.531867pt;}
.x2c{left:95.933467pt;}
.x23{left:98.267733pt;}
.x2{left:113.007733pt;}
.x5{left:117.663333pt;}
.x37{left:121.324400pt;}
.x1d{left:124.724400pt;}
.x31{left:133.171733pt;}
.x2d{left:152.951733pt;}
.x40{left:158.740133pt;}
.x49{left:165.419600pt;}
.x2a{left:169.170533pt;}
.x47{left:176.154533pt;}
.x27{left:180.186133pt;}
.x29{left:185.467333pt;}
.x48{left:188.794533pt;}
.x1c{left:190.753733pt;}
.x46{left:196.117200pt;}
.x9{left:200.262800pt;}
.x3b{left:211.947467pt;}
.x26{left:218.701733pt;}
.x3e{left:224.457067pt;}
.x44{left:238.849867pt;}
.x35{left:244.929200pt;}
.x1{left:260.031467pt;}
.x43{left:266.238533pt;}
.x2b{left:272.469333pt;}
.x4a{left:278.842667pt;}
.x4{left:303.622000pt;}
.x45{left:332.612933pt;}
.x34{left:341.729200pt;}
.x3f{left:345.550133pt;}
.x3{left:354.850800pt;}
.x3c{left:356.829467pt;}
.x38{left:364.240133pt;}
.x2e{left:367.580667pt;}
.x36{left:435.595867pt;}
.x39{left:457.387467pt;}
.x3a{left:458.494933pt;}
.x32{left:460.856933pt;}
.x1f{left:497.536000pt;}
.x11{left:502.677200pt;}
.x10{left:503.676267pt;}
.x13{left:508.973067pt;}
.xd{left:512.688000pt;}
.x12{left:515.699600pt;}
.x14{left:520.691867pt;}
.x16{left:522.323733pt;}
.x3d{left:523.507867pt;}
.x30{left:527.964933pt;}
.x15{left:539.688000pt;}
.x8{left:543.490933pt;}
.x1b{left:546.178267pt;}
.x6{left:547.444133pt;}
.xf{left:551.351067pt;}
.x33{left:553.462533pt;}
.x7{left:558.504000pt;}
.xe{left:583.047333pt;}
.xa{left:602.494000pt;}
.x24{left:683.732000pt;}
.x21{left:699.091733pt;}
.x25{left:750.191067pt;}
.x20{left:760.562133pt;}
.x19{left:1291.236800pt;}
}




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