
    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_740df723d117440e823eb3bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_7d0cc4738e327a5b776e95ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_b1f0fc7e6c3e9fd93ae98cf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104980;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_b6b7fa85e94e517617784abf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_b33ef036ed275e0d22c72b9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;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_d6ae2306d2e3ae57eddd0928.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_d370930d4bd7c782b0b3b045.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113281;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_f373967d0f8c88dbff6b8fb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_59c855e362c86923edbda9bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_2757810739f7d999236f473b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_65956cc6ba0ff7368107e651.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_2847aedac6e447156034d604.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_1200d549dceee76c75682b9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.113281;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_7d5455dea4feb8e0bb07c7e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942383;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_30b7c9a403bbec0f1ea105f6.woff2')format("woff");}.fff{font-family:fff;line-height:0.934570;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_1de4d1c91661230b42d1336c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.104980;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_c18862decc3e1a8f408931c2.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e2964cdc94d16beae1909dbf.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.111816;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_959b337afb9f4f84a988e12c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.106934;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_2425023629710c8d8c4622e0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.106934;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_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_80f53e5e8450902796b44b78.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.111816;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_b2b94ebcb01787f0fa89112f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.935547;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_5509d4e675632590cbcfa140.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.935547;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_492b6029e2367265399e397a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.106934;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_f019da3e2606ed2551d1478a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.111816;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_d396ce18ccdbb1d442daabce.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.106934;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_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7b72eabdbcc50ed13abf7f90.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.111816;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_e13d5b2bc057f2b7792d2a69.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.935547;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_ab14d905dfe916e24f28b6a1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.106934;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_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_340b7509b23768a241100baa.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.111816;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_b0e6cb13bd281cc60aaba53a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.935547;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_25028b6172085822721ff32b.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.111816;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_fc9501b666ca5406749d44c2.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.111816;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_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_7b9ee01520962924ba86b695.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.111816;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_b748a7972b0c4cf43525c649.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.106934;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_50e64372c06d6e3d01fd4020.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.111816;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_796a13581e602418a8648fa3.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.106934;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_b718d1e1d975e40539e2b3f3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.106934;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_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_70f48282d3d72274e6ed0b99.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.111816;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_3a6306ce5bbb9dd615ddfb76.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.111816;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_50e64372c06d6e3d01fd4020.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.111816;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_676cceac463f1184bd77e87d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.106934;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_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_b3ae9c29acdc863b07d86e2e.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.106934;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:ff32;src:url('chunks/assets/font_0a75e02b3c137e68124f0df9.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_50e64372c06d6e3d01fd4020.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.111816;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:ff34;src:url('chunks/assets/font_7f35ed41da325e74a8d2c5a8.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.106934;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:ff35;src:url('chunks/assets/font_59a6b1dadfc57dad6c8c55a4.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_825b9b650fb23b03039546a2.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.106934;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:ff37;src:url('chunks/assets/font_a07fed016c64817d78a4c192.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_2cef7f8c2bdc9fd15ccf1c67.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.111816;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-30.240000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.126000px;}
.v1{vertical-align:19.982400px;}
.v2{vertical-align:30.319440px;}
.ls1{letter-spacing:-4.440000px;}
.ls43{letter-spacing:-3.552000px;}
.ls36{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-1.075680px;}
.ls3f{letter-spacing:-0.916560px;}
.ls2{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.482400px;}
.ls26{letter-spacing:-0.434160px;}
.ls15{letter-spacing:-0.418320px;}
.ls11{letter-spacing:-0.378000px;}
.ls28{letter-spacing:-0.358560px;}
.ls40{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.298800px;}
.ls46{letter-spacing:-0.288000px;}
.ls21{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.239040px;}
.ls39{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.192960px;}
.ls37{letter-spacing:-0.162000px;}
.ls23{letter-spacing:-0.119520px;}
.ls3{letter-spacing:-0.060000px;}
.ls50{letter-spacing:-0.059760px;}
.ls38{letter-spacing:-0.054000px;}
.ls35{letter-spacing:-0.038880px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.048240px;}
.ls6{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.113400px;}
.ls16{letter-spacing:0.119520px;}
.ls1d{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.162000px;}
.ls4c{letter-spacing:0.179280px;}
.ls17{letter-spacing:0.239040px;}
.ls1c{letter-spacing:0.264960px;}
.ls3b{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.289440px;}
.ls4b{letter-spacing:0.298800px;}
.ls48{letter-spacing:0.358560px;}
.ls31{letter-spacing:0.378000px;}
.ls22{letter-spacing:0.537840px;}
.ls1e{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.597600px;}
.ls44{letter-spacing:0.637680px;}
.ls3e{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.657360px;}
.ls45{letter-spacing:0.668640px;}
.ls1a{letter-spacing:0.680640px;}
.ls3c{letter-spacing:0.709680px;}
.ls34{letter-spacing:0.738720px;}
.ls4{letter-spacing:0.756000px;}
.ls47{letter-spacing:0.956160px;}
.ls4a{letter-spacing:1.015920px;}
.ls4f{letter-spacing:1.314720px;}
.ls9{letter-spacing:1.374480px;}
.ls7{letter-spacing:2.091600px;}
.ls33{letter-spacing:2.808000px;}
.ls2b{letter-spacing:2.808720px;}
.ls30{letter-spacing:3.510000px;}
.lsa{letter-spacing:3.525840px;}
.ls2c{letter-spacing:4.242960px;}
.ls32{letter-spacing:4.266000px;}
.ls18{letter-spacing:4.960080px;}
.ls4e{letter-spacing:5.677200px;}
.ls25{letter-spacing:5.796720px;}
.ls2a{letter-spacing:6.454080px;}
.ls3d{letter-spacing:7.128000px;}
.ls8{letter-spacing:7.171200px;}
.lsb{letter-spacing:7.888320px;}
.lsc{letter-spacing:8.605440px;}
.ls29{letter-spacing:9.322560px;}
.ls1f{letter-spacing:10.746000px;}
.lse{letter-spacing:11.473920px;}
.ls2f{letter-spacing:12.191040px;}
.ls49{letter-spacing:12.908160px;}
.ls2d{letter-spacing:13.625280px;}
.ls52{letter-spacing:16.493760px;}
.ls24{letter-spacing:17.210880px;}
.ls41{letter-spacing:19.362240px;}
.ls2e{letter-spacing:20.796480px;}
.lsf{letter-spacing:20.856240px;}
.ls51{letter-spacing:24.441840px;}
.ls4d{letter-spacing:24.561360px;}
.ls1b{letter-spacing:27.310320px;}
.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;}
}
.wsa7{word-spacing:-17.928000px;}
.ws4c{word-spacing:-17.151120px;}
.ws9e{word-spacing:-16.971840px;}
.wsa6{word-spacing:-16.912080px;}
.ws67{word-spacing:-16.852320px;}
.wsa1{word-spacing:-16.792560px;}
.ws26{word-spacing:-16.732800px;}
.ws1{word-spacing:-16.680000px;}
.ws1d{word-spacing:-16.620000px;}
.ws25{word-spacing:-16.613280px;}
.wsa8{word-spacing:-16.553520px;}
.ws4e{word-spacing:-16.493760px;}
.ws24{word-spacing:-16.374240px;}
.ws23{word-spacing:-16.314480px;}
.wsb1{word-spacing:-16.194960px;}
.ws8e{word-spacing:-13.458960px;}
.ws90{word-spacing:-13.410720px;}
.ws66{word-spacing:-13.217760px;}
.ws82{word-spacing:-12.494160px;}
.ws4f{word-spacing:-12.312000px;}
.ws6{word-spacing:-12.240000px;}
.ws70{word-spacing:-12.150000px;}
.ws4b{word-spacing:-12.042000px;}
.ws83{word-spacing:-11.988000px;}
.ws6e{word-spacing:-11.547360px;}
.ws4d{word-spacing:-10.808640px;}
.ws6f{word-spacing:-10.769760px;}
.ws8f{word-spacing:-9.792000px;}
.ws1a{word-spacing:-9.724440px;}
.ws94{word-spacing:-7.920000px;}
.ws18{word-spacing:-7.800000px;}
.ws27{word-spacing:-4.320000px;}
.ws1c{word-spacing:-3.420000px;}
.ws5{word-spacing:-3.300000px;}
.ws9{word-spacing:-2.970000px;}
.ws1f{word-spacing:-2.400000px;}
.wse{word-spacing:-2.160000px;}
.ws17{word-spacing:-1.860000px;}
.ws15{word-spacing:-1.560000px;}
.wsb{word-spacing:-1.500000px;}
.ws12{word-spacing:-1.320000px;}
.wsd{word-spacing:-1.140000px;}
.ws7{word-spacing:-1.080000px;}
.ws11{word-spacing:-1.020000px;}
.ws14{word-spacing:-0.972000px;}
.ws22{word-spacing:-0.960000px;}
.wsa3{word-spacing:-0.776880px;}
.ws28{word-spacing:-0.756000px;}
.ws8{word-spacing:-0.660000px;}
.ws35{word-spacing:-0.657360px;}
.ws16{word-spacing:-0.600000px;}
.ws19{word-spacing:-0.540000px;}
.wsa9{word-spacing:-0.537840px;}
.wsa{word-spacing:-0.480000px;}
.ws20{word-spacing:-0.420000px;}
.ws1b{word-spacing:-0.360000px;}
.ws84{word-spacing:-0.241200px;}
.wsf{word-spacing:-0.240000px;}
.wsae{word-spacing:-0.239040px;}
.ws7c{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.180000px;}
.ws2b{word-spacing:-0.162000px;}
.ws10{word-spacing:-0.156000px;}
.ws7f{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.132480px;}
.wsc{word-spacing:-0.120000px;}
.ws29{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.wsb5{word-spacing:0.059760px;}
.ws1e{word-spacing:0.060000px;}
.ws86{word-spacing:0.119520px;}
.ws69{word-spacing:0.192960px;}
.ws7e{word-spacing:0.216000px;}
.ws61{word-spacing:0.239040px;}
.ws98{word-spacing:0.241200px;}
.ws9d{word-spacing:0.288000px;}
.ws31{word-spacing:0.298800px;}
.wsa5{word-spacing:0.337680px;}
.ws6d{word-spacing:0.358560px;}
.ws2a{word-spacing:0.378000px;}
.ws3e{word-spacing:0.418320px;}
.ws9c{word-spacing:0.432000px;}
.ws50{word-spacing:0.434160px;}
.ws55{word-spacing:0.478080px;}
.ws68{word-spacing:0.482400px;}
.ws7d{word-spacing:0.594000px;}
.ws3f{word-spacing:0.597600px;}
.ws7b{word-spacing:1.080000px;}
.ws41{word-spacing:1.195200px;}
.ws30{word-spacing:1.254960px;}
.ws2f{word-spacing:1.314720px;}
.ws40{word-spacing:1.553760px;}
.ws91{word-spacing:1.613520px;}
.ws2c{word-spacing:1.912320px;}
.ws92{word-spacing:1.972080px;}
.ws3a{word-spacing:2.031840px;}
.ws8a{word-spacing:2.052000px;}
.ws32{word-spacing:2.689200px;}
.ws37{word-spacing:2.748960px;}
.ws81{word-spacing:2.754000px;}
.ws36{word-spacing:3.047760px;}
.ws76{word-spacing:3.346560px;}
.ws34{word-spacing:3.406320px;}
.ws7a{word-spacing:3.456000px;}
.ws6c{word-spacing:3.466080px;}
.ws93{word-spacing:3.552000px;}
.ws45{word-spacing:4.123440px;}
.ws3b{word-spacing:4.183200px;}
.ws80{word-spacing:4.212000px;}
.ws8d{word-spacing:4.422240px;}
.ws33{word-spacing:4.541760px;}
.ws5c{word-spacing:4.840560px;}
.ws56{word-spacing:4.900320px;}
.wsa0{word-spacing:5.497920px;}
.ws8c{word-spacing:5.557680px;}
.ws4a{word-spacing:5.617440px;}
.ws74{word-spacing:6.274800px;}
.ws57{word-spacing:6.394320px;}
.wsb3{word-spacing:6.573600px;}
.ws89{word-spacing:6.912000px;}
.ws88{word-spacing:6.966000px;}
.ws2e{word-spacing:6.991920px;}
.wsad{word-spacing:7.051680px;}
.ws87{word-spacing:7.074000px;}
.ws2d{word-spacing:7.111440px;}
.ws8b{word-spacing:7.230960px;}
.ws54{word-spacing:7.709040px;}
.ws6b{word-spacing:7.768800px;}
.ws38{word-spacing:7.828560px;}
.ws39{word-spacing:8.007840px;}
.wsb2{word-spacing:8.067600px;}
.ws9f{word-spacing:8.366400px;}
.ws3c{word-spacing:8.426160px;}
.wsaf{word-spacing:8.485920px;}
.ws3d{word-spacing:8.545680px;}
.ws71{word-spacing:9.143280px;}
.wsa2{word-spacing:9.203040px;}
.ws72{word-spacing:9.262800px;}
.ws5e{word-spacing:9.860400px;}
.ws58{word-spacing:9.979920px;}
.ws49{word-spacing:10.577520px;}
.ws48{word-spacing:10.637280px;}
.ws64{word-spacing:10.638000px;}
.ws65{word-spacing:10.692000px;}
.ws5a{word-spacing:10.697040px;}
.ws5b{word-spacing:10.816560px;}
.ws44{word-spacing:11.294640px;}
.ws42{word-spacing:11.414160px;}
.ws78{word-spacing:12.011760px;}
.ws79{word-spacing:12.071520px;}
.ws43{word-spacing:12.131280px;}
.ws9b{word-spacing:12.728880px;}
.ws97{word-spacing:12.848400px;}
.wsac{word-spacing:13.446000px;}
.ws77{word-spacing:13.565520px;}
.ws96{word-spacing:14.282640px;}
.ws95{word-spacing:14.461920px;}
.ws5d{word-spacing:14.999760px;}
.ws75{word-spacing:15.716880px;}
.wsb4{word-spacing:16.434000px;}
.ws6a{word-spacing:17.031600px;}
.wsa4{word-spacing:17.091360px;}
.ws59{word-spacing:17.151120px;}
.ws52{word-spacing:18.525600px;}
.ws51{word-spacing:18.585360px;}
.ws9a{word-spacing:19.242720px;}
.ws99{word-spacing:19.302480px;}
.ws2{word-spacing:19.800000px;}
.ws53{word-spacing:20.019600px;}
.ws47{word-spacing:20.796480px;}
.ws85{word-spacing:22.828320px;}
.ws73{word-spacing:22.947840px;}
.ws60{word-spacing:23.545440px;}
.ws5f{word-spacing:23.664960px;}
.wsaa{word-spacing:24.262560px;}
.wsab{word-spacing:24.382080px;}
.wsb0{word-spacing:27.190800px;}
.ws62{word-spacing:27.250560px;}
.ws21{word-spacing:30.600000px;}
.ws46{word-spacing:31.553280px;}
.ws4{word-spacing:39.120000px;}
.ws3{word-spacing:55.020000px;}
._e{margin-left:-11.790720px;}
._a{margin-left:-7.758000px;}
._5{margin-left:-6.642000px;}
._8{margin-left:-5.598600px;}
._3{margin-left:-4.398000px;}
._1{margin-left:-3.330000px;}
._2{margin-left:-2.226000px;}
._0{margin-left:-1.086000px;}
._6{width:1.044000px;}
._9{width:2.226000px;}
._4{width:3.342000px;}
._7{width:4.452000px;}
._d{width:6.095520px;}
._10{width:7.152480px;}
._f{width:8.250480px;}
._14{width:9.290880px;}
._b{width:10.879920px;}
._13{width:11.959680px;}
._11{width:13.386240px;}
._12{width:14.739840px;}
._16{width:24.536880px;}
._15{width:27.903840px;}
._c{width:847.516320px;}
.fc4{color:rgb(112,173,71);}
.fc3{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.980000px;}
.fsc{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:78.000000px;}
.fs7{font-size:108.000000px;}
.y240{bottom:-29.776800px;}
.y19c{bottom:-29.551500px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.543300px;}
.y19b{bottom:110.551500px;}
.y57{bottom:134.311200px;}
.y220{bottom:139.241850px;}
.y1c7{bottom:139.359000px;}
.y16c{bottom:139.693350px;}
.y238{bottom:143.136000px;}
.y23d{bottom:145.606320px;}
.y285{bottom:147.590220px;}
.y251{bottom:151.547940px;}
.y2a1{bottom:153.829980px;}
.y21f{bottom:154.712850px;}
.y56{bottom:155.911200px;}
.y1c6{bottom:158.610000px;}
.y2c9{bottom:159.818220px;}
.y23c{bottom:162.164700px;}
.y237{bottom:167.610000px;}
.y250{bottom:168.106320px;}
.y284{bottom:168.282120px;}
.y16a{bottom:169.273350px;}
.yd1{bottom:169.981950px;}
.y21e{bottom:173.977350px;}
.y2a0{bottom:174.536820px;}
.y139{bottom:176.359950px;}
.y55{bottom:176.911200px;}
.y1ff{bottom:179.305500px;}
.y2c8{bottom:180.704340px;}
.y1c5{bottom:183.090000px;}
.y24f{bottom:184.664700px;}
.y169{bottom:185.472750px;}
.y16b{bottom:185.473350px;}
.y23b{bottom:185.741760px;}
.yd0{bottom:186.181350px;}
.yd2{bottom:186.181950px;}
.y7b{bottom:187.981950px;}
.y11d{bottom:188.508300px;}
.y283{bottom:188.988960px;}
.y236{bottom:192.090000px;}
.y138{bottom:192.559500px;}
.y13a{bottom:192.559950px;}
.y1d3{bottom:193.069980px;}
.y269{bottom:194.672850px;}
.y29f{bottom:195.243660px;}
.y54{bottom:197.911200px;}
.y21d{bottom:198.457350px;}
.y1fe{bottom:198.570000px;}
.y168{bottom:203.472750px;}
.ya0{bottom:204.181350px;}
.y7a{bottom:204.181500px;}
.y7c{bottom:204.181950px;}
.y11c{bottom:204.707850px;}
.y11e{bottom:204.708300px;}
.y235{bottom:205.590000px;}
.ybd{bottom:207.115800px;}
.y1c4{bottom:207.570000px;}
.y24e{bottom:208.167420px;}
.y282{bottom:209.695800px;}
.y2c7{bottom:210.405060px;}
.y137{bottom:210.559500px;}
.y21c{bottom:211.957350px;}
.y1d2{bottom:213.776820px;}
.y268{bottom:213.937350px;}
.y29e{bottom:215.950500px;}
.y53{bottom:218.911200px;}
.y1c3{bottom:221.070000px;}
.y1fd{bottom:223.050000px;}
.ybc{bottom:223.315350px;}
.ybe{bottom:223.315800px;}
.y267{bottom:227.437350px;}
.y2c6{bottom:231.111900px;}
.y166{bottom:233.052750px;}
.yc8{bottom:233.761350px;}
.y78{bottom:233.761500px;}
.y11a{bottom:234.287850px;}
.y1d1{bottom:234.483660px;}
.y29d{bottom:236.657340px;}
.y1f{bottom:239.095350px;}
.y281{bottom:239.396520px;}
.y52{bottom:239.911200px;}
.y135{bottom:240.139500px;}
.y266{bottom:246.849990px;}
.y1fc{bottom:247.530000px;}
.y165{bottom:249.252300px;}
.y167{bottom:249.252750px;}
.yc7{bottom:249.960900px;}
.y77{bottom:249.961050px;}
.yc9{bottom:249.961350px;}
.y79{bottom:249.961500px;}
.y119{bottom:250.487400px;}
.y11b{bottom:250.487850px;}
.y21b{bottom:251.350710px;}
.y2c5{bottom:251.624520px;}
.y9e{bottom:251.761350px;}
.y196{bottom:252.703980px;}
.yba{bottom:252.895350px;}
.y1d0{bottom:255.190500px;}
.y234{bottom:255.610740px;}
.y134{bottom:256.339050px;}
.y136{bottom:256.339500px;}
.y1e{bottom:257.095350px;}
.y29c{bottom:257.364180px;}
.y280{bottom:260.103360px;}
.y51{bottom:260.911200px;}
.yf1{bottom:263.454450px;}
.y164{bottom:267.252300px;}
.y265{bottom:267.556830px;}
.y9d{bottom:267.960900px;}
.y76{bottom:267.961050px;}
.y9f{bottom:267.961350px;}
.y118{bottom:268.487400px;}
.yb9{bottom:269.094900px;}
.ybb{bottom:269.095350px;}
.y1c2{bottom:271.989480px;}
.y21a{bottom:272.057550px;}
.y1fb{bottom:272.190000px;}
.y133{bottom:274.339050px;}
.y1d{bottom:275.095350px;}
.y1cf{bottom:275.897340px;}
.y233{bottom:276.496860px;}
.y29b{bottom:278.071020px;}
.yf0{bottom:279.654000px;}
.yf2{bottom:279.654450px;}
.y27f{bottom:280.810200px;}
.y2c4{bottom:281.504520px;}
.y50{bottom:281.911200px;}
.y195{bottom:282.583980px;}
.yb8{bottom:287.094900px;}
.y264{bottom:288.263670px;}
.y1c1{bottom:292.696320px;}
.y219{bottom:292.764390px;}
.y1c{bottom:293.095350px;}
.y1ce{bottom:296.604180px;}
.y1fa{bottom:296.670000px;}
.y162{bottom:296.832300px;}
.y232{bottom:297.009480px;}
.y9b{bottom:297.540900px;}
.y116{bottom:298.067400px;}
.y29a{bottom:298.777860px;}
.y27e{bottom:301.322820px;}
.y2c3{bottom:302.211360px;}
.y4f{bottom:302.911200px;}
.y263{bottom:308.970510px;}
.yee{bottom:309.234000px;}
.y1b{bottom:311.095350px;}
.y194{bottom:312.284700px;}
.y161{bottom:313.031850px;}
.y163{bottom:313.032300px;}
.y1c0{bottom:313.403160px;}
.y218{bottom:313.471230px;}
.y9a{bottom:313.740450px;}
.y9c{bottom:313.740900px;}
.y115{bottom:314.266800px;}
.y117{bottom:314.267400px;}
.yce{bottom:315.540900px;}
.y74{bottom:315.541050px;}
.yb6{bottom:316.674900px;}
.y1cd{bottom:317.311020px;}
.y231{bottom:317.716320px;}
.y299{bottom:319.484700px;}
.y1f9{bottom:321.150000px;}
.y131{bottom:321.919050px;}
.y27d{bottom:322.029660px;}
.y2c2{bottom:322.723980px;}
.y4e{bottom:323.911200px;}
.yed{bottom:325.433400px;}
.yef{bottom:325.434000px;}
.y1a{bottom:329.095350px;}
.y262{bottom:329.677350px;}
.y160{bottom:331.031850px;}
.y99{bottom:331.740450px;}
.y73{bottom:331.740600px;}
.ycf{bottom:331.740900px;}
.y75{bottom:331.741050px;}
.y114{bottom:332.266800px;}
.yb7{bottom:332.874900px;}
.yb5{bottom:332.881200px;}
.y1bf{bottom:334.104600px;}
.y217{bottom:334.323870px;}
.y1cc{bottom:338.017860px;}
.y130{bottom:338.118450px;}
.y132{bottom:338.119050px;}
.y230{bottom:338.423160px;}
.y1f8{bottom:341.845500px;}
.y193{bottom:341.923320px;}
.y27c{bottom:342.736500px;}
.yec{bottom:343.433400px;}
.y4d{bottom:344.911200px;}
.y19{bottom:347.095350px;}
.y298{bottom:350.624700px;}
.yb4{bottom:350.881200px;}
.y2c1{bottom:352.424700px;}
.y216{bottom:354.836490px;}
.y1be{bottom:354.990720px;}
.y1cb{bottom:358.724700px;}
.y22f{bottom:359.082840px;}
.y1f7{bottom:361.110000px;}
.yc5{bottom:361.320450px;}
.y192{bottom:362.630160px;}
.y27b{bottom:363.443340px;}
.y18{bottom:365.095350px;}
.y4c{bottom:365.911200px;}
.y261{bottom:367.117350px;}
.yea{bottom:373.013400px;}
.y2c0{bottom:373.304700px;}
.y1f6{bottom:374.610000px;}
.y1bd{bottom:375.503340px;}
.y215{bottom:375.543330px;}
.yc4{bottom:377.520000px;}
.yc6{bottom:377.520450px;}
.y15e{bottom:378.611850px;}
.y97{bottom:379.320450px;}
.y71{bottom:379.320600px;}
.y22e{bottom:379.834500px;}
.y112{bottom:379.846800px;}
.y297{bottom:383.249700px;}
.y191{bottom:383.381820px;}
.y260{bottom:383.723970px;}
.y27a{bottom:384.195000px;}
.y12e{bottom:385.698600px;}
.y4b{bottom:386.911200px;}
.ye9{bottom:389.212950px;}
.yeb{bottom:389.213400px;}
.y2bf{bottom:393.869700px;}
.y15d{bottom:394.811400px;}
.y15f{bottom:394.811850px;}
.y70{bottom:395.520000px;}
.y98{bottom:395.520450px;}
.y72{bottom:395.520600px;}
.y111{bottom:396.046350px;}
.y113{bottom:396.046800px;}
.y1ca{bottom:396.211320px;}
.y1bc{bottom:396.213960px;}
.y214{bottom:396.294990px;}
.y1f5{bottom:399.128160px;}
.y25f{bottom:400.282350px;}
.y17{bottom:401.095350px;}
.y12d{bottom:401.898000px;}
.y12f{bottom:401.898450px;}
.y190{bottom:404.088660px;}
.ye8{bottom:407.212950px;}
.y4a{bottom:407.911200px;}
.y22d{bottom:409.535220px;}
.y1c9{bottom:412.769700px;}
.y1bb{bottom:416.920800px;}
.y213{bottom:417.001830px;}
.ya3{bottom:418.641750px;}
.y16{bottom:419.095350px;}
.y1f4{bottom:419.807640px;}
.y296{bottom:420.511320px;}
.y279{bottom:421.636620px;}
.y2be{bottom:423.569700px;}
.y25e{bottom:423.643230px;}
.y18f{bottom:424.795500px;}
.y95{bottom:425.100000px;}
.y10f{bottom:425.626350px;}
.y49{bottom:428.911200px;}
.y22c{bottom:430.242060px;}
.y12b{bottom:431.478000px;}
.y1c8{bottom:436.169700px;}
.y295{bottom:437.069700px;}
.y15{bottom:437.095350px;}
.y212{bottom:437.708670px;}
.y1ba{bottom:437.806920px;}
.y278{bottom:438.195000px;}
.y1f3{bottom:440.514480px;}
.y94{bottom:441.299550px;}
.y96{bottom:441.300000px;}
.y10e{bottom:441.825900px;}
.y110{bottom:441.826350px;}
.ya2{bottom:442.041750px;}
.y15b{bottom:442.391400px;}
.ycd{bottom:443.100000px;}
.y6e{bottom:443.100150px;}
.y2bd{bottom:444.449700px;}
.y18e{bottom:445.502340px;}
.y12a{bottom:447.677550px;}
.y12c{bottom:447.678000px;}
.y48{bottom:449.911200px;}
.y22b{bottom:450.948900px;}
.ye6{bottom:454.792950px;}
.y211{bottom:458.415510px;}
.y15a{bottom:458.590950px;}
.y15c{bottom:458.591400px;}
.y6d{bottom:459.299550px;}
.y6f{bottom:459.300000px;}
.y10d{bottom:459.825900px;}
.y294{bottom:461.009700px;}
.y1f2{bottom:461.221320px;}
.y277{bottom:462.315000px;}
.ya1{bottom:465.441900px;}
.y129{bottom:465.677550px;}
.y18d{bottom:466.209180px;}
.y1b9{bottom:467.328360px;}
.y47{bottom:470.911200px;}
.ye5{bottom:470.992500px;}
.ye7{bottom:470.992950px;}
.y22a{bottom:471.835020px;}
.y2bc{bottom:474.149700px;}
.y210{bottom:479.122350px;}
.y1f1{bottom:481.928160px;}
.y18c{bottom:486.916020px;}
.y1b8{bottom:488.035200px;}
.y6b{bottom:488.879550px;}
.y46{bottom:491.911200px;}
.y229{bottom:492.541860px;}
.ye3{bottom:500.572500px;}
.y1f0{bottom:502.635000px;}
.y2bb{bottom:503.841420px;}
.y6a{bottom:505.079100px;}
.y6c{bottom:505.079550px;}
.y158{bottom:506.170950px;}
.ycb{bottom:506.879550px;}
.y10b{bottom:507.405900px;}
.y18b{bottom:507.622860px;}
.y1b7{bottom:508.742040px;}
.y20f{bottom:509.002350px;}
.y45{bottom:512.911200px;}
.y228{bottom:513.054480px;}
.y127{bottom:513.257550px;}
.ye2{bottom:516.772050px;}
.ye4{bottom:516.772500px;}
.y157{bottom:522.370500px;}
.y159{bottom:522.370950px;}
.y69{bottom:523.079100px;}
.ycc{bottom:523.079550px;}
.y10a{bottom:523.605450px;}
.y10c{bottom:523.605900px;}
.y18a{bottom:528.329700px;}
.y1b6{bottom:529.448880px;}
.y126{bottom:529.457100px;}
.y128{bottom:529.457550px;}
.y1ef{bottom:532.314480px;}
.y2ba{bottom:533.362860px;}
.y227{bottom:533.761320px;}
.y44{bottom:533.911200px;}
.ye1{bottom:534.772050px;}
.y20e{bottom:539.962350px;}
.y14{bottom:545.095350px;}
.y189{bottom:549.569700px;}
.y1b5{bottom:550.315140px;}
.yc2{bottom:552.659100px;}
.y1ee{bottom:553.021320px;}
.yb2{bottom:553.651200px;}
.y2b9{bottom:554.069700px;}
.y226{bottom:554.468160px;}
.y43{bottom:554.911200px;}
.y13{bottom:563.095350px;}
.ydf{bottom:564.352050px;}
.y2a{bottom:565.927050px;}
.yc1{bottom:568.858650px;}
.yc3{bottom:568.859100px;}
.yb1{bottom:569.849700px;}
.yb3{bottom:569.851200px;}
.y155{bottom:569.950500px;}
.y67{bottom:570.659100px;}
.y1b4{bottom:571.021980px;}
.y108{bottom:571.185450px;}
.y20d{bottom:572.542350px;}
.y1ed{bottom:573.728160px;}
.y225{bottom:575.175000px;}
.y42{bottom:575.911200px;}
.y125{bottom:577.037100px;}
.yde{bottom:580.551600px;}
.ye0{bottom:580.552050px;}
.y12{bottom:581.095350px;}
.y188{bottom:583.001040px;}
.y2b8{bottom:585.209700px;}
.y154{bottom:586.150050px;}
.y156{bottom:586.150500px;}
.y66{bottom:586.858650px;}
.y68{bottom:586.859100px;}
.y107{bottom:587.385000px;}
.y109{bottom:587.385450px;}
.y29{bottom:587.527200px;}
.y1b3{bottom:591.534600px;}
.y124{bottom:593.237100px;}
.y1ec{bottom:594.421440px;}
.y41{bottom:596.911200px;}
.ydd{bottom:598.551600px;}
.y11{bottom:599.095350px;}
.y20c{bottom:609.803970px;}
.y1b2{bottom:612.241440px;}
.y224{bottom:612.616620px;}
.y187{bottom:612.701760px;}
.y1eb{bottom:615.128280px;}
.y152{bottom:615.730050px;}
.y120{bottom:616.438650px;}
.y105{bottom:616.965000px;}
.y10{bottom:617.095350px;}
.y2b7{bottom:617.687040px;}
.y40{bottom:617.911200px;}
.yaf{bottom:625.934700px;}
.y20b{bottom:626.362350px;}
.y223{bottom:629.175000px;}
.y28{bottom:630.727050px;}
.y151{bottom:631.929450px;}
.y153{bottom:631.930050px;}
.y121{bottom:632.638050px;}
.y11f{bottom:632.638650px;}
.y1b1{bottom:632.978160px;}
.y104{bottom:633.164550px;}
.y106{bottom:633.165000px;}
.y64{bottom:634.438650px;}
.y1ea{bottom:635.838360px;}
.y3f{bottom:638.911200px;}
.yae{bottom:642.133050px;}
.yb0{bottom:642.134700px;}
.y186{bottom:642.253080px;}
.ydb{bottom:646.131600px;}
.y2b6{bottom:647.238360px;}
.y150{bottom:649.929450px;}
.y20a{bottom:649.962990px;}
.y93{bottom:650.638050px;}
.y63{bottom:650.638200px;}
.y65{bottom:650.638650px;}
.y103{bottom:651.164550px;}
.y27{bottom:651.727050px;}
.y222{bottom:652.781040px;}
.yf{bottom:653.095350px;}
.y1b0{bottom:653.685000px;}
.y1e9{bottom:656.545200px;}
.y3e{bottom:659.911200px;}
.y123{bottom:660.592950px;}
.yda{bottom:662.331150px;}
.ydc{bottom:662.331600px;}
.y185{bottom:662.959920px;}
.y2b5{bottom:667.945200px;}
.ye{bottom:671.095350px;}
.y26{bottom:672.727050px;}
.y1e8{bottom:677.252040px;}
.y91{bottom:680.218200px;}
.y3d{bottom:680.911200px;}
.y184{bottom:683.666760px;}
.y122{bottom:683.997750px;}
.y1af{bottom:684.825000px;}
.y2b4{bottom:688.652040px;}
.yd{bottom:689.095350px;}
.y25{bottom:693.727050px;}
.y90{bottom:696.417750px;}
.y92{bottom:696.418050px;}
.y14e{bottom:697.509450px;}
.y1e7{bottom:697.958880px;}
.y61{bottom:698.218200px;}
.y101{bottom:698.744550px;}
.y3c{bottom:701.911200px;}
.y183{bottom:704.373600px;}
.yc{bottom:707.095350px;}
.y2b3{bottom:709.358880px;}
.yd8{bottom:709.911150px;}
.y14d{bottom:713.709000px;}
.y14f{bottom:713.709450px;}
.y60{bottom:714.417750px;}
.yad{bottom:714.418050px;}
.y62{bottom:714.418200px;}
.y24{bottom:714.727050px;}
.y100{bottom:714.944100px;}
.y102{bottom:714.944550px;}
.y1ae{bottom:717.142920px;}
.y1e6{bottom:718.831860px;}
.y182{bottom:725.080440px;}
.yb{bottom:725.095350px;}
.yd7{bottom:726.110550px;}
.yd9{bottom:726.111150px;}
.y2b2{bottom:730.065720px;}
.y23{bottom:735.727050px;}
.y1e5{bottom:739.344480px;}
.y5f{bottom:743.997750px;}
.y3b{bottom:745.111200px;}
.y181{bottom:745.787280px;}
.y1ad{bottom:746.843640px;}
.y2b1{bottom:750.772560px;}
.y22{bottom:756.727050px;}
.y2d6{bottom:759.818460px;}
.y1e4{bottom:760.051320px;}
.y8f{bottom:760.197150px;}
.y5e{bottom:760.197750px;}
.y14b{bottom:761.289150px;}
.yc0{bottom:761.997750px;}
.yfe{bottom:762.524100px;}
.y3a{bottom:766.111200px;}
.y180{bottom:766.494120px;}
.y1ac{bottom:767.550480px;}
.y293{bottom:771.464460px;}
.y276{bottom:771.703620px;}
.yd6{bottom:773.690700px;}
.y2d5{bottom:776.924760px;}
.y14a{bottom:777.488550px;}
.y14c{bottom:777.489000px;}
.y8e{bottom:778.197150px;}
.y5d{bottom:778.197750px;}
.yfd{bottom:778.723650px;}
.yff{bottom:778.724100px;}
.ya{bottom:779.095350px;}
.y2b0{bottom:780.473280px;}
.y25d{bottom:780.619590px;}
.y1e3{bottom:780.758160px;}
.y39{bottom:787.111200px;}
.y17f{bottom:787.200960px;}
.y1ab{bottom:788.257320px;}
.yd5{bottom:789.890550px;}
.y292{bottom:792.350580px;}
.y275{bottom:792.410460px;}
.y9{bottom:797.095350px;}
.y21{bottom:799.927050px;}
.y2af{bottom:801.180120px;}
.y25c{bottom:801.326430px;}
.y1e2{bottom:801.452040px;}
.y2d4{bottom:806.625480px;}
.yab{bottom:807.777150px;}
.y17e{bottom:808.087080px;}
.y38{bottom:808.111200px;}
.y1aa{bottom:808.964160px;}
.y291{bottom:812.863200px;}
.y274{bottom:813.117300px;}
.y8{bottom:815.095350px;}
.y20{bottom:817.927050px;}
.y2ae{bottom:821.886960px;}
.y25b{bottom:822.033270px;}
.y1e1{bottom:822.158880px;}
.y5c{bottom:822.829500px;}
.yaa{bottom:823.976700px;}
.yac{bottom:823.977150px;}
.y148{bottom:825.068550px;}
.y8c{bottom:825.777150px;}
.yfb{bottom:826.303650px;}
.y2d3{bottom:827.332320px;}
.y17d{bottom:828.599700px;}
.y37{bottom:829.111200px;}
.y1a9{bottom:829.671000px;}
.y7{bottom:833.095350px;}
.y290{bottom:833.570040px;}
.y273{bottom:833.824140px;}
.y147{bottom:841.268100px;}
.y149{bottom:841.268550px;}
.y8b{bottom:841.976700px;}
.y8d{bottom:841.977150px;}
.yfa{bottom:842.503050px;}
.yfc{bottom:842.503650px;}
.y24d{bottom:842.564640px;}
.y2ad{bottom:842.593800px;}
.y25a{bottom:842.740110px;}
.y1e0{bottom:843.017640px;}
.y5b{bottom:847.594500px;}
.y36{bottom:850.111200px;}
.y17c{bottom:850.199700px;}
.yd4{bottom:850.230900px;}
.y1a8{bottom:850.377840px;}
.y28f{bottom:854.276880px;}
.y272{bottom:854.530980px;}
.y2d2{bottom:857.212320px;}
.y24c{bottom:863.271480px;}
.y2ac{bottom:863.300640px;}
.y259{bottom:863.446950px;}
.y1df{bottom:863.530260px;}
.y6{bottom:869.095350px;}
.y5a{bottom:870.994500px;}
.y1a7{bottom:871.084680px;}
.y35{bottom:871.111200px;}
.y89{bottom:871.556700px;}
.yd3{bottom:873.626250px;}
.y28e{bottom:874.983720px;}
.y271{bottom:875.237820px;}
.y2d1{bottom:877.919160px;}
.y17b{bottom:883.319700px;}
.y24b{bottom:883.978320px;}
.y2ab{bottom:884.007480px;}
.y258{bottom:884.153790px;}
.y88{bottom:887.756250px;}
.y8a{bottom:887.756700px;}
.y145{bottom:888.848100px;}
.yca{bottom:889.556700px;}
.yf8{bottom:890.083050px;}
.y1a6{bottom:891.836340px;}
.y34{bottom:892.111200px;}
.y1de{bottom:893.275800px;}
.y28d{bottom:895.735380px;}
.y270{bottom:895.989480px;}
.y24a{bottom:904.729980px;}
.y144{bottom:905.047650px;}
.y146{bottom:905.048100px;}
.y257{bottom:905.084730px;}
.y87{bottom:905.756250px;}
.ybf{bottom:905.756700px;}
.y17a{bottom:906.229200px;}
.yf7{bottom:906.281400px;}
.yf9{bottom:906.283050px;}
.y2d0{bottom:907.664700px;}
.y1a5{bottom:912.722460px;}
.y33{bottom:913.111200px;}
.y2aa{bottom:913.753020px;}
.y1dd{bottom:913.982640px;}
.y28c{bottom:916.442220px;}
.y26f{bottom:916.696320px;}
.y179{bottom:924.764700px;}
.y249{bottom:925.436820px;}
.y256{bottom:925.590510px;}
.y1a4{bottom:933.235080px;}
.y32{bottom:934.111200px;}
.y2a9{bottom:934.459860px;}
.y142{bottom:934.627650px;}
.y1dc{bottom:934.689480px;}
.y85{bottom:935.336250px;}
.y28b{bottom:937.149060px;}
.y2cf{bottom:937.184700px;}
.y26e{bottom:937.403160px;}
.y178{bottom:944.383260px;}
.y248{bottom:946.143660px;}
.y255{bottom:946.276110px;}
.y59{bottom:949.202400px;}
.y141{bottom:950.827200px;}
.y143{bottom:950.827650px;}
.y84{bottom:951.535800px;}
.y86{bottom:951.536250px;}
.ya8{bottom:953.336250px;}
.y31{bottom:955.111200px;}
.y2a8{bottom:955.166700px;}
.y1db{bottom:955.396320px;}
.y209{bottom:955.471050px;}
.y2ce{bottom:958.064700px;}
.y26d{bottom:958.110000px;}
.yf6{bottom:962.411400px;}
.y1a3{bottom:962.935800px;}
.y58{bottom:965.402400px;}
.y247{bottom:966.850500px;}
.y28a{bottom:967.029060px;}
.y140{bottom:968.827200px;}
.y83{bottom:969.535800px;}
.ya9{bottom:969.536250px;}
.y177{bottom:973.904700px;}
.y2a7{bottom:975.873540px;}
.y254{bottom:975.976830px;}
.y208{bottom:975.983670px;}
.y1da{bottom:976.103160px;}
.y30{bottom:976.111200px;}
.y2cd{bottom:978.584700px;}
.yf5{bottom:978.611400px;}
.y1a2{bottom:983.642640px;}
.y246{bottom:987.557340px;}
.y26c{bottom:987.961200px;}
.y176{bottom:993.875700px;}
.y289{bottom:996.550500px;}
.y253{bottom:996.683670px;}
.y207{bottom:996.690510px;}
.y2a6{bottom:996.759660px;}
.y1d9{bottom:996.782640px;}
.y2f{bottom:997.111200px;}
.ya6{bottom:999.115800px;}
.y2cc{bottom:999.284700px;}
.y1a1{bottom:1004.349480px;}
.y245{bottom:1008.264180px;}
.ya5{bottom:1015.315350px;}
.ya7{bottom:1015.315800px;}
.y13e{bottom:1016.407200px;}
.y81{bottom:1017.115800px;}
.y288{bottom:1017.257340px;}
.y2a5{bottom:1017.272280px;}
.y206{bottom:1017.369840px;}
.y252{bottom:1017.390510px;}
.y26b{bottom:1017.482640px;}
.y1d8{bottom:1017.489480px;}
.y2e{bottom:1018.111200px;}
.y175{bottom:1024.844700px;}
.y1a0{bottom:1025.056320px;}
.y244{bottom:1028.971020px;}
.y2cb{bottom:1029.164520px;}
.y13d{bottom:1032.606600px;}
.y13f{bottom:1032.607200px;}
.y80{bottom:1033.315350px;}
.y82{bottom:1033.315800px;}
.y287{bottom:1037.964180px;}
.y205{bottom:1038.076680px;}
.y2a4{bottom:1038.158400px;}
.y26a{bottom:1038.189480px;}
.y1d7{bottom:1038.196320px;}
.yf4{bottom:1040.435550px;}
.y19f{bottom:1045.763160px;}
.y5{bottom:1049.095350px;}
.y243{bottom:1049.677860px;}
.y174{bottom:1056.155700px;}
.y286{bottom:1058.671020px;}
.y2ca{bottom:1058.685960px;}
.y204{bottom:1058.783520px;}
.y2a3{bottom:1058.865240px;}
.y221{bottom:1058.896320px;}
.y1d6{bottom:1058.903160px;}
.y2d{bottom:1061.311200px;}
.y7f{bottom:1062.895350px;}
.yf3{bottom:1063.835400px;}
.y19e{bottom:1066.470000px;}
.y4{bottom:1067.095350px;}
.y242{bottom:1070.384700px;}
.y7e{bottom:1079.095350px;}
.y2c{bottom:1079.311200px;}
.y23a{bottom:1079.377860px;}
.y203{bottom:1079.490360px;}
.y2a2{bottom:1079.572080px;}
.y1d5{bottom:1079.603160px;}
.y13c{bottom:1080.186750px;}
.ya4{bottom:1080.895350px;}
.y3{bottom:1085.095350px;}
.y173{bottom:1087.124700px;}
.y13b{bottom:1096.386600px;}
.y7d{bottom:1097.095350px;}
.y19d{bottom:1097.610000px;}
.y239{bottom:1100.084700px;}
.y202{bottom:1100.197200px;}
.y241{bottom:1100.264700px;}
.y1d4{bottom:1100.310000px;}
.y2b{bottom:1100.911200px;}
.y2{bottom:1103.095350px;}
.y172{bottom:1114.855620px;}
.y171{bottom:1128.531660px;}
.y23f{bottom:1139.350200px;}
.y19a{bottom:1139.575500px;}
.y170{bottom:1142.424780px;}
.y23e{bottom:1154.834700px;}
.y199{bottom:1155.060000px;}
.y16f{bottom:1156.281720px;}
.y16e{bottom:1169.957760px;}
.y201{bottom:1170.070410px;}
.y198{bottom:1170.183060px;}
.y16d{bottom:1183.814700px;}
.y200{bottom:1183.927350px;}
.y197{bottom:1184.040000px;}
.h1a{height:33.553828px;}
.h2{height:43.031250px;}
.h12{height:43.152187px;}
.ha{height:43.246406px;}
.h19{height:44.149219px;}
.h13{height:48.304688px;}
.h7{height:48.410156px;}
.h10{height:48.483281px;}
.h1b{height:48.673828px;}
.h2a{height:48.679828px;}
.h11{height:53.457188px;}
.hd{height:53.573906px;}
.h3{height:53.789062px;}
.h2e{height:53.865703px;}
.he{height:53.953242px;}
.h4{height:54.169922px;}
.h9{height:54.172322px;}
.hf{height:59.803594px;}
.h6{height:64.546875px;}
.h5{height:65.003906px;}
.h1c{height:65.095313px;}
.h17{height:65.116913px;}
.h1d{height:65.122673px;}
.h2d{height:65.128432px;}
.h1f{height:65.147152px;}
.h20{height:65.147873px;}
.h22{height:65.149553px;}
.h25{height:65.150033px;}
.h27{height:65.172353px;}
.h15{height:65.174753px;}
.h18{height:65.177393px;}
.h28{height:65.177992px;}
.h29{height:65.179673px;}
.h21{height:65.201873px;}
.h1e{height:65.204752px;}
.h23{height:65.205352px;}
.h24{height:65.229232px;}
.h16{height:65.259472px;}
.h26{height:65.283953px;}
.h2c{height:65.396272px;}
.h2b{height:65.457309px;}
.h8{height:70.420898px;}
.hc{height:79.048828px;}
.hb{height:97.505859px;}
.h14{height:1152.283500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.559100px;}
.x28{left:133.559100px;}
.x4b{left:143.282700px;}
.x24{left:148.818900px;}
.x32{left:152.257050px;}
.x29{left:154.818900px;}
.x39{left:168.457950px;}
.x2f{left:179.897100px;}
.x49{left:183.090000px;}
.x4a{left:185.972340px;}
.x3f{left:195.510000px;}
.x3d{left:214.590000px;}
.x1e{left:220.936950px;}
.x26{left:229.166850px;}
.x34{left:236.784000px;}
.x13{left:238.426950px;}
.x20{left:247.486950px;}
.xc{left:248.850150px;}
.x15{left:250.111950px;}
.x3c{left:256.710000px;}
.x22{left:262.486950px;}
.xb{left:263.934150px;}
.x1b{left:270.556950px;}
.x1f{left:271.816950px;}
.x19{left:273.886950px;}
.x18{left:275.536950px;}
.x3e{left:277.230000px;}
.x16{left:282.211950px;}
.x1d{left:285.136950px;}
.x17{left:287.206950px;}
.x14{left:291.106950px;}
.x1c{left:292.231950px;}
.x23{left:295.696950px;}
.x1a{left:305.161950px;}
.x45{left:307.121700px;}
.x21{left:312.646950px;}
.x40{left:319.575000px;}
.x10{left:327.210300px;}
.x3{left:335.446500px;}
.xe{left:344.943000px;}
.x27{left:346.751850px;}
.xf{left:353.910300px;}
.xd{left:355.969650px;}
.x8{left:358.920300px;}
.xa{left:360.990300px;}
.x6{left:363.495300px;}
.x4{left:366.414000px;}
.x25{left:368.245050px;}
.x4c{left:370.875000px;}
.x12{left:372.452700px;}
.x7{left:374.745300px;}
.x5{left:377.458200px;}
.x9{left:380.175300px;}
.x11{left:384.735300px;}
.x47{left:400.868400px;}
.x41{left:446.655000px;}
.x43{left:480.851700px;}
.x48{left:648.466620px;}
.x33{left:725.235150px;}
.x35{left:726.348450px;}
.x36{left:727.461750px;}
.x42{left:729.263400px;}
.x2b{left:733.577400px;}
.x2c{left:734.690700px;}
.x3a{left:739.344600px;}
.x2a{left:741.919800px;}
.x37{left:746.012550px;}
.x30{left:747.348450px;}
.x38{left:749.346450px;}
.x2e{left:750.682500px;}
.x2d{left:754.016400px;}
.x31{left:757.350450px;}
.x1{left:762.020250px;}
.x46{left:763.331520px;}
.x44{left:764.396700px;}
.x3b{left:765.690000px;}
@media print{
.v4{vertical-align:-26.880000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.445333pt;}
.v1{vertical-align:17.762133pt;}
.v2{vertical-align:26.950613pt;}
.ls1{letter-spacing:-3.946667pt;}
.ls43{letter-spacing:-3.157333pt;}
.ls36{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.956160pt;}
.ls3f{letter-spacing:-0.814720pt;}
.ls2{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.428800pt;}
.ls26{letter-spacing:-0.385920pt;}
.ls15{letter-spacing:-0.371840pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls28{letter-spacing:-0.318720pt;}
.ls40{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.265600pt;}
.ls46{letter-spacing:-0.256000pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.212480pt;}
.ls39{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.171520pt;}
.ls37{letter-spacing:-0.144000pt;}
.ls23{letter-spacing:-0.106240pt;}
.ls3{letter-spacing:-0.053333pt;}
.ls50{letter-spacing:-0.053120pt;}
.ls38{letter-spacing:-0.048000pt;}
.ls35{letter-spacing:-0.034560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.042880pt;}
.ls6{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.100800pt;}
.ls16{letter-spacing:0.106240pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.144000pt;}
.ls4c{letter-spacing:0.159360pt;}
.ls17{letter-spacing:0.212480pt;}
.ls1c{letter-spacing:0.235520pt;}
.ls3b{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.257280pt;}
.ls4b{letter-spacing:0.265600pt;}
.ls48{letter-spacing:0.318720pt;}
.ls31{letter-spacing:0.336000pt;}
.ls22{letter-spacing:0.478080pt;}
.ls1e{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.531200pt;}
.ls44{letter-spacing:0.566827pt;}
.ls3e{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.584320pt;}
.ls45{letter-spacing:0.594347pt;}
.ls1a{letter-spacing:0.605013pt;}
.ls3c{letter-spacing:0.630827pt;}
.ls34{letter-spacing:0.656640pt;}
.ls4{letter-spacing:0.672000pt;}
.ls47{letter-spacing:0.849920pt;}
.ls4a{letter-spacing:0.903040pt;}
.ls4f{letter-spacing:1.168640pt;}
.ls9{letter-spacing:1.221760pt;}
.ls7{letter-spacing:1.859200pt;}
.ls33{letter-spacing:2.496000pt;}
.ls2b{letter-spacing:2.496640pt;}
.ls30{letter-spacing:3.120000pt;}
.lsa{letter-spacing:3.134080pt;}
.ls2c{letter-spacing:3.771520pt;}
.ls32{letter-spacing:3.792000pt;}
.ls18{letter-spacing:4.408960pt;}
.ls4e{letter-spacing:5.046400pt;}
.ls25{letter-spacing:5.152640pt;}
.ls2a{letter-spacing:5.736960pt;}
.ls3d{letter-spacing:6.336000pt;}
.ls8{letter-spacing:6.374400pt;}
.lsb{letter-spacing:7.011840pt;}
.lsc{letter-spacing:7.649280pt;}
.ls29{letter-spacing:8.286720pt;}
.ls1f{letter-spacing:9.552000pt;}
.lse{letter-spacing:10.199040pt;}
.ls2f{letter-spacing:10.836480pt;}
.ls49{letter-spacing:11.473920pt;}
.ls2d{letter-spacing:12.111360pt;}
.ls52{letter-spacing:14.661120pt;}
.ls24{letter-spacing:15.298560pt;}
.ls41{letter-spacing:17.210880pt;}
.ls2e{letter-spacing:18.485760pt;}
.lsf{letter-spacing:18.538880pt;}
.ls51{letter-spacing:21.726080pt;}
.ls4d{letter-spacing:21.832320pt;}
.ls1b{letter-spacing:24.275840pt;}
.wsa7{word-spacing:-15.936000pt;}
.ws4c{word-spacing:-15.245440pt;}
.ws9e{word-spacing:-15.086080pt;}
.wsa6{word-spacing:-15.032960pt;}
.ws67{word-spacing:-14.979840pt;}
.wsa1{word-spacing:-14.926720pt;}
.ws26{word-spacing:-14.873600pt;}
.ws1{word-spacing:-14.826667pt;}
.ws1d{word-spacing:-14.773333pt;}
.ws25{word-spacing:-14.767360pt;}
.wsa8{word-spacing:-14.714240pt;}
.ws4e{word-spacing:-14.661120pt;}
.ws24{word-spacing:-14.554880pt;}
.ws23{word-spacing:-14.501760pt;}
.wsb1{word-spacing:-14.395520pt;}
.ws8e{word-spacing:-11.963520pt;}
.ws90{word-spacing:-11.920640pt;}
.ws66{word-spacing:-11.749120pt;}
.ws82{word-spacing:-11.105920pt;}
.ws4f{word-spacing:-10.944000pt;}
.ws6{word-spacing:-10.880000pt;}
.ws70{word-spacing:-10.800000pt;}
.ws4b{word-spacing:-10.704000pt;}
.ws83{word-spacing:-10.656000pt;}
.ws6e{word-spacing:-10.264320pt;}
.ws4d{word-spacing:-9.607680pt;}
.ws6f{word-spacing:-9.573120pt;}
.ws8f{word-spacing:-8.704000pt;}
.ws1a{word-spacing:-8.643947pt;}
.ws94{word-spacing:-7.040000pt;}
.ws18{word-spacing:-6.933333pt;}
.ws27{word-spacing:-3.840000pt;}
.ws1c{word-spacing:-3.040000pt;}
.ws5{word-spacing:-2.933333pt;}
.ws9{word-spacing:-2.640000pt;}
.ws1f{word-spacing:-2.133333pt;}
.wse{word-spacing:-1.920000pt;}
.ws17{word-spacing:-1.653333pt;}
.ws15{word-spacing:-1.386667pt;}
.wsb{word-spacing:-1.333333pt;}
.ws12{word-spacing:-1.173333pt;}
.wsd{word-spacing:-1.013333pt;}
.ws7{word-spacing:-0.960000pt;}
.ws11{word-spacing:-0.906667pt;}
.ws14{word-spacing:-0.864000pt;}
.ws22{word-spacing:-0.853333pt;}
.wsa3{word-spacing:-0.690560pt;}
.ws28{word-spacing:-0.672000pt;}
.ws8{word-spacing:-0.586667pt;}
.ws35{word-spacing:-0.584320pt;}
.ws16{word-spacing:-0.533333pt;}
.ws19{word-spacing:-0.480000pt;}
.wsa9{word-spacing:-0.478080pt;}
.wsa{word-spacing:-0.426667pt;}
.ws20{word-spacing:-0.373333pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws84{word-spacing:-0.214400pt;}
.wsf{word-spacing:-0.213333pt;}
.wsae{word-spacing:-0.212480pt;}
.ws7c{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.160000pt;}
.ws2b{word-spacing:-0.144000pt;}
.ws10{word-spacing:-0.138667pt;}
.ws7f{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.117760pt;}
.wsc{word-spacing:-0.106667pt;}
.ws29{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb5{word-spacing:0.053120pt;}
.ws1e{word-spacing:0.053333pt;}
.ws86{word-spacing:0.106240pt;}
.ws69{word-spacing:0.171520pt;}
.ws7e{word-spacing:0.192000pt;}
.ws61{word-spacing:0.212480pt;}
.ws98{word-spacing:0.214400pt;}
.ws9d{word-spacing:0.256000pt;}
.ws31{word-spacing:0.265600pt;}
.wsa5{word-spacing:0.300160pt;}
.ws6d{word-spacing:0.318720pt;}
.ws2a{word-spacing:0.336000pt;}
.ws3e{word-spacing:0.371840pt;}
.ws9c{word-spacing:0.384000pt;}
.ws50{word-spacing:0.385920pt;}
.ws55{word-spacing:0.424960pt;}
.ws68{word-spacing:0.428800pt;}
.ws7d{word-spacing:0.528000pt;}
.ws3f{word-spacing:0.531200pt;}
.ws7b{word-spacing:0.960000pt;}
.ws41{word-spacing:1.062400pt;}
.ws30{word-spacing:1.115520pt;}
.ws2f{word-spacing:1.168640pt;}
.ws40{word-spacing:1.381120pt;}
.ws91{word-spacing:1.434240pt;}
.ws2c{word-spacing:1.699840pt;}
.ws92{word-spacing:1.752960pt;}
.ws3a{word-spacing:1.806080pt;}
.ws8a{word-spacing:1.824000pt;}
.ws32{word-spacing:2.390400pt;}
.ws37{word-spacing:2.443520pt;}
.ws81{word-spacing:2.448000pt;}
.ws36{word-spacing:2.709120pt;}
.ws76{word-spacing:2.974720pt;}
.ws34{word-spacing:3.027840pt;}
.ws7a{word-spacing:3.072000pt;}
.ws6c{word-spacing:3.080960pt;}
.ws93{word-spacing:3.157333pt;}
.ws45{word-spacing:3.665280pt;}
.ws3b{word-spacing:3.718400pt;}
.ws80{word-spacing:3.744000pt;}
.ws8d{word-spacing:3.930880pt;}
.ws33{word-spacing:4.037120pt;}
.ws5c{word-spacing:4.302720pt;}
.ws56{word-spacing:4.355840pt;}
.wsa0{word-spacing:4.887040pt;}
.ws8c{word-spacing:4.940160pt;}
.ws4a{word-spacing:4.993280pt;}
.ws74{word-spacing:5.577600pt;}
.ws57{word-spacing:5.683840pt;}
.wsb3{word-spacing:5.843200pt;}
.ws89{word-spacing:6.144000pt;}
.ws88{word-spacing:6.192000pt;}
.ws2e{word-spacing:6.215040pt;}
.wsad{word-spacing:6.268160pt;}
.ws87{word-spacing:6.288000pt;}
.ws2d{word-spacing:6.321280pt;}
.ws8b{word-spacing:6.427520pt;}
.ws54{word-spacing:6.852480pt;}
.ws6b{word-spacing:6.905600pt;}
.ws38{word-spacing:6.958720pt;}
.ws39{word-spacing:7.118080pt;}
.wsb2{word-spacing:7.171200pt;}
.ws9f{word-spacing:7.436800pt;}
.ws3c{word-spacing:7.489920pt;}
.wsaf{word-spacing:7.543040pt;}
.ws3d{word-spacing:7.596160pt;}
.ws71{word-spacing:8.127360pt;}
.wsa2{word-spacing:8.180480pt;}
.ws72{word-spacing:8.233600pt;}
.ws5e{word-spacing:8.764800pt;}
.ws58{word-spacing:8.871040pt;}
.ws49{word-spacing:9.402240pt;}
.ws48{word-spacing:9.455360pt;}
.ws64{word-spacing:9.456000pt;}
.ws65{word-spacing:9.504000pt;}
.ws5a{word-spacing:9.508480pt;}
.ws5b{word-spacing:9.614720pt;}
.ws44{word-spacing:10.039680pt;}
.ws42{word-spacing:10.145920pt;}
.ws78{word-spacing:10.677120pt;}
.ws79{word-spacing:10.730240pt;}
.ws43{word-spacing:10.783360pt;}
.ws9b{word-spacing:11.314560pt;}
.ws97{word-spacing:11.420800pt;}
.wsac{word-spacing:11.952000pt;}
.ws77{word-spacing:12.058240pt;}
.ws96{word-spacing:12.695680pt;}
.ws95{word-spacing:12.855040pt;}
.ws5d{word-spacing:13.333120pt;}
.ws75{word-spacing:13.970560pt;}
.wsb4{word-spacing:14.608000pt;}
.ws6a{word-spacing:15.139200pt;}
.wsa4{word-spacing:15.192320pt;}
.ws59{word-spacing:15.245440pt;}
.ws52{word-spacing:16.467200pt;}
.ws51{word-spacing:16.520320pt;}
.ws9a{word-spacing:17.104640pt;}
.ws99{word-spacing:17.157760pt;}
.ws2{word-spacing:17.600000pt;}
.ws53{word-spacing:17.795200pt;}
.ws47{word-spacing:18.485760pt;}
.ws85{word-spacing:20.291840pt;}
.ws73{word-spacing:20.398080pt;}
.ws60{word-spacing:20.929280pt;}
.ws5f{word-spacing:21.035520pt;}
.wsaa{word-spacing:21.566720pt;}
.wsab{word-spacing:21.672960pt;}
.wsb0{word-spacing:24.169600pt;}
.ws62{word-spacing:24.222720pt;}
.ws21{word-spacing:27.200000pt;}
.ws46{word-spacing:28.047360pt;}
.ws4{word-spacing:34.773333pt;}
.ws3{word-spacing:48.906667pt;}
._e{margin-left:-10.480640pt;}
._a{margin-left:-6.896000pt;}
._5{margin-left:-5.904000pt;}
._8{margin-left:-4.976533pt;}
._3{margin-left:-3.909333pt;}
._1{margin-left:-2.960000pt;}
._2{margin-left:-1.978667pt;}
._0{margin-left:-0.965333pt;}
._6{width:0.928000pt;}
._9{width:1.978667pt;}
._4{width:2.970667pt;}
._7{width:3.957333pt;}
._d{width:5.418240pt;}
._10{width:6.357760pt;}
._f{width:7.333760pt;}
._14{width:8.258560pt;}
._b{width:9.671040pt;}
._13{width:10.630827pt;}
._11{width:11.898880pt;}
._12{width:13.102080pt;}
._16{width:21.810560pt;}
._15{width:24.803413pt;}
._c{width:753.347840pt;}
.fs5{font-size:31.093333pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:69.333333pt;}
.fs7{font-size:96.000000pt;}
.y240{bottom:-26.468267pt;}
.y19c{bottom:-26.268000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:83.149600pt;}
.y19b{bottom:98.268000pt;}
.y57{bottom:119.387733pt;}
.y220{bottom:123.770533pt;}
.y1c7{bottom:123.874667pt;}
.y16c{bottom:124.171867pt;}
.y238{bottom:127.232000pt;}
.y23d{bottom:129.427840pt;}
.y285{bottom:131.191307pt;}
.y251{bottom:134.709280pt;}
.y2a1{bottom:136.737760pt;}
.y21f{bottom:137.522533pt;}
.y56{bottom:138.587733pt;}
.y1c6{bottom:140.986667pt;}
.y2c9{bottom:142.060640pt;}
.y23c{bottom:144.146400pt;}
.y237{bottom:148.986667pt;}
.y250{bottom:149.427840pt;}
.y284{bottom:149.584107pt;}
.y16a{bottom:150.465200pt;}
.yd1{bottom:151.095067pt;}
.y21e{bottom:154.646533pt;}
.y2a0{bottom:155.143840pt;}
.y139{bottom:156.764400pt;}
.y55{bottom:157.254400pt;}
.y1ff{bottom:159.382667pt;}
.y2c8{bottom:160.626080pt;}
.y1c5{bottom:162.746667pt;}
.y24f{bottom:164.146400pt;}
.y169{bottom:164.864667pt;}
.y16b{bottom:164.865200pt;}
.y23b{bottom:165.103787pt;}
.yd0{bottom:165.494533pt;}
.yd2{bottom:165.495067pt;}
.y7b{bottom:167.095067pt;}
.y11d{bottom:167.562933pt;}
.y283{bottom:167.990187pt;}
.y236{bottom:170.746667pt;}
.y138{bottom:171.164000pt;}
.y13a{bottom:171.164400pt;}
.y1d3{bottom:171.617760pt;}
.y269{bottom:173.042533pt;}
.y29f{bottom:173.549920pt;}
.y54{bottom:175.921067pt;}
.y21d{bottom:176.406533pt;}
.y1fe{bottom:176.506667pt;}
.y168{bottom:180.864667pt;}
.ya0{bottom:181.494533pt;}
.y7a{bottom:181.494667pt;}
.y7c{bottom:181.495067pt;}
.y11c{bottom:181.962533pt;}
.y11e{bottom:181.962933pt;}
.y235{bottom:182.746667pt;}
.ybd{bottom:184.102933pt;}
.y1c4{bottom:184.506667pt;}
.y24e{bottom:185.037707pt;}
.y282{bottom:186.396267pt;}
.y2c7{bottom:187.026720pt;}
.y137{bottom:187.164000pt;}
.y21c{bottom:188.406533pt;}
.y1d2{bottom:190.023840pt;}
.y268{bottom:190.166533pt;}
.y29e{bottom:191.956000pt;}
.y53{bottom:194.587733pt;}
.y1c3{bottom:196.506667pt;}
.y1fd{bottom:198.266667pt;}
.ybc{bottom:198.502533pt;}
.ybe{bottom:198.502933pt;}
.y267{bottom:202.166533pt;}
.y2c6{bottom:205.432800pt;}
.y166{bottom:207.158000pt;}
.yc8{bottom:207.787867pt;}
.y78{bottom:207.788000pt;}
.y11a{bottom:208.255867pt;}
.y1d1{bottom:208.429920pt;}
.y29d{bottom:210.362080pt;}
.y1f{bottom:212.529200pt;}
.y281{bottom:212.796907pt;}
.y52{bottom:213.254400pt;}
.y135{bottom:213.457333pt;}
.y266{bottom:219.422213pt;}
.y1fc{bottom:220.026667pt;}
.y165{bottom:221.557600pt;}
.y167{bottom:221.558000pt;}
.yc7{bottom:222.187467pt;}
.y77{bottom:222.187600pt;}
.yc9{bottom:222.187867pt;}
.y79{bottom:222.188000pt;}
.y119{bottom:222.655467pt;}
.y11b{bottom:222.655867pt;}
.y21b{bottom:223.422853pt;}
.y2c5{bottom:223.666240pt;}
.y9e{bottom:223.787867pt;}
.y196{bottom:224.625760pt;}
.yba{bottom:224.795867pt;}
.y1d0{bottom:226.836000pt;}
.y234{bottom:227.209547pt;}
.y134{bottom:227.856933pt;}
.y136{bottom:227.857333pt;}
.y1e{bottom:228.529200pt;}
.y29c{bottom:228.768160pt;}
.y280{bottom:231.202987pt;}
.y51{bottom:231.921067pt;}
.yf1{bottom:234.181733pt;}
.y164{bottom:237.557600pt;}
.y265{bottom:237.828293pt;}
.y9d{bottom:238.187467pt;}
.y76{bottom:238.187600pt;}
.y9f{bottom:238.187867pt;}
.y118{bottom:238.655467pt;}
.yb9{bottom:239.195467pt;}
.ybb{bottom:239.195867pt;}
.y1c2{bottom:241.768427pt;}
.y21a{bottom:241.828933pt;}
.y1fb{bottom:241.946667pt;}
.y133{bottom:243.856933pt;}
.y1d{bottom:244.529200pt;}
.y1cf{bottom:245.242080pt;}
.y233{bottom:245.774987pt;}
.y29b{bottom:247.174240pt;}
.yf0{bottom:248.581333pt;}
.yf2{bottom:248.581733pt;}
.y27f{bottom:249.609067pt;}
.y2c4{bottom:250.226240pt;}
.y50{bottom:250.587733pt;}
.y195{bottom:251.185760pt;}
.yb8{bottom:255.195467pt;}
.y264{bottom:256.234373pt;}
.y1c1{bottom:260.174507pt;}
.y219{bottom:260.235013pt;}
.y1c{bottom:260.529200pt;}
.y1ce{bottom:263.648160pt;}
.y1fa{bottom:263.706667pt;}
.y162{bottom:263.850933pt;}
.y232{bottom:264.008427pt;}
.y9b{bottom:264.480800pt;}
.y116{bottom:264.948800pt;}
.y29a{bottom:265.580320pt;}
.y27e{bottom:267.842507pt;}
.y2c3{bottom:268.632320pt;}
.y4f{bottom:269.254400pt;}
.y263{bottom:274.640453pt;}
.yee{bottom:274.874667pt;}
.y1b{bottom:276.529200pt;}
.y194{bottom:277.586400pt;}
.y161{bottom:278.250533pt;}
.y163{bottom:278.250933pt;}
.y1c0{bottom:278.580587pt;}
.y218{bottom:278.641093pt;}
.y9a{bottom:278.880400pt;}
.y9c{bottom:278.880800pt;}
.y115{bottom:279.348267pt;}
.y117{bottom:279.348800pt;}
.yce{bottom:280.480800pt;}
.y74{bottom:280.480933pt;}
.yb6{bottom:281.488800pt;}
.y1cd{bottom:282.054240pt;}
.y231{bottom:282.414507pt;}
.y299{bottom:283.986400pt;}
.y1f9{bottom:285.466667pt;}
.y131{bottom:286.150267pt;}
.y27d{bottom:286.248587pt;}
.y2c2{bottom:286.865760pt;}
.y4e{bottom:287.921067pt;}
.yed{bottom:289.274133pt;}
.yef{bottom:289.274667pt;}
.y1a{bottom:292.529200pt;}
.y262{bottom:293.046533pt;}
.y160{bottom:294.250533pt;}
.y99{bottom:294.880400pt;}
.y73{bottom:294.880533pt;}
.ycf{bottom:294.880800pt;}
.y75{bottom:294.880933pt;}
.y114{bottom:295.348267pt;}
.yb7{bottom:295.888800pt;}
.yb5{bottom:295.894400pt;}
.y1bf{bottom:296.981867pt;}
.y217{bottom:297.176773pt;}
.y1cc{bottom:300.460320pt;}
.y130{bottom:300.549733pt;}
.y132{bottom:300.550267pt;}
.y230{bottom:300.820587pt;}
.y1f8{bottom:303.862667pt;}
.y193{bottom:303.931840pt;}
.y27c{bottom:304.654667pt;}
.yec{bottom:305.274133pt;}
.y4d{bottom:306.587733pt;}
.y19{bottom:308.529200pt;}
.y298{bottom:311.666400pt;}
.yb4{bottom:311.894400pt;}
.y2c1{bottom:313.266400pt;}
.y216{bottom:315.410213pt;}
.y1be{bottom:315.547307pt;}
.y1cb{bottom:318.866400pt;}
.y22f{bottom:319.184747pt;}
.y1f7{bottom:320.986667pt;}
.yc5{bottom:321.173733pt;}
.y192{bottom:322.337920pt;}
.y27b{bottom:323.060747pt;}
.y18{bottom:324.529200pt;}
.y4c{bottom:325.254400pt;}
.y261{bottom:326.326533pt;}
.yea{bottom:331.567467pt;}
.y2c0{bottom:331.826400pt;}
.y1f6{bottom:332.986667pt;}
.y1bd{bottom:333.780747pt;}
.y215{bottom:333.816293pt;}
.yc4{bottom:335.573333pt;}
.yc6{bottom:335.573733pt;}
.y15e{bottom:336.543867pt;}
.y97{bottom:337.173733pt;}
.y71{bottom:337.173867pt;}
.y22e{bottom:337.630667pt;}
.y112{bottom:337.641600pt;}
.y297{bottom:340.666400pt;}
.y191{bottom:340.783840pt;}
.y260{bottom:341.087973pt;}
.y27a{bottom:341.506667pt;}
.y12e{bottom:342.843200pt;}
.y4b{bottom:343.921067pt;}
.ye9{bottom:345.967067pt;}
.yeb{bottom:345.967467pt;}
.y2bf{bottom:350.106400pt;}
.y15d{bottom:350.943467pt;}
.y15f{bottom:350.943867pt;}
.y70{bottom:351.573333pt;}
.y98{bottom:351.573733pt;}
.y72{bottom:351.573867pt;}
.y111{bottom:352.041200pt;}
.y113{bottom:352.041600pt;}
.y1ca{bottom:352.187840pt;}
.y1bc{bottom:352.190187pt;}
.y214{bottom:352.262213pt;}
.y1f5{bottom:354.780587pt;}
.y25f{bottom:355.806533pt;}
.y17{bottom:356.529200pt;}
.y12d{bottom:357.242667pt;}
.y12f{bottom:357.243067pt;}
.y190{bottom:359.189920pt;}
.ye8{bottom:361.967067pt;}
.y4a{bottom:362.587733pt;}
.y22d{bottom:364.031307pt;}
.y1c9{bottom:366.906400pt;}
.y1bb{bottom:370.596267pt;}
.y213{bottom:370.668293pt;}
.ya3{bottom:372.126000pt;}
.y16{bottom:372.529200pt;}
.y1f4{bottom:373.162347pt;}
.y296{bottom:373.787840pt;}
.y279{bottom:374.788107pt;}
.y2be{bottom:376.506400pt;}
.y25e{bottom:376.571760pt;}
.y18f{bottom:377.596000pt;}
.y95{bottom:377.866667pt;}
.y10f{bottom:378.334533pt;}
.y49{bottom:381.254400pt;}
.y22c{bottom:382.437387pt;}
.y12b{bottom:383.536000pt;}
.y1c8{bottom:387.706400pt;}
.y295{bottom:388.506400pt;}
.y15{bottom:388.529200pt;}
.y212{bottom:389.074373pt;}
.y1ba{bottom:389.161707pt;}
.y278{bottom:389.506667pt;}
.y1f3{bottom:391.568427pt;}
.y94{bottom:392.266267pt;}
.y96{bottom:392.266667pt;}
.y10e{bottom:392.734133pt;}
.y110{bottom:392.734533pt;}
.ya2{bottom:392.926000pt;}
.y15b{bottom:393.236800pt;}
.ycd{bottom:393.866667pt;}
.y6e{bottom:393.866800pt;}
.y2bd{bottom:395.066400pt;}
.y18e{bottom:396.002080pt;}
.y12a{bottom:397.935600pt;}
.y12c{bottom:397.936000pt;}
.y48{bottom:399.921067pt;}
.y22b{bottom:400.843467pt;}
.ye6{bottom:404.260400pt;}
.y211{bottom:407.480453pt;}
.y15a{bottom:407.636400pt;}
.y15c{bottom:407.636800pt;}
.y6d{bottom:408.266267pt;}
.y6f{bottom:408.266667pt;}
.y10d{bottom:408.734133pt;}
.y294{bottom:409.786400pt;}
.y1f2{bottom:409.974507pt;}
.y277{bottom:410.946667pt;}
.ya1{bottom:413.726133pt;}
.y129{bottom:413.935600pt;}
.y18d{bottom:414.408160pt;}
.y1b9{bottom:415.402987pt;}
.y47{bottom:418.587733pt;}
.ye5{bottom:418.660000pt;}
.ye7{bottom:418.660400pt;}
.y22a{bottom:419.408907pt;}
.y2bc{bottom:421.466400pt;}
.y210{bottom:425.886533pt;}
.y1f1{bottom:428.380587pt;}
.y18c{bottom:432.814240pt;}
.y1b8{bottom:433.809067pt;}
.y6b{bottom:434.559600pt;}
.y46{bottom:437.254400pt;}
.y229{bottom:437.814987pt;}
.ye3{bottom:444.953333pt;}
.y1f0{bottom:446.786667pt;}
.y2bb{bottom:447.859040pt;}
.y6a{bottom:448.959200pt;}
.y6c{bottom:448.959600pt;}
.y158{bottom:449.929733pt;}
.ycb{bottom:450.559600pt;}
.y10b{bottom:451.027467pt;}
.y18b{bottom:451.220320pt;}
.y1b7{bottom:452.215147pt;}
.y20f{bottom:452.446533pt;}
.y45{bottom:455.921067pt;}
.y228{bottom:456.048427pt;}
.y127{bottom:456.228933pt;}
.ye2{bottom:459.352933pt;}
.ye4{bottom:459.353333pt;}
.y157{bottom:464.329333pt;}
.y159{bottom:464.329733pt;}
.y69{bottom:464.959200pt;}
.ycc{bottom:464.959600pt;}
.y10a{bottom:465.427067pt;}
.y10c{bottom:465.427467pt;}
.y18a{bottom:469.626400pt;}
.y1b6{bottom:470.621227pt;}
.y126{bottom:470.628533pt;}
.y128{bottom:470.628933pt;}
.y1ef{bottom:473.168427pt;}
.y2ba{bottom:474.100320pt;}
.y227{bottom:474.454507pt;}
.y44{bottom:474.587733pt;}
.ye1{bottom:475.352933pt;}
.y20e{bottom:479.966533pt;}
.y14{bottom:484.529200pt;}
.y189{bottom:488.506400pt;}
.y1b5{bottom:489.169013pt;}
.yc2{bottom:491.252533pt;}
.y1ee{bottom:491.574507pt;}
.yb2{bottom:492.134400pt;}
.y2b9{bottom:492.506400pt;}
.y226{bottom:492.860587pt;}
.y43{bottom:493.254400pt;}
.y13{bottom:500.529200pt;}
.ydf{bottom:501.646267pt;}
.y2a{bottom:503.046267pt;}
.yc1{bottom:505.652133pt;}
.yc3{bottom:505.652533pt;}
.yb1{bottom:506.533067pt;}
.yb3{bottom:506.534400pt;}
.y155{bottom:506.622667pt;}
.y67{bottom:507.252533pt;}
.y1b4{bottom:507.575093pt;}
.y108{bottom:507.720400pt;}
.y20d{bottom:508.926533pt;}
.y1ed{bottom:509.980587pt;}
.y225{bottom:511.266667pt;}
.y42{bottom:511.921067pt;}
.y125{bottom:512.921867pt;}
.yde{bottom:516.045867pt;}
.ye0{bottom:516.046267pt;}
.y12{bottom:516.529200pt;}
.y188{bottom:518.223147pt;}
.y2b8{bottom:520.186400pt;}
.y154{bottom:521.022267pt;}
.y156{bottom:521.022667pt;}
.y66{bottom:521.652133pt;}
.y68{bottom:521.652533pt;}
.y107{bottom:522.120000pt;}
.y109{bottom:522.120400pt;}
.y29{bottom:522.246400pt;}
.y1b3{bottom:525.808533pt;}
.y124{bottom:527.321867pt;}
.y1ec{bottom:528.374613pt;}
.y41{bottom:530.587733pt;}
.ydd{bottom:532.045867pt;}
.y11{bottom:532.529200pt;}
.y20c{bottom:542.047973pt;}
.y1b2{bottom:544.214613pt;}
.y224{bottom:544.548107pt;}
.y187{bottom:544.623787pt;}
.y1eb{bottom:546.780693pt;}
.y152{bottom:547.315600pt;}
.y120{bottom:547.945467pt;}
.y105{bottom:548.413333pt;}
.y10{bottom:548.529200pt;}
.y2b7{bottom:549.055147pt;}
.y40{bottom:549.254400pt;}
.yaf{bottom:556.386400pt;}
.y20b{bottom:556.766533pt;}
.y223{bottom:559.266667pt;}
.y28{bottom:560.646267pt;}
.y151{bottom:561.715067pt;}
.y153{bottom:561.715600pt;}
.y121{bottom:562.344933pt;}
.y11f{bottom:562.345467pt;}
.y1b1{bottom:562.647253pt;}
.y104{bottom:562.812933pt;}
.y106{bottom:562.813333pt;}
.y64{bottom:563.945467pt;}
.y1ea{bottom:565.189653pt;}
.y3f{bottom:567.921067pt;}
.yae{bottom:570.784933pt;}
.yb0{bottom:570.786400pt;}
.y186{bottom:570.891627pt;}
.ydb{bottom:574.339200pt;}
.y2b6{bottom:575.322987pt;}
.y150{bottom:577.715067pt;}
.y20a{bottom:577.744880pt;}
.y93{bottom:578.344933pt;}
.y63{bottom:578.345067pt;}
.y65{bottom:578.345467pt;}
.y103{bottom:578.812933pt;}
.y27{bottom:579.312933pt;}
.y222{bottom:580.249813pt;}
.yf{bottom:580.529200pt;}
.y1b0{bottom:581.053333pt;}
.y1e9{bottom:583.595733pt;}
.y3e{bottom:586.587733pt;}
.y123{bottom:587.193733pt;}
.yda{bottom:588.738800pt;}
.ydc{bottom:588.739200pt;}
.y185{bottom:589.297707pt;}
.y2b5{bottom:593.729067pt;}
.ye{bottom:596.529200pt;}
.y26{bottom:597.979600pt;}
.y1e8{bottom:602.001813pt;}
.y91{bottom:604.638400pt;}
.y3d{bottom:605.254400pt;}
.y184{bottom:607.703787pt;}
.y122{bottom:607.998000pt;}
.y1af{bottom:608.733333pt;}
.y2b4{bottom:612.135147pt;}
.yd{bottom:612.529200pt;}
.y25{bottom:616.646267pt;}
.y90{bottom:619.038000pt;}
.y92{bottom:619.038267pt;}
.y14e{bottom:620.008400pt;}
.y1e7{bottom:620.407893pt;}
.y61{bottom:620.638400pt;}
.y101{bottom:621.106267pt;}
.y3c{bottom:623.921067pt;}
.y183{bottom:626.109867pt;}
.yc{bottom:628.529200pt;}
.y2b3{bottom:630.541227pt;}
.yd8{bottom:631.032133pt;}
.y14d{bottom:634.408000pt;}
.y14f{bottom:634.408400pt;}
.y60{bottom:635.038000pt;}
.yad{bottom:635.038267pt;}
.y62{bottom:635.038400pt;}
.y24{bottom:635.312933pt;}
.y100{bottom:635.505867pt;}
.y102{bottom:635.506267pt;}
.y1ae{bottom:637.460373pt;}
.y1e6{bottom:638.961653pt;}
.y182{bottom:644.515947pt;}
.yb{bottom:644.529200pt;}
.yd7{bottom:645.431600pt;}
.yd9{bottom:645.432133pt;}
.y2b2{bottom:648.947307pt;}
.y23{bottom:653.979600pt;}
.y1e5{bottom:657.195093pt;}
.y5f{bottom:661.331333pt;}
.y3b{bottom:662.321067pt;}
.y181{bottom:662.922027pt;}
.y1ad{bottom:663.861013pt;}
.y2b1{bottom:667.353387pt;}
.y22{bottom:672.646267pt;}
.y2d6{bottom:675.394187pt;}
.y1e4{bottom:675.601173pt;}
.y8f{bottom:675.730800pt;}
.y5e{bottom:675.731333pt;}
.y14b{bottom:676.701467pt;}
.yc0{bottom:677.331333pt;}
.yfe{bottom:677.799200pt;}
.y3a{bottom:680.987733pt;}
.y180{bottom:681.328107pt;}
.y1ac{bottom:682.267093pt;}
.y293{bottom:685.746187pt;}
.y276{bottom:685.958773pt;}
.yd6{bottom:687.725067pt;}
.y2d5{bottom:690.599787pt;}
.y14a{bottom:691.100933pt;}
.y14c{bottom:691.101333pt;}
.y8e{bottom:691.730800pt;}
.y5d{bottom:691.731333pt;}
.yfd{bottom:692.198800pt;}
.yff{bottom:692.199200pt;}
.ya{bottom:692.529200pt;}
.y2b0{bottom:693.754027pt;}
.y25d{bottom:693.884080pt;}
.y1e3{bottom:694.007253pt;}
.y39{bottom:699.654400pt;}
.y17f{bottom:699.734187pt;}
.y1ab{bottom:700.673173pt;}
.yd5{bottom:702.124933pt;}
.y292{bottom:704.311627pt;}
.y275{bottom:704.364853pt;}
.y9{bottom:708.529200pt;}
.y21{bottom:711.046267pt;}
.y2af{bottom:712.160107pt;}
.y25c{bottom:712.290160pt;}
.y1e2{bottom:712.401813pt;}
.y2d4{bottom:717.000427pt;}
.yab{bottom:718.024133pt;}
.y17e{bottom:718.299627pt;}
.y38{bottom:718.321067pt;}
.y1aa{bottom:719.079253pt;}
.y291{bottom:722.545067pt;}
.y274{bottom:722.770933pt;}
.y8{bottom:724.529200pt;}
.y20{bottom:727.046267pt;}
.y2ae{bottom:730.566187pt;}
.y25b{bottom:730.696240pt;}
.y1e1{bottom:730.807893pt;}
.y5c{bottom:731.404000pt;}
.yaa{bottom:732.423733pt;}
.yac{bottom:732.424133pt;}
.y148{bottom:733.394267pt;}
.y8c{bottom:734.024133pt;}
.yfb{bottom:734.492133pt;}
.y2d3{bottom:735.406507pt;}
.y17d{bottom:736.533067pt;}
.y37{bottom:736.987733pt;}
.y1a9{bottom:737.485333pt;}
.y7{bottom:740.529200pt;}
.y290{bottom:740.951147pt;}
.y273{bottom:741.177013pt;}
.y147{bottom:747.793867pt;}
.y149{bottom:747.794267pt;}
.y8b{bottom:748.423733pt;}
.y8d{bottom:748.424133pt;}
.yfa{bottom:748.891600pt;}
.yfc{bottom:748.892133pt;}
.y24d{bottom:748.946347pt;}
.y2ad{bottom:748.972267pt;}
.y25a{bottom:749.102320pt;}
.y1e0{bottom:749.349013pt;}
.y5b{bottom:753.417333pt;}
.y36{bottom:755.654400pt;}
.y17c{bottom:755.733067pt;}
.yd4{bottom:755.760800pt;}
.y1a8{bottom:755.891413pt;}
.y28f{bottom:759.357227pt;}
.y272{bottom:759.583093pt;}
.y2d2{bottom:761.966507pt;}
.y24c{bottom:767.352427pt;}
.y2ac{bottom:767.378347pt;}
.y259{bottom:767.508400pt;}
.y1df{bottom:767.582453pt;}
.y6{bottom:772.529200pt;}
.y5a{bottom:774.217333pt;}
.y1a7{bottom:774.297493pt;}
.y35{bottom:774.321067pt;}
.y89{bottom:774.717067pt;}
.yd3{bottom:776.556667pt;}
.y28e{bottom:777.763307pt;}
.y271{bottom:777.989173pt;}
.y2d1{bottom:780.372587pt;}
.y17b{bottom:785.173067pt;}
.y24b{bottom:785.758507pt;}
.y2ab{bottom:785.784427pt;}
.y258{bottom:785.914480pt;}
.y88{bottom:789.116667pt;}
.y8a{bottom:789.117067pt;}
.y145{bottom:790.087200pt;}
.yca{bottom:790.717067pt;}
.yf8{bottom:791.184933pt;}
.y1a6{bottom:792.743413pt;}
.y34{bottom:792.987733pt;}
.y1de{bottom:794.022933pt;}
.y28d{bottom:796.209227pt;}
.y270{bottom:796.435093pt;}
.y24a{bottom:804.204427pt;}
.y144{bottom:804.486800pt;}
.y146{bottom:804.487200pt;}
.y257{bottom:804.519760pt;}
.y87{bottom:805.116667pt;}
.ybf{bottom:805.117067pt;}
.y17a{bottom:805.537067pt;}
.yf7{bottom:805.583467pt;}
.yf9{bottom:805.584933pt;}
.y2d0{bottom:806.813067pt;}
.y1a5{bottom:811.308853pt;}
.y33{bottom:811.654400pt;}
.y2aa{bottom:812.224907pt;}
.y1dd{bottom:812.429013pt;}
.y28c{bottom:814.615307pt;}
.y26f{bottom:814.841173pt;}
.y179{bottom:822.013067pt;}
.y249{bottom:822.610507pt;}
.y256{bottom:822.747120pt;}
.y1a4{bottom:829.542293pt;}
.y32{bottom:830.321067pt;}
.y2a9{bottom:830.630987pt;}
.y142{bottom:830.780133pt;}
.y1dc{bottom:830.835093pt;}
.y85{bottom:831.410000pt;}
.y28b{bottom:833.021387pt;}
.y2cf{bottom:833.053067pt;}
.y26e{bottom:833.247253pt;}
.y178{bottom:839.451787pt;}
.y248{bottom:841.016587pt;}
.y255{bottom:841.134320pt;}
.y59{bottom:843.735467pt;}
.y141{bottom:845.179733pt;}
.y143{bottom:845.180133pt;}
.y84{bottom:845.809600pt;}
.y86{bottom:845.810000pt;}
.ya8{bottom:847.410000pt;}
.y31{bottom:848.987733pt;}
.y2a8{bottom:849.037067pt;}
.y1db{bottom:849.241173pt;}
.y209{bottom:849.307600pt;}
.y2ce{bottom:851.613067pt;}
.y26d{bottom:851.653333pt;}
.yf6{bottom:855.476800pt;}
.y1a3{bottom:855.942933pt;}
.y58{bottom:858.135467pt;}
.y247{bottom:859.422667pt;}
.y28a{bottom:859.581387pt;}
.y140{bottom:861.179733pt;}
.y83{bottom:861.809600pt;}
.ya9{bottom:861.810000pt;}
.y177{bottom:865.693067pt;}
.y2a7{bottom:867.443147pt;}
.y254{bottom:867.534960pt;}
.y208{bottom:867.541040pt;}
.y1da{bottom:867.647253pt;}
.y30{bottom:867.654400pt;}
.y2cd{bottom:869.853067pt;}
.yf5{bottom:869.876800pt;}
.y1a2{bottom:874.349013pt;}
.y246{bottom:877.828747pt;}
.y26c{bottom:878.187733pt;}
.y176{bottom:883.445067pt;}
.y289{bottom:885.822667pt;}
.y253{bottom:885.941040pt;}
.y207{bottom:885.947120pt;}
.y2a6{bottom:886.008587pt;}
.y1d9{bottom:886.029013pt;}
.y2f{bottom:886.321067pt;}
.ya6{bottom:888.102933pt;}
.y2cc{bottom:888.253067pt;}
.y1a1{bottom:892.755093pt;}
.y245{bottom:896.234827pt;}
.ya5{bottom:902.502533pt;}
.ya7{bottom:902.502933pt;}
.y13e{bottom:903.473067pt;}
.y81{bottom:904.102933pt;}
.y288{bottom:904.228747pt;}
.y2a5{bottom:904.242027pt;}
.y206{bottom:904.328747pt;}
.y252{bottom:904.347120pt;}
.y26b{bottom:904.429013pt;}
.y1d8{bottom:904.435093pt;}
.y2e{bottom:904.987733pt;}
.y175{bottom:910.973067pt;}
.y1a0{bottom:911.161173pt;}
.y244{bottom:914.640907pt;}
.y2cb{bottom:914.812907pt;}
.y13d{bottom:917.872533pt;}
.y13f{bottom:917.873067pt;}
.y80{bottom:918.502533pt;}
.y82{bottom:918.502933pt;}
.y287{bottom:922.634827pt;}
.y205{bottom:922.734827pt;}
.y2a4{bottom:922.807467pt;}
.y26a{bottom:922.835093pt;}
.y1d7{bottom:922.841173pt;}
.yf4{bottom:924.831600pt;}
.y19f{bottom:929.567253pt;}
.y5{bottom:932.529200pt;}
.y243{bottom:933.046987pt;}
.y174{bottom:938.805067pt;}
.y286{bottom:941.040907pt;}
.y2ca{bottom:941.054187pt;}
.y204{bottom:941.140907pt;}
.y2a3{bottom:941.213547pt;}
.y221{bottom:941.241173pt;}
.y1d6{bottom:941.247253pt;}
.y2d{bottom:943.387733pt;}
.y7f{bottom:944.795867pt;}
.yf3{bottom:945.631467pt;}
.y19e{bottom:947.973333pt;}
.y4{bottom:948.529200pt;}
.y242{bottom:951.453067pt;}
.y7e{bottom:959.195867pt;}
.y2c{bottom:959.387733pt;}
.y23a{bottom:959.446987pt;}
.y203{bottom:959.546987pt;}
.y2a2{bottom:959.619627pt;}
.y1d5{bottom:959.647253pt;}
.y13c{bottom:960.166000pt;}
.ya4{bottom:960.795867pt;}
.y3{bottom:964.529200pt;}
.y173{bottom:966.333067pt;}
.y13b{bottom:974.565867pt;}
.y7d{bottom:975.195867pt;}
.y19d{bottom:975.653333pt;}
.y239{bottom:977.853067pt;}
.y202{bottom:977.953067pt;}
.y241{bottom:978.013067pt;}
.y1d4{bottom:978.053333pt;}
.y2b{bottom:978.587733pt;}
.y2{bottom:980.529200pt;}
.y172{bottom:990.982773pt;}
.y171{bottom:1003.139253pt;}
.y23f{bottom:1012.755733pt;}
.y19a{bottom:1012.956000pt;}
.y170{bottom:1015.488693pt;}
.y23e{bottom:1026.519733pt;}
.y199{bottom:1026.720000pt;}
.y16f{bottom:1027.805973pt;}
.y16e{bottom:1039.962453pt;}
.y201{bottom:1040.062587pt;}
.y198{bottom:1040.162720pt;}
.y16d{bottom:1052.279733pt;}
.y200{bottom:1052.379867pt;}
.y197{bottom:1052.480000pt;}
.h1a{height:29.825625pt;}
.h2{height:38.250000pt;}
.h12{height:38.357500pt;}
.ha{height:38.441250pt;}
.h19{height:39.243750pt;}
.h13{height:42.937500pt;}
.h7{height:43.031250pt;}
.h10{height:43.096250pt;}
.h1b{height:43.265625pt;}
.h2a{height:43.270958pt;}
.h11{height:47.517500pt;}
.hd{height:47.621250pt;}
.h3{height:47.812500pt;}
.h2e{height:47.880625pt;}
.he{height:47.958438pt;}
.h4{height:48.151042pt;}
.h9{height:48.153175pt;}
.hf{height:53.158750pt;}
.h6{height:57.375000pt;}
.h5{height:57.781250pt;}
.h1c{height:57.862500pt;}
.h17{height:57.881700pt;}
.h1d{height:57.886820pt;}
.h2d{height:57.891940pt;}
.h1f{height:57.908580pt;}
.h20{height:57.909220pt;}
.h22{height:57.910713pt;}
.h25{height:57.911140pt;}
.h27{height:57.930980pt;}
.h15{height:57.933113pt;}
.h18{height:57.935460pt;}
.h28{height:57.935993pt;}
.h29{height:57.937487pt;}
.h21{height:57.957220pt;}
.h1e{height:57.959780pt;}
.h23{height:57.960313pt;}
.h24{height:57.981540pt;}
.h16{height:58.008420pt;}
.h26{height:58.030180pt;}
.h2c{height:58.130020pt;}
.h2b{height:58.184275pt;}
.h8{height:62.596354pt;}
.hc{height:70.265625pt;}
.hb{height:86.671875pt;}
.h14{height:1024.252000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.385867pt;}
.x28{left:118.719200pt;}
.x4b{left:127.362400pt;}
.x24{left:132.283467pt;}
.x32{left:135.339600pt;}
.x29{left:137.616800pt;}
.x39{left:149.740400pt;}
.x2f{left:159.908533pt;}
.x49{left:162.746667pt;}
.x4a{left:165.308747pt;}
.x3f{left:173.786667pt;}
.x3d{left:190.746667pt;}
.x1e{left:196.388400pt;}
.x26{left:203.703867pt;}
.x34{left:210.474667pt;}
.x13{left:211.935067pt;}
.x20{left:219.988400pt;}
.xc{left:221.200133pt;}
.x15{left:222.321733pt;}
.x3c{left:228.186667pt;}
.x22{left:233.321733pt;}
.xb{left:234.608133pt;}
.x1b{left:240.495067pt;}
.x1f{left:241.615067pt;}
.x19{left:243.455067pt;}
.x18{left:244.921733pt;}
.x3e{left:246.426667pt;}
.x16{left:250.855067pt;}
.x1d{left:253.455067pt;}
.x17{left:255.295067pt;}
.x14{left:258.761733pt;}
.x1c{left:259.761733pt;}
.x23{left:262.841733pt;}
.x1a{left:271.255067pt;}
.x45{left:272.997067pt;}
.x21{left:277.908400pt;}
.x40{left:284.066667pt;}
.x10{left:290.853600pt;}
.x3{left:298.174667pt;}
.xe{left:306.616000pt;}
.x27{left:308.223867pt;}
.xf{left:314.586933pt;}
.xd{left:316.417467pt;}
.x8{left:319.040267pt;}
.xa{left:320.880267pt;}
.x6{left:323.106933pt;}
.x4{left:325.701333pt;}
.x25{left:327.328933pt;}
.x4c{left:329.666667pt;}
.x12{left:331.069067pt;}
.x7{left:333.106933pt;}
.x5{left:335.518400pt;}
.x9{left:337.933600pt;}
.x11{left:341.986933pt;}
.x47{left:356.327467pt;}
.x41{left:397.026667pt;}
.x43{left:427.423733pt;}
.x48{left:576.414773pt;}
.x33{left:644.653467pt;}
.x35{left:645.643067pt;}
.x36{left:646.632667pt;}
.x42{left:648.234133pt;}
.x2b{left:652.068800pt;}
.x2c{left:653.058400pt;}
.x3a{left:657.195200pt;}
.x2a{left:659.484267pt;}
.x37{left:663.122267pt;}
.x30{left:664.309733pt;}
.x38{left:666.085733pt;}
.x2e{left:667.273333pt;}
.x2d{left:670.236800pt;}
.x31{left:673.200400pt;}
.x1{left:677.351333pt;}
.x46{left:678.516907pt;}
.x44{left:679.463733pt;}
.x3b{left:680.613333pt;}
}




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