
    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_231a71e55c523628183c6db5.woff')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_24f4ed023e8ee6001f0358fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_521dcf7e9bb0a7d8eee32617.woff')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_63038394477f1a036a682c90.woff')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_90e3e164c0cd154e3d4bee45.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_e1b4ea93ebebbbfdd5d7f5f5.woff')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_f0b6b0d75a51f38281c02d88.woff')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_2b1abc5e4f14e806f2ef20d7.woff')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_9fcb0437b2ba75bc7b8e97a6.woff')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_9deaa0eed7e8bd176ae65446.woff')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_e300b7e9b599bcff5173e1f0.woff')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_231a71e55c523628183c6db5.woff')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_7f4d82ea4f5bf600f11f9169.woff')format("woff");}.ffd{font-family:ffd;line-height:0.927734;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_26e650bc03220a74bd226515.woff')format("woff");}.ffe{font-family:ffe;line-height:0.954102;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_20a5a85cbf9d6d1f78d907a1.woff')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_231a71e55c523628183c6db5.woff')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_7f4d82ea4f5bf600f11f9169.woff')format("woff");}.ff11{font-family:ff11;line-height:0.927734;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_26e650bc03220a74bd226515.woff')format("woff");}.ff12{font-family:ff12;line-height:0.954102;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_20a5a85cbf9d6d1f78d907a1.woff')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_231a71e55c523628183c6db5.woff')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_2d8cf5f959ea4da8debeba81.woff')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_5c6749d3215a3bc18a8c0453.woff')format("woff");}.ff16{font-family:ff16;line-height:0.927734;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_066c1c74a57cc75b92cb2a0c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.954102;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_20a5a85cbf9d6d1f78d907a1.woff')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_c3a2b831c63909fbc5aedef7.woff')format("woff");}.ff19{font-family:ff19;line-height:0.954102;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_c561be859b77f68c8d3a9147.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.096680;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_24dc15783d7ee0930a9718ec.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_448a5b05c803134f314b13c1.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_231a71e55c523628183c6db5.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_2cf26d237be32bc0b9aa29e5.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.927734;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_066c1c74a57cc75b92cb2a0c.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.954102;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_20a5a85cbf9d6d1f78d907a1.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_dcb6850fca5e505e28cd265c.woff')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_97f385925212e7bf9d87bd8d.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_231a71e55c523628183c6db5.woff')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_ab8ab17e794bce98c7a44182.woff')format("woff");}.ff24{font-family:ff24;line-height:0.927734;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_45865dd3aee6cecc3cc78d07.woff')format("woff");}.ff25{font-family:ff25;line-height:0.954102;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_2d8cf5f959ea4da8debeba81.woff')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_20a5a85cbf9d6d1f78d907a1.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_63038394477f1a036a682c90.woff')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_231a71e55c523628183c6db5.woff')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_6ba3318f824facf1dd2e69e9.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.927734;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_37508deeebb67ffb168e1544.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.954102;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_20a5a85cbf9d6d1f78d907a1.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_a21a85494d4713e263a7ecab.woff')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_606334c66de121ef62040ada.woff')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_a7eced828038a8213cdb5485.woff')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_55893ae21fcd8bfc39800388.woff')format("woff");}.ff30{font-family:ff30;line-height:1.096680;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_dc2136684bda60a2ac059758.woff')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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v3{vertical-align:32.400000px;}
.v1{vertical-align:86.400600px;}
.ls8{letter-spacing:-4.440000px;}
.ls5{letter-spacing:-1.026000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.004920px;}
.ls4{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.008400px;}
.ls2{letter-spacing:1.890000px;}
.ls9{letter-spacing:2.100000px;}
.ls11{letter-spacing:6.095400px;}
.lsc{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:66.360000px;}
.ls10{letter-spacing:89.031000px;}
.lsf{letter-spacing:89.970600px;}
.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;}
.ws14{word-spacing:-36.180000px;}
.ws6{word-spacing:-25.812000px;}
.ws81{word-spacing:-20.016000px;}
.ws53{word-spacing:-18.780000px;}
.ws16{word-spacing:-16.680000px;}
.ws72{word-spacing:-16.620000px;}
.ws49{word-spacing:-16.260000px;}
.ws78{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.012000px;}
.ws75{word-spacing:-14.640000px;}
.ws52{word-spacing:-14.220000px;}
.ws64{word-spacing:-14.160000px;}
.ws46{word-spacing:-14.100000px;}
.ws1a{word-spacing:-14.040000px;}
.ws79{word-spacing:-13.980000px;}
.ws47{word-spacing:-13.920000px;}
.ws18{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.800000px;}
.ws28{word-spacing:-13.740000px;}
.ws34{word-spacing:-13.680000px;}
.ws2e{word-spacing:-13.620000px;}
.ws30{word-spacing:-13.560000px;}
.ws23{word-spacing:-13.500000px;}
.ws3f{word-spacing:-13.440000px;}
.ws3{word-spacing:-13.344000px;}
.ws56{word-spacing:-13.260000px;}
.ws3c{word-spacing:-13.140000px;}
.ws4d{word-spacing:-12.840000px;}
.ws2a{word-spacing:-12.240000px;}
.ws4{word-spacing:-11.523576px;}
.ws68{word-spacing:-11.100000px;}
.ws3a{word-spacing:-11.040000px;}
.ws4c{word-spacing:-10.980000px;}
.ws2b{word-spacing:-10.920000px;}
.ws37{word-spacing:-10.800000px;}
.ws4f{word-spacing:-10.680000px;}
.ws1c{word-spacing:-10.620000px;}
.ws27{word-spacing:-10.560000px;}
.ws57{word-spacing:-10.500000px;}
.ws33{word-spacing:-10.440000px;}
.ws5d{word-spacing:-10.380000px;}
.ws73{word-spacing:-10.320000px;}
.ws48{word-spacing:-10.260000px;}
.ws24{word-spacing:-10.200000px;}
.ws1d{word-spacing:-10.140000px;}
.ws76{word-spacing:-10.080000px;}
.ws3e{word-spacing:-9.840000px;}
.ws6b{word-spacing:-9.660000px;}
.ws39{word-spacing:-9.540000px;}
.ws77{word-spacing:-9.120000px;}
.ws7c{word-spacing:-9.000000px;}
.ws42{word-spacing:-8.640000px;}
.ws7a{word-spacing:-8.580000px;}
.ws38{word-spacing:-8.520000px;}
.ws8{word-spacing:-8.400680px;}
.ws2c{word-spacing:-7.680000px;}
.ws41{word-spacing:-7.620000px;}
.ws44{word-spacing:-7.560000px;}
.ws54{word-spacing:-7.500000px;}
.ws58{word-spacing:-7.440000px;}
.ws3d{word-spacing:-7.380000px;}
.ws2d{word-spacing:-7.320000px;}
.ws36{word-spacing:-7.260000px;}
.ws2f{word-spacing:-7.200000px;}
.ws21{word-spacing:-7.140000px;}
.ws1b{word-spacing:-7.080000px;}
.ws65{word-spacing:-7.020000px;}
.ws43{word-spacing:-6.960000px;}
.ws63{word-spacing:-6.840000px;}
.ws32{word-spacing:-6.420000px;}
.ws70{word-spacing:-6.360000px;}
.ws71{word-spacing:-6.300000px;}
.ws45{word-spacing:-6.180000px;}
.ws59{word-spacing:-5.940000px;}
.ws4a{word-spacing:-4.860000px;}
.ws61{word-spacing:-4.260000px;}
.ws6f{word-spacing:-4.140000px;}
.ws5b{word-spacing:-4.080000px;}
.ws40{word-spacing:-4.020000px;}
.ws35{word-spacing:-3.960000px;}
.ws29{word-spacing:-3.900000px;}
.ws17{word-spacing:-3.882669px;}
.ws4b{word-spacing:-3.840000px;}
.ws1e{word-spacing:-3.780000px;}
.ws1f{word-spacing:-3.720000px;}
.ws5f{word-spacing:-3.660000px;}
.ws55{word-spacing:-3.600000px;}
.ws62{word-spacing:-3.540000px;}
.ws66{word-spacing:-3.480000px;}
.ws67{word-spacing:-3.420000px;}
.ws74{word-spacing:-3.300000px;}
.ws19{word-spacing:-3.060000px;}
.wsb{word-spacing:-2.970000px;}
.ws60{word-spacing:-2.940000px;}
.wsa{word-spacing:-2.916000px;}
.ws5c{word-spacing:-2.820000px;}
.ws51{word-spacing:-2.700000px;}
.ws4e{word-spacing:-2.640000px;}
.ws31{word-spacing:-2.520000px;}
.wsc{word-spacing:-1.998000px;}
.ws6e{word-spacing:-1.860000px;}
.ws25{word-spacing:-1.776000px;}
.ws5e{word-spacing:-1.740000px;}
.ws6d{word-spacing:-1.620000px;}
.wse{word-spacing:-1.104000px;}
.ws69{word-spacing:-1.080000px;}
.ws9{word-spacing:-0.918000px;}
.ws6a{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.864000px;}
.ws50{word-spacing:-0.840000px;}
.ws3b{word-spacing:-0.780000px;}
.ws26{word-spacing:-0.720000px;}
.ws5a{word-spacing:-0.660000px;}
.ws6c{word-spacing:-0.600000px;}
.ws80{word-spacing:-0.060000px;}
.ws7b{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:3.696000px;}
.ws10{word-spacing:5.808000px;}
.wsd{word-spacing:13.296000px;}
.ws11{word-spacing:19.440000px;}
.ws12{word-spacing:81.018000px;}
.ws7f{word-spacing:234.262200px;}
.ws7e{word-spacing:514.221600px;}
.ws7d{word-spacing:646.464000px;}
._0{margin-left:-17.129640px;}
._24{margin-left:-16.021200px;}
._7{margin-left:-13.451418px;}
._1{margin-left:-11.523576px;}
._6{margin-left:-9.364601px;}
._b{margin-left:-8.265600px;}
._e{margin-left:-6.660000px;}
._9{margin-left:-5.616000px;}
._4{margin-left:-3.996000px;}
._3{margin-left:-2.361600px;}
._2{margin-left:-1.346400px;}
._5{width:1.069200px;}
._a{width:3.013200px;}
._d{width:4.380000px;}
._f{width:5.556000px;}
._12{width:6.836400px;}
._14{width:8.251800px;}
._15{width:9.304800px;}
._c{width:10.560000px;}
._17{width:12.126000px;}
._19{width:13.320000px;}
._23{width:14.514000px;}
._16{width:15.624000px;}
._26{width:17.712000px;}
._13{width:18.933000px;}
._2c{width:28.983000px;}
._2d{width:32.979000px;}
._28{width:58.377000px;}
._18{width:79.008000px;}
._27{width:81.375000px;}
._10{width:125.521378px;}
._11{width:143.316600px;}
._1b{width:161.883000px;}
._25{width:169.670400px;}
._29{width:181.633800px;}
._2a{width:184.578000px;}
._1c{width:233.818800px;}
._2b{width:281.049000px;}
._8{width:283.937935px;}
._1a{width:307.521600px;}
._1f{width:529.233600px;}
._21{width:572.212200px;}
._20{width:617.248200px;}
._1e{width:646.518000px;}
._22{width:653.212200px;}
._1d{width:923.932200px;}
.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);}
.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;}
.fsf{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;}
.y244{bottom:76.439550px;}
.y96{bottom:106.299150px;}
.y31f{bottom:109.689000px;}
.y270{bottom:110.876700px;}
.y1a3{bottom:112.159950px;}
.y106{bottom:112.811850px;}
.y35b{bottom:113.130750px;}
.y208{bottom:113.463750px;}
.y1e4{bottom:113.867700px;}
.y23c{bottom:114.311850px;}
.y151{bottom:114.963750px;}
.y21{bottom:116.447250px;}
.y93{bottom:116.550750px;}
.y38a{bottom:116.931300px;}
.y59{bottom:117.648900px;}
.y2d7{bottom:118.028850px;}
.y2a2{bottom:120.699150px;}
.y35d{bottom:121.230750px;}
.ycd{bottom:123.980400px;}
.y3d0{bottom:124.299150px;}
.y1a2{bottom:126.559800px;}
.y105{bottom:127.211850px;}
.y31e{bottom:127.689000px;}
.y207{bottom:127.863900px;}
.y1e3{bottom:127.967700px;}
.y26f{bottom:128.876700px;}
.y23b{bottom:129.011850px;}
.y3{bottom:129.136200px;}
.y358{bottom:129.330750px;}
.y150{bottom:129.663750px;}
.y92{bottom:132.450750px;}
.y20{bottom:132.647250px;}
.y2d6{bottom:136.028850px;}
.y389{bottom:136.731300px;}
.y357{bottom:137.430750px;}
.ycc{bottom:138.380250px;}
.y58{bottom:144.152700px;}
.y17c{bottom:145.211850px;}
.y35a{bottom:145.530750px;}
.y1e2{bottom:145.667700px;}
.y31d{bottom:145.689000px;}
.y26e{bottom:146.876700px;}
.y23a{bottom:147.311850px;}
.y14f{bottom:147.963750px;}
.y91{bottom:148.350750px;}
.y1a1{bottom:148.811850px;}
.y1f{bottom:148.847250px;}
.y104{bottom:149.463750px;}
.y206{bottom:150.115650px;}
.y2{bottom:151.134450px;}
.y2a1{bottom:153.255150px;}
.y35c{bottom:153.630750px;}
.y2d5{bottom:154.028850px;}
.y388{bottom:156.531300px;}
.ycb{bottom:160.632300px;}
.y359{bottom:161.730750px;}
.y57{bottom:162.152700px;}
.y1a0{bottom:163.211850px;}
.y31c{bottom:163.689000px;}
.y103{bottom:163.863900px;}
.y90{bottom:164.250750px;}
.y205{bottom:164.515800px;}
.y26d{bottom:164.876700px;}
.y17b{bottom:167.463750px;}
.y1e1{bottom:167.619750px;}
.y239{bottom:169.863900px;}
.y14e{bottom:170.515800px;}
.y2d4{bottom:172.028850px;}
.y2a0{bottom:172.605150px;}
.yca{bottom:175.032300px;}
.y387{bottom:176.331300px;}
.y8f{bottom:180.150750px;}
.y56{bottom:180.152700px;}
.y31b{bottom:181.689000px;}
.y1e0{bottom:181.719750px;}
.y17a{bottom:181.863900px;}
.y204{bottom:182.515800px;}
.y238{bottom:184.563750px;}
.y14d{bottom:185.215800px;}
.y354{bottom:185.222250px;}
.y19f{bottom:185.463750px;}
.y102{bottom:186.115650px;}
.y2d3{bottom:190.028850px;}
.y26c{bottom:191.380650px;}
.y29f{bottom:191.955150px;}
.yc9{bottom:193.032300px;}
.y356{bottom:193.322250px;}
.y8e{bottom:196.050750px;}
.y55{bottom:198.152700px;}
.y1df{bottom:199.419750px;}
.y31a{bottom:199.689000px;}
.y19e{bottom:199.863900px;}
.y101{bottom:200.515800px;}
.y352{bottom:201.422250px;}
.y179{bottom:204.115650px;}
.y386{bottom:204.635250px;}
.y203{bottom:204.767700px;}
.y237{bottom:207.115650px;}
.y14c{bottom:207.767700px;}
.y2d2{bottom:208.028850px;}
.y355{bottom:209.522250px;}
.y29e{bottom:211.305150px;}
.y8d{bottom:211.950750px;}
.yc8{bottom:215.284200px;}
.y54{bottom:216.152700px;}
.y1de{bottom:217.119750px;}
.y353{bottom:217.622250px;}
.y319{bottom:217.689000px;}
.y19d{bottom:217.863900px;}
.y178{bottom:218.515800px;}
.y202{bottom:219.167700px;}
.y236{bottom:221.815800px;}
.y14b{bottom:222.467700px;}
.y100{bottom:222.767700px;}
.y2d1{bottom:226.028850px;}
.y8c{bottom:227.850750px;}
.yc7{bottom:229.684350px;}
.y29d{bottom:230.655150px;}
.y26b{bottom:230.980650px;}
.y385{bottom:232.939200px;}
.y53{bottom:234.152850px;}
.y318{bottom:235.689000px;}
.yff{bottom:237.167700px;}
.y4f{bottom:238.380300px;}
.y1dd{bottom:239.071650px;}
.y19c{bottom:240.115650px;}
.y177{bottom:240.767700px;}
.y34f{bottom:241.113750px;}
.y201{bottom:241.419750px;}
.y8b{bottom:243.750750px;}
.y2d0{bottom:244.028850px;}
.y1{bottom:244.568850px;}
.y14a{bottom:245.019750px;}
.y26a{bottom:247.180650px;}
.yc6{bottom:247.684350px;}
.y351{bottom:249.213750px;}
.y29c{bottom:250.005150px;}
.y1dc{bottom:253.171650px;}
.y317{bottom:253.689000px;}
.y19b{bottom:254.515800px;}
.y4e{bottom:254.880300px;}
.yfe{bottom:255.167700px;}
.y200{bottom:255.819600px;}
.y34e{bottom:257.313750px;}
.y11b{bottom:259.419750px;}
.y8a{bottom:259.650750px;}
.y149{bottom:259.719750px;}
.y52{bottom:260.656650px;}
.y384{bottom:261.243000px;}
.y2cf{bottom:262.028850px;}
.y235{bottom:262.667700px;}
.y34b{bottom:265.413750px;}
.y29b{bottom:269.355150px;}
.yc5{bottom:269.936250px;}
.y1db{bottom:270.871650px;}
.y4d{bottom:271.380300px;}
.y316{bottom:271.689000px;}
.y269{bottom:271.884450px;}
.y19a{bottom:272.515800px;}
.y176{bottom:273.167700px;}
.y34d{bottom:273.513750px;}
.y11a{bottom:273.819600px;}
.y89{bottom:275.550750px;}
.y234{bottom:277.367700px;}
.yfd{bottom:277.419750px;}
.y1ff{bottom:278.071650px;}
.y2ce{bottom:280.028850px;}
.y350{bottom:281.613750px;}
.y148{bottom:282.271650px;}
.yc4{bottom:284.336250px;}
.y51{bottom:287.160600px;}
.y4c{bottom:287.880300px;}
.y268{bottom:288.084600px;}
.y29a{bottom:288.705150px;}
.y383{bottom:289.546950px;}
.y315{bottom:289.689000px;}
.y34c{bottom:289.713750px;}
.y88{bottom:291.450750px;}
.yfc{bottom:291.819600px;}
.y1fe{bottom:292.471650px;}
.y1da{bottom:292.823700px;}
.y199{bottom:294.767700px;}
.y175{bottom:295.419750px;}
.y147{bottom:296.971650px;}
.y2cd{bottom:298.028850px;}
.y233{bottom:299.919750px;}
.y267{bottom:304.284600px;}
.y4b{bottom:304.380300px;}
.y50{bottom:305.160600px;}
.yc3{bottom:306.588150px;}
.y1d9{bottom:306.923700px;}
.y87{bottom:307.350750px;}
.y314{bottom:307.689000px;}
.y299{bottom:308.055150px;}
.y198{bottom:309.167700px;}
.y174{bottom:309.819600px;}
.y1fd{bottom:310.471650px;}
.y34a{bottom:313.205250px;}
.yfb{bottom:314.071650px;}
.y232{bottom:314.619750px;}
.y146{bottom:315.271650px;}
.y2cc{bottom:316.028850px;}
.y382{bottom:317.850900px;}
.y266{bottom:320.484600px;}
.y4a{bottom:320.880300px;}
.yc2{bottom:320.988150px;}
.y346{bottom:321.305100px;}
.y313{bottom:325.689000px;}
.y298{bottom:327.405150px;}
.y1ac{bottom:327.819600px;}
.yfa{bottom:328.471650px;}
.y1d8{bottom:328.875600px;}
.y349{bottom:329.405250px;}
.y16{bottom:331.071300px;}
.y197{bottom:331.419750px;}
.y173{bottom:332.071650px;}
.y1fc{bottom:332.723550px;}
.y231{bottom:332.919750px;}
.y2cb{bottom:334.028850px;}
.y265{bottom:336.684600px;}
.y49{bottom:337.380300px;}
.y344{bottom:337.505100px;}
.y381{bottom:337.650900px;}
.y145{bottom:337.823700px;}
.y1d7{bottom:342.975600px;}
.yc1{bottom:343.240200px;}
.y312{bottom:343.689000px;}
.y348{bottom:345.605100px;}
.y196{bottom:345.819600px;}
.yf9{bottom:346.471650px;}
.y297{bottom:346.755150px;}
.y1fb{bottom:347.123700px;}
.y15{bottom:347.271300px;}
.y1ab{bottom:350.071650px;}
.y119{bottom:350.723550px;}
.y2ca{bottom:352.028850px;}
.y144{bottom:352.523550px;}
.y264{bottom:352.884450px;}
.y345{bottom:353.705250px;}
.y48{bottom:353.880300px;}
.y230{bottom:355.471650px;}
.y380{bottom:357.451050px;}
.yc0{bottom:357.640200px;}
.y311{bottom:361.689000px;}
.y347{bottom:361.805100px;}
.y14{bottom:363.471300px;}
.y3d5{bottom:363.748200px;}
.y1aa{bottom:364.471650px;}
.y1d6{bottom:364.927500px;}
.y118{bottom:365.123700px;}
.y296{bottom:366.105150px;}
.y195{bottom:368.071650px;}
.yf8{bottom:368.723550px;}
.y263{bottom:369.084600px;}
.y3c6{bottom:369.107850px;}
.y1fa{bottom:369.375600px;}
.y2c9{bottom:370.028850px;}
.y22f{bottom:370.171650px;}
.y47{bottom:370.380300px;}
.y143{bottom:370.823700px;}
.y37f{bottom:377.250900px;}
.y1d5{bottom:379.027650px;}
.y13{bottom:379.671300px;}
.y310{bottom:379.689000px;}
.ybf{bottom:379.892100px;}
.y194{bottom:382.471650px;}
.yf7{bottom:383.123700px;}
.y3d4{bottom:383.548200px;}
.y1f9{bottom:383.775600px;}
.y262{bottom:385.284600px;}
.y341{bottom:385.296600px;}
.y295{bottom:385.455150px;}
.y46{bottom:386.880300px;}
.y2c8{bottom:388.028850px;}
.y86{bottom:390.943200px;}
.y22e{bottom:392.723700px;}
.y142{bottom:393.375600px;}
.y343{bottom:393.396600px;}
.ybe{bottom:394.292100px;}
.y12{bottom:395.871300px;}
.y1d4{bottom:396.727500px;}
.y30f{bottom:397.689000px;}
.y17{bottom:398.194050px;}
.y3c5{bottom:399.211800px;}
.y172{bottom:401.123700px;}
.y340{bottom:401.496600px;}
.y3d3{bottom:403.348200px;}
.y45{bottom:403.380300px;}
.y193{bottom:404.723700px;}
.y294{bottom:404.805150px;}
.yf6{bottom:405.375600px;}
.y37e{bottom:405.554850px;}
.y1f8{bottom:406.027650px;}
.y2c7{bottom:406.028850px;}
.y261{bottom:407.112900px;}
.y22d{bottom:407.423700px;}
.y85{bottom:407.443200px;}
.y141{bottom:408.075600px;}
.y33d{bottom:409.596600px;}
.y11{bottom:412.071300px;}
.y30e{bottom:415.689000px;}
.ybd{bottom:416.544150px;}
.y33f{bottom:417.696600px;}
.y1d3{bottom:418.679550px;}
.y192{bottom:419.123700px;}
.yf5{bottom:419.775600px;}
.y44{bottom:419.880300px;}
.y1f7{bottom:420.427500px;}
.y3d2{bottom:423.148200px;}
.y260{bottom:423.312900px;}
.y171{bottom:423.375600px;}
.y84{bottom:423.943200px;}
.y2c6{bottom:424.028850px;}
.y293{bottom:424.155150px;}
.y37d{bottom:425.354850px;}
.y342{bottom:425.796600px;}
.y10{bottom:428.271300px;}
.y3c4{bottom:429.315750px;}
.y22c{bottom:429.975600px;}
.y140{bottom:430.627650px;}
.ybc{bottom:430.944150px;}
.y1d2{bottom:432.779550px;}
.y30d{bottom:433.689000px;}
.y33e{bottom:433.896600px;}
.y43{bottom:436.380300px;}
.y1a9{bottom:437.123700px;}
.y170{bottom:437.775600px;}
.y1f6{bottom:438.427500px;}
.y83{bottom:440.443200px;}
.y191{bottom:441.375600px;}
.yf4{bottom:442.027650px;}
.y2c5{bottom:442.028850px;}
.y3d1{bottom:442.948200px;}
.y292{bottom:443.505150px;}
.yf{bottom:444.471300px;}
.y22b{bottom:444.675600px;}
.y37c{bottom:445.154850px;}
.y13f{bottom:445.327500px;}
.y25f{bottom:448.016850px;}
.ybb{bottom:448.944150px;}
.y1d1{bottom:450.479550px;}
.y30c{bottom:451.689000px;}
.y42{bottom:452.880300px;}
.y16f{bottom:455.775600px;}
.yf3{bottom:456.427500px;}
.y82{bottom:456.943200px;}
.y33a{bottom:457.388100px;}
.y1a8{bottom:459.375600px;}
.y3c3{bottom:459.419700px;}
.y2c4{bottom:460.028850px;}
.ye{bottom:460.671300px;}
.y1f5{bottom:460.679550px;}
.y291{bottom:462.855150px;}
.y240{bottom:463.627650px;}
.y25e{bottom:464.216850px;}
.y37b{bottom:464.954850px;}
.y33c{bottom:465.488100px;}
.y22a{bottom:467.227500px;}
.y13e{bottom:467.879550px;}
.y41{bottom:469.380300px;}
.y30b{bottom:469.689000px;}
.y3b4{bottom:469.751100px;}
.yba{bottom:471.196050px;}
.y18{bottom:471.499950px;}
.y1d0{bottom:472.431450px;}
.y81{bottom:473.443200px;}
.y337{bottom:473.588100px;}
.y190{bottom:473.775600px;}
.y1f4{bottom:475.079550px;}
.yd{bottom:476.871300px;}
.y16e{bottom:478.027650px;}
.y2c3{bottom:478.028850px;}
.yf2{bottom:478.679550px;}
.y25d{bottom:480.416850px;}
.y336{bottom:481.688100px;}
.y229{bottom:481.927500px;}
.y290{bottom:482.205150px;}
.y13d{bottom:482.579550px;}
.y37a{bottom:484.754850px;}
.yb9{bottom:485.596050px;}
.y40{bottom:485.880300px;}
.y3b3{bottom:485.951100px;}
.y23f{bottom:486.179550px;}
.y1cf{bottom:486.531450px;}
.y3c2{bottom:489.523650px;}
.y339{bottom:489.788100px;}
.y80{bottom:489.943200px;}
.y16d{bottom:492.427500px;}
.yc{bottom:493.071300px;}
.yf1{bottom:493.079550px;}
.y18f{bottom:496.027650px;}
.y2c2{bottom:496.028850px;}
.y25c{bottom:496.616850px;}
.y33b{bottom:497.888100px;}
.y228{bottom:500.227500px;}
.y13c{bottom:500.879550px;}
.y3b2{bottom:502.151100px;}
.y3f{bottom:502.380300px;}
.yb8{bottom:503.596050px;}
.y1ce{bottom:504.231450px;}
.y307{bottom:505.688850px;}
.y338{bottom:505.988100px;}
.y7f{bottom:506.443200px;}
.yb{bottom:509.271300px;}
.y28f{bottom:510.059100px;}
.y16c{bottom:510.427500px;}
.y117{bottom:511.079550px;}
.y25b{bottom:512.816850px;}
.y379{bottom:513.058800px;}
.y30a{bottom:513.789000px;}
.y2c1{bottom:514.028850px;}
.yf0{bottom:515.331600px;}
.y3b1{bottom:518.351100px;}
.y3e{bottom:518.880300px;}
.y3c1{bottom:519.627600px;}
.y306{bottom:521.889000px;}
.y227{bottom:522.779550px;}
.y7e{bottom:522.943200px;}
.y13b{bottom:523.431450px;}
.ya{bottom:525.471300px;}
.yb7{bottom:525.848100px;}
.y1cd{bottom:526.183500px;}
.y25a{bottom:529.016850px;}
.y335{bottom:529.479600px;}
.yef{bottom:529.731450px;}
.y303{bottom:529.989000px;}
.y2c0{bottom:532.028850px;}
.y16b{bottom:532.679550px;}
.y378{bottom:532.858800px;}
.y116{bottom:533.331600px;}
.y3b0{bottom:534.551100px;}
.y3d{bottom:535.380300px;}
.y226{bottom:537.479550px;}
.y334{bottom:537.579600px;}
.y302{bottom:538.089000px;}
.y13a{bottom:538.131450px;}
.y7d{bottom:539.443200px;}
.yb6{bottom:540.247950px;}
.y1cc{bottom:540.283500px;}
.y9{bottom:541.671300px;}
.y259{bottom:545.216850px;}
.y309{bottom:546.188850px;}
.y16a{bottom:547.079550px;}
.y115{bottom:547.731450px;}
.y3c0{bottom:549.731550px;}
.y2bf{bottom:550.028850px;}
.y3af{bottom:550.751100px;}
.y3c{bottom:551.880300px;}
.yee{bottom:551.983500px;}
.y28e{bottom:552.359100px;}
.y377{bottom:552.658800px;}
.y305{bottom:554.289000px;}
.y225{bottom:555.779550px;}
.y7c{bottom:555.943200px;}
.y8{bottom:557.871300px;}
.y139{bottom:560.683500px;}
.y1cb{bottom:562.235400px;}
.y308{bottom:562.389000px;}
.yb5{bottom:562.500000px;}
.y114{bottom:565.731450px;}
.yed{bottom:566.383500px;}
.y3ae{bottom:566.951100px;}
.y258{bottom:567.045300px;}
.y2be{bottom:568.028850px;}
.y3b{bottom:568.380300px;}
.y169{bottom:569.331600px;}
.y304{bottom:570.489000px;}
.y28d{bottom:571.709100px;}
.y3cf{bottom:572.325300px;}
.y7b{bottom:572.443200px;}
.y376{bottom:572.458800px;}
.y7{bottom:574.071300px;}
.y138{bottom:575.383500px;}
.y1ca{bottom:576.335400px;}
.yb4{bottom:576.900000px;}
.y224{bottom:578.331600px;}
.y3bf{bottom:579.835350px;}
.y3ad{bottom:583.151100px;}
.y257{bottom:583.245150px;}
.y168{bottom:583.731450px;}
.yec{bottom:584.383500px;}
.y3a{bottom:584.880300px;}
.y2bd{bottom:586.028850px;}
.y333{bottom:586.339500px;}
.y113{bottom:587.983500px;}
.y1f3{bottom:588.635400px;}
.y7a{bottom:588.943200px;}
.y6{bottom:590.271450px;}
.y28c{bottom:591.059100px;}
.y3ce{bottom:592.125300px;}
.y375{bottom:592.258800px;}
.y301{bottom:592.317300px;}
.y223{bottom:593.031450px;}
.y137{bottom:593.683500px;}
.y1c9{bottom:594.035400px;}
.yb3{bottom:594.900000px;}
.y3ac{bottom:599.351100px;}
.y2fd{bottom:600.417300px;}
.y39{bottom:601.380300px;}
.y18e{bottom:601.731450px;}
.y112{bottom:602.383500px;}
.y1f2{bottom:603.035400px;}
.y2bc{bottom:604.028850px;}
.y332{bottom:604.339500px;}
.y79{bottom:605.443200px;}
.y167{bottom:605.983500px;}
.y5{bottom:606.471300px;}
.yeb{bottom:606.635400px;}
.y256{bottom:607.949100px;}
.y300{bottom:608.517300px;}
.y3be{bottom:609.939450px;}
.y28b{bottom:610.409100px;}
.y3cd{bottom:611.925300px;}
.y3ab{bottom:615.551100px;}
.y222{bottom:615.583500px;}
.y1c8{bottom:615.987450px;}
.y136{bottom:616.235400px;}
.y2fb{bottom:616.617300px;}
.yb2{bottom:617.152050px;}
.y38{bottom:617.880300px;}
.y166{bottom:620.383500px;}
.y374{bottom:620.562750px;}
.yea{bottom:621.035400px;}
.y78{bottom:621.943200px;}
.y2bb{bottom:622.028850px;}
.y18d{bottom:623.983500px;}
.y255{bottom:624.149100px;}
.y111{bottom:624.635400px;}
.y2ff{bottom:624.717300px;}
.y28a{bottom:629.759100px;}
.y1c7{bottom:630.087450px;}
.y221{bottom:630.283500px;}
.y331{bottom:630.843450px;}
.y135{bottom:630.935400px;}
.yb1{bottom:631.551900px;}
.y3cc{bottom:631.725300px;}
.y3aa{bottom:631.751100px;}
.y2fc{bottom:632.817300px;}
.y37{bottom:634.380300px;}
.y18c{bottom:638.383500px;}
.y77{bottom:638.443200px;}
.y110{bottom:639.035400px;}
.y2ba{bottom:640.028850px;}
.y3bd{bottom:640.043400px;}
.y254{bottom:640.349100px;}
.y373{bottom:640.362750px;}
.y2fe{bottom:640.917300px;}
.y165{bottom:642.635400px;}
.ye9{bottom:643.287450px;}
.y1c6{bottom:647.787450px;}
.y3a9{bottom:647.951100px;}
.y330{bottom:648.843450px;}
.y289{bottom:649.109100px;}
.y134{bottom:649.235400px;}
.y36{bottom:650.880300px;}
.y220{bottom:652.835400px;}
.y23e{bottom:653.487450px;}
.yb0{bottom:653.803950px;}
.y76{bottom:654.943200px;}
.y253{bottom:656.549100px;}
.y164{bottom:657.035400px;}
.ye8{bottom:657.687450px;}
.y2b9{bottom:658.028850px;}
.y372{bottom:660.162750px;}
.y18b{bottom:660.635400px;}
.y10f{bottom:661.287450px;}
.y2f6{bottom:662.745600px;}
.y3a8{bottom:664.151100px;}
.y35{bottom:667.380300px;}
.y21f{bottom:667.535400px;}
.y23d{bottom:668.187450px;}
.yaf{bottom:668.203950px;}
.y288{bottom:668.459100px;}
.y1c5{bottom:669.739350px;}
.y3bc{bottom:670.147200px;}
.y2fa{bottom:670.845750px;}
.y75{bottom:671.443200px;}
.y133{bottom:671.787450px;}
.y252{bottom:672.749100px;}
.y18a{bottom:675.035400px;}
.y32f{bottom:675.347400px;}
.y10e{bottom:675.687450px;}
.y2b8{bottom:676.028850px;}
.y2f4{bottom:678.945750px;}
.y163{bottom:679.287450px;}
.ye7{bottom:679.939350px;}
.y371{bottom:679.962750px;}
.y3a7{bottom:680.351100px;}
.y1c4{bottom:683.839350px;}
.y34{bottom:683.880300px;}
.y132{bottom:686.487450px;}
.y2f9{bottom:687.045750px;}
.y287{bottom:687.809100px;}
.y74{bottom:687.943200px;}
.y251{bottom:688.949100px;}
.y21e{bottom:690.087450px;}
.yae{bottom:690.456000px;}
.y32e{bottom:693.347400px;}
.y162{bottom:693.687450px;}
.y2b7{bottom:694.028850px;}
.ye6{bottom:694.339350px;}
.y2f2{bottom:695.145750px;}
.y3a6{bottom:696.551100px;}
.y189{bottom:697.287450px;}
.y10d{bottom:697.939350px;}
.y370{bottom:699.762750px;}
.y3bb{bottom:700.251150px;}
.y33{bottom:700.380300px;}
.y2f8{bottom:703.245600px;}
.y73{bottom:704.443200px;}
.y21d{bottom:704.787450px;}
.yad{bottom:704.855850px;}
.y250{bottom:705.149100px;}
.y1c3{bottom:705.791400px;}
.y286{bottom:707.159100px;}
.y131{bottom:709.039350px;}
.y2f3{bottom:711.345750px;}
.y161{bottom:711.687450px;}
.y2b6{bottom:712.028850px;}
.ye5{bottom:712.339350px;}
.y3a5{bottom:712.751100px;}
.y32{bottom:716.880300px;}
.y2f7{bottom:719.445750px;}
.y36f{bottom:719.562750px;}
.y32d{bottom:719.851200px;}
.y1c2{bottom:719.891400px;}
.y72{bottom:720.943200px;}
.y130{bottom:723.739350px;}
.y285{bottom:726.509100px;}
.yac{bottom:727.107900px;}
.y21c{bottom:727.339350px;}
.y2f5{bottom:727.545750px;}
.y3a4{bottom:728.951100px;}
.y2b5{bottom:730.028850px;}
.y3ba{bottom:730.355100px;}
.y31{bottom:733.380300px;}
.y160{bottom:733.939350px;}
.ye4{bottom:734.591400px;}
.y71{bottom:737.443200px;}
.y32c{bottom:737.851200px;}
.yab{bottom:741.507900px;}
.y1c1{bottom:741.843300px;}
.y12f{bottom:742.039350px;}
.y24f{bottom:744.977550px;}
.y3a3{bottom:745.151100px;}
.y284{bottom:745.859100px;}
.y36e{bottom:747.866700px;}
.y15f{bottom:748.339350px;}
.ye3{bottom:748.991400px;}
.y2f1{bottom:749.374050px;}
.y30{bottom:749.880300px;}
.y70{bottom:753.943200px;}
.y1c0{bottom:755.943300px;}
.y21b{bottom:760.339350px;}
.y3b9{bottom:760.459050px;}
.y3c7{bottom:761.102400px;}
.y3a2{bottom:761.351100px;}
.y24e{bottom:762.977550px;}
.yaa{bottom:763.759800px;}
.y32b{bottom:764.355150px;}
.y12e{bottom:764.591400px;}
.y283{bottom:765.209100px;}
.y2ef{bottom:765.574050px;}
.y2b4{bottom:766.028850px;}
.y188{bottom:766.339350px;}
.y2f{bottom:766.380300px;}
.y36d{bottom:767.666700px;}
.y6f{bottom:770.443200px;}
.y15e{bottom:770.591250px;}
.ye2{bottom:771.243300px;}
.y3a1{bottom:777.551100px;}
.y1bf{bottom:777.895350px;}
.ya9{bottom:778.159800px;}
.y12d{bottom:779.291400px;}
.y2ee{bottom:781.774050px;}
.y32a{bottom:782.355150px;}
.y2e{bottom:782.880300px;}
.y21a{bottom:782.891400px;}
.y282{bottom:784.559100px;}
.y15d{bottom:784.991400px;}
.ye1{bottom:785.643300px;}
.y6e{bottom:786.943200px;}
.y36c{bottom:787.466700px;}
.y2b3{bottom:787.857300px;}
.y187{bottom:788.591250px;}
.y2eb{bottom:789.874050px;}
.y3b8{bottom:790.563000px;}
.y1be{bottom:791.995200px;}
.y3a0{bottom:793.751100px;}
.ya8{bottom:796.159800px;}
.y219{bottom:797.591250px;}
.y2ed{bottom:797.974050px;}
.y2d{bottom:799.380300px;}
.y24d{bottom:800.777550px;}
.y12c{bottom:801.843300px;}
.y186{bottom:802.991400px;}
.y6d{bottom:803.443200px;}
.y281{bottom:803.909100px;}
.y3cb{bottom:806.079750px;}
.y15c{bottom:807.243300px;}
.y36b{bottom:807.266700px;}
.ye0{bottom:807.895350px;}
.y329{bottom:808.859100px;}
.y2b2{bottom:809.685600px;}
.y1bd{bottom:809.695350px;}
.y39f{bottom:809.951100px;}
.y2ec{bottom:814.174050px;}
.y2c{bottom:815.880300px;}
.y12b{bottom:816.543300px;}
.ya7{bottom:818.411850px;}
.y24c{bottom:818.777550px;}
.y6c{bottom:819.943200px;}
.y218{bottom:820.143300px;}
.y3b7{bottom:820.666950px;}
.y15b{bottom:821.643300px;}
.ydf{bottom:822.295200px;}
.y280{bottom:823.259100px;}
.y185{bottom:825.243300px;}
.y39e{bottom:826.151100px;}
.y328{bottom:826.859100px;}
.y36a{bottom:827.066700px;}
.y2f0{bottom:830.374050px;}
.y2b1{bottom:831.514050px;}
.y1bc{bottom:831.647250px;}
.y2b{bottom:832.380300px;}
.ya6{bottom:832.811850px;}
.y217{bottom:834.843300px;}
.y3ca{bottom:836.183550px;}
.y6b{bottom:836.443200px;}
.y12a{bottom:839.095350px;}
.y184{bottom:839.643300px;}
.y10c{bottom:840.295200px;}
.y39d{bottom:842.351100px;}
.y27f{bottom:842.609100px;}
.y15a{bottom:843.895350px;}
.yde{bottom:844.547250px;}
.y327{bottom:844.859100px;}
.y1bb{bottom:845.747250px;}
.y369{bottom:846.866700px;}
.y2a{bottom:848.880300px;}
.y3b6{bottom:850.770900px;}
.ya5{bottom:850.811850px;}
.y2e6{bottom:852.202350px;}
.y6a{bottom:852.943200px;}
.y2b0{bottom:853.342350px;}
.y129{bottom:853.795200px;}
.y24b{bottom:856.577550px;}
.y216{bottom:857.395350px;}
.y159{bottom:858.295200px;}
.y39c{bottom:858.551100px;}
.ydd{bottom:858.947250px;}
.y2ea{bottom:860.302500px;}
.y183{bottom:861.895350px;}
.y27e{bottom:861.959100px;}
.y10b{bottom:862.547250px;}
.y326{bottom:862.859100px;}
.y1ba{bottom:863.447250px;}
.y29{bottom:865.380300px;}
.y3c9{bottom:866.287650px;}
.y2e4{bottom:868.402350px;}
.y69{bottom:869.443200px;}
.y215{bottom:872.095350px;}
.ya4{bottom:873.063750px;}
.y39b{bottom:874.751100px;}
.y2af{bottom:875.170650px;}
.y182{bottom:876.295200px;}
.y128{bottom:876.347250px;}
.y2e9{bottom:876.502500px;}
.ydc{bottom:876.947250px;}
.y158{bottom:880.547250px;}
.y325{bottom:880.859100px;}
.y3b5{bottom:880.874850px;}
.y1f1{bottom:881.199300px;}
.y27d{bottom:881.309100px;}
.y28{bottom:881.880300px;}
.y2e2{bottom:884.602500px;}
.y1b9{bottom:885.399300px;}
.y68{bottom:885.943200px;}
.ya3{bottom:887.463750px;}
.y39a{bottom:890.951100px;}
.y127{bottom:891.047250px;}
.y2e8{bottom:892.702350px;}
.y2ae{bottom:893.170650px;}
.y214{bottom:894.647250px;}
.y157{bottom:894.947250px;}
.y368{bottom:894.970650px;}
.y1f0{bottom:895.599300px;}
.y3c8{bottom:896.391600px;}
.y27{bottom:898.380300px;}
.y181{bottom:898.547250px;}
.y324{bottom:898.859100px;}
.ydb{bottom:899.199300px;}
.y1b8{bottom:899.499150px;}
.y24a{bottom:899.777550px;}
.y27c{bottom:900.659100px;}
.y2e3{bottom:900.802500px;}
.y67{bottom:902.443200px;}
.y399{bottom:907.151100px;}
.y2e7{bottom:908.902350px;}
.y213{bottom:909.347250px;}
.ya2{bottom:909.715800px;}
.y2ad{bottom:911.170650px;}
.y180{bottom:912.947250px;}
.yda{bottom:913.599300px;}
.y367{bottom:914.770650px;}
.y26{bottom:914.880300px;}
.y323{bottom:916.859100px;}
.y2e5{bottom:917.002500px;}
.y156{bottom:917.199300px;}
.y1ef{bottom:917.851200px;}
.y66{bottom:918.943200px;}
.y27b{bottom:920.009100px;}
.y398{bottom:923.351100px;}
.ya1{bottom:924.115650px;}
.y126{bottom:928.299150px;}
.y2ac{bottom:929.170650px;}
.y10a{bottom:931.599300px;}
.y212{bottom:931.899300px;}
.y1ee{bottom:932.251200px;}
.y366{bottom:934.570650px;}
.y322{bottom:934.859100px;}
.y17f{bottom:935.199300px;}
.y65{bottom:935.443200px;}
.yd9{bottom:935.851200px;}
.y2e0{bottom:938.830800px;}
.y1b7{bottom:939.151200px;}
.y27a{bottom:939.359100px;}
.y397{bottom:939.551100px;}
.y25{bottom:939.884250px;}
.y249{bottom:942.977550px;}
.ya0{bottom:946.367700px;}
.y211{bottom:946.599300px;}
.y2df{bottom:946.930800px;}
.y17e{bottom:949.599300px;}
.yd8{bottom:950.251200px;}
.y125{bottom:950.851200px;}
.y64{bottom:951.943200px;}
.y321{bottom:952.859100px;}
.y1b6{bottom:953.251200px;}
.y109{bottom:953.851200px;}
.y365{bottom:954.370650px;}
.y1ed{bottom:954.503100px;}
.y2e1{bottom:955.030800px;}
.y2ab{bottom:955.674750px;}
.y396{bottom:955.751250px;}
.y24{bottom:956.384250px;}
.y279{bottom:958.709100px;}
.y9f{bottom:960.767700px;}
.y124{bottom:965.551200px;}
.yd7{bottom:968.251200px;}
.y63{bottom:968.443200px;}
.y1ec{bottom:968.903100px;}
.y210{bottom:969.151200px;}
.y320{bottom:970.859100px;}
.y17d{bottom:971.851200px;}
.y395{bottom:971.951250px;}
.y243{bottom:972.503100px;}
.y364{bottom:974.170650px;}
.y1b5{bottom:975.203100px;}
.y278{bottom:978.059100px;}
.y9e{bottom:978.767700px;}
.y23{bottom:981.388200px;}
.y20f{bottom:983.851200px;}
.y62{bottom:984.943200px;}
.y248{bottom:986.177550px;}
.y108{bottom:986.251200px;}
.y242{bottom:986.903100px;}
.y123{bottom:988.103250px;}
.y394{bottom:988.151250px;}
.y2de{bottom:988.859100px;}
.y1b4{bottom:989.303250px;}
.yd6{bottom:990.503100px;}
.y1eb{bottom:991.155150px;}
.y363{bottom:993.970800px;}
.y2aa{bottom:995.274600px;}
.y277{bottom:997.409100px;}
.y22{bottom:997.888200px;}
.y9d{bottom:1001.019750px;}
.y61{bottom:1001.443200px;}
.y122{bottom:1002.803250px;}
.y393{bottom:1004.351100px;}
.yd5{bottom:1004.903100px;}
.y1ea{bottom:1005.555150px;}
.y20e{bottom:1006.403100px;}
.y2dd{bottom:1006.859100px;}
.y1b3{bottom:1007.003100px;}
.y107{bottom:1008.503100px;}
.y241{bottom:1009.155150px;}
.y2a9{bottom:1013.274600px;}
.y9c{bottom:1015.419750px;}
.y276{bottom:1016.759100px;}
.y60{bottom:1017.943200px;}
.y392{bottom:1020.551250px;}
.y20d{bottom:1021.103250px;}
.y362{bottom:1022.274600px;}
.yd4{bottom:1022.903100px;}
.y1e9{bottom:1023.555150px;}
.y2dc{bottom:1024.859100px;}
.y121{bottom:1025.355150px;}
.y155{bottom:1027.155150px;}
.y1b2{bottom:1028.955150px;}
.y247{bottom:1029.377550px;}
.y2a8{bottom:1031.274600px;}
.y5f{bottom:1034.443200px;}
.y1d{bottom:1035.138750px;}
.y1e{bottom:1035.138900px;}
.y275{bottom:1036.109100px;}
.y391{bottom:1036.751250px;}
.y9b{bottom:1037.671800px;}
.y120{bottom:1040.055150px;}
.y154{bottom:1041.555150px;}
.y361{bottom:1042.074600px;}
.y2db{bottom:1042.859100px;}
.y1b1{bottom:1043.055150px;}
.y20c{bottom:1043.655150px;}
.yd3{bottom:1045.155150px;}
.y1e8{bottom:1045.807050px;}
.y2a7{bottom:1049.274600px;}
.y5e{bottom:1050.943200px;}
.y9a{bottom:1052.071800px;}
.y390{bottom:1052.951250px;}
.y274{bottom:1055.459100px;}
.y11f{bottom:1058.355150px;}
.yd2{bottom:1059.555150px;}
.y1e7{bottom:1060.207050px;}
.y2da{bottom:1060.859100px;}
.y360{bottom:1061.874600px;}
.y153{bottom:1063.807050px;}
.y1a7{bottom:1063.807200px;}
.y1b0{bottom:1065.007200px;}
.y2a6{bottom:1067.274600px;}
.y38f{bottom:1069.151250px;}
.y246{bottom:1072.577550px;}
.y273{bottom:1074.809100px;}
.y5d{bottom:1075.947150px;}
.y152{bottom:1078.207050px;}
.y1a6{bottom:1078.207200px;}
.y2d9{bottom:1078.859100px;}
.y1af{bottom:1079.107050px;}
.y11e{bottom:1080.907050px;}
.y20b{bottom:1080.907200px;}
.y35f{bottom:1081.674750px;}
.yd1{bottom:1081.807050px;}
.y2a5{bottom:1085.274600px;}
.y38e{bottom:1085.351100px;}
.y99{bottom:1087.775700px;}
.y5c{bottom:1092.447150px;}
.y272{bottom:1094.159100px;}
.y11d{bottom:1095.607050px;}
.y20a{bottom:1095.607200px;}
.yd0{bottom:1096.207050px;}
.y1a5{bottom:1096.207200px;}
.y1ae{bottom:1096.807050px;}
.y2d8{bottom:1096.859100px;}
.y1e6{bottom:1100.459100px;}
.y35e{bottom:1101.474750px;}
.y38d{bottom:1101.551250px;}
.y1c{bottom:1103.252400px;}
.y2a4{bottom:1103.274600px;}
.y271{bottom:1113.509100px;}
.y1e5{bottom:1114.859100px;}
.y245{bottom:1115.777550px;}
.y5b{bottom:1117.451100px;}
.y38c{bottom:1117.751250px;}
.y11c{bottom:1118.159100px;}
.y209{bottom:1118.159250px;}
.ycf{bottom:1118.459100px;}
.y1a4{bottom:1118.459250px;}
.y1ad{bottom:1118.759100px;}
.y2a3{bottom:1129.778550px;}
.yce{bottom:1132.859100px;}
.y5a{bottom:1133.951100px;}
.y38b{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;}
.h8{height:34.945312px;}
.he{height:34.968750px;}
.h16{height:35.156250px;}
.h5{height:39.312000px;}
.hc{height:39.313477px;}
.hb{height:39.339844px;}
.hd{height:39.550781px;}
.hf{height:42.539062px;}
.h15{height:43.710938px;}
.h1a{height:47.856445px;}
.h22{height:48.082031px;}
.h23{height:48.339844px;}
.h3{height:51.082031px;}
.h12{height:52.416000px;}
.ha{height:52.417969px;}
.h21{height:52.453125px;}
.h14{height:53.173828px;}
.h1b{height:53.402344px;}
.h19{height:58.491211px;}
.h4{height:61.195312px;}
.h1f{height:71.950181px;}
.h1d{height:71.950781px;}
.h10{height:76.394136px;}
.h20{height:85.148438px;}
.h1c{height:89.003906px;}
.h17{height:89.004506px;}
.h1e{height:104.350781px;}
.h18{height:106.804688px;}
.h11{height:133.505859px;}
.h9{height:165.289051px;}
.h13{height:204.328125px;}
.h6{height:209.664000px;}
.h2{height:226.734144px;}
.h7{height:319.042969px;}
.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;}
.x30{left:74.031450px;}
.x39{left:75.388800px;}
.x18{left:76.960650px;}
.x44{left:88.116150px;}
.xc{left:98.032500px;}
.xb{left:104.598450px;}
.x43{left:106.348350px;}
.x23{left:110.551200px;}
.x2{left:127.133700px;}
.x32{left:131.218800px;}
.x5{left:132.371250px;}
.x37{left:133.793850px;}
.x1d{left:140.314950px;}
.x33{left:161.918550px;}
.x3f{left:172.346400px;}
.x42{left:178.582650px;}
.x4a{left:186.097050px;}
.x49{left:198.173850px;}
.x3b{left:213.283500px;}
.x1c{left:214.597950px;}
.x48{left:220.631850px;}
.x38{left:223.789500px;}
.x9{left:225.295650px;}
.x3e{left:252.514200px;}
.x46{left:268.706100px;}
.x1{left:292.535400px;}
.x45{left:299.518350px;}
.x4b{left:313.698000px;}
.x4{left:341.574750px;}
.x47{left:374.189550px;}
.x41{left:388.743900px;}
.x3{left:399.207150px;}
.x29{left:405.622050px;}
.x27{left:423.499050px;}
.x3c{left:426.944850px;}
.x28{left:438.194250px;}
.x2b{left:444.381750px;}
.x2d{left:507.117300px;}
.x2c{left:512.268600px;}
.x34{left:520.222200px;}
.x2a{left:524.520450px;}
.x2e{left:529.966800px;}
.x2f{left:544.733850px;}
.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;}
.x31{left:593.960550px;}
.x1b{left:596.936850px;}
.x15{left:607.149000px;}
.x8{left:611.427300px;}
.x6{left:615.874650px;}
.x3d{left:617.669850px;}
.xf{left:620.269950px;}
.x3a{left:624.703500px;}
.x7{left:628.317000px;}
.x35{left:639.903600px;}
.xe{left:655.928250px;}
.xa{left:662.794050px;}
.x36{left:711.424650px;}
.x25{left:760.558500px;}
.x40{left:769.198500px;}
.x24{left:777.838350px;}
.x21{left:786.478200px;}
.x26{left:843.964950px;}
.x20{left:855.632400px;}
.x19{left:1452.641400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v3{vertical-align:28.800000pt;}
.v1{vertical-align:76.800533pt;}
.ls8{letter-spacing:-3.946667pt;}
.ls5{letter-spacing:-0.912000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.004373pt;}
.ls4{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.007467pt;}
.ls2{letter-spacing:1.680000pt;}
.ls9{letter-spacing:1.866667pt;}
.ls11{letter-spacing:5.418133pt;}
.lsc{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:58.986667pt;}
.ls10{letter-spacing:79.138667pt;}
.lsf{letter-spacing:79.973867pt;}
.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;}
.ws14{word-spacing:-32.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws81{word-spacing:-17.792000pt;}
.ws53{word-spacing:-16.693333pt;}
.ws16{word-spacing:-14.826667pt;}
.ws72{word-spacing:-14.773333pt;}
.ws49{word-spacing:-14.453333pt;}
.ws78{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws75{word-spacing:-13.013333pt;}
.ws52{word-spacing:-12.640000pt;}
.ws64{word-spacing:-12.586667pt;}
.ws46{word-spacing:-12.533333pt;}
.ws1a{word-spacing:-12.480000pt;}
.ws79{word-spacing:-12.426667pt;}
.ws47{word-spacing:-12.373333pt;}
.ws18{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.266667pt;}
.ws28{word-spacing:-12.213333pt;}
.ws34{word-spacing:-12.160000pt;}
.ws2e{word-spacing:-12.106667pt;}
.ws30{word-spacing:-12.053333pt;}
.ws23{word-spacing:-12.000000pt;}
.ws3f{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.861333pt;}
.ws56{word-spacing:-11.786667pt;}
.ws3c{word-spacing:-11.680000pt;}
.ws4d{word-spacing:-11.413333pt;}
.ws2a{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.243179pt;}
.ws68{word-spacing:-9.866667pt;}
.ws3a{word-spacing:-9.813333pt;}
.ws4c{word-spacing:-9.760000pt;}
.ws2b{word-spacing:-9.706667pt;}
.ws37{word-spacing:-9.600000pt;}
.ws4f{word-spacing:-9.493333pt;}
.ws1c{word-spacing:-9.440000pt;}
.ws27{word-spacing:-9.386667pt;}
.ws57{word-spacing:-9.333333pt;}
.ws33{word-spacing:-9.280000pt;}
.ws5d{word-spacing:-9.226667pt;}
.ws73{word-spacing:-9.173333pt;}
.ws48{word-spacing:-9.120000pt;}
.ws24{word-spacing:-9.066667pt;}
.ws1d{word-spacing:-9.013333pt;}
.ws76{word-spacing:-8.960000pt;}
.ws3e{word-spacing:-8.746667pt;}
.ws6b{word-spacing:-8.586667pt;}
.ws39{word-spacing:-8.480000pt;}
.ws77{word-spacing:-8.106667pt;}
.ws7c{word-spacing:-8.000000pt;}
.ws42{word-spacing:-7.680000pt;}
.ws7a{word-spacing:-7.626667pt;}
.ws38{word-spacing:-7.573333pt;}
.ws8{word-spacing:-7.467271pt;}
.ws2c{word-spacing:-6.826667pt;}
.ws41{word-spacing:-6.773333pt;}
.ws44{word-spacing:-6.720000pt;}
.ws54{word-spacing:-6.666667pt;}
.ws58{word-spacing:-6.613333pt;}
.ws3d{word-spacing:-6.560000pt;}
.ws2d{word-spacing:-6.506667pt;}
.ws36{word-spacing:-6.453333pt;}
.ws2f{word-spacing:-6.400000pt;}
.ws21{word-spacing:-6.346667pt;}
.ws1b{word-spacing:-6.293333pt;}
.ws65{word-spacing:-6.240000pt;}
.ws43{word-spacing:-6.186667pt;}
.ws63{word-spacing:-6.080000pt;}
.ws32{word-spacing:-5.706667pt;}
.ws70{word-spacing:-5.653333pt;}
.ws71{word-spacing:-5.600000pt;}
.ws45{word-spacing:-5.493333pt;}
.ws59{word-spacing:-5.280000pt;}
.ws4a{word-spacing:-4.320000pt;}
.ws61{word-spacing:-3.786667pt;}
.ws6f{word-spacing:-3.680000pt;}
.ws5b{word-spacing:-3.626667pt;}
.ws40{word-spacing:-3.573333pt;}
.ws35{word-spacing:-3.520000pt;}
.ws29{word-spacing:-3.466667pt;}
.ws17{word-spacing:-3.451261pt;}
.ws4b{word-spacing:-3.413333pt;}
.ws1e{word-spacing:-3.360000pt;}
.ws1f{word-spacing:-3.306667pt;}
.ws5f{word-spacing:-3.253333pt;}
.ws55{word-spacing:-3.200000pt;}
.ws62{word-spacing:-3.146667pt;}
.ws66{word-spacing:-3.093333pt;}
.ws67{word-spacing:-3.040000pt;}
.ws74{word-spacing:-2.933333pt;}
.ws19{word-spacing:-2.720000pt;}
.wsb{word-spacing:-2.640000pt;}
.ws60{word-spacing:-2.613333pt;}
.wsa{word-spacing:-2.592000pt;}
.ws5c{word-spacing:-2.506667pt;}
.ws51{word-spacing:-2.400000pt;}
.ws4e{word-spacing:-2.346667pt;}
.ws31{word-spacing:-2.240000pt;}
.wsc{word-spacing:-1.776000pt;}
.ws6e{word-spacing:-1.653333pt;}
.ws25{word-spacing:-1.578667pt;}
.ws5e{word-spacing:-1.546667pt;}
.ws6d{word-spacing:-1.440000pt;}
.wse{word-spacing:-0.981333pt;}
.ws69{word-spacing:-0.960000pt;}
.ws9{word-spacing:-0.816000pt;}
.ws6a{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.768000pt;}
.ws50{word-spacing:-0.746667pt;}
.ws3b{word-spacing:-0.693333pt;}
.ws26{word-spacing:-0.640000pt;}
.ws5a{word-spacing:-0.586667pt;}
.ws6c{word-spacing:-0.533333pt;}
.ws80{word-spacing:-0.053333pt;}
.ws7b{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:3.285333pt;}
.ws10{word-spacing:5.162667pt;}
.wsd{word-spacing:11.818667pt;}
.ws11{word-spacing:17.280000pt;}
.ws12{word-spacing:72.016000pt;}
.ws7f{word-spacing:208.233067pt;}
.ws7e{word-spacing:457.085867pt;}
.ws7d{word-spacing:574.634667pt;}
._0{margin-left:-15.226347pt;}
._24{margin-left:-14.241067pt;}
._7{margin-left:-11.956816pt;}
._1{margin-left:-10.243179pt;}
._6{margin-left:-8.324090pt;}
._b{margin-left:-7.347200pt;}
._e{margin-left:-5.920000pt;}
._9{margin-left:-4.992000pt;}
._4{margin-left:-3.552000pt;}
._3{margin-left:-2.099200pt;}
._2{margin-left:-1.196800pt;}
._5{width:0.950400pt;}
._a{width:2.678400pt;}
._d{width:3.893333pt;}
._f{width:4.938667pt;}
._12{width:6.076800pt;}
._14{width:7.334933pt;}
._15{width:8.270933pt;}
._c{width:9.386667pt;}
._17{width:10.778667pt;}
._19{width:11.840000pt;}
._23{width:12.901333pt;}
._16{width:13.888000pt;}
._26{width:15.744000pt;}
._13{width:16.829333pt;}
._2c{width:25.762667pt;}
._2d{width:29.314667pt;}
._28{width:51.890667pt;}
._18{width:70.229333pt;}
._27{width:72.333333pt;}
._10{width:111.574558pt;}
._11{width:127.392533pt;}
._1b{width:143.896000pt;}
._25{width:150.818133pt;}
._29{width:161.452267pt;}
._2a{width:164.069333pt;}
._1c{width:207.838933pt;}
._2b{width:249.821333pt;}
._8{width:252.389276pt;}
._1a{width:273.352533pt;}
._1f{width:470.429867pt;}
._21{width:508.633067pt;}
._20{width:548.665067pt;}
._1e{width:574.682667pt;}
._22{width:580.633067pt;}
._1d{width:821.273067pt;}
.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;}
.fsf{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;}
.y244{bottom:67.946267pt;}
.y96{bottom:94.488133pt;}
.y31f{bottom:97.501333pt;}
.y270{bottom:98.557067pt;}
.y1a3{bottom:99.697733pt;}
.y106{bottom:100.277200pt;}
.y35b{bottom:100.560667pt;}
.y208{bottom:100.856667pt;}
.y1e4{bottom:101.215733pt;}
.y23c{bottom:101.610533pt;}
.y151{bottom:102.190000pt;}
.y21{bottom:103.508667pt;}
.y93{bottom:103.600667pt;}
.y38a{bottom:103.938933pt;}
.y59{bottom:104.576800pt;}
.y2d7{bottom:104.914533pt;}
.y2a2{bottom:107.288133pt;}
.y35d{bottom:107.760667pt;}
.ycd{bottom:110.204800pt;}
.y3d0{bottom:110.488133pt;}
.y1a2{bottom:112.497600pt;}
.y105{bottom:113.077200pt;}
.y31e{bottom:113.501333pt;}
.y207{bottom:113.656800pt;}
.y1e3{bottom:113.749067pt;}
.y26f{bottom:114.557067pt;}
.y23b{bottom:114.677200pt;}
.y3{bottom:114.787733pt;}
.y358{bottom:114.960667pt;}
.y150{bottom:115.256667pt;}
.y92{bottom:117.734000pt;}
.y20{bottom:117.908667pt;}
.y2d6{bottom:120.914533pt;}
.y389{bottom:121.538933pt;}
.y357{bottom:122.160667pt;}
.ycc{bottom:123.004667pt;}
.y58{bottom:128.135733pt;}
.y17c{bottom:129.077200pt;}
.y35a{bottom:129.360667pt;}
.y1e2{bottom:129.482400pt;}
.y31d{bottom:129.501333pt;}
.y26e{bottom:130.557067pt;}
.y23a{bottom:130.943867pt;}
.y14f{bottom:131.523333pt;}
.y91{bottom:131.867333pt;}
.y1a1{bottom:132.277200pt;}
.y1f{bottom:132.308667pt;}
.y104{bottom:132.856667pt;}
.y206{bottom:133.436133pt;}
.y2{bottom:134.341733pt;}
.y2a1{bottom:136.226800pt;}
.y35c{bottom:136.560667pt;}
.y2d5{bottom:136.914533pt;}
.y388{bottom:139.138933pt;}
.ycb{bottom:142.784267pt;}
.y359{bottom:143.760667pt;}
.y57{bottom:144.135733pt;}
.y1a0{bottom:145.077200pt;}
.y31c{bottom:145.501333pt;}
.y103{bottom:145.656800pt;}
.y90{bottom:146.000667pt;}
.y205{bottom:146.236267pt;}
.y26d{bottom:146.557067pt;}
.y17b{bottom:148.856667pt;}
.y1e1{bottom:148.995333pt;}
.y239{bottom:150.990133pt;}
.y14e{bottom:151.569600pt;}
.y2d4{bottom:152.914533pt;}
.y2a0{bottom:153.426800pt;}
.yca{bottom:155.584267pt;}
.y387{bottom:156.738933pt;}
.y8f{bottom:160.134000pt;}
.y56{bottom:160.135733pt;}
.y31b{bottom:161.501333pt;}
.y1e0{bottom:161.528667pt;}
.y17a{bottom:161.656800pt;}
.y204{bottom:162.236267pt;}
.y238{bottom:164.056667pt;}
.y14d{bottom:164.636267pt;}
.y354{bottom:164.642000pt;}
.y19f{bottom:164.856667pt;}
.y102{bottom:165.436133pt;}
.y2d3{bottom:168.914533pt;}
.y26c{bottom:170.116133pt;}
.y29f{bottom:170.626800pt;}
.yc9{bottom:171.584267pt;}
.y356{bottom:171.842000pt;}
.y8e{bottom:174.267333pt;}
.y55{bottom:176.135733pt;}
.y1df{bottom:177.262000pt;}
.y31a{bottom:177.501333pt;}
.y19e{bottom:177.656800pt;}
.y101{bottom:178.236267pt;}
.y352{bottom:179.042000pt;}
.y179{bottom:181.436133pt;}
.y386{bottom:181.898000pt;}
.y203{bottom:182.015733pt;}
.y237{bottom:184.102800pt;}
.y14c{bottom:184.682400pt;}
.y2d2{bottom:184.914533pt;}
.y355{bottom:186.242000pt;}
.y29e{bottom:187.826800pt;}
.y8d{bottom:188.400667pt;}
.yc8{bottom:191.363733pt;}
.y54{bottom:192.135733pt;}
.y1de{bottom:192.995333pt;}
.y353{bottom:193.442000pt;}
.y319{bottom:193.501333pt;}
.y19d{bottom:193.656800pt;}
.y178{bottom:194.236267pt;}
.y202{bottom:194.815733pt;}
.y236{bottom:197.169600pt;}
.y14b{bottom:197.749067pt;}
.y100{bottom:198.015733pt;}
.y2d1{bottom:200.914533pt;}
.y8c{bottom:202.534000pt;}
.yc7{bottom:204.163867pt;}
.y29d{bottom:205.026800pt;}
.y26b{bottom:205.316133pt;}
.y385{bottom:207.057067pt;}
.y53{bottom:208.135867pt;}
.y318{bottom:209.501333pt;}
.yff{bottom:210.815733pt;}
.y4f{bottom:211.893600pt;}
.y1dd{bottom:212.508133pt;}
.y19c{bottom:213.436133pt;}
.y177{bottom:214.015733pt;}
.y34f{bottom:214.323333pt;}
.y201{bottom:214.595333pt;}
.y8b{bottom:216.667333pt;}
.y2d0{bottom:216.914533pt;}
.y1{bottom:217.394533pt;}
.y14a{bottom:217.795333pt;}
.y26a{bottom:219.716133pt;}
.yc6{bottom:220.163867pt;}
.y351{bottom:221.523333pt;}
.y29c{bottom:222.226800pt;}
.y1dc{bottom:225.041467pt;}
.y317{bottom:225.501333pt;}
.y19b{bottom:226.236267pt;}
.y4e{bottom:226.560267pt;}
.yfe{bottom:226.815733pt;}
.y200{bottom:227.395200pt;}
.y34e{bottom:228.723333pt;}
.y11b{bottom:230.595333pt;}
.y8a{bottom:230.800667pt;}
.y149{bottom:230.862000pt;}
.y52{bottom:231.694800pt;}
.y384{bottom:232.216000pt;}
.y2cf{bottom:232.914533pt;}
.y235{bottom:233.482400pt;}
.y34b{bottom:235.923333pt;}
.y29b{bottom:239.426800pt;}
.yc5{bottom:239.943333pt;}
.y1db{bottom:240.774800pt;}
.y4d{bottom:241.226933pt;}
.y316{bottom:241.501333pt;}
.y269{bottom:241.675067pt;}
.y19a{bottom:242.236267pt;}
.y176{bottom:242.815733pt;}
.y34d{bottom:243.123333pt;}
.y11a{bottom:243.395200pt;}
.y89{bottom:244.934000pt;}
.y234{bottom:246.549067pt;}
.yfd{bottom:246.595333pt;}
.y1ff{bottom:247.174800pt;}
.y2ce{bottom:248.914533pt;}
.y350{bottom:250.323333pt;}
.y148{bottom:250.908133pt;}
.yc4{bottom:252.743333pt;}
.y51{bottom:255.253867pt;}
.y4c{bottom:255.893600pt;}
.y268{bottom:256.075200pt;}
.y29a{bottom:256.626800pt;}
.y383{bottom:257.375067pt;}
.y315{bottom:257.501333pt;}
.y34c{bottom:257.523333pt;}
.y88{bottom:259.067333pt;}
.yfc{bottom:259.395200pt;}
.y1fe{bottom:259.974800pt;}
.y1da{bottom:260.287733pt;}
.y199{bottom:262.015733pt;}
.y175{bottom:262.595333pt;}
.y147{bottom:263.974800pt;}
.y2cd{bottom:264.914533pt;}
.y233{bottom:266.595333pt;}
.y267{bottom:270.475200pt;}
.y4b{bottom:270.560267pt;}
.y50{bottom:271.253867pt;}
.yc3{bottom:272.522800pt;}
.y1d9{bottom:272.821067pt;}
.y87{bottom:273.200667pt;}
.y314{bottom:273.501333pt;}
.y299{bottom:273.826800pt;}
.y198{bottom:274.815733pt;}
.y174{bottom:275.395200pt;}
.y1fd{bottom:275.974800pt;}
.y34a{bottom:278.404667pt;}
.yfb{bottom:279.174800pt;}
.y232{bottom:279.662000pt;}
.y146{bottom:280.241467pt;}
.y2cc{bottom:280.914533pt;}
.y382{bottom:282.534133pt;}
.y266{bottom:284.875200pt;}
.y4a{bottom:285.226933pt;}
.yc2{bottom:285.322800pt;}
.y346{bottom:285.604533pt;}
.y313{bottom:289.501333pt;}
.y298{bottom:291.026800pt;}
.y1ac{bottom:291.395200pt;}
.yfa{bottom:291.974800pt;}
.y1d8{bottom:292.333867pt;}
.y349{bottom:292.804667pt;}
.y16{bottom:294.285600pt;}
.y197{bottom:294.595333pt;}
.y173{bottom:295.174800pt;}
.y1fc{bottom:295.754267pt;}
.y231{bottom:295.928667pt;}
.y2cb{bottom:296.914533pt;}
.y265{bottom:299.275200pt;}
.y49{bottom:299.893600pt;}
.y344{bottom:300.004533pt;}
.y381{bottom:300.134133pt;}
.y145{bottom:300.287733pt;}
.y1d7{bottom:304.867200pt;}
.yc1{bottom:305.102400pt;}
.y312{bottom:305.501333pt;}
.y348{bottom:307.204533pt;}
.y196{bottom:307.395200pt;}
.yf9{bottom:307.974800pt;}
.y297{bottom:308.226800pt;}
.y1fb{bottom:308.554400pt;}
.y15{bottom:308.685600pt;}
.y1ab{bottom:311.174800pt;}
.y119{bottom:311.754267pt;}
.y2ca{bottom:312.914533pt;}
.y144{bottom:313.354267pt;}
.y264{bottom:313.675067pt;}
.y345{bottom:314.404667pt;}
.y48{bottom:314.560267pt;}
.y230{bottom:315.974800pt;}
.y380{bottom:317.734267pt;}
.yc0{bottom:317.902400pt;}
.y311{bottom:321.501333pt;}
.y347{bottom:321.604533pt;}
.y14{bottom:323.085600pt;}
.y3d5{bottom:323.331733pt;}
.y1aa{bottom:323.974800pt;}
.y1d6{bottom:324.380000pt;}
.y118{bottom:324.554400pt;}
.y296{bottom:325.426800pt;}
.y195{bottom:327.174800pt;}
.yf8{bottom:327.754267pt;}
.y263{bottom:328.075200pt;}
.y3c6{bottom:328.095867pt;}
.y1fa{bottom:328.333867pt;}
.y2c9{bottom:328.914533pt;}
.y22f{bottom:329.041467pt;}
.y47{bottom:329.226933pt;}
.y143{bottom:329.621067pt;}
.y37f{bottom:335.334133pt;}
.y1d5{bottom:336.913467pt;}
.y13{bottom:337.485600pt;}
.y310{bottom:337.501333pt;}
.ybf{bottom:337.681867pt;}
.y194{bottom:339.974800pt;}
.yf7{bottom:340.554400pt;}
.y3d4{bottom:340.931733pt;}
.y1f9{bottom:341.133867pt;}
.y262{bottom:342.475200pt;}
.y341{bottom:342.485867pt;}
.y295{bottom:342.626800pt;}
.y46{bottom:343.893600pt;}
.y2c8{bottom:344.914533pt;}
.y86{bottom:347.505067pt;}
.y22e{bottom:349.087733pt;}
.y142{bottom:349.667200pt;}
.y343{bottom:349.685867pt;}
.ybe{bottom:350.481867pt;}
.y12{bottom:351.885600pt;}
.y1d4{bottom:352.646667pt;}
.y30f{bottom:353.501333pt;}
.y17{bottom:353.950267pt;}
.y3c5{bottom:354.854933pt;}
.y172{bottom:356.554400pt;}
.y340{bottom:356.885867pt;}
.y3d3{bottom:358.531733pt;}
.y45{bottom:358.560267pt;}
.y193{bottom:359.754400pt;}
.y294{bottom:359.826800pt;}
.yf6{bottom:360.333867pt;}
.y37e{bottom:360.493200pt;}
.y1f8{bottom:360.913467pt;}
.y2c7{bottom:360.914533pt;}
.y261{bottom:361.878133pt;}
.y22d{bottom:362.154400pt;}
.y85{bottom:362.171733pt;}
.y141{bottom:362.733867pt;}
.y33d{bottom:364.085867pt;}
.y11{bottom:366.285600pt;}
.y30e{bottom:369.501333pt;}
.ybd{bottom:370.261467pt;}
.y33f{bottom:371.285867pt;}
.y1d3{bottom:372.159600pt;}
.y192{bottom:372.554400pt;}
.yf5{bottom:373.133867pt;}
.y44{bottom:373.226933pt;}
.y1f7{bottom:373.713333pt;}
.y3d2{bottom:376.131733pt;}
.y260{bottom:376.278133pt;}
.y171{bottom:376.333867pt;}
.y84{bottom:376.838400pt;}
.y2c6{bottom:376.914533pt;}
.y293{bottom:377.026800pt;}
.y37d{bottom:378.093200pt;}
.y342{bottom:378.485867pt;}
.y10{bottom:380.685600pt;}
.y3c4{bottom:381.614000pt;}
.y22c{bottom:382.200533pt;}
.y140{bottom:382.780133pt;}
.ybc{bottom:383.061467pt;}
.y1d2{bottom:384.692933pt;}
.y30d{bottom:385.501333pt;}
.y33e{bottom:385.685867pt;}
.y43{bottom:387.893600pt;}
.y1a9{bottom:388.554400pt;}
.y170{bottom:389.133867pt;}
.y1f6{bottom:389.713333pt;}
.y83{bottom:391.505067pt;}
.y191{bottom:392.333867pt;}
.yf4{bottom:392.913467pt;}
.y2c5{bottom:392.914533pt;}
.y3d1{bottom:393.731733pt;}
.y292{bottom:394.226800pt;}
.yf{bottom:395.085600pt;}
.y22b{bottom:395.267200pt;}
.y37c{bottom:395.693200pt;}
.y13f{bottom:395.846667pt;}
.y25f{bottom:398.237200pt;}
.ybb{bottom:399.061467pt;}
.y1d1{bottom:400.426267pt;}
.y30c{bottom:401.501333pt;}
.y42{bottom:402.560267pt;}
.y16f{bottom:405.133867pt;}
.yf3{bottom:405.713333pt;}
.y82{bottom:406.171733pt;}
.y33a{bottom:406.567200pt;}
.y1a8{bottom:408.333867pt;}
.y3c3{bottom:408.373067pt;}
.y2c4{bottom:408.914533pt;}
.ye{bottom:409.485600pt;}
.y1f5{bottom:409.492933pt;}
.y291{bottom:411.426800pt;}
.y240{bottom:412.113467pt;}
.y25e{bottom:412.637200pt;}
.y37b{bottom:413.293200pt;}
.y33c{bottom:413.767200pt;}
.y22a{bottom:415.313333pt;}
.y13e{bottom:415.892933pt;}
.y41{bottom:417.226933pt;}
.y30b{bottom:417.501333pt;}
.y3b4{bottom:417.556533pt;}
.yba{bottom:418.840933pt;}
.y18{bottom:419.111067pt;}
.y1d0{bottom:419.939067pt;}
.y81{bottom:420.838400pt;}
.y337{bottom:420.967200pt;}
.y190{bottom:421.133867pt;}
.y1f4{bottom:422.292933pt;}
.yd{bottom:423.885600pt;}
.y16e{bottom:424.913467pt;}
.y2c3{bottom:424.914533pt;}
.yf2{bottom:425.492933pt;}
.y25d{bottom:427.037200pt;}
.y336{bottom:428.167200pt;}
.y229{bottom:428.380000pt;}
.y290{bottom:428.626800pt;}
.y13d{bottom:428.959600pt;}
.y37a{bottom:430.893200pt;}
.yb9{bottom:431.640933pt;}
.y40{bottom:431.893600pt;}
.y3b3{bottom:431.956533pt;}
.y23f{bottom:432.159600pt;}
.y1cf{bottom:432.472400pt;}
.y3c2{bottom:435.132133pt;}
.y339{bottom:435.367200pt;}
.y80{bottom:435.505067pt;}
.y16d{bottom:437.713333pt;}
.yc{bottom:438.285600pt;}
.yf1{bottom:438.292933pt;}
.y18f{bottom:440.913467pt;}
.y2c2{bottom:440.914533pt;}
.y25c{bottom:441.437200pt;}
.y33b{bottom:442.567200pt;}
.y228{bottom:444.646667pt;}
.y13c{bottom:445.226267pt;}
.y3b2{bottom:446.356533pt;}
.y3f{bottom:446.560267pt;}
.yb8{bottom:447.640933pt;}
.y1ce{bottom:448.205733pt;}
.y307{bottom:449.501200pt;}
.y338{bottom:449.767200pt;}
.y7f{bottom:450.171733pt;}
.yb{bottom:452.685600pt;}
.y28f{bottom:453.385867pt;}
.y16c{bottom:453.713333pt;}
.y117{bottom:454.292933pt;}
.y25b{bottom:455.837200pt;}
.y379{bottom:456.052267pt;}
.y30a{bottom:456.701333pt;}
.y2c1{bottom:456.914533pt;}
.yf0{bottom:458.072533pt;}
.y3b1{bottom:460.756533pt;}
.y3e{bottom:461.226933pt;}
.y3c1{bottom:461.891200pt;}
.y306{bottom:463.901333pt;}
.y227{bottom:464.692933pt;}
.y7e{bottom:464.838400pt;}
.y13b{bottom:465.272400pt;}
.ya{bottom:467.085600pt;}
.yb7{bottom:467.420533pt;}
.y1cd{bottom:467.718667pt;}
.y25a{bottom:470.237200pt;}
.y335{bottom:470.648533pt;}
.yef{bottom:470.872400pt;}
.y303{bottom:471.101333pt;}
.y2c0{bottom:472.914533pt;}
.y16b{bottom:473.492933pt;}
.y378{bottom:473.652267pt;}
.y116{bottom:474.072533pt;}
.y3b0{bottom:475.156533pt;}
.y3d{bottom:475.893600pt;}
.y226{bottom:477.759600pt;}
.y334{bottom:477.848533pt;}
.y302{bottom:478.301333pt;}
.y13a{bottom:478.339067pt;}
.y7d{bottom:479.505067pt;}
.yb6{bottom:480.220400pt;}
.y1cc{bottom:480.252000pt;}
.y9{bottom:481.485600pt;}
.y259{bottom:484.637200pt;}
.y309{bottom:485.501200pt;}
.y16a{bottom:486.292933pt;}
.y115{bottom:486.872400pt;}
.y3c0{bottom:488.650267pt;}
.y2bf{bottom:488.914533pt;}
.y3af{bottom:489.556533pt;}
.y3c{bottom:490.560267pt;}
.yee{bottom:490.652000pt;}
.y28e{bottom:490.985867pt;}
.y377{bottom:491.252267pt;}
.y305{bottom:492.701333pt;}
.y225{bottom:494.026267pt;}
.y7c{bottom:494.171733pt;}
.y8{bottom:495.885600pt;}
.y139{bottom:498.385333pt;}
.y1cb{bottom:499.764800pt;}
.y308{bottom:499.901333pt;}
.yb5{bottom:500.000000pt;}
.y114{bottom:502.872400pt;}
.yed{bottom:503.452000pt;}
.y3ae{bottom:503.956533pt;}
.y258{bottom:504.040267pt;}
.y2be{bottom:504.914533pt;}
.y3b{bottom:505.226933pt;}
.y169{bottom:506.072533pt;}
.y304{bottom:507.101333pt;}
.y28d{bottom:508.185867pt;}
.y3cf{bottom:508.733600pt;}
.y7b{bottom:508.838400pt;}
.y376{bottom:508.852267pt;}
.y7{bottom:510.285600pt;}
.y138{bottom:511.452000pt;}
.y1ca{bottom:512.298133pt;}
.yb4{bottom:512.800000pt;}
.y224{bottom:514.072533pt;}
.y3bf{bottom:515.409200pt;}
.y3ad{bottom:518.356533pt;}
.y257{bottom:518.440133pt;}
.y168{bottom:518.872400pt;}
.yec{bottom:519.452000pt;}
.y3a{bottom:519.893600pt;}
.y2bd{bottom:520.914533pt;}
.y333{bottom:521.190667pt;}
.y113{bottom:522.652000pt;}
.y1f3{bottom:523.231467pt;}
.y7a{bottom:523.505067pt;}
.y6{bottom:524.685733pt;}
.y28c{bottom:525.385867pt;}
.y3ce{bottom:526.333600pt;}
.y375{bottom:526.452267pt;}
.y301{bottom:526.504267pt;}
.y223{bottom:527.139067pt;}
.y137{bottom:527.718667pt;}
.y1c9{bottom:528.031467pt;}
.yb3{bottom:528.800000pt;}
.y3ac{bottom:532.756533pt;}
.y2fd{bottom:533.704267pt;}
.y39{bottom:534.560267pt;}
.y18e{bottom:534.872400pt;}
.y112{bottom:535.452000pt;}
.y1f2{bottom:536.031467pt;}
.y2bc{bottom:536.914533pt;}
.y332{bottom:537.190667pt;}
.y79{bottom:538.171733pt;}
.y167{bottom:538.652000pt;}
.y5{bottom:539.085600pt;}
.yeb{bottom:539.231467pt;}
.y256{bottom:540.399200pt;}
.y300{bottom:540.904267pt;}
.y3be{bottom:542.168400pt;}
.y28b{bottom:542.585867pt;}
.y3cd{bottom:543.933600pt;}
.y3ab{bottom:547.156533pt;}
.y222{bottom:547.185333pt;}
.y1c8{bottom:547.544400pt;}
.y136{bottom:547.764800pt;}
.y2fb{bottom:548.104267pt;}
.yb2{bottom:548.579600pt;}
.y38{bottom:549.226933pt;}
.y166{bottom:551.452000pt;}
.y374{bottom:551.611333pt;}
.yea{bottom:552.031467pt;}
.y78{bottom:552.838400pt;}
.y2bb{bottom:552.914533pt;}
.y18d{bottom:554.652000pt;}
.y255{bottom:554.799200pt;}
.y111{bottom:555.231467pt;}
.y2ff{bottom:555.304267pt;}
.y28a{bottom:559.785867pt;}
.y1c7{bottom:560.077733pt;}
.y221{bottom:560.252000pt;}
.y331{bottom:560.749733pt;}
.y135{bottom:560.831467pt;}
.yb1{bottom:561.379467pt;}
.y3cc{bottom:561.533600pt;}
.y3aa{bottom:561.556533pt;}
.y2fc{bottom:562.504267pt;}
.y37{bottom:563.893600pt;}
.y18c{bottom:567.452000pt;}
.y77{bottom:567.505067pt;}
.y110{bottom:568.031467pt;}
.y2ba{bottom:568.914533pt;}
.y3bd{bottom:568.927467pt;}
.y254{bottom:569.199200pt;}
.y373{bottom:569.211333pt;}
.y2fe{bottom:569.704267pt;}
.y165{bottom:571.231467pt;}
.ye9{bottom:571.811067pt;}
.y1c6{bottom:575.811067pt;}
.y3a9{bottom:575.956533pt;}
.y330{bottom:576.749733pt;}
.y289{bottom:576.985867pt;}
.y134{bottom:577.098133pt;}
.y36{bottom:578.560267pt;}
.y220{bottom:580.298133pt;}
.y23e{bottom:580.877733pt;}
.yb0{bottom:581.159067pt;}
.y76{bottom:582.171733pt;}
.y253{bottom:583.599200pt;}
.y164{bottom:584.031467pt;}
.ye8{bottom:584.611067pt;}
.y2b9{bottom:584.914533pt;}
.y372{bottom:586.811333pt;}
.y18b{bottom:587.231467pt;}
.y10f{bottom:587.811067pt;}
.y2f6{bottom:589.107200pt;}
.y3a8{bottom:590.356533pt;}
.y35{bottom:593.226933pt;}
.y21f{bottom:593.364800pt;}
.y23d{bottom:593.944400pt;}
.yaf{bottom:593.959067pt;}
.y288{bottom:594.185867pt;}
.y1c5{bottom:595.323867pt;}
.y3bc{bottom:595.686400pt;}
.y2fa{bottom:596.307333pt;}
.y75{bottom:596.838400pt;}
.y133{bottom:597.144400pt;}
.y252{bottom:597.999200pt;}
.y18a{bottom:600.031467pt;}
.y32f{bottom:600.308800pt;}
.y10e{bottom:600.611067pt;}
.y2b8{bottom:600.914533pt;}
.y2f4{bottom:603.507333pt;}
.y163{bottom:603.811067pt;}
.ye7{bottom:604.390533pt;}
.y371{bottom:604.411333pt;}
.y3a7{bottom:604.756533pt;}
.y1c4{bottom:607.857200pt;}
.y34{bottom:607.893600pt;}
.y132{bottom:610.211067pt;}
.y2f9{bottom:610.707333pt;}
.y287{bottom:611.385867pt;}
.y74{bottom:611.505067pt;}
.y251{bottom:612.399200pt;}
.y21e{bottom:613.411067pt;}
.yae{bottom:613.738667pt;}
.y32e{bottom:616.308800pt;}
.y162{bottom:616.611067pt;}
.y2b7{bottom:616.914533pt;}
.ye6{bottom:617.190533pt;}
.y2f2{bottom:617.907333pt;}
.y3a6{bottom:619.156533pt;}
.y189{bottom:619.811067pt;}
.y10d{bottom:620.390533pt;}
.y370{bottom:622.011333pt;}
.y3bb{bottom:622.445467pt;}
.y33{bottom:622.560267pt;}
.y2f8{bottom:625.107200pt;}
.y73{bottom:626.171733pt;}
.y21d{bottom:626.477733pt;}
.yad{bottom:626.538533pt;}
.y250{bottom:626.799200pt;}
.y1c3{bottom:627.370133pt;}
.y286{bottom:628.585867pt;}
.y131{bottom:630.257200pt;}
.y2f3{bottom:632.307333pt;}
.y161{bottom:632.611067pt;}
.y2b6{bottom:632.914533pt;}
.ye5{bottom:633.190533pt;}
.y3a5{bottom:633.556533pt;}
.y32{bottom:637.226933pt;}
.y2f7{bottom:639.507333pt;}
.y36f{bottom:639.611333pt;}
.y32d{bottom:639.867733pt;}
.y1c2{bottom:639.903467pt;}
.y72{bottom:640.838400pt;}
.y130{bottom:643.323867pt;}
.y285{bottom:645.785867pt;}
.yac{bottom:646.318133pt;}
.y21c{bottom:646.523867pt;}
.y2f5{bottom:646.707333pt;}
.y3a4{bottom:647.956533pt;}
.y2b5{bottom:648.914533pt;}
.y3ba{bottom:649.204533pt;}
.y31{bottom:651.893600pt;}
.y160{bottom:652.390533pt;}
.ye4{bottom:652.970133pt;}
.y71{bottom:655.505067pt;}
.y32c{bottom:655.867733pt;}
.yab{bottom:659.118133pt;}
.y1c1{bottom:659.416267pt;}
.y12f{bottom:659.590533pt;}
.y24f{bottom:662.202267pt;}
.y3a3{bottom:662.356533pt;}
.y284{bottom:662.985867pt;}
.y36e{bottom:664.770400pt;}
.y15f{bottom:665.190533pt;}
.ye3{bottom:665.770133pt;}
.y2f1{bottom:666.110267pt;}
.y30{bottom:666.560267pt;}
.y70{bottom:670.171733pt;}
.y1c0{bottom:671.949600pt;}
.y21b{bottom:675.857200pt;}
.y3b9{bottom:675.963600pt;}
.y3c7{bottom:676.535467pt;}
.y3a2{bottom:676.756533pt;}
.y24e{bottom:678.202267pt;}
.yaa{bottom:678.897600pt;}
.y32b{bottom:679.426800pt;}
.y12e{bottom:679.636800pt;}
.y283{bottom:680.185867pt;}
.y2ef{bottom:680.510267pt;}
.y2b4{bottom:680.914533pt;}
.y188{bottom:681.190533pt;}
.y2f{bottom:681.226933pt;}
.y36d{bottom:682.370400pt;}
.y6f{bottom:684.838400pt;}
.y15e{bottom:684.970000pt;}
.ye2{bottom:685.549600pt;}
.y3a1{bottom:691.156533pt;}
.y1bf{bottom:691.462533pt;}
.ya9{bottom:691.697600pt;}
.y12d{bottom:692.703467pt;}
.y2ee{bottom:694.910267pt;}
.y32a{bottom:695.426800pt;}
.y2e{bottom:695.893600pt;}
.y21a{bottom:695.903467pt;}
.y282{bottom:697.385867pt;}
.y15d{bottom:697.770133pt;}
.ye1{bottom:698.349600pt;}
.y6e{bottom:699.505067pt;}
.y36c{bottom:699.970400pt;}
.y2b3{bottom:700.317600pt;}
.y187{bottom:700.970000pt;}
.y2eb{bottom:702.110267pt;}
.y3b8{bottom:702.722667pt;}
.y1be{bottom:703.995733pt;}
.y3a0{bottom:705.556533pt;}
.ya8{bottom:707.697600pt;}
.y219{bottom:708.970000pt;}
.y2ed{bottom:709.310267pt;}
.y2d{bottom:710.560267pt;}
.y24d{bottom:711.802267pt;}
.y12c{bottom:712.749600pt;}
.y186{bottom:713.770133pt;}
.y6d{bottom:714.171733pt;}
.y281{bottom:714.585867pt;}
.y3cb{bottom:716.515333pt;}
.y15c{bottom:717.549600pt;}
.y36b{bottom:717.570400pt;}
.ye0{bottom:718.129200pt;}
.y329{bottom:718.985867pt;}
.y2b2{bottom:719.720533pt;}
.y1bd{bottom:719.729200pt;}
.y39f{bottom:719.956533pt;}
.y2ec{bottom:723.710267pt;}
.y2c{bottom:725.226933pt;}
.y12b{bottom:725.816267pt;}
.ya7{bottom:727.477200pt;}
.y24c{bottom:727.802267pt;}
.y6c{bottom:728.838400pt;}
.y218{bottom:729.016267pt;}
.y3b7{bottom:729.481733pt;}
.y15b{bottom:730.349600pt;}
.ydf{bottom:730.929067pt;}
.y280{bottom:731.785867pt;}
.y185{bottom:733.549600pt;}
.y39e{bottom:734.356533pt;}
.y328{bottom:734.985867pt;}
.y36a{bottom:735.170400pt;}
.y2f0{bottom:738.110267pt;}
.y2b1{bottom:739.123600pt;}
.y1bc{bottom:739.242000pt;}
.y2b{bottom:739.893600pt;}
.ya6{bottom:740.277200pt;}
.y217{bottom:742.082933pt;}
.y3ca{bottom:743.274267pt;}
.y6b{bottom:743.505067pt;}
.y12a{bottom:745.862533pt;}
.y184{bottom:746.349600pt;}
.y10c{bottom:746.929067pt;}
.y39d{bottom:748.756533pt;}
.y27f{bottom:748.985867pt;}
.y15a{bottom:750.129200pt;}
.yde{bottom:750.708667pt;}
.y327{bottom:750.985867pt;}
.y1bb{bottom:751.775333pt;}
.y369{bottom:752.770400pt;}
.y2a{bottom:754.560267pt;}
.y3b6{bottom:756.240800pt;}
.ya5{bottom:756.277200pt;}
.y2e6{bottom:757.513200pt;}
.y6a{bottom:758.171733pt;}
.y2b0{bottom:758.526533pt;}
.y129{bottom:758.929067pt;}
.y24b{bottom:761.402267pt;}
.y216{bottom:762.129200pt;}
.y159{bottom:762.929067pt;}
.y39c{bottom:763.156533pt;}
.ydd{bottom:763.508667pt;}
.y2ea{bottom:764.713333pt;}
.y183{bottom:766.129200pt;}
.y27e{bottom:766.185867pt;}
.y10b{bottom:766.708667pt;}
.y326{bottom:766.985867pt;}
.y1ba{bottom:767.508667pt;}
.y29{bottom:769.226933pt;}
.y3c9{bottom:770.033467pt;}
.y2e4{bottom:771.913200pt;}
.y69{bottom:772.838400pt;}
.y215{bottom:775.195867pt;}
.ya4{bottom:776.056667pt;}
.y39b{bottom:777.556533pt;}
.y2af{bottom:777.929467pt;}
.y182{bottom:778.929067pt;}
.y128{bottom:778.975333pt;}
.y2e9{bottom:779.113333pt;}
.ydc{bottom:779.508667pt;}
.y158{bottom:782.708667pt;}
.y325{bottom:782.985867pt;}
.y3b5{bottom:782.999867pt;}
.y1f1{bottom:783.288267pt;}
.y27d{bottom:783.385867pt;}
.y28{bottom:783.893600pt;}
.y2e2{bottom:786.313333pt;}
.y1b9{bottom:787.021600pt;}
.y68{bottom:787.505067pt;}
.ya3{bottom:788.856667pt;}
.y39a{bottom:791.956533pt;}
.y127{bottom:792.042000pt;}
.y2e8{bottom:793.513200pt;}
.y2ae{bottom:793.929467pt;}
.y214{bottom:795.242000pt;}
.y157{bottom:795.508667pt;}
.y368{bottom:795.529467pt;}
.y1f0{bottom:796.088267pt;}
.y3c8{bottom:796.792533pt;}
.y27{bottom:798.560267pt;}
.y181{bottom:798.708667pt;}
.y324{bottom:798.985867pt;}
.ydb{bottom:799.288267pt;}
.y1b8{bottom:799.554800pt;}
.y24a{bottom:799.802267pt;}
.y27c{bottom:800.585867pt;}
.y2e3{bottom:800.713333pt;}
.y67{bottom:802.171733pt;}
.y399{bottom:806.356533pt;}
.y2e7{bottom:807.913200pt;}
.y213{bottom:808.308667pt;}
.ya2{bottom:808.636267pt;}
.y2ad{bottom:809.929467pt;}
.y180{bottom:811.508667pt;}
.yda{bottom:812.088267pt;}
.y367{bottom:813.129467pt;}
.y26{bottom:813.226933pt;}
.y323{bottom:814.985867pt;}
.y2e5{bottom:815.113333pt;}
.y156{bottom:815.288267pt;}
.y1ef{bottom:815.867733pt;}
.y66{bottom:816.838400pt;}
.y27b{bottom:817.785867pt;}
.y398{bottom:820.756533pt;}
.ya1{bottom:821.436133pt;}
.y126{bottom:825.154800pt;}
.y2ac{bottom:825.929467pt;}
.y10a{bottom:828.088267pt;}
.y212{bottom:828.354933pt;}
.y1ee{bottom:828.667733pt;}
.y366{bottom:830.729467pt;}
.y322{bottom:830.985867pt;}
.y17f{bottom:831.288267pt;}
.y65{bottom:831.505067pt;}
.yd9{bottom:831.867733pt;}
.y2e0{bottom:834.516267pt;}
.y1b7{bottom:834.801067pt;}
.y27a{bottom:834.985867pt;}
.y397{bottom:835.156533pt;}
.y25{bottom:835.452667pt;}
.y249{bottom:838.202267pt;}
.ya0{bottom:841.215733pt;}
.y211{bottom:841.421600pt;}
.y2df{bottom:841.716267pt;}
.y17e{bottom:844.088267pt;}
.yd8{bottom:844.667733pt;}
.y125{bottom:845.201067pt;}
.y64{bottom:846.171733pt;}
.y321{bottom:846.985867pt;}
.y1b6{bottom:847.334400pt;}
.y109{bottom:847.867733pt;}
.y365{bottom:848.329467pt;}
.y1ed{bottom:848.447200pt;}
.y2e1{bottom:848.916267pt;}
.y2ab{bottom:849.488667pt;}
.y396{bottom:849.556667pt;}
.y24{bottom:850.119333pt;}
.y279{bottom:852.185867pt;}
.y9f{bottom:854.015733pt;}
.y124{bottom:858.267733pt;}
.yd7{bottom:860.667733pt;}
.y63{bottom:860.838400pt;}
.y1ec{bottom:861.247200pt;}
.y210{bottom:861.467733pt;}
.y320{bottom:862.985867pt;}
.y17d{bottom:863.867733pt;}
.y395{bottom:863.956667pt;}
.y243{bottom:864.447200pt;}
.y364{bottom:865.929467pt;}
.y1b5{bottom:866.847200pt;}
.y278{bottom:869.385867pt;}
.y9e{bottom:870.015733pt;}
.y23{bottom:872.345067pt;}
.y20f{bottom:874.534400pt;}
.y62{bottom:875.505067pt;}
.y248{bottom:876.602267pt;}
.y108{bottom:876.667733pt;}
.y242{bottom:877.247200pt;}
.y123{bottom:878.314000pt;}
.y394{bottom:878.356667pt;}
.y2de{bottom:878.985867pt;}
.y1b4{bottom:879.380667pt;}
.yd6{bottom:880.447200pt;}
.y1eb{bottom:881.026800pt;}
.y363{bottom:883.529600pt;}
.y2aa{bottom:884.688533pt;}
.y277{bottom:886.585867pt;}
.y22{bottom:887.011733pt;}
.y9d{bottom:889.795333pt;}
.y61{bottom:890.171733pt;}
.y122{bottom:891.380667pt;}
.y393{bottom:892.756533pt;}
.yd5{bottom:893.247200pt;}
.y1ea{bottom:893.826800pt;}
.y20e{bottom:894.580533pt;}
.y2dd{bottom:894.985867pt;}
.y1b3{bottom:895.113867pt;}
.y107{bottom:896.447200pt;}
.y241{bottom:897.026800pt;}
.y2a9{bottom:900.688533pt;}
.y9c{bottom:902.595333pt;}
.y276{bottom:903.785867pt;}
.y60{bottom:904.838400pt;}
.y392{bottom:907.156667pt;}
.y20d{bottom:907.647333pt;}
.y362{bottom:908.688533pt;}
.yd4{bottom:909.247200pt;}
.y1e9{bottom:909.826800pt;}
.y2dc{bottom:910.985867pt;}
.y121{bottom:911.426800pt;}
.y155{bottom:913.026800pt;}
.y1b2{bottom:914.626800pt;}
.y247{bottom:915.002267pt;}
.y2a8{bottom:916.688533pt;}
.y5f{bottom:919.505067pt;}
.y1d{bottom:920.123333pt;}
.y1e{bottom:920.123467pt;}
.y275{bottom:920.985867pt;}
.y391{bottom:921.556667pt;}
.y9b{bottom:922.374933pt;}
.y120{bottom:924.493467pt;}
.y154{bottom:925.826800pt;}
.y361{bottom:926.288533pt;}
.y2db{bottom:926.985867pt;}
.y1b1{bottom:927.160133pt;}
.y20c{bottom:927.693467pt;}
.yd3{bottom:929.026800pt;}
.y1e8{bottom:929.606267pt;}
.y2a7{bottom:932.688533pt;}
.y5e{bottom:934.171733pt;}
.y9a{bottom:935.174933pt;}
.y390{bottom:935.956667pt;}
.y274{bottom:938.185867pt;}
.y11f{bottom:940.760133pt;}
.yd2{bottom:941.826800pt;}
.y1e7{bottom:942.406267pt;}
.y2da{bottom:942.985867pt;}
.y360{bottom:943.888533pt;}
.y153{bottom:945.606267pt;}
.y1a7{bottom:945.606400pt;}
.y1b0{bottom:946.673067pt;}
.y2a6{bottom:948.688533pt;}
.y38f{bottom:950.356667pt;}
.y246{bottom:953.402267pt;}
.y273{bottom:955.385867pt;}
.y5d{bottom:956.397467pt;}
.y152{bottom:958.406267pt;}
.y1a6{bottom:958.406400pt;}
.y2d9{bottom:958.985867pt;}
.y1af{bottom:959.206267pt;}
.y11e{bottom:960.806267pt;}
.y20b{bottom:960.806400pt;}
.y35f{bottom:961.488667pt;}
.yd1{bottom:961.606267pt;}
.y2a5{bottom:964.688533pt;}
.y38e{bottom:964.756533pt;}
.y99{bottom:966.911733pt;}
.y5c{bottom:971.064133pt;}
.y272{bottom:972.585867pt;}
.y11d{bottom:973.872933pt;}
.y20a{bottom:973.873067pt;}
.yd0{bottom:974.406267pt;}
.y1a5{bottom:974.406400pt;}
.y1ae{bottom:974.939600pt;}
.y2d8{bottom:974.985867pt;}
.y1e6{bottom:978.185867pt;}
.y35e{bottom:979.088667pt;}
.y38d{bottom:979.156667pt;}
.y1c{bottom:980.668800pt;}
.y2a4{bottom:980.688533pt;}
.y271{bottom:989.785867pt;}
.y1e5{bottom:990.985867pt;}
.y245{bottom:991.802267pt;}
.y5b{bottom:993.289867pt;}
.y38c{bottom:993.556667pt;}
.y11c{bottom:993.919200pt;}
.y209{bottom:993.919333pt;}
.ycf{bottom:994.185867pt;}
.y1a4{bottom:994.186000pt;}
.y1ad{bottom:994.452533pt;}
.y2a3{bottom:1004.247600pt;}
.yce{bottom:1006.985867pt;}
.y5a{bottom:1007.956533pt;}
.y38b{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;}
.h8{height:31.062500pt;}
.he{height:31.083333pt;}
.h16{height:31.250000pt;}
.h5{height:34.944000pt;}
.hc{height:34.945312pt;}
.hb{height:34.968750pt;}
.hd{height:35.156250pt;}
.hf{height:37.812500pt;}
.h15{height:38.854167pt;}
.h1a{height:42.539062pt;}
.h22{height:42.739583pt;}
.h23{height:42.968750pt;}
.h3{height:45.406250pt;}
.h12{height:46.592000pt;}
.ha{height:46.593750pt;}
.h21{height:46.625000pt;}
.h14{height:47.265625pt;}
.h1b{height:47.468750pt;}
.h19{height:51.992188pt;}
.h4{height:54.395833pt;}
.h1f{height:63.955717pt;}
.h1d{height:63.956250pt;}
.h10{height:67.905899pt;}
.h20{height:75.687500pt;}
.h1c{height:79.114583pt;}
.h17{height:79.115117pt;}
.h1e{height:92.756250pt;}
.h18{height:94.937500pt;}
.h11{height:118.671875pt;}
.h9{height:146.923601pt;}
.h13{height:181.625000pt;}
.h6{height:186.368000pt;}
.h2{height:201.541461pt;}
.h7{height:283.593750pt;}
.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;}
.x30{left:65.805733pt;}
.x39{left:67.012267pt;}
.x18{left:68.409467pt;}
.x44{left:78.325467pt;}
.xc{left:87.140000pt;}
.xb{left:92.976400pt;}
.x43{left:94.531867pt;}
.x23{left:98.267733pt;}
.x2{left:113.007733pt;}
.x32{left:116.638933pt;}
.x5{left:117.663333pt;}
.x37{left:118.927867pt;}
.x1d{left:124.724400pt;}
.x33{left:143.927600pt;}
.x3f{left:153.196800pt;}
.x42{left:158.740133pt;}
.x4a{left:165.419600pt;}
.x49{left:176.154533pt;}
.x3b{left:189.585333pt;}
.x1c{left:190.753733pt;}
.x48{left:196.117200pt;}
.x38{left:198.924000pt;}
.x9{left:200.262800pt;}
.x3e{left:224.457067pt;}
.x46{left:238.849867pt;}
.x1{left:260.031467pt;}
.x45{left:266.238533pt;}
.x4b{left:278.842667pt;}
.x4{left:303.622000pt;}
.x47{left:332.612933pt;}
.x41{left:345.550133pt;}
.x3{left:354.850800pt;}
.x29{left:360.552933pt;}
.x27{left:376.443600pt;}
.x3c{left:379.506533pt;}
.x28{left:389.506000pt;}
.x2b{left:395.006000pt;}
.x2d{left:450.770933pt;}
.x2c{left:455.349867pt;}
.x34{left:462.419733pt;}
.x2a{left:466.240400pt;}
.x2e{left:471.081600pt;}
.x2f{left:484.207867pt;}
.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;}
.x31{left:527.964933pt;}
.x1b{left:530.610533pt;}
.x15{left:539.688000pt;}
.x8{left:543.490933pt;}
.x6{left:547.444133pt;}
.x3d{left:549.039867pt;}
.xf{left:551.351067pt;}
.x3a{left:555.292000pt;}
.x7{left:558.504000pt;}
.x35{left:568.803200pt;}
.xe{left:583.047333pt;}
.xa{left:589.150267pt;}
.x36{left:632.377467pt;}
.x25{left:676.052000pt;}
.x40{left:683.732000pt;}
.x24{left:691.411867pt;}
.x21{left:699.091733pt;}
.x26{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; }
  