
    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_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8431a6c8b76d618f389d6d6e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1081bc0a2990dcd14c40a6c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_04bfdb3d41b31f743ba70805.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cc44bf3de409fd7e14f0c7c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bc6203a4005577c9501c4232.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_98cf209bb544a8646b9fcbdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_14c15ac2c5a880713139f5e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dbbda612f2e0176cdf8981e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5c0dd38b9781a776d0eb23fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2b1a6060ffc0fe597724e2c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1854e261e7b9b77477780576.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c091498bf6353fd111b7a121.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d4c641a2fc22b92895640d3f.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_92b5c5b5a20a6c5b37bb4977.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e5ffe7dc5ae9b816eeac9994.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d4c641a2fc22b92895640d3f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_9756ab69d15cc108726507a2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6fdc33f410b3116a8bb9f612.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a63458438c432ce4509083fd.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_d4c641a2fc22b92895640d3f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c5dc50255afd77da6827deca.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_1b1dbc6bb3792634863bd77d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_025813a356103453efa4eac8.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_d61ddea1731ee2cd8a64a3d8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7fa00a4a296e0cb4f8759fc9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_0c79ee6987caa8c9f1be2794.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_9756ab69d15cc108726507a2.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_6fdc33f410b3116a8bb9f612.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_d4c641a2fc22b92895640d3f.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_8d137ba02213c1ee7d4b08cd.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_cc781e514967d575b7b66bf3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_a63458438c432ce4509083fd.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_d4c641a2fc22b92895640d3f.woff2')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_04bfdb3d41b31f743ba70805.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_170a04dc05ceb577d7e9e021.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_8d137ba02213c1ee7d4b08cd.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_cc781e514967d575b7b66bf3.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d4c641a2fc22b92895640d3f.woff2')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_48dbdaa55f6975831d097e93.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_0cee621bcaf546a4fbf28334.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_50d6d7d97bdd886e3aa85012.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_e2e7398cbda2a68d417fb497.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_82a9d0d4296adc41146a78a8.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls4{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.008400px;}
.ls2{letter-spacing:1.890000px;}
.lsa{letter-spacing:7.200000px;}
.ls9{letter-spacing:9.000000px;}
.ls1{letter-spacing:10.800000px;}
.ls6{letter-spacing:36.000000px;}
.ls7{letter-spacing:57.600000px;}
.lse{letter-spacing:80.527200px;}
.lsc{letter-spacing:100.369800px;}
.lsb{letter-spacing:123.994800px;}
.lsd{letter-spacing:138.876600px;}
.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;}
.ws13{word-spacing:-98.766600px;}
.ws2{word-spacing:-80.064000px;}
.ws0{word-spacing:-74.747520px;}
.ws1{word-spacing:-69.120000px;}
.ws14{word-spacing:-36.180000px;}
.ws6{word-spacing:-25.812000px;}
.ws93{word-spacing:-20.016000px;}
.ws2b{word-spacing:-16.680000px;}
.ws49{word-spacing:-16.320000px;}
.ws50{word-spacing:-16.200000px;}
.ws66{word-spacing:-16.020000px;}
.ws6b{word-spacing:-15.720000px;}
.ws4d{word-spacing:-15.300000px;}
.ws55{word-spacing:-15.180000px;}
.ws7{word-spacing:-15.012000px;}
.ws73{word-spacing:-14.640000px;}
.ws79{word-spacing:-14.400000px;}
.ws37{word-spacing:-14.280000px;}
.ws24{word-spacing:-14.220000px;}
.ws43{word-spacing:-14.160000px;}
.ws58{word-spacing:-14.100000px;}
.ws26{word-spacing:-14.040000px;}
.ws1a{word-spacing:-13.980000px;}
.ws21{word-spacing:-13.920000px;}
.ws41{word-spacing:-13.860000px;}
.ws65{word-spacing:-13.800000px;}
.ws5c{word-spacing:-13.740000px;}
.ws53{word-spacing:-13.680000px;}
.ws4e{word-spacing:-13.620000px;}
.ws5d{word-spacing:-13.560000px;}
.ws47{word-spacing:-13.500000px;}
.ws35{word-spacing:-13.440000px;}
.ws64{word-spacing:-13.380000px;}
.ws3{word-spacing:-13.344000px;}
.ws2a{word-spacing:-12.240000px;}
.ws4{word-spacing:-11.523576px;}
.ws44{word-spacing:-11.280000px;}
.ws4b{word-spacing:-11.100000px;}
.ws68{word-spacing:-10.920000px;}
.ws57{word-spacing:-10.860000px;}
.ws31{word-spacing:-10.800000px;}
.ws2f{word-spacing:-10.740000px;}
.ws3a{word-spacing:-10.680000px;}
.ws3f{word-spacing:-10.620000px;}
.ws36{word-spacing:-10.560000px;}
.ws6d{word-spacing:-10.500000px;}
.ws3c{word-spacing:-10.440000px;}
.ws30{word-spacing:-10.380000px;}
.ws1d{word-spacing:-10.320000px;}
.ws6a{word-spacing:-10.260000px;}
.ws3b{word-spacing:-10.200000px;}
.ws63{word-spacing:-10.140000px;}
.ws56{word-spacing:-10.020000px;}
.ws60{word-spacing:-9.960000px;}
.ws39{word-spacing:-9.900000px;}
.ws84{word-spacing:-9.724440px;}
.ws74{word-spacing:-9.660000px;}
.ws23{word-spacing:-9.420000px;}
.ws7b{word-spacing:-9.000000px;}
.ws62{word-spacing:-8.640000px;}
.ws8{word-spacing:-8.400680px;}
.ws51{word-spacing:-7.620000px;}
.ws4a{word-spacing:-7.560000px;}
.ws4c{word-spacing:-7.500000px;}
.ws71{word-spacing:-7.440000px;}
.ws3e{word-spacing:-7.380000px;}
.ws22{word-spacing:-7.320000px;}
.ws70{word-spacing:-7.260000px;}
.ws81{word-spacing:-7.200000px;}
.ws52{word-spacing:-7.140000px;}
.ws75{word-spacing:-7.080000px;}
.ws42{word-spacing:-7.020000px;}
.ws1f{word-spacing:-6.960000px;}
.ws29{word-spacing:-6.900000px;}
.ws5a{word-spacing:-6.840000px;}
.ws5b{word-spacing:-6.540000px;}
.ws46{word-spacing:-6.120000px;}
.ws45{word-spacing:-6.060000px;}
.ws7a{word-spacing:-6.000000px;}
.ws72{word-spacing:-5.520000px;}
.ws18{word-spacing:-5.340000px;}
.ws54{word-spacing:-4.620000px;}
.ws78{word-spacing:-4.320000px;}
.ws2e{word-spacing:-4.260000px;}
.ws27{word-spacing:-4.200000px;}
.ws6f{word-spacing:-4.140000px;}
.ws77{word-spacing:-4.080000px;}
.ws48{word-spacing:-4.020000px;}
.ws40{word-spacing:-3.960000px;}
.ws20{word-spacing:-3.900000px;}
.ws17{word-spacing:-3.882669px;}
.ws28{word-spacing:-3.840000px;}
.ws67{word-spacing:-3.780000px;}
.ws1c{word-spacing:-3.720000px;}
.ws59{word-spacing:-3.660000px;}
.ws7c{word-spacing:-3.630000px;}
.ws76{word-spacing:-3.540000px;}
.ws5f{word-spacing:-3.060000px;}
.wsb{word-spacing:-2.970000px;}
.wsa{word-spacing:-2.916000px;}
.ws3d{word-spacing:-2.880000px;}
.ws91{word-spacing:-2.760000px;}
.ws33{word-spacing:-2.700000px;}
.ws6e{word-spacing:-2.580000px;}
.ws83{word-spacing:-2.520000px;}
.ws1b{word-spacing:-2.220000px;}
.ws16{word-spacing:-2.094000px;}
.wsc{word-spacing:-1.998000px;}
.ws61{word-spacing:-1.800000px;}
.ws19{word-spacing:-1.776000px;}
.ws6c{word-spacing:-1.680000px;}
.ws8f{word-spacing:-1.200000px;}
.wse{word-spacing:-1.104000px;}
.ws34{word-spacing:-1.020000px;}
.ws25{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.918000px;}
.ws2c{word-spacing:-0.900000px;}
.ws69{word-spacing:-0.864000px;}
.ws38{word-spacing:-0.840000px;}
.ws1e{word-spacing:-0.780000px;}
.ws5e{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.660000px;}
.ws32{word-spacing:-0.600000px;}
.ws8b{word-spacing:-0.324000px;}
.ws5{word-spacing:0.000000px;}
.ws89{word-spacing:0.720000px;}
.ws7f{word-spacing:1.080000px;}
.ws86{word-spacing:2.040000px;}
.ws92{word-spacing:2.700000px;}
.ws90{word-spacing:3.060000px;}
.ws7d{word-spacing:3.078000px;}
.wsf{word-spacing:3.696000px;}
.ws87{word-spacing:4.380000px;}
.ws2d{word-spacing:4.440000px;}
.ws82{word-spacing:4.800000px;}
.ws7e{word-spacing:5.022000px;}
.ws80{word-spacing:5.292000px;}
.ws10{word-spacing:5.808000px;}
.ws88{word-spacing:7.440000px;}
.ws8d{word-spacing:8.820000px;}
.ws85{word-spacing:8.880000px;}
.ws8e{word-spacing:9.360000px;}
.ws8c{word-spacing:9.420000px;}
.wsd{word-spacing:13.296000px;}
.ws11{word-spacing:19.440000px;}
.ws12{word-spacing:81.018000px;}
.ws8a{word-spacing:357.730800px;}
._18{margin-left:-21.000000px;}
._0{margin-left:-17.129640px;}
._7{margin-left:-13.451418px;}
._1{margin-left:-11.523576px;}
._6{margin-left:-9.364601px;}
._b{margin-left:-8.265600px;}
._f{margin-left:-6.978000px;}
._9{margin-left:-5.972400px;}
._4{margin-left:-3.996000px;}
._3{margin-left:-2.361600px;}
._2{margin-left:-1.346400px;}
._5{width:1.069200px;}
._a{width:3.013200px;}
._e{width:4.545600px;}
._15{width:5.649600px;}
._16{width:6.726600px;}
._14{width:7.852800px;}
._12{width:9.210000px;}
._13{width:10.821600px;}
._17{width:12.596400px;}
._19{width:13.672800px;}
._c{width:14.925600px;}
._d{width:15.960000px;}
._1a{width:18.006000px;}
._1c{width:19.095600px;}
._1b{width:22.932000px;}
._24{width:28.983000px;}
._25{width:32.979000px;}
._23{width:59.007000px;}
._21{width:73.174800px;}
._22{width:114.789600px;}
._10{width:125.521378px;}
._11{width:143.634600px;}
._20{width:152.010600px;}
._1f{width:236.602200px;}
._1e{width:276.096000px;}
._8{width:313.293535px;}
._1d{width:355.426200px;}
.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);}
.fsd{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:104.937000px;}
.fsa{font-size:120.000000px;}
.fse{font-size:126.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs6{font-size:227.045400px;}
.fs4{font-size:288.000000px;}
.fs0{font-size:311.448000px;}
.y0{bottom:0.000000px;}
.y97{bottom:76.343700px;}
.y23e{bottom:76.439550px;}
.y96{bottom:106.299150px;}
.y26e{bottom:106.572750px;}
.y2e2{bottom:107.785050px;}
.y2a3{bottom:108.151200px;}
.yce{bottom:108.517200px;}
.y305{bottom:108.929850px;}
.y176{bottom:110.959950px;}
.y206{bottom:111.963750px;}
.y107{bottom:112.159950px;}
.y1a5{bottom:112.811850px;}
.y13d{bottom:113.463750px;}
.y394{bottom:114.890700px;}
.y34e{bottom:114.945750px;}
.y21{bottom:116.447250px;}
.y93{bottom:116.550750px;}
.y59{bottom:117.648900px;}
.ycd{bottom:122.917350px;}
.y349{bottom:123.045750px;}
.y3c7{bottom:124.299150px;}
.y26d{bottom:124.572750px;}
.y175{bottom:124.759800px;}
.y1dd{bottom:125.359800px;}
.y2e1{bottom:125.785050px;}
.y2a2{bottom:126.151200px;}
.y205{bottom:126.363900px;}
.y106{bottom:126.559800px;}
.y304{bottom:126.929850px;}
.y1a4{bottom:127.211850px;}
.y13c{bottom:127.863900px;}
.y3{bottom:129.136200px;}
.y34d{bottom:131.145750px;}
.y92{bottom:132.450750px;}
.y20{bottom:132.647250px;}
.y393{bottom:133.190700px;}
.y348{bottom:139.245750px;}
.ycc{bottom:140.917350px;}
.y174{bottom:142.159950px;}
.y26c{bottom:142.572750px;}
.y2e0{bottom:143.785050px;}
.y2a1{bottom:144.151200px;}
.y58{bottom:144.152700px;}
.y303{bottom:144.929850px;}
.y23d{bottom:146.412000px;}
.y1dc{bottom:147.311850px;}
.y345{bottom:147.345750px;}
.y204{bottom:148.315800px;}
.y91{bottom:148.350750px;}
.y105{bottom:148.811850px;}
.y1f{bottom:148.847250px;}
.y1a3{bottom:149.463750px;}
.y13b{bottom:150.115650px;}
.y2{bottom:151.134450px;}
.y392{bottom:151.490700px;}
.y344{bottom:155.445750px;}
.y23c{bottom:160.212000px;}
.y26b{bottom:160.572750px;}
.y1db{bottom:161.411850px;}
.y2df{bottom:161.785050px;}
.y2a0{bottom:162.151200px;}
.y57{bottom:162.152700px;}
.y203{bottom:162.415800px;}
.ycb{bottom:163.169250px;}
.y104{bottom:163.211850px;}
.y34c{bottom:163.545750px;}
.y173{bottom:163.811850px;}
.y1a2{bottom:163.863900px;}
.y90{bottom:164.250750px;}
.y13a{bottom:164.515800px;}
.y391{bottom:169.790550px;}
.y347{bottom:171.645750px;}
.yca{bottom:177.569250px;}
.y172{bottom:177.611850px;}
.y26a{bottom:178.572750px;}
.y34b{bottom:179.745750px;}
.y2de{bottom:179.785050px;}
.y8f{bottom:180.150750px;}
.y29f{bottom:180.151200px;}
.y56{bottom:180.152700px;}
.y302{bottom:180.929850px;}
.y23b{bottom:181.864050px;}
.y1da{bottom:183.363900px;}
.y202{bottom:184.367700px;}
.y103{bottom:185.463750px;}
.y1a1{bottom:186.115650px;}
.y139{bottom:186.767700px;}
.y346{bottom:187.845750px;}
.y390{bottom:188.090550px;}
.y23a{bottom:195.663900px;}
.y34a{bottom:195.945750px;}
.y8e{bottom:196.050750px;}
.y269{bottom:196.572750px;}
.y301{bottom:197.129850px;}
.y1d9{bottom:197.463750px;}
.y2dd{bottom:197.785050px;}
.y29e{bottom:198.151200px;}
.y55{bottom:198.152700px;}
.y201{bottom:198.467700px;}
.y171{bottom:199.263750px;}
.yc9{bottom:199.821300px;}
.y102{bottom:199.863900px;}
.y1a0{bottom:200.515800px;}
.y138{bottom:201.167700px;}
.y38f{bottom:206.390550px;}
.y8d{bottom:211.950750px;}
.y170{bottom:213.063750px;}
.y239{bottom:213.064050px;}
.yc8{bottom:214.221150px;}
.y268{bottom:214.572750px;}
.y2dc{bottom:215.785050px;}
.y29d{bottom:216.151200px;}
.y54{bottom:216.152700px;}
.y200{bottom:216.167700px;}
.y343{bottom:217.774050px;}
.y1d8{bottom:219.415800px;}
.y101{bottom:222.115650px;}
.y19f{bottom:222.767700px;}
.y137{bottom:223.419750px;}
.y38e{bottom:224.690700px;}
.y33c{bottom:225.874200px;}
.y8c{bottom:227.850750px;}
.y238{bottom:230.463900px;}
.y267{bottom:232.572750px;}
.y1d7{bottom:233.515800px;}
.y2db{bottom:233.785050px;}
.y342{bottom:233.974050px;}
.y33e{bottom:233.974200px;}
.y29c{bottom:234.151200px;}
.y53{bottom:234.152850px;}
.y16f{bottom:234.715800px;}
.yc7{bottom:236.473200px;}
.y100{bottom:236.515800px;}
.y19e{bottom:237.167700px;}
.y136{bottom:237.819600px;}
.y1ff{bottom:238.119750px;}
.y4f{bottom:238.380300px;}
.y339{bottom:242.074200px;}
.y38d{bottom:242.990700px;}
.y300{bottom:243.218100px;}
.y8b{bottom:243.750750px;}
.y1{bottom:244.568850px;}
.y16e{bottom:248.515800px;}
.y341{bottom:250.174050px;}
.y338{bottom:250.174200px;}
.y266{bottom:250.572750px;}
.yc6{bottom:250.873200px;}
.y2da{bottom:251.785050px;}
.y237{bottom:252.115950px;}
.y29b{bottom:252.151200px;}
.y1fe{bottom:252.219750px;}
.y4e{bottom:254.880300px;}
.y1d6{bottom:255.467700px;}
.y33b{bottom:258.274200px;}
.yff{bottom:258.767700px;}
.y19d{bottom:259.419750px;}
.y8a{bottom:259.650750px;}
.y135{bottom:260.071650px;}
.y52{bottom:260.656650px;}
.y38c{bottom:261.290550px;}
.y2ff{bottom:263.670150px;}
.y16d{bottom:265.915800px;}
.y236{bottom:265.915950px;}
.y340{bottom:266.374050px;}
.y33d{bottom:266.374200px;}
.y1d5{bottom:269.567700px;}
.y1fd{bottom:269.919750px;}
.y29a{bottom:270.151200px;}
.y4d{bottom:271.380300px;}
.yc5{bottom:273.125100px;}
.yfe{bottom:273.167700px;}
.y19c{bottom:273.819600px;}
.y134{bottom:274.471650px;}
.y33a{bottom:274.474200px;}
.y89{bottom:275.550750px;}
.y265{bottom:277.076700px;}
.y2d9{bottom:278.288850px;}
.y38b{bottom:279.590550px;}
.y33f{bottom:282.574050px;}
.y235{bottom:283.315950px;}
.y2fe{bottom:284.122050px;}
.y51{bottom:287.160600px;}
.yc4{bottom:287.525250px;}
.y16c{bottom:287.567700px;}
.y4c{bottom:287.880300px;}
.y299{bottom:288.151200px;}
.yfd{bottom:291.167700px;}
.y88{bottom:291.450750px;}
.y1d4{bottom:291.519750px;}
.y1fc{bottom:291.871650px;}
.y19b{bottom:296.071650px;}
.y133{bottom:296.723550px;}
.y38a{bottom:297.890550px;}
.y16b{bottom:301.367700px;}
.y4b{bottom:304.380300px;}
.y332{bottom:304.402500px;}
.y2fd{bottom:304.573950px;}
.y234{bottom:304.968000px;}
.y50{bottom:305.160600px;}
.y1d3{bottom:305.619750px;}
.y298{bottom:306.151200px;}
.y1fb{bottom:306.271650px;}
.y87{bottom:307.350750px;}
.yc3{bottom:309.777150px;}
.y19a{bottom:310.471650px;}
.y132{bottom:311.123700px;}
.y337{bottom:312.502500px;}
.yfc{bottom:313.419750px;}
.y2d6{bottom:314.889000px;}
.y389{bottom:316.190700px;}
.y264{bottom:316.676700px;}
.y233{bottom:318.768000px;}
.y331{bottom:320.602500px;}
.y4a{bottom:320.880300px;}
.y2d8{bottom:322.989000px;}
.y16a{bottom:323.019750px;}
.y1fa{bottom:323.971650px;}
.y297{bottom:324.151200px;}
.yc2{bottom:324.177150px;}
.y2fc{bottom:326.402400px;}
.y1d2{bottom:327.571650px;}
.yfb{bottom:327.819600px;}
.y336{bottom:328.702500px;}
.y16{bottom:331.071300px;}
.y2d5{bottom:331.089000px;}
.y199{bottom:332.723550px;}
.y263{bottom:332.876700px;}
.y131{bottom:333.375600px;}
.y388{bottom:334.490700px;}
.y330{bottom:336.802500px;}
.y169{bottom:336.819600px;}
.y49{bottom:337.380300px;}
.y2d2{bottom:339.189000px;}
.y232{bottom:340.419900px;}
.y1d1{bottom:341.671650px;}
.y296{bottom:342.151200px;}
.y32c{bottom:344.902500px;}
.y1f9{bottom:345.923700px;}
.yc1{bottom:346.429200px;}
.y2fb{bottom:346.854450px;}
.y198{bottom:347.123700px;}
.y15{bottom:347.271300px;}
.y2d4{bottom:347.289000px;}
.y130{bottom:347.775600px;}
.y262{bottom:349.076700px;}
.yfa{bottom:350.071650px;}
.y387{bottom:352.790550px;}
.y32b{bottom:353.002500px;}
.y48{bottom:353.880300px;}
.y231{bottom:354.219900px;}
.y2d7{bottom:355.389000px;}
.y168{bottom:358.471650px;}
.y1f8{bottom:360.023550px;}
.y295{bottom:360.151200px;}
.yc0{bottom:360.829050px;}
.y335{bottom:361.102500px;}
.y14{bottom:363.471300px;}
.y2d3{bottom:363.489000px;}
.y1d0{bottom:363.623700px;}
.y3cc{bottom:363.748200px;}
.yf9{bottom:364.471650px;}
.y197{bottom:365.123700px;}
.y2fa{bottom:367.306350px;}
.y3bd{bottom:369.107850px;}
.y32f{bottom:369.202500px;}
.y12f{bottom:370.027650px;}
.y47{bottom:370.380300px;}
.y386{bottom:371.090550px;}
.y167{bottom:372.271650px;}
.y261{bottom:373.780500px;}
.y230{bottom:375.871800px;}
.y334{bottom:377.302500px;}
.y1cf{bottom:377.723700px;}
.y294{bottom:378.151200px;}
.y13{bottom:379.671300px;}
.y1f7{bottom:381.975600px;}
.yf8{bottom:382.471650px;}
.ybf{bottom:383.081100px;}
.y3cb{bottom:383.548200px;}
.y12e{bottom:384.427500px;}
.y2d1{bottom:385.317300px;}
.y32e{bottom:385.402500px;}
.y46{bottom:386.880300px;}
.y196{bottom:387.375600px;}
.y2f9{bottom:387.758400px;}
.y385{bottom:389.390550px;}
.y22f{bottom:389.671800px;}
.y260{bottom:389.980650px;}
.y86{bottom:390.943200px;}
.y333{bottom:393.502500px;}
.y166{bottom:393.923700px;}
.y12{bottom:395.871300px;}
.y1f6{bottom:396.075600px;}
.y293{bottom:396.151200px;}
.ybe{bottom:397.481100px;}
.y17{bottom:398.194050px;}
.y3bc{bottom:399.211800px;}
.y1ce{bottom:399.675600px;}
.y2d0{bottom:401.517300px;}
.y32d{bottom:401.602500px;}
.y195{bottom:401.775600px;}
.y3ca{bottom:403.348200px;}
.y45{bottom:403.380300px;}
.yf7{bottom:404.723700px;}
.y25f{bottom:406.180650px;}
.y12d{bottom:406.679550px;}
.y85{bottom:407.443200px;}
.y384{bottom:407.690550px;}
.y165{bottom:407.723700px;}
.y2f8{bottom:409.586700px;}
.y2cd{bottom:409.617300px;}
.y22e{bottom:411.323850px;}
.y11{bottom:412.071300px;}
.y1cd{bottom:413.775600px;}
.y292{bottom:414.151200px;}
.y2c9{bottom:417.717300px;}
.yf6{bottom:419.123700px;}
.ybd{bottom:419.733150px;}
.y194{bottom:419.775600px;}
.y44{bottom:419.880300px;}
.y12c{bottom:421.079550px;}
.y25e{bottom:422.380650px;}
.y3c9{bottom:423.148200px;}
.y32a{bottom:423.430950px;}
.y84{bottom:423.943200px;}
.y22d{bottom:425.123850px;}
.y2cc{bottom:425.817300px;}
.y383{bottom:425.990550px;}
.y10{bottom:428.271300px;}
.y3bb{bottom:429.315750px;}
.y164{bottom:429.375600px;}
.y2f7{bottom:430.038600px;}
.y291{bottom:432.151200px;}
.y2c7{bottom:433.917300px;}
.ybc{bottom:434.133000px;}
.y1cc{bottom:435.727500px;}
.y43{bottom:436.380300px;}
.y25d{bottom:438.580650px;}
.y83{bottom:440.443200px;}
.yf5{bottom:441.375600px;}
.y2cb{bottom:442.017300px;}
.y193{bottom:442.027650px;}
.y3c8{bottom:442.948200px;}
.y163{bottom:443.175600px;}
.y12b{bottom:443.331600px;}
.y382{bottom:444.290700px;}
.yf{bottom:444.471300px;}
.y22c{bottom:446.775750px;}
.y1cb{bottom:449.827500px;}
.y2c8{bottom:450.117300px;}
.y290{bottom:450.151200px;}
.y2f6{bottom:450.490650px;}
.ybb{bottom:452.133000px;}
.y42{bottom:452.880300px;}
.y25c{bottom:454.780650px;}
.yf4{bottom:455.775600px;}
.y192{bottom:456.427500px;}
.y82{bottom:456.943200px;}
.y12a{bottom:457.731450px;}
.y2ca{bottom:458.217300px;}
.y3ba{bottom:459.419700px;}
.y22b{bottom:460.575750px;}
.ye{bottom:460.671300px;}
.y381{bottom:462.590550px;}
.y329{bottom:463.259250px;}
.y162{bottom:464.827500px;}
.y2cf{bottom:466.317300px;}
.y1ca{bottom:467.527650px;}
.y28f{bottom:468.151200px;}
.y41{bottom:469.380300px;}
.y2f5{bottom:470.942550px;}
.y25b{bottom:470.980650px;}
.y1f5{bottom:471.779550px;}
.y18{bottom:472.273800px;}
.y81{bottom:473.443200px;}
.yba{bottom:474.385050px;}
.yd{bottom:476.871300px;}
.yf3{bottom:478.027650px;}
.y161{bottom:478.627650px;}
.y191{bottom:478.679550px;}
.y129{bottom:479.983500px;}
.y380{bottom:480.890550px;}
.y328{bottom:481.859250px;}
.y22a{bottom:482.227800px;}
.y2ce{bottom:482.517300px;}
.y1f4{bottom:485.879550px;}
.y40{bottom:485.880300px;}
.y28e{bottom:486.151200px;}
.y25a{bottom:487.180650px;}
.yb9{bottom:488.785050px;}
.y1c9{bottom:489.479550px;}
.y3b9{bottom:489.523650px;}
.y80{bottom:489.943200px;}
.yf2{bottom:492.427500px;}
.yc{bottom:493.071300px;}
.y190{bottom:493.079550px;}
.y128{bottom:494.383500px;}
.y160{bottom:496.027650px;}
.y229{bottom:496.027800px;}
.y37f{bottom:499.190550px;}
.y327{bottom:500.459250px;}
.y3f{bottom:502.380300px;}
.y1c8{bottom:503.579550px;}
.y28d{bottom:504.151200px;}
.y2c6{bottom:504.345750px;}
.y7f{bottom:506.443200px;}
.yb8{bottom:506.785050px;}
.y1f3{bottom:507.831600px;}
.y259{bottom:509.009100px;}
.yb{bottom:509.271300px;}
.y127{bottom:512.383500px;}
.yf1{bottom:514.679550px;}
.y18f{bottom:515.331600px;}
.y2f4{bottom:517.030800px;}
.y37e{bottom:517.490550px;}
.y15f{bottom:517.679550px;}
.y228{bottom:517.679700px;}
.y3e{bottom:518.880300px;}
.y326{bottom:519.059250px;}
.y3b8{bottom:519.627600px;}
.y2c2{bottom:520.545750px;}
.y1f2{bottom:521.931450px;}
.y28c{bottom:522.151200px;}
.y7e{bottom:522.943200px;}
.y258{bottom:525.208950px;}
.ya{bottom:525.471300px;}
.y1c7{bottom:525.531450px;}
.y2c4{bottom:528.645750px;}
.yb7{bottom:529.036950px;}
.yf0{bottom:529.079550px;}
.y18e{bottom:529.731450px;}
.y126{bottom:530.383500px;}
.y15e{bottom:531.479550px;}
.y227{bottom:531.479700px;}
.y3d{bottom:535.380300px;}
.y37d{bottom:535.790700px;}
.y2c1{bottom:536.745750px;}
.y325{bottom:537.659250px;}
.y7d{bottom:539.443200px;}
.y1c6{bottom:539.631450px;}
.y9{bottom:541.671300px;}
.yb6{bottom:543.436950px;}
.y2be{bottom:544.845750px;}
.y18d{bottom:547.731450px;}
.y28b{bottom:548.655150px;}
.y3b7{bottom:549.731550px;}
.y257{bottom:549.912900px;}
.yef{bottom:551.331600px;}
.y3c{bottom:551.880300px;}
.y125{bottom:552.635400px;}
.y2c0{bottom:552.945750px;}
.y15d{bottom:553.131450px;}
.y226{bottom:553.131750px;}
.y37c{bottom:554.090550px;}
.y7c{bottom:555.943200px;}
.y324{bottom:556.259250px;}
.y2f3{bottom:556.859100px;}
.y1c5{bottom:557.331600px;}
.y8{bottom:557.871300px;}
.y2c3{bottom:561.045750px;}
.y1f1{bottom:561.583500px;}
.yb5{bottom:565.689000px;}
.yee{bottom:565.731450px;}
.y256{bottom:566.112900px;}
.y15c{bottom:566.931450px;}
.y225{bottom:566.931750px;}
.y124{bottom:567.035400px;}
.y3b{bottom:568.380300px;}
.y2bf{bottom:569.145750px;}
.y18c{bottom:569.983500px;}
.y3c6{bottom:572.325300px;}
.y37b{bottom:572.390550px;}
.y7b{bottom:572.443200px;}
.y7{bottom:574.071300px;}
.y2f2{bottom:574.859100px;}
.y323{bottom:574.859250px;}
.y1f0{bottom:575.683500px;}
.y1c4{bottom:579.283500px;}
.y3b6{bottom:579.835350px;}
.yb4{bottom:580.089000px;}
.y255{bottom:582.312900px;}
.y28a{bottom:583.755150px;}
.y18b{bottom:584.383500px;}
.y3a{bottom:584.880300px;}
.y2c5{bottom:585.345750px;}
.yed{bottom:587.983500px;}
.y15b{bottom:588.583500px;}
.y224{bottom:588.583650px;}
.y7a{bottom:588.943200px;}
.y123{bottom:589.287450px;}
.y6{bottom:590.271450px;}
.y37a{bottom:590.690550px;}
.y3c5{bottom:592.125300px;}
.y2f1{bottom:592.859100px;}
.y1c3{bottom:593.383500px;}
.y322{bottom:593.459250px;}
.y254{bottom:598.512900px;}
.y39{bottom:601.380300px;}
.y289{bottom:601.755150px;}
.yb3{bottom:602.340900px;}
.yec{bottom:602.383500px;}
.y223{bottom:602.383650px;}
.y122{bottom:603.687450px;}
.y79{bottom:605.443200px;}
.y5{bottom:606.471300px;}
.y18a{bottom:606.635400px;}
.y2bb{bottom:607.174050px;}
.y379{bottom:608.990550px;}
.y3b5{bottom:609.939450px;}
.y2f0{bottom:610.859100px;}
.y3c4{bottom:611.925300px;}
.y321{bottom:612.059250px;}
.y253{bottom:614.712900px;}
.y2bd{bottom:615.274050px;}
.y1c2{bottom:615.335400px;}
.yb2{bottom:616.740900px;}
.y38{bottom:617.880300px;}
.y288{bottom:619.755150px;}
.y15a{bottom:619.783500px;}
.yeb{bottom:620.383500px;}
.y189{bottom:621.035400px;}
.y78{bottom:621.943200px;}
.y2ba{bottom:623.374050px;}
.y222{bottom:624.035550px;}
.y121{bottom:625.939350px;}
.y378{bottom:627.290700px;}
.y2ef{bottom:628.859100px;}
.y1c1{bottom:629.435400px;}
.y320{bottom:630.659250px;}
.y252{bottom:630.912900px;}
.y2b5{bottom:631.474050px;}
.y3c3{bottom:631.725300px;}
.y37{bottom:634.380300px;}
.y287{bottom:637.755150px;}
.y221{bottom:637.835700px;}
.y77{bottom:638.443200px;}
.yb1{bottom:638.992950px;}
.y2b9{bottom:639.574050px;}
.y3b4{bottom:640.043400px;}
.y120{bottom:640.339350px;}
.y159{bottom:641.435400px;}
.yea{bottom:642.635400px;}
.y188{bottom:643.287450px;}
.y377{bottom:645.590550px;}
.y2ee{bottom:646.859100px;}
.y251{bottom:647.112900px;}
.y1ef{bottom:647.135400px;}
.y2b3{bottom:647.674050px;}
.y31f{bottom:649.259250px;}
.y36{bottom:650.880300px;}
.y1c0{bottom:651.387450px;}
.yb0{bottom:653.392950px;}
.y76{bottom:654.943200px;}
.y158{bottom:655.235400px;}
.y220{bottom:655.235700px;}
.y286{bottom:655.755150px;}
.y2b8{bottom:655.774050px;}
.ye9{bottom:657.035400px;}
.y187{bottom:657.687450px;}
.y11f{bottom:658.339350px;}
.y2b4{bottom:663.874050px;}
.y376{bottom:663.890550px;}
.y2ed{bottom:664.859100px;}
.y1bf{bottom:665.487450px;}
.y35{bottom:667.380300px;}
.y31e{bottom:667.859250px;}
.y250{bottom:668.941350px;}
.y1ee{bottom:669.087450px;}
.y3b3{bottom:670.147200px;}
.yaf{bottom:671.392950px;}
.y75{bottom:671.443200px;}
.y2b7{bottom:671.974050px;}
.y285{bottom:673.755150px;}
.y157{bottom:676.887450px;}
.y21f{bottom:676.887600px;}
.ye8{bottom:679.287450px;}
.y186{bottom:679.939350px;}
.y2bc{bottom:680.074050px;}
.y11e{bottom:680.591400px;}
.y375{bottom:682.190550px;}
.y2ec{bottom:682.859100px;}
.y1ed{bottom:683.187450px;}
.y34{bottom:683.880300px;}
.y24f{bottom:685.141350px;}
.y31d{bottom:686.459250px;}
.y1be{bottom:687.439350px;}
.y74{bottom:687.943200px;}
.y2b6{bottom:688.174050px;}
.y156{bottom:690.687450px;}
.y21e{bottom:690.687600px;}
.y284{bottom:691.755150px;}
.yae{bottom:693.644850px;}
.ye7{bottom:693.687450px;}
.y185{bottom:694.339350px;}
.y11d{bottom:694.991400px;}
.y3b2{bottom:700.251150px;}
.y33{bottom:700.380300px;}
.y374{bottom:700.490550px;}
.y2eb{bottom:700.859100px;}
.y1bd{bottom:701.539350px;}
.y73{bottom:704.443200px;}
.y31c{bottom:705.059250px;}
.y1ec{bottom:705.139350px;}
.yad{bottom:708.044850px;}
.y21d{bottom:708.087600px;}
.y283{bottom:709.755150px;}
.y24e{bottom:709.845300px;}
.y2b2{bottom:710.002500px;}
.y155{bottom:712.339350px;}
.y11c{bottom:712.991400px;}
.ye6{bottom:715.939350px;}
.y184{bottom:716.591400px;}
.y32{bottom:716.880300px;}
.y2b0{bottom:718.102500px;}
.y373{bottom:718.790700px;}
.y2ea{bottom:718.859100px;}
.y1bc{bottom:719.239350px;}
.y72{bottom:720.943200px;}
.y31b{bottom:723.659250px;}
.yac{bottom:726.044850px;}
.y24d{bottom:726.045300px;}
.y154{bottom:726.139350px;}
.y2ac{bottom:726.202350px;}
.y282{bottom:727.755150px;}
.y21c{bottom:729.739500px;}
.ye5{bottom:730.339350px;}
.y3b1{bottom:730.355100px;}
.y183{bottom:730.991400px;}
.y31{bottom:733.380300px;}
.y2af{bottom:734.302500px;}
.y11b{bottom:735.243300px;}
.y2e9{bottom:736.859100px;}
.y1eb{bottom:736.939350px;}
.y372{bottom:737.090550px;}
.y71{bottom:737.443200px;}
.y1bb{bottom:741.191400px;}
.y24c{bottom:742.245150px;}
.y31a{bottom:742.259250px;}
.y2ab{bottom:742.402500px;}
.y153{bottom:743.539350px;}
.y21b{bottom:743.539650px;}
.y281{bottom:745.755150px;}
.yab{bottom:748.296900px;}
.y182{bottom:748.991400px;}
.y11a{bottom:749.643300px;}
.y30{bottom:749.880300px;}
.y2a8{bottom:750.502500px;}
.ye4{bottom:752.591400px;}
.y70{bottom:753.943200px;}
.y2e8{bottom:754.859100px;}
.y1ba{bottom:755.291400px;}
.y371{bottom:755.390550px;}
.y24b{bottom:758.445300px;}
.y2aa{bottom:758.602500px;}
.y1ea{bottom:758.891400px;}
.y3b0{bottom:760.459050px;}
.y319{bottom:760.859250px;}
.y3be{bottom:761.102400px;}
.yaa{bottom:762.696750px;}
.y280{bottom:763.755150px;}
.y152{bottom:765.191400px;}
.y21a{bottom:765.191550px;}
.y2f{bottom:766.380300px;}
.y2ae{bottom:766.702350px;}
.ye3{bottom:766.991400px;}
.y6f{bottom:770.443200px;}
.y119{bottom:771.895350px;}
.y2e7{bottom:772.859100px;}
.y1b9{bottom:772.991400px;}
.y24a{bottom:774.645300px;}
.y2a9{bottom:774.802500px;}
.y3ab{bottom:777.551100px;}
.y151{bottom:778.991400px;}
.y219{bottom:778.991550px;}
.y318{bottom:779.459250px;}
.ya9{bottom:780.696750px;}
.y27f{bottom:781.755150px;}
.y370{bottom:782.194500px;}
.y2e{bottom:782.880300px;}
.y2ad{bottom:782.902350px;}
.y118{bottom:786.295200px;}
.y6e{bottom:786.943200px;}
.ye2{bottom:789.243300px;}
.y3af{bottom:790.563000px;}
.y249{bottom:790.845300px;}
.y2e6{bottom:790.859100px;}
.y2b1{bottom:791.002500px;}
.y3aa{bottom:793.751100px;}
.y1b8{bottom:794.943300px;}
.y218{bottom:796.391550px;}
.y317{bottom:798.059250px;}
.y2d{bottom:799.380300px;}
.y27e{bottom:799.755150px;}
.y150{bottom:800.643300px;}
.ya8{bottom:802.948800px;}
.y6d{bottom:803.443200px;}
.ye1{bottom:803.643300px;}
.y3c2{bottom:806.079750px;}
.y248{bottom:807.045300px;}
.y117{bottom:808.547250px;}
.y2e5{bottom:808.859100px;}
.y1b7{bottom:809.043300px;}
.y3a9{bottom:809.951100px;}
.y2a7{bottom:812.830800px;}
.y14f{bottom:814.443300px;}
.y2c{bottom:815.880300px;}
.y316{bottom:816.659250px;}
.ya7{bottom:817.348800px;}
.y27d{bottom:817.755150px;}
.y217{bottom:818.043450px;}
.y6c{bottom:819.943200px;}
.y3ae{bottom:820.666950px;}
.y2a6{bottom:820.930800px;}
.ye0{bottom:821.643300px;}
.y116{bottom:822.947250px;}
.y181{bottom:825.895350px;}
.y3a8{bottom:826.151100px;}
.y2e4{bottom:826.859100px;}
.y1b6{bottom:830.995200px;}
.y216{bottom:831.843450px;}
.y2b{bottom:832.380300px;}
.y315{bottom:835.259250px;}
.y27c{bottom:835.755150px;}
.y14e{bottom:836.095350px;}
.y3c1{bottom:836.183550px;}
.y6b{bottom:836.443200px;}
.y247{bottom:837.377550px;}
.ya6{bottom:839.600850px;}
.y36f{bottom:839.794500px;}
.y180{bottom:840.295200px;}
.y115{bottom:840.947250px;}
.y3a7{bottom:842.351100px;}
.ydf{bottom:843.895350px;}
.y2e3{bottom:844.859100px;}
.y1b5{bottom:845.095350px;}
.y36a{bottom:847.894500px;}
.y2a{bottom:848.880300px;}
.y215{bottom:849.243450px;}
.y14d{bottom:849.895350px;}
.y3ad{bottom:850.770900px;}
.y6a{bottom:852.943200px;}
.y314{bottom:853.859250px;}
.ya5{bottom:854.000850px;}
.y246{bottom:855.377550px;}
.y36e{bottom:855.994500px;}
.yde{bottom:858.295200px;}
.y3a6{bottom:858.551100px;}
.y27b{bottom:862.259100px;}
.y17f{bottom:862.547250px;}
.y1b4{bottom:862.795200px;}
.y2a5{bottom:862.859100px;}
.y114{bottom:863.199300px;}
.y369{bottom:864.094500px;}
.y29{bottom:865.380300px;}
.y3c0{bottom:866.287650px;}
.y1e9{bottom:867.047250px;}
.y69{bottom:869.443200px;}
.y214{bottom:870.895350px;}
.y14c{bottom:871.547250px;}
.y366{bottom:872.194500px;}
.y313{bottom:872.459250px;}
.y3a5{bottom:874.751100px;}
.ya4{bottom:876.252750px;}
.y17e{bottom:876.947250px;}
.y113{bottom:877.599300px;}
.y365{bottom:880.294500px;}
.ydd{bottom:880.547250px;}
.y2a4{bottom:880.859100px;}
.y3ac{bottom:880.874850px;}
.y1e8{bottom:881.147250px;}
.y28{bottom:881.880300px;}
.y213{bottom:884.695350px;}
.y1b3{bottom:884.747250px;}
.y14b{bottom:885.347250px;}
.y68{bottom:885.943200px;}
.y245{bottom:887.177550px;}
.y36d{bottom:888.394500px;}
.ya3{bottom:890.652750px;}
.y3a4{bottom:890.951100px;}
.y312{bottom:891.059250px;}
.ydc{bottom:894.947250px;}
.y112{bottom:895.599300px;}
.y3bf{bottom:896.391600px;}
.y368{bottom:896.494500px;}
.y27{bottom:898.380300px;}
.y1b2{bottom:898.847400px;}
.y27a{bottom:898.859100px;}
.y67{bottom:902.443200px;}
.y1e7{bottom:903.099300px;}
.y36c{bottom:904.594500px;}
.y244{bottom:905.177550px;}
.y212{bottom:906.347400px;}
.y14a{bottom:906.999150px;}
.y3a3{bottom:907.151100px;}
.y311{bottom:909.659250px;}
.y367{bottom:912.694500px;}
.ya2{bottom:912.904650px;}
.y111{bottom:913.599300px;}
.y26{bottom:914.880300px;}
.y279{bottom:916.859100px;}
.ydb{bottom:917.199300px;}
.y66{bottom:918.943200px;}
.y211{bottom:920.147400px;}
.y36b{bottom:920.794500px;}
.y149{bottom:920.799150px;}
.y1b1{bottom:920.799300px;}
.y3a2{bottom:923.351100px;}
.ya1{bottom:927.304650px;}
.y310{bottom:928.259250px;}
.yda{bottom:931.599300px;}
.y278{bottom:934.859100px;}
.y1b0{bottom:934.899300px;}
.y65{bottom:935.443200px;}
.y110{bottom:935.851200px;}
.y1e6{bottom:939.151200px;}
.y3a1{bottom:939.551100px;}
.y25{bottom:939.884250px;}
.y210{bottom:941.799300px;}
.y148{bottom:942.451200px;}
.y364{bottom:942.622800px;}
.y243{bottom:942.977550px;}
.y30f{bottom:946.859100px;}
.ya0{bottom:949.556700px;}
.yd9{bottom:949.599300px;}
.y10f{bottom:950.251200px;}
.y35f{bottom:950.722800px;}
.y64{bottom:951.943200px;}
.y277{bottom:952.859100px;}
.y1e5{bottom:953.251200px;}
.y17d{bottom:953.851200px;}
.y20f{bottom:955.599300px;}
.y3a0{bottom:955.751250px;}
.y147{bottom:956.251200px;}
.y24{bottom:956.384250px;}
.y1af{bottom:956.851350px;}
.y363{bottom:958.822800px;}
.y9f{bottom:963.956700px;}
.y30e{bottom:965.459250px;}
.y35e{bottom:966.922800px;}
.y17c{bottom:968.251200px;}
.y63{bottom:968.443200px;}
.y276{bottom:970.859100px;}
.y1ae{bottom:970.951200px;}
.yd8{bottom:971.851200px;}
.y39f{bottom:971.951250px;}
.y10e{bottom:972.503100px;}
.y35b{bottom:975.022800px;}
.y20e{bottom:977.251350px;}
.y146{bottom:977.903100px;}
.y23{bottom:981.388200px;}
.y35a{bottom:983.122800px;}
.y30d{bottom:984.059100px;}
.y62{bottom:984.943200px;}
.y242{bottom:986.177550px;}
.y9e{bottom:986.208750px;}
.yd7{bottom:986.251200px;}
.y10d{bottom:986.903100px;}
.y39e{bottom:988.151250px;}
.y275{bottom:988.859100px;}
.y17b{bottom:990.503100px;}
.y20d{bottom:991.051350px;}
.y360{bottom:991.222800px;}
.y145{bottom:991.703100px;}
.y1e4{bottom:992.903100px;}
.y1ad{bottom:992.903250px;}
.y22{bottom:997.888200px;}
.y35d{bottom:999.322800px;}
.y9d{bottom:1000.608750px;}
.y61{bottom:1001.443200px;}
.y30c{bottom:1002.659250px;}
.y39d{bottom:1004.351100px;}
.y17a{bottom:1004.903100px;}
.y274{bottom:1006.859100px;}
.y1e3{bottom:1007.003100px;}
.y1ac{bottom:1007.003250px;}
.y362{bottom:1007.422800px;}
.yd6{bottom:1008.503100px;}
.y144{bottom:1009.103250px;}
.y10c{bottom:1009.155150px;}
.y20c{bottom:1012.703250px;}
.y35c{bottom:1015.522800px;}
.y60{bottom:1017.943200px;}
.y9c{bottom:1018.608750px;}
.y39c{bottom:1020.551250px;}
.y30b{bottom:1021.259100px;}
.yd5{bottom:1022.903100px;}
.y10b{bottom:1023.555150px;}
.y361{bottom:1023.622800px;}
.y1ab{bottom:1024.703250px;}
.y273{bottom:1024.859100px;}
.y20b{bottom:1026.503250px;}
.y179{bottom:1027.155150px;}
.y1e2{bottom:1028.955150px;}
.y241{bottom:1029.377550px;}
.y143{bottom:1030.755150px;}
.y5f{bottom:1034.443200px;}
.y1d{bottom:1035.138750px;}
.y1e{bottom:1035.138900px;}
.y39b{bottom:1036.751250px;}
.y30a{bottom:1039.859100px;}
.y9b{bottom:1040.860800px;}
.y10a{bottom:1041.555150px;}
.y272{bottom:1042.859100px;}
.y1e1{bottom:1043.055150px;}
.y142{bottom:1044.555150px;}
.yd4{bottom:1045.155150px;}
.y359{bottom:1045.451250px;}
.y1aa{bottom:1046.655150px;}
.y20a{bottom:1048.155150px;}
.y5e{bottom:1050.943200px;}
.y39a{bottom:1052.951250px;}
.y357{bottom:1053.551250px;}
.y9a{bottom:1055.260650px;}
.y309{bottom:1058.459250px;}
.yd3{bottom:1059.555150px;}
.y1e0{bottom:1060.755150px;}
.y1a9{bottom:1060.755300px;}
.y271{bottom:1060.859100px;}
.y353{bottom:1061.651250px;}
.y141{bottom:1061.955150px;}
.y209{bottom:1061.955300px;}
.y109{bottom:1063.807050px;}
.y399{bottom:1069.151250px;}
.y356{bottom:1069.751250px;}
.y240{bottom:1072.577550px;}
.y5d{bottom:1075.947150px;}
.y308{bottom:1077.059100px;}
.y352{bottom:1077.851100px;}
.y108{bottom:1078.207050px;}
.y270{bottom:1078.859100px;}
.yd2{bottom:1081.807050px;}
.y1df{bottom:1082.707050px;}
.y1a8{bottom:1082.707200px;}
.y140{bottom:1083.607050px;}
.y208{bottom:1083.607200px;}
.y398{bottom:1085.351100px;}
.y34f{bottom:1085.951250px;}
.y99{bottom:1087.775700px;}
.y5c{bottom:1092.447150px;}
.y351{bottom:1094.051250px;}
.y307{bottom:1095.659250px;}
.yd1{bottom:1096.207050px;}
.y1de{bottom:1096.807050px;}
.y1a7{bottom:1096.807200px;}
.y26f{bottom:1096.859100px;}
.y13f{bottom:1097.407050px;}
.y207{bottom:1097.407200px;}
.y178{bottom:1100.459100px;}
.y397{bottom:1101.551250px;}
.y355{bottom:1102.151250px;}
.y1c{bottom:1103.252400px;}
.y350{bottom:1110.251250px;}
.y306{bottom:1114.259100px;}
.y177{bottom:1114.859100px;}
.y23f{bottom:1115.777550px;}
.y5b{bottom:1117.451100px;}
.y396{bottom:1117.751250px;}
.y354{bottom:1118.351100px;}
.yd0{bottom:1118.459100px;}
.y1a6{bottom:1118.759100px;}
.y13e{bottom:1119.059100px;}
.y358{bottom:1126.451250px;}
.ycf{bottom:1132.859100px;}
.y5a{bottom:1133.951100px;}
.y395{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;}
.hf{height:35.179688px;}
.h5{height:39.312000px;}
.hc{height:39.313477px;}
.hb{height:39.339844px;}
.hd{height:39.550781px;}
.h1c{height:39.577148px;}
.h15{height:43.710938px;}
.h14{height:43.974609px;}
.h1e{height:45.617197px;}
.h21{height:45.617797px;}
.h1a{height:48.082031px;}
.h25{height:48.339844px;}
.h1b{height:48.372070px;}
.h3{height:50.484375px;}
.h12{height:52.416000px;}
.ha{height:52.417969px;}
.h24{height:52.453125px;}
.h4{height:61.195312px;}
.h1f{height:71.713477px;}
.h22{height:71.950781px;}
.h10{height:76.394136px;}
.h17{height:85.136719px;}
.h1d{height:85.137319px;}
.h23{height:85.148438px;}
.h19{height:100.968750px;}
.h18{height:102.164062px;}
.h20{height:104.113477px;}
.h11{height:127.705078px;}
.h9{height:165.289051px;}
.h13{height:201.937500px;}
.h6{height:209.664000px;}
.h7{height:211.078125px;}
.h2{height:226.734144px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1f{left:-667.732650px;}
.x0{left:0.000000px;}
.x18{left:68.031450px;}
.x23{left:70.582650px;}
.x1b{left:72.283350px;}
.x41{left:74.031450px;}
.x19{left:76.960650px;}
.x3c{left:87.179850px;}
.xd{left:98.032500px;}
.x42{left:101.669250px;}
.xc{left:104.598450px;}
.x29{left:106.569900px;}
.x24{left:110.551200px;}
.x2{left:127.133700px;}
.x6{left:128.311800px;}
.x5{left:132.371250px;}
.x2c{left:136.393650px;}
.x1e{left:140.314950px;}
.x2a{left:166.002450px;}
.x48{left:172.346400px;}
.x4a{left:178.582650px;}
.x51{left:186.097050px;}
.x4f{left:198.173850px;}
.x50{left:212.393850px;}
.x1d{left:214.597950px;}
.x43{left:217.535400px;}
.x4e{left:220.631850px;}
.xa{left:225.295650px;}
.x2d{left:239.858250px;}
.x3d{left:247.299150px;}
.x47{left:252.514200px;}
.x4c{left:268.706100px;}
.x37{left:277.741950px;}
.x39{left:282.626550px;}
.x1{left:292.535400px;}
.x4b{left:299.518350px;}
.x3b{left:304.293750px;}
.x35{left:307.915950px;}
.x52{left:313.698000px;}
.x34{left:316.768800px;}
.x32{left:320.163600px;}
.x36{left:325.028250px;}
.x31{left:334.049100px;}
.x33{left:340.044450px;}
.x4{left:341.574750px;}
.x38{left:345.433200px;}
.x30{left:354.955050px;}
.x44{left:362.285550px;}
.x3a{left:363.669450px;}
.x4d{left:374.189550px;}
.x49{left:380.868900px;}
.x3e{left:392.049150px;}
.x3{left:399.207150px;}
.x2e{left:412.771650px;}
.x45{left:514.110300px;}
.x3f{left:543.874050px;}
.x20{left:559.728000px;}
.x12{left:565.511850px;}
.x11{left:566.635800px;}
.x14{left:572.594700px;}
.xe{left:576.774000px;}
.x13{left:580.162050px;}
.x15{left:585.778350px;}
.x17{left:587.614200px;}
.x26{left:593.960550px;}
.x1c{left:596.936850px;}
.x16{left:607.149000px;}
.x9{left:611.427300px;}
.x2f{left:612.614100px;}
.x7{left:615.874650px;}
.x10{left:620.269950px;}
.x8{left:628.317000px;}
.xf{left:655.928250px;}
.x46{left:662.929200px;}
.xb{left:672.804750px;}
.x2b{left:680.372700px;}
.x40{left:692.692950px;}
.x27{left:769.198500px;}
.x25{left:777.838350px;}
.x22{left:786.478200px;}
.x28{left:843.964950px;}
.x21{left:855.632400px;}
.x1a{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;}
.ls4{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.007467pt;}
.ls2{letter-spacing:1.680000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls9{letter-spacing:8.000000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls6{letter-spacing:32.000000pt;}
.ls7{letter-spacing:51.200000pt;}
.lse{letter-spacing:71.579733pt;}
.lsc{letter-spacing:89.217600pt;}
.lsb{letter-spacing:110.217600pt;}
.lsd{letter-spacing:123.445867pt;}
.ws15{word-spacing:-107.520000pt;}
.ws13{word-spacing:-87.792533pt;}
.ws2{word-spacing:-71.168000pt;}
.ws0{word-spacing:-66.442240pt;}
.ws1{word-spacing:-61.440000pt;}
.ws14{word-spacing:-32.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.ws93{word-spacing:-17.792000pt;}
.ws2b{word-spacing:-14.826667pt;}
.ws49{word-spacing:-14.506667pt;}
.ws50{word-spacing:-14.400000pt;}
.ws66{word-spacing:-14.240000pt;}
.ws6b{word-spacing:-13.973333pt;}
.ws4d{word-spacing:-13.600000pt;}
.ws55{word-spacing:-13.493333pt;}
.ws7{word-spacing:-13.344000pt;}
.ws73{word-spacing:-13.013333pt;}
.ws79{word-spacing:-12.800000pt;}
.ws37{word-spacing:-12.693333pt;}
.ws24{word-spacing:-12.640000pt;}
.ws43{word-spacing:-12.586667pt;}
.ws58{word-spacing:-12.533333pt;}
.ws26{word-spacing:-12.480000pt;}
.ws1a{word-spacing:-12.426667pt;}
.ws21{word-spacing:-12.373333pt;}
.ws41{word-spacing:-12.320000pt;}
.ws65{word-spacing:-12.266667pt;}
.ws5c{word-spacing:-12.213333pt;}
.ws53{word-spacing:-12.160000pt;}
.ws4e{word-spacing:-12.106667pt;}
.ws5d{word-spacing:-12.053333pt;}
.ws47{word-spacing:-12.000000pt;}
.ws35{word-spacing:-11.946667pt;}
.ws64{word-spacing:-11.893333pt;}
.ws3{word-spacing:-11.861333pt;}
.ws2a{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.243179pt;}
.ws44{word-spacing:-10.026667pt;}
.ws4b{word-spacing:-9.866667pt;}
.ws68{word-spacing:-9.706667pt;}
.ws57{word-spacing:-9.653333pt;}
.ws31{word-spacing:-9.600000pt;}
.ws2f{word-spacing:-9.546667pt;}
.ws3a{word-spacing:-9.493333pt;}
.ws3f{word-spacing:-9.440000pt;}
.ws36{word-spacing:-9.386667pt;}
.ws6d{word-spacing:-9.333333pt;}
.ws3c{word-spacing:-9.280000pt;}
.ws30{word-spacing:-9.226667pt;}
.ws1d{word-spacing:-9.173333pt;}
.ws6a{word-spacing:-9.120000pt;}
.ws3b{word-spacing:-9.066667pt;}
.ws63{word-spacing:-9.013333pt;}
.ws56{word-spacing:-8.906667pt;}
.ws60{word-spacing:-8.853333pt;}
.ws39{word-spacing:-8.800000pt;}
.ws84{word-spacing:-8.643947pt;}
.ws74{word-spacing:-8.586667pt;}
.ws23{word-spacing:-8.373333pt;}
.ws7b{word-spacing:-8.000000pt;}
.ws62{word-spacing:-7.680000pt;}
.ws8{word-spacing:-7.467271pt;}
.ws51{word-spacing:-6.773333pt;}
.ws4a{word-spacing:-6.720000pt;}
.ws4c{word-spacing:-6.666667pt;}
.ws71{word-spacing:-6.613333pt;}
.ws3e{word-spacing:-6.560000pt;}
.ws22{word-spacing:-6.506667pt;}
.ws70{word-spacing:-6.453333pt;}
.ws81{word-spacing:-6.400000pt;}
.ws52{word-spacing:-6.346667pt;}
.ws75{word-spacing:-6.293333pt;}
.ws42{word-spacing:-6.240000pt;}
.ws1f{word-spacing:-6.186667pt;}
.ws29{word-spacing:-6.133333pt;}
.ws5a{word-spacing:-6.080000pt;}
.ws5b{word-spacing:-5.813333pt;}
.ws46{word-spacing:-5.440000pt;}
.ws45{word-spacing:-5.386667pt;}
.ws7a{word-spacing:-5.333333pt;}
.ws72{word-spacing:-4.906667pt;}
.ws18{word-spacing:-4.746667pt;}
.ws54{word-spacing:-4.106667pt;}
.ws78{word-spacing:-3.840000pt;}
.ws2e{word-spacing:-3.786667pt;}
.ws27{word-spacing:-3.733333pt;}
.ws6f{word-spacing:-3.680000pt;}
.ws77{word-spacing:-3.626667pt;}
.ws48{word-spacing:-3.573333pt;}
.ws40{word-spacing:-3.520000pt;}
.ws20{word-spacing:-3.466667pt;}
.ws17{word-spacing:-3.451261pt;}
.ws28{word-spacing:-3.413333pt;}
.ws67{word-spacing:-3.360000pt;}
.ws1c{word-spacing:-3.306667pt;}
.ws59{word-spacing:-3.253333pt;}
.ws7c{word-spacing:-3.226667pt;}
.ws76{word-spacing:-3.146667pt;}
.ws5f{word-spacing:-2.720000pt;}
.wsb{word-spacing:-2.640000pt;}
.wsa{word-spacing:-2.592000pt;}
.ws3d{word-spacing:-2.560000pt;}
.ws91{word-spacing:-2.453333pt;}
.ws33{word-spacing:-2.400000pt;}
.ws6e{word-spacing:-2.293333pt;}
.ws83{word-spacing:-2.240000pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws16{word-spacing:-1.861333pt;}
.wsc{word-spacing:-1.776000pt;}
.ws61{word-spacing:-1.600000pt;}
.ws19{word-spacing:-1.578667pt;}
.ws6c{word-spacing:-1.493333pt;}
.ws8f{word-spacing:-1.066667pt;}
.wse{word-spacing:-0.981333pt;}
.ws34{word-spacing:-0.906667pt;}
.ws25{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.816000pt;}
.ws2c{word-spacing:-0.800000pt;}
.ws69{word-spacing:-0.768000pt;}
.ws38{word-spacing:-0.746667pt;}
.ws1e{word-spacing:-0.693333pt;}
.ws5e{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.586667pt;}
.ws32{word-spacing:-0.533333pt;}
.ws8b{word-spacing:-0.288000pt;}
.ws5{word-spacing:0.000000pt;}
.ws89{word-spacing:0.640000pt;}
.ws7f{word-spacing:0.960000pt;}
.ws86{word-spacing:1.813333pt;}
.ws92{word-spacing:2.400000pt;}
.ws90{word-spacing:2.720000pt;}
.ws7d{word-spacing:2.736000pt;}
.wsf{word-spacing:3.285333pt;}
.ws87{word-spacing:3.893333pt;}
.ws2d{word-spacing:3.946667pt;}
.ws82{word-spacing:4.266667pt;}
.ws7e{word-spacing:4.464000pt;}
.ws80{word-spacing:4.704000pt;}
.ws10{word-spacing:5.162667pt;}
.ws88{word-spacing:6.613333pt;}
.ws8d{word-spacing:7.840000pt;}
.ws85{word-spacing:7.893333pt;}
.ws8e{word-spacing:8.320000pt;}
.ws8c{word-spacing:8.373333pt;}
.wsd{word-spacing:11.818667pt;}
.ws11{word-spacing:17.280000pt;}
.ws12{word-spacing:72.016000pt;}
.ws8a{word-spacing:317.982933pt;}
._18{margin-left:-18.666667pt;}
._0{margin-left:-15.226347pt;}
._7{margin-left:-11.956816pt;}
._1{margin-left:-10.243179pt;}
._6{margin-left:-8.324090pt;}
._b{margin-left:-7.347200pt;}
._f{margin-left:-6.202667pt;}
._9{margin-left:-5.308800pt;}
._4{margin-left:-3.552000pt;}
._3{margin-left:-2.099200pt;}
._2{margin-left:-1.196800pt;}
._5{width:0.950400pt;}
._a{width:2.678400pt;}
._e{width:4.040533pt;}
._15{width:5.021867pt;}
._16{width:5.979200pt;}
._14{width:6.980267pt;}
._12{width:8.186667pt;}
._13{width:9.619200pt;}
._17{width:11.196800pt;}
._19{width:12.153600pt;}
._c{width:13.267200pt;}
._d{width:14.186667pt;}
._1a{width:16.005333pt;}
._1c{width:16.973867pt;}
._1b{width:20.384000pt;}
._24{width:25.762667pt;}
._25{width:29.314667pt;}
._23{width:52.450667pt;}
._21{width:65.044267pt;}
._22{width:102.035200pt;}
._10{width:111.574558pt;}
._11{width:127.675200pt;}
._20{width:135.120533pt;}
._1f{width:210.313067pt;}
._1e{width:245.418667pt;}
._8{width:278.483142pt;}
._1d{width:315.934400pt;}
.fsd{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:93.277333pt;}
.fsa{font-size:106.666667pt;}
.fse{font-size:112.000000pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs6{font-size:201.818133pt;}
.fs4{font-size:256.000000pt;}
.fs0{font-size:276.842667pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:67.861067pt;}
.y23e{bottom:67.946267pt;}
.y96{bottom:94.488133pt;}
.y26e{bottom:94.731333pt;}
.y2e2{bottom:95.808933pt;}
.y2a3{bottom:96.134400pt;}
.yce{bottom:96.459733pt;}
.y305{bottom:96.826533pt;}
.y176{bottom:98.631067pt;}
.y206{bottom:99.523333pt;}
.y107{bottom:99.697733pt;}
.y1a5{bottom:100.277200pt;}
.y13d{bottom:100.856667pt;}
.y394{bottom:102.125067pt;}
.y34e{bottom:102.174000pt;}
.y21{bottom:103.508667pt;}
.y93{bottom:103.600667pt;}
.y59{bottom:104.576800pt;}
.ycd{bottom:109.259867pt;}
.y349{bottom:109.374000pt;}
.y3c7{bottom:110.488133pt;}
.y26d{bottom:110.731333pt;}
.y175{bottom:110.897600pt;}
.y1dd{bottom:111.430933pt;}
.y2e1{bottom:111.808933pt;}
.y2a2{bottom:112.134400pt;}
.y205{bottom:112.323467pt;}
.y106{bottom:112.497600pt;}
.y304{bottom:112.826533pt;}
.y1a4{bottom:113.077200pt;}
.y13c{bottom:113.656800pt;}
.y3{bottom:114.787733pt;}
.y34d{bottom:116.574000pt;}
.y92{bottom:117.734000pt;}
.y20{bottom:117.908667pt;}
.y393{bottom:118.391733pt;}
.y348{bottom:123.774000pt;}
.ycc{bottom:125.259867pt;}
.y174{bottom:126.364400pt;}
.y26c{bottom:126.731333pt;}
.y2e0{bottom:127.808933pt;}
.y2a1{bottom:128.134400pt;}
.y58{bottom:128.135733pt;}
.y303{bottom:128.826533pt;}
.y23d{bottom:130.144000pt;}
.y1dc{bottom:130.943867pt;}
.y345{bottom:130.974000pt;}
.y204{bottom:131.836267pt;}
.y91{bottom:131.867333pt;}
.y105{bottom:132.277200pt;}
.y1f{bottom:132.308667pt;}
.y1a3{bottom:132.856667pt;}
.y13b{bottom:133.436133pt;}
.y2{bottom:134.341733pt;}
.y392{bottom:134.658400pt;}
.y344{bottom:138.174000pt;}
.y23c{bottom:142.410667pt;}
.y26b{bottom:142.731333pt;}
.y1db{bottom:143.477200pt;}
.y2df{bottom:143.808933pt;}
.y2a0{bottom:144.134400pt;}
.y57{bottom:144.135733pt;}
.y203{bottom:144.369600pt;}
.ycb{bottom:145.039333pt;}
.y104{bottom:145.077200pt;}
.y34c{bottom:145.374000pt;}
.y173{bottom:145.610533pt;}
.y1a2{bottom:145.656800pt;}
.y90{bottom:146.000667pt;}
.y13a{bottom:146.236267pt;}
.y391{bottom:150.924933pt;}
.y347{bottom:152.574000pt;}
.yca{bottom:157.839333pt;}
.y172{bottom:157.877200pt;}
.y26a{bottom:158.731333pt;}
.y34b{bottom:159.774000pt;}
.y2de{bottom:159.808933pt;}
.y8f{bottom:160.134000pt;}
.y29f{bottom:160.134400pt;}
.y56{bottom:160.135733pt;}
.y302{bottom:160.826533pt;}
.y23b{bottom:161.656933pt;}
.y1da{bottom:162.990133pt;}
.y202{bottom:163.882400pt;}
.y103{bottom:164.856667pt;}
.y1a1{bottom:165.436133pt;}
.y139{bottom:166.015733pt;}
.y346{bottom:166.974000pt;}
.y390{bottom:167.191600pt;}
.y23a{bottom:173.923467pt;}
.y34a{bottom:174.174000pt;}
.y8e{bottom:174.267333pt;}
.y269{bottom:174.731333pt;}
.y301{bottom:175.226533pt;}
.y1d9{bottom:175.523333pt;}
.y2dd{bottom:175.808933pt;}
.y29e{bottom:176.134400pt;}
.y55{bottom:176.135733pt;}
.y201{bottom:176.415733pt;}
.y171{bottom:177.123333pt;}
.yc9{bottom:177.618933pt;}
.y102{bottom:177.656800pt;}
.y1a0{bottom:178.236267pt;}
.y138{bottom:178.815733pt;}
.y38f{bottom:183.458267pt;}
.y8d{bottom:188.400667pt;}
.y170{bottom:189.390000pt;}
.y239{bottom:189.390267pt;}
.yc8{bottom:190.418800pt;}
.y268{bottom:190.731333pt;}
.y2dc{bottom:191.808933pt;}
.y29d{bottom:192.134400pt;}
.y54{bottom:192.135733pt;}
.y200{bottom:192.149067pt;}
.y343{bottom:193.576933pt;}
.y1d8{bottom:195.036267pt;}
.y101{bottom:197.436133pt;}
.y19f{bottom:198.015733pt;}
.y137{bottom:198.595333pt;}
.y38e{bottom:199.725067pt;}
.y33c{bottom:200.777067pt;}
.y8c{bottom:202.534000pt;}
.y238{bottom:204.856800pt;}
.y267{bottom:206.731333pt;}
.y1d7{bottom:207.569600pt;}
.y2db{bottom:207.808933pt;}
.y342{bottom:207.976933pt;}
.y33e{bottom:207.977067pt;}
.y29c{bottom:208.134400pt;}
.y53{bottom:208.135867pt;}
.y16f{bottom:208.636267pt;}
.yc7{bottom:210.198400pt;}
.y100{bottom:210.236267pt;}
.y19e{bottom:210.815733pt;}
.y136{bottom:211.395200pt;}
.y1ff{bottom:211.662000pt;}
.y4f{bottom:211.893600pt;}
.y339{bottom:215.177067pt;}
.y38d{bottom:215.991733pt;}
.y300{bottom:216.193867pt;}
.y8b{bottom:216.667333pt;}
.y1{bottom:217.394533pt;}
.y16e{bottom:220.902933pt;}
.y341{bottom:222.376933pt;}
.y338{bottom:222.377067pt;}
.y266{bottom:222.731333pt;}
.yc6{bottom:222.998400pt;}
.y2da{bottom:223.808933pt;}
.y237{bottom:224.103067pt;}
.y29b{bottom:224.134400pt;}
.y1fe{bottom:224.195333pt;}
.y4e{bottom:226.560267pt;}
.y1d6{bottom:227.082400pt;}
.y33b{bottom:229.577067pt;}
.yff{bottom:230.015733pt;}
.y19d{bottom:230.595333pt;}
.y8a{bottom:230.800667pt;}
.y135{bottom:231.174800pt;}
.y52{bottom:231.694800pt;}
.y38c{bottom:232.258267pt;}
.y2ff{bottom:234.373467pt;}
.y16d{bottom:236.369600pt;}
.y236{bottom:236.369733pt;}
.y340{bottom:236.776933pt;}
.y33d{bottom:236.777067pt;}
.y1d5{bottom:239.615733pt;}
.y1fd{bottom:239.928667pt;}
.y29a{bottom:240.134400pt;}
.y4d{bottom:241.226933pt;}
.yc5{bottom:242.777867pt;}
.yfe{bottom:242.815733pt;}
.y19c{bottom:243.395200pt;}
.y134{bottom:243.974800pt;}
.y33a{bottom:243.977067pt;}
.y89{bottom:244.934000pt;}
.y265{bottom:246.290400pt;}
.y2d9{bottom:247.367867pt;}
.y38b{bottom:248.524933pt;}
.y33f{bottom:251.176933pt;}
.y235{bottom:251.836400pt;}
.y2fe{bottom:252.552933pt;}
.y51{bottom:255.253867pt;}
.yc4{bottom:255.578000pt;}
.y16c{bottom:255.615733pt;}
.y4c{bottom:255.893600pt;}
.y299{bottom:256.134400pt;}
.yfd{bottom:258.815733pt;}
.y88{bottom:259.067333pt;}
.y1d4{bottom:259.128667pt;}
.y1fc{bottom:259.441467pt;}
.y19b{bottom:263.174800pt;}
.y133{bottom:263.754267pt;}
.y38a{bottom:264.791600pt;}
.y16b{bottom:267.882400pt;}
.y4b{bottom:270.560267pt;}
.y332{bottom:270.580000pt;}
.y2fd{bottom:270.732400pt;}
.y234{bottom:271.082667pt;}
.y50{bottom:271.253867pt;}
.y1d3{bottom:271.662000pt;}
.y298{bottom:272.134400pt;}
.y1fb{bottom:272.241467pt;}
.y87{bottom:273.200667pt;}
.yc3{bottom:275.357467pt;}
.y19a{bottom:275.974800pt;}
.y132{bottom:276.554400pt;}
.y337{bottom:277.780000pt;}
.yfc{bottom:278.595333pt;}
.y2d6{bottom:279.901333pt;}
.y389{bottom:281.058400pt;}
.y264{bottom:281.490400pt;}
.y233{bottom:283.349333pt;}
.y331{bottom:284.980000pt;}
.y4a{bottom:285.226933pt;}
.y2d8{bottom:287.101333pt;}
.y16a{bottom:287.128667pt;}
.y1fa{bottom:287.974800pt;}
.y297{bottom:288.134400pt;}
.yc2{bottom:288.157467pt;}
.y2fc{bottom:290.135467pt;}
.y1d2{bottom:291.174800pt;}
.yfb{bottom:291.395200pt;}
.y336{bottom:292.180000pt;}
.y16{bottom:294.285600pt;}
.y2d5{bottom:294.301333pt;}
.y199{bottom:295.754267pt;}
.y263{bottom:295.890400pt;}
.y131{bottom:296.333867pt;}
.y388{bottom:297.325067pt;}
.y330{bottom:299.380000pt;}
.y169{bottom:299.395200pt;}
.y49{bottom:299.893600pt;}
.y2d2{bottom:301.501333pt;}
.y232{bottom:302.595467pt;}
.y1d1{bottom:303.708133pt;}
.y296{bottom:304.134400pt;}
.y32c{bottom:306.580000pt;}
.y1f9{bottom:307.487733pt;}
.yc1{bottom:307.937067pt;}
.y2fb{bottom:308.315067pt;}
.y198{bottom:308.554400pt;}
.y15{bottom:308.685600pt;}
.y2d4{bottom:308.701333pt;}
.y130{bottom:309.133867pt;}
.y262{bottom:310.290400pt;}
.yfa{bottom:311.174800pt;}
.y387{bottom:313.591600pt;}
.y32b{bottom:313.780000pt;}
.y48{bottom:314.560267pt;}
.y231{bottom:314.862133pt;}
.y2d7{bottom:315.901333pt;}
.y168{bottom:318.641467pt;}
.y1f8{bottom:320.020933pt;}
.y295{bottom:320.134400pt;}
.yc0{bottom:320.736933pt;}
.y335{bottom:320.980000pt;}
.y14{bottom:323.085600pt;}
.y2d3{bottom:323.101333pt;}
.y1d0{bottom:323.221067pt;}
.y3cc{bottom:323.331733pt;}
.yf9{bottom:323.974800pt;}
.y197{bottom:324.554400pt;}
.y2fa{bottom:326.494533pt;}
.y3bd{bottom:328.095867pt;}
.y32f{bottom:328.180000pt;}
.y12f{bottom:328.913467pt;}
.y47{bottom:329.226933pt;}
.y386{bottom:329.858267pt;}
.y167{bottom:330.908133pt;}
.y261{bottom:332.249333pt;}
.y230{bottom:334.108267pt;}
.y334{bottom:335.380000pt;}
.y1cf{bottom:335.754400pt;}
.y294{bottom:336.134400pt;}
.y13{bottom:337.485600pt;}
.y1f7{bottom:339.533867pt;}
.yf8{bottom:339.974800pt;}
.ybf{bottom:340.516533pt;}
.y3cb{bottom:340.931733pt;}
.y12e{bottom:341.713333pt;}
.y2d1{bottom:342.504267pt;}
.y32e{bottom:342.580000pt;}
.y46{bottom:343.893600pt;}
.y196{bottom:344.333867pt;}
.y2f9{bottom:344.674133pt;}
.y385{bottom:346.124933pt;}
.y22f{bottom:346.374933pt;}
.y260{bottom:346.649467pt;}
.y86{bottom:347.505067pt;}
.y333{bottom:349.780000pt;}
.y166{bottom:350.154400pt;}
.y12{bottom:351.885600pt;}
.y1f6{bottom:352.067200pt;}
.y293{bottom:352.134400pt;}
.ybe{bottom:353.316533pt;}
.y17{bottom:353.950267pt;}
.y3bc{bottom:354.854933pt;}
.y1ce{bottom:355.267200pt;}
.y2d0{bottom:356.904267pt;}
.y32d{bottom:356.980000pt;}
.y195{bottom:357.133867pt;}
.y3ca{bottom:358.531733pt;}
.y45{bottom:358.560267pt;}
.yf7{bottom:359.754400pt;}
.y25f{bottom:361.049467pt;}
.y12d{bottom:361.492933pt;}
.y85{bottom:362.171733pt;}
.y384{bottom:362.391600pt;}
.y165{bottom:362.421067pt;}
.y2f8{bottom:364.077067pt;}
.y2cd{bottom:364.104267pt;}
.y22e{bottom:365.621200pt;}
.y11{bottom:366.285600pt;}
.y1cd{bottom:367.800533pt;}
.y292{bottom:368.134400pt;}
.y2c9{bottom:371.304267pt;}
.yf6{bottom:372.554400pt;}
.ybd{bottom:373.096133pt;}
.y194{bottom:373.133867pt;}
.y44{bottom:373.226933pt;}
.y12c{bottom:374.292933pt;}
.y25e{bottom:375.449467pt;}
.y3c9{bottom:376.131733pt;}
.y32a{bottom:376.383067pt;}
.y84{bottom:376.838400pt;}
.y22d{bottom:377.887867pt;}
.y2cc{bottom:378.504267pt;}
.y383{bottom:378.658267pt;}
.y10{bottom:380.685600pt;}
.y3bb{bottom:381.614000pt;}
.y164{bottom:381.667200pt;}
.y2f7{bottom:382.256533pt;}
.y291{bottom:384.134400pt;}
.y2c7{bottom:385.704267pt;}
.ybc{bottom:385.896000pt;}
.y1cc{bottom:387.313333pt;}
.y43{bottom:387.893600pt;}
.y25d{bottom:389.849467pt;}
.y83{bottom:391.505067pt;}
.yf5{bottom:392.333867pt;}
.y2cb{bottom:392.904267pt;}
.y193{bottom:392.913467pt;}
.y3c8{bottom:393.731733pt;}
.y163{bottom:393.933867pt;}
.y12b{bottom:394.072533pt;}
.y382{bottom:394.925067pt;}
.yf{bottom:395.085600pt;}
.y22c{bottom:397.134000pt;}
.y1cb{bottom:399.846667pt;}
.y2c8{bottom:400.104267pt;}
.y290{bottom:400.134400pt;}
.y2f6{bottom:400.436133pt;}
.ybb{bottom:401.896000pt;}
.y42{bottom:402.560267pt;}
.y25c{bottom:404.249467pt;}
.yf4{bottom:405.133867pt;}
.y192{bottom:405.713333pt;}
.y82{bottom:406.171733pt;}
.y12a{bottom:406.872400pt;}
.y2ca{bottom:407.304267pt;}
.y3ba{bottom:408.373067pt;}
.y22b{bottom:409.400667pt;}
.ye{bottom:409.485600pt;}
.y381{bottom:411.191600pt;}
.y329{bottom:411.786000pt;}
.y162{bottom:413.180000pt;}
.y2cf{bottom:414.504267pt;}
.y1ca{bottom:415.580133pt;}
.y28f{bottom:416.134400pt;}
.y41{bottom:417.226933pt;}
.y2f5{bottom:418.615600pt;}
.y25b{bottom:418.649467pt;}
.y1f5{bottom:419.359600pt;}
.y18{bottom:419.798933pt;}
.y81{bottom:420.838400pt;}
.yba{bottom:421.675600pt;}
.yd{bottom:423.885600pt;}
.yf3{bottom:424.913467pt;}
.y161{bottom:425.446800pt;}
.y191{bottom:425.492933pt;}
.y129{bottom:426.652000pt;}
.y380{bottom:427.458267pt;}
.y328{bottom:428.319333pt;}
.y22a{bottom:428.646933pt;}
.y2ce{bottom:428.904267pt;}
.y1f4{bottom:431.892933pt;}
.y40{bottom:431.893600pt;}
.y28e{bottom:432.134400pt;}
.y25a{bottom:433.049467pt;}
.yb9{bottom:434.475600pt;}
.y1c9{bottom:435.092933pt;}
.y3b9{bottom:435.132133pt;}
.y80{bottom:435.505067pt;}
.yf2{bottom:437.713333pt;}
.yc{bottom:438.285600pt;}
.y190{bottom:438.292933pt;}
.y128{bottom:439.452000pt;}
.y160{bottom:440.913467pt;}
.y229{bottom:440.913600pt;}
.y37f{bottom:443.724933pt;}
.y327{bottom:444.852667pt;}
.y3f{bottom:446.560267pt;}
.y1c8{bottom:447.626267pt;}
.y28d{bottom:448.134400pt;}
.y2c6{bottom:448.307333pt;}
.y7f{bottom:450.171733pt;}
.yb8{bottom:450.475600pt;}
.y1f3{bottom:451.405867pt;}
.y259{bottom:452.452533pt;}
.yb{bottom:452.685600pt;}
.y127{bottom:455.452000pt;}
.yf1{bottom:457.492933pt;}
.y18f{bottom:458.072533pt;}
.y2f4{bottom:459.582933pt;}
.y37e{bottom:459.991600pt;}
.y15f{bottom:460.159600pt;}
.y228{bottom:460.159733pt;}
.y3e{bottom:461.226933pt;}
.y326{bottom:461.386000pt;}
.y3b8{bottom:461.891200pt;}
.y2c2{bottom:462.707333pt;}
.y1f2{bottom:463.939067pt;}
.y28c{bottom:464.134400pt;}
.y7e{bottom:464.838400pt;}
.y258{bottom:466.852400pt;}
.ya{bottom:467.085600pt;}
.y1c7{bottom:467.139067pt;}
.y2c4{bottom:469.907333pt;}
.yb7{bottom:470.255067pt;}
.yf0{bottom:470.292933pt;}
.y18e{bottom:470.872400pt;}
.y126{bottom:471.452000pt;}
.y15e{bottom:472.426267pt;}
.y227{bottom:472.426400pt;}
.y3d{bottom:475.893600pt;}
.y37d{bottom:476.258400pt;}
.y2c1{bottom:477.107333pt;}
.y325{bottom:477.919333pt;}
.y7d{bottom:479.505067pt;}
.y1c6{bottom:479.672400pt;}
.y9{bottom:481.485600pt;}
.yb6{bottom:483.055067pt;}
.y2be{bottom:484.307333pt;}
.y18d{bottom:486.872400pt;}
.y28b{bottom:487.693467pt;}
.y3b7{bottom:488.650267pt;}
.y257{bottom:488.811467pt;}
.yef{bottom:490.072533pt;}
.y3c{bottom:490.560267pt;}
.y125{bottom:491.231467pt;}
.y2c0{bottom:491.507333pt;}
.y15d{bottom:491.672400pt;}
.y226{bottom:491.672667pt;}
.y37c{bottom:492.524933pt;}
.y7c{bottom:494.171733pt;}
.y324{bottom:494.452667pt;}
.y2f3{bottom:494.985867pt;}
.y1c5{bottom:495.405867pt;}
.y8{bottom:495.885600pt;}
.y2c3{bottom:498.707333pt;}
.y1f1{bottom:499.185333pt;}
.yb5{bottom:502.834667pt;}
.yee{bottom:502.872400pt;}
.y256{bottom:503.211467pt;}
.y15c{bottom:503.939067pt;}
.y225{bottom:503.939333pt;}
.y124{bottom:504.031467pt;}
.y3b{bottom:505.226933pt;}
.y2bf{bottom:505.907333pt;}
.y18c{bottom:506.652000pt;}
.y3c6{bottom:508.733600pt;}
.y37b{bottom:508.791600pt;}
.y7b{bottom:508.838400pt;}
.y7{bottom:510.285600pt;}
.y2f2{bottom:510.985867pt;}
.y323{bottom:510.986000pt;}
.y1f0{bottom:511.718667pt;}
.y1c4{bottom:514.918667pt;}
.y3b6{bottom:515.409200pt;}
.yb4{bottom:515.634667pt;}
.y255{bottom:517.611467pt;}
.y28a{bottom:518.893467pt;}
.y18b{bottom:519.452000pt;}
.y3a{bottom:519.893600pt;}
.y2c5{bottom:520.307333pt;}
.yed{bottom:522.652000pt;}
.y15b{bottom:523.185333pt;}
.y224{bottom:523.185467pt;}
.y7a{bottom:523.505067pt;}
.y123{bottom:523.811067pt;}
.y6{bottom:524.685733pt;}
.y37a{bottom:525.058267pt;}
.y3c5{bottom:526.333600pt;}
.y2f1{bottom:526.985867pt;}
.y1c3{bottom:527.452000pt;}
.y322{bottom:527.519333pt;}
.y254{bottom:532.011467pt;}
.y39{bottom:534.560267pt;}
.y289{bottom:534.893467pt;}
.yb3{bottom:535.414133pt;}
.yec{bottom:535.452000pt;}
.y223{bottom:535.452133pt;}
.y122{bottom:536.611067pt;}
.y79{bottom:538.171733pt;}
.y5{bottom:539.085600pt;}
.y18a{bottom:539.231467pt;}
.y2bb{bottom:539.710267pt;}
.y379{bottom:541.324933pt;}
.y3b5{bottom:542.168400pt;}
.y2f0{bottom:542.985867pt;}
.y3c4{bottom:543.933600pt;}
.y321{bottom:544.052667pt;}
.y253{bottom:546.411467pt;}
.y2bd{bottom:546.910267pt;}
.y1c2{bottom:546.964800pt;}
.yb2{bottom:548.214133pt;}
.y38{bottom:549.226933pt;}
.y288{bottom:550.893467pt;}
.y15a{bottom:550.918667pt;}
.yeb{bottom:551.452000pt;}
.y189{bottom:552.031467pt;}
.y78{bottom:552.838400pt;}
.y2ba{bottom:554.110267pt;}
.y222{bottom:554.698267pt;}
.y121{bottom:556.390533pt;}
.y378{bottom:557.591733pt;}
.y2ef{bottom:558.985867pt;}
.y1c1{bottom:559.498133pt;}
.y320{bottom:560.586000pt;}
.y252{bottom:560.811467pt;}
.y2b5{bottom:561.310267pt;}
.y3c3{bottom:561.533600pt;}
.y37{bottom:563.893600pt;}
.y287{bottom:566.893467pt;}
.y221{bottom:566.965067pt;}
.y77{bottom:567.505067pt;}
.yb1{bottom:567.993733pt;}
.y2b9{bottom:568.510267pt;}
.y3b4{bottom:568.927467pt;}
.y120{bottom:569.190533pt;}
.y159{bottom:570.164800pt;}
.yea{bottom:571.231467pt;}
.y188{bottom:571.811067pt;}
.y377{bottom:573.858267pt;}
.y2ee{bottom:574.985867pt;}
.y251{bottom:575.211467pt;}
.y1ef{bottom:575.231467pt;}
.y2b3{bottom:575.710267pt;}
.y31f{bottom:577.119333pt;}
.y36{bottom:578.560267pt;}
.y1c0{bottom:579.011067pt;}
.yb0{bottom:580.793733pt;}
.y76{bottom:582.171733pt;}
.y158{bottom:582.431467pt;}
.y220{bottom:582.431733pt;}
.y286{bottom:582.893467pt;}
.y2b8{bottom:582.910267pt;}
.ye9{bottom:584.031467pt;}
.y187{bottom:584.611067pt;}
.y11f{bottom:585.190533pt;}
.y2b4{bottom:590.110267pt;}
.y376{bottom:590.124933pt;}
.y2ed{bottom:590.985867pt;}
.y1bf{bottom:591.544400pt;}
.y35{bottom:593.226933pt;}
.y31e{bottom:593.652667pt;}
.y250{bottom:594.614533pt;}
.y1ee{bottom:594.744400pt;}
.y3b3{bottom:595.686400pt;}
.yaf{bottom:596.793733pt;}
.y75{bottom:596.838400pt;}
.y2b7{bottom:597.310267pt;}
.y285{bottom:598.893467pt;}
.y157{bottom:601.677733pt;}
.y21f{bottom:601.677867pt;}
.ye8{bottom:603.811067pt;}
.y186{bottom:604.390533pt;}
.y2bc{bottom:604.510267pt;}
.y11e{bottom:604.970133pt;}
.y375{bottom:606.391600pt;}
.y2ec{bottom:606.985867pt;}
.y1ed{bottom:607.277733pt;}
.y34{bottom:607.893600pt;}
.y24f{bottom:609.014533pt;}
.y31d{bottom:610.186000pt;}
.y1be{bottom:611.057200pt;}
.y74{bottom:611.505067pt;}
.y2b6{bottom:611.710267pt;}
.y156{bottom:613.944400pt;}
.y21e{bottom:613.944533pt;}
.y284{bottom:614.893467pt;}
.yae{bottom:616.573200pt;}
.ye7{bottom:616.611067pt;}
.y185{bottom:617.190533pt;}
.y11d{bottom:617.770133pt;}
.y3b2{bottom:622.445467pt;}
.y33{bottom:622.560267pt;}
.y374{bottom:622.658267pt;}
.y2eb{bottom:622.985867pt;}
.y1bd{bottom:623.590533pt;}
.y73{bottom:626.171733pt;}
.y31c{bottom:626.719333pt;}
.y1ec{bottom:626.790533pt;}
.yad{bottom:629.373200pt;}
.y21d{bottom:629.411200pt;}
.y283{bottom:630.893467pt;}
.y24e{bottom:630.973600pt;}
.y2b2{bottom:631.113333pt;}
.y155{bottom:633.190533pt;}
.y11c{bottom:633.770133pt;}
.ye6{bottom:636.390533pt;}
.y184{bottom:636.970133pt;}
.y32{bottom:637.226933pt;}
.y2b0{bottom:638.313333pt;}
.y373{bottom:638.925067pt;}
.y2ea{bottom:638.985867pt;}
.y1bc{bottom:639.323867pt;}
.y72{bottom:640.838400pt;}
.y31b{bottom:643.252667pt;}
.yac{bottom:645.373200pt;}
.y24d{bottom:645.373600pt;}
.y154{bottom:645.457200pt;}
.y2ac{bottom:645.513200pt;}
.y282{bottom:646.893467pt;}
.y21c{bottom:648.657333pt;}
.ye5{bottom:649.190533pt;}
.y3b1{bottom:649.204533pt;}
.y183{bottom:649.770133pt;}
.y31{bottom:651.893600pt;}
.y2af{bottom:652.713333pt;}
.y11b{bottom:653.549600pt;}
.y2e9{bottom:654.985867pt;}
.y1eb{bottom:655.057200pt;}
.y372{bottom:655.191600pt;}
.y71{bottom:655.505067pt;}
.y1bb{bottom:658.836800pt;}
.y24c{bottom:659.773467pt;}
.y31a{bottom:659.786000pt;}
.y2ab{bottom:659.913333pt;}
.y153{bottom:660.923867pt;}
.y21b{bottom:660.924133pt;}
.y281{bottom:662.893467pt;}
.yab{bottom:665.152800pt;}
.y182{bottom:665.770133pt;}
.y11a{bottom:666.349600pt;}
.y30{bottom:666.560267pt;}
.y2a8{bottom:667.113333pt;}
.ye4{bottom:668.970133pt;}
.y70{bottom:670.171733pt;}
.y2e8{bottom:670.985867pt;}
.y1ba{bottom:671.370133pt;}
.y371{bottom:671.458267pt;}
.y24b{bottom:674.173600pt;}
.y2aa{bottom:674.313333pt;}
.y1ea{bottom:674.570133pt;}
.y3b0{bottom:675.963600pt;}
.y319{bottom:676.319333pt;}
.y3be{bottom:676.535467pt;}
.yaa{bottom:677.952667pt;}
.y280{bottom:678.893467pt;}
.y152{bottom:680.170133pt;}
.y21a{bottom:680.170267pt;}
.y2f{bottom:681.226933pt;}
.y2ae{bottom:681.513200pt;}
.ye3{bottom:681.770133pt;}
.y6f{bottom:684.838400pt;}
.y119{bottom:686.129200pt;}
.y2e7{bottom:686.985867pt;}
.y1b9{bottom:687.103467pt;}
.y24a{bottom:688.573600pt;}
.y2a9{bottom:688.713333pt;}
.y3ab{bottom:691.156533pt;}
.y151{bottom:692.436800pt;}
.y219{bottom:692.436933pt;}
.y318{bottom:692.852667pt;}
.ya9{bottom:693.952667pt;}
.y27f{bottom:694.893467pt;}
.y370{bottom:695.284000pt;}
.y2e{bottom:695.893600pt;}
.y2ad{bottom:695.913200pt;}
.y118{bottom:698.929067pt;}
.y6e{bottom:699.505067pt;}
.ye2{bottom:701.549600pt;}
.y3af{bottom:702.722667pt;}
.y249{bottom:702.973600pt;}
.y2e6{bottom:702.985867pt;}
.y2b1{bottom:703.113333pt;}
.y3aa{bottom:705.556533pt;}
.y1b8{bottom:706.616267pt;}
.y218{bottom:707.903600pt;}
.y317{bottom:709.386000pt;}
.y2d{bottom:710.560267pt;}
.y27e{bottom:710.893467pt;}
.y150{bottom:711.682933pt;}
.ya8{bottom:713.732267pt;}
.y6d{bottom:714.171733pt;}
.ye1{bottom:714.349600pt;}
.y3c2{bottom:716.515333pt;}
.y248{bottom:717.373600pt;}
.y117{bottom:718.708667pt;}
.y2e5{bottom:718.985867pt;}
.y1b7{bottom:719.149600pt;}
.y3a9{bottom:719.956533pt;}
.y2a7{bottom:722.516267pt;}
.y14f{bottom:723.949600pt;}
.y2c{bottom:725.226933pt;}
.y316{bottom:725.919333pt;}
.ya7{bottom:726.532267pt;}
.y27d{bottom:726.893467pt;}
.y217{bottom:727.149733pt;}
.y6c{bottom:728.838400pt;}
.y3ae{bottom:729.481733pt;}
.y2a6{bottom:729.716267pt;}
.ye0{bottom:730.349600pt;}
.y116{bottom:731.508667pt;}
.y181{bottom:734.129200pt;}
.y3a8{bottom:734.356533pt;}
.y2e4{bottom:734.985867pt;}
.y1b6{bottom:738.662400pt;}
.y216{bottom:739.416400pt;}
.y2b{bottom:739.893600pt;}
.y315{bottom:742.452667pt;}
.y27c{bottom:742.893467pt;}
.y14e{bottom:743.195867pt;}
.y3c1{bottom:743.274267pt;}
.y6b{bottom:743.505067pt;}
.y247{bottom:744.335600pt;}
.ya6{bottom:746.311867pt;}
.y36f{bottom:746.484000pt;}
.y180{bottom:746.929067pt;}
.y115{bottom:747.508667pt;}
.y3a7{bottom:748.756533pt;}
.ydf{bottom:750.129200pt;}
.y2e3{bottom:750.985867pt;}
.y1b5{bottom:751.195867pt;}
.y36a{bottom:753.684000pt;}
.y2a{bottom:754.560267pt;}
.y215{bottom:754.883067pt;}
.y14d{bottom:755.462533pt;}
.y3ad{bottom:756.240800pt;}
.y6a{bottom:758.171733pt;}
.y314{bottom:758.986000pt;}
.ya5{bottom:759.111867pt;}
.y246{bottom:760.335600pt;}
.y36e{bottom:760.884000pt;}
.yde{bottom:762.929067pt;}
.y3a6{bottom:763.156533pt;}
.y27b{bottom:766.452533pt;}
.y17f{bottom:766.708667pt;}
.y1b4{bottom:766.929067pt;}
.y2a5{bottom:766.985867pt;}
.y114{bottom:767.288267pt;}
.y369{bottom:768.084000pt;}
.y29{bottom:769.226933pt;}
.y3c0{bottom:770.033467pt;}
.y1e9{bottom:770.708667pt;}
.y69{bottom:772.838400pt;}
.y214{bottom:774.129200pt;}
.y14c{bottom:774.708667pt;}
.y366{bottom:775.284000pt;}
.y313{bottom:775.519333pt;}
.y3a5{bottom:777.556533pt;}
.ya4{bottom:778.891333pt;}
.y17e{bottom:779.508667pt;}
.y113{bottom:780.088267pt;}
.y365{bottom:782.484000pt;}
.ydd{bottom:782.708667pt;}
.y2a4{bottom:782.985867pt;}
.y3ac{bottom:782.999867pt;}
.y1e8{bottom:783.242000pt;}
.y28{bottom:783.893600pt;}
.y213{bottom:786.395867pt;}
.y1b3{bottom:786.442000pt;}
.y14b{bottom:786.975333pt;}
.y68{bottom:787.505067pt;}
.y245{bottom:788.602267pt;}
.y36d{bottom:789.684000pt;}
.ya3{bottom:791.691333pt;}
.y3a4{bottom:791.956533pt;}
.y312{bottom:792.052667pt;}
.ydc{bottom:795.508667pt;}
.y112{bottom:796.088267pt;}
.y3bf{bottom:796.792533pt;}
.y368{bottom:796.884000pt;}
.y27{bottom:798.560267pt;}
.y1b2{bottom:798.975467pt;}
.y27a{bottom:798.985867pt;}
.y67{bottom:802.171733pt;}
.y1e7{bottom:802.754933pt;}
.y36c{bottom:804.084000pt;}
.y244{bottom:804.602267pt;}
.y212{bottom:805.642133pt;}
.y14a{bottom:806.221467pt;}
.y3a3{bottom:806.356533pt;}
.y311{bottom:808.586000pt;}
.y367{bottom:811.284000pt;}
.ya2{bottom:811.470800pt;}
.y111{bottom:812.088267pt;}
.y26{bottom:813.226933pt;}
.y279{bottom:814.985867pt;}
.ydb{bottom:815.288267pt;}
.y66{bottom:816.838400pt;}
.y211{bottom:817.908800pt;}
.y36b{bottom:818.484000pt;}
.y149{bottom:818.488133pt;}
.y1b1{bottom:818.488267pt;}
.y3a2{bottom:820.756533pt;}
.ya1{bottom:824.270800pt;}
.y310{bottom:825.119333pt;}
.yda{bottom:828.088267pt;}
.y278{bottom:830.985867pt;}
.y1b0{bottom:831.021600pt;}
.y65{bottom:831.505067pt;}
.y110{bottom:831.867733pt;}
.y1e6{bottom:834.801067pt;}
.y3a1{bottom:835.156533pt;}
.y25{bottom:835.452667pt;}
.y210{bottom:837.154933pt;}
.y148{bottom:837.734400pt;}
.y364{bottom:837.886933pt;}
.y243{bottom:838.202267pt;}
.y30f{bottom:841.652533pt;}
.ya0{bottom:844.050400pt;}
.yd9{bottom:844.088267pt;}
.y10f{bottom:844.667733pt;}
.y35f{bottom:845.086933pt;}
.y64{bottom:846.171733pt;}
.y277{bottom:846.985867pt;}
.y1e5{bottom:847.334400pt;}
.y17d{bottom:847.867733pt;}
.y20f{bottom:849.421600pt;}
.y3a0{bottom:849.556667pt;}
.y147{bottom:850.001067pt;}
.y24{bottom:850.119333pt;}
.y1af{bottom:850.534533pt;}
.y363{bottom:852.286933pt;}
.y9f{bottom:856.850400pt;}
.y30e{bottom:858.186000pt;}
.y35e{bottom:859.486933pt;}
.y17c{bottom:860.667733pt;}
.y63{bottom:860.838400pt;}
.y276{bottom:862.985867pt;}
.y1ae{bottom:863.067733pt;}
.yd8{bottom:863.867733pt;}
.y39f{bottom:863.956667pt;}
.y10e{bottom:864.447200pt;}
.y35b{bottom:866.686933pt;}
.y20e{bottom:868.667867pt;}
.y146{bottom:869.247200pt;}
.y23{bottom:872.345067pt;}
.y35a{bottom:873.886933pt;}
.y30d{bottom:874.719200pt;}
.y62{bottom:875.505067pt;}
.y242{bottom:876.602267pt;}
.y9e{bottom:876.630000pt;}
.yd7{bottom:876.667733pt;}
.y10d{bottom:877.247200pt;}
.y39e{bottom:878.356667pt;}
.y275{bottom:878.985867pt;}
.y17b{bottom:880.447200pt;}
.y20d{bottom:880.934533pt;}
.y360{bottom:881.086933pt;}
.y145{bottom:881.513867pt;}
.y1e4{bottom:882.580533pt;}
.y1ad{bottom:882.580667pt;}
.y22{bottom:887.011733pt;}
.y35d{bottom:888.286933pt;}
.y9d{bottom:889.430000pt;}
.y61{bottom:890.171733pt;}
.y30c{bottom:891.252667pt;}
.y39d{bottom:892.756533pt;}
.y17a{bottom:893.247200pt;}
.y274{bottom:894.985867pt;}
.y1e3{bottom:895.113867pt;}
.y1ac{bottom:895.114000pt;}
.y362{bottom:895.486933pt;}
.yd6{bottom:896.447200pt;}
.y144{bottom:896.980667pt;}
.y10c{bottom:897.026800pt;}
.y20c{bottom:900.180667pt;}
.y35c{bottom:902.686933pt;}
.y60{bottom:904.838400pt;}
.y9c{bottom:905.430000pt;}
.y39c{bottom:907.156667pt;}
.y30b{bottom:907.785867pt;}
.yd5{bottom:909.247200pt;}
.y10b{bottom:909.826800pt;}
.y361{bottom:909.886933pt;}
.y1ab{bottom:910.847333pt;}
.y273{bottom:910.985867pt;}
.y20b{bottom:912.447333pt;}
.y179{bottom:913.026800pt;}
.y1e2{bottom:914.626800pt;}
.y241{bottom:915.002267pt;}
.y143{bottom:916.226800pt;}
.y5f{bottom:919.505067pt;}
.y1d{bottom:920.123333pt;}
.y1e{bottom:920.123467pt;}
.y39b{bottom:921.556667pt;}
.y30a{bottom:924.319200pt;}
.y9b{bottom:925.209600pt;}
.y10a{bottom:925.826800pt;}
.y272{bottom:926.985867pt;}
.y1e1{bottom:927.160133pt;}
.y142{bottom:928.493467pt;}
.yd4{bottom:929.026800pt;}
.y359{bottom:929.290000pt;}
.y1aa{bottom:930.360133pt;}
.y20a{bottom:931.693467pt;}
.y5e{bottom:934.171733pt;}
.y39a{bottom:935.956667pt;}
.y357{bottom:936.490000pt;}
.y9a{bottom:938.009467pt;}
.y309{bottom:940.852667pt;}
.yd3{bottom:941.826800pt;}
.y1e0{bottom:942.893467pt;}
.y1a9{bottom:942.893600pt;}
.y271{bottom:942.985867pt;}
.y353{bottom:943.690000pt;}
.y141{bottom:943.960133pt;}
.y209{bottom:943.960267pt;}
.y109{bottom:945.606267pt;}
.y399{bottom:950.356667pt;}
.y356{bottom:950.890000pt;}
.y240{bottom:953.402267pt;}
.y5d{bottom:956.397467pt;}
.y308{bottom:957.385867pt;}
.y352{bottom:958.089867pt;}
.y108{bottom:958.406267pt;}
.y270{bottom:958.985867pt;}
.yd2{bottom:961.606267pt;}
.y1df{bottom:962.406267pt;}
.y1a8{bottom:962.406400pt;}
.y140{bottom:963.206267pt;}
.y208{bottom:963.206400pt;}
.y398{bottom:964.756533pt;}
.y34f{bottom:965.290000pt;}
.y99{bottom:966.911733pt;}
.y5c{bottom:971.064133pt;}
.y351{bottom:972.490000pt;}
.y307{bottom:973.919333pt;}
.yd1{bottom:974.406267pt;}
.y1de{bottom:974.939600pt;}
.y1a7{bottom:974.939733pt;}
.y26f{bottom:974.985867pt;}
.y13f{bottom:975.472933pt;}
.y207{bottom:975.473067pt;}
.y178{bottom:978.185867pt;}
.y397{bottom:979.156667pt;}
.y355{bottom:979.690000pt;}
.y1c{bottom:980.668800pt;}
.y350{bottom:986.890000pt;}
.y306{bottom:990.452533pt;}
.y177{bottom:990.985867pt;}
.y23f{bottom:991.802267pt;}
.y5b{bottom:993.289867pt;}
.y396{bottom:993.556667pt;}
.y354{bottom:994.089867pt;}
.yd0{bottom:994.185867pt;}
.y1a6{bottom:994.452533pt;}
.y13e{bottom:994.719200pt;}
.y358{bottom:1001.290000pt;}
.ycf{bottom:1006.985867pt;}
.y5a{bottom:1007.956533pt;}
.y395{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;}
.hf{height:31.270833pt;}
.h5{height:34.944000pt;}
.hc{height:34.945312pt;}
.hb{height:34.968750pt;}
.hd{height:35.156250pt;}
.h1c{height:35.179688pt;}
.h15{height:38.854167pt;}
.h14{height:39.088542pt;}
.h1e{height:40.548620pt;}
.h21{height:40.549153pt;}
.h1a{height:42.739583pt;}
.h25{height:42.968750pt;}
.h1b{height:42.997396pt;}
.h3{height:44.875000pt;}
.h12{height:46.592000pt;}
.ha{height:46.593750pt;}
.h24{height:46.625000pt;}
.h4{height:54.395833pt;}
.h1f{height:63.745313pt;}
.h22{height:63.956250pt;}
.h10{height:67.905899pt;}
.h17{height:75.677083pt;}
.h1d{height:75.677617pt;}
.h23{height:75.687500pt;}
.h19{height:89.750000pt;}
.h18{height:90.812500pt;}
.h20{height:92.545313pt;}
.h11{height:113.515625pt;}
.h9{height:146.923601pt;}
.h13{height:179.500000pt;}
.h6{height:186.368000pt;}
.h7{height:187.625000pt;}
.h2{height:201.541461pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1f{left:-593.540133pt;}
.x0{left:0.000000pt;}
.x18{left:60.472400pt;}
.x23{left:62.740133pt;}
.x1b{left:64.251867pt;}
.x41{left:65.805733pt;}
.x19{left:68.409467pt;}
.x3c{left:77.493200pt;}
.xd{left:87.140000pt;}
.x42{left:90.372667pt;}
.xc{left:92.976400pt;}
.x29{left:94.728800pt;}
.x24{left:98.267733pt;}
.x2{left:113.007733pt;}
.x6{left:114.054933pt;}
.x5{left:117.663333pt;}
.x2c{left:121.238800pt;}
.x1e{left:124.724400pt;}
.x2a{left:147.557733pt;}
.x48{left:153.196800pt;}
.x4a{left:158.740133pt;}
.x51{left:165.419600pt;}
.x4f{left:176.154533pt;}
.x50{left:188.794533pt;}
.x1d{left:190.753733pt;}
.x43{left:193.364800pt;}
.x4e{left:196.117200pt;}
.xa{left:200.262800pt;}
.x2d{left:213.207333pt;}
.x3d{left:219.821467pt;}
.x47{left:224.457067pt;}
.x4c{left:238.849867pt;}
.x37{left:246.881733pt;}
.x39{left:251.223600pt;}
.x1{left:260.031467pt;}
.x4b{left:266.238533pt;}
.x3b{left:270.483333pt;}
.x35{left:273.703067pt;}
.x52{left:278.842667pt;}
.x34{left:281.572267pt;}
.x32{left:284.589867pt;}
.x36{left:288.914000pt;}
.x31{left:296.932533pt;}
.x33{left:302.261733pt;}
.x4{left:303.622000pt;}
.x38{left:307.051733pt;}
.x30{left:315.515600pt;}
.x44{left:322.031600pt;}
.x3a{left:323.261733pt;}
.x4d{left:332.612933pt;}
.x49{left:338.550133pt;}
.x3e{left:348.488133pt;}
.x3{left:354.850800pt;}
.x2e{left:366.908133pt;}
.x45{left:456.986933pt;}
.x3f{left:483.443600pt;}
.x20{left:497.536000pt;}
.x12{left:502.677200pt;}
.x11{left:503.676267pt;}
.x14{left:508.973067pt;}
.xe{left:512.688000pt;}
.x13{left:515.699600pt;}
.x15{left:520.691867pt;}
.x17{left:522.323733pt;}
.x26{left:527.964933pt;}
.x1c{left:530.610533pt;}
.x16{left:539.688000pt;}
.x9{left:543.490933pt;}
.x2f{left:544.545867pt;}
.x7{left:547.444133pt;}
.x10{left:551.351067pt;}
.x8{left:558.504000pt;}
.xf{left:583.047333pt;}
.x46{left:589.270400pt;}
.xb{left:598.048667pt;}
.x2b{left:604.775733pt;}
.x40{left:615.727067pt;}
.x27{left:683.732000pt;}
.x25{left:691.411867pt;}
.x22{left:699.091733pt;}
.x28{left:750.191067pt;}
.x21{left:760.562133pt;}
.x1a{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; }
  