
    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_19f9e407fd27621f2aebbb0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.730957;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_bb1e81f6d02b403ea74bf5e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_2464eb336ed09adcbd6fdc7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_14d713b2e69d88a20a16017b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_82c7b69b2cd8d2fae9141d2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912308;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_ab49312af074b59a4c76dbed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b293f45443e23c8f210c312b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fd1d2a2e66c57b267425b201.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_38ed7519c186acda211f5018.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_14d713b2e69d88a20a16017b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_44047f86b23a3c0ed42a5b18.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_14d713b2e69d88a20a16017b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;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_b2634fd99ef2fbca3fe5f80c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2da268b8b0990e6879ded87c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084473;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_002dfe7fcc3c6d9b4e904b35.woff2')format("woff");}.fff{font-family:fff;line-height:0.781000;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_8a2c11fb8c83fddb8a6e9183.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912308;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_b52c8513711f42239d19afd3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715820;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_42b0499f51488e5ed7edd71c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_14d713b2e69d88a20a16017b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936000;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_47e357532c103d8b6b813305.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d25fba76f31f546b885fe6a2.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.084473;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_002dfe7fcc3c6d9b4e904b35.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.781000;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_8a2c11fb8c83fddb8a6e9183.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912308;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_b52c8513711f42239d19afd3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.715820;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_42b0499f51488e5ed7edd71c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_002dfe7fcc3c6d9b4e904b35.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.781000;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_8a2c11fb8c83fddb8a6e9183.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.912308;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_b52c8513711f42239d19afd3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.715820;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_42b0499f51488e5ed7edd71c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ee30d03c8900d6c8ae871832.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_485f4d381f91749aa6241f07.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.084473;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_002dfe7fcc3c6d9b4e904b35.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_14d713b2e69d88a20a16017b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_8a2c11fb8c83fddb8a6e9183.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.912308;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_b52c8513711f42239d19afd3.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_42b0499f51488e5ed7edd71c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_ee30d03c8900d6c8ae871832.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_485f4d381f91749aa6241f07.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.084473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_002dfe7fcc3c6d9b4e904b35.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.781000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_14d713b2e69d88a20a16017b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_8a2c11fb8c83fddb8a6e9183.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.912308;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_b52c8513711f42239d19afd3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_42b0499f51488e5ed7edd71c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_6190804cf88890bac554f8ba.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:19.980000px;}
.v4{vertical-align:32.400000px;}
.lse{letter-spacing:-1.650000px;}
.lsd{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001800px;}
.ls7{letter-spacing:0.003000px;}
.lsa{letter-spacing:0.003600px;}
.ls6{letter-spacing:8.640000px;}
.ls4{letter-spacing:10.200000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.lsb{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls9{letter-spacing:28.800000px;}
.ls5{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-420.000000px;}
.ws22{word-spacing:-98.766600px;}
.wsf{word-spacing:-92.160000px;}
.wsd{word-spacing:-75.600000px;}
.ws82{word-spacing:-72.479400px;}
.ws23{word-spacing:-36.180000px;}
.ws84{word-spacing:-31.680000px;}
.ws6{word-spacing:-25.812000px;}
.wsf2{word-spacing:-20.016000px;}
.ws85{word-spacing:-15.012000px;}
.wse{word-spacing:-14.520000px;}
.ws8e{word-spacing:-14.400000px;}
.ws70{word-spacing:-14.388000px;}
.ws30{word-spacing:-14.322000px;}
.ws10{word-spacing:-14.124000px;}
.ws50{word-spacing:-14.058000px;}
.ws17{word-spacing:-13.926000px;}
.ws5c{word-spacing:-13.794000px;}
.ws26{word-spacing:-13.728000px;}
.ws24{word-spacing:-13.332000px;}
.ws5f{word-spacing:-13.200000px;}
.ws7{word-spacing:-12.960000px;}
.ws69{word-spacing:-12.936000px;}
.ws7b{word-spacing:-12.738000px;}
.ws5e{word-spacing:-12.672000px;}
.ws6a{word-spacing:-12.606000px;}
.ws4b{word-spacing:-12.540000px;}
.ws5d{word-spacing:-12.474000px;}
.ws18{word-spacing:-12.408000px;}
.ws4a{word-spacing:-12.342000px;}
.ws7e{word-spacing:-12.276000px;}
.ws46{word-spacing:-12.210000px;}
.ws1f{word-spacing:-12.144000px;}
.ws1d{word-spacing:-12.012000px;}
.ws63{word-spacing:-11.814000px;}
.ws78{word-spacing:-11.616000px;}
.ws7f{word-spacing:-11.484000px;}
.ws48{word-spacing:-11.418000px;}
.ws74{word-spacing:-11.352000px;}
.ws60{word-spacing:-11.286000px;}
.ws71{word-spacing:-11.220000px;}
.ws19{word-spacing:-11.154000px;}
.ws4f{word-spacing:-11.088000px;}
.ws72{word-spacing:-11.022000px;}
.ws5a{word-spacing:-10.956000px;}
.ws51{word-spacing:-10.890000px;}
.ws2d{word-spacing:-10.758000px;}
.ws73{word-spacing:-10.692000px;}
.ws14{word-spacing:-10.626000px;}
.ws56{word-spacing:-10.560000px;}
.ws29{word-spacing:-10.428000px;}
.ws33{word-spacing:-9.966000px;}
.ws7d{word-spacing:-9.900000px;}
.ws79{word-spacing:-9.834000px;}
.ws11{word-spacing:-9.768000px;}
.ws62{word-spacing:-9.702000px;}
.ws4c{word-spacing:-9.636000px;}
.ws68{word-spacing:-9.570000px;}
.ws6d{word-spacing:-9.372000px;}
.ws32{word-spacing:-9.306000px;}
.ws1a{word-spacing:-9.240000px;}
.ws15{word-spacing:-9.174000px;}
.ws40{word-spacing:-8.976000px;}
.ws57{word-spacing:-8.844000px;}
.ws37{word-spacing:-8.778000px;}
.ws39{word-spacing:-8.712000px;}
.ws35{word-spacing:-8.646000px;}
.ws25{word-spacing:-8.514000px;}
.ws52{word-spacing:-8.316000px;}
.ws2a{word-spacing:-8.184000px;}
.ws80{word-spacing:-8.052000px;}
.ws1e{word-spacing:-7.986000px;}
.ws55{word-spacing:-7.920000px;}
.ws3f{word-spacing:-7.854000px;}
.ws2b{word-spacing:-7.722000px;}
.ws45{word-spacing:-7.656000px;}
.ws2f{word-spacing:-7.590000px;}
.ws38{word-spacing:-7.524000px;}
.ws77{word-spacing:-7.392000px;}
.wse0{word-spacing:-7.380000px;}
.ws27{word-spacing:-7.326000px;}
.ws2c{word-spacing:-7.260000px;}
.ws6f{word-spacing:-7.128000px;}
.ws44{word-spacing:-6.336000px;}
.ws16{word-spacing:-6.138000px;}
.ws41{word-spacing:-6.072000px;}
.ws61{word-spacing:-6.006000px;}
.ws34{word-spacing:-5.940000px;}
.ws20{word-spacing:-5.676000px;}
.ws2e{word-spacing:-5.610000px;}
.ws53{word-spacing:-5.544000px;}
.ws31{word-spacing:-5.478000px;}
.ws76{word-spacing:-5.412000px;}
.ws54{word-spacing:-5.346000px;}
.wsec{word-spacing:-5.340000px;}
.wsb6{word-spacing:-5.280000px;}
.ws5b{word-spacing:-5.082000px;}
.ws3b{word-spacing:-5.016000px;}
.ws67{word-spacing:-4.950000px;}
.ws28{word-spacing:-4.884000px;}
.ws1c{word-spacing:-4.818000px;}
.ws13{word-spacing:-4.752000px;}
.ws9e{word-spacing:-4.740000px;}
.ws42{word-spacing:-4.488000px;}
.wsc3{word-spacing:-4.440000px;}
.ws47{word-spacing:-4.422000px;}
.wsde{word-spacing:-4.380000px;}
.wsa6{word-spacing:-4.260000px;}
.ws6b{word-spacing:-4.224000px;}
.wseb{word-spacing:-4.140000px;}
.ws59{word-spacing:-4.092000px;}
.ws6c{word-spacing:-3.960000px;}
.wsed{word-spacing:-3.840000px;}
.ws64{word-spacing:-3.762000px;}
.ws7a{word-spacing:-3.630000px;}
.ws8f{word-spacing:-3.480000px;}
.wsa9{word-spacing:-3.300000px;}
.wsaa{word-spacing:-3.180000px;}
.ws3d{word-spacing:-3.102000px;}
.wsa3{word-spacing:-3.060000px;}
.ws1b{word-spacing:-2.970000px;}
.ws49{word-spacing:-2.904000px;}
.ws75{word-spacing:-2.838000px;}
.ws7c{word-spacing:-2.706000px;}
.ws58{word-spacing:-2.640000px;}
.ws4e{word-spacing:-2.574000px;}
.ws65{word-spacing:-2.508000px;}
.ws86{word-spacing:-2.484000px;}
.wsa0{word-spacing:-2.460000px;}
.ws3e{word-spacing:-2.442000px;}
.wse2{word-spacing:-2.400000px;}
.ws4d{word-spacing:-2.310000px;}
.ws3c{word-spacing:-2.244000px;}
.ws2{word-spacing:-2.220000px;}
.ws66{word-spacing:-2.178000px;}
.ws8d{word-spacing:-2.106000px;}
.ws3{word-spacing:-1.998000px;}
.ws36{word-spacing:-1.980000px;}
.ws91{word-spacing:-1.920000px;}
.ws3a{word-spacing:-1.914000px;}
.ws9{word-spacing:-1.887000px;}
.ws6e{word-spacing:-1.848000px;}
.ws12{word-spacing:-1.776000px;}
.wsbc{word-spacing:-1.440000px;}
.wsd4{word-spacing:-1.380000px;}
.wsa5{word-spacing:-1.020000px;}
.ws4{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.918000px;}
.ws43{word-spacing:-0.864000px;}
.wsa2{word-spacing:-0.840000px;}
.wsb8{word-spacing:-0.540000px;}
.wsbe{word-spacing:-0.480000px;}
.ws8c{word-spacing:-0.324000px;}
.ws90{word-spacing:-0.240000px;}
.wsaf{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.wsef{word-spacing:0.378000px;}
.wse4{word-spacing:0.420000px;}
.wsbd{word-spacing:0.540000px;}
.wse9{word-spacing:0.660000px;}
.wsc1{word-spacing:0.720000px;}
.wscd{word-spacing:0.840000px;}
.wsd5{word-spacing:0.900000px;}
.wsce{word-spacing:1.080000px;}
.wsad{word-spacing:1.140000px;}
.wsf0{word-spacing:1.188000px;}
.ws8b{word-spacing:1.242000px;}
.wsc6{word-spacing:1.320000px;}
.wsb7{word-spacing:1.560000px;}
.wsa8{word-spacing:1.800000px;}
.wsea{word-spacing:1.980000px;}
.ws9a{word-spacing:2.160000px;}
.wsc8{word-spacing:2.280000px;}
.wse7{word-spacing:2.520000px;}
.wsc0{word-spacing:2.640000px;}
.ws93{word-spacing:2.700000px;}
.ws92{word-spacing:2.880000px;}
.wsda{word-spacing:3.060000px;}
.ws9d{word-spacing:3.360000px;}
.wse1{word-spacing:3.480000px;}
.ws87{word-spacing:3.510000px;}
.ws96{word-spacing:3.660000px;}
.wsa4{word-spacing:3.840000px;}
.wsa7{word-spacing:4.020000px;}
.wsb5{word-spacing:4.080000px;}
.wsb2{word-spacing:4.320000px;}
.wsba{word-spacing:4.380000px;}
.wscf{word-spacing:4.620000px;}
.ws88{word-spacing:4.698000px;}
.ws9b{word-spacing:4.740000px;}
.wsae{word-spacing:4.980000px;}
.wsca{word-spacing:5.160000px;}
.wscb{word-spacing:5.580000px;}
.ws99{word-spacing:5.640000px;}
.wsdd{word-spacing:5.700000px;}
.wsa1{word-spacing:6.180000px;}
.ws9c{word-spacing:6.540000px;}
.ws98{word-spacing:7.260000px;}
.ws89{word-spacing:7.344000px;}
.wsd0{word-spacing:7.860000px;}
.ws95{word-spacing:7.920000px;}
.wsb3{word-spacing:8.520000px;}
.wsc5{word-spacing:8.760000px;}
.wsb9{word-spacing:8.820000px;}
.ws8a{word-spacing:8.856000px;}
.ws9f{word-spacing:8.880000px;}
.wsc4{word-spacing:9.180000px;}
.wsd1{word-spacing:10.020000px;}
.ws94{word-spacing:10.140000px;}
.wse5{word-spacing:10.380000px;}
.wsd9{word-spacing:10.440000px;}
.wsb4{word-spacing:10.500000px;}
.wsc7{word-spacing:11.040000px;}
.wsdc{word-spacing:11.220000px;}
.wsc2{word-spacing:11.700000px;}
.wsb1{word-spacing:12.180000px;}
.wscc{word-spacing:12.600000px;}
.wsac{word-spacing:12.660000px;}
.wsc9{word-spacing:12.780000px;}
.wsbf{word-spacing:13.020000px;}
.wsd7{word-spacing:13.080000px;}
.ws97{word-spacing:13.440000px;}
.wsbb{word-spacing:13.800000px;}
.wsd3{word-spacing:13.980000px;}
.wsee{word-spacing:14.040000px;}
.wsb0{word-spacing:14.460000px;}
.wsd6{word-spacing:14.820000px;}
.wsdf{word-spacing:15.720000px;}
.wsdb{word-spacing:15.900000px;}
.wsf1{word-spacing:17.820000px;}
.wsab{word-spacing:17.940000px;}
.wse8{word-spacing:18.900000px;}
.wsd2{word-spacing:19.140000px;}
.ws8{word-spacing:20.574000px;}
.wse6{word-spacing:23.520000px;}
.wse3{word-spacing:24.060000px;}
.wsd8{word-spacing:26.040000px;}
.wsb{word-spacing:41.597400px;}
.wsc{word-spacing:41.633400px;}
.ws83{word-spacing:66.634800px;}
.ws21{word-spacing:81.017400px;}
.ws5{word-spacing:101.888400px;}
.ws81{word-spacing:107.243400px;}
._10{margin-left:-2067.096000px;}
._36{margin-left:-1881.693600px;}
._2d{margin-left:-1721.301600px;}
._2b{margin-left:-1718.806800px;}
._3f{margin-left:-1698.882600px;}
._34{margin-left:-1597.708200px;}
._38{margin-left:-1537.439400px;}
._25{margin-left:-1473.690000px;}
._2f{margin-left:-1406.215800px;}
._27{margin-left:-1348.122600px;}
._8{margin-left:-1344.388800px;}
._43{margin-left:-1325.889000px;}
._30{margin-left:-1314.353400px;}
._17{margin-left:-1272.573000px;}
._e{margin-left:-1238.490600px;}
._32{margin-left:-1212.406200px;}
._29{margin-left:-1194.318600px;}
._12{margin-left:-1134.312600px;}
._c{margin-left:-1121.347800px;}
._2a{margin-left:-1086.210000px;}
._3b{margin-left:-1072.250400px;}
._1c{margin-left:-1068.670800px;}
._14{margin-left:-1065.258000px;}
._9{margin-left:-1053.270000px;}
._1e{margin-left:-1029.294000px;}
._a{margin-left:-998.220000px;}
._15{margin-left:-951.156000px;}
._35{margin-left:-937.422000px;}
._23{margin-left:-927.258600px;}
._11{margin-left:-924.264000px;}
._21{margin-left:-915.300000px;}
._18{margin-left:-897.210000px;}
._42{margin-left:-891.096000px;}
._3e{margin-left:-882.966000px;}
._20{margin-left:-878.310000px;}
._13{margin-left:-861.192000px;}
._3c{margin-left:-858.276000px;}
._1a{margin-left:-853.032000px;}
._31{margin-left:-840.294000px;}
._1b{margin-left:-838.440000px;}
._d{margin-left:-813.078000px;}
._16{margin-left:-796.932000px;}
._22{margin-left:-786.240000px;}
._1d{margin-left:-782.130000px;}
._1f{margin-left:-775.422000px;}
._33{margin-left:-767.210400px;}
._40{margin-left:-762.156000px;}
._24{margin-left:-724.446000px;}
._3a{margin-left:-705.240000px;}
._2c{margin-left:-696.222000px;}
._7{margin-left:-693.252000px;}
._1{margin-left:-622.440000px;}
._3d{margin-left:-609.336000px;}
._6{margin-left:-571.860000px;}
._41{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._19{margin-left:-480.864000px;}
._2e{margin-left:-441.126000px;}
._f{margin-left:-399.114000px;}
._28{margin-left:-389.048400px;}
._39{margin-left:-378.162000px;}
._37{margin-left:-366.120000px;}
._26{margin-left:-264.060000px;}
._52{margin-left:-14.671200px;}
._49{margin-left:-13.186800px;}
._44{margin-left:-10.800000px;}
._4a{margin-left:-9.589800px;}
._4c{margin-left:-8.052000px;}
._b{margin-left:-6.993000px;}
._45{margin-left:-5.940600px;}
._4{margin-left:-4.017600px;}
._3{margin-left:-2.220000px;}
._5{margin-left:-1.043400px;}
._4e{width:1.016400px;}
._2{width:2.196000px;}
._4d{width:3.608400px;}
._4b{width:4.844400px;}
._57{width:5.977800px;}
._4f{width:7.296600px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._51{width:12.331800px;}
._55{width:13.423200px;}
._54{width:16.284000px;}
._53{width:17.285400px;}
._5c{width:18.291000px;}
._46{width:20.593200px;}
._5d{width:30.225000px;}
._5b{width:59.264400px;}
._56{width:79.008000px;}
._50{width:220.797600px;}
._59{width:483.861000px;}
._5a{width:566.724000px;}
._58{width:1099.041000px;}
.fcd{color:rgb(0,0,0);}
.fc0{color:rgb(213,185,16);}
.fc1{color:rgb(217,182,26);}
.fc2{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(48,169,64);}
.fc5{color:rgb(61,123,199);}
.fcb{color:rgb(5,99,193);}
.fc7{color:rgb(210,32,39);}
.fce{color:rgb(105,198,71);}
.fc9{color:rgb(90,198,243);}
.fc8{color:rgb(47,92,179);}
.fca{color:rgb(15,17,21);}
.fcc{color:rgb(246,131,19);}
.fsd{font-size:34.980000px;}
.fsa{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fse{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:180.000000px;}
.fsb{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs0{font-size:300.112800px;}
.fs3{font-size:420.000000px;}
.fs1{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.509250px;}
.y3{bottom:72.957000px;}
.y5{bottom:83.368950px;}
.y6{bottom:83.904450px;}
.y36{bottom:84.471900px;}
.ya3{bottom:85.007400px;}
.y35{bottom:120.265350px;}
.y244{bottom:125.836200px;}
.y5e{bottom:127.559100px;}
.y209{bottom:127.559250px;}
.y62{bottom:127.597200px;}
.y143{bottom:128.869650px;}
.y183{bottom:130.017750px;}
.y6d{bottom:134.881650px;}
.y34{bottom:139.817400px;}
.y1ea{bottom:140.430450px;}
.y142{bottom:143.269650px;}
.y1b3{bottom:143.357400px;}
.y61{bottom:143.797200px;}
.y182{bottom:144.417600px;}
.y5d{bottom:147.111000px;}
.y167{bottom:148.669650px;}
.y10b{bottom:149.817750px;}
.y275{bottom:151.085550px;}
.y6c{bottom:152.881650px;}
.y1e9{bottom:158.430450px;}
.y33{bottom:159.069300px;}
.y243{bottom:159.742050px;}
.y60{bottom:159.997200px;}
.y1b2{bottom:161.357400px;}
.y141{bottom:163.069650px;}
.y10a{bottom:164.217750px;}
.yd5{bottom:165.734100px;}
.y5c{bottom:167.562900px;}
.y274{bottom:169.085550px;}
.y174{bottom:169.617600px;}
.y6b{bottom:170.881650px;}
.y208{bottom:172.005450px;}
.y241{bottom:175.942050px;}
.y5f{bottom:176.197200px;}
.y1e8{bottom:176.430450px;}
.y32{bottom:178.321350px;}
.y1b1{bottom:179.357400px;}
.yd4{bottom:180.134250px;}
.y109{bottom:184.017750px;}
.y273{bottom:187.085550px;}
.y140{bottom:187.121550px;}
.y5b{bottom:188.014950px;}
.y17f{bottom:188.269650px;}
.y6a{bottom:188.881650px;}
.y207{bottom:190.005450px;}
.y242{bottom:192.142050px;}
.y1e7{bottom:194.430450px;}
.y31{bottom:197.573250px;}
.y13f{bottom:201.521550px;}
.y17e{bottom:202.669650px;}
.yd3{bottom:204.186150px;}
.y272{bottom:205.085550px;}
.y1b0{bottom:205.861350px;}
.y69{bottom:206.881650px;}
.y206{bottom:208.005450px;}
.y108{bottom:208.069650px;}
.y5a{bottom:208.467000px;}
.ya2{bottom:210.292950px;}
.y1e6{bottom:212.430450px;}
.y240{bottom:213.970350px;}
.y30{bottom:216.825150px;}
.yd2{bottom:218.586150px;}
.y13e{bottom:221.321550px;}
.y107{bottom:222.469650px;}
.y271{bottom:223.085550px;}
.y1af{bottom:223.861350px;}
.y68{bottom:224.881650px;}
.y166{bottom:225.573600px;}
.y205{bottom:226.005450px;}
.y17d{bottom:226.721700px;}
.y59{bottom:228.918900px;}
.y23f{bottom:230.170350px;}
.y1e5{bottom:230.430450px;}
.ya1{bottom:230.745000px;}
.y2f{bottom:236.077200px;}
.y23c{bottom:238.270350px;}
.y165{bottom:239.973600px;}
.y270{bottom:241.085550px;}
.y17c{bottom:241.121550px;}
.y1ae{bottom:241.861350px;}
.y106{bottom:242.269650px;}
.yd1{bottom:242.638050px;}
.y67{bottom:242.881650px;}
.y204{bottom:244.005450px;}
.y13d{bottom:245.373600px;}
.y23e{bottom:246.370350px;}
.y173{bottom:246.521550px;}
.y1e4{bottom:248.430450px;}
.y58{bottom:249.370950px;}
.ya0{bottom:251.196900px;}
.y285{bottom:253.855950px;}
.y2e{bottom:255.329250px;}
.yd0{bottom:257.038200px;}
.y26f{bottom:259.085550px;}
.y13c{bottom:259.773600px;}
.y1ad{bottom:259.861350px;}
.y66{bottom:260.881650px;}
.y172{bottom:260.921700px;}
.y203{bottom:262.005450px;}
.y23d{bottom:262.570350px;}
.y105{bottom:266.321550px;}
.y1e3{bottom:266.430450px;}
.y57{bottom:269.822850px;}
.y9f{bottom:271.648950px;}
.y284{bottom:271.855950px;}
.y2d{bottom:274.581150px;}
.y26e{bottom:277.085550px;}
.y1ac{bottom:277.861350px;}
.y13b{bottom:279.573600px;}
.y202{bottom:280.005450px;}
.y104{bottom:280.721700px;}
.ycf{bottom:281.090100px;}
.y164{bottom:283.825500px;}
.y23b{bottom:284.398800px;}
.y1e2{bottom:284.430450px;}
.y171{bottom:284.973600px;}
.y65{bottom:287.385450px;}
.y56{bottom:290.274750px;}
.y9e{bottom:292.100850px;}
.y2c{bottom:293.833050px;}
.y26d{bottom:295.085550px;}
.yce{bottom:295.490100px;}
.y1ab{bottom:295.861350px;}
.y201{bottom:298.005450px;}
.y163{bottom:298.225500px;}
.y170{bottom:299.373600px;}
.y103{bottom:300.521550px;}
.y23a{bottom:300.598800px;}
.y1e1{bottom:302.430450px;}
.y13a{bottom:303.625650px;}
.y128{bottom:304.773600px;}
.y64{bottom:305.385450px;}
.y29b{bottom:305.730000px;}
.y55{bottom:310.726800px;}
.y9d{bottom:312.552900px;}
.y2b{bottom:313.085100px;}
.y26c{bottom:313.085550px;}
.y1aa{bottom:313.861350px;}
.ycd{bottom:315.290100px;}
.y200{bottom:316.005450px;}
.y239{bottom:316.798800px;}
.y139{bottom:318.025500px;}
.y127{bottom:319.173600px;}
.y1e0{bottom:320.430450px;}
.y16f{bottom:323.425500px;}
.y102{bottom:324.573600px;}
.y29a{bottom:325.530000px;}
.y235{bottom:327.712950px;}
.y26b{bottom:331.085550px;}
.y54{bottom:331.178700px;}
.y1a9{bottom:331.861350px;}
.y63{bottom:331.889400px;}
.y2a{bottom:332.337000px;}
.y9c{bottom:333.004800px;}
.y1ff{bottom:334.005450px;}
.y138{bottom:337.825500px;}
.y1df{bottom:338.430450px;}
.y238{bottom:338.627100px;}
.y101{bottom:338.973600px;}
.ycc{bottom:339.342150px;}
.y162{bottom:342.077550px;}
.y17b{bottom:343.225500px;}
.y299{bottom:345.330000px;}
.y26a{bottom:349.085550px;}
.y29{bottom:351.589050px;}
.y53{bottom:351.630750px;}
.y1fe{bottom:352.005450px;}
.y9b{bottom:353.456850px;}
.ycb{bottom:353.742000px;}
.y237{bottom:354.827100px;}
.y1de{bottom:356.430450px;}
.y161{bottom:356.477550px;}
.y17a{bottom:357.625650px;}
.y137{bottom:361.877550px;}
.y100{bottom:363.025500px;}
.y298{bottom:365.130000px;}
.y269{bottom:367.085550px;}
.y1fd{bottom:370.005450px;}
.y28{bottom:370.840950px;}
.y236{bottom:371.027100px;}
.y1a8{bottom:371.609250px;}
.y52{bottom:372.082650px;}
.yca{bottom:373.542000px;}
.y9a{bottom:373.908750px;}
.y1dd{bottom:374.430450px;}
.y136{bottom:376.277550px;}
.yff{bottom:377.425500px;}
.y297{bottom:384.930000px;}
.y1fc{bottom:388.005450px;}
.y1a7{bottom:389.609250px;}
.y27{bottom:390.093000px;}
.y1dc{bottom:392.430450px;}
.y51{bottom:392.534700px;}
.y234{bottom:392.855550px;}
.y268{bottom:393.589500px;}
.y99{bottom:394.360800px;}
.y135{bottom:396.077550px;}
.yfe{bottom:397.225500px;}
.yc9{bottom:397.594050px;}
.y160{bottom:400.329450px;}
.y233{bottom:400.955550px;}
.y179{bottom:401.477550px;}
.y1fb{bottom:406.005600px;}
.y26{bottom:409.344900px;}
.y1db{bottom:410.430450px;}
.yc8{bottom:411.994050px;}
.y50{bottom:412.986600px;}
.y15f{bottom:414.729450px;}
.y98{bottom:414.812700px;}
.y178{bottom:415.877550px;}
.y1a6{bottom:416.113200px;}
.y134{bottom:420.129450px;}
.yfd{bottom:421.277550px;}
.y1fa{bottom:424.005600px;}
.y1da{bottom:428.430450px;}
.y25{bottom:428.596950px;}
.y232{bottom:430.883850px;}
.yc7{bottom:431.794050px;}
.y290{bottom:432.045300px;}
.y267{bottom:433.189500px;}
.y4f{bottom:433.438500px;}
.y1a5{bottom:434.113200px;}
.y133{bottom:434.529450px;}
.y97{bottom:435.264750px;}
.yfc{bottom:435.677550px;}
.y1d9{bottom:446.430450px;}
.y231{bottom:447.083850px;}
.y24{bottom:447.848850px;}
.y266{bottom:451.189500px;}
.y28f{bottom:451.845300px;}
.y1a4{bottom:452.113200px;}
.y4e{bottom:453.890550px;}
.y132{bottom:454.329450px;}
.y22e{bottom:455.183850px;}
.yfb{bottom:455.477550px;}
.y96{bottom:455.716650px;}
.yc6{bottom:455.845950px;}
.y15e{bottom:458.581500px;}
.y126{bottom:459.729450px;}
.y1f9{bottom:460.005600px;}
.y230{bottom:463.283850px;}
.y1d8{bottom:464.430450px;}
.y23{bottom:467.100750px;}
.y265{bottom:469.189500px;}
.y1a3{bottom:470.113200px;}
.yc5{bottom:470.245950px;}
.y28e{bottom:471.645300px;}
.y15d{bottom:472.981500px;}
.y125{bottom:474.129450px;}
.y4d{bottom:474.342450px;}
.y95{bottom:476.168550px;}
.y131{bottom:478.381500px;}
.y22f{bottom:479.483850px;}
.yfa{bottom:479.529450px;}
.y1d7{bottom:482.430450px;}
.y22{bottom:486.352800px;}
.y264{bottom:487.189500px;}
.y1a2{bottom:488.113200px;}
.yc4{bottom:490.045950px;}
.y130{bottom:492.781500px;}
.yf9{bottom:493.929450px;}
.y4c{bottom:494.794500px;}
.y94{bottom:496.620600px;}
.y177{bottom:498.181500px;}
.y1d6{bottom:500.430450px;}
.y22d{bottom:501.312300px;}
.y263{bottom:505.189500px;}
.y21{bottom:505.604700px;}
.y1a1{bottom:506.113200px;}
.y12f{bottom:512.581500px;}
.yf8{bottom:513.729450px;}
.yc3{bottom:514.098000px;}
.y4b{bottom:515.246550px;}
.y15c{bottom:516.833400px;}
.y93{bottom:517.072500px;}
.y22b{bottom:517.512300px;}
.y124{bottom:517.981500px;}
.y1d5{bottom:518.430450px;}
.y296{bottom:518.760750px;}
.y262{bottom:523.189500px;}
.y1a0{bottom:524.113200px;}
.y20{bottom:524.856750px;}
.yc2{bottom:528.498000px;}
.y15b{bottom:531.233400px;}
.y123{bottom:532.381500px;}
.y22c{bottom:533.712300px;}
.y4a{bottom:535.698450px;}
.y1d4{bottom:536.430450px;}
.y12e{bottom:536.633400px;}
.y92{bottom:537.524550px;}
.yf7{bottom:537.781500px;}
.y295{bottom:538.560750px;}
.y261{bottom:541.189500px;}
.y1f{bottom:544.108650px;}
.yc1{bottom:548.298000px;}
.y12d{bottom:551.033400px;}
.yf6{bottom:552.181500px;}
.y1d3{bottom:554.430450px;}
.y15a{bottom:555.285450px;}
.y22a{bottom:555.540600px;}
.y49{bottom:556.150350px;}
.y122{bottom:556.433400px;}
.y294{bottom:558.360600px;}
.y260{bottom:559.189500px;}
.y19f{bottom:562.183950px;}
.y1e{bottom:563.360700px;}
.y159{bottom:569.685450px;}
.y121{bottom:570.833400px;}
.yf5{bottom:571.981500px;}
.yc0{bottom:572.349900px;}
.y1d2{bottom:572.430450px;}
.y16e{bottom:575.085450px;}
.y48{bottom:576.602400px;}
.y25f{bottom:577.189500px;}
.y229{bottom:578.119050px;}
.y293{bottom:578.160750px;}
.y19e{bottom:580.183950px;}
.y1d{bottom:582.612600px;}
.ybf{bottom:586.749900px;}
.y91{bottom:589.315800px;}
.y158{bottom:589.485450px;}
.y1d1{bottom:590.430450px;}
.y176{bottom:590.633400px;}
.y120{bottom:594.885450px;}
.y25e{bottom:595.189500px;}
.yf4{bottom:596.033400px;}
.y47{bottom:597.054300px;}
.y292{bottom:597.960600px;}
.y1c{bottom:601.864500px;}
.y283{bottom:603.318900px;}
.y90{bottom:604.615650px;}
.y19d{bottom:606.687900px;}
.y1d0{bottom:608.430450px;}
.y11f{bottom:609.285450px;}
.yf3{bottom:610.433400px;}
.ybe{bottom:610.801950px;}
.y25d{bottom:613.189500px;}
.y157{bottom:613.537350px;}
.y228{bottom:614.119050px;}
.y175{bottom:614.685450px;}
.y46{bottom:617.506350px;}
.y291{bottom:617.760750px;}
.y282{bottom:619.518900px;}
.y8f{bottom:619.915800px;}
.y1b{bottom:621.116550px;}
.y19c{bottom:624.687900px;}
.ybd{bottom:625.201950px;}
.y1cf{bottom:626.430450px;}
.y156{bottom:627.937350px;}
.y11e{bottom:629.085450px;}
.y25c{bottom:631.189500px;}
.y227{bottom:632.119050px;}
.y16d{bottom:633.337350px;}
.yf2{bottom:634.485450px;}
.y8e{bottom:635.215800px;}
.y281{bottom:635.718900px;}
.y45{bottom:637.958250px;}
.y1a{bottom:640.368600px;}
.y19b{bottom:642.687900px;}
.y1ce{bottom:644.430450px;}
.y155{bottom:647.737350px;}
.yf1{bottom:648.885450px;}
.y25b{bottom:649.189500px;}
.ybc{bottom:649.253850px;}
.y226{bottom:650.119050px;}
.y8d{bottom:650.515800px;}
.y280{bottom:651.918900px;}
.y11d{bottom:653.137350px;}
.y44{bottom:658.410300px;}
.y19{bottom:659.620500px;}
.y19a{bottom:660.687900px;}
.y1cd{bottom:662.430450px;}
.ybb{bottom:663.653850px;}
.y8c{bottom:665.815800px;}
.y25a{bottom:667.189500px;}
.y11c{bottom:667.537350px;}
.y27f{bottom:668.118900px;}
.y225{bottom:668.119050px;}
.yf0{bottom:668.685450px;}
.y154{bottom:671.789400px;}
.y28d{bottom:677.952450px;}
.y199{bottom:678.687900px;}
.y43{bottom:678.862200px;}
.y18{bottom:678.872550px;}
.y1cc{bottom:680.430450px;}
.y8b{bottom:681.115650px;}
.yba{bottom:683.453850px;}
.y27e{bottom:684.318900px;}
.y259{bottom:685.189500px;}
.y224{bottom:686.119050px;}
.y153{bottom:686.189400px;}
.y11b{bottom:687.337350px;}
.y16c{bottom:691.589250px;}
.yef{bottom:692.737350px;}
.y8a{bottom:696.415800px;}
.y198{bottom:696.687900px;}
.y28c{bottom:697.752450px;}
.y17{bottom:698.124450px;}
.y1cb{bottom:698.430450px;}
.y42{bottom:699.314100px;}
.y27d{bottom:700.518900px;}
.y223{bottom:704.119050px;}
.y152{bottom:705.989250px;}
.yee{bottom:707.137350px;}
.yb9{bottom:707.505900px;}
.y12c{bottom:711.389400px;}
.y89{bottom:711.715800px;}
.y197{bottom:714.687900px;}
.y1ca{bottom:716.430450px;}
.y27c{bottom:716.718900px;}
.y16{bottom:717.376350px;}
.y28b{bottom:717.552450px;}
.y41{bottom:719.766150px;}
.yb8{bottom:721.905900px;}
.y222{bottom:722.119050px;}
.y12b{bottom:725.789400px;}
.yed{bottom:726.937350px;}
.y88{bottom:727.015800px;}
.y258{bottom:728.462850px;}
.y151{bottom:730.041300px;}
.y11a{bottom:731.189400px;}
.y27b{bottom:732.918900px;}
.y1c9{bottom:734.430450px;}
.y15{bottom:736.628400px;}
.y28a{bottom:737.352450px;}
.y221{bottom:740.119050px;}
.y40{bottom:740.218200px;}
.yb7{bottom:741.705900px;}
.y87{bottom:742.315800px;}
.y150{bottom:744.441300px;}
.y256{bottom:744.662850px;}
.y119{bottom:745.589250px;}
.y27a{bottom:749.118900px;}
.y16b{bottom:749.841300px;}
.yec{bottom:750.989250px;}
.y1c8{bottom:752.430450px;}
.y2{bottom:754.869900px;}
.y4{bottom:755.061000px;}
.y14{bottom:755.880300px;}
.y86{bottom:757.615650px;}
.y220{bottom:758.119050px;}
.y3f{bottom:760.670100px;}
.y257{bottom:760.862850px;}
.y14f{bottom:764.241300px;}
.y279{bottom:765.318900px;}
.yeb{bottom:765.389400px;}
.yb6{bottom:765.757800px;}
.y286{bottom:766.563300px;}
.y118{bottom:769.641300px;}
.y1c7{bottom:770.430450px;}
.y85{bottom:772.915800px;}
.y13{bottom:775.132350px;}
.y21f{bottom:776.119050px;}
.yb5{bottom:780.157800px;}
.y3e{bottom:781.122000px;}
.y278{bottom:781.518900px;}
.y117{bottom:784.041300px;}
.y84{bottom:788.215800px;}
.y14e{bottom:788.293200px;}
.y1c6{bottom:788.430450px;}
.yea{bottom:789.441300px;}
.y21e{bottom:794.119050px;}
.y12{bottom:794.384250px;}
.y255{bottom:795.775200px;}
.y277{bottom:797.718900px;}
.y196{bottom:798.637500px;}
.yb4{bottom:799.957800px;}
.y3d{bottom:801.574050px;}
.y14d{bottom:802.693200px;}
.y83{bottom:803.515800px;}
.ye9{bottom:803.841300px;}
.y289{bottom:805.427700px;}
.y1f8{bottom:806.430600px;}
.y12a{bottom:808.093350px;}
.y253{bottom:811.975200px;}
.y21d{bottom:812.119050px;}
.y11{bottom:813.636300px;}
.y276{bottom:813.919050px;}
.y1c5{bottom:814.934400px;}
.y195{bottom:818.437500px;}
.y82{bottom:818.815650px;}
.y3c{bottom:822.025950px;}
.y129{bottom:822.493350px;}
.yb3{bottom:824.009700px;}
.y1f7{bottom:824.430600px;}
.ye8{bottom:827.893200px;}
.y254{bottom:828.175200px;}
.y21c{bottom:830.119050px;}
.y10{bottom:832.888200px;}
.y81{bottom:834.115650px;}
.y288{bottom:835.531800px;}
.y194{bottom:838.237500px;}
.yb2{bottom:838.409850px;}
.ye7{bottom:842.293200px;}
.y1f6{bottom:842.430600px;}
.y3b{bottom:842.478000px;}
.y14c{bottom:846.545250px;}
.y21b{bottom:848.119050px;}
.y80{bottom:849.415800px;}
.yf{bottom:852.140100px;}
.y1c4{bottom:854.534400px;}
.y193{bottom:858.037500px;}
.y1f5{bottom:860.430600px;}
.y14b{bottom:860.945250px;}
.ye6{bottom:862.093350px;}
.yb1{bottom:862.461750px;}
.y3a{bottom:862.929900px;}
.y252{bottom:863.012850px;}
.y287{bottom:865.635750px;}
.y21a{bottom:866.119050px;}
.y116{bottom:866.345250px;}
.ye{bottom:871.392150px;}
.y1c3{bottom:872.534400px;}
.yb0{bottom:876.861750px;}
.y1f4{bottom:878.430600px;}
.y250{bottom:879.212700px;}
.y115{bottom:880.745250px;}
.ye5{bottom:881.893200px;}
.y39{bottom:883.381950px;}
.y219{bottom:884.119050px;}
.y18a{bottom:884.997300px;}
.y1c2{bottom:890.534400px;}
.y251{bottom:895.412700px;}
.y7f{bottom:895.657050px;}
.y1f3{bottom:896.430600px;}
.yaf{bottom:896.661750px;}
.y192{bottom:897.637500px;}
.y189{bottom:899.397150px;}
.y114{bottom:900.545250px;}
.y218{bottom:902.119050px;}
.y38{bottom:903.833850px;}
.yc{bottom:903.943050px;}
.y14a{bottom:904.797150px;}
.ye4{bottom:905.945250px;}
.y1c1{bottom:908.534400px;}
.y7e{bottom:910.957050px;}
.y1f2{bottom:914.430600px;}
.y191{bottom:917.437500px;}
.y149{bottom:919.197300px;}
.y217{bottom:920.119050px;}
.ye3{bottom:920.345250px;}
.yae{bottom:920.713650px;}
.yb{bottom:921.943050px;}
.y188{bottom:923.449200px;}
.y37{bottom:924.285900px;}
.y113{bottom:924.597150px;}
.y7d{bottom:926.257200px;}
.y1c0{bottom:926.534400px;}
.y24f{bottom:927.137850px;}
.y1f1{bottom:932.430600px;}
.yad{bottom:935.113800px;}
.y24e{bottom:935.237850px;}
.y190{bottom:937.237500px;}
.y187{bottom:937.849200px;}
.y216{bottom:938.119050px;}
.y112{bottom:938.997300px;}
.y7c{bottom:941.557200px;}
.ye2{bottom:944.397150px;}
.y1bf{bottom:944.534400px;}
.ya{bottom:948.446850px;}
.y1f0{bottom:950.430600px;}
.yac{bottom:954.913800px;}
.y215{bottom:956.119050px;}
.y7b{bottom:956.857200px;}
.y18f{bottom:957.037500px;}
.y186{bottom:957.649200px;}
.ye1{bottom:958.797150px;}
.y1be{bottom:962.534400px;}
.y111{bottom:963.049200px;}
.y9{bottom:966.446850px;}
.y1ef{bottom:968.430600px;}
.y7a{bottom:972.157050px;}
.y214{bottom:974.119050px;}
.y24d{bottom:975.062850px;}
.y18e{bottom:976.837500px;}
.y110{bottom:977.449200px;}
.yab{bottom:978.965850px;}
.y1bd{bottom:980.534400px;}
.y185{bottom:981.701100px;}
.ye0{bottom:982.849200px;}
.y1ee{bottom:986.430600px;}
.y79{bottom:987.457050px;}
.y24b{bottom:991.262850px;}
.y213{bottom:992.119050px;}
.y8{bottom:992.950800px;}
.yaa{bottom:993.365700px;}
.y184{bottom:996.101100px;}
.ydf{bottom:997.249200px;}
.y1bc{bottom:998.534400px;}
.yd{bottom:1000.564800px;}
.y181{bottom:1001.501100px;}
.y78{bottom:1002.757050px;}
.y1ed{bottom:1004.430600px;}
.y24c{bottom:1007.462700px;}
.y212{bottom:1010.119050px;}
.y7{bottom:1010.950800px;}
.ya9{bottom:1013.165700px;}
.y180{bottom:1015.901250px;}
.y1bb{bottom:1016.534400px;}
.yde{bottom:1017.049200px;}
.y77{bottom:1018.057050px;}
.y10f{bottom:1021.301100px;}
.y148{bottom:1021.301250px;}
.y1ec{bottom:1022.430600px;}
.y211{bottom:1028.119050px;}
.y76{bottom:1033.357050px;}
.y1ba{bottom:1034.534400px;}
.y10e{bottom:1035.701100px;}
.y147{bottom:1035.701250px;}
.ya8{bottom:1037.217750px;}
.ydd{bottom:1041.101100px;}
.y24a{bottom:1042.262850px;}
.y210{bottom:1046.119050px;}
.y75{bottom:1048.657050px;}
.y1eb{bottom:1048.934550px;}
.y18d{bottom:1050.637500px;}
.ya7{bottom:1051.617750px;}
.y1b9{bottom:1052.534400px;}
.ydc{bottom:1055.501100px;}
.y16a{bottom:1055.501250px;}
.y248{bottom:1058.462850px;}
.y10d{bottom:1059.753150px;}
.y74{bottom:1063.957050px;}
.y20f{bottom:1064.119050px;}
.y1b8{bottom:1070.534400px;}
.ya6{bottom:1071.417750px;}
.y10c{bottom:1074.153150px;}
.y249{bottom:1074.662850px;}
.y73{bottom:1079.257050px;}
.ydb{bottom:1079.553150px;}
.y20e{bottom:1082.119050px;}
.y1b7{bottom:1088.534400px;}
.y18c{bottom:1093.837500px;}
.yda{bottom:1093.953150px;}
.y72{bottom:1094.557050px;}
.y20d{bottom:1100.119050px;}
.y1b6{bottom:1106.534400px;}
.yd6{bottom:1109.035500px;}
.y247{bottom:1109.537850px;}
.y71{bottom:1109.857050px;}
.y169{bottom:1113.753150px;}
.yd9{bottom:1118.005050px;}
.y146{bottom:1118.005200px;}
.y20c{bottom:1118.119050px;}
.y1b5{bottom:1124.534400px;}
.y70{bottom:1125.157050px;}
.y245{bottom:1125.737850px;}
.yd8{bottom:1132.405050px;}
.y145{bottom:1132.405200px;}
.y20b{bottom:1136.119050px;}
.y18b{bottom:1137.037500px;}
.y168{bottom:1137.805200px;}
.y6f{bottom:1140.457050px;}
.y246{bottom:1141.937850px;}
.y1b4{bottom:1151.038350px;}
.yd7{bottom:1152.205050px;}
.y144{bottom:1152.205200px;}
.y20a{bottom:1154.119050px;}
.y6e{bottom:1155.757050px;}
.ya4{bottom:1201.511100px;}
.ya5{bottom:1203.022800px;}
.h17{height:34.945312px;}
.h22{height:34.992188px;}
.h19{height:35.156250px;}
.he{height:37.179199px;}
.h13{height:37.378418px;}
.h7{height:39.312000px;}
.hb{height:39.313477px;}
.hc{height:39.366211px;}
.h6{height:39.474000px;}
.hd{height:39.550781px;}
.h10{height:39.577148px;}
.hf{height:41.454000px;}
.h8{height:43.681641px;}
.h1e{height:43.740234px;}
.h9{height:43.945312px;}
.h20{height:43.974609px;}
.h21{height:44.797354px;}
.h16{height:46.825195px;}
.h1d{height:48.049805px;}
.h11{height:48.114258px;}
.h12{height:48.372070px;}
.h1f{height:51.082031px;}
.ha{height:51.750000px;}
.h23{height:51.972656px;}
.h27{height:52.488281px;}
.h15{height:52.560000px;}
.h18{height:57.169922px;}
.h25{height:71.765611px;}
.h24{height:71.766211px;}
.h26{height:85.148438px;}
.h1c{height:102.164062px;}
.h14{height:155.917969px;}
.h1b{height:155.918569px;}
.h1a{height:204.328125px;}
.h4{height:215.625000px;}
.h2{height:215.706075px;}
.h5{height:297.360000px;}
.h3{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.643400px;}
.x8{left:68.031450px;}
.x1b{left:72.776850px;}
.x28{left:74.031450px;}
.x18{left:79.530450px;}
.x33{left:88.116150px;}
.x36{left:93.945150px;}
.x35{left:94.968300px;}
.x5{left:96.944850px;}
.x29{left:99.504600px;}
.x9{left:104.598450px;}
.x14{left:106.299150px;}
.x4{left:108.374100px;}
.x19{left:110.551200px;}
.x2b{left:127.559100px;}
.x1d{left:140.314950px;}
.x3{left:142.368300px;}
.x1f{left:156.803700px;}
.x38{left:168.038400px;}
.x32{left:178.582650px;}
.x3d{left:198.173850px;}
.x37{left:201.950550px;}
.x20{left:207.182550px;}
.x1c{left:208.346400px;}
.x3e{left:212.393850px;}
.x1a{left:215.016000px;}
.x3c{left:218.645850px;}
.x3f{left:226.428600px;}
.x2e{left:256.507650px;}
.x17{left:280.629900px;}
.x34{left:299.518350px;}
.x39{left:315.243300px;}
.x2f{left:338.333850px;}
.x31{left:356.685300px;}
.x3a{left:359.700600px;}
.x3b{left:369.487800px;}
.x2d{left:404.031450px;}
.x30{left:431.956950px;}
.x2c{left:433.795200px;}
.x22{left:473.352000px;}
.x26{left:474.932550px;}
.x7{left:511.976100px;}
.x21{left:546.792000px;}
.x6{left:567.081150px;}
.xe{left:581.778450px;}
.x24{left:588.333450px;}
.x25{left:589.988700px;}
.x27{left:595.642950px;}
.xa{left:596.738100px;}
.x23{left:601.678200px;}
.xd{left:605.154750px;}
.x10{left:611.128800px;}
.xf{left:612.957600px;}
.x13{left:615.692850px;}
.xb{left:617.239800px;}
.x12{left:624.861300px;}
.xc{left:634.041900px;}
.x11{left:652.837950px;}
.x2a{left:658.648500px;}
.x1{left:705.924150px;}
.x1e{left:772.793700px;}
.x16{left:776.033700px;}
.x15{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:17.760000pt;}
.v4{vertical-align:28.800000pt;}
.lse{letter-spacing:-1.466667pt;}
.lsd{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001600pt;}
.ls7{letter-spacing:0.002667pt;}
.lsa{letter-spacing:0.003200pt;}
.ls6{letter-spacing:7.680000pt;}
.ls4{letter-spacing:9.066667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.lsb{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls9{letter-spacing:25.600000pt;}
.ls5{letter-spacing:32.000000pt;}
.ws0{word-spacing:-373.333333pt;}
.ws22{word-spacing:-87.792533pt;}
.wsf{word-spacing:-81.920000pt;}
.wsd{word-spacing:-67.200000pt;}
.ws82{word-spacing:-64.426133pt;}
.ws23{word-spacing:-32.160000pt;}
.ws84{word-spacing:-28.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsf2{word-spacing:-17.792000pt;}
.ws85{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.906667pt;}
.ws8e{word-spacing:-12.800000pt;}
.ws70{word-spacing:-12.789333pt;}
.ws30{word-spacing:-12.730667pt;}
.ws10{word-spacing:-12.554667pt;}
.ws50{word-spacing:-12.496000pt;}
.ws17{word-spacing:-12.378667pt;}
.ws5c{word-spacing:-12.261333pt;}
.ws26{word-spacing:-12.202667pt;}
.ws24{word-spacing:-11.850667pt;}
.ws5f{word-spacing:-11.733333pt;}
.ws7{word-spacing:-11.520000pt;}
.ws69{word-spacing:-11.498667pt;}
.ws7b{word-spacing:-11.322667pt;}
.ws5e{word-spacing:-11.264000pt;}
.ws6a{word-spacing:-11.205333pt;}
.ws4b{word-spacing:-11.146667pt;}
.ws5d{word-spacing:-11.088000pt;}
.ws18{word-spacing:-11.029333pt;}
.ws4a{word-spacing:-10.970667pt;}
.ws7e{word-spacing:-10.912000pt;}
.ws46{word-spacing:-10.853333pt;}
.ws1f{word-spacing:-10.794667pt;}
.ws1d{word-spacing:-10.677333pt;}
.ws63{word-spacing:-10.501333pt;}
.ws78{word-spacing:-10.325333pt;}
.ws7f{word-spacing:-10.208000pt;}
.ws48{word-spacing:-10.149333pt;}
.ws74{word-spacing:-10.090667pt;}
.ws60{word-spacing:-10.032000pt;}
.ws71{word-spacing:-9.973333pt;}
.ws19{word-spacing:-9.914667pt;}
.ws4f{word-spacing:-9.856000pt;}
.ws72{word-spacing:-9.797333pt;}
.ws5a{word-spacing:-9.738667pt;}
.ws51{word-spacing:-9.680000pt;}
.ws2d{word-spacing:-9.562667pt;}
.ws73{word-spacing:-9.504000pt;}
.ws14{word-spacing:-9.445333pt;}
.ws56{word-spacing:-9.386667pt;}
.ws29{word-spacing:-9.269333pt;}
.ws33{word-spacing:-8.858667pt;}
.ws7d{word-spacing:-8.800000pt;}
.ws79{word-spacing:-8.741333pt;}
.ws11{word-spacing:-8.682667pt;}
.ws62{word-spacing:-8.624000pt;}
.ws4c{word-spacing:-8.565333pt;}
.ws68{word-spacing:-8.506667pt;}
.ws6d{word-spacing:-8.330667pt;}
.ws32{word-spacing:-8.272000pt;}
.ws1a{word-spacing:-8.213333pt;}
.ws15{word-spacing:-8.154667pt;}
.ws40{word-spacing:-7.978667pt;}
.ws57{word-spacing:-7.861333pt;}
.ws37{word-spacing:-7.802667pt;}
.ws39{word-spacing:-7.744000pt;}
.ws35{word-spacing:-7.685333pt;}
.ws25{word-spacing:-7.568000pt;}
.ws52{word-spacing:-7.392000pt;}
.ws2a{word-spacing:-7.274667pt;}
.ws80{word-spacing:-7.157333pt;}
.ws1e{word-spacing:-7.098667pt;}
.ws55{word-spacing:-7.040000pt;}
.ws3f{word-spacing:-6.981333pt;}
.ws2b{word-spacing:-6.864000pt;}
.ws45{word-spacing:-6.805333pt;}
.ws2f{word-spacing:-6.746667pt;}
.ws38{word-spacing:-6.688000pt;}
.ws77{word-spacing:-6.570667pt;}
.wse0{word-spacing:-6.560000pt;}
.ws27{word-spacing:-6.512000pt;}
.ws2c{word-spacing:-6.453333pt;}
.ws6f{word-spacing:-6.336000pt;}
.ws44{word-spacing:-5.632000pt;}
.ws16{word-spacing:-5.456000pt;}
.ws41{word-spacing:-5.397333pt;}
.ws61{word-spacing:-5.338667pt;}
.ws34{word-spacing:-5.280000pt;}
.ws20{word-spacing:-5.045333pt;}
.ws2e{word-spacing:-4.986667pt;}
.ws53{word-spacing:-4.928000pt;}
.ws31{word-spacing:-4.869333pt;}
.ws76{word-spacing:-4.810667pt;}
.ws54{word-spacing:-4.752000pt;}
.wsec{word-spacing:-4.746667pt;}
.wsb6{word-spacing:-4.693333pt;}
.ws5b{word-spacing:-4.517333pt;}
.ws3b{word-spacing:-4.458667pt;}
.ws67{word-spacing:-4.400000pt;}
.ws28{word-spacing:-4.341333pt;}
.ws1c{word-spacing:-4.282667pt;}
.ws13{word-spacing:-4.224000pt;}
.ws9e{word-spacing:-4.213333pt;}
.ws42{word-spacing:-3.989333pt;}
.wsc3{word-spacing:-3.946667pt;}
.ws47{word-spacing:-3.930667pt;}
.wsde{word-spacing:-3.893333pt;}
.wsa6{word-spacing:-3.786667pt;}
.ws6b{word-spacing:-3.754667pt;}
.wseb{word-spacing:-3.680000pt;}
.ws59{word-spacing:-3.637333pt;}
.ws6c{word-spacing:-3.520000pt;}
.wsed{word-spacing:-3.413333pt;}
.ws64{word-spacing:-3.344000pt;}
.ws7a{word-spacing:-3.226667pt;}
.ws8f{word-spacing:-3.093333pt;}
.wsa9{word-spacing:-2.933333pt;}
.wsaa{word-spacing:-2.826667pt;}
.ws3d{word-spacing:-2.757333pt;}
.wsa3{word-spacing:-2.720000pt;}
.ws1b{word-spacing:-2.640000pt;}
.ws49{word-spacing:-2.581333pt;}
.ws75{word-spacing:-2.522667pt;}
.ws7c{word-spacing:-2.405333pt;}
.ws58{word-spacing:-2.346667pt;}
.ws4e{word-spacing:-2.288000pt;}
.ws65{word-spacing:-2.229333pt;}
.ws86{word-spacing:-2.208000pt;}
.wsa0{word-spacing:-2.186667pt;}
.ws3e{word-spacing:-2.170667pt;}
.wse2{word-spacing:-2.133333pt;}
.ws4d{word-spacing:-2.053333pt;}
.ws3c{word-spacing:-1.994667pt;}
.ws2{word-spacing:-1.973333pt;}
.ws66{word-spacing:-1.936000pt;}
.ws8d{word-spacing:-1.872000pt;}
.ws3{word-spacing:-1.776000pt;}
.ws36{word-spacing:-1.760000pt;}
.ws91{word-spacing:-1.706667pt;}
.ws3a{word-spacing:-1.701333pt;}
.ws9{word-spacing:-1.677333pt;}
.ws6e{word-spacing:-1.642667pt;}
.ws12{word-spacing:-1.578667pt;}
.wsbc{word-spacing:-1.280000pt;}
.wsd4{word-spacing:-1.226667pt;}
.wsa5{word-spacing:-0.906667pt;}
.ws4{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.816000pt;}
.ws43{word-spacing:-0.768000pt;}
.wsa2{word-spacing:-0.746667pt;}
.wsb8{word-spacing:-0.480000pt;}
.wsbe{word-spacing:-0.426667pt;}
.ws8c{word-spacing:-0.288000pt;}
.ws90{word-spacing:-0.213333pt;}
.wsaf{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.wsef{word-spacing:0.336000pt;}
.wse4{word-spacing:0.373333pt;}
.wsbd{word-spacing:0.480000pt;}
.wse9{word-spacing:0.586667pt;}
.wsc1{word-spacing:0.640000pt;}
.wscd{word-spacing:0.746667pt;}
.wsd5{word-spacing:0.800000pt;}
.wsce{word-spacing:0.960000pt;}
.wsad{word-spacing:1.013333pt;}
.wsf0{word-spacing:1.056000pt;}
.ws8b{word-spacing:1.104000pt;}
.wsc6{word-spacing:1.173333pt;}
.wsb7{word-spacing:1.386667pt;}
.wsa8{word-spacing:1.600000pt;}
.wsea{word-spacing:1.760000pt;}
.ws9a{word-spacing:1.920000pt;}
.wsc8{word-spacing:2.026667pt;}
.wse7{word-spacing:2.240000pt;}
.wsc0{word-spacing:2.346667pt;}
.ws93{word-spacing:2.400000pt;}
.ws92{word-spacing:2.560000pt;}
.wsda{word-spacing:2.720000pt;}
.ws9d{word-spacing:2.986667pt;}
.wse1{word-spacing:3.093333pt;}
.ws87{word-spacing:3.120000pt;}
.ws96{word-spacing:3.253333pt;}
.wsa4{word-spacing:3.413333pt;}
.wsa7{word-spacing:3.573333pt;}
.wsb5{word-spacing:3.626667pt;}
.wsb2{word-spacing:3.840000pt;}
.wsba{word-spacing:3.893333pt;}
.wscf{word-spacing:4.106667pt;}
.ws88{word-spacing:4.176000pt;}
.ws9b{word-spacing:4.213333pt;}
.wsae{word-spacing:4.426667pt;}
.wsca{word-spacing:4.586667pt;}
.wscb{word-spacing:4.960000pt;}
.ws99{word-spacing:5.013333pt;}
.wsdd{word-spacing:5.066667pt;}
.wsa1{word-spacing:5.493333pt;}
.ws9c{word-spacing:5.813333pt;}
.ws98{word-spacing:6.453333pt;}
.ws89{word-spacing:6.528000pt;}
.wsd0{word-spacing:6.986667pt;}
.ws95{word-spacing:7.040000pt;}
.wsb3{word-spacing:7.573333pt;}
.wsc5{word-spacing:7.786667pt;}
.wsb9{word-spacing:7.840000pt;}
.ws8a{word-spacing:7.872000pt;}
.ws9f{word-spacing:7.893333pt;}
.wsc4{word-spacing:8.160000pt;}
.wsd1{word-spacing:8.906667pt;}
.ws94{word-spacing:9.013333pt;}
.wse5{word-spacing:9.226667pt;}
.wsd9{word-spacing:9.280000pt;}
.wsb4{word-spacing:9.333333pt;}
.wsc7{word-spacing:9.813333pt;}
.wsdc{word-spacing:9.973333pt;}
.wsc2{word-spacing:10.400000pt;}
.wsb1{word-spacing:10.826667pt;}
.wscc{word-spacing:11.200000pt;}
.wsac{word-spacing:11.253333pt;}
.wsc9{word-spacing:11.360000pt;}
.wsbf{word-spacing:11.573333pt;}
.wsd7{word-spacing:11.626667pt;}
.ws97{word-spacing:11.946667pt;}
.wsbb{word-spacing:12.266667pt;}
.wsd3{word-spacing:12.426667pt;}
.wsee{word-spacing:12.480000pt;}
.wsb0{word-spacing:12.853333pt;}
.wsd6{word-spacing:13.173333pt;}
.wsdf{word-spacing:13.973333pt;}
.wsdb{word-spacing:14.133333pt;}
.wsf1{word-spacing:15.840000pt;}
.wsab{word-spacing:15.946667pt;}
.wse8{word-spacing:16.800000pt;}
.wsd2{word-spacing:17.013333pt;}
.ws8{word-spacing:18.288000pt;}
.wse6{word-spacing:20.906667pt;}
.wse3{word-spacing:21.386667pt;}
.wsd8{word-spacing:23.146667pt;}
.wsb{word-spacing:36.975467pt;}
.wsc{word-spacing:37.007467pt;}
.ws83{word-spacing:59.230933pt;}
.ws21{word-spacing:72.015467pt;}
.ws5{word-spacing:90.567467pt;}
.ws81{word-spacing:95.327467pt;}
._10{margin-left:-1837.418667pt;}
._36{margin-left:-1672.616533pt;}
._2d{margin-left:-1530.045867pt;}
._2b{margin-left:-1527.828267pt;}
._3f{margin-left:-1510.117867pt;}
._34{margin-left:-1420.185067pt;}
._38{margin-left:-1366.612800pt;}
._25{margin-left:-1309.946667pt;}
._2f{margin-left:-1249.969600pt;}
._27{margin-left:-1198.331200pt;}
._8{margin-left:-1195.012267pt;}
._43{margin-left:-1178.568000pt;}
._30{margin-left:-1168.314133pt;}
._17{margin-left:-1131.176000pt;}
._e{margin-left:-1100.880533pt;}
._32{margin-left:-1077.694400pt;}
._29{margin-left:-1061.616533pt;}
._12{margin-left:-1008.277867pt;}
._c{margin-left:-996.753600pt;}
._2a{margin-left:-965.520000pt;}
._3b{margin-left:-953.111467pt;}
._1c{margin-left:-949.929600pt;}
._14{margin-left:-946.896000pt;}
._9{margin-left:-936.240000pt;}
._1e{margin-left:-914.928000pt;}
._a{margin-left:-887.306667pt;}
._15{margin-left:-845.472000pt;}
._35{margin-left:-833.264000pt;}
._23{margin-left:-824.229867pt;}
._11{margin-left:-821.568000pt;}
._21{margin-left:-813.600000pt;}
._18{margin-left:-797.520000pt;}
._42{margin-left:-792.085333pt;}
._3e{margin-left:-784.858667pt;}
._20{margin-left:-780.720000pt;}
._13{margin-left:-765.504000pt;}
._3c{margin-left:-762.912000pt;}
._1a{margin-left:-758.250667pt;}
._31{margin-left:-746.928000pt;}
._1b{margin-left:-745.280000pt;}
._d{margin-left:-722.736000pt;}
._16{margin-left:-708.384000pt;}
._22{margin-left:-698.880000pt;}
._1d{margin-left:-695.226667pt;}
._1f{margin-left:-689.264000pt;}
._33{margin-left:-681.964800pt;}
._40{margin-left:-677.472000pt;}
._24{margin-left:-643.952000pt;}
._3a{margin-left:-626.880000pt;}
._2c{margin-left:-618.864000pt;}
._7{margin-left:-616.224000pt;}
._1{margin-left:-553.280000pt;}
._3d{margin-left:-541.632000pt;}
._6{margin-left:-508.320000pt;}
._41{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._19{margin-left:-427.434667pt;}
._2e{margin-left:-392.112000pt;}
._f{margin-left:-354.768000pt;}
._28{margin-left:-345.820800pt;}
._39{margin-left:-336.144000pt;}
._37{margin-left:-325.440000pt;}
._26{margin-left:-234.720000pt;}
._52{margin-left:-13.041067pt;}
._49{margin-left:-11.721600pt;}
._44{margin-left:-9.600000pt;}
._4a{margin-left:-8.524267pt;}
._4c{margin-left:-7.157333pt;}
._b{margin-left:-6.216000pt;}
._45{margin-left:-5.280533pt;}
._4{margin-left:-3.571200pt;}
._3{margin-left:-1.973333pt;}
._5{margin-left:-0.927467pt;}
._4e{width:0.903467pt;}
._2{width:1.952000pt;}
._4d{width:3.207467pt;}
._4b{width:4.306133pt;}
._57{width:5.313600pt;}
._4f{width:6.485867pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._51{width:10.961600pt;}
._55{width:11.931733pt;}
._54{width:14.474667pt;}
._53{width:15.364800pt;}
._5c{width:16.258667pt;}
._46{width:18.305067pt;}
._5d{width:26.866667pt;}
._5b{width:52.679467pt;}
._56{width:70.229333pt;}
._50{width:196.264533pt;}
._59{width:430.098667pt;}
._5a{width:503.754667pt;}
._58{width:976.925333pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fse{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:160.000000pt;}
.fsb{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs0{font-size:266.766933pt;}
.fs3{font-size:373.333333pt;}
.fs1{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.452667pt;}
.y3{bottom:64.850667pt;}
.y5{bottom:74.105733pt;}
.y6{bottom:74.581733pt;}
.y36{bottom:75.086133pt;}
.ya3{bottom:75.562133pt;}
.y35{bottom:106.902533pt;}
.y244{bottom:111.854400pt;}
.y5e{bottom:113.385867pt;}
.y209{bottom:113.386000pt;}
.y62{bottom:113.419733pt;}
.y143{bottom:114.550800pt;}
.y183{bottom:115.571333pt;}
.y6d{bottom:119.894800pt;}
.y34{bottom:124.282133pt;}
.y1ea{bottom:124.827067pt;}
.y142{bottom:127.350800pt;}
.y1b3{bottom:127.428800pt;}
.y61{bottom:127.819733pt;}
.y182{bottom:128.371200pt;}
.y5d{bottom:130.765333pt;}
.y167{bottom:132.150800pt;}
.y10b{bottom:133.171333pt;}
.y275{bottom:134.298267pt;}
.y6c{bottom:135.894800pt;}
.y1e9{bottom:140.827067pt;}
.y33{bottom:141.394933pt;}
.y243{bottom:141.992933pt;}
.y60{bottom:142.219733pt;}
.y1b2{bottom:143.428800pt;}
.y141{bottom:144.950800pt;}
.y10a{bottom:145.971333pt;}
.yd5{bottom:147.319200pt;}
.y5c{bottom:148.944800pt;}
.y274{bottom:150.298267pt;}
.y174{bottom:150.771200pt;}
.y6b{bottom:151.894800pt;}
.y208{bottom:152.893733pt;}
.y241{bottom:156.392933pt;}
.y5f{bottom:156.619733pt;}
.y1e8{bottom:156.827067pt;}
.y32{bottom:158.507867pt;}
.y1b1{bottom:159.428800pt;}
.yd4{bottom:160.119333pt;}
.y109{bottom:163.571333pt;}
.y273{bottom:166.298267pt;}
.y140{bottom:166.330267pt;}
.y5b{bottom:167.124400pt;}
.y17f{bottom:167.350800pt;}
.y6a{bottom:167.894800pt;}
.y207{bottom:168.893733pt;}
.y242{bottom:170.792933pt;}
.y1e7{bottom:172.827067pt;}
.y31{bottom:175.620667pt;}
.y13f{bottom:179.130267pt;}
.y17e{bottom:180.150800pt;}
.yd3{bottom:181.498800pt;}
.y272{bottom:182.298267pt;}
.y1b0{bottom:182.987867pt;}
.y69{bottom:183.894800pt;}
.y206{bottom:184.893733pt;}
.y108{bottom:184.950800pt;}
.y5a{bottom:185.304000pt;}
.ya2{bottom:186.927067pt;}
.y1e6{bottom:188.827067pt;}
.y240{bottom:190.195867pt;}
.y30{bottom:192.733467pt;}
.yd2{bottom:194.298800pt;}
.y13e{bottom:196.730267pt;}
.y107{bottom:197.750800pt;}
.y271{bottom:198.298267pt;}
.y1af{bottom:198.987867pt;}
.y68{bottom:199.894800pt;}
.y166{bottom:200.509867pt;}
.y205{bottom:200.893733pt;}
.y17d{bottom:201.530400pt;}
.y59{bottom:203.483467pt;}
.y23f{bottom:204.595867pt;}
.y1e5{bottom:204.827067pt;}
.ya1{bottom:205.106667pt;}
.y2f{bottom:209.846400pt;}
.y23c{bottom:211.795867pt;}
.y165{bottom:213.309867pt;}
.y270{bottom:214.298267pt;}
.y17c{bottom:214.330267pt;}
.y1ae{bottom:214.987867pt;}
.y106{bottom:215.350800pt;}
.yd1{bottom:215.678267pt;}
.y67{bottom:215.894800pt;}
.y204{bottom:216.893733pt;}
.y13d{bottom:218.109867pt;}
.y23e{bottom:218.995867pt;}
.y173{bottom:219.130267pt;}
.y1e4{bottom:220.827067pt;}
.y58{bottom:221.663067pt;}
.ya0{bottom:223.286133pt;}
.y285{bottom:225.649733pt;}
.y2e{bottom:226.959333pt;}
.yd0{bottom:228.478400pt;}
.y26f{bottom:230.298267pt;}
.y13c{bottom:230.909867pt;}
.y1ad{bottom:230.987867pt;}
.y66{bottom:231.894800pt;}
.y172{bottom:231.930400pt;}
.y203{bottom:232.893733pt;}
.y23d{bottom:233.395867pt;}
.y105{bottom:236.730267pt;}
.y1e3{bottom:236.827067pt;}
.y57{bottom:239.842533pt;}
.y9f{bottom:241.465733pt;}
.y284{bottom:241.649733pt;}
.y2d{bottom:244.072133pt;}
.y26e{bottom:246.298267pt;}
.y1ac{bottom:246.987867pt;}
.y13b{bottom:248.509867pt;}
.y202{bottom:248.893733pt;}
.y104{bottom:249.530400pt;}
.ycf{bottom:249.857867pt;}
.y164{bottom:252.289333pt;}
.y23b{bottom:252.798933pt;}
.y1e2{bottom:252.827067pt;}
.y171{bottom:253.309867pt;}
.y65{bottom:255.453733pt;}
.y56{bottom:258.022000pt;}
.y9e{bottom:259.645200pt;}
.y2c{bottom:261.184933pt;}
.y26d{bottom:262.298267pt;}
.yce{bottom:262.657867pt;}
.y1ab{bottom:262.987867pt;}
.y201{bottom:264.893733pt;}
.y163{bottom:265.089333pt;}
.y170{bottom:266.109867pt;}
.y103{bottom:267.130267pt;}
.y23a{bottom:267.198933pt;}
.y1e1{bottom:268.827067pt;}
.y13a{bottom:269.889467pt;}
.y128{bottom:270.909867pt;}
.y64{bottom:271.453733pt;}
.y29b{bottom:271.760000pt;}
.y55{bottom:276.201600pt;}
.y9d{bottom:277.824800pt;}
.y2b{bottom:278.297867pt;}
.y26c{bottom:278.298267pt;}
.y1aa{bottom:278.987867pt;}
.ycd{bottom:280.257867pt;}
.y200{bottom:280.893733pt;}
.y239{bottom:281.598933pt;}
.y139{bottom:282.689333pt;}
.y127{bottom:283.709867pt;}
.y1e0{bottom:284.827067pt;}
.y16f{bottom:287.489333pt;}
.y102{bottom:288.509867pt;}
.y29a{bottom:289.360000pt;}
.y235{bottom:291.300400pt;}
.y26b{bottom:294.298267pt;}
.y54{bottom:294.381067pt;}
.y1a9{bottom:294.987867pt;}
.y63{bottom:295.012800pt;}
.y2a{bottom:295.410667pt;}
.y9c{bottom:296.004267pt;}
.y1ff{bottom:296.893733pt;}
.y138{bottom:300.289333pt;}
.y1df{bottom:300.827067pt;}
.y238{bottom:301.001867pt;}
.y101{bottom:301.309867pt;}
.ycc{bottom:301.637467pt;}
.y162{bottom:304.068933pt;}
.y17b{bottom:305.089333pt;}
.y299{bottom:306.960000pt;}
.y26a{bottom:310.298267pt;}
.y29{bottom:312.523600pt;}
.y53{bottom:312.560667pt;}
.y1fe{bottom:312.893733pt;}
.y9b{bottom:314.183867pt;}
.ycb{bottom:314.437333pt;}
.y237{bottom:315.401867pt;}
.y1de{bottom:316.827067pt;}
.y161{bottom:316.868933pt;}
.y17a{bottom:317.889467pt;}
.y137{bottom:321.668933pt;}
.y100{bottom:322.689333pt;}
.y298{bottom:324.560000pt;}
.y269{bottom:326.298267pt;}
.y1fd{bottom:328.893733pt;}
.y28{bottom:329.636400pt;}
.y236{bottom:329.801867pt;}
.y1a8{bottom:330.319333pt;}
.y52{bottom:330.740133pt;}
.yca{bottom:332.037333pt;}
.y9a{bottom:332.363333pt;}
.y1dd{bottom:332.827067pt;}
.y136{bottom:334.468933pt;}
.yff{bottom:335.489333pt;}
.y297{bottom:342.160000pt;}
.y1fc{bottom:344.893733pt;}
.y1a7{bottom:346.319333pt;}
.y27{bottom:346.749333pt;}
.y1dc{bottom:348.827067pt;}
.y51{bottom:348.919733pt;}
.y234{bottom:349.204933pt;}
.y268{bottom:349.857333pt;}
.y99{bottom:350.542933pt;}
.y135{bottom:352.068933pt;}
.yfe{bottom:353.089333pt;}
.yc9{bottom:353.416933pt;}
.y160{bottom:355.848400pt;}
.y233{bottom:356.404933pt;}
.y179{bottom:356.868933pt;}
.y1fb{bottom:360.893867pt;}
.y26{bottom:363.862133pt;}
.y1db{bottom:364.827067pt;}
.yc8{bottom:366.216933pt;}
.y50{bottom:367.099200pt;}
.y15f{bottom:368.648400pt;}
.y98{bottom:368.722400pt;}
.y178{bottom:369.668933pt;}
.y1a6{bottom:369.878400pt;}
.y134{bottom:373.448400pt;}
.yfd{bottom:374.468933pt;}
.y1fa{bottom:376.893867pt;}
.y1da{bottom:380.827067pt;}
.y25{bottom:380.975067pt;}
.y232{bottom:383.007867pt;}
.yc7{bottom:383.816933pt;}
.y290{bottom:384.040267pt;}
.y267{bottom:385.057333pt;}
.y4f{bottom:385.278667pt;}
.y1a5{bottom:385.878400pt;}
.y133{bottom:386.248400pt;}
.y97{bottom:386.902000pt;}
.yfc{bottom:387.268933pt;}
.y1d9{bottom:396.827067pt;}
.y231{bottom:397.407867pt;}
.y24{bottom:398.087867pt;}
.y266{bottom:401.057333pt;}
.y28f{bottom:401.640267pt;}
.y1a4{bottom:401.878400pt;}
.y4e{bottom:403.458267pt;}
.y132{bottom:403.848400pt;}
.y22e{bottom:404.607867pt;}
.yfb{bottom:404.868933pt;}
.y96{bottom:405.081467pt;}
.yc6{bottom:405.196400pt;}
.y15e{bottom:407.628000pt;}
.y126{bottom:408.648400pt;}
.y1f9{bottom:408.893867pt;}
.y230{bottom:411.807867pt;}
.y1d8{bottom:412.827067pt;}
.y23{bottom:415.200667pt;}
.y265{bottom:417.057333pt;}
.y1a3{bottom:417.878400pt;}
.yc5{bottom:417.996400pt;}
.y28e{bottom:419.240267pt;}
.y15d{bottom:420.428000pt;}
.y125{bottom:421.448400pt;}
.y4d{bottom:421.637733pt;}
.y95{bottom:423.260933pt;}
.y131{bottom:425.228000pt;}
.y22f{bottom:426.207867pt;}
.yfa{bottom:426.248400pt;}
.y1d7{bottom:428.827067pt;}
.y22{bottom:432.313600pt;}
.y264{bottom:433.057333pt;}
.y1a2{bottom:433.878400pt;}
.yc4{bottom:435.596400pt;}
.y130{bottom:438.028000pt;}
.yf9{bottom:439.048400pt;}
.y4c{bottom:439.817333pt;}
.y94{bottom:441.440533pt;}
.y177{bottom:442.828000pt;}
.y1d6{bottom:444.827067pt;}
.y22d{bottom:445.610933pt;}
.y263{bottom:449.057333pt;}
.y21{bottom:449.426400pt;}
.y1a1{bottom:449.878400pt;}
.y12f{bottom:455.628000pt;}
.yf8{bottom:456.648400pt;}
.yc3{bottom:456.976000pt;}
.y4b{bottom:457.996933pt;}
.y15c{bottom:459.407467pt;}
.y93{bottom:459.620000pt;}
.y22b{bottom:460.010933pt;}
.y124{bottom:460.428000pt;}
.y1d5{bottom:460.827067pt;}
.y296{bottom:461.120667pt;}
.y262{bottom:465.057333pt;}
.y1a0{bottom:465.878400pt;}
.y20{bottom:466.539333pt;}
.yc2{bottom:469.776000pt;}
.y15b{bottom:472.207467pt;}
.y123{bottom:473.228000pt;}
.y22c{bottom:474.410933pt;}
.y4a{bottom:476.176400pt;}
.y1d4{bottom:476.827067pt;}
.y12e{bottom:477.007467pt;}
.y92{bottom:477.799600pt;}
.yf7{bottom:478.028000pt;}
.y295{bottom:478.720667pt;}
.y261{bottom:481.057333pt;}
.y1f{bottom:483.652133pt;}
.yc1{bottom:487.376000pt;}
.y12d{bottom:489.807467pt;}
.yf6{bottom:490.828000pt;}
.y1d3{bottom:492.827067pt;}
.y15a{bottom:493.587067pt;}
.y22a{bottom:493.813867pt;}
.y49{bottom:494.355867pt;}
.y122{bottom:494.607467pt;}
.y294{bottom:496.320533pt;}
.y260{bottom:497.057333pt;}
.y19f{bottom:499.719067pt;}
.y1e{bottom:500.765067pt;}
.y159{bottom:506.387067pt;}
.y121{bottom:507.407467pt;}
.yf5{bottom:508.428000pt;}
.yc0{bottom:508.755467pt;}
.y1d2{bottom:508.827067pt;}
.y16e{bottom:511.187067pt;}
.y48{bottom:512.535467pt;}
.y25f{bottom:513.057333pt;}
.y229{bottom:513.883600pt;}
.y293{bottom:513.920667pt;}
.y19e{bottom:515.719067pt;}
.y1d{bottom:517.877867pt;}
.ybf{bottom:521.555467pt;}
.y91{bottom:523.836267pt;}
.y158{bottom:523.987067pt;}
.y1d1{bottom:524.827067pt;}
.y176{bottom:525.007467pt;}
.y120{bottom:528.787067pt;}
.y25e{bottom:529.057333pt;}
.yf4{bottom:529.807467pt;}
.y47{bottom:530.714933pt;}
.y292{bottom:531.520533pt;}
.y1c{bottom:534.990667pt;}
.y283{bottom:536.283467pt;}
.y90{bottom:537.436133pt;}
.y19d{bottom:539.278133pt;}
.y1d0{bottom:540.827067pt;}
.y11f{bottom:541.587067pt;}
.yf3{bottom:542.607467pt;}
.ybe{bottom:542.935067pt;}
.y25d{bottom:545.057333pt;}
.y157{bottom:545.366533pt;}
.y228{bottom:545.883600pt;}
.y175{bottom:546.387067pt;}
.y46{bottom:548.894533pt;}
.y291{bottom:549.120667pt;}
.y282{bottom:550.683467pt;}
.y8f{bottom:551.036267pt;}
.y1b{bottom:552.103600pt;}
.y19c{bottom:555.278133pt;}
.ybd{bottom:555.735067pt;}
.y1cf{bottom:556.827067pt;}
.y156{bottom:558.166533pt;}
.y11e{bottom:559.187067pt;}
.y25c{bottom:561.057333pt;}
.y227{bottom:561.883600pt;}
.y16d{bottom:562.966533pt;}
.yf2{bottom:563.987067pt;}
.y8e{bottom:564.636267pt;}
.y281{bottom:565.083467pt;}
.y45{bottom:567.074000pt;}
.y1a{bottom:569.216533pt;}
.y19b{bottom:571.278133pt;}
.y1ce{bottom:572.827067pt;}
.y155{bottom:575.766533pt;}
.yf1{bottom:576.787067pt;}
.y25b{bottom:577.057333pt;}
.ybc{bottom:577.114533pt;}
.y226{bottom:577.883600pt;}
.y8d{bottom:578.236267pt;}
.y280{bottom:579.483467pt;}
.y11d{bottom:580.566533pt;}
.y44{bottom:585.253600pt;}
.y19{bottom:586.329333pt;}
.y19a{bottom:587.278133pt;}
.y1cd{bottom:588.827067pt;}
.ybb{bottom:589.914533pt;}
.y8c{bottom:591.836267pt;}
.y25a{bottom:593.057333pt;}
.y11c{bottom:593.366533pt;}
.y27f{bottom:593.883467pt;}
.y225{bottom:593.883600pt;}
.yf0{bottom:594.387067pt;}
.y154{bottom:597.146133pt;}
.y28d{bottom:602.624400pt;}
.y199{bottom:603.278133pt;}
.y43{bottom:603.433067pt;}
.y18{bottom:603.442267pt;}
.y1cc{bottom:604.827067pt;}
.y8b{bottom:605.436133pt;}
.yba{bottom:607.514533pt;}
.y27e{bottom:608.283467pt;}
.y259{bottom:609.057333pt;}
.y224{bottom:609.883600pt;}
.y153{bottom:609.946133pt;}
.y11b{bottom:610.966533pt;}
.y16c{bottom:614.746000pt;}
.yef{bottom:615.766533pt;}
.y8a{bottom:619.036267pt;}
.y198{bottom:619.278133pt;}
.y28c{bottom:620.224400pt;}
.y17{bottom:620.555067pt;}
.y1cb{bottom:620.827067pt;}
.y42{bottom:621.612533pt;}
.y27d{bottom:622.683467pt;}
.y223{bottom:625.883600pt;}
.y152{bottom:627.546000pt;}
.yee{bottom:628.566533pt;}
.yb9{bottom:628.894133pt;}
.y12c{bottom:632.346133pt;}
.y89{bottom:632.636267pt;}
.y197{bottom:635.278133pt;}
.y1ca{bottom:636.827067pt;}
.y27c{bottom:637.083467pt;}
.y16{bottom:637.667867pt;}
.y28b{bottom:637.824400pt;}
.y41{bottom:639.792133pt;}
.yb8{bottom:641.694133pt;}
.y222{bottom:641.883600pt;}
.y12b{bottom:645.146133pt;}
.yed{bottom:646.166533pt;}
.y88{bottom:646.236267pt;}
.y258{bottom:647.522533pt;}
.y151{bottom:648.925600pt;}
.y11a{bottom:649.946133pt;}
.y27b{bottom:651.483467pt;}
.y1c9{bottom:652.827067pt;}
.y15{bottom:654.780800pt;}
.y28a{bottom:655.424400pt;}
.y221{bottom:657.883600pt;}
.y40{bottom:657.971733pt;}
.yb7{bottom:659.294133pt;}
.y87{bottom:659.836267pt;}
.y150{bottom:661.725600pt;}
.y256{bottom:661.922533pt;}
.y119{bottom:662.746000pt;}
.y27a{bottom:665.883467pt;}
.y16b{bottom:666.525600pt;}
.yec{bottom:667.546000pt;}
.y1c8{bottom:668.827067pt;}
.y2{bottom:670.995467pt;}
.y4{bottom:671.165333pt;}
.y14{bottom:671.893600pt;}
.y86{bottom:673.436133pt;}
.y220{bottom:673.883600pt;}
.y3f{bottom:676.151200pt;}
.y257{bottom:676.322533pt;}
.y14f{bottom:679.325600pt;}
.y279{bottom:680.283467pt;}
.yeb{bottom:680.346133pt;}
.yb6{bottom:680.673600pt;}
.y286{bottom:681.389600pt;}
.y118{bottom:684.125600pt;}
.y1c7{bottom:684.827067pt;}
.y85{bottom:687.036267pt;}
.y13{bottom:689.006533pt;}
.y21f{bottom:689.883600pt;}
.yb5{bottom:693.473600pt;}
.y3e{bottom:694.330667pt;}
.y278{bottom:694.683467pt;}
.y117{bottom:696.925600pt;}
.y84{bottom:700.636267pt;}
.y14e{bottom:700.705067pt;}
.y1c6{bottom:700.827067pt;}
.yea{bottom:701.725600pt;}
.y21e{bottom:705.883600pt;}
.y12{bottom:706.119333pt;}
.y255{bottom:707.355733pt;}
.y277{bottom:709.083467pt;}
.y196{bottom:709.900000pt;}
.yb4{bottom:711.073600pt;}
.y3d{bottom:712.510267pt;}
.y14d{bottom:713.505067pt;}
.y83{bottom:714.236267pt;}
.ye9{bottom:714.525600pt;}
.y289{bottom:715.935733pt;}
.y1f8{bottom:716.827200pt;}
.y12a{bottom:718.305200pt;}
.y253{bottom:721.755733pt;}
.y21d{bottom:721.883600pt;}
.y11{bottom:723.232267pt;}
.y276{bottom:723.483600pt;}
.y1c5{bottom:724.386133pt;}
.y195{bottom:727.500000pt;}
.y82{bottom:727.836133pt;}
.y3c{bottom:730.689733pt;}
.y129{bottom:731.105200pt;}
.yb3{bottom:732.453067pt;}
.y1f7{bottom:732.827200pt;}
.ye8{bottom:735.905067pt;}
.y254{bottom:736.155733pt;}
.y21c{bottom:737.883600pt;}
.y10{bottom:740.345067pt;}
.y81{bottom:741.436133pt;}
.y288{bottom:742.694933pt;}
.y194{bottom:745.100000pt;}
.yb2{bottom:745.253200pt;}
.ye7{bottom:748.705067pt;}
.y1f6{bottom:748.827200pt;}
.y3b{bottom:748.869333pt;}
.y14c{bottom:752.484667pt;}
.y21b{bottom:753.883600pt;}
.y80{bottom:755.036267pt;}
.yf{bottom:757.457867pt;}
.y1c4{bottom:759.586133pt;}
.y193{bottom:762.700000pt;}
.y1f5{bottom:764.827200pt;}
.y14b{bottom:765.284667pt;}
.ye6{bottom:766.305200pt;}
.yb1{bottom:766.632667pt;}
.y3a{bottom:767.048800pt;}
.y252{bottom:767.122533pt;}
.y287{bottom:769.454000pt;}
.y21a{bottom:769.883600pt;}
.y116{bottom:770.084667pt;}
.ye{bottom:774.570800pt;}
.y1c3{bottom:775.586133pt;}
.yb0{bottom:779.432667pt;}
.y1f4{bottom:780.827200pt;}
.y250{bottom:781.522400pt;}
.y115{bottom:782.884667pt;}
.ye5{bottom:783.905067pt;}
.y39{bottom:785.228400pt;}
.y219{bottom:785.883600pt;}
.y18a{bottom:786.664267pt;}
.y1c2{bottom:791.586133pt;}
.y251{bottom:795.922400pt;}
.y7f{bottom:796.139600pt;}
.y1f3{bottom:796.827200pt;}
.yaf{bottom:797.032667pt;}
.y192{bottom:797.900000pt;}
.y189{bottom:799.464133pt;}
.y114{bottom:800.484667pt;}
.y218{bottom:801.883600pt;}
.y38{bottom:803.407867pt;}
.yc{bottom:803.504933pt;}
.y14a{bottom:804.264133pt;}
.ye4{bottom:805.284667pt;}
.y1c1{bottom:807.586133pt;}
.y7e{bottom:809.739600pt;}
.y1f2{bottom:812.827200pt;}
.y191{bottom:815.500000pt;}
.y149{bottom:817.064267pt;}
.y217{bottom:817.883600pt;}
.ye3{bottom:818.084667pt;}
.yae{bottom:818.412133pt;}
.yb{bottom:819.504933pt;}
.y188{bottom:820.843733pt;}
.y37{bottom:821.587467pt;}
.y113{bottom:821.864133pt;}
.y7d{bottom:823.339733pt;}
.y1c0{bottom:823.586133pt;}
.y24f{bottom:824.122533pt;}
.y1f1{bottom:828.827200pt;}
.yad{bottom:831.212267pt;}
.y24e{bottom:831.322533pt;}
.y190{bottom:833.100000pt;}
.y187{bottom:833.643733pt;}
.y216{bottom:833.883600pt;}
.y112{bottom:834.664267pt;}
.y7c{bottom:836.939733pt;}
.ye2{bottom:839.464133pt;}
.y1bf{bottom:839.586133pt;}
.ya{bottom:843.063867pt;}
.y1f0{bottom:844.827200pt;}
.yac{bottom:848.812267pt;}
.y215{bottom:849.883600pt;}
.y7b{bottom:850.539733pt;}
.y18f{bottom:850.700000pt;}
.y186{bottom:851.243733pt;}
.ye1{bottom:852.264133pt;}
.y1be{bottom:855.586133pt;}
.y111{bottom:856.043733pt;}
.y9{bottom:859.063867pt;}
.y1ef{bottom:860.827200pt;}
.y7a{bottom:864.139600pt;}
.y214{bottom:865.883600pt;}
.y24d{bottom:866.722533pt;}
.y18e{bottom:868.300000pt;}
.y110{bottom:868.843733pt;}
.yab{bottom:870.191867pt;}
.y1bd{bottom:871.586133pt;}
.y185{bottom:872.623200pt;}
.ye0{bottom:873.643733pt;}
.y1ee{bottom:876.827200pt;}
.y79{bottom:877.739600pt;}
.y24b{bottom:881.122533pt;}
.y213{bottom:881.883600pt;}
.y8{bottom:882.622933pt;}
.yaa{bottom:882.991733pt;}
.y184{bottom:885.423200pt;}
.ydf{bottom:886.443733pt;}
.y1bc{bottom:887.586133pt;}
.yd{bottom:889.390933pt;}
.y181{bottom:890.223200pt;}
.y78{bottom:891.339600pt;}
.y1ed{bottom:892.827200pt;}
.y24c{bottom:895.522400pt;}
.y212{bottom:897.883600pt;}
.y7{bottom:898.622933pt;}
.ya9{bottom:900.591733pt;}
.y180{bottom:903.023333pt;}
.y1bb{bottom:903.586133pt;}
.yde{bottom:904.043733pt;}
.y77{bottom:904.939600pt;}
.y10f{bottom:907.823200pt;}
.y148{bottom:907.823333pt;}
.y1ec{bottom:908.827200pt;}
.y211{bottom:913.883600pt;}
.y76{bottom:918.539600pt;}
.y1ba{bottom:919.586133pt;}
.y10e{bottom:920.623200pt;}
.y147{bottom:920.623333pt;}
.ya8{bottom:921.971333pt;}
.ydd{bottom:925.423200pt;}
.y24a{bottom:926.455867pt;}
.y210{bottom:929.883600pt;}
.y75{bottom:932.139600pt;}
.y1eb{bottom:932.386267pt;}
.y18d{bottom:933.900000pt;}
.ya7{bottom:934.771333pt;}
.y1b9{bottom:935.586133pt;}
.ydc{bottom:938.223200pt;}
.y16a{bottom:938.223333pt;}
.y248{bottom:940.855867pt;}
.y10d{bottom:942.002800pt;}
.y74{bottom:945.739600pt;}
.y20f{bottom:945.883600pt;}
.y1b8{bottom:951.586133pt;}
.ya6{bottom:952.371333pt;}
.y10c{bottom:954.802800pt;}
.y249{bottom:955.255867pt;}
.y73{bottom:959.339600pt;}
.ydb{bottom:959.602800pt;}
.y20e{bottom:961.883600pt;}
.y1b7{bottom:967.586133pt;}
.y18c{bottom:972.300000pt;}
.yda{bottom:972.402800pt;}
.y72{bottom:972.939600pt;}
.y20d{bottom:977.883600pt;}
.y1b6{bottom:983.586133pt;}
.yd6{bottom:985.809333pt;}
.y247{bottom:986.255867pt;}
.y71{bottom:986.539600pt;}
.y169{bottom:990.002800pt;}
.yd9{bottom:993.782267pt;}
.y146{bottom:993.782400pt;}
.y20c{bottom:993.883600pt;}
.y1b5{bottom:999.586133pt;}
.y70{bottom:1000.139600pt;}
.y245{bottom:1000.655867pt;}
.yd8{bottom:1006.582267pt;}
.y145{bottom:1006.582400pt;}
.y20b{bottom:1009.883600pt;}
.y18b{bottom:1010.700000pt;}
.y168{bottom:1011.382400pt;}
.y6f{bottom:1013.739600pt;}
.y246{bottom:1015.055867pt;}
.y1b4{bottom:1023.145200pt;}
.yd7{bottom:1024.182267pt;}
.y144{bottom:1024.182400pt;}
.y20a{bottom:1025.883600pt;}
.y6e{bottom:1027.339600pt;}
.ya4{bottom:1068.009867pt;}
.ya5{bottom:1069.353600pt;}
.h17{height:31.062500pt;}
.h22{height:31.104167pt;}
.h19{height:31.250000pt;}
.he{height:33.048177pt;}
.h13{height:33.225260pt;}
.h7{height:34.944000pt;}
.hb{height:34.945312pt;}
.hc{height:34.992188pt;}
.h6{height:35.088000pt;}
.hd{height:35.156250pt;}
.h10{height:35.179688pt;}
.hf{height:36.848000pt;}
.h8{height:38.828125pt;}
.h1e{height:38.880208pt;}
.h9{height:39.062500pt;}
.h20{height:39.088542pt;}
.h21{height:39.819870pt;}
.h16{height:41.622396pt;}
.h1d{height:42.710938pt;}
.h11{height:42.768229pt;}
.h12{height:42.997396pt;}
.h1f{height:45.406250pt;}
.ha{height:46.000000pt;}
.h23{height:46.197917pt;}
.h27{height:46.656250pt;}
.h15{height:46.720000pt;}
.h18{height:50.817708pt;}
.h25{height:63.791654pt;}
.h24{height:63.792187pt;}
.h26{height:75.687500pt;}
.h1c{height:90.812500pt;}
.h14{height:138.593750pt;}
.h1b{height:138.594283pt;}
.h1a{height:181.625000pt;}
.h4{height:191.666667pt;}
.h2{height:191.738733pt;}
.h5{height:264.320000pt;}
.h3{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.794133pt;}
.x8{left:60.472400pt;}
.x1b{left:64.690533pt;}
.x28{left:65.805733pt;}
.x18{left:70.693733pt;}
.x33{left:78.325467pt;}
.x36{left:83.506800pt;}
.x35{left:84.416267pt;}
.x5{left:86.173200pt;}
.x29{left:88.448533pt;}
.x9{left:92.976400pt;}
.x14{left:94.488133pt;}
.x4{left:96.332533pt;}
.x19{left:98.267733pt;}
.x2b{left:113.385867pt;}
.x1d{left:124.724400pt;}
.x3{left:126.549600pt;}
.x1f{left:139.381067pt;}
.x38{left:149.367467pt;}
.x32{left:158.740133pt;}
.x3d{left:176.154533pt;}
.x37{left:179.511600pt;}
.x20{left:184.162267pt;}
.x1c{left:185.196800pt;}
.x3e{left:188.794533pt;}
.x1a{left:191.125333pt;}
.x3c{left:194.351867pt;}
.x3f{left:201.269867pt;}
.x2e{left:228.006800pt;}
.x17{left:249.448800pt;}
.x34{left:266.238533pt;}
.x39{left:280.216267pt;}
.x2f{left:300.741200pt;}
.x31{left:317.053600pt;}
.x3a{left:319.733867pt;}
.x3b{left:328.433600pt;}
.x2d{left:359.139067pt;}
.x30{left:383.961733pt;}
.x2c{left:385.595733pt;}
.x22{left:420.757333pt;}
.x26{left:422.162267pt;}
.x7{left:455.089867pt;}
.x21{left:486.037333pt;}
.x6{left:504.072133pt;}
.xe{left:517.136400pt;}
.x24{left:522.963067pt;}
.x25{left:524.434400pt;}
.x27{left:529.460400pt;}
.xa{left:530.433867pt;}
.x23{left:534.825067pt;}
.xd{left:537.915333pt;}
.x10{left:543.225600pt;}
.xf{left:544.851200pt;}
.x13{left:547.282533pt;}
.xb{left:548.657600pt;}
.x12{left:555.432267pt;}
.xc{left:563.592800pt;}
.x11{left:580.300400pt;}
.x2a{left:585.465333pt;}
.x1{left:627.488133pt;}
.x1e{left:686.927733pt;}
.x16{left:689.807733pt;}
.x15{left:760.123600pt;}
}




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