
    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_0bfbd4b67837d37c18b316b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f63c0de9aa9186b013621284.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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_b97e35db0a82106b6814643b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aff717f9b55d6475f191498e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_29bc56eb972e0b04f49a32b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_bacd1b69669a51e220ed964c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_98977b21e53923594a0117dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_73e6c4de65a521d2574f78f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.982422;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_4fd2583b58906f5ae263fefa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_f1d0f59b6b3e8cc1ffc8e003.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_de41284eae276b4bac0b3177.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.755859;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_1c831302f13241b10c13f1d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.585840;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_b40dd5d5f5e141557e1e903a.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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_e760903afaa2b7fb1161490f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911621;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_e94df5a39b3dcaf554ce26d5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712402;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_c4dc19e990cc929162828412.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887971;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_bb6cef3a8c36900b4bec2db2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.063477;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_633eba2b7437253dfb923bbd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909668;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_f9f26c641d81fec83b71f9f0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906250;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_970fb1d98482d0ee2bf9c4df.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.897461;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_543b3390d62b59aa5e3ee69e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.053000;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_7998e28d811b87c7e470bd05.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909668;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_eec32ce8fbaace50532840c2.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.962402;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_1b7a8afd1d40d9641d646ff5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984863;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_c5573ab8abe063af858c82a6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.450684;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_527f9601cebd760e5c9767d5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.699219;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_bc2812007903d0f3aac85625.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908691;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_209c4b8b9a4586c46344db91.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_cc8cdd5507f3ddde94465f36.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.053000;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_927fdf4a75da2671e472b055.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.659180;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;}
.m8{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,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);}
.v2{vertical-align:-18.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v3{vertical-align:28.799820px;}
.v4{vertical-align:41.037948px;}
.ls10{letter-spacing:-5.508000px;}
.ls70{letter-spacing:-5.040432px;}
.ls72{letter-spacing:-4.667256px;}
.ls80{letter-spacing:-4.319640px;}
.ls7d{letter-spacing:-3.966912px;}
.ls7e{letter-spacing:-3.961800px;}
.ls7f{letter-spacing:-3.609072px;}
.ls8f{letter-spacing:-3.603960px;}
.ls7b{letter-spacing:-3.598848px;}
.ls6{letter-spacing:-3.595500px;}
.ls26{letter-spacing:-3.297996px;}
.ls84{letter-spacing:-3.251232px;}
.ls18{letter-spacing:-3.246120px;}
.ls6c{letter-spacing:-3.241008px;}
.ls3a{letter-spacing:-2.946384px;}
.ls28{letter-spacing:-2.931552px;}
.ls6a{letter-spacing:-2.893392px;}
.ls12{letter-spacing:-2.889216px;}
.ls76{letter-spacing:-2.888280px;}
.ls5{letter-spacing:-2.884500px;}
.ls64{letter-spacing:-2.883168px;}
.ls7a{letter-spacing:-2.878056px;}
.ls87{letter-spacing:-2.872944px;}
.ls8d{letter-spacing:-2.867832px;}
.ls37{letter-spacing:-2.582352px;}
.ls25{letter-spacing:-2.565108px;}
.ls8e{letter-spacing:-2.530440px;}
.ls14{letter-spacing:-2.529792px;}
.ls4e{letter-spacing:-2.528064px;}
.ls66{letter-spacing:-2.525328px;}
.ls63{letter-spacing:-2.520216px;}
.lsd{letter-spacing:-2.519100px;}
.ls48{letter-spacing:-2.518488px;}
.ls67{letter-spacing:-2.515104px;}
.ls6d{letter-spacing:-2.509992px;}
.ls81{letter-spacing:-2.325960px;}
.ls5a{letter-spacing:-2.218320px;}
.ls29{letter-spacing:-2.212632px;}
.ls2f{letter-spacing:-2.206944px;}
.ls11{letter-spacing:-2.170368px;}
.ls68{letter-spacing:-2.167488px;}
.ls6e{letter-spacing:-2.162376px;}
.ls85{letter-spacing:-2.157264px;}
.ls89{letter-spacing:-2.155608px;}
.ls83{letter-spacing:-2.152152px;}
.ls78{letter-spacing:-2.147040px;}
.ls58{letter-spacing:-2.104560px;}
.ls35{letter-spacing:-2.081808px;}
.ls36{letter-spacing:-2.024928px;}
.ls59{letter-spacing:-1.990800px;}
.ls8a{letter-spacing:-1.927224px;}
.ls8b{letter-spacing:-1.865880px;}
.ls2d{letter-spacing:-1.848600px;}
.ls7{letter-spacing:-1.842912px;}
.ls27{letter-spacing:-1.832220px;}
.ls31{letter-spacing:-1.831536px;}
.ls6b{letter-spacing:-1.804536px;}
.ls69{letter-spacing:-1.799424px;}
.ls13{letter-spacing:-1.797120px;}
.ls21{letter-spacing:-1.794312px;}
.ls73{letter-spacing:-1.789200px;}
.ls8{letter-spacing:-1.478880px;}
.ls2c{letter-spacing:-1.473192px;}
.ls77{letter-spacing:-1.451808px;}
.ls1a{letter-spacing:-1.446696px;}
.ls1e{letter-spacing:-1.441584px;}
.ls57{letter-spacing:-1.441188px;}
.ls1b{letter-spacing:-1.436472px;}
.ls16{letter-spacing:-1.435500px;}
.ls20{letter-spacing:-1.431360px;}
.ls79{letter-spacing:-1.426248px;}
.ls3f{letter-spacing:-1.382184px;}
.ls40{letter-spacing:-1.291176px;}
.ls24{letter-spacing:-1.115604px;}
.ls5c{letter-spacing:-1.114848px;}
.lsa{letter-spacing:-1.109160px;}
.ls2e{letter-spacing:-1.103472px;}
.ls4d{letter-spacing:-1.086876px;}
.ls23{letter-spacing:-1.083744px;}
.ls15{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.078632px;}
.ls74{letter-spacing:-1.073520px;}
.ls82{letter-spacing:-1.068408px;}
.ls3b{letter-spacing:-0.932832px;}
.ls3c{letter-spacing:-0.853200px;}
.ls41{letter-spacing:-0.745128px;}
.ls2a{letter-spacing:-0.739440px;}
.ls9{letter-spacing:-0.733752px;}
.ls44{letter-spacing:-0.727776px;}
.ls65{letter-spacing:-0.725904px;}
.ls6f{letter-spacing:-0.720792px;}
.lse{letter-spacing:-0.719316px;}
.ls19{letter-spacing:-0.715680px;}
.ls1d{letter-spacing:-0.710568px;}
.ls34{letter-spacing:-0.375408px;}
.ls2b{letter-spacing:-0.369720px;}
.ls47{letter-spacing:-0.368676px;}
.lsc{letter-spacing:-0.366444px;}
.ls45{letter-spacing:-0.363888px;}
.ls32{letter-spacing:-0.255960px;}
.ls33{letter-spacing:-0.221832px;}
.ls5d{letter-spacing:-0.170640px;}
.ls30{letter-spacing:-0.093600px;}
.ls5e{letter-spacing:-0.079632px;}
.ls3{letter-spacing:-0.072000px;}
.ls3e{letter-spacing:-0.064800px;}
.ls4f{letter-spacing:-0.043200px;}
.ls60{letter-spacing:-0.028800px;}
.ls39{letter-spacing:-0.011376px;}
.ls46{letter-spacing:-0.009576px;}
.ls4{letter-spacing:-0.005688px;}
.ls43{letter-spacing:-0.004788px;}
.lsb{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.004788px;}
.ls88{letter-spacing:0.005112px;}
.ls3d{letter-spacing:0.009576px;}
.ls1f{letter-spacing:0.010224px;}
.ls51{letter-spacing:0.012636px;}
.ls53{letter-spacing:0.349524px;}
.ls4a{letter-spacing:0.359100px;}
.ls38{letter-spacing:0.364032px;}
.ls4b{letter-spacing:0.713412px;}
.ls4c{letter-spacing:0.722988px;}
.ls71{letter-spacing:6.124176px;}
.ls7c{letter-spacing:6.487128px;}
.ls61{letter-spacing:8.469432px;}
.ls86{letter-spacing:9.007344px;}
.ls22{letter-spacing:9.365184px;}
.ls17{letter-spacing:9.499392px;}
.ls56{letter-spacing:10.433124px;}
.ls75{letter-spacing:11.164608px;}
.lsf{letter-spacing:11.574900px;}
.ls8c{letter-spacing:14.763456px;}
.ls2{letter-spacing:20.520864px;}
.ls54{letter-spacing:29.065680px;}
.ls55{letter-spacing:77.048496px;}
.ls50{letter-spacing:126.709632px;}
.ls5b{letter-spacing:162.715392px;}
.ls62{letter-spacing:185.041836px;}
.ls5f{letter-spacing:196.552188px;}
.ls52{letter-spacing:410.029956px;}
.ls42{letter-spacing:497.398536px;}
.ls1{letter-spacing:689.399100px;}
.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;}
}
.ws44{word-spacing:-208.426428px;}
.ws42{word-spacing:-174.589632px;}
.ws39{word-spacing:-29.077056px;}
.wsf{word-spacing:-17.706600px;}
.ws2e{word-spacing:-16.207380px;}
.ws2c{word-spacing:-14.333760px;}
.ws12{word-spacing:-14.328072px;}
.ws40{word-spacing:-14.322384px;}
.ws7{word-spacing:-12.933360px;}
.ws31{word-spacing:-12.223764px;}
.ws43{word-spacing:-11.883816px;}
.ws1f{word-spacing:-11.874240px;}
.ws23{word-spacing:-11.869452px;}
.ws3a{word-spacing:-11.864664px;}
.ws8{word-spacing:-11.854728px;}
.ws6{word-spacing:-11.496888px;}
.ws47{word-spacing:-11.491776px;}
.ws5a{word-spacing:-11.486664px;}
.ws9{word-spacing:-11.139048px;}
.ws55{word-spacing:-11.128824px;}
.ws54{word-spacing:-10.770984px;}
.wsa{word-spacing:-10.656360px;}
.ws2{word-spacing:-10.441548px;}
.ws1{word-spacing:-10.079316px;}
.ws5{word-spacing:-9.687240px;}
.ws45{word-spacing:-8.844840px;}
.wsb{word-spacing:-8.824140px;}
.ws57{word-spacing:-2.177712px;}
.ws51{word-spacing:-1.799424px;}
.ws59{word-spacing:-1.456920px;}
.ws53{word-spacing:-1.451808px;}
.ws4c{word-spacing:-1.441584px;}
.ws4f{word-spacing:-1.083744px;}
.ws4e{word-spacing:-1.078632px;}
.ws27{word-spacing:-0.727776px;}
.ws4d{word-spacing:-0.725904px;}
.ws50{word-spacing:-0.720792px;}
.ws2b{word-spacing:-0.718200px;}
.ws52{word-spacing:-0.715680px;}
.ws10{word-spacing:-0.437400px;}
.ws16{word-spacing:-0.386784px;}
.ws17{word-spacing:-0.375408px;}
.ws14{word-spacing:-0.369720px;}
.wse{word-spacing:-0.366444px;}
.ws3f{word-spacing:-0.364032px;}
.ws21{word-spacing:-0.363888px;}
.ws22{word-spacing:-0.359100px;}
.ws48{word-spacing:-0.352728px;}
.ws3e{word-spacing:-0.227520px;}
.ws56{word-spacing:-0.194256px;}
.ws18{word-spacing:-0.153576px;}
.ws3{word-spacing:-0.044280px;}
.ws37{word-spacing:-0.043092px;}
.ws4{word-spacing:-0.027000px;}
.ws15{word-spacing:-0.011376px;}
.wsc{word-spacing:-0.005688px;}
.ws20{word-spacing:-0.004788px;}
.ws0{word-spacing:0.000000px;}
.ws4a{word-spacing:0.005112px;}
.ws46{word-spacing:0.009576px;}
.ws13{word-spacing:0.012636px;}
.ws1b{word-spacing:0.108072px;}
.ws1a{word-spacing:0.233208px;}
.ws3d{word-spacing:0.255960px;}
.ws4b{word-spacing:0.357840px;}
.ws19{word-spacing:0.358344px;}
.ws28{word-spacing:0.359100px;}
.ws49{word-spacing:0.362952px;}
.ws2a{word-spacing:0.363888px;}
.wsd{word-spacing:0.364032px;}
.ws11{word-spacing:0.724500px;}
.ws58{word-spacing:0.725904px;}
.ws33{word-spacing:1.393308px;}
.ws30{word-spacing:72.001944px;}
.ws1d{word-spacing:75.928104px;}
.ws26{word-spacing:78.441804px;}
.ws25{word-spacing:82.411056px;}
.ws24{word-spacing:86.365944px;}
.ws3b{word-spacing:123.487308px;}
.ws3c{word-spacing:126.719208px;}
.ws2f{word-spacing:142.581852px;}
.ws1e{word-spacing:144.698148px;}
.ws29{word-spacing:151.549776px;}
.ws2d{word-spacing:153.354852px;}
.ws1c{word-spacing:166.330332px;}
.ws32{word-spacing:208.096056px;}
.ws34{word-spacing:366.128784px;}
.ws35{word-spacing:378.357336px;}
.ws36{word-spacing:378.366912px;}
.ws38{word-spacing:390.609828px;}
.ws41{word-spacing:731.132388px;}
._c{margin-left:-731.110392px;}
._8b{margin-left:-482.495544px;}
._8e{margin-left:-192.770928px;}
._80{margin-left:-185.788764px;}
._7f{margin-left:-184.677948px;}
._3d{margin-left:-76.335084px;}
._3c{margin-left:-29.071368px;}
._12{margin-left:-19.156500px;}
._f{margin-left:-18.038700px;}
._13{margin-left:-17.034300px;}
._e{margin-left:-15.884100px;}
._14{margin-left:-14.588100px;}
._15{margin-left:-12.781800px;}
._1b{margin-left:-11.548008px;}
._19{margin-left:-10.448928px;}
._1a{margin-left:-9.308952px;}
._3e{margin-left:-7.933716px;}
._8f{margin-left:-6.892560px;}
._8c{margin-left:-5.495508px;}
._6{margin-left:-4.023000px;}
._5{margin-left:-2.943000px;}
._2{margin-left:-1.449000px;}
._4{width:1.116000px;}
._9{width:2.718000px;}
._d{width:3.776400px;}
._17{width:5.845932px;}
._3{width:6.871500px;}
._a{width:8.023536px;}
._0{width:9.208872px;}
._1{width:10.704816px;}
._8{width:12.317184px;}
._18{width:13.330512px;}
._8d{width:14.573520px;}
._1c{width:15.619248px;}
._11{width:16.718400px;}
._10{width:18.030600px;}
._1e{width:19.532952px;}
._20{width:21.347064px;}
._7{width:23.089500px;}
._21{width:24.105132px;}
._16{width:25.200000px;}
._1f{width:26.857296px;}
._23{width:28.326240px;}
._1d{width:29.446776px;}
._26{width:30.550248px;}
._33{width:32.395608px;}
._24{width:33.843600px;}
._22{width:34.947072px;}
._28{width:37.182456px;}
._60{width:38.274552px;}
._b{width:41.412528px;}
._25{width:42.640848px;}
._6d{width:48.193272px;}
._27{width:49.280832px;}
._4a{width:73.787868px;}
._4d{width:77.733180px;}
._6e{width:84.447504px;}
._47{width:85.666896px;}
._38{width:90.033552px;}
._35{width:91.775196px;}
._37{width:93.204360px;}
._3b{width:96.395220px;}
._46{width:98.632800px;}
._44{width:102.233376px;}
._4e{width:106.149564px;}
._43{width:107.260776px;}
._45{width:111.953016px;}
._48{width:113.398992px;}
._77{width:114.487200px;}
._75{width:115.575984px;}
._4c{width:117.371268px;}
._49{width:124.555032px;}
._73{width:126.043884px;}
._4b{width:128.141244px;}
._42{width:134.997660px;}
._62{width:136.781604px;}
._66{width:138.598236px;}
._71{width:139.810032px;}
._32{width:141.599016px;}
._6a{width:146.871900px;}
._83{width:148.313088px;}
._67{width:150.472476px;}
._70{width:151.812684px;}
._64{width:155.480940px;}
._2c{width:156.581964px;}
._34{width:159.469128px;}
._7d{width:160.943832px;}
._36{width:162.001980px;}
._30{width:163.428804px;}
._3a{width:164.520468px;}
._2e{width:167.393268px;}
._79{width:169.056252px;}
._6c{width:172.430244px;}
._84{width:173.560212px;}
._68{width:184.677948px;}
._88{width:189.011088px;}
._63{width:196.556976px;}
._61{width:198.525852px;}
._7b{width:200.875752px;}
._86{width:204.835428px;}
._40{width:216.355356px;}
._3f{width:219.970296px;}
._53{width:225.715896px;}
._89{width:230.943492px;}
._7a{width:234.903168px;}
._29{width:249.493104px;}
._41{width:255.985632px;}
._69{width:282.581784px;}
._65{width:285.134184px;}
._6b{width:297.013212px;}
._7c{width:332.497368px;}
._2d{width:340.105212px;}
._2a{width:370.816236px;}
._56{width:377.998236px;}
._5b{width:390.149784px;}
._7e{width:399.998700px;}
._59{width:402.115392px;}
._8a{width:403.958376px;}
._55{width:409.827168px;}
._85{width:411.853788px;}
._39{width:443.488500px;}
._2b{width:486.714564px;}
._81{width:538.927704px;}
._4f{width:545.037192px;}
._82{width:554.033844px;}
._50{width:571.667652px;}
._5e{width:592.428312px;}
._31{width:596.522556px;}
._2f{width:600.831756px;}
._78{width:646.192872px;}
._74{width:665.632548px;}
._5a{width:694.608624px;}
._87{width:723.605652px;}
._58{width:743.805828px;}
._6f{width:848.146320px;}
._5f{width:911.510316px;}
._76{width:968.751252px;}
._72{width:972.710928px;}
._54{width:1051.574076px;}
._5c{width:1082.897172px;}
._52{width:1171.015128px;}
._5d{width:1176.469056px;}
._57{width:1184.393196px;}
._51{width:1201.668300px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fsc{font-size:27.000000px;}
.fsf{font-size:32.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs6{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:2.519850px;}
.y234{bottom:3.239700px;}
.y41{bottom:3.239850px;}
.y3a{bottom:4.679850px;}
.y37{bottom:5.399850px;}
.y5c{bottom:66.167850px;}
.y5{bottom:66.525004px;}
.y5e{bottom:73.817448px;}
.y59{bottom:74.178000px;}
.y5b{bottom:76.697850px;}
.y58{bottom:87.137850px;}
.y4{bottom:97.125005px;}
.y27{bottom:116.387850px;}
.y250{bottom:120.344610px;}
.y187{bottom:120.527850px;}
.y109{bottom:120.796536px;}
.y288{bottom:122.947896px;}
.y2c0{bottom:122.950896px;}
.yd4{bottom:124.028940px;}
.y8a{bottom:124.033206px;}
.y2f7{bottom:124.124934px;}
.yb1{bottom:124.304826px;}
.y163{bottom:125.836122px;}
.y2e{bottom:126.917202px;}
.y214{bottom:127.994502px;}
.y108{bottom:127.996491px;}
.y1fd{bottom:128.267526px;}
.y186{bottom:131.057850px;}
.y26{bottom:131.597850px;}
.y287{bottom:137.618058px;}
.y2bf{bottom:137.621058px;}
.y2f6{bottom:138.795096px;}
.y22{bottom:139.264499px;}
.y24f{bottom:139.514610px;}
.y1d1{bottom:139.784718px;}
.y1ea{bottom:139.786320px;}
.y185{bottom:141.587850px;}
.yd3{bottom:144.099048px;}
.y89{bottom:144.103314px;}
.yb0{bottom:144.374934px;}
.y162{bottom:145.906230px;}
.y2d{bottom:146.987310px;}
.y213{bottom:148.064610px;}
.y1fc{bottom:148.337634px;}
.y25{bottom:149.687850px;}
.y286{bottom:152.288220px;}
.y2be{bottom:152.291220px;}
.y2f5{bottom:153.465258px;}
.y24e{bottom:154.184772px;}
.y107{bottom:155.716617px;}
.y1d0{bottom:160.304889px;}
.y1e9{bottom:160.306491px;}
.y184{bottom:160.756257px;}
.y106{bottom:162.916572px;}
.yd2{bottom:164.169156px;}
.y88{bottom:164.173422px;}
.yaf{bottom:164.445042px;}
.y161{bottom:165.976338px;}
.y285{bottom:166.958382px;}
.y2c{bottom:167.057418px;}
.y212{bottom:168.134718px;}
.y1fb{bottom:168.407742px;}
.y24d{bottom:168.854934px;}
.y13f{bottom:170.113836px;}
.y1e4{bottom:170.477400px;}
.y2bd{bottom:171.461220px;}
.y2f4{bottom:172.635258px;}
.y1e6{bottom:173.536932px;}
.y13e{bottom:177.313791px;}
.y1cf{bottom:180.735285px;}
.y1ca{bottom:180.736482px;}
.y1e8{bottom:180.736887px;}
.y183{bottom:181.276428px;}
.y24c{bottom:183.525096px;}
.y1cc{bottom:183.796014px;}
.yd1{bottom:184.239264px;}
.y87{bottom:184.243530px;}
.yae{bottom:184.515150px;}
.y151{bottom:185.776122px;}
.y160{bottom:186.046446px;}
.y284{bottom:186.128382px;}
.y2bc{bottom:186.131382px;}
.y2b{bottom:187.127526px;}
.y2f3{bottom:187.305420px;}
.y24{bottom:187.397850px;}
.y1e5{bottom:187.936842px;}
.y211{bottom:188.204826px;}
.y1fa{bottom:188.477850px;}
.y105{bottom:190.546923px;}
.y19{bottom:196.933500px;}
.y104{bottom:197.746878px;}
.y1cb{bottom:198.195924px;}
.y283{bottom:200.798544px;}
.y2bb{bottom:200.801544px;}
.y1ce{bottom:201.255456px;}
.y1e7{bottom:201.257058px;}
.y182{bottom:201.796599px;}
.y24b{bottom:202.695096px;}
.yd0{bottom:204.309372px;}
.y86{bottom:204.313638px;}
.yad{bottom:204.585258px;}
.y13d{bottom:204.944142px;}
.y150{bottom:205.846230px;}
.y15f{bottom:206.116554px;}
.y2f2{bottom:206.475420px;}
.y2a{bottom:207.197634px;}
.y210{bottom:208.274934px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y13c{bottom:212.144097px;}
.y282{bottom:215.468706px;}
.y2ba{bottom:215.471706px;}
.y24a{bottom:217.365258px;}
.y2f1{bottom:221.145582px;}
.y1cd{bottom:221.775627px;}
.y1e3{bottom:221.777229px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y181{bottom:222.226995px;}
.ycf{bottom:224.379480px;}
.y85{bottom:224.383746px;}
.yac{bottom:224.655366px;}
.y103{bottom:225.467004px;}
.y14f{bottom:225.916338px;}
.y15e{bottom:226.186662px;}
.y29{bottom:227.267742px;}
.y20f{bottom:228.345042px;}
.y281{bottom:230.138868px;}
.y249{bottom:232.035420px;}
.y102{bottom:232.666959px;}
.y2b9{bottom:234.641706px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y2f0{bottom:235.815744px;}
.y13b{bottom:239.864223px;}
.y1c9{bottom:242.206023px;}
.y1e2{bottom:242.207625px;}
.y180{bottom:242.747166px;}
.y23{bottom:244.097850px;}
.yce{bottom:244.449588px;}
.y84{bottom:244.453854px;}
.yab{bottom:244.725474px;}
.y280{bottom:244.809030px;}
.y1f9{bottom:245.177850px;}
.y14e{bottom:245.986446px;}
.y15d{bottom:246.256770px;}
.y248{bottom:246.705582px;}
.y28{bottom:247.337850px;}
.y20e{bottom:248.415150px;}
.y2b8{bottom:249.311868px;}
.y1dd{bottom:252.468309px;}
.y17f{bottom:253.007850px;}
.y2ef{bottom:254.985744px;}
.y1df{bottom:255.527841px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y13a{bottom:260.384394px;}
.y101{bottom:260.387085px;}
.y1c2{bottom:261.647697px;}
.y1c8{bottom:262.726194px;}
.y1e1{bottom:262.727796px;}
.y27f{bottom:263.979030px;}
.y2b7{bottom:263.982030px;}
.ycd{bottom:264.519696px;}
.y83{bottom:264.523962px;}
.yaa{bottom:264.795582px;}
.y247{bottom:265.875582px;}
.y14d{bottom:266.056554px;}
.y15c{bottom:266.326878px;}
.y100{bottom:267.587040px;}
.y20d{bottom:268.485258px;}
.y2ee{bottom:269.655906px;}
.y1de{bottom:269.927751px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yf6{bottom:274.788192px;}
.y1c1{bottom:276.047607px;}
.y27e{bottom:278.649192px;}
.y2b6{bottom:278.652192px;}
.y246{bottom:280.545744px;}
.y139{bottom:280.814790px;}
.y1c7{bottom:283.246365px;}
.y1e0{bottom:283.247967px;}
.y2ed{bottom:284.326068px;}
.ycc{bottom:284.589804px;}
.y82{bottom:284.594070px;}
.ya9{bottom:284.865690px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y14c{bottom:286.126662px;}
.y1c4{bottom:286.217319px;}
.y15b{bottom:286.396986px;}
.y20c{bottom:288.555366px;}
.y188{bottom:289.187850px;}
.y1c0{bottom:290.447517px;}
.y27d{bottom:293.319354px;}
.y2b5{bottom:293.322354px;}
.y12f{bottom:295.215897px;}
.y245{bottom:295.215906px;}
.yff{bottom:295.217391px;}
.y2ec{bottom:298.996230px;}
.y1c3{bottom:300.617229px;}
.y138{bottom:301.334961px;}
.y1c6{bottom:303.676761px;}
.y1dc{bottom:303.678363px;}
.ycb{bottom:304.659912px;}
.y81{bottom:304.664178px;}
.y1bf{bottom:304.847427px;}
.ya8{bottom:304.935798px;}
.y14b{bottom:306.196770px;}
.y15a{bottom:306.467094px;}
.y137{bottom:308.534916px;}
.y20b{bottom:308.625474px;}
.yfd{bottom:309.617301px;}
.y244{bottom:309.886068px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y27c{bottom:312.489354px;}
.y2b4{bottom:312.492354px;}
.y1db{bottom:313.937850px;}
.y2eb{bottom:318.166230px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yfe{bottom:324.017211px;}
.y1c5{bottom:324.196932px;}
.y243{bottom:324.556230px;}
.yca{bottom:324.730020px;}
.y80{bottom:324.734286px;}
.ya7{bottom:325.005906px;}
.y14a{bottom:326.266878px;}
.y159{bottom:326.537202px;}
.y27b{bottom:327.159516px;}
.y2b3{bottom:327.162516px;}
.y20a{bottom:328.695582px;}
.y1f8{bottom:328.696554px;}
.y2ea{bottom:332.836392px;}
.y57{bottom:333.467850px;}
.y136{bottom:336.255042px;}
.y19b{bottom:337.337850px;}
.y27a{bottom:341.829678px;}
.y2b2{bottom:341.832678px;}
.y135{bottom:343.454997px;}
.y242{bottom:343.726230px;}
.yfc{bottom:344.537382px;}
.y1be{bottom:344.717103px;}
.yc9{bottom:344.800128px;}
.y7f{bottom:344.804394px;}
.ya6{bottom:345.076014px;}
.y149{bottom:346.336986px;}
.y158{bottom:346.607310px;}
.y2e9{bottom:347.506554px;}
.y10{bottom:348.133500px;}
.y209{bottom:348.765690px;}
.y1f7{bottom:348.766662px;}
.y1eb{bottom:350.117850px;}
.yfb{bottom:351.737337px;}
.y279{bottom:356.499840px;}
.y2b1{bottom:356.502840px;}
.y19a{bottom:356.593314px;}
.y241{bottom:358.396392px;}
.y2e8{bottom:362.176716px;}
.yc8{bottom:364.870236px;}
.y7e{bottom:364.874502px;}
.ya5{bottom:365.146122px;}
.y1bd{bottom:365.147499px;}
.y148{bottom:366.407094px;}
.y157{bottom:366.677418px;}
.y208{bottom:368.835798px;}
.y1f6{bottom:368.836770px;}
.y134{bottom:371.085348px;}
.y240{bottom:373.066554px;}
.y278{bottom:375.669840px;}
.y2b0{bottom:375.672840px;}
.y199{bottom:377.023710px;}
.y133{bottom:378.285303px;}
.yfa{bottom:379.457463px;}
.y56{bottom:379.638912px;}
.y2e7{bottom:381.346716px;}
.yc7{bottom:384.940344px;}
.y7d{bottom:384.944610px;}
.ya4{bottom:385.216230px;}
.y1bc{bottom:385.667670px;}
.y1b7{bottom:385.668867px;}
.y147{bottom:386.477202px;}
.yf9{bottom:386.657418px;}
.y156{bottom:386.747526px;}
.yf{bottom:386.785499px;}
.y1b9{bottom:388.728399px;}
.y207{bottom:388.905906px;}
.y1f5{bottom:388.906878px;}
.y277{bottom:390.340002px;}
.y2af{bottom:390.343002px;}
.y23f{bottom:392.236554px;}
.y55{bottom:394.848390px;}
.y2e6{bottom:396.016878px;}
.y198{bottom:397.543881px;}
.y1b8{bottom:403.128309px;}
.y276{bottom:405.010164px;}
.yc6{bottom:405.010452px;}
.y1da{bottom:405.011874px;}
.y2ae{bottom:405.013164px;}
.y7c{bottom:405.014718px;}
.ya3{bottom:405.286338px;}
.y131{bottom:406.005429px;}
.y1bb{bottom:406.187841px;}
.y146{bottom:406.547310px;}
.y155{bottom:406.817634px;}
.y23e{bottom:406.906716px;}
.ye{bottom:408.044999px;}
.y206{bottom:408.976014px;}
.y1f4{bottom:408.976986px;}
.y54{bottom:410.148606px;}
.y2e5{bottom:410.687040px;}
.y130{bottom:413.205384px;}
.yf8{bottom:414.287769px;}
.y197{bottom:418.064052px;}
.y275{bottom:419.680326px;}
.y2ad{bottom:419.683326px;}
.y132{bottom:420.405339px;}
.yf7{bottom:421.487724px;}
.y23d{bottom:421.576878px;}
.yc5{bottom:425.080560px;}
.y1d9{bottom:425.081982px;}
.y7b{bottom:425.084826px;}
.ya2{bottom:425.356446px;}
.y2e4{bottom:425.357202px;}
.y53{bottom:425.448822px;}
.y145{bottom:426.617418px;}
.y1ba{bottom:426.618237px;}
.y154{bottom:426.887742px;}
.y205{bottom:429.046122px;}
.y1f3{bottom:429.047094px;}
.y2ac{bottom:434.353488px;}
.y23c{bottom:436.247040px;}
.y196{bottom:438.494448px;}
.y274{bottom:438.850326px;}
.y52{bottom:440.658300px;}
.y12e{bottom:440.925510px;}
.y2e3{bottom:444.527202px;}
.yc4{bottom:445.150668px;}
.y1d8{bottom:445.152090px;}
.y7a{bottom:445.154934px;}
.ya1{bottom:445.426554px;}
.y144{bottom:446.687526px;}
.y153{bottom:446.957850px;}
.y1b6{bottom:447.138408px;}
.y12d{bottom:448.125465px;}
.y204{bottom:449.116230px;}
.y1f2{bottom:449.117202px;}
.yf5{bottom:449.207850px;}
.y23b{bottom:450.917202px;}
.y273{bottom:453.520488px;}
.y2ab{bottom:453.523488px;}
.y51{bottom:455.958516px;}
.y195{bottom:459.014619px;}
.y2e2{bottom:459.197364px;}
.y1b5{bottom:461.538318px;}
.y1b3{bottom:464.597850px;}
.yc3{bottom:465.220776px;}
.y1d7{bottom:465.222198px;}
.y79{bottom:465.225042px;}
.ya0{bottom:465.496662px;}
.y23a{bottom:465.587364px;}
.y143{bottom:466.757634px;}
.y272{bottom:468.190650px;}
.y2aa{bottom:468.193650px;}
.y203{bottom:469.186338px;}
.y1f1{bottom:469.187310px;}
.y50{bottom:471.258732px;}
.y10a{bottom:475.127850px;}
.y12c{bottom:475.755816px;}
.y2e1{bottom:478.367364px;}
.y194{bottom:479.534790px;}
.y1b4{bottom:482.057292px;}
.y2a9{bottom:482.863812px;}
.y12b{bottom:482.955771px;}
.y239{bottom:484.757364px;}
.yd{bottom:484.864502px;}
.yc2{bottom:485.290884px;}
.y1d6{bottom:485.292306px;}
.y78{bottom:485.295150px;}
.y9f{bottom:485.566770px;}
.y4f{bottom:486.468210px;}
.y142{bottom:486.827742px;}
.y271{bottom:487.360650px;}
.y202{bottom:489.256446px;}
.y1f0{bottom:489.257418px;}
.y2e0{bottom:493.037526px;}
.y2a8{bottom:497.533974px;}
.y238{bottom:499.427526px;}
.y193{bottom:499.965186px;}
.y4e{bottom:501.768426px;}
.y270{bottom:502.030812px;}
.yc{bottom:502.864502px;}
.y152{bottom:503.747850px;}
.yc1{bottom:505.360992px;}
.y1d5{bottom:505.362414px;}
.y77{bottom:505.365258px;}
.y9e{bottom:505.636878px;}
.y141{bottom:506.897850px;}
.y2df{bottom:507.707688px;}
.y1d2{bottom:507.977850px;}
.y201{bottom:509.326554px;}
.y1ef{bottom:509.327526px;}
.y12a{bottom:510.675897px;}
.y237{bottom:514.097688px;}
.y26f{bottom:516.700974px;}
.y2a7{bottom:516.703974px;}
.y4d{bottom:517.068642px;}
.y129{bottom:517.875852px;}
.y192{bottom:520.485357px;}
.yb{bottom:520.864502px;}
.yc0{bottom:525.431100px;}
.y1d4{bottom:525.432522px;}
.y76{bottom:525.435366px;}
.yf4{bottom:525.435906px;}
.y9d{bottom:525.706986px;}
.ydb{bottom:525.707310px;}
.y2de{bottom:526.877688px;}
.y121{bottom:528.136536px;}
.y236{bottom:528.767850px;}
.y200{bottom:529.396662px;}
.y1ee{bottom:529.397634px;}
.y26e{bottom:531.371136px;}
.y2a6{bottom:531.374136px;}
.y4c{bottom:532.278120px;}
.ya{bottom:538.864499px;}
.y191{bottom:541.005528px;}
.y2dd{bottom:541.538070px;}
.y120{bottom:542.536446px;}
.ybf{bottom:545.501208px;}
.y1d3{bottom:545.502630px;}
.y75{bottom:545.505474px;}
.yf3{bottom:545.506014px;}
.y128{bottom:545.595978px;}
.y9c{bottom:545.777094px;}
.yda{bottom:545.777418px;}
.y2a5{bottom:546.044298px;}
.y4b{bottom:547.578336px;}
.y1ff{bottom:549.466770px;}
.y1ed{bottom:549.467742px;}
.y26d{bottom:550.541136px;}
.y127{bottom:552.795933px;}
.y2dc{bottom:556.208232px;}
.y9{bottom:556.864499px;}
.y2a4{bottom:560.714460px;}
.y190{bottom:561.435924px;}
.y4a{bottom:562.878552px;}
.y26c{bottom:565.211298px;}
.ybe{bottom:565.571316px;}
.y1b2{bottom:565.572738px;}
.y74{bottom:565.575582px;}
.yf2{bottom:565.576122px;}
.y9b{bottom:565.847202px;}
.yd9{bottom:565.847526px;}
.y174{bottom:567.377850px;}
.y1fe{bottom:569.536878px;}
.y1ec{bottom:569.537850px;}
.y2db{bottom:570.878394px;}
.y49{bottom:578.088030px;}
.y26b{bottom:579.881460px;}
.y2a3{bottom:579.884460px;}
.y126{bottom:580.426284px;}
.y18f{bottom:581.956095px;}
.y235{bottom:582.497850px;}
.y2da{bottom:585.548556px;}
.ybd{bottom:585.641424px;}
.y1b1{bottom:585.642846px;}
.y73{bottom:585.645690px;}
.yf1{bottom:585.646230px;}
.y9a{bottom:585.917310px;}
.yd8{bottom:585.917634px;}
.y173{bottom:586.546545px;}
.y125{bottom:587.626239px;}
.y48{bottom:593.388246px;}
.y26a{bottom:594.551622px;}
.y2a2{bottom:594.554622px;}
.y18e{bottom:602.476266px;}
.y2d9{bottom:604.718556px;}
.ybc{bottom:605.711532px;}
.y1b0{bottom:605.712954px;}
.y72{bottom:605.715798px;}
.yf0{bottom:605.716338px;}
.y99{bottom:605.987418px;}
.yd7{bottom:605.987742px;}
.y172{bottom:607.066716px;}
.y47{bottom:608.688462px;}
.y2a1{bottom:609.224784px;}
.y269{bottom:613.721622px;}
.y171{bottom:614.266671px;}
.y123{bottom:615.346365px;}
.y232{bottom:617.237850px;}
.y2d8{bottom:619.388718px;}
.y16d{bottom:621.466626px;}
.y122{bottom:622.546320px;}
.y18d{bottom:622.906662px;}
.y2a0{bottom:623.894946px;}
.y30d{bottom:623.895582px;}
.y46{bottom:623.897940px;}
.ybb{bottom:625.781640px;}
.y1af{bottom:625.783062px;}
.y71{bottom:625.785906px;}
.yef{bottom:625.786446px;}
.y98{bottom:626.057526px;}
.yd6{bottom:626.057850px;}
.y268{bottom:628.391784px;}
.y124{bottom:629.746275px;}
.y2d7{bottom:634.058880px;}
.y231{bottom:636.405720px;}
.y45{bottom:639.198156px;}
.y16f{bottom:641.897022px;}
.y267{bottom:643.061946px;}
.y29f{bottom:643.064946px;}
.y30c{bottom:643.065582px;}
.y18c{bottom:643.426833px;}
.y8{bottom:645.510000px;}
.yba{bottom:645.851748px;}
.y1ae{bottom:645.853170px;}
.y70{bottom:645.856014px;}
.yee{bottom:645.856554px;}
.y97{bottom:646.127634px;}
.y324{bottom:647.562864px;}
.y2d6{bottom:648.729042px;}
.y16e{bottom:649.096977px;}
.y11f{bottom:650.266446px;}
.y44{bottom:654.498372px;}
.y170{bottom:656.296932px;}
.y230{bottom:656.925891px;}
.y11e{bottom:657.466401px;}
.y266{bottom:657.732108px;}
.y29e{bottom:657.735108px;}
.y30b{bottom:657.735744px;}
.y323{bottom:662.233026px;}
.y18b{bottom:663.947004px;}
.yb9{bottom:665.921856px;}
.y1ad{bottom:665.923278px;}
.y6f{bottom:665.926122px;}
.yed{bottom:665.926662px;}
.y96{bottom:666.197742px;}
.y7{bottom:666.771000px;}
.y2d5{bottom:667.899042px;}
.y43{bottom:669.707850px;}
.y265{bottom:672.402270px;}
.y29d{bottom:672.405270px;}
.y30a{bottom:672.405906px;}
.y16c{bottom:676.817103px;}
.y322{bottom:676.903188px;}
.y22f{bottom:677.356287px;}
.y22a{bottom:677.357484px;}
.y22c{bottom:680.417016px;}
.y2d4{bottom:682.569204px;}
.yd5{bottom:682.847850px;}
.y18a{bottom:684.377400px;}
.y11d{bottom:685.096752px;}
.yb8{bottom:685.991964px;}
.y1ac{bottom:685.993386px;}
.y6e{bottom:685.996230px;}
.yec{bottom:685.996770px;}
.y95{bottom:686.267850px;}
.y16a{bottom:691.217013px;}
.y264{bottom:691.572270px;}
.y321{bottom:691.573350px;}
.y29c{bottom:691.575270px;}
.y309{bottom:691.575906px;}
.y11c{bottom:692.296707px;}
.y40{bottom:694.008000px;}
.y22b{bottom:694.816926px;}
.y2d3{bottom:697.239366px;}
.y42{bottom:697.247850px;}
.y22e{bottom:697.876458px;}
.y189{bottom:704.897571px;}
.y16b{bottom:705.616923px;}
.yb7{bottom:706.062072px;}
.y1ab{bottom:706.063494px;}
.y6d{bottom:706.066338px;}
.yeb{bottom:706.066878px;}
.y263{bottom:706.242432px;}
.y29b{bottom:706.245432px;}
.y308{bottom:706.246068px;}
.y117{bottom:709.757346px;}
.y320{bottom:710.743350px;}
.y2d2{bottom:711.909528px;}
.y22d{bottom:718.396629px;}
.y11b{bottom:720.016833px;}
.y262{bottom:720.912594px;}
.y29a{bottom:720.915594px;}
.y307{bottom:720.916230px;}
.y31f{bottom:725.413512px;}
.yb6{bottom:726.132180px;}
.y1aa{bottom:726.133602px;}
.y6c{bottom:726.136446px;}
.yea{bottom:726.136986px;}
.y169{bottom:726.137094px;}
.y6{bottom:726.298500px;}
.y11a{bottom:727.216788px;}
.y19c{bottom:730.817850px;}
.y2d1{bottom:731.079528px;}
.y168{bottom:733.337049px;}
.y261{bottom:735.582756px;}
.y299{bottom:735.585756px;}
.y306{bottom:735.586392px;}
.y229{bottom:738.827025px;}
.y31e{bottom:740.083674px;}
.y94{bottom:743.057850px;}
.y2d0{bottom:745.749690px;}
.yb5{bottom:746.202288px;}
.y1a9{bottom:746.203710px;}
.y6b{bottom:746.206554px;}
.ye9{bottom:746.207094px;}
.y298{bottom:750.255918px;}
.y305{bottom:750.256554px;}
.y3f{bottom:751.967850px;}
.y3{bottom:752.599495px;}
.y260{bottom:754.752756px;}
.y31d{bottom:754.753836px;}
.y119{bottom:754.936914px;}
.y222{bottom:758.267502px;}
.y228{bottom:759.347196px;}
.y2cf{bottom:760.419852px;}
.y167{bottom:760.967400px;}
.y118{bottom:762.136869px;}
.y3e{bottom:764.027850px;}
.yb4{bottom:766.272396px;}
.y1a8{bottom:766.273818px;}
.y6a{bottom:766.276662px;}
.ye8{bottom:766.277202px;}
.y25f{bottom:769.422918px;}
.y31c{bottom:769.423998px;}
.y297{bottom:769.425918px;}
.y304{bottom:769.426554px;}
.y221{bottom:772.667412px;}
.y2ce{bottom:775.090014px;}
.y166{bottom:775.367310px;}
.y3d{bottom:775.997850px;}
.y227{bottom:779.867367px;}
.y224{bottom:782.928096px;}
.y25e{bottom:784.093080px;}
.y31b{bottom:784.094160px;}
.y296{bottom:784.096080px;}
.y303{bottom:784.096716px;}
.yb3{bottom:786.342504px;}
.y1a7{bottom:786.343926px;}
.y17e{bottom:786.345348px;}
.y69{bottom:786.346770px;}
.ye7{bottom:786.347310px;}
.y220{bottom:787.067322px;}
.y116{bottom:789.767220px;}
.y2cd{bottom:794.260014px;}
.y39{bottom:796.698000px;}
.y115{bottom:796.967175px;}
.y223{bottom:797.328006px;}
.y25d{bottom:798.763242px;}
.y31a{bottom:798.764322px;}
.y295{bottom:798.766242px;}
.y226{bottom:800.297763px;}
.y3b{bottom:801.377850px;}
.y21f{bottom:801.467232px;}
.y302{bottom:803.266716px;}
.yb2{bottom:806.412612px;}
.y1a6{bottom:806.414034px;}
.y17d{bottom:806.415456px;}
.y68{bottom:806.416878px;}
.ye6{bottom:806.417418px;}
.y2cc{bottom:808.930176px;}
.y3c{bottom:808.937850px;}
.y164{bottom:810.287391px;}
.y294{bottom:813.436404px;}
.y25c{bottom:817.933242px;}
.y319{bottom:817.934322px;}
.y301{bottom:817.936878px;}
.y225{bottom:820.817934px;}
.y114{bottom:824.687301px;}
.y93{bottom:826.482720px;}
.y1a5{bottom:826.484142px;}
.y67{bottom:826.486986px;}
.ye5{bottom:826.487526px;}
.y2cb{bottom:828.100176px;}
.y293{bottom:828.106566px;}
.y113{bottom:831.887256px;}
.y25b{bottom:832.603404px;}
.y318{bottom:832.604484px;}
.y300{bottom:832.607040px;}
.y165{bottom:839.087211px;}
.y38{bottom:840.076950px;}
.y21e{bottom:841.336908px;}
.y2ca{bottom:842.770338px;}
.y92{bottom:846.552828px;}
.y1a4{bottom:846.554250px;}
.y17c{bottom:846.555672px;}
.y66{bottom:846.557094px;}
.ye4{bottom:846.557634px;}
.y25a{bottom:847.273566px;}
.y317{bottom:847.274646px;}
.y292{bottom:847.276566px;}
.y2ff{bottom:847.277202px;}
.y36{bottom:855.648000px;}
.y2c9{bottom:857.440500px;}
.y10d{bottom:859.607382px;}
.y35{bottom:861.047850px;}
.y21d{bottom:861.767304px;}
.y259{bottom:861.943728px;}
.y316{bottom:861.944808px;}
.y291{bottom:861.946728px;}
.y2fe{bottom:861.947364px;}
.y91{bottom:866.622936px;}
.y1a3{bottom:866.624358px;}
.y17b{bottom:866.625780px;}
.y65{bottom:866.627202px;}
.ye3{bottom:866.627742px;}
.y112{bottom:866.807337px;}
.y10c{bottom:874.007292px;}
.y2c8{bottom:876.610500px;}
.y315{bottom:876.614970px;}
.y290{bottom:876.616890px;}
.y2fd{bottom:876.617526px;}
.y2{bottom:879.369000px;}
.y258{bottom:881.113728px;}
.y21c{bottom:882.287475px;}
.y217{bottom:882.288672px;}
.y219{bottom:885.348204px;}
.y90{bottom:886.693044px;}
.y1a2{bottom:886.694466px;}
.y17a{bottom:886.695888px;}
.y64{bottom:886.697310px;}
.ye2{bottom:886.697850px;}
.y2c7{bottom:891.280662px;}
.y28f{bottom:891.287052px;}
.y111{bottom:894.437688px;}
.y257{bottom:895.783890px;}
.y314{bottom:895.784970px;}
.y2fc{bottom:895.787526px;}
.y218{bottom:899.748114px;}
.y110{bottom:901.637643px;}
.y21b{bottom:902.807646px;}
.y2c6{bottom:905.950824px;}
.y8f{bottom:906.763152px;}
.y1a1{bottom:906.764574px;}
.y179{bottom:906.765996px;}
.ye0{bottom:906.766338px;}
.y63{bottom:906.767418px;}
.ye1{bottom:906.767850px;}
.y256{bottom:910.454052px;}
.y313{bottom:910.455132px;}
.y28e{bottom:910.457052px;}
.y2fb{bottom:910.457688px;}
.y2c5{bottom:920.620986px;}
.y21a{bottom:923.238042px;}
.y255{bottom:925.124214px;}
.y312{bottom:925.125294px;}
.y28d{bottom:925.127214px;}
.y2fa{bottom:925.127850px;}
.y34{bottom:926.567652px;}
.y8e{bottom:926.833260px;}
.y1a0{bottom:926.834682px;}
.y178{bottom:926.836104px;}
.ydf{bottom:926.836446px;}
.y62{bottom:926.837526px;}
.y10f{bottom:929.357769px;}
.y2f9{bottom:930.797850px;}
.y10e{bottom:936.557724px;}
.y33{bottom:939.167850px;}
.y2c4{bottom:939.790986px;}
.y311{bottom:939.795456px;}
.y28c{bottom:939.797376px;}
.y216{bottom:943.758213px;}
.y254{bottom:944.294214px;}
.y8d{bottom:946.903368px;}
.y19f{bottom:946.904790px;}
.y177{bottom:946.906212px;}
.yde{bottom:946.906554px;}
.y61{bottom:946.907634px;}
.y215{bottom:954.017700px;}
.y2c3{bottom:954.461148px;}
.y28b{bottom:954.467538px;}
.y253{bottom:958.964376px;}
.y310{bottom:958.965456px;}
.y32{bottom:963.287850px;}
.y10b{bottom:964.277850px;}
.y1{bottom:966.726000px;}
.y8c{bottom:966.973476px;}
.y19e{bottom:966.974898px;}
.y176{bottom:966.976320px;}
.ydd{bottom:966.976662px;}
.y60{bottom:966.977742px;}
.y2c2{bottom:969.131310px;}
.y28a{bottom:969.137700px;}
.y252{bottom:973.634538px;}
.y30f{bottom:973.635618px;}
.y2f8{bottom:973.637538px;}
.y233{bottom:986.958000px;}
.y8b{bottom:987.043584px;}
.y19d{bottom:987.045006px;}
.y175{bottom:987.046428px;}
.ydc{bottom:987.046770px;}
.y5f{bottom:987.047850px;}
.y2c1{bottom:988.301310px;}
.y251{bottom:988.304700px;}
.y30e{bottom:988.305780px;}
.y289{bottom:988.307700px;}
.y140{bottom:990.197700px;}
.y31{bottom:1000.637304px;}
.y30{bottom:1013.237502px;}
.y2f{bottom:1025.837700px;}
.y5d{bottom:1032.767700px;}
.h18{height:11.880000px;}
.h1d{height:12.240000px;}
.h14{height:14.670000px;}
.h13{height:18.720703px;}
.h10{height:21.150000px;}
.h20{height:21.594727px;}
.hf{height:24.660000px;}
.h19{height:26.790480px;}
.hc{height:29.163164px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h12{height:32.755957px;}
.h15{height:33.244805px;}
.h17{height:33.478594px;}
.hd{height:33.852305px;}
.h1b{height:35.278770px;}
.h1e{height:35.644219px;}
.ha{height:41.410195px;}
.h16{height:43.556836px;}
.h1f{height:43.595956px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h11{height:50.760000px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.h1a{height:62.278414px;}
.h1c{height:74.516542px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:60.120000px;}
.w6{width:90.090000px;}
.w8{width:254.880000px;}
.w7{width:487.980000px;}
.w4{width:620.100000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x3e{left:90.450000px;}
.x28{left:93.420000px;}
.x3d{left:94.680000px;}
.x16{left:96.840000px;}
.x7{left:99.810266px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x1e{left:107.639793px;}
.x2a{left:108.900000px;}
.x26{left:112.680360px;}
.x2c{left:114.300864px;}
.x21{left:118.708452px;}
.x30{left:119.789633px;}
.x20{left:121.320306px;}
.x3c{left:122.579496px;}
.x17{left:132.300000px;}
.x1d{left:134.370000px;}
.x2d{left:137.249694px;}
.x2e{left:140.039901px;}
.x2f{left:141.570864px;}
.xf{left:149.760000px;}
.x10{left:160.020000px;}
.x41{left:168.480306px;}
.x42{left:176.220108px;}
.x9{left:183.240000px;}
.x3a{left:188.099685px;}
.x45{left:189.449613px;}
.x4{left:203.484001px;}
.x49{left:217.980000px;}
.x43{left:222.389595px;}
.x4a{left:229.230000px;}
.x3b{left:232.379109px;}
.x31{left:245.430000px;}
.x46{left:247.139028px;}
.x48{left:249.030000px;}
.xa{left:252.180000px;}
.x3f{left:265.320000px;}
.x47{left:295.198578px;}
.xc{left:305.099865px;}
.x11{left:313.560000px;}
.x12{left:318.600000px;}
.x2b{left:332.461296px;}
.x1f{left:364.228713px;}
.x1a{left:399.330000px;}
.xb{left:401.760000px;}
.x8{left:416.610000px;}
.x1c{left:423.450000px;}
.x19{left:431.640000px;}
.x13{left:438.570000px;}
.x14{left:444.420000px;}
.x29{left:446.400302px;}
.x3{left:454.959000px;}
.x44{left:458.999649px;}
.x35{left:477.809595px;}
.x34{left:483.479784px;}
.x18{left:486.090000px;}
.x40{left:496.530126px;}
.x37{left:522.179991px;}
.x32{left:523.259685px;}
.x36{left:524.520126px;}
.x22{left:554.755203px;}
.x27{left:568.440504px;}
.x25{left:578.154159px;}
.x23{left:580.135194px;}
.x24{left:590.034384px;}
.xd{left:611.550000px;}
.x39{left:615.510081px;}
.x38{left:616.679550px;}
.x15{left:625.500000px;}
.x33{left:679.229982px;}
.x1b{left:694.170000px;}
.xe{left:709.650000px;}
@media print{
.v2{vertical-align:-16.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v3{vertical-align:25.599840pt;}
.v4{vertical-align:36.478176pt;}
.ls10{letter-spacing:-4.896000pt;}
.ls70{letter-spacing:-4.480384pt;}
.ls72{letter-spacing:-4.148672pt;}
.ls80{letter-spacing:-3.839680pt;}
.ls7d{letter-spacing:-3.526144pt;}
.ls7e{letter-spacing:-3.521600pt;}
.ls7f{letter-spacing:-3.208064pt;}
.ls8f{letter-spacing:-3.203520pt;}
.ls7b{letter-spacing:-3.198976pt;}
.ls6{letter-spacing:-3.196000pt;}
.ls26{letter-spacing:-2.931552pt;}
.ls84{letter-spacing:-2.889984pt;}
.ls18{letter-spacing:-2.885440pt;}
.ls6c{letter-spacing:-2.880896pt;}
.ls3a{letter-spacing:-2.619008pt;}
.ls28{letter-spacing:-2.605824pt;}
.ls6a{letter-spacing:-2.571904pt;}
.ls12{letter-spacing:-2.568192pt;}
.ls76{letter-spacing:-2.567360pt;}
.ls5{letter-spacing:-2.564000pt;}
.ls64{letter-spacing:-2.562816pt;}
.ls7a{letter-spacing:-2.558272pt;}
.ls87{letter-spacing:-2.553728pt;}
.ls8d{letter-spacing:-2.549184pt;}
.ls37{letter-spacing:-2.295424pt;}
.ls25{letter-spacing:-2.280096pt;}
.ls8e{letter-spacing:-2.249280pt;}
.ls14{letter-spacing:-2.248704pt;}
.ls4e{letter-spacing:-2.247168pt;}
.ls66{letter-spacing:-2.244736pt;}
.ls63{letter-spacing:-2.240192pt;}
.lsd{letter-spacing:-2.239200pt;}
.ls48{letter-spacing:-2.238656pt;}
.ls67{letter-spacing:-2.235648pt;}
.ls6d{letter-spacing:-2.231104pt;}
.ls81{letter-spacing:-2.067520pt;}
.ls5a{letter-spacing:-1.971840pt;}
.ls29{letter-spacing:-1.966784pt;}
.ls2f{letter-spacing:-1.961728pt;}
.ls11{letter-spacing:-1.929216pt;}
.ls68{letter-spacing:-1.926656pt;}
.ls6e{letter-spacing:-1.922112pt;}
.ls85{letter-spacing:-1.917568pt;}
.ls89{letter-spacing:-1.916096pt;}
.ls83{letter-spacing:-1.913024pt;}
.ls78{letter-spacing:-1.908480pt;}
.ls58{letter-spacing:-1.870720pt;}
.ls35{letter-spacing:-1.850496pt;}
.ls36{letter-spacing:-1.799936pt;}
.ls59{letter-spacing:-1.769600pt;}
.ls8a{letter-spacing:-1.713088pt;}
.ls8b{letter-spacing:-1.658560pt;}
.ls2d{letter-spacing:-1.643200pt;}
.ls7{letter-spacing:-1.638144pt;}
.ls27{letter-spacing:-1.628640pt;}
.ls31{letter-spacing:-1.628032pt;}
.ls6b{letter-spacing:-1.604032pt;}
.ls69{letter-spacing:-1.599488pt;}
.ls13{letter-spacing:-1.597440pt;}
.ls21{letter-spacing:-1.594944pt;}
.ls73{letter-spacing:-1.590400pt;}
.ls8{letter-spacing:-1.314560pt;}
.ls2c{letter-spacing:-1.309504pt;}
.ls77{letter-spacing:-1.290496pt;}
.ls1a{letter-spacing:-1.285952pt;}
.ls1e{letter-spacing:-1.281408pt;}
.ls57{letter-spacing:-1.281056pt;}
.ls1b{letter-spacing:-1.276864pt;}
.ls16{letter-spacing:-1.276000pt;}
.ls20{letter-spacing:-1.272320pt;}
.ls79{letter-spacing:-1.267776pt;}
.ls3f{letter-spacing:-1.228608pt;}
.ls40{letter-spacing:-1.147712pt;}
.ls24{letter-spacing:-0.991648pt;}
.ls5c{letter-spacing:-0.990976pt;}
.lsa{letter-spacing:-0.985920pt;}
.ls2e{letter-spacing:-0.980864pt;}
.ls4d{letter-spacing:-0.966112pt;}
.ls23{letter-spacing:-0.963328pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.958784pt;}
.ls74{letter-spacing:-0.954240pt;}
.ls82{letter-spacing:-0.949696pt;}
.ls3b{letter-spacing:-0.829184pt;}
.ls3c{letter-spacing:-0.758400pt;}
.ls41{letter-spacing:-0.662336pt;}
.ls2a{letter-spacing:-0.657280pt;}
.ls9{letter-spacing:-0.652224pt;}
.ls44{letter-spacing:-0.646912pt;}
.ls65{letter-spacing:-0.645248pt;}
.ls6f{letter-spacing:-0.640704pt;}
.lse{letter-spacing:-0.639392pt;}
.ls19{letter-spacing:-0.636160pt;}
.ls1d{letter-spacing:-0.631616pt;}
.ls34{letter-spacing:-0.333696pt;}
.ls2b{letter-spacing:-0.328640pt;}
.ls47{letter-spacing:-0.327712pt;}
.lsc{letter-spacing:-0.325728pt;}
.ls45{letter-spacing:-0.323456pt;}
.ls32{letter-spacing:-0.227520pt;}
.ls33{letter-spacing:-0.197184pt;}
.ls5d{letter-spacing:-0.151680pt;}
.ls30{letter-spacing:-0.083200pt;}
.ls5e{letter-spacing:-0.070784pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls3e{letter-spacing:-0.057600pt;}
.ls4f{letter-spacing:-0.038400pt;}
.ls60{letter-spacing:-0.025600pt;}
.ls39{letter-spacing:-0.010112pt;}
.ls46{letter-spacing:-0.008512pt;}
.ls4{letter-spacing:-0.005056pt;}
.ls43{letter-spacing:-0.004256pt;}
.lsb{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.004256pt;}
.ls88{letter-spacing:0.004544pt;}
.ls3d{letter-spacing:0.008512pt;}
.ls1f{letter-spacing:0.009088pt;}
.ls51{letter-spacing:0.011232pt;}
.ls53{letter-spacing:0.310688pt;}
.ls4a{letter-spacing:0.319200pt;}
.ls38{letter-spacing:0.323584pt;}
.ls4b{letter-spacing:0.634144pt;}
.ls4c{letter-spacing:0.642656pt;}
.ls71{letter-spacing:5.443712pt;}
.ls7c{letter-spacing:5.766336pt;}
.ls61{letter-spacing:7.528384pt;}
.ls86{letter-spacing:8.006528pt;}
.ls22{letter-spacing:8.324608pt;}
.ls17{letter-spacing:8.443904pt;}
.ls56{letter-spacing:9.273888pt;}
.ls75{letter-spacing:9.924096pt;}
.lsf{letter-spacing:10.288800pt;}
.ls8c{letter-spacing:13.123072pt;}
.ls2{letter-spacing:18.240768pt;}
.ls54{letter-spacing:25.836160pt;}
.ls55{letter-spacing:68.487552pt;}
.ls50{letter-spacing:112.630784pt;}
.ls5b{letter-spacing:144.635904pt;}
.ls62{letter-spacing:164.481632pt;}
.ls5f{letter-spacing:174.713056pt;}
.ls52{letter-spacing:364.471072pt;}
.ls42{letter-spacing:442.132032pt;}
.ls1{letter-spacing:612.799200pt;}
.ws44{word-spacing:-185.267936pt;}
.ws42{word-spacing:-155.190784pt;}
.ws39{word-spacing:-25.846272pt;}
.wsf{word-spacing:-15.739200pt;}
.ws2e{word-spacing:-14.406560pt;}
.ws2c{word-spacing:-12.741120pt;}
.ws12{word-spacing:-12.736064pt;}
.ws40{word-spacing:-12.731008pt;}
.ws7{word-spacing:-11.496320pt;}
.ws31{word-spacing:-10.865568pt;}
.ws43{word-spacing:-10.563392pt;}
.ws1f{word-spacing:-10.554880pt;}
.ws23{word-spacing:-10.550624pt;}
.ws3a{word-spacing:-10.546368pt;}
.ws8{word-spacing:-10.537536pt;}
.ws6{word-spacing:-10.219456pt;}
.ws47{word-spacing:-10.214912pt;}
.ws5a{word-spacing:-10.210368pt;}
.ws9{word-spacing:-9.901376pt;}
.ws55{word-spacing:-9.892288pt;}
.ws54{word-spacing:-9.574208pt;}
.wsa{word-spacing:-9.472320pt;}
.ws2{word-spacing:-9.281376pt;}
.ws1{word-spacing:-8.959392pt;}
.ws5{word-spacing:-8.610880pt;}
.ws45{word-spacing:-7.862080pt;}
.wsb{word-spacing:-7.843680pt;}
.ws57{word-spacing:-1.935744pt;}
.ws51{word-spacing:-1.599488pt;}
.ws59{word-spacing:-1.295040pt;}
.ws53{word-spacing:-1.290496pt;}
.ws4c{word-spacing:-1.281408pt;}
.ws4f{word-spacing:-0.963328pt;}
.ws4e{word-spacing:-0.958784pt;}
.ws27{word-spacing:-0.646912pt;}
.ws4d{word-spacing:-0.645248pt;}
.ws50{word-spacing:-0.640704pt;}
.ws2b{word-spacing:-0.638400pt;}
.ws52{word-spacing:-0.636160pt;}
.ws10{word-spacing:-0.388800pt;}
.ws16{word-spacing:-0.343808pt;}
.ws17{word-spacing:-0.333696pt;}
.ws14{word-spacing:-0.328640pt;}
.wse{word-spacing:-0.325728pt;}
.ws3f{word-spacing:-0.323584pt;}
.ws21{word-spacing:-0.323456pt;}
.ws22{word-spacing:-0.319200pt;}
.ws48{word-spacing:-0.313536pt;}
.ws3e{word-spacing:-0.202240pt;}
.ws56{word-spacing:-0.172672pt;}
.ws18{word-spacing:-0.136512pt;}
.ws3{word-spacing:-0.039360pt;}
.ws37{word-spacing:-0.038304pt;}
.ws4{word-spacing:-0.024000pt;}
.ws15{word-spacing:-0.010112pt;}
.wsc{word-spacing:-0.005056pt;}
.ws20{word-spacing:-0.004256pt;}
.ws0{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.004544pt;}
.ws46{word-spacing:0.008512pt;}
.ws13{word-spacing:0.011232pt;}
.ws1b{word-spacing:0.096064pt;}
.ws1a{word-spacing:0.207296pt;}
.ws3d{word-spacing:0.227520pt;}
.ws4b{word-spacing:0.318080pt;}
.ws19{word-spacing:0.318528pt;}
.ws28{word-spacing:0.319200pt;}
.ws49{word-spacing:0.322624pt;}
.ws2a{word-spacing:0.323456pt;}
.wsd{word-spacing:0.323584pt;}
.ws11{word-spacing:0.644000pt;}
.ws58{word-spacing:0.645248pt;}
.ws33{word-spacing:1.238496pt;}
.ws30{word-spacing:64.001728pt;}
.ws1d{word-spacing:67.491648pt;}
.ws26{word-spacing:69.726048pt;}
.ws25{word-spacing:73.254272pt;}
.ws24{word-spacing:76.769728pt;}
.ws3b{word-spacing:109.766496pt;}
.ws3c{word-spacing:112.639296pt;}
.ws2f{word-spacing:126.739424pt;}
.ws1e{word-spacing:128.620576pt;}
.ws29{word-spacing:134.710912pt;}
.ws2d{word-spacing:136.315424pt;}
.ws1c{word-spacing:147.849184pt;}
.ws32{word-spacing:184.974272pt;}
.ws34{word-spacing:325.447808pt;}
.ws35{word-spacing:336.317632pt;}
.ws36{word-spacing:336.326144pt;}
.ws38{word-spacing:347.208736pt;}
.ws41{word-spacing:649.895456pt;}
._c{margin-left:-649.875904pt;}
._8b{margin-left:-428.884928pt;}
._8e{margin-left:-171.351936pt;}
._80{margin-left:-165.145568pt;}
._7f{margin-left:-164.158176pt;}
._3d{margin-left:-67.853408pt;}
._3c{margin-left:-25.841216pt;}
._12{margin-left:-17.028000pt;}
._f{margin-left:-16.034400pt;}
._13{margin-left:-15.141600pt;}
._e{margin-left:-14.119200pt;}
._14{margin-left:-12.967200pt;}
._15{margin-left:-11.361600pt;}
._1b{margin-left:-10.264896pt;}
._19{margin-left:-9.287936pt;}
._1a{margin-left:-8.274624pt;}
._3e{margin-left:-7.052192pt;}
._8f{margin-left:-6.126720pt;}
._8c{margin-left:-4.884896pt;}
._6{margin-left:-3.576000pt;}
._5{margin-left:-2.616000pt;}
._2{margin-left:-1.288000pt;}
._4{width:0.992000pt;}
._9{width:2.416000pt;}
._d{width:3.356800pt;}
._17{width:5.196384pt;}
._3{width:6.108000pt;}
._a{width:7.132032pt;}
._0{width:8.185664pt;}
._1{width:9.515392pt;}
._8{width:10.948608pt;}
._18{width:11.849344pt;}
._8d{width:12.954240pt;}
._1c{width:13.883776pt;}
._11{width:14.860800pt;}
._10{width:16.027200pt;}
._1e{width:17.362624pt;}
._20{width:18.975168pt;}
._7{width:20.524000pt;}
._21{width:21.426784pt;}
._16{width:22.400000pt;}
._1f{width:23.873152pt;}
._23{width:25.178880pt;}
._1d{width:26.174912pt;}
._26{width:27.155776pt;}
._33{width:28.796096pt;}
._24{width:30.083200pt;}
._22{width:31.064064pt;}
._28{width:33.051072pt;}
._60{width:34.021824pt;}
._b{width:36.811136pt;}
._25{width:37.902976pt;}
._6d{width:42.838464pt;}
._27{width:43.805184pt;}
._4a{width:65.589216pt;}
._4d{width:69.096160pt;}
._6e{width:75.064448pt;}
._47{width:76.148352pt;}
._38{width:80.029824pt;}
._35{width:81.577952pt;}
._37{width:82.848320pt;}
._3b{width:85.684640pt;}
._46{width:87.673600pt;}
._44{width:90.874112pt;}
._4e{width:94.355168pt;}
._43{width:95.342912pt;}
._45{width:99.513792pt;}
._48{width:100.799104pt;}
._77{width:101.766400pt;}
._75{width:102.734208pt;}
._4c{width:104.330016pt;}
._49{width:110.715584pt;}
._73{width:112.039008pt;}
._4b{width:113.903328pt;}
._42{width:119.997920pt;}
._62{width:121.583648pt;}
._66{width:123.198432pt;}
._71{width:124.275584pt;}
._32{width:125.865792pt;}
._6a{width:130.552800pt;}
._83{width:131.833856pt;}
._67{width:133.753312pt;}
._70{width:134.944608pt;}
._64{width:138.205280pt;}
._2c{width:139.183968pt;}
._34{width:141.750336pt;}
._7d{width:143.061184pt;}
._36{width:144.001760pt;}
._30{width:145.270048pt;}
._3a{width:146.240416pt;}
._2e{width:148.794016pt;}
._79{width:150.272224pt;}
._6c{width:153.271328pt;}
._84{width:154.275744pt;}
._68{width:164.158176pt;}
._88{width:168.009856pt;}
._63{width:174.717312pt;}
._61{width:176.467424pt;}
._7b{width:178.556224pt;}
._86{width:182.075936pt;}
._40{width:192.315872pt;}
._3f{width:195.529152pt;}
._53{width:200.636352pt;}
._89{width:205.283104pt;}
._7a{width:208.802816pt;}
._29{width:221.771648pt;}
._41{width:227.542784pt;}
._69{width:251.183808pt;}
._65{width:253.452608pt;}
._6b{width:264.011744pt;}
._7c{width:295.553216pt;}
._2d{width:302.315744pt;}
._2a{width:329.614432pt;}
._56{width:335.998432pt;}
._5b{width:346.799808pt;}
._7e{width:355.554400pt;}
._59{width:357.435904pt;}
._8a{width:359.074112pt;}
._55{width:364.290816pt;}
._85{width:366.092256pt;}
._39{width:394.212000pt;}
._2b{width:432.635168pt;}
._81{width:479.046848pt;}
._4f{width:484.477504pt;}
._82{width:492.474528pt;}
._50{width:508.149024pt;}
._5e{width:526.602944pt;}
._31{width:530.242272pt;}
._2f{width:534.072672pt;}
._78{width:574.393664pt;}
._74{width:591.673376pt;}
._5a{width:617.429888pt;}
._87{width:643.205024pt;}
._58{width:661.160736pt;}
._6f{width:753.907840pt;}
._5f{width:810.231392pt;}
._76{width:861.112224pt;}
._72{width:864.631936pt;}
._54{width:934.732512pt;}
._5c{width:962.575264pt;}
._52{width:1040.902336pt;}
._5d{width:1045.750272pt;}
._57{width:1052.793952pt;}
._51{width:1068.149600pt;}
.fs9{font-size:4.160000pt;}
.fsc{font-size:24.000000pt;}
.fsf{font-size:29.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs6{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.239867pt;}
.y234{bottom:2.879733pt;}
.y41{bottom:2.879867pt;}
.y3a{bottom:4.159867pt;}
.y37{bottom:4.799867pt;}
.y5c{bottom:58.815867pt;}
.y5{bottom:59.133337pt;}
.y5e{bottom:65.615509pt;}
.y59{bottom:65.936000pt;}
.y5b{bottom:68.175867pt;}
.y58{bottom:77.455867pt;}
.y4{bottom:86.333337pt;}
.y27{bottom:103.455867pt;}
.y250{bottom:106.972987pt;}
.y187{bottom:107.135867pt;}
.y109{bottom:107.374699pt;}
.y288{bottom:109.287019pt;}
.y2c0{bottom:109.289685pt;}
.yd4{bottom:110.247947pt;}
.y8a{bottom:110.251739pt;}
.y2f7{bottom:110.333275pt;}
.yb1{bottom:110.493179pt;}
.y163{bottom:111.854331pt;}
.y2e{bottom:112.815291pt;}
.y214{bottom:113.772891pt;}
.y108{bottom:113.774659pt;}
.y1fd{bottom:114.015579pt;}
.y186{bottom:116.495867pt;}
.y26{bottom:116.975867pt;}
.y287{bottom:122.327163pt;}
.y2bf{bottom:122.329829pt;}
.y2f6{bottom:123.373419pt;}
.y22{bottom:123.790666pt;}
.y24f{bottom:124.012987pt;}
.y1d1{bottom:124.253083pt;}
.y1ea{bottom:124.254507pt;}
.y185{bottom:125.855867pt;}
.yd3{bottom:128.088043pt;}
.y89{bottom:128.091835pt;}
.yb0{bottom:128.333275pt;}
.y162{bottom:129.694427pt;}
.y2d{bottom:130.655387pt;}
.y213{bottom:131.612987pt;}
.y1fc{bottom:131.855675pt;}
.y25{bottom:133.055867pt;}
.y286{bottom:135.367307pt;}
.y2be{bottom:135.369973pt;}
.y2f5{bottom:136.413563pt;}
.y24e{bottom:137.053131pt;}
.y107{bottom:138.414771pt;}
.y1d0{bottom:142.493235pt;}
.y1e9{bottom:142.494659pt;}
.y184{bottom:142.894451pt;}
.y106{bottom:144.814731pt;}
.yd2{bottom:145.928139pt;}
.y88{bottom:145.931931pt;}
.yaf{bottom:146.173371pt;}
.y161{bottom:147.534523pt;}
.y285{bottom:148.407451pt;}
.y2c{bottom:148.495483pt;}
.y212{bottom:149.453083pt;}
.y1fb{bottom:149.695771pt;}
.y24d{bottom:150.093275pt;}
.y13f{bottom:151.212299pt;}
.y1e4{bottom:151.535467pt;}
.y2bd{bottom:152.409973pt;}
.y2f4{bottom:153.453563pt;}
.y1e6{bottom:154.255051pt;}
.y13e{bottom:157.612259pt;}
.y1cf{bottom:160.653587pt;}
.y1ca{bottom:160.654651pt;}
.y1e8{bottom:160.655011pt;}
.y183{bottom:161.134603pt;}
.y24c{bottom:163.133419pt;}
.y1cc{bottom:163.374235pt;}
.yd1{bottom:163.768235pt;}
.y87{bottom:163.772027pt;}
.yae{bottom:164.013467pt;}
.y151{bottom:165.134331pt;}
.y160{bottom:165.374619pt;}
.y284{bottom:165.447451pt;}
.y2bc{bottom:165.450117pt;}
.y2b{bottom:166.335579pt;}
.y2f3{bottom:166.493707pt;}
.y24{bottom:166.575867pt;}
.y1e5{bottom:167.054971pt;}
.y211{bottom:167.293179pt;}
.y1fa{bottom:167.535867pt;}
.y105{bottom:169.375043pt;}
.y19{bottom:175.052000pt;}
.y104{bottom:175.775003pt;}
.y1cb{bottom:176.174155pt;}
.y283{bottom:178.487595pt;}
.y2bb{bottom:178.490261pt;}
.y1ce{bottom:178.893739pt;}
.y1e7{bottom:178.895163pt;}
.y182{bottom:179.374755pt;}
.y24b{bottom:180.173419pt;}
.yd0{bottom:181.608331pt;}
.y86{bottom:181.612123pt;}
.yad{bottom:181.853563pt;}
.y13d{bottom:182.172571pt;}
.y150{bottom:182.974427pt;}
.y15f{bottom:183.214715pt;}
.y2f2{bottom:183.533707pt;}
.y2a{bottom:184.175675pt;}
.y210{bottom:185.133275pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y13c{bottom:188.572531pt;}
.y282{bottom:191.527739pt;}
.y2ba{bottom:191.530405pt;}
.y24a{bottom:193.213563pt;}
.y2f1{bottom:196.573851pt;}
.y1cd{bottom:197.133891pt;}
.y1e3{bottom:197.135315pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y181{bottom:197.535107pt;}
.ycf{bottom:199.448427pt;}
.y85{bottom:199.452219pt;}
.yac{bottom:199.693659pt;}
.y103{bottom:200.415115pt;}
.y14f{bottom:200.814523pt;}
.y15e{bottom:201.054811pt;}
.y29{bottom:202.015771pt;}
.y20f{bottom:202.973371pt;}
.y281{bottom:204.567883pt;}
.y249{bottom:206.253707pt;}
.y102{bottom:206.815075pt;}
.y2b9{bottom:208.570405pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y2f0{bottom:209.613995pt;}
.y13b{bottom:213.212643pt;}
.y1c9{bottom:215.294243pt;}
.y1e2{bottom:215.295667pt;}
.y180{bottom:215.775259pt;}
.y23{bottom:216.975867pt;}
.yce{bottom:217.288523pt;}
.y84{bottom:217.292315pt;}
.yab{bottom:217.533755pt;}
.y280{bottom:217.608027pt;}
.y1f9{bottom:217.935867pt;}
.y14e{bottom:218.654619pt;}
.y15d{bottom:218.894907pt;}
.y248{bottom:219.293851pt;}
.y28{bottom:219.855867pt;}
.y20e{bottom:220.813467pt;}
.y2b8{bottom:221.610549pt;}
.y1dd{bottom:224.416275pt;}
.y17f{bottom:224.895867pt;}
.y2ef{bottom:226.653995pt;}
.y1df{bottom:227.135859pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y13a{bottom:231.452795pt;}
.y101{bottom:231.455187pt;}
.y1c2{bottom:232.575731pt;}
.y1c8{bottom:233.534395pt;}
.y1e1{bottom:233.535819pt;}
.y27f{bottom:234.648027pt;}
.y2b7{bottom:234.650693pt;}
.ycd{bottom:235.128619pt;}
.y83{bottom:235.132411pt;}
.yaa{bottom:235.373851pt;}
.y247{bottom:236.333851pt;}
.y14d{bottom:236.494715pt;}
.y15c{bottom:236.735003pt;}
.y100{bottom:237.855147pt;}
.y20d{bottom:238.653563pt;}
.y2ee{bottom:239.694139pt;}
.y1de{bottom:239.935779pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yf6{bottom:244.256171pt;}
.y1c1{bottom:245.375651pt;}
.y27e{bottom:247.688171pt;}
.y2b6{bottom:247.690837pt;}
.y246{bottom:249.373995pt;}
.y139{bottom:249.613147pt;}
.y1c7{bottom:251.774547pt;}
.y1e0{bottom:251.775971pt;}
.y2ed{bottom:252.734283pt;}
.ycc{bottom:252.968715pt;}
.y82{bottom:252.972507pt;}
.ya9{bottom:253.213947pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y14c{bottom:254.334811pt;}
.y1c4{bottom:254.415395pt;}
.y15b{bottom:254.575099pt;}
.y20c{bottom:256.493659pt;}
.y188{bottom:257.055867pt;}
.y1c0{bottom:258.175571pt;}
.y27d{bottom:260.728315pt;}
.y2b5{bottom:260.730981pt;}
.y12f{bottom:262.414131pt;}
.y245{bottom:262.414139pt;}
.yff{bottom:262.415459pt;}
.y2ec{bottom:265.774427pt;}
.y1c3{bottom:267.215315pt;}
.y138{bottom:267.853299pt;}
.y1c6{bottom:269.934899pt;}
.y1dc{bottom:269.936323pt;}
.ycb{bottom:270.808811pt;}
.y81{bottom:270.812603pt;}
.y1bf{bottom:270.975491pt;}
.ya8{bottom:271.054043pt;}
.y14b{bottom:272.174907pt;}
.y15a{bottom:272.415195pt;}
.y137{bottom:274.253259pt;}
.y20b{bottom:274.333755pt;}
.yfd{bottom:275.215379pt;}
.y244{bottom:275.454283pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y27c{bottom:277.768315pt;}
.y2b4{bottom:277.770981pt;}
.y1db{bottom:279.055867pt;}
.y2eb{bottom:282.814427pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yfe{bottom:288.015299pt;}
.y1c5{bottom:288.175051pt;}
.y243{bottom:288.494427pt;}
.yca{bottom:288.648907pt;}
.y80{bottom:288.652699pt;}
.ya7{bottom:288.894139pt;}
.y14a{bottom:290.015003pt;}
.y159{bottom:290.255291pt;}
.y27b{bottom:290.808459pt;}
.y2b3{bottom:290.811125pt;}
.y20a{bottom:292.173851pt;}
.y1f8{bottom:292.174715pt;}
.y2ea{bottom:295.854571pt;}
.y57{bottom:296.415867pt;}
.y136{bottom:298.893371pt;}
.y19b{bottom:299.855867pt;}
.y27a{bottom:303.848603pt;}
.y2b2{bottom:303.851269pt;}
.y135{bottom:305.293331pt;}
.y242{bottom:305.534427pt;}
.yfc{bottom:306.255451pt;}
.y1be{bottom:306.415203pt;}
.yc9{bottom:306.489003pt;}
.y7f{bottom:306.492795pt;}
.ya6{bottom:306.734235pt;}
.y149{bottom:307.855099pt;}
.y158{bottom:308.095387pt;}
.y2e9{bottom:308.894715pt;}
.y10{bottom:309.452000pt;}
.y209{bottom:310.013947pt;}
.y1f7{bottom:310.014811pt;}
.y1eb{bottom:311.215867pt;}
.yfb{bottom:312.655411pt;}
.y279{bottom:316.888747pt;}
.y2b1{bottom:316.891413pt;}
.y19a{bottom:316.971835pt;}
.y241{bottom:318.574571pt;}
.y2e8{bottom:321.934859pt;}
.yc8{bottom:324.329099pt;}
.y7e{bottom:324.332891pt;}
.ya5{bottom:324.574331pt;}
.y1bd{bottom:324.575555pt;}
.y148{bottom:325.695195pt;}
.y157{bottom:325.935483pt;}
.y208{bottom:327.854043pt;}
.y1f6{bottom:327.854907pt;}
.y134{bottom:329.853643pt;}
.y240{bottom:331.614715pt;}
.y278{bottom:333.928747pt;}
.y2b0{bottom:333.931413pt;}
.y199{bottom:335.132187pt;}
.y133{bottom:336.253603pt;}
.yfa{bottom:337.295523pt;}
.y56{bottom:337.456811pt;}
.y2e7{bottom:338.974859pt;}
.yc7{bottom:342.169195pt;}
.y7d{bottom:342.172987pt;}
.ya4{bottom:342.414427pt;}
.y1bc{bottom:342.815707pt;}
.y1b7{bottom:342.816771pt;}
.y147{bottom:343.535291pt;}
.yf9{bottom:343.695483pt;}
.y156{bottom:343.775579pt;}
.yf{bottom:343.809333pt;}
.y1b9{bottom:345.536355pt;}
.y207{bottom:345.694139pt;}
.y1f5{bottom:345.695003pt;}
.y277{bottom:346.968891pt;}
.y2af{bottom:346.971557pt;}
.y23f{bottom:348.654715pt;}
.y55{bottom:350.976347pt;}
.y2e6{bottom:352.015003pt;}
.y198{bottom:353.372339pt;}
.y1b8{bottom:358.336275pt;}
.y276{bottom:360.009035pt;}
.yc6{bottom:360.009291pt;}
.y1da{bottom:360.010555pt;}
.y2ae{bottom:360.011701pt;}
.y7c{bottom:360.013083pt;}
.ya3{bottom:360.254523pt;}
.y131{bottom:360.893715pt;}
.y1bb{bottom:361.055859pt;}
.y146{bottom:361.375387pt;}
.y155{bottom:361.615675pt;}
.y23e{bottom:361.694859pt;}
.ye{bottom:362.706666pt;}
.y206{bottom:363.534235pt;}
.y1f4{bottom:363.535099pt;}
.y54{bottom:364.576539pt;}
.y2e5{bottom:365.055147pt;}
.y130{bottom:367.293675pt;}
.yf8{bottom:368.255795pt;}
.y197{bottom:371.612491pt;}
.y275{bottom:373.049179pt;}
.y2ad{bottom:373.051845pt;}
.y132{bottom:373.693635pt;}
.yf7{bottom:374.655755pt;}
.y23d{bottom:374.735003pt;}
.yc5{bottom:377.849387pt;}
.y1d9{bottom:377.850651pt;}
.y7b{bottom:377.853179pt;}
.ya2{bottom:378.094619pt;}
.y2e4{bottom:378.095291pt;}
.y53{bottom:378.176731pt;}
.y145{bottom:379.215483pt;}
.y1ba{bottom:379.216211pt;}
.y154{bottom:379.455771pt;}
.y205{bottom:381.374331pt;}
.y1f3{bottom:381.375195pt;}
.y2ac{bottom:386.091989pt;}
.y23c{bottom:387.775147pt;}
.y196{bottom:389.772843pt;}
.y274{bottom:390.089179pt;}
.y52{bottom:391.696267pt;}
.y12e{bottom:391.933787pt;}
.y2e3{bottom:395.135291pt;}
.yc4{bottom:395.689483pt;}
.y1d8{bottom:395.690747pt;}
.y7a{bottom:395.693275pt;}
.ya1{bottom:395.934715pt;}
.y144{bottom:397.055579pt;}
.y153{bottom:397.295867pt;}
.y1b6{bottom:397.456363pt;}
.y12d{bottom:398.333747pt;}
.y204{bottom:399.214427pt;}
.y1f2{bottom:399.215291pt;}
.yf5{bottom:399.295867pt;}
.y23b{bottom:400.815291pt;}
.y273{bottom:403.129323pt;}
.y2ab{bottom:403.131989pt;}
.y51{bottom:405.296459pt;}
.y195{bottom:408.012995pt;}
.y2e2{bottom:408.175435pt;}
.y1b5{bottom:410.256283pt;}
.y1b3{bottom:412.975867pt;}
.yc3{bottom:413.529579pt;}
.y1d7{bottom:413.530843pt;}
.y79{bottom:413.533371pt;}
.ya0{bottom:413.774811pt;}
.y23a{bottom:413.855435pt;}
.y143{bottom:414.895675pt;}
.y272{bottom:416.169467pt;}
.y2aa{bottom:416.172133pt;}
.y203{bottom:417.054523pt;}
.y1f1{bottom:417.055387pt;}
.y50{bottom:418.896651pt;}
.y10a{bottom:422.335867pt;}
.y12c{bottom:422.894059pt;}
.y2e1{bottom:425.215435pt;}
.y194{bottom:426.253147pt;}
.y1b4{bottom:428.495371pt;}
.y2a9{bottom:429.212277pt;}
.y12b{bottom:429.294019pt;}
.y239{bottom:430.895435pt;}
.yd{bottom:430.990669pt;}
.yc2{bottom:431.369675pt;}
.y1d6{bottom:431.370939pt;}
.y78{bottom:431.373467pt;}
.y9f{bottom:431.614907pt;}
.y4f{bottom:432.416187pt;}
.y142{bottom:432.735771pt;}
.y271{bottom:433.209467pt;}
.y202{bottom:434.894619pt;}
.y1f0{bottom:434.895483pt;}
.y2e0{bottom:438.255579pt;}
.y2a8{bottom:442.252421pt;}
.y238{bottom:443.935579pt;}
.y193{bottom:444.413499pt;}
.y4e{bottom:446.016379pt;}
.y270{bottom:446.249611pt;}
.yc{bottom:446.990669pt;}
.y152{bottom:447.775867pt;}
.yc1{bottom:449.209771pt;}
.y1d5{bottom:449.211035pt;}
.y77{bottom:449.213563pt;}
.y9e{bottom:449.455003pt;}
.y141{bottom:450.575867pt;}
.y2df{bottom:451.295723pt;}
.y1d2{bottom:451.535867pt;}
.y201{bottom:452.734715pt;}
.y1ef{bottom:452.735579pt;}
.y12a{bottom:453.934131pt;}
.y237{bottom:456.975723pt;}
.y26f{bottom:459.289755pt;}
.y2a7{bottom:459.292421pt;}
.y4d{bottom:459.616571pt;}
.y129{bottom:460.334091pt;}
.y192{bottom:462.653651pt;}
.yb{bottom:462.990669pt;}
.yc0{bottom:467.049867pt;}
.y1d4{bottom:467.051131pt;}
.y76{bottom:467.053659pt;}
.yf4{bottom:467.054139pt;}
.y9d{bottom:467.295099pt;}
.ydb{bottom:467.295387pt;}
.y2de{bottom:468.335723pt;}
.y121{bottom:469.454699pt;}
.y236{bottom:470.015867pt;}
.y200{bottom:470.574811pt;}
.y1ee{bottom:470.575675pt;}
.y26e{bottom:472.329899pt;}
.y2a6{bottom:472.332565pt;}
.y4c{bottom:473.136107pt;}
.ya{bottom:478.990666pt;}
.y191{bottom:480.893803pt;}
.y2dd{bottom:481.367173pt;}
.y120{bottom:482.254619pt;}
.ybf{bottom:484.889963pt;}
.y1d3{bottom:484.891227pt;}
.y75{bottom:484.893755pt;}
.yf3{bottom:484.894235pt;}
.y128{bottom:484.974203pt;}
.y9c{bottom:485.135195pt;}
.yda{bottom:485.135483pt;}
.y2a5{bottom:485.372709pt;}
.y4b{bottom:486.736299pt;}
.y1ff{bottom:488.414907pt;}
.y1ed{bottom:488.415771pt;}
.y26d{bottom:489.369899pt;}
.y127{bottom:491.374163pt;}
.y2dc{bottom:494.407317pt;}
.y9{bottom:494.990666pt;}
.y2a4{bottom:498.412853pt;}
.y190{bottom:499.054155pt;}
.y4a{bottom:500.336491pt;}
.y26c{bottom:502.410043pt;}
.ybe{bottom:502.730059pt;}
.y1b2{bottom:502.731323pt;}
.y74{bottom:502.733851pt;}
.yf2{bottom:502.734331pt;}
.y9b{bottom:502.975291pt;}
.yd9{bottom:502.975579pt;}
.y174{bottom:504.335867pt;}
.y1fe{bottom:506.255003pt;}
.y1ec{bottom:506.255867pt;}
.y2db{bottom:507.447461pt;}
.y49{bottom:513.856027pt;}
.y26b{bottom:515.450187pt;}
.y2a3{bottom:515.452853pt;}
.y126{bottom:515.934475pt;}
.y18f{bottom:517.294307pt;}
.y235{bottom:517.775867pt;}
.y2da{bottom:520.487605pt;}
.ybd{bottom:520.570155pt;}
.y1b1{bottom:520.571419pt;}
.y73{bottom:520.573947pt;}
.yf1{bottom:520.574427pt;}
.y9a{bottom:520.815387pt;}
.yd8{bottom:520.815675pt;}
.y173{bottom:521.374707pt;}
.y125{bottom:522.334435pt;}
.y48{bottom:527.456219pt;}
.y26a{bottom:528.490331pt;}
.y2a2{bottom:528.492997pt;}
.y18e{bottom:535.534459pt;}
.y2d9{bottom:537.527605pt;}
.ybc{bottom:538.410251pt;}
.y1b0{bottom:538.411515pt;}
.y72{bottom:538.414043pt;}
.yf0{bottom:538.414523pt;}
.y99{bottom:538.655483pt;}
.yd7{bottom:538.655771pt;}
.y172{bottom:539.614859pt;}
.y47{bottom:541.056411pt;}
.y2a1{bottom:541.533141pt;}
.y269{bottom:545.530331pt;}
.y171{bottom:546.014819pt;}
.y123{bottom:546.974547pt;}
.y232{bottom:548.655867pt;}
.y2d8{bottom:550.567749pt;}
.y16d{bottom:552.414779pt;}
.y122{bottom:553.374507pt;}
.y18d{bottom:553.694811pt;}
.y2a0{bottom:554.573285pt;}
.y30d{bottom:554.573851pt;}
.y46{bottom:554.575947pt;}
.ybb{bottom:556.250347pt;}
.y1af{bottom:556.251611pt;}
.y71{bottom:556.254139pt;}
.yef{bottom:556.254619pt;}
.y98{bottom:556.495579pt;}
.yd6{bottom:556.495867pt;}
.y268{bottom:558.570475pt;}
.y124{bottom:559.774467pt;}
.y2d7{bottom:563.607893pt;}
.y231{bottom:565.693973pt;}
.y45{bottom:568.176139pt;}
.y16f{bottom:570.575131pt;}
.y267{bottom:571.610619pt;}
.y29f{bottom:571.613285pt;}
.y30c{bottom:571.613851pt;}
.y18c{bottom:571.934963pt;}
.y8{bottom:573.786667pt;}
.yba{bottom:574.090443pt;}
.y1ae{bottom:574.091707pt;}
.y70{bottom:574.094235pt;}
.yee{bottom:574.094715pt;}
.y97{bottom:574.335675pt;}
.y324{bottom:575.611435pt;}
.y2d6{bottom:576.648037pt;}
.y16e{bottom:576.975091pt;}
.y11f{bottom:578.014619pt;}
.y44{bottom:581.776331pt;}
.y170{bottom:583.375051pt;}
.y230{bottom:583.934125pt;}
.y11e{bottom:584.414579pt;}
.y266{bottom:584.650763pt;}
.y29e{bottom:584.653429pt;}
.y30b{bottom:584.653995pt;}
.y323{bottom:588.651579pt;}
.y18b{bottom:590.175115pt;}
.yb9{bottom:591.930539pt;}
.y1ad{bottom:591.931803pt;}
.y6f{bottom:591.934331pt;}
.yed{bottom:591.934811pt;}
.y96{bottom:592.175771pt;}
.y7{bottom:592.685334pt;}
.y2d5{bottom:593.688037pt;}
.y43{bottom:595.295867pt;}
.y265{bottom:597.690907pt;}
.y29d{bottom:597.693573pt;}
.y30a{bottom:597.694139pt;}
.y16c{bottom:601.615203pt;}
.y322{bottom:601.691723pt;}
.y22f{bottom:602.094477pt;}
.y22a{bottom:602.095541pt;}
.y22c{bottom:604.815125pt;}
.y2d4{bottom:606.728181pt;}
.yd5{bottom:606.975867pt;}
.y18a{bottom:608.335467pt;}
.y11d{bottom:608.974891pt;}
.yb8{bottom:609.770635pt;}
.y1ac{bottom:609.771899pt;}
.y6e{bottom:609.774427pt;}
.yec{bottom:609.774907pt;}
.y95{bottom:610.015867pt;}
.y16a{bottom:614.415123pt;}
.y264{bottom:614.730907pt;}
.y321{bottom:614.731867pt;}
.y29c{bottom:614.733573pt;}
.y309{bottom:614.734139pt;}
.y11c{bottom:615.374851pt;}
.y40{bottom:616.896000pt;}
.y22b{bottom:617.615045pt;}
.y2d3{bottom:619.768325pt;}
.y42{bottom:619.775867pt;}
.y22e{bottom:620.334629pt;}
.y189{bottom:626.575619pt;}
.y16b{bottom:627.215043pt;}
.yb7{bottom:627.610731pt;}
.y1ab{bottom:627.611995pt;}
.y6d{bottom:627.614523pt;}
.yeb{bottom:627.615003pt;}
.y263{bottom:627.771051pt;}
.y29b{bottom:627.773717pt;}
.y308{bottom:627.774283pt;}
.y117{bottom:630.895419pt;}
.y320{bottom:631.771867pt;}
.y2d2{bottom:632.808469pt;}
.y22d{bottom:638.574781pt;}
.y11b{bottom:640.014963pt;}
.y262{bottom:640.811195pt;}
.y29a{bottom:640.813861pt;}
.y307{bottom:640.814427pt;}
.y31f{bottom:644.812011pt;}
.yb6{bottom:645.450827pt;}
.y1aa{bottom:645.452091pt;}
.y6c{bottom:645.454619pt;}
.yea{bottom:645.455099pt;}
.y169{bottom:645.455195pt;}
.y6{bottom:645.598667pt;}
.y11a{bottom:646.414923pt;}
.y19c{bottom:649.615867pt;}
.y2d1{bottom:649.848469pt;}
.y168{bottom:651.855155pt;}
.y261{bottom:653.851339pt;}
.y299{bottom:653.854005pt;}
.y306{bottom:653.854571pt;}
.y229{bottom:656.735133pt;}
.y31e{bottom:657.852155pt;}
.y94{bottom:660.495867pt;}
.y2d0{bottom:662.888613pt;}
.yb5{bottom:663.290923pt;}
.y1a9{bottom:663.292187pt;}
.y6b{bottom:663.294715pt;}
.ye9{bottom:663.295195pt;}
.y298{bottom:666.894149pt;}
.y305{bottom:666.894715pt;}
.y3f{bottom:668.415867pt;}
.y3{bottom:668.977329pt;}
.y260{bottom:670.891339pt;}
.y31d{bottom:670.892299pt;}
.y119{bottom:671.055035pt;}
.y222{bottom:674.015557pt;}
.y228{bottom:674.975285pt;}
.y2cf{bottom:675.928757pt;}
.y167{bottom:676.415467pt;}
.y118{bottom:677.454995pt;}
.y3e{bottom:679.135867pt;}
.yb4{bottom:681.131019pt;}
.y1a8{bottom:681.132283pt;}
.y6a{bottom:681.134811pt;}
.ye8{bottom:681.135291pt;}
.y25f{bottom:683.931483pt;}
.y31c{bottom:683.932443pt;}
.y297{bottom:683.934149pt;}
.y304{bottom:683.934715pt;}
.y221{bottom:686.815477pt;}
.y2ce{bottom:688.968901pt;}
.y166{bottom:689.215387pt;}
.y3d{bottom:689.775867pt;}
.y227{bottom:693.215437pt;}
.y224{bottom:695.936085pt;}
.y25e{bottom:696.971627pt;}
.y31b{bottom:696.972587pt;}
.y296{bottom:696.974293pt;}
.y303{bottom:696.974859pt;}
.yb3{bottom:698.971115pt;}
.y1a7{bottom:698.972379pt;}
.y17e{bottom:698.973643pt;}
.y69{bottom:698.974907pt;}
.ye7{bottom:698.975387pt;}
.y220{bottom:699.615397pt;}
.y116{bottom:702.015307pt;}
.y2cd{bottom:706.008901pt;}
.y39{bottom:708.176000pt;}
.y115{bottom:708.415267pt;}
.y223{bottom:708.736005pt;}
.y25d{bottom:710.011771pt;}
.y31a{bottom:710.012731pt;}
.y295{bottom:710.014437pt;}
.y226{bottom:711.375789pt;}
.y3b{bottom:712.335867pt;}
.y21f{bottom:712.415317pt;}
.y302{bottom:714.014859pt;}
.yb2{bottom:716.811211pt;}
.y1a6{bottom:716.812475pt;}
.y17d{bottom:716.813739pt;}
.y68{bottom:716.815003pt;}
.ye6{bottom:716.815483pt;}
.y2cc{bottom:719.049045pt;}
.y3c{bottom:719.055867pt;}
.y164{bottom:720.255459pt;}
.y294{bottom:723.054581pt;}
.y25c{bottom:727.051771pt;}
.y319{bottom:727.052731pt;}
.y301{bottom:727.055003pt;}
.y225{bottom:729.615941pt;}
.y114{bottom:733.055379pt;}
.y93{bottom:734.651307pt;}
.y1a5{bottom:734.652571pt;}
.y67{bottom:734.655099pt;}
.ye5{bottom:734.655579pt;}
.y2cb{bottom:736.089045pt;}
.y293{bottom:736.094725pt;}
.y113{bottom:739.455339pt;}
.y25b{bottom:740.091915pt;}
.y318{bottom:740.092875pt;}
.y300{bottom:740.095147pt;}
.y165{bottom:745.855299pt;}
.y38{bottom:746.735067pt;}
.y21e{bottom:747.855029pt;}
.y2ca{bottom:749.129189pt;}
.y92{bottom:752.491403pt;}
.y1a4{bottom:752.492667pt;}
.y17c{bottom:752.493931pt;}
.y66{bottom:752.495195pt;}
.ye4{bottom:752.495675pt;}
.y25a{bottom:753.132059pt;}
.y317{bottom:753.133019pt;}
.y292{bottom:753.134725pt;}
.y2ff{bottom:753.135291pt;}
.y36{bottom:760.576000pt;}
.y2c9{bottom:762.169333pt;}
.y10d{bottom:764.095451pt;}
.y35{bottom:765.375867pt;}
.y21d{bottom:766.015381pt;}
.y259{bottom:766.172203pt;}
.y316{bottom:766.173163pt;}
.y291{bottom:766.174869pt;}
.y2fe{bottom:766.175435pt;}
.y91{bottom:770.331499pt;}
.y1a3{bottom:770.332763pt;}
.y17b{bottom:770.334027pt;}
.y65{bottom:770.335291pt;}
.ye3{bottom:770.335771pt;}
.y112{bottom:770.495411pt;}
.y10c{bottom:776.895371pt;}
.y2c8{bottom:779.209333pt;}
.y315{bottom:779.213307pt;}
.y290{bottom:779.215013pt;}
.y2fd{bottom:779.215579pt;}
.y2{bottom:781.661334pt;}
.y258{bottom:783.212203pt;}
.y21c{bottom:784.255533pt;}
.y217{bottom:784.256597pt;}
.y219{bottom:786.976181pt;}
.y90{bottom:788.171595pt;}
.y1a2{bottom:788.172859pt;}
.y17a{bottom:788.174123pt;}
.y64{bottom:788.175387pt;}
.ye2{bottom:788.175867pt;}
.y2c7{bottom:792.249477pt;}
.y28f{bottom:792.255157pt;}
.y111{bottom:795.055723pt;}
.y257{bottom:796.252347pt;}
.y314{bottom:796.253307pt;}
.y2fc{bottom:796.255579pt;}
.y218{bottom:799.776101pt;}
.y110{bottom:801.455683pt;}
.y21b{bottom:802.495685pt;}
.y2c6{bottom:805.289621pt;}
.y8f{bottom:806.011691pt;}
.y1a1{bottom:806.012955pt;}
.y179{bottom:806.014219pt;}
.ye0{bottom:806.014523pt;}
.y63{bottom:806.015483pt;}
.ye1{bottom:806.015867pt;}
.y256{bottom:809.292491pt;}
.y313{bottom:809.293451pt;}
.y28e{bottom:809.295157pt;}
.y2fb{bottom:809.295723pt;}
.y2c5{bottom:818.329765pt;}
.y21a{bottom:820.656037pt;}
.y255{bottom:822.332635pt;}
.y312{bottom:822.333595pt;}
.y28d{bottom:822.335301pt;}
.y2fa{bottom:822.335867pt;}
.y34{bottom:823.615691pt;}
.y8e{bottom:823.851787pt;}
.y1a0{bottom:823.853051pt;}
.y178{bottom:823.854315pt;}
.ydf{bottom:823.854619pt;}
.y62{bottom:823.855579pt;}
.y10f{bottom:826.095795pt;}
.y2f9{bottom:827.375867pt;}
.y10e{bottom:832.495755pt;}
.y33{bottom:834.815867pt;}
.y2c4{bottom:835.369765pt;}
.y311{bottom:835.373739pt;}
.y28c{bottom:835.375445pt;}
.y216{bottom:838.896189pt;}
.y254{bottom:839.372635pt;}
.y8d{bottom:841.691883pt;}
.y19f{bottom:841.693147pt;}
.y177{bottom:841.694411pt;}
.yde{bottom:841.694715pt;}
.y61{bottom:841.695675pt;}
.y215{bottom:848.015733pt;}
.y2c3{bottom:848.409909pt;}
.y28b{bottom:848.415589pt;}
.y253{bottom:852.412779pt;}
.y310{bottom:852.413739pt;}
.y32{bottom:856.255867pt;}
.y10b{bottom:857.135867pt;}
.y1{bottom:859.312000pt;}
.y8c{bottom:859.531979pt;}
.y19e{bottom:859.533243pt;}
.y176{bottom:859.534507pt;}
.ydd{bottom:859.534811pt;}
.y60{bottom:859.535771pt;}
.y2c2{bottom:861.450053pt;}
.y28a{bottom:861.455733pt;}
.y252{bottom:865.452923pt;}
.y30f{bottom:865.453883pt;}
.y2f8{bottom:865.455589pt;}
.y233{bottom:877.296000pt;}
.y8b{bottom:877.372075pt;}
.y19d{bottom:877.373339pt;}
.y175{bottom:877.374603pt;}
.ydc{bottom:877.374907pt;}
.y5f{bottom:877.375867pt;}
.y2c1{bottom:878.490053pt;}
.y251{bottom:878.493067pt;}
.y30e{bottom:878.494027pt;}
.y289{bottom:878.495733pt;}
.y140{bottom:880.175733pt;}
.y31{bottom:889.455381pt;}
.y30{bottom:900.655557pt;}
.y2f{bottom:911.855733pt;}
.y5d{bottom:918.015733pt;}
.h18{height:10.560000pt;}
.h1d{height:10.880000pt;}
.h14{height:13.040000pt;}
.h13{height:16.640625pt;}
.h10{height:18.800000pt;}
.h20{height:19.195312pt;}
.hf{height:21.920000pt;}
.h19{height:23.813760pt;}
.hc{height:25.922812pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h12{height:29.116406pt;}
.h15{height:29.550937pt;}
.h17{height:29.758750pt;}
.hd{height:30.090937pt;}
.h1b{height:31.358906pt;}
.h1e{height:31.683750pt;}
.ha{height:36.809062pt;}
.h16{height:38.717187pt;}
.h1f{height:38.751961pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h11{height:45.120000pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.h1a{height:55.358590pt;}
.h1c{height:66.236926pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:53.440000pt;}
.w6{width:80.080000pt;}
.w8{width:226.560000pt;}
.w7{width:433.760000pt;}
.w4{width:551.200000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x3e{left:80.400000pt;}
.x28{left:83.040000pt;}
.x3d{left:84.160000pt;}
.x16{left:86.080000pt;}
.x7{left:88.720237pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x1e{left:95.679816pt;}
.x2a{left:96.800000pt;}
.x26{left:100.160320pt;}
.x2c{left:101.600768pt;}
.x21{left:105.518624pt;}
.x30{left:106.479674pt;}
.x20{left:107.840272pt;}
.x3c{left:108.959552pt;}
.x17{left:117.600000pt;}
.x1d{left:119.440000pt;}
.x2d{left:121.999728pt;}
.x2e{left:124.479912pt;}
.x2f{left:125.840768pt;}
.xf{left:133.120000pt;}
.x10{left:142.240000pt;}
.x41{left:149.760272pt;}
.x42{left:156.640096pt;}
.x9{left:162.880000pt;}
.x3a{left:167.199720pt;}
.x45{left:168.399656pt;}
.x4{left:180.874667pt;}
.x49{left:193.760000pt;}
.x43{left:197.679640pt;}
.x4a{left:203.760000pt;}
.x3b{left:206.559208pt;}
.x31{left:218.160000pt;}
.x46{left:219.679136pt;}
.x48{left:221.360000pt;}
.xa{left:224.160000pt;}
.x3f{left:235.840000pt;}
.x47{left:262.398736pt;}
.xc{left:271.199880pt;}
.x11{left:278.720000pt;}
.x12{left:283.200000pt;}
.x2b{left:295.521152pt;}
.x1f{left:323.758856pt;}
.x1a{left:354.960000pt;}
.xb{left:357.120000pt;}
.x8{left:370.320000pt;}
.x1c{left:376.400000pt;}
.x19{left:383.680000pt;}
.x13{left:389.840000pt;}
.x14{left:395.040000pt;}
.x29{left:396.800269pt;}
.x3{left:404.408000pt;}
.x44{left:407.999688pt;}
.x35{left:424.719640pt;}
.x34{left:429.759808pt;}
.x18{left:432.080000pt;}
.x40{left:441.360112pt;}
.x37{left:464.159992pt;}
.x32{left:465.119720pt;}
.x36{left:466.240112pt;}
.x22{left:493.115736pt;}
.x27{left:505.280448pt;}
.x25{left:513.914808pt;}
.x23{left:515.675728pt;}
.x24{left:524.475008pt;}
.xd{left:543.600000pt;}
.x39{left:547.120072pt;}
.x38{left:548.159600pt;}
.x15{left:556.000000pt;}
.x33{left:603.759984pt;}
.x1b{left:617.040000pt;}
.xe{left:630.800000pt;}
}




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