
    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_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2790f8a7108ff2cdf094f3e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0aa5b8fc30ace722a484d960.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_460dc3ab63deee98106cfeb6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6cfc63e02d05f16ed30493fc.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_f1442bfa47c8fa0794ff7381.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_7e97d134955fa39dc0b60109.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4a688c8c9963f2fdf9471809.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b937dd6b86634a9755ae6600.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_90db60236f7d18f611316150.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ac95c9fa01344807b15f66dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_216a819f66264e00a7cd1f6b.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_f60e735f2744d9dd4dff70ab.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.849609;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_e75eb3d742a6d16d4d92abb7.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_216a819f66264e00a7cd1f6b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f60e735f2744d9dd4dff70ab.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.849609;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_e75eb3d742a6d16d4d92abb7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e4a47fc5c052c85815a5acf4.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_f618fc92bb31872569d34df0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.849609;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_4f3fd2e2eda5b9a2b23f64a2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e75eb3d742a6d16d4d92abb7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7b2e9c74ffe96da43972e2b3.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_c6654d6a5423fd43264db557.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5876f2daeaf54d0f0e2e0173.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_6eeca289d7ff230ed117da3f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_47c5536d156171a069273796.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_0d50160bff3d232f26572e55.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.849609;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_e75eb3d742a6d16d4d92abb7.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_66f0b3f1fd24d8bb6909a89e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.923340;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_bd2e4272672166dc727d6979.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_47c5536d156171a069273796.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_0d50160bff3d232f26572e55.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.849609;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_4f3fd2e2eda5b9a2b23f64a2.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_e75eb3d742a6d16d4d92abb7.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_460dc3ab63deee98106cfeb6.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_8181648ec0c7cebf3ff97758.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.742000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_d5998b9af4abf281c75e6180.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_dfa8c4630f1f48f0d88962cf.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.849609;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_e75eb3d742a6d16d4d92abb7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_0e17db0532a95dbf3425b5c5.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_98d2aa1f80c2148f49b4097d.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_1ecce3750bd78f7a1c14e419.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_32a85427add2806577ec2276.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_8ede111aba7560bec4186000.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:32.400000px;}
.v1{vertical-align:86.400600px;}
.ls8{letter-spacing:-4.440000px;}
.ls5{letter-spacing:-1.026000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.008400px;}
.ls2{letter-spacing:1.890000px;}
.lsa{letter-spacing:7.200000px;}
.ls9{letter-spacing:9.000000px;}
.ls1{letter-spacing:10.800000px;}
.ls6{letter-spacing:36.000000px;}
.ls7{letter-spacing:57.600000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-120.960000px;}
.ws13{word-spacing:-98.766600px;}
.ws2{word-spacing:-80.064000px;}
.ws0{word-spacing:-74.747520px;}
.ws1{word-spacing:-69.120000px;}
.ws14{word-spacing:-36.180000px;}
.ws6{word-spacing:-25.812000px;}
.wsd2{word-spacing:-20.016000px;}
.ws7a{word-spacing:-16.680000px;}
.ws66{word-spacing:-16.020000px;}
.ws8c{word-spacing:-15.900000px;}
.ws50{word-spacing:-15.720000px;}
.ws44{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.012000px;}
.ws2f{word-spacing:-15.000000px;}
.ws8e{word-spacing:-14.940000px;}
.ws85{word-spacing:-14.700000px;}
.ws2d{word-spacing:-14.640000px;}
.ws64{word-spacing:-14.520000px;}
.ws51{word-spacing:-14.460000px;}
.ws46{word-spacing:-14.280000px;}
.ws1e{word-spacing:-14.220000px;}
.ws7f{word-spacing:-14.160000px;}
.ws5d{word-spacing:-14.100000px;}
.ws3c{word-spacing:-14.040000px;}
.ws34{word-spacing:-13.980000px;}
.ws54{word-spacing:-13.920000px;}
.ws1b{word-spacing:-13.860000px;}
.ws55{word-spacing:-13.800000px;}
.ws33{word-spacing:-13.740000px;}
.ws3f{word-spacing:-13.680000px;}
.ws4a{word-spacing:-13.620000px;}
.ws74{word-spacing:-13.560000px;}
.ws3b{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.344000px;}
.ws76{word-spacing:-13.020000px;}
.ws82{word-spacing:-12.960000px;}
.ws30{word-spacing:-12.780000px;}
.ws7b{word-spacing:-12.720000px;}
.ws89{word-spacing:-12.480000px;}
.ws29{word-spacing:-12.240000px;}
.ws4{word-spacing:-11.523576px;}
.ws6f{word-spacing:-11.460000px;}
.ws87{word-spacing:-11.220000px;}
.ws2c{word-spacing:-11.100000px;}
.ws72{word-spacing:-11.040000px;}
.ws59{word-spacing:-10.980000px;}
.ws7e{word-spacing:-10.920000px;}
.ws38{word-spacing:-10.800000px;}
.ws4c{word-spacing:-10.740000px;}
.ws36{word-spacing:-10.680000px;}
.ws47{word-spacing:-10.620000px;}
.ws37{word-spacing:-10.560000px;}
.ws49{word-spacing:-10.500000px;}
.ws24{word-spacing:-10.440000px;}
.ws22{word-spacing:-10.380000px;}
.ws39{word-spacing:-10.320000px;}
.ws73{word-spacing:-10.260000px;}
.ws5a{word-spacing:-10.200000px;}
.ws32{word-spacing:-10.140000px;}
.ws4b{word-spacing:-10.080000px;}
.ws56{word-spacing:-10.020000px;}
.ws8b{word-spacing:-9.840000px;}
.ws52{word-spacing:-9.780000px;}
.ws6d{word-spacing:-9.540000px;}
.ws53{word-spacing:-9.420000px;}
.ws26{word-spacing:-9.360000px;}
.ws77{word-spacing:-9.240000px;}
.ws65{word-spacing:-9.000000px;}
.ws8{word-spacing:-8.400680px;}
.ws6c{word-spacing:-8.280000px;}
.ws8f{word-spacing:-8.220000px;}
.ws5c{word-spacing:-7.932600px;}
.ws63{word-spacing:-7.800000px;}
.ws67{word-spacing:-7.620000px;}
.ws79{word-spacing:-7.560000px;}
.ws5b{word-spacing:-7.539600px;}
.ws43{word-spacing:-7.500000px;}
.ws31{word-spacing:-7.440000px;}
.ws3a{word-spacing:-7.380000px;}
.ws25{word-spacing:-7.320000px;}
.ws48{word-spacing:-7.260000px;}
.ws40{word-spacing:-7.200000px;}
.ws1d{word-spacing:-7.140000px;}
.ws57{word-spacing:-7.080000px;}
.ws71{word-spacing:-7.020000px;}
.ws6e{word-spacing:-6.960000px;}
.ws28{word-spacing:-6.900000px;}
.ws2a{word-spacing:-6.840000px;}
.ws70{word-spacing:-6.780000px;}
.ws68{word-spacing:-6.420000px;}
.ws58{word-spacing:-5.820000px;}
.ws2b{word-spacing:-5.760000px;}
.ws83{word-spacing:-5.160000px;}
.ws60{word-spacing:-5.040000px;}
.ws86{word-spacing:-4.920000px;}
.ws6b{word-spacing:-4.800000px;}
.ws35{word-spacing:-4.320000px;}
.ws5f{word-spacing:-4.260000px;}
.ws1f{word-spacing:-4.200000px;}
.ws81{word-spacing:-4.140000px;}
.ws3d{word-spacing:-4.080000px;}
.ws27{word-spacing:-4.020000px;}
.wsd3{word-spacing:-3.960000px;}
.ws42{word-spacing:-3.900000px;}
.ws16{word-spacing:-3.882669px;}
.ws4d{word-spacing:-3.840000px;}
.ws23{word-spacing:-3.720000px;}
.ws6a{word-spacing:-3.660000px;}
.ws3e{word-spacing:-3.600000px;}
.ws7c{word-spacing:-3.540000px;}
.ws92{word-spacing:-3.510000px;}
.ws17{word-spacing:-3.480000px;}
.ws84{word-spacing:-3.420000px;}
.ws88{word-spacing:-3.300000px;}
.ws61{word-spacing:-3.240000px;}
.wsbe{word-spacing:-3.180000px;}
.wsb9{word-spacing:-3.000000px;}
.wsb{word-spacing:-2.970000px;}
.ws5e{word-spacing:-2.940000px;}
.wsa{word-spacing:-2.916000px;}
.ws4e{word-spacing:-2.820000px;}
.ws62{word-spacing:-2.760000px;}
.wsaf{word-spacing:-2.700000px;}
.ws20{word-spacing:-2.640000px;}
.ws7d{word-spacing:-2.460000px;}
.ws80{word-spacing:-2.340000px;}
.ws2e{word-spacing:-2.160000px;}
.ws91{word-spacing:-2.106000px;}
.wscf{word-spacing:-2.100000px;}
.wsc{word-spacing:-1.998000px;}
.wsb3{word-spacing:-1.920000px;}
.ws75{word-spacing:-1.860000px;}
.ws41{word-spacing:-1.800000px;}
.ws18{word-spacing:-1.776000px;}
.wsb6{word-spacing:-1.740000px;}
.ws8a{word-spacing:-1.680000px;}
.ws8d{word-spacing:-1.440000px;}
.wsd0{word-spacing:-1.260000px;}
.wsb0{word-spacing:-1.200000px;}
.ws93{word-spacing:-1.188000px;}
.wse{word-spacing:-1.104000px;}
.ws45{word-spacing:-1.080000px;}
.ws9a{word-spacing:-1.020000px;}
.ws1c{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.918000px;}
.ws78{word-spacing:-0.900000px;}
.ws21{word-spacing:-0.864000px;}
.ws69{word-spacing:-0.840000px;}
.ws4f{word-spacing:-0.780000px;}
.wsb8{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.600000px;}
.wsa6{word-spacing:-0.480000px;}
.wsc3{word-spacing:-0.180000px;}
.ws5{word-spacing:0.000000px;}
.wsa2{word-spacing:0.060000px;}
.wsc0{word-spacing:0.360000px;}
.wsa7{word-spacing:0.600000px;}
.wsad{word-spacing:0.720000px;}
.wsc2{word-spacing:0.900000px;}
.wsba{word-spacing:0.960000px;}
.wscb{word-spacing:1.740000px;}
.ws95{word-spacing:1.836000px;}
.ws99{word-spacing:2.040000px;}
.wsac{word-spacing:2.460000px;}
.wsc8{word-spacing:2.580000px;}
.wsa1{word-spacing:2.700000px;}
.ws9c{word-spacing:2.820000px;}
.ws9e{word-spacing:3.420000px;}
.wsf{word-spacing:3.696000px;}
.wsa5{word-spacing:4.200000px;}
.wsa0{word-spacing:4.260000px;}
.ws96{word-spacing:4.320000px;}
.wsca{word-spacing:4.980000px;}
.ws90{word-spacing:5.022000px;}
.wsae{word-spacing:5.040000px;}
.ws98{word-spacing:5.400000px;}
.wsa8{word-spacing:5.640000px;}
.ws94{word-spacing:5.724000px;}
.ws10{word-spacing:5.808000px;}
.wsd1{word-spacing:5.880000px;}
.wsbc{word-spacing:6.000000px;}
.wsc4{word-spacing:6.300000px;}
.wsa4{word-spacing:6.360000px;}
.wsa3{word-spacing:6.420000px;}
.ws97{word-spacing:6.480000px;}
.wsb7{word-spacing:6.960000px;}
.wsc6{word-spacing:7.260000px;}
.wsc1{word-spacing:7.380000px;}
.wsab{word-spacing:7.560000px;}
.wsbf{word-spacing:7.800000px;}
.wscc{word-spacing:7.980000px;}
.wsb5{word-spacing:8.100000px;}
.wsbb{word-spacing:8.760000px;}
.wsc5{word-spacing:9.420000px;}
.wsaa{word-spacing:9.540000px;}
.wsb2{word-spacing:9.720000px;}
.ws9f{word-spacing:10.140000px;}
.wsb4{word-spacing:10.380000px;}
.ws9d{word-spacing:10.800000px;}
.ws9b{word-spacing:11.220000px;}
.wsc7{word-spacing:12.960000px;}
.wsd{word-spacing:13.296000px;}
.wsce{word-spacing:13.980000px;}
.wsb1{word-spacing:14.100000px;}
.wscd{word-spacing:15.900000px;}
.wsa9{word-spacing:17.700000px;}
.wsc9{word-spacing:18.660000px;}
.ws11{word-spacing:19.440000px;}
.ws12{word-spacing:81.018000px;}
.wsbd{word-spacing:541.929000px;}
._0{margin-left:-17.129640px;}
._14{margin-left:-14.526024px;}
._7{margin-left:-13.451418px;}
._1{margin-left:-11.523576px;}
._6{margin-left:-9.364601px;}
._b{margin-left:-8.265600px;}
._11{margin-left:-7.154400px;}
._9{margin-left:-5.972400px;}
._4{margin-left:-3.996000px;}
._3{margin-left:-2.361600px;}
._2{margin-left:-1.346400px;}
._5{width:1.069200px;}
._a{width:3.013200px;}
._c{width:5.038800px;}
._15{width:6.708000px;}
._d{width:8.340000px;}
._e{width:9.540000px;}
._10{width:12.660000px;}
._f{width:14.520000px;}
._1b{width:18.684000px;}
._1a{width:45.060000px;}
._19{width:48.060000px;}
._1c{width:50.580000px;}
._18{width:52.320000px;}
._1d{width:59.007600px;}
._16{width:81.375000px;}
._12{width:125.521378px;}
._13{width:143.811000px;}
._8{width:273.250735px;}
._17{width:771.982200px;}
.fce{color:rgb(246,130,19);}
.fcd{color:rgb(55,159,146);}
.fc0{color:rgb(246,131,19);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(35,31,32);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(54,159,146);}
.fcb{color:rgb(0,173,239);}
.fc4{color:rgb(61,122,199);}
.fc8{color:rgb(42,62,146);}
.fc6{color:rgb(38,122,200);}
.fca{color:rgb(210,32,39);}
.fc3{color:rgb(47,168,65);}
.fcc{color:transparent;}
.fc9{color:rgb(217,242,245);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:104.937000px;}
.fsa{font-size:120.000000px;}
.fsd{font-size:126.000000px;}
.fsb{font-size:144.000000px;}
.fs8{font-size:180.000000px;}
.fs6{font-size:227.045400px;}
.fs4{font-size:288.000000px;}
.fs0{font-size:311.448000px;}
.y0{bottom:0.000000px;}
.y97{bottom:76.343700px;}
.y313{bottom:76.439550px;}
.y96{bottom:106.299150px;}
.y3b1{bottom:109.181100px;}
.y141{bottom:110.959950px;}
.y372{bottom:111.105150px;}
.y108{bottom:111.611850px;}
.y29e{bottom:111.663750px;}
.y1bd{bottom:112.159950px;}
.y2d3{bottom:112.264050px;}
.y1ea{bottom:112.811850px;}
.y223{bottom:112.915800px;}
.y281{bottom:113.463750px;}
.y179{bottom:114.115650px;}
.y25a{bottom:115.615650px;}
.y21{bottom:116.447250px;}
.y93{bottom:116.550750px;}
.y33e{bottom:117.268800px;}
.y59{bottom:117.648900px;}
.ycd{bottom:120.026100px;}
.y3e3{bottom:124.299150px;}
.y140{bottom:125.359800px;}
.y107{bottom:125.411850px;}
.y2fa{bottom:126.011850px;}
.y29d{bottom:126.063750px;}
.y2d2{bottom:126.064050px;}
.y1bc{bottom:126.559800px;}
.y3b0{bottom:127.181100px;}
.y1e9{bottom:127.211850px;}
.y222{bottom:127.315800px;}
.y280{bottom:127.863900px;}
.y178{bottom:128.515800px;}
.y3{bottom:129.136200px;}
.y371{bottom:130.155150px;}
.y259{bottom:130.315800px;}
.y92{bottom:132.450750px;}
.y20{bottom:132.647250px;}
.ycc{bottom:134.426100px;}
.y33d{bottom:135.268800px;}
.y13f{bottom:143.059800px;}
.y29c{bottom:143.463750px;}
.y2d1{bottom:143.463900px;}
.y58{bottom:144.152700px;}
.y221{bottom:145.015800px;}
.y3af{bottom:145.181100px;}
.y27f{bottom:145.863900px;}
.y106{bottom:147.063750px;}
.y2f9{bottom:147.963750px;}
.y91{bottom:148.350750px;}
.y1bb{bottom:148.811850px;}
.y1f{bottom:148.847250px;}
.y370{bottom:149.205150px;}
.y1e8{bottom:149.463750px;}
.y177{bottom:150.767700px;}
.y2{bottom:151.134450px;}
.ycb{bottom:152.426100px;}
.y258{bottom:152.867700px;}
.y33c{bottom:153.268800px;}
.y105{bottom:160.863900px;}
.y2f8{bottom:162.063750px;}
.y57{bottom:162.152700px;}
.y1ba{bottom:163.211850px;}
.y1e7{bottom:163.863900px;}
.y90{bottom:164.250750px;}
.y13e{bottom:165.011850px;}
.y29b{bottom:165.115650px;}
.y2d0{bottom:165.115950px;}
.y176{bottom:165.167700px;}
.y220{bottom:166.967700px;}
.y257{bottom:167.567700px;}
.y27e{bottom:168.115650px;}
.y36f{bottom:168.255150px;}
.y3ae{bottom:171.685050px;}
.yca{bottom:174.678000px;}
.y104{bottom:178.263750px;}
.y29a{bottom:178.915800px;}
.y2cf{bottom:178.915950px;}
.y13d{bottom:179.111850px;}
.y33b{bottom:179.772750px;}
.y8f{bottom:180.150750px;}
.y56{bottom:180.152700px;}
.y21f{bottom:181.067700px;}
.y27d{bottom:182.515800px;}
.y175{bottom:183.167700px;}
.y2f7{bottom:184.015800px;}
.y1b9{bottom:185.463750px;}
.y1e6{bottom:186.115650px;}
.y36e{bottom:187.305150px;}
.y310{bottom:187.419750px;}
.yc9{bottom:189.078150px;}
.y3ad{bottom:189.685050px;}
.y256{bottom:190.119750px;}
.y8e{bottom:196.050750px;}
.y2ce{bottom:196.315950px;}
.y13c{bottom:196.811850px;}
.y2f6{bottom:198.115650px;}
.y55{bottom:198.152700px;}
.y1b8{bottom:199.863900px;}
.y103{bottom:199.915800px;}
.y1e5{bottom:200.515800px;}
.y299{bottom:200.567700px;}
.y185{bottom:201.063750px;}
.y30f{bottom:201.819600px;}
.y21e{bottom:203.019750px;}
.y27c{bottom:204.767700px;}
.y255{bottom:204.819600px;}
.y174{bottom:205.419750px;}
.y36d{bottom:206.355150px;}
.y3ac{bottom:207.685050px;}
.yc8{bottom:211.330050px;}
.y8d{bottom:211.950750px;}
.y102{bottom:213.715800px;}
.y298{bottom:214.367700px;}
.y184{bottom:215.163750px;}
.y54{bottom:216.152700px;}
.y21d{bottom:217.119750px;}
.y2cd{bottom:217.968000px;}
.y13b{bottom:218.763750px;}
.y27b{bottom:219.167700px;}
.y33a{bottom:219.372750px;}
.y173{bottom:219.819600px;}
.y2f5{bottom:220.067700px;}
.y1b7{bottom:222.115650px;}
.y1e4{bottom:222.767700px;}
.y30e{bottom:224.071650px;}
.y36c{bottom:225.405150px;}
.yc7{bottom:225.730050px;}
.y254{bottom:227.371650px;}
.y8c{bottom:227.850750px;}
.y297{bottom:231.767700px;}
.y2cc{bottom:231.768000px;}
.y13a{bottom:232.863900px;}
.y53{bottom:234.152850px;}
.y2f4{bottom:234.167700px;}
.y3ab{bottom:234.189000px;}
.y21c{bottom:234.819600px;}
.y101{bottom:235.367700px;}
.y1b6{bottom:236.515800px;}
.y1e3{bottom:237.167700px;}
.y339{bottom:237.372750px;}
.y172{bottom:237.819600px;}
.y4f{bottom:238.380300px;}
.y30d{bottom:238.471650px;}
.y253{bottom:242.071650px;}
.y8b{bottom:243.750750px;}
.y36b{bottom:244.455150px;}
.y1{bottom:244.568850px;}
.yc6{bottom:247.982100px;}
.y100{bottom:249.167700px;}
.y2f3{bottom:251.867700px;}
.y3aa{bottom:252.189000px;}
.y296{bottom:253.419750px;}
.y2cb{bottom:253.419900px;}
.y1b5{bottom:254.515800px;}
.y139{bottom:254.815800px;}
.y4e{bottom:254.880300px;}
.y338{bottom:255.372750px;}
.y21b{bottom:256.771650px;}
.y1e2{bottom:259.419750px;}
.y8a{bottom:259.650750px;}
.y171{bottom:260.071650px;}
.y52{bottom:260.656650px;}
.y30c{bottom:260.723550px;}
.yc5{bottom:262.381950px;}
.y36a{bottom:263.505150px;}
.y252{bottom:264.623700px;}
.yff{bottom:266.567700px;}
.y295{bottom:267.219750px;}
.y2ca{bottom:267.219900px;}
.y138{bottom:268.915800px;}
.y3a9{bottom:270.189000px;}
.y21a{bottom:270.871650px;}
.y4d{bottom:271.380300px;}
.y337{bottom:273.372750px;}
.y1e1{bottom:273.819600px;}
.y170{bottom:274.471650px;}
.y30b{bottom:275.123700px;}
.y89{bottom:275.550750px;}
.y1b4{bottom:276.767700px;}
.y251{bottom:279.323700px;}
.yc4{bottom:280.381950px;}
.y369{bottom:282.555150px;}
.y294{bottom:284.619750px;}
.y51{bottom:287.160600px;}
.y4c{bottom:287.880300px;}
.y2f2{bottom:287.919750px;}
.yfe{bottom:288.219750px;}
.y219{bottom:288.571650px;}
.y2c9{bottom:288.871800px;}
.y137{bottom:290.867700px;}
.y1b3{bottom:291.167700px;}
.y336{bottom:291.372750px;}
.y88{bottom:291.450750px;}
.y1e0{bottom:291.819600px;}
.y16f{bottom:292.471650px;}
.y30a{bottom:293.123700px;}
.y27a{bottom:296.071650px;}
.y3a8{bottom:296.692950px;}
.y250{bottom:297.623700px;}
.y368{bottom:301.605150px;}
.yfd{bottom:302.019750px;}
.yc3{bottom:302.634000px;}
.y2c8{bottom:302.671800px;}
.y4b{bottom:304.380300px;}
.y136{bottom:304.967700px;}
.y50{bottom:305.160600px;}
.y293{bottom:306.271650px;}
.y87{bottom:307.350750px;}
.y335{bottom:309.372750px;}
.y2f1{bottom:309.871650px;}
.y279{bottom:310.471650px;}
.y218{bottom:310.523550px;}
.y1b2{bottom:313.419750px;}
.y1df{bottom:314.071650px;}
.y3a7{bottom:314.692950px;}
.y16e{bottom:314.723550px;}
.y309{bottom:315.375600px;}
.yc2{bottom:317.034000px;}
.yfc{bottom:319.419750px;}
.y292{bottom:320.071650px;}
.y2c7{bottom:320.071800px;}
.y24f{bottom:320.175600px;}
.y367{bottom:320.655150px;}
.y4a{bottom:320.880300px;}
.y2f0{bottom:323.971650px;}
.y217{bottom:324.623700px;}
.y135{bottom:326.919750px;}
.y334{bottom:327.372750px;}
.y1b1{bottom:327.819600px;}
.y1de{bottom:328.471650px;}
.y16d{bottom:329.123700px;}
.y308{bottom:329.775600px;}
.y16{bottom:331.071300px;}
.y3a6{bottom:332.692950px;}
.y278{bottom:332.723550px;}
.y24e{bottom:334.875600px;}
.y49{bottom:337.380300px;}
.y291{bottom:337.471650px;}
.yc1{bottom:339.285900px;}
.y366{bottom:339.705150px;}
.y134{bottom:341.019750px;}
.yfb{bottom:341.071650px;}
.y2ef{bottom:341.671650px;}
.y2c6{bottom:341.723850px;}
.y216{bottom:342.323700px;}
.y333{bottom:345.372750px;}
.y1dd{bottom:346.471650px;}
.y277{bottom:347.123700px;}
.y15{bottom:347.271300px;}
.y1b0{bottom:350.071650px;}
.y16c{bottom:351.375600px;}
.y307{bottom:352.027650px;}
.y24d{bottom:353.175600px;}
.yc0{bottom:353.685900px;}
.y48{bottom:353.880300px;}
.yfa{bottom:354.871650px;}
.y2c5{bottom:355.523850px;}
.y365{bottom:358.755150px;}
.y290{bottom:359.123700px;}
.y3a5{bottom:359.196900px;}
.y133{bottom:362.971650px;}
.y332{bottom:363.372750px;}
.y14{bottom:363.471300px;}
.y2ee{bottom:363.623700px;}
.y3e8{bottom:363.748200px;}
.y215{bottom:364.275600px;}
.y1af{bottom:364.471650px;}
.y16b{bottom:365.775600px;}
.y306{bottom:366.427500px;}
.y1dc{bottom:368.723550px;}
.y3d9{bottom:369.107850px;}
.y276{bottom:369.375600px;}
.y47{bottom:370.380300px;}
.y28f{bottom:372.923700px;}
.y24c{bottom:375.727500px;}
.ybf{bottom:375.937950px;}
.yf9{bottom:376.523550px;}
.y132{bottom:377.071650px;}
.y2c4{bottom:377.175750px;}
.y3a4{bottom:377.196900px;}
.y2ed{bottom:377.723700px;}
.y364{bottom:377.805150px;}
.y214{bottom:378.375600px;}
.y13{bottom:379.671300px;}
.y331{bottom:381.372750px;}
.y1db{bottom:383.123700px;}
.y3e7{bottom:383.548200px;}
.y275{bottom:383.775600px;}
.y1ae{bottom:386.723700px;}
.y46{bottom:386.880300px;}
.y16a{bottom:388.027650px;}
.y305{bottom:388.679550px;}
.yf8{bottom:390.323700px;}
.ybe{bottom:390.337950px;}
.y24b{bottom:390.427500px;}
.y86{bottom:390.943200px;}
.y2c3{bottom:390.975750px;}
.y3a3{bottom:395.196900px;}
.y12{bottom:395.871300px;}
.y363{bottom:396.855150px;}
.y17{bottom:398.194050px;}
.y131{bottom:399.023550px;}
.y3d8{bottom:399.211800px;}
.y330{bottom:399.372750px;}
.y2ec{bottom:399.675600px;}
.y213{bottom:400.327500px;}
.y1ad{bottom:401.123700px;}
.y169{bottom:402.427500px;}
.y304{bottom:403.079550px;}
.y3e6{bottom:403.348200px;}
.y45{bottom:403.380300px;}
.y274{bottom:406.027650px;}
.y85{bottom:407.443200px;}
.ybd{bottom:408.337950px;}
.y2c2{bottom:408.375750px;}
.yf7{bottom:411.975600px;}
.y11{bottom:412.071300px;}
.y24a{bottom:412.979550px;}
.y130{bottom:413.123700px;}
.y2eb{bottom:413.775600px;}
.y212{bottom:414.427500px;}
.y362{bottom:415.905150px;}
.y32f{bottom:417.372750px;}
.y1ac{bottom:419.123700px;}
.y44{bottom:419.880300px;}
.y273{bottom:420.427500px;}
.y303{bottom:421.079550px;}
.y3e5{bottom:423.148200px;}
.y1da{bottom:423.375600px;}
.y84{bottom:423.943200px;}
.y168{bottom:424.679550px;}
.yf6{bottom:425.775600px;}
.y249{bottom:427.679550px;}
.y10{bottom:428.271300px;}
.y3d7{bottom:429.315750px;}
.y2c1{bottom:430.027800px;}
.ybc{bottom:430.589850px;}
.y3a2{bottom:434.151900px;}
.y361{bottom:434.955150px;}
.y12f{bottom:435.075600px;}
.y2ea{bottom:435.727500px;}
.y211{bottom:436.379550px;}
.y43{bottom:436.380300px;}
.y1d9{bottom:437.775600px;}
.y272{bottom:438.427500px;}
.y167{bottom:439.079550px;}
.y83{bottom:440.443200px;}
.y1ab{bottom:441.375600px;}
.y39d{bottom:442.251900px;}
.y3e4{bottom:442.948200px;}
.y28e{bottom:443.175600px;}
.y302{bottom:443.331600px;}
.y2c0{bottom:443.827800px;}
.y32e{bottom:443.876700px;}
.yf{bottom:444.471300px;}
.ybb{bottom:444.989850px;}
.yf5{bottom:447.427500px;}
.y12e{bottom:449.175600px;}
.y2e9{bottom:449.827500px;}
.y248{bottom:450.231450px;}
.y3a0{bottom:450.351900px;}
.y210{bottom:450.479550px;}
.y42{bottom:452.880300px;}
.y360{bottom:454.005150px;}
.y1aa{bottom:455.775600px;}
.y82{bottom:456.943200px;}
.y301{bottom:457.731450px;}
.y39c{bottom:458.451900px;}
.y3d6{bottom:459.419700px;}
.y1d8{bottom:460.027650px;}
.ye{bottom:460.671300px;}
.y271{bottom:460.679550px;}
.yf4{bottom:461.227500px;}
.y2bf{bottom:461.227800px;}
.y166{bottom:461.331600px;}
.yba{bottom:462.989850px;}
.y28d{bottom:464.827500px;}
.y247{bottom:464.931450px;}
.y39f{bottom:466.551900px;}
.y20f{bottom:468.179550px;}
.y41{bottom:469.380300px;}
.y12d{bottom:471.127650px;}
.y2e8{bottom:471.779550px;}
.y18{bottom:472.273800px;}
.y35f{bottom:473.055150px;}
.y81{bottom:473.443200px;}
.y1a9{bottom:473.775600px;}
.y1d7{bottom:474.427500px;}
.y39b{bottom:474.651900px;}
.y270{bottom:475.079550px;}
.y165{bottom:475.731450px;}
.yd{bottom:476.871300px;}
.y28c{bottom:478.627650px;}
.y39e{bottom:482.751900px;}
.yf3{bottom:482.879550px;}
.y2be{bottom:482.879700px;}
.y246{bottom:483.231450px;}
.y12c{bottom:485.227500px;}
.yb9{bottom:485.241900px;}
.y2e7{bottom:485.879550px;}
.y40{bottom:485.880300px;}
.y3d5{bottom:489.523650px;}
.y80{bottom:489.943200px;}
.y20e{bottom:490.131450px;}
.y39a{bottom:490.851900px;}
.y35e{bottom:492.105150px;}
.y1d6{bottom:492.427500px;}
.yc{bottom:493.071300px;}
.y1a8{bottom:496.027650px;}
.yf2{bottom:496.679550px;}
.y2bd{bottom:496.679700px;}
.y26f{bottom:497.331600px;}
.y164{bottom:497.983500px;}
.y3a1{bottom:498.951900px;}
.yb8{bottom:499.641750px;}
.y28b{bottom:500.279550px;}
.y3f{bottom:502.380300px;}
.y12b{bottom:502.927500px;}
.y20d{bottom:504.231450px;}
.y245{bottom:505.783500px;}
.y7f{bottom:506.443200px;}
.y2e6{bottom:507.831600px;}
.yb{bottom:509.271300px;}
.y1a7{bottom:510.427500px;}
.y35d{bottom:511.155150px;}
.y26e{bottom:511.731450px;}
.y163{bottom:512.383500px;}
.yf1{bottom:514.079550px;}
.y2bc{bottom:514.079700px;}
.y1d5{bottom:514.679550px;}
.yb7{bottom:517.641750px;}
.y3e{bottom:518.880300px;}
.y32d{bottom:519.476700px;}
.y3d4{bottom:519.627600px;}
.y244{bottom:520.483500px;}
.y2e5{bottom:521.931450px;}
.y7e{bottom:522.943200px;}
.y12a{bottom:524.879550px;}
.ya{bottom:525.471300px;}
.y20c{bottom:526.183500px;}
.y399{bottom:526.690200px;}
.y1d4{bottom:529.079550px;}
.y35c{bottom:530.205150px;}
.y1a6{bottom:532.679550px;}
.y26d{bottom:533.983500px;}
.y162{bottom:534.635400px;}
.y395{bottom:534.790200px;}
.y3d{bottom:535.380300px;}
.y32c{bottom:535.676700px;}
.yf0{bottom:535.731450px;}
.y2bb{bottom:535.731600px;}
.y129{bottom:538.979550px;}
.y7d{bottom:539.443200px;}
.yb6{bottom:539.893800px;}
.y20b{bottom:540.283500px;}
.y9{bottom:541.671300px;}
.y398{bottom:542.890200px;}
.y243{bottom:543.035400px;}
.y2e4{bottom:543.883500px;}
.y1a5{bottom:547.079550px;}
.y26c{bottom:548.383500px;}
.y161{bottom:549.035400px;}
.y35b{bottom:549.255150px;}
.yef{bottom:549.531450px;}
.y2ba{bottom:549.531750px;}
.y3d3{bottom:549.731550px;}
.y394{bottom:550.990200px;}
.y1d3{bottom:551.331600px;}
.y3c{bottom:551.880300px;}
.yb5{bottom:554.293800px;}
.y7c{bottom:555.943200px;}
.y242{bottom:557.735400px;}
.y8{bottom:557.871300px;}
.y20a{bottom:557.983500px;}
.y397{bottom:559.090200px;}
.y32b{bottom:560.380650px;}
.y128{bottom:560.931450px;}
.y1d2{bottom:565.731450px;}
.y160{bottom:567.035400px;}
.y393{bottom:567.190200px;}
.y35a{bottom:568.305150px;}
.y3b{bottom:568.380300px;}
.y1a4{bottom:569.331600px;}
.y26b{bottom:570.635400px;}
.yee{bottom:571.183500px;}
.y2b9{bottom:571.183650px;}
.yb4{bottom:572.293800px;}
.y3e2{bottom:572.325300px;}
.y7b{bottom:572.443200px;}
.y7{bottom:574.071300px;}
.y127{bottom:575.031450px;}
.y396{bottom:575.290200px;}
.y2e3{bottom:575.683500px;}
.y241{bottom:576.035400px;}
.y32a{bottom:576.580650px;}
.y3d2{bottom:579.835350px;}
.y209{bottom:579.935400px;}
.y1a3{bottom:583.731450px;}
.y3a{bottom:584.880300px;}
.yed{bottom:584.983500px;}
.y2b8{bottom:584.983650px;}
.y26a{bottom:585.035400px;}
.y3c7{bottom:585.843300px;}
.y359{bottom:587.355150px;}
.y1d1{bottom:587.983500px;}
.y7a{bottom:588.943200px;}
.y15f{bottom:589.287450px;}
.y6{bottom:590.271450px;}
.y3e1{bottom:592.125300px;}
.y329{bottom:592.780650px;}
.y208{bottom:594.035400px;}
.yb3{bottom:594.545850px;}
.y126{bottom:596.983500px;}
.y2e2{bottom:597.635400px;}
.y240{bottom:598.587450px;}
.y39{bottom:601.380300px;}
.y3c6{bottom:602.043300px;}
.yec{bottom:602.383500px;}
.y392{bottom:603.028500px;}
.y15e{bottom:603.687450px;}
.y79{bottom:605.443200px;}
.y1a2{bottom:605.983500px;}
.y358{bottom:606.405150px;}
.y5{bottom:606.471300px;}
.y2b7{bottom:606.635700px;}
.y269{bottom:607.287450px;}
.yb2{bottom:608.945700px;}
.y328{bottom:608.980650px;}
.y3d1{bottom:609.939450px;}
.y125{bottom:611.083500px;}
.y38d{bottom:611.128500px;}
.y207{bottom:611.735400px;}
.y3e0{bottom:611.925300px;}
.y23f{bottom:613.287450px;}
.y38{bottom:617.880300px;}
.y3c5{bottom:618.243300px;}
.y391{bottom:619.228500px;}
.y1a1{bottom:620.383500px;}
.y2b6{bottom:620.435550px;}
.y15d{bottom:621.687450px;}
.y78{bottom:621.943200px;}
.yeb{bottom:624.035400px;}
.y1d0{bottom:624.635400px;}
.y357{bottom:625.455150px;}
.yb1{bottom:626.945700px;}
.y38b{bottom:627.328500px;}
.y183{bottom:628.783500px;}
.y2e1{bottom:629.435400px;}
.y327{bottom:630.808950px;}
.y3df{bottom:631.725300px;}
.y124{bottom:633.035400px;}
.y206{bottom:633.687450px;}
.y37{bottom:634.380300px;}
.y3c4{bottom:634.443300px;}
.y390{bottom:635.428500px;}
.y23e{bottom:635.839350px;}
.yea{bottom:637.835400px;}
.y77{bottom:638.443200px;}
.y1cf{bottom:639.035400px;}
.y268{bottom:639.687450px;}
.y3d0{bottom:640.043400px;}
.y2b5{bottom:642.087600px;}
.y1a0{bottom:642.635400px;}
.y38a{bottom:643.528500px;}
.y15c{bottom:643.939350px;}
.y356{bottom:644.505150px;}
.y326{bottom:647.008950px;}
.y123{bottom:647.135400px;}
.y205{bottom:647.787450px;}
.yb0{bottom:649.197750px;}
.y23d{bottom:650.539350px;}
.y3c3{bottom:650.643300px;}
.y182{bottom:650.735400px;}
.y36{bottom:650.880300px;}
.y2e0{bottom:651.387450px;}
.y38f{bottom:651.628500px;}
.y76{bottom:654.943200px;}
.y2b4{bottom:655.887600px;}
.y19f{bottom:657.035400px;}
.y15b{bottom:658.339350px;}
.ye9{bottom:659.487450px;}
.y38c{bottom:659.728500px;}
.y1ce{bottom:661.287450px;}
.y267{bottom:661.939350px;}
.y355{bottom:663.555150px;}
.yaf{bottom:663.597750px;}
.y181{bottom:664.835400px;}
.y204{bottom:665.487450px;}
.y3c2{bottom:666.843300px;}
.y35{bottom:667.380300px;}
.y38e{bottom:667.828500px;}
.y23c{bottom:668.839350px;}
.y122{bottom:669.087450px;}
.y3cf{bottom:670.147200px;}
.y75{bottom:671.443200px;}
.y325{bottom:671.712900px;}
.ye8{bottom:673.287450px;}
.y1cd{bottom:675.687450px;}
.y266{bottom:676.339350px;}
.y2b3{bottom:677.539650px;}
.y19e{bottom:679.287450px;}
.y15a{bottom:680.591400px;}
.y354{bottom:682.605150px;}
.y3c1{bottom:683.043300px;}
.y121{bottom:683.187450px;}
.y34{bottom:683.880300px;}
.yae{bottom:685.849800px;}
.y180{bottom:686.787450px;}
.y203{bottom:687.439350px;}
.y324{bottom:687.912900px;}
.y74{bottom:687.943200px;}
.y2b2{bottom:691.339500px;}
.y23b{bottom:691.391400px;}
.y19d{bottom:693.687450px;}
.ye7{bottom:694.939350px;}
.y159{bottom:694.991400px;}
.y389{bottom:695.566800px;}
.y265{bottom:698.591400px;}
.yad{bottom:700.249650px;}
.y3ce{bottom:700.251150px;}
.y33{bottom:700.380300px;}
.y120{bottom:700.887450px;}
.y202{bottom:701.539350px;}
.y353{bottom:701.655150px;}
.y323{bottom:704.112900px;}
.y73{bottom:704.443200px;}
.y23a{bottom:706.091400px;}
.ye6{bottom:708.739350px;}
.y2b1{bottom:708.739500px;}
.y385{bottom:711.766800px;}
.y264{bottom:712.991400px;}
.y19c{bottom:715.939350px;}
.y32{bottom:716.880300px;}
.y158{bottom:717.243300px;}
.y387{bottom:719.866800px;}
.y322{bottom:720.312900px;}
.y352{bottom:720.705150px;}
.y72{bottom:720.943200px;}
.yac{bottom:722.501700px;}
.y11f{bottom:722.839350px;}
.y201{bottom:723.491400px;}
.y384{bottom:727.966800px;}
.y239{bottom:728.643300px;}
.y19b{bottom:730.339350px;}
.y3cd{bottom:730.355100px;}
.ye5{bottom:730.391400px;}
.y2b0{bottom:730.391550px;}
.y157{bottom:731.643300px;}
.y31{bottom:733.380300px;}
.y263{bottom:735.243300px;}
.y386{bottom:736.066800px;}
.yab{bottom:736.901700px;}
.y11e{bottom:736.939350px;}
.y71{bottom:737.443200px;}
.y200{bottom:737.591400px;}
.y351{bottom:739.755150px;}
.y321{bottom:742.141200px;}
.y238{bottom:743.343300px;}
.y383{bottom:744.166800px;}
.ye4{bottom:744.191400px;}
.y2af{bottom:744.191550px;}
.y19a{bottom:748.339350px;}
.y156{bottom:749.643300px;}
.y30{bottom:749.880300px;}
.y1cc{bottom:752.591400px;}
.y3c0{bottom:753.243300px;}
.y70{bottom:753.943200px;}
.y2df{bottom:755.291400px;}
.y350{bottom:758.805150px;}
.y11d{bottom:758.891400px;}
.yaa{bottom:759.153600px;}
.y1ff{bottom:759.543300px;}
.y388{bottom:760.366800px;}
.y3cc{bottom:760.459050px;}
.y3da{bottom:761.102400px;}
.y28a{bottom:761.591400px;}
.ye3{bottom:765.843300px;}
.y2ae{bottom:765.843450px;}
.y237{bottom:765.895350px;}
.y2f{bottom:766.380300px;}
.y320{bottom:766.845150px;}
.y1cb{bottom:766.991400px;}
.y6f{bottom:770.443200px;}
.y199{bottom:770.591250px;}
.y3bf{bottom:771.243300px;}
.y155{bottom:771.895350px;}
.y11c{bottom:772.991400px;}
.ya9{bottom:773.553600px;}
.y1fe{bottom:773.643300px;}
.y2de{bottom:777.243300px;}
.y34f{bottom:777.855150px;}
.ye2{bottom:779.643300px;}
.y2ad{bottom:779.643450px;}
.y236{bottom:780.595350px;}
.y2e{bottom:782.880300px;}
.y31f{bottom:783.045300px;}
.y289{bottom:783.243300px;}
.y198{bottom:784.991400px;}
.y154{bottom:786.295200px;}
.y6e{bottom:786.943200px;}
.y382{bottom:788.105100px;}
.y1ca{bottom:789.243300px;}
.y3cb{bottom:790.563000px;}
.y17f{bottom:790.691400px;}
.y2dd{bottom:791.343300px;}
.y11b{bottom:794.943300px;}
.y1fd{bottom:795.595350px;}
.ya8{bottom:795.805650px;}
.y34e{bottom:796.905150px;}
.y288{bottom:797.043300px;}
.y235{bottom:798.895350px;}
.y31e{bottom:799.245150px;}
.y2d{bottom:799.380300px;}
.ye1{bottom:801.295200px;}
.y2ac{bottom:801.295500px;}
.y6d{bottom:803.443200px;}
.y1c9{bottom:803.643300px;}
.y153{bottom:804.295200px;}
.y381{bottom:804.305100px;}
.y3de{bottom:806.079750px;}
.y197{bottom:807.243300px;}
.y262{bottom:808.547250px;}
.y11a{bottom:809.043300px;}
.y1fc{bottom:809.695350px;}
.ya7{bottom:810.205650px;}
.y17e{bottom:812.643300px;}
.y2dc{bottom:813.295200px;}
.ye0{bottom:815.095350px;}
.y2ab{bottom:815.095500px;}
.y31d{bottom:815.445150px;}
.y2c{bottom:815.880300px;}
.y34d{bottom:815.955150px;}
.y287{bottom:818.695350px;}
.y6c{bottom:819.943200px;}
.y3ca{bottom:820.666950px;}
.y234{bottom:821.447250px;}
.y196{bottom:821.643300px;}
.y261{bottom:822.947250px;}
.y3be{bottom:825.243300px;}
.y1c8{bottom:825.895350px;}
.y152{bottom:826.547250px;}
.y17d{bottom:826.743300px;}
.y2db{bottom:827.395350px;}
.y119{bottom:830.995200px;}
.y1fb{bottom:831.647250px;}
.y2b{bottom:832.380300px;}
.ya6{bottom:832.457550px;}
.y286{bottom:832.495200px;}
.y34c{bottom:835.005150px;}
.y233{bottom:836.147250px;}
.y3dd{bottom:836.183550px;}
.y6b{bottom:836.443200px;}
.ydf{bottom:836.747250px;}
.y2aa{bottom:836.747550px;}
.y1c7{bottom:840.295200px;}
.y151{bottom:840.947250px;}
.y3bd{bottom:843.243300px;}
.y195{bottom:843.895350px;}
.y118{bottom:845.095350px;}
.y1fa{bottom:845.747250px;}
.ya5{bottom:846.857550px;}
.y380{bottom:847.088400px;}
.y17c{bottom:848.695350px;}
.y2a{bottom:848.880300px;}
.y2da{bottom:849.347250px;}
.yde{bottom:850.547250px;}
.y2a9{bottom:850.547400px;}
.y3c9{bottom:850.770900px;}
.y6a{bottom:852.943200px;}
.y34b{bottom:854.055150px;}
.y285{bottom:854.147250px;}
.y31c{bottom:855.273600px;}
.y194{bottom:858.295200px;}
.y232{bottom:858.699300px;}
.y300{bottom:858.947250px;}
.y3bc{bottom:861.243300px;}
.y1c6{bottom:862.547250px;}
.y117{bottom:862.795200px;}
.y150{bottom:863.199300px;}
.y1f9{bottom:863.447250px;}
.y37f{bottom:865.088400px;}
.y29{bottom:865.380300px;}
.y3dc{bottom:866.287650px;}
.ydd{bottom:867.947250px;}
.y2a8{bottom:867.947400px;}
.ya4{bottom:869.109600px;}
.y69{bottom:869.443200px;}
.y34a{bottom:873.105150px;}
.y31b{bottom:873.273600px;}
.y231{bottom:873.399300px;}
.y1c5{bottom:876.947250px;}
.y14f{bottom:877.599300px;}
.y193{bottom:880.547250px;}
.y3c8{bottom:880.874850px;}
.y2d9{bottom:881.147250px;}
.y2ff{bottom:881.199300px;}
.y28{bottom:881.880300px;}
.y37e{bottom:883.088400px;}
.ya3{bottom:883.509450px;}
.y116{bottom:884.747250px;}
.y1f8{bottom:885.399300px;}
.y68{bottom:885.943200px;}
.y3bb{bottom:887.747250px;}
.ydc{bottom:889.599300px;}
.y31a{bottom:891.273600px;}
.y349{bottom:892.155150px;}
.y192{bottom:894.947250px;}
.y14e{bottom:895.599300px;}
.y230{bottom:895.951200px;}
.y3db{bottom:896.391600px;}
.y27{bottom:898.380300px;}
.y115{bottom:898.847250px;}
.y1f7{bottom:899.499150px;}
.y67{bottom:902.443200px;}
.y2d8{bottom:903.099300px;}
.ydb{bottom:903.399300px;}
.ya2{bottom:905.761500px;}
.y37d{bottom:909.592500px;}
.y22f{bottom:910.651200px;}
.y2fe{bottom:913.599300px;}
.y26{bottom:914.880300px;}
.y191{bottom:917.199300px;}
.y14d{bottom:917.851200px;}
.y66{bottom:918.943200px;}
.y348{bottom:919.709100px;}
.ya1{bottom:920.161500px;}
.y114{bottom:920.799150px;}
.y2a7{bottom:920.799300px;}
.y1f6{bottom:921.451200px;}
.yda{bottom:925.051200px;}
.y3ba{bottom:927.347400px;}
.y37c{bottom:927.592500px;}
.y22e{bottom:928.951200px;}
.y319{bottom:929.073600px;}
.y190{bottom:931.599300px;}
.y14c{bottom:932.251200px;}
.y113{bottom:934.899300px;}
.y65{bottom:935.443200px;}
.y1f5{bottom:935.551200px;}
.y2fd{bottom:935.851200px;}
.ya0{bottom:938.161500px;}
.yd9{bottom:938.851200px;}
.y2d7{bottom:939.151200px;}
.y25{bottom:939.884250px;}
.y2a6{bottom:942.451200px;}
.y3b9{bottom:945.347400px;}
.y318{bottom:947.073600px;}
.y18f{bottom:949.599300px;}
.y2fc{bottom:950.251200px;}
.y22d{bottom:951.503100px;}
.y64{bottom:951.943200px;}
.y2d6{bottom:953.251200px;}
.y1c4{bottom:953.851200px;}
.y37b{bottom:954.096300px;}
.y14b{bottom:954.503100px;}
.yd8{bottom:956.251200px;}
.y2a5{bottom:956.251350px;}
.y24{bottom:956.384250px;}
.y112{bottom:956.851200px;}
.y1f4{bottom:957.503100px;}
.y9f{bottom:960.413400px;}
.y347{bottom:961.409100px;}
.y3b8{bottom:963.347400px;}
.y317{bottom:965.073600px;}
.y22c{bottom:966.203100px;}
.y1c3{bottom:968.251200px;}
.y63{bottom:968.443200px;}
.y14a{bottom:968.903100px;}
.y111{bottom:970.951200px;}
.y1f3{bottom:971.603250px;}
.y18e{bottom:971.851200px;}
.y37a{bottom:972.096300px;}
.y9e{bottom:974.813550px;}
.yd7{bottom:977.903100px;}
.y2a4{bottom:977.903250px;}
.y346{bottom:980.459100px;}
.y23{bottom:981.388200px;}
.y22b{bottom:984.503100px;}
.y62{bottom:984.943200px;}
.y18d{bottom:986.251200px;}
.y149{bottom:986.903100px;}
.y3b7{bottom:989.851350px;}
.y1c2{bottom:990.503100px;}
.y260{bottom:991.155150px;}
.yd6{bottom:991.703100px;}
.y2a3{bottom:991.703250px;}
.y9d{bottom:992.813550px;}
.y110{bottom:992.903100px;}
.y1f2{bottom:993.555150px;}
.y22{bottom:997.888200px;}
.y379{bottom:998.600250px;}
.y345{bottom:999.509100px;}
.y61{bottom:1001.443200px;}
.y1c1{bottom:1004.903100px;}
.y25f{bottom:1005.555150px;}
.y10f{bottom:1007.003100px;}
.y22a{bottom:1007.055150px;}
.y1f1{bottom:1007.655150px;}
.y3b6{bottom:1007.851350px;}
.y18c{bottom:1008.503100px;}
.yd5{bottom:1009.103250px;}
.y148{bottom:1009.155150px;}
.y284{bottom:1013.355150px;}
.y9c{bottom:1015.065450px;}
.y378{bottom:1016.600250px;}
.y60{bottom:1017.943200px;}
.y344{bottom:1018.559100px;}
.y229{bottom:1021.755150px;}
.y18b{bottom:1022.903100px;}
.y147{bottom:1023.555150px;}
.y2d5{bottom:1024.703100px;}
.y1f0{bottom:1025.355150px;}
.y1c0{bottom:1027.155150px;}
.y10e{bottom:1028.955150px;}
.y316{bottom:1029.377550px;}
.y9b{bottom:1029.465450px;}
.yd4{bottom:1030.755150px;}
.y3b5{bottom:1034.355150px;}
.y5f{bottom:1034.443200px;}
.y1d{bottom:1035.138750px;}
.y1e{bottom:1035.138900px;}
.y343{bottom:1037.609100px;}
.y228{bottom:1040.055150px;}
.y1bf{bottom:1041.555150px;}
.y10d{bottom:1043.055150px;}
.y377{bottom:1043.104200px;}
.yd3{bottom:1044.555150px;}
.y18a{bottom:1045.155150px;}
.y146{bottom:1045.807050px;}
.y25e{bottom:1045.807200px;}
.y2d4{bottom:1046.655150px;}
.y1ef{bottom:1047.307200px;}
.y9a{bottom:1047.465450px;}
.y2a2{bottom:1048.807200px;}
.y5e{bottom:1050.943200px;}
.y3b4{bottom:1052.355150px;}
.y342{bottom:1056.659100px;}
.y189{bottom:1059.555150px;}
.y145{bottom:1060.207050px;}
.y25d{bottom:1060.207200px;}
.y17b{bottom:1060.755150px;}
.y376{bottom:1061.104200px;}
.y1ee{bottom:1061.407200px;}
.y227{bottom:1062.607050px;}
.y2a1{bottom:1062.607200px;}
.y1be{bottom:1063.807050px;}
.y2fb{bottom:1063.807200px;}
.y10c{bottom:1065.007200px;}
.yd2{bottom:1066.207050px;}
.y3b3{bottom:1070.355150px;}
.y315{bottom:1072.577550px;}
.y341{bottom:1075.709100px;}
.y5d{bottom:1075.947150px;}
.y226{bottom:1077.307050px;}
.y144{bottom:1078.207050px;}
.y25c{bottom:1078.207200px;}
.y10b{bottom:1079.107050px;}
.y1ed{bottom:1079.107200px;}
.yd1{bottom:1080.007200px;}
.y188{bottom:1081.807200px;}
.y17a{bottom:1082.707050px;}
.y375{bottom:1087.608150px;}
.y99{bottom:1087.775700px;}
.y5c{bottom:1092.447150px;}
.y340{bottom:1094.759100px;}
.y312{bottom:1096.207050px;}
.y187{bottom:1096.207200px;}
.y10a{bottom:1096.807050px;}
.y3b2{bottom:1096.859100px;}
.y283{bottom:1097.407050px;}
.y225{bottom:1099.859100px;}
.y143{bottom:1100.459100px;}
.y25b{bottom:1100.459250px;}
.y1ec{bottom:1101.059100px;}
.yd0{bottom:1101.659100px;}
.y2a0{bottom:1101.659250px;}
.y1c{bottom:1103.252400px;}
.y374{bottom:1105.608150px;}
.y33f{bottom:1113.809100px;}
.y224{bottom:1114.559100px;}
.y142{bottom:1114.859100px;}
.y1eb{bottom:1115.159250px;}
.ycf{bottom:1115.459100px;}
.y29f{bottom:1115.459250px;}
.y314{bottom:1115.777550px;}
.y5b{bottom:1117.451100px;}
.y311{bottom:1118.459100px;}
.y186{bottom:1118.459250px;}
.y109{bottom:1118.759100px;}
.y282{bottom:1119.059100px;}
.y373{bottom:1132.112100px;}
.yce{bottom:1132.859100px;}
.y5a{bottom:1133.951100px;}
.y4{bottom:1155.259800px;}
.y1b{bottom:1155.259950px;}
.y1a{bottom:1167.259950px;}
.y95{bottom:1168.374600px;}
.y19{bottom:1179.259950px;}
.y98{bottom:1185.032850px;}
.y94{bottom:1199.855700px;}
.h8{height:34.945312px;}
.he{height:34.968750px;}
.h16{height:35.156250px;}
.hf{height:35.179688px;}
.h5{height:39.312000px;}
.hc{height:39.313477px;}
.hb{height:39.339844px;}
.hd{height:39.550781px;}
.h1a{height:39.577148px;}
.h1c{height:42.597656px;}
.h14{height:43.710938px;}
.h1e{height:43.945312px;}
.h15{height:43.974609px;}
.h19{height:48.082031px;}
.h22{height:48.339844px;}
.h21{height:48.372070px;}
.h3{height:51.082031px;}
.h12{height:52.416000px;}
.ha{height:52.417969px;}
.h20{height:52.453125px;}
.h4{height:61.195312px;}
.h1d{height:71.713477px;}
.h10{height:76.394136px;}
.h17{height:85.136719px;}
.h1b{height:85.137319px;}
.h1f{height:85.148438px;}
.h18{height:102.164062px;}
.h11{height:127.705078px;}
.h9{height:165.289051px;}
.h13{height:204.328125px;}
.h6{height:209.664000px;}
.h7{height:211.078125px;}
.h2{height:226.734144px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1f{left:-667.732650px;}
.x0{left:0.000000px;}
.x18{left:68.031450px;}
.x23{left:70.582650px;}
.x1b{left:72.283350px;}
.x19{left:76.960650px;}
.x33{left:88.116150px;}
.xd{left:98.032500px;}
.xc{left:104.598450px;}
.x32{left:106.348350px;}
.x24{left:110.551200px;}
.x29{left:116.418900px;}
.x2{left:127.133700px;}
.x6{left:128.311800px;}
.x5{left:132.371250px;}
.x1e{left:140.314950px;}
.x2a{left:155.804850px;}
.x2e{left:172.346400px;}
.x31{left:178.582650px;}
.x3a{left:186.097050px;}
.x38{left:198.173850px;}
.x39{left:212.393850px;}
.x1d{left:214.597950px;}
.x37{left:220.631850px;}
.xa{left:225.295650px;}
.x2d{left:252.514200px;}
.x2b{left:263.320200px;}
.x35{left:268.706100px;}
.x1{left:292.535400px;}
.x34{left:299.518350px;}
.x3b{left:313.698000px;}
.x4{left:341.574750px;}
.x36{left:374.189550px;}
.x30{left:380.868900px;}
.x3{left:399.207150px;}
.x9{left:515.864400px;}
.x7{left:520.311600px;}
.x8{left:532.753950px;}
.x2c{left:555.566850px;}
.x20{left:559.728000px;}
.x12{left:565.511850px;}
.x11{left:566.635800px;}
.x14{left:572.594700px;}
.xe{left:576.774000px;}
.x13{left:580.162050px;}
.x15{left:585.778350px;}
.x17{left:587.614200px;}
.x26{left:598.615800px;}
.x1c{left:601.592100px;}
.x16{left:607.149000px;}
.x10{left:620.269950px;}
.xf{left:655.928250px;}
.xb{left:676.795050px;}
.x27{left:760.558500px;}
.x2f{left:769.198500px;}
.x25{left:777.838350px;}
.x22{left:786.478200px;}
.x28{left:843.964950px;}
.x21{left:855.632400px;}
.x1a{left:1452.641400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.800000pt;}
.v1{vertical-align:76.800533pt;}
.ls8{letter-spacing:-3.946667pt;}
.ls5{letter-spacing:-0.912000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.007467pt;}
.ls2{letter-spacing:1.680000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls9{letter-spacing:8.000000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls6{letter-spacing:32.000000pt;}
.ls7{letter-spacing:51.200000pt;}
.ws15{word-spacing:-107.520000pt;}
.ws13{word-spacing:-87.792533pt;}
.ws2{word-spacing:-71.168000pt;}
.ws0{word-spacing:-66.442240pt;}
.ws1{word-spacing:-61.440000pt;}
.ws14{word-spacing:-32.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsd2{word-spacing:-17.792000pt;}
.ws7a{word-spacing:-14.826667pt;}
.ws66{word-spacing:-14.240000pt;}
.ws8c{word-spacing:-14.133333pt;}
.ws50{word-spacing:-13.973333pt;}
.ws44{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws2f{word-spacing:-13.333333pt;}
.ws8e{word-spacing:-13.280000pt;}
.ws85{word-spacing:-13.066667pt;}
.ws2d{word-spacing:-13.013333pt;}
.ws64{word-spacing:-12.906667pt;}
.ws51{word-spacing:-12.853333pt;}
.ws46{word-spacing:-12.693333pt;}
.ws1e{word-spacing:-12.640000pt;}
.ws7f{word-spacing:-12.586667pt;}
.ws5d{word-spacing:-12.533333pt;}
.ws3c{word-spacing:-12.480000pt;}
.ws34{word-spacing:-12.426667pt;}
.ws54{word-spacing:-12.373333pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws55{word-spacing:-12.266667pt;}
.ws33{word-spacing:-12.213333pt;}
.ws3f{word-spacing:-12.160000pt;}
.ws4a{word-spacing:-12.106667pt;}
.ws74{word-spacing:-12.053333pt;}
.ws3b{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws76{word-spacing:-11.573333pt;}
.ws82{word-spacing:-11.520000pt;}
.ws30{word-spacing:-11.360000pt;}
.ws7b{word-spacing:-11.306667pt;}
.ws89{word-spacing:-11.093333pt;}
.ws29{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.243179pt;}
.ws6f{word-spacing:-10.186667pt;}
.ws87{word-spacing:-9.973333pt;}
.ws2c{word-spacing:-9.866667pt;}
.ws72{word-spacing:-9.813333pt;}
.ws59{word-spacing:-9.760000pt;}
.ws7e{word-spacing:-9.706667pt;}
.ws38{word-spacing:-9.600000pt;}
.ws4c{word-spacing:-9.546667pt;}
.ws36{word-spacing:-9.493333pt;}
.ws47{word-spacing:-9.440000pt;}
.ws37{word-spacing:-9.386667pt;}
.ws49{word-spacing:-9.333333pt;}
.ws24{word-spacing:-9.280000pt;}
.ws22{word-spacing:-9.226667pt;}
.ws39{word-spacing:-9.173333pt;}
.ws73{word-spacing:-9.120000pt;}
.ws5a{word-spacing:-9.066667pt;}
.ws32{word-spacing:-9.013333pt;}
.ws4b{word-spacing:-8.960000pt;}
.ws56{word-spacing:-8.906667pt;}
.ws8b{word-spacing:-8.746667pt;}
.ws52{word-spacing:-8.693333pt;}
.ws6d{word-spacing:-8.480000pt;}
.ws53{word-spacing:-8.373333pt;}
.ws26{word-spacing:-8.320000pt;}
.ws77{word-spacing:-8.213333pt;}
.ws65{word-spacing:-8.000000pt;}
.ws8{word-spacing:-7.467271pt;}
.ws6c{word-spacing:-7.360000pt;}
.ws8f{word-spacing:-7.306667pt;}
.ws5c{word-spacing:-7.051200pt;}
.ws63{word-spacing:-6.933333pt;}
.ws67{word-spacing:-6.773333pt;}
.ws79{word-spacing:-6.720000pt;}
.ws5b{word-spacing:-6.701867pt;}
.ws43{word-spacing:-6.666667pt;}
.ws31{word-spacing:-6.613333pt;}
.ws3a{word-spacing:-6.560000pt;}
.ws25{word-spacing:-6.506667pt;}
.ws48{word-spacing:-6.453333pt;}
.ws40{word-spacing:-6.400000pt;}
.ws1d{word-spacing:-6.346667pt;}
.ws57{word-spacing:-6.293333pt;}
.ws71{word-spacing:-6.240000pt;}
.ws6e{word-spacing:-6.186667pt;}
.ws28{word-spacing:-6.133333pt;}
.ws2a{word-spacing:-6.080000pt;}
.ws70{word-spacing:-6.026667pt;}
.ws68{word-spacing:-5.706667pt;}
.ws58{word-spacing:-5.173333pt;}
.ws2b{word-spacing:-5.120000pt;}
.ws83{word-spacing:-4.586667pt;}
.ws60{word-spacing:-4.480000pt;}
.ws86{word-spacing:-4.373333pt;}
.ws6b{word-spacing:-4.266667pt;}
.ws35{word-spacing:-3.840000pt;}
.ws5f{word-spacing:-3.786667pt;}
.ws1f{word-spacing:-3.733333pt;}
.ws81{word-spacing:-3.680000pt;}
.ws3d{word-spacing:-3.626667pt;}
.ws27{word-spacing:-3.573333pt;}
.wsd3{word-spacing:-3.520000pt;}
.ws42{word-spacing:-3.466667pt;}
.ws16{word-spacing:-3.451261pt;}
.ws4d{word-spacing:-3.413333pt;}
.ws23{word-spacing:-3.306667pt;}
.ws6a{word-spacing:-3.253333pt;}
.ws3e{word-spacing:-3.200000pt;}
.ws7c{word-spacing:-3.146667pt;}
.ws92{word-spacing:-3.120000pt;}
.ws17{word-spacing:-3.093333pt;}
.ws84{word-spacing:-3.040000pt;}
.ws88{word-spacing:-2.933333pt;}
.ws61{word-spacing:-2.880000pt;}
.wsbe{word-spacing:-2.826667pt;}
.wsb9{word-spacing:-2.666667pt;}
.wsb{word-spacing:-2.640000pt;}
.ws5e{word-spacing:-2.613333pt;}
.wsa{word-spacing:-2.592000pt;}
.ws4e{word-spacing:-2.506667pt;}
.ws62{word-spacing:-2.453333pt;}
.wsaf{word-spacing:-2.400000pt;}
.ws20{word-spacing:-2.346667pt;}
.ws7d{word-spacing:-2.186667pt;}
.ws80{word-spacing:-2.080000pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws91{word-spacing:-1.872000pt;}
.wscf{word-spacing:-1.866667pt;}
.wsc{word-spacing:-1.776000pt;}
.wsb3{word-spacing:-1.706667pt;}
.ws75{word-spacing:-1.653333pt;}
.ws41{word-spacing:-1.600000pt;}
.ws18{word-spacing:-1.578667pt;}
.wsb6{word-spacing:-1.546667pt;}
.ws8a{word-spacing:-1.493333pt;}
.ws8d{word-spacing:-1.280000pt;}
.wsd0{word-spacing:-1.120000pt;}
.wsb0{word-spacing:-1.066667pt;}
.ws93{word-spacing:-1.056000pt;}
.wse{word-spacing:-0.981333pt;}
.ws45{word-spacing:-0.960000pt;}
.ws9a{word-spacing:-0.906667pt;}
.ws1c{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.816000pt;}
.ws78{word-spacing:-0.800000pt;}
.ws21{word-spacing:-0.768000pt;}
.ws69{word-spacing:-0.746667pt;}
.ws4f{word-spacing:-0.693333pt;}
.wsb8{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.533333pt;}
.wsa6{word-spacing:-0.426667pt;}
.wsc3{word-spacing:-0.160000pt;}
.ws5{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.053333pt;}
.wsc0{word-spacing:0.320000pt;}
.wsa7{word-spacing:0.533333pt;}
.wsad{word-spacing:0.640000pt;}
.wsc2{word-spacing:0.800000pt;}
.wsba{word-spacing:0.853333pt;}
.wscb{word-spacing:1.546667pt;}
.ws95{word-spacing:1.632000pt;}
.ws99{word-spacing:1.813333pt;}
.wsac{word-spacing:2.186667pt;}
.wsc8{word-spacing:2.293333pt;}
.wsa1{word-spacing:2.400000pt;}
.ws9c{word-spacing:2.506667pt;}
.ws9e{word-spacing:3.040000pt;}
.wsf{word-spacing:3.285333pt;}
.wsa5{word-spacing:3.733333pt;}
.wsa0{word-spacing:3.786667pt;}
.ws96{word-spacing:3.840000pt;}
.wsca{word-spacing:4.426667pt;}
.ws90{word-spacing:4.464000pt;}
.wsae{word-spacing:4.480000pt;}
.ws98{word-spacing:4.800000pt;}
.wsa8{word-spacing:5.013333pt;}
.ws94{word-spacing:5.088000pt;}
.ws10{word-spacing:5.162667pt;}
.wsd1{word-spacing:5.226667pt;}
.wsbc{word-spacing:5.333333pt;}
.wsc4{word-spacing:5.600000pt;}
.wsa4{word-spacing:5.653333pt;}
.wsa3{word-spacing:5.706667pt;}
.ws97{word-spacing:5.760000pt;}
.wsb7{word-spacing:6.186667pt;}
.wsc6{word-spacing:6.453333pt;}
.wsc1{word-spacing:6.560000pt;}
.wsab{word-spacing:6.720000pt;}
.wsbf{word-spacing:6.933333pt;}
.wscc{word-spacing:7.093333pt;}
.wsb5{word-spacing:7.200000pt;}
.wsbb{word-spacing:7.786667pt;}
.wsc5{word-spacing:8.373333pt;}
.wsaa{word-spacing:8.480000pt;}
.wsb2{word-spacing:8.640000pt;}
.ws9f{word-spacing:9.013333pt;}
.wsb4{word-spacing:9.226667pt;}
.ws9d{word-spacing:9.600000pt;}
.ws9b{word-spacing:9.973333pt;}
.wsc7{word-spacing:11.520000pt;}
.wsd{word-spacing:11.818667pt;}
.wsce{word-spacing:12.426667pt;}
.wsb1{word-spacing:12.533333pt;}
.wscd{word-spacing:14.133333pt;}
.wsa9{word-spacing:15.733333pt;}
.wsc9{word-spacing:16.586667pt;}
.ws11{word-spacing:17.280000pt;}
.ws12{word-spacing:72.016000pt;}
.wsbd{word-spacing:481.714667pt;}
._0{margin-left:-15.226347pt;}
._14{margin-left:-12.912021pt;}
._7{margin-left:-11.956816pt;}
._1{margin-left:-10.243179pt;}
._6{margin-left:-8.324090pt;}
._b{margin-left:-7.347200pt;}
._11{margin-left:-6.359467pt;}
._9{margin-left:-5.308800pt;}
._4{margin-left:-3.552000pt;}
._3{margin-left:-2.099200pt;}
._2{margin-left:-1.196800pt;}
._5{width:0.950400pt;}
._a{width:2.678400pt;}
._c{width:4.478933pt;}
._15{width:5.962667pt;}
._d{width:7.413333pt;}
._e{width:8.480000pt;}
._10{width:11.253333pt;}
._f{width:12.906667pt;}
._1b{width:16.608000pt;}
._1a{width:40.053333pt;}
._19{width:42.720000pt;}
._1c{width:44.960000pt;}
._18{width:46.506667pt;}
._1d{width:52.451200pt;}
._16{width:72.333333pt;}
._12{width:111.574558pt;}
._13{width:127.832000pt;}
._8{width:242.889542pt;}
._17{width:686.206400pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:93.277333pt;}
.fsa{font-size:106.666667pt;}
.fsd{font-size:112.000000pt;}
.fsb{font-size:128.000000pt;}
.fs8{font-size:160.000000pt;}
.fs6{font-size:201.818133pt;}
.fs4{font-size:256.000000pt;}
.fs0{font-size:276.842667pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:67.861067pt;}
.y313{bottom:67.946267pt;}
.y96{bottom:94.488133pt;}
.y3b1{bottom:97.049867pt;}
.y141{bottom:98.631067pt;}
.y372{bottom:98.760133pt;}
.y108{bottom:99.210533pt;}
.y29e{bottom:99.256667pt;}
.y1bd{bottom:99.697733pt;}
.y2d3{bottom:99.790267pt;}
.y1ea{bottom:100.277200pt;}
.y223{bottom:100.369600pt;}
.y281{bottom:100.856667pt;}
.y179{bottom:101.436133pt;}
.y25a{bottom:102.769467pt;}
.y21{bottom:103.508667pt;}
.y93{bottom:103.600667pt;}
.y33e{bottom:104.238933pt;}
.y59{bottom:104.576800pt;}
.ycd{bottom:106.689867pt;}
.y3e3{bottom:110.488133pt;}
.y140{bottom:111.430933pt;}
.y107{bottom:111.477200pt;}
.y2fa{bottom:112.010533pt;}
.y29d{bottom:112.056667pt;}
.y2d2{bottom:112.056933pt;}
.y1bc{bottom:112.497600pt;}
.y3b0{bottom:113.049867pt;}
.y1e9{bottom:113.077200pt;}
.y222{bottom:113.169600pt;}
.y280{bottom:113.656800pt;}
.y178{bottom:114.236267pt;}
.y3{bottom:114.787733pt;}
.y371{bottom:115.693467pt;}
.y259{bottom:115.836267pt;}
.y92{bottom:117.734000pt;}
.y20{bottom:117.908667pt;}
.ycc{bottom:119.489867pt;}
.y33d{bottom:120.238933pt;}
.y13f{bottom:127.164267pt;}
.y29c{bottom:127.523333pt;}
.y2d1{bottom:127.523467pt;}
.y58{bottom:128.135733pt;}
.y221{bottom:128.902933pt;}
.y3af{bottom:129.049867pt;}
.y27f{bottom:129.656800pt;}
.y106{bottom:130.723333pt;}
.y2f9{bottom:131.523333pt;}
.y91{bottom:131.867333pt;}
.y1bb{bottom:132.277200pt;}
.y1f{bottom:132.308667pt;}
.y370{bottom:132.626800pt;}
.y1e8{bottom:132.856667pt;}
.y177{bottom:134.015733pt;}
.y2{bottom:134.341733pt;}
.ycb{bottom:135.489867pt;}
.y258{bottom:135.882400pt;}
.y33c{bottom:136.238933pt;}
.y105{bottom:142.990133pt;}
.y2f8{bottom:144.056667pt;}
.y57{bottom:144.135733pt;}
.y1ba{bottom:145.077200pt;}
.y1e7{bottom:145.656800pt;}
.y90{bottom:146.000667pt;}
.y13e{bottom:146.677200pt;}
.y29b{bottom:146.769467pt;}
.y2d0{bottom:146.769733pt;}
.y176{bottom:146.815733pt;}
.y220{bottom:148.415733pt;}
.y257{bottom:148.949067pt;}
.y27e{bottom:149.436133pt;}
.y36f{bottom:149.560133pt;}
.y3ae{bottom:152.608933pt;}
.yca{bottom:155.269333pt;}
.y104{bottom:158.456667pt;}
.y29a{bottom:159.036267pt;}
.y2cf{bottom:159.036400pt;}
.y13d{bottom:159.210533pt;}
.y33b{bottom:159.798000pt;}
.y8f{bottom:160.134000pt;}
.y56{bottom:160.135733pt;}
.y21f{bottom:160.949067pt;}
.y27d{bottom:162.236267pt;}
.y175{bottom:162.815733pt;}
.y2f7{bottom:163.569600pt;}
.y1b9{bottom:164.856667pt;}
.y1e6{bottom:165.436133pt;}
.y36e{bottom:166.493467pt;}
.y310{bottom:166.595333pt;}
.yc9{bottom:168.069467pt;}
.y3ad{bottom:168.608933pt;}
.y256{bottom:168.995333pt;}
.y8e{bottom:174.267333pt;}
.y2ce{bottom:174.503067pt;}
.y13c{bottom:174.943867pt;}
.y2f6{bottom:176.102800pt;}
.y55{bottom:176.135733pt;}
.y1b8{bottom:177.656800pt;}
.y103{bottom:177.702933pt;}
.y1e5{bottom:178.236267pt;}
.y299{bottom:178.282400pt;}
.y185{bottom:178.723333pt;}
.y30f{bottom:179.395200pt;}
.y21e{bottom:180.462000pt;}
.y27c{bottom:182.015733pt;}
.y255{bottom:182.061867pt;}
.y174{bottom:182.595333pt;}
.y36d{bottom:183.426800pt;}
.y3ac{bottom:184.608933pt;}
.yc8{bottom:187.848933pt;}
.y8d{bottom:188.400667pt;}
.y102{bottom:189.969600pt;}
.y298{bottom:190.549067pt;}
.y184{bottom:191.256667pt;}
.y54{bottom:192.135733pt;}
.y21d{bottom:192.995333pt;}
.y2cd{bottom:193.749333pt;}
.y13b{bottom:194.456667pt;}
.y27b{bottom:194.815733pt;}
.y33a{bottom:194.998000pt;}
.y173{bottom:195.395200pt;}
.y2f5{bottom:195.615733pt;}
.y1b7{bottom:197.436133pt;}
.y1e4{bottom:198.015733pt;}
.y30e{bottom:199.174800pt;}
.y36c{bottom:200.360133pt;}
.yc7{bottom:200.648933pt;}
.y254{bottom:202.108133pt;}
.y8c{bottom:202.534000pt;}
.y297{bottom:206.015733pt;}
.y2cc{bottom:206.016000pt;}
.y13a{bottom:206.990133pt;}
.y53{bottom:208.135867pt;}
.y2f4{bottom:208.149067pt;}
.y3ab{bottom:208.168000pt;}
.y21c{bottom:208.728533pt;}
.y101{bottom:209.215733pt;}
.y1b6{bottom:210.236267pt;}
.y1e3{bottom:210.815733pt;}
.y339{bottom:210.998000pt;}
.y172{bottom:211.395200pt;}
.y4f{bottom:211.893600pt;}
.y30d{bottom:211.974800pt;}
.y253{bottom:215.174800pt;}
.y8b{bottom:216.667333pt;}
.y36b{bottom:217.293467pt;}
.y1{bottom:217.394533pt;}
.yc6{bottom:220.428533pt;}
.y100{bottom:221.482400pt;}
.y2f3{bottom:223.882400pt;}
.y3aa{bottom:224.168000pt;}
.y296{bottom:225.262000pt;}
.y2cb{bottom:225.262133pt;}
.y1b5{bottom:226.236267pt;}
.y139{bottom:226.502933pt;}
.y4e{bottom:226.560267pt;}
.y338{bottom:226.998000pt;}
.y21b{bottom:228.241467pt;}
.y1e2{bottom:230.595333pt;}
.y8a{bottom:230.800667pt;}
.y171{bottom:231.174800pt;}
.y52{bottom:231.694800pt;}
.y30c{bottom:231.754267pt;}
.yc5{bottom:233.228400pt;}
.y36a{bottom:234.226800pt;}
.y252{bottom:235.221067pt;}
.yff{bottom:236.949067pt;}
.y295{bottom:237.528667pt;}
.y2ca{bottom:237.528800pt;}
.y138{bottom:239.036267pt;}
.y3a9{bottom:240.168000pt;}
.y21a{bottom:240.774800pt;}
.y4d{bottom:241.226933pt;}
.y337{bottom:242.998000pt;}
.y1e1{bottom:243.395200pt;}
.y170{bottom:243.974800pt;}
.y30b{bottom:244.554400pt;}
.y89{bottom:244.934000pt;}
.y1b4{bottom:246.015733pt;}
.y251{bottom:248.287733pt;}
.yc4{bottom:249.228400pt;}
.y369{bottom:251.160133pt;}
.y294{bottom:252.995333pt;}
.y51{bottom:255.253867pt;}
.y4c{bottom:255.893600pt;}
.y2f2{bottom:255.928667pt;}
.yfe{bottom:256.195333pt;}
.y219{bottom:256.508133pt;}
.y2c9{bottom:256.774933pt;}
.y137{bottom:258.549067pt;}
.y1b3{bottom:258.815733pt;}
.y336{bottom:258.998000pt;}
.y88{bottom:259.067333pt;}
.y1e0{bottom:259.395200pt;}
.y16f{bottom:259.974800pt;}
.y30a{bottom:260.554400pt;}
.y27a{bottom:263.174800pt;}
.y3a8{bottom:263.727067pt;}
.y250{bottom:264.554400pt;}
.y368{bottom:268.093467pt;}
.yfd{bottom:268.462000pt;}
.yc3{bottom:269.008000pt;}
.y2c8{bottom:269.041600pt;}
.y4b{bottom:270.560267pt;}
.y136{bottom:271.082400pt;}
.y50{bottom:271.253867pt;}
.y293{bottom:272.241467pt;}
.y87{bottom:273.200667pt;}
.y335{bottom:274.998000pt;}
.y2f1{bottom:275.441467pt;}
.y279{bottom:275.974800pt;}
.y218{bottom:276.020933pt;}
.y1b2{bottom:278.595333pt;}
.y1df{bottom:279.174800pt;}
.y3a7{bottom:279.727067pt;}
.y16e{bottom:279.754267pt;}
.y309{bottom:280.333867pt;}
.yc2{bottom:281.808000pt;}
.yfc{bottom:283.928667pt;}
.y292{bottom:284.508133pt;}
.y2c7{bottom:284.508267pt;}
.y24f{bottom:284.600533pt;}
.y367{bottom:285.026800pt;}
.y4a{bottom:285.226933pt;}
.y2f0{bottom:287.974800pt;}
.y217{bottom:288.554400pt;}
.y135{bottom:290.595333pt;}
.y334{bottom:290.998000pt;}
.y1b1{bottom:291.395200pt;}
.y1de{bottom:291.974800pt;}
.y16d{bottom:292.554400pt;}
.y308{bottom:293.133867pt;}
.y16{bottom:294.285600pt;}
.y3a6{bottom:295.727067pt;}
.y278{bottom:295.754267pt;}
.y24e{bottom:297.667200pt;}
.y49{bottom:299.893600pt;}
.y291{bottom:299.974800pt;}
.yc1{bottom:301.587467pt;}
.y366{bottom:301.960133pt;}
.y134{bottom:303.128667pt;}
.yfb{bottom:303.174800pt;}
.y2ef{bottom:303.708133pt;}
.y2c6{bottom:303.754533pt;}
.y216{bottom:304.287733pt;}
.y333{bottom:306.998000pt;}
.y1dd{bottom:307.974800pt;}
.y277{bottom:308.554400pt;}
.y15{bottom:308.685600pt;}
.y1b0{bottom:311.174800pt;}
.y16c{bottom:312.333867pt;}
.y307{bottom:312.913467pt;}
.y24d{bottom:313.933867pt;}
.yc0{bottom:314.387467pt;}
.y48{bottom:314.560267pt;}
.yfa{bottom:315.441467pt;}
.y2c5{bottom:316.021200pt;}
.y365{bottom:318.893467pt;}
.y290{bottom:319.221067pt;}
.y3a5{bottom:319.286133pt;}
.y133{bottom:322.641467pt;}
.y332{bottom:322.998000pt;}
.y14{bottom:323.085600pt;}
.y2ee{bottom:323.221067pt;}
.y3e8{bottom:323.331733pt;}
.y215{bottom:323.800533pt;}
.y1af{bottom:323.974800pt;}
.y16b{bottom:325.133867pt;}
.y306{bottom:325.713333pt;}
.y1dc{bottom:327.754267pt;}
.y3d9{bottom:328.095867pt;}
.y276{bottom:328.333867pt;}
.y47{bottom:329.226933pt;}
.y28f{bottom:331.487733pt;}
.y24c{bottom:333.980000pt;}
.ybf{bottom:334.167067pt;}
.yf9{bottom:334.687600pt;}
.y132{bottom:335.174800pt;}
.y2c4{bottom:335.267333pt;}
.y3a4{bottom:335.286133pt;}
.y2ed{bottom:335.754400pt;}
.y364{bottom:335.826800pt;}
.y214{bottom:336.333867pt;}
.y13{bottom:337.485600pt;}
.y331{bottom:338.998000pt;}
.y1db{bottom:340.554400pt;}
.y3e7{bottom:340.931733pt;}
.y275{bottom:341.133867pt;}
.y1ae{bottom:343.754400pt;}
.y46{bottom:343.893600pt;}
.y16a{bottom:344.913467pt;}
.y305{bottom:345.492933pt;}
.yf8{bottom:346.954400pt;}
.ybe{bottom:346.967067pt;}
.y24b{bottom:347.046667pt;}
.y86{bottom:347.505067pt;}
.y2c3{bottom:347.534000pt;}
.y3a3{bottom:351.286133pt;}
.y12{bottom:351.885600pt;}
.y363{bottom:352.760133pt;}
.y17{bottom:353.950267pt;}
.y131{bottom:354.687600pt;}
.y3d8{bottom:354.854933pt;}
.y330{bottom:354.998000pt;}
.y2ec{bottom:355.267200pt;}
.y213{bottom:355.846667pt;}
.y1ad{bottom:356.554400pt;}
.y169{bottom:357.713333pt;}
.y304{bottom:358.292933pt;}
.y3e6{bottom:358.531733pt;}
.y45{bottom:358.560267pt;}
.y274{bottom:360.913467pt;}
.y85{bottom:362.171733pt;}
.ybd{bottom:362.967067pt;}
.y2c2{bottom:363.000667pt;}
.yf7{bottom:366.200533pt;}
.y11{bottom:366.285600pt;}
.y24a{bottom:367.092933pt;}
.y130{bottom:367.221067pt;}
.y2eb{bottom:367.800533pt;}
.y212{bottom:368.380000pt;}
.y362{bottom:369.693467pt;}
.y32f{bottom:370.998000pt;}
.y1ac{bottom:372.554400pt;}
.y44{bottom:373.226933pt;}
.y273{bottom:373.713333pt;}
.y303{bottom:374.292933pt;}
.y3e5{bottom:376.131733pt;}
.y1da{bottom:376.333867pt;}
.y84{bottom:376.838400pt;}
.y168{bottom:377.492933pt;}
.yf6{bottom:378.467200pt;}
.y249{bottom:380.159600pt;}
.y10{bottom:380.685600pt;}
.y3d7{bottom:381.614000pt;}
.y2c1{bottom:382.246933pt;}
.ybc{bottom:382.746533pt;}
.y3a2{bottom:385.912800pt;}
.y361{bottom:386.626800pt;}
.y12f{bottom:386.733867pt;}
.y2ea{bottom:387.313333pt;}
.y211{bottom:387.892933pt;}
.y43{bottom:387.893600pt;}
.y1d9{bottom:389.133867pt;}
.y272{bottom:389.713333pt;}
.y167{bottom:390.292933pt;}
.y83{bottom:391.505067pt;}
.y1ab{bottom:392.333867pt;}
.y39d{bottom:393.112800pt;}
.y3e4{bottom:393.731733pt;}
.y28e{bottom:393.933867pt;}
.y302{bottom:394.072533pt;}
.y2c0{bottom:394.513600pt;}
.y32e{bottom:394.557067pt;}
.yf{bottom:395.085600pt;}
.ybb{bottom:395.546533pt;}
.yf5{bottom:397.713333pt;}
.y12e{bottom:399.267200pt;}
.y2e9{bottom:399.846667pt;}
.y248{bottom:400.205733pt;}
.y3a0{bottom:400.312800pt;}
.y210{bottom:400.426267pt;}
.y42{bottom:402.560267pt;}
.y360{bottom:403.560133pt;}
.y1aa{bottom:405.133867pt;}
.y82{bottom:406.171733pt;}
.y301{bottom:406.872400pt;}
.y39c{bottom:407.512800pt;}
.y3d6{bottom:408.373067pt;}
.y1d8{bottom:408.913467pt;}
.ye{bottom:409.485600pt;}
.y271{bottom:409.492933pt;}
.yf4{bottom:409.980000pt;}
.y2bf{bottom:409.980267pt;}
.y166{bottom:410.072533pt;}
.yba{bottom:411.546533pt;}
.y28d{bottom:413.180000pt;}
.y247{bottom:413.272400pt;}
.y39f{bottom:414.712800pt;}
.y20f{bottom:416.159600pt;}
.y41{bottom:417.226933pt;}
.y12d{bottom:418.780133pt;}
.y2e8{bottom:419.359600pt;}
.y18{bottom:419.798933pt;}
.y35f{bottom:420.493467pt;}
.y81{bottom:420.838400pt;}
.y1a9{bottom:421.133867pt;}
.y1d7{bottom:421.713333pt;}
.y39b{bottom:421.912800pt;}
.y270{bottom:422.292933pt;}
.y165{bottom:422.872400pt;}
.yd{bottom:423.885600pt;}
.y28c{bottom:425.446800pt;}
.y39e{bottom:429.112800pt;}
.yf3{bottom:429.226267pt;}
.y2be{bottom:429.226400pt;}
.y246{bottom:429.539067pt;}
.y12c{bottom:431.313333pt;}
.yb9{bottom:431.326133pt;}
.y2e7{bottom:431.892933pt;}
.y40{bottom:431.893600pt;}
.y3d5{bottom:435.132133pt;}
.y80{bottom:435.505067pt;}
.y20e{bottom:435.672400pt;}
.y39a{bottom:436.312800pt;}
.y35e{bottom:437.426800pt;}
.y1d6{bottom:437.713333pt;}
.yc{bottom:438.285600pt;}
.y1a8{bottom:440.913467pt;}
.yf2{bottom:441.492933pt;}
.y2bd{bottom:441.493067pt;}
.y26f{bottom:442.072533pt;}
.y164{bottom:442.652000pt;}
.y3a1{bottom:443.512800pt;}
.yb8{bottom:444.126000pt;}
.y28b{bottom:444.692933pt;}
.y3f{bottom:446.560267pt;}
.y12b{bottom:447.046667pt;}
.y20d{bottom:448.205733pt;}
.y245{bottom:449.585333pt;}
.y7f{bottom:450.171733pt;}
.y2e6{bottom:451.405867pt;}
.yb{bottom:452.685600pt;}
.y1a7{bottom:453.713333pt;}
.y35d{bottom:454.360133pt;}
.y26e{bottom:454.872400pt;}
.y163{bottom:455.452000pt;}
.yf1{bottom:456.959600pt;}
.y2bc{bottom:456.959733pt;}
.y1d5{bottom:457.492933pt;}
.yb7{bottom:460.126000pt;}
.y3e{bottom:461.226933pt;}
.y32d{bottom:461.757067pt;}
.y3d4{bottom:461.891200pt;}
.y244{bottom:462.652000pt;}
.y2e5{bottom:463.939067pt;}
.y7e{bottom:464.838400pt;}
.y12a{bottom:466.559600pt;}
.ya{bottom:467.085600pt;}
.y20c{bottom:467.718667pt;}
.y399{bottom:468.169067pt;}
.y1d4{bottom:470.292933pt;}
.y35c{bottom:471.293467pt;}
.y1a6{bottom:473.492933pt;}
.y26d{bottom:474.652000pt;}
.y162{bottom:475.231467pt;}
.y395{bottom:475.369067pt;}
.y3d{bottom:475.893600pt;}
.y32c{bottom:476.157067pt;}
.yf0{bottom:476.205733pt;}
.y2bb{bottom:476.205867pt;}
.y129{bottom:479.092933pt;}
.y7d{bottom:479.505067pt;}
.yb6{bottom:479.905600pt;}
.y20b{bottom:480.252000pt;}
.y9{bottom:481.485600pt;}
.y398{bottom:482.569067pt;}
.y243{bottom:482.698133pt;}
.y2e4{bottom:483.452000pt;}
.y1a5{bottom:486.292933pt;}
.y26c{bottom:487.452000pt;}
.y161{bottom:488.031467pt;}
.y35b{bottom:488.226800pt;}
.yef{bottom:488.472400pt;}
.y2ba{bottom:488.472667pt;}
.y3d3{bottom:488.650267pt;}
.y394{bottom:489.769067pt;}
.y1d3{bottom:490.072533pt;}
.y3c{bottom:490.560267pt;}
.yb5{bottom:492.705600pt;}
.y7c{bottom:494.171733pt;}
.y242{bottom:495.764800pt;}
.y8{bottom:495.885600pt;}
.y20a{bottom:495.985333pt;}
.y397{bottom:496.969067pt;}
.y32b{bottom:498.116133pt;}
.y128{bottom:498.605733pt;}
.y1d2{bottom:502.872400pt;}
.y160{bottom:504.031467pt;}
.y393{bottom:504.169067pt;}
.y35a{bottom:505.160133pt;}
.y3b{bottom:505.226933pt;}
.y1a4{bottom:506.072533pt;}
.y26b{bottom:507.231467pt;}
.yee{bottom:507.718667pt;}
.y2b9{bottom:507.718800pt;}
.yb4{bottom:508.705600pt;}
.y3e2{bottom:508.733600pt;}
.y7b{bottom:508.838400pt;}
.y7{bottom:510.285600pt;}
.y127{bottom:511.139067pt;}
.y396{bottom:511.369067pt;}
.y2e3{bottom:511.718667pt;}
.y241{bottom:512.031467pt;}
.y32a{bottom:512.516133pt;}
.y3d2{bottom:515.409200pt;}
.y209{bottom:515.498133pt;}
.y1a3{bottom:518.872400pt;}
.y3a{bottom:519.893600pt;}
.yed{bottom:519.985333pt;}
.y2b8{bottom:519.985467pt;}
.y26a{bottom:520.031467pt;}
.y3c7{bottom:520.749600pt;}
.y359{bottom:522.093467pt;}
.y1d1{bottom:522.652000pt;}
.y7a{bottom:523.505067pt;}
.y15f{bottom:523.811067pt;}
.y6{bottom:524.685733pt;}
.y3e1{bottom:526.333600pt;}
.y329{bottom:526.916133pt;}
.y208{bottom:528.031467pt;}
.yb3{bottom:528.485200pt;}
.y126{bottom:530.652000pt;}
.y2e2{bottom:531.231467pt;}
.y240{bottom:532.077733pt;}
.y39{bottom:534.560267pt;}
.y3c6{bottom:535.149600pt;}
.yec{bottom:535.452000pt;}
.y392{bottom:536.025333pt;}
.y15e{bottom:536.611067pt;}
.y79{bottom:538.171733pt;}
.y1a2{bottom:538.652000pt;}
.y358{bottom:539.026800pt;}
.y5{bottom:539.085600pt;}
.y2b7{bottom:539.231733pt;}
.y269{bottom:539.811067pt;}
.yb2{bottom:541.285067pt;}
.y328{bottom:541.316133pt;}
.y3d1{bottom:542.168400pt;}
.y125{bottom:543.185333pt;}
.y38d{bottom:543.225333pt;}
.y207{bottom:543.764800pt;}
.y3e0{bottom:543.933600pt;}
.y23f{bottom:545.144400pt;}
.y38{bottom:549.226933pt;}
.y3c5{bottom:549.549600pt;}
.y391{bottom:550.425333pt;}
.y1a1{bottom:551.452000pt;}
.y2b6{bottom:551.498267pt;}
.y15d{bottom:552.611067pt;}
.y78{bottom:552.838400pt;}
.yeb{bottom:554.698133pt;}
.y1d0{bottom:555.231467pt;}
.y357{bottom:555.960133pt;}
.yb1{bottom:557.285067pt;}
.y38b{bottom:557.625333pt;}
.y183{bottom:558.918667pt;}
.y2e1{bottom:559.498133pt;}
.y327{bottom:560.719067pt;}
.y3df{bottom:561.533600pt;}
.y124{bottom:562.698133pt;}
.y206{bottom:563.277733pt;}
.y37{bottom:563.893600pt;}
.y3c4{bottom:563.949600pt;}
.y390{bottom:564.825333pt;}
.y23e{bottom:565.190533pt;}
.yea{bottom:566.964800pt;}
.y77{bottom:567.505067pt;}
.y1cf{bottom:568.031467pt;}
.y268{bottom:568.611067pt;}
.y3d0{bottom:568.927467pt;}
.y2b5{bottom:570.744533pt;}
.y1a0{bottom:571.231467pt;}
.y38a{bottom:572.025333pt;}
.y15c{bottom:572.390533pt;}
.y356{bottom:572.893467pt;}
.y326{bottom:575.119067pt;}
.y123{bottom:575.231467pt;}
.y205{bottom:575.811067pt;}
.yb0{bottom:577.064667pt;}
.y23d{bottom:578.257200pt;}
.y3c3{bottom:578.349600pt;}
.y182{bottom:578.431467pt;}
.y36{bottom:578.560267pt;}
.y2e0{bottom:579.011067pt;}
.y38f{bottom:579.225333pt;}
.y76{bottom:582.171733pt;}
.y2b4{bottom:583.011200pt;}
.y19f{bottom:584.031467pt;}
.y15b{bottom:585.190533pt;}
.ye9{bottom:586.211067pt;}
.y38c{bottom:586.425333pt;}
.y1ce{bottom:587.811067pt;}
.y267{bottom:588.390533pt;}
.y355{bottom:589.826800pt;}
.yaf{bottom:589.864667pt;}
.y181{bottom:590.964800pt;}
.y204{bottom:591.544400pt;}
.y3c2{bottom:592.749600pt;}
.y35{bottom:593.226933pt;}
.y38e{bottom:593.625333pt;}
.y23c{bottom:594.523867pt;}
.y122{bottom:594.744400pt;}
.y3cf{bottom:595.686400pt;}
.y75{bottom:596.838400pt;}
.y325{bottom:597.078133pt;}
.ye8{bottom:598.477733pt;}
.y1cd{bottom:600.611067pt;}
.y266{bottom:601.190533pt;}
.y2b3{bottom:602.257467pt;}
.y19e{bottom:603.811067pt;}
.y15a{bottom:604.970133pt;}
.y354{bottom:606.760133pt;}
.y3c1{bottom:607.149600pt;}
.y121{bottom:607.277733pt;}
.y34{bottom:607.893600pt;}
.yae{bottom:609.644267pt;}
.y180{bottom:610.477733pt;}
.y203{bottom:611.057200pt;}
.y324{bottom:611.478133pt;}
.y74{bottom:611.505067pt;}
.y2b2{bottom:614.524000pt;}
.y23b{bottom:614.570133pt;}
.y19d{bottom:616.611067pt;}
.ye7{bottom:617.723867pt;}
.y159{bottom:617.770133pt;}
.y389{bottom:618.281600pt;}
.y265{bottom:620.970133pt;}
.yad{bottom:622.444133pt;}
.y3ce{bottom:622.445467pt;}
.y33{bottom:622.560267pt;}
.y120{bottom:623.011067pt;}
.y202{bottom:623.590533pt;}
.y353{bottom:623.693467pt;}
.y323{bottom:625.878133pt;}
.y73{bottom:626.171733pt;}
.y23a{bottom:627.636800pt;}
.ye6{bottom:629.990533pt;}
.y2b1{bottom:629.990667pt;}
.y385{bottom:632.681600pt;}
.y264{bottom:633.770133pt;}
.y19c{bottom:636.390533pt;}
.y32{bottom:637.226933pt;}
.y158{bottom:637.549600pt;}
.y387{bottom:639.881600pt;}
.y322{bottom:640.278133pt;}
.y352{bottom:640.626800pt;}
.y72{bottom:640.838400pt;}
.yac{bottom:642.223733pt;}
.y11f{bottom:642.523867pt;}
.y201{bottom:643.103467pt;}
.y384{bottom:647.081600pt;}
.y239{bottom:647.682933pt;}
.y19b{bottom:649.190533pt;}
.y3cd{bottom:649.204533pt;}
.ye5{bottom:649.236800pt;}
.y2b0{bottom:649.236933pt;}
.y157{bottom:650.349600pt;}
.y31{bottom:651.893600pt;}
.y263{bottom:653.549600pt;}
.y386{bottom:654.281600pt;}
.yab{bottom:655.023733pt;}
.y11e{bottom:655.057200pt;}
.y71{bottom:655.505067pt;}
.y200{bottom:655.636800pt;}
.y351{bottom:657.560133pt;}
.y321{bottom:659.681067pt;}
.y238{bottom:660.749600pt;}
.y383{bottom:661.481600pt;}
.ye4{bottom:661.503467pt;}
.y2af{bottom:661.503600pt;}
.y19a{bottom:665.190533pt;}
.y156{bottom:666.349600pt;}
.y30{bottom:666.560267pt;}
.y1cc{bottom:668.970133pt;}
.y3c0{bottom:669.549600pt;}
.y70{bottom:670.171733pt;}
.y2df{bottom:671.370133pt;}
.y350{bottom:674.493467pt;}
.y11d{bottom:674.570133pt;}
.yaa{bottom:674.803200pt;}
.y1ff{bottom:675.149600pt;}
.y388{bottom:675.881600pt;}
.y3cc{bottom:675.963600pt;}
.y3da{bottom:676.535467pt;}
.y28a{bottom:676.970133pt;}
.ye3{bottom:680.749600pt;}
.y2ae{bottom:680.749733pt;}
.y237{bottom:680.795867pt;}
.y2f{bottom:681.226933pt;}
.y320{bottom:681.640133pt;}
.y1cb{bottom:681.770133pt;}
.y6f{bottom:684.838400pt;}
.y199{bottom:684.970000pt;}
.y3bf{bottom:685.549600pt;}
.y155{bottom:686.129200pt;}
.y11c{bottom:687.103467pt;}
.ya9{bottom:687.603200pt;}
.y1fe{bottom:687.682933pt;}
.y2de{bottom:690.882933pt;}
.y34f{bottom:691.426800pt;}
.ye2{bottom:693.016267pt;}
.y2ad{bottom:693.016400pt;}
.y236{bottom:693.862533pt;}
.y2e{bottom:695.893600pt;}
.y31f{bottom:696.040267pt;}
.y289{bottom:696.216267pt;}
.y198{bottom:697.770133pt;}
.y154{bottom:698.929067pt;}
.y6e{bottom:699.505067pt;}
.y382{bottom:700.537867pt;}
.y1ca{bottom:701.549600pt;}
.y3cb{bottom:702.722667pt;}
.y17f{bottom:702.836800pt;}
.y2dd{bottom:703.416267pt;}
.y11b{bottom:706.616267pt;}
.y1fd{bottom:707.195867pt;}
.ya8{bottom:707.382800pt;}
.y34e{bottom:708.360133pt;}
.y288{bottom:708.482933pt;}
.y235{bottom:710.129200pt;}
.y31e{bottom:710.440133pt;}
.y2d{bottom:710.560267pt;}
.ye1{bottom:712.262400pt;}
.y2ac{bottom:712.262667pt;}
.y6d{bottom:714.171733pt;}
.y1c9{bottom:714.349600pt;}
.y153{bottom:714.929067pt;}
.y381{bottom:714.937867pt;}
.y3de{bottom:716.515333pt;}
.y197{bottom:717.549600pt;}
.y262{bottom:718.708667pt;}
.y11a{bottom:719.149600pt;}
.y1fc{bottom:719.729200pt;}
.ya7{bottom:720.182800pt;}
.y17e{bottom:722.349600pt;}
.y2dc{bottom:722.929067pt;}
.ye0{bottom:724.529200pt;}
.y2ab{bottom:724.529333pt;}
.y31d{bottom:724.840133pt;}
.y2c{bottom:725.226933pt;}
.y34d{bottom:725.293467pt;}
.y287{bottom:727.729200pt;}
.y6c{bottom:728.838400pt;}
.y3ca{bottom:729.481733pt;}
.y234{bottom:730.175333pt;}
.y196{bottom:730.349600pt;}
.y261{bottom:731.508667pt;}
.y3be{bottom:733.549600pt;}
.y1c8{bottom:734.129200pt;}
.y152{bottom:734.708667pt;}
.y17d{bottom:734.882933pt;}
.y2db{bottom:735.462533pt;}
.y119{bottom:738.662400pt;}
.y1fb{bottom:739.242000pt;}
.y2b{bottom:739.893600pt;}
.ya6{bottom:739.962267pt;}
.y286{bottom:739.995733pt;}
.y34c{bottom:742.226800pt;}
.y233{bottom:743.242000pt;}
.y3dd{bottom:743.274267pt;}
.y6b{bottom:743.505067pt;}
.ydf{bottom:743.775333pt;}
.y2aa{bottom:743.775600pt;}
.y1c7{bottom:746.929067pt;}
.y151{bottom:747.508667pt;}
.y3bd{bottom:749.549600pt;}
.y195{bottom:750.129200pt;}
.y118{bottom:751.195867pt;}
.y1fa{bottom:751.775333pt;}
.ya5{bottom:752.762267pt;}
.y380{bottom:752.967467pt;}
.y17c{bottom:754.395867pt;}
.y2a{bottom:754.560267pt;}
.y2da{bottom:754.975333pt;}
.yde{bottom:756.042000pt;}
.y2a9{bottom:756.042133pt;}
.y3c9{bottom:756.240800pt;}
.y6a{bottom:758.171733pt;}
.y34b{bottom:759.160133pt;}
.y285{bottom:759.242000pt;}
.y31c{bottom:760.243200pt;}
.y194{bottom:762.929067pt;}
.y232{bottom:763.288267pt;}
.y300{bottom:763.508667pt;}
.y3bc{bottom:765.549600pt;}
.y1c6{bottom:766.708667pt;}
.y117{bottom:766.929067pt;}
.y150{bottom:767.288267pt;}
.y1f9{bottom:767.508667pt;}
.y37f{bottom:768.967467pt;}
.y29{bottom:769.226933pt;}
.y3dc{bottom:770.033467pt;}
.ydd{bottom:771.508667pt;}
.y2a8{bottom:771.508800pt;}
.ya4{bottom:772.541867pt;}
.y69{bottom:772.838400pt;}
.y34a{bottom:776.093467pt;}
.y31b{bottom:776.243200pt;}
.y231{bottom:776.354933pt;}
.y1c5{bottom:779.508667pt;}
.y14f{bottom:780.088267pt;}
.y193{bottom:782.708667pt;}
.y3c8{bottom:782.999867pt;}
.y2d9{bottom:783.242000pt;}
.y2ff{bottom:783.288267pt;}
.y28{bottom:783.893600pt;}
.y37e{bottom:784.967467pt;}
.ya3{bottom:785.341733pt;}
.y116{bottom:786.442000pt;}
.y1f8{bottom:787.021600pt;}
.y68{bottom:787.505067pt;}
.y3bb{bottom:789.108667pt;}
.ydc{bottom:790.754933pt;}
.y31a{bottom:792.243200pt;}
.y349{bottom:793.026800pt;}
.y192{bottom:795.508667pt;}
.y14e{bottom:796.088267pt;}
.y230{bottom:796.401067pt;}
.y3db{bottom:796.792533pt;}
.y27{bottom:798.560267pt;}
.y115{bottom:798.975333pt;}
.y1f7{bottom:799.554800pt;}
.y67{bottom:802.171733pt;}
.y2d8{bottom:802.754933pt;}
.ydb{bottom:803.021600pt;}
.ya2{bottom:805.121333pt;}
.y37d{bottom:808.526667pt;}
.y22f{bottom:809.467733pt;}
.y2fe{bottom:812.088267pt;}
.y26{bottom:813.226933pt;}
.y191{bottom:815.288267pt;}
.y14d{bottom:815.867733pt;}
.y66{bottom:816.838400pt;}
.y348{bottom:817.519200pt;}
.ya1{bottom:817.921333pt;}
.y114{bottom:818.488133pt;}
.y2a7{bottom:818.488267pt;}
.y1f6{bottom:819.067733pt;}
.yda{bottom:822.267733pt;}
.y3ba{bottom:824.308800pt;}
.y37c{bottom:824.526667pt;}
.y22e{bottom:825.734400pt;}
.y319{bottom:825.843200pt;}
.y190{bottom:828.088267pt;}
.y14c{bottom:828.667733pt;}
.y113{bottom:831.021600pt;}
.y65{bottom:831.505067pt;}
.y1f5{bottom:831.601067pt;}
.y2fd{bottom:831.867733pt;}
.ya0{bottom:833.921333pt;}
.yd9{bottom:834.534400pt;}
.y2d7{bottom:834.801067pt;}
.y25{bottom:835.452667pt;}
.y2a6{bottom:837.734400pt;}
.y3b9{bottom:840.308800pt;}
.y318{bottom:841.843200pt;}
.y18f{bottom:844.088267pt;}
.y2fc{bottom:844.667733pt;}
.y22d{bottom:845.780533pt;}
.y64{bottom:846.171733pt;}
.y2d6{bottom:847.334400pt;}
.y1c4{bottom:847.867733pt;}
.y37b{bottom:848.085600pt;}
.y14b{bottom:848.447200pt;}
.yd8{bottom:850.001067pt;}
.y2a5{bottom:850.001200pt;}
.y24{bottom:850.119333pt;}
.y112{bottom:850.534400pt;}
.y1f4{bottom:851.113867pt;}
.y9f{bottom:853.700800pt;}
.y347{bottom:854.585867pt;}
.y3b8{bottom:856.308800pt;}
.y317{bottom:857.843200pt;}
.y22c{bottom:858.847200pt;}
.y1c3{bottom:860.667733pt;}
.y63{bottom:860.838400pt;}
.y14a{bottom:861.247200pt;}
.y111{bottom:863.067733pt;}
.y1f3{bottom:863.647333pt;}
.y18e{bottom:863.867733pt;}
.y37a{bottom:864.085600pt;}
.y9e{bottom:866.500933pt;}
.yd7{bottom:869.247200pt;}
.y2a4{bottom:869.247333pt;}
.y346{bottom:871.519200pt;}
.y23{bottom:872.345067pt;}
.y22b{bottom:875.113867pt;}
.y62{bottom:875.505067pt;}
.y18d{bottom:876.667733pt;}
.y149{bottom:877.247200pt;}
.y3b7{bottom:879.867867pt;}
.y1c2{bottom:880.447200pt;}
.y260{bottom:881.026800pt;}
.yd6{bottom:881.513867pt;}
.y2a3{bottom:881.514000pt;}
.y9d{bottom:882.500933pt;}
.y110{bottom:882.580533pt;}
.y1f2{bottom:883.160133pt;}
.y22{bottom:887.011733pt;}
.y379{bottom:887.644667pt;}
.y345{bottom:888.452533pt;}
.y61{bottom:890.171733pt;}
.y1c1{bottom:893.247200pt;}
.y25f{bottom:893.826800pt;}
.y10f{bottom:895.113867pt;}
.y22a{bottom:895.160133pt;}
.y1f1{bottom:895.693467pt;}
.y3b6{bottom:895.867867pt;}
.y18c{bottom:896.447200pt;}
.yd5{bottom:896.980667pt;}
.y148{bottom:897.026800pt;}
.y284{bottom:900.760133pt;}
.y9c{bottom:902.280400pt;}
.y378{bottom:903.644667pt;}
.y60{bottom:904.838400pt;}
.y344{bottom:905.385867pt;}
.y229{bottom:908.226800pt;}
.y18b{bottom:909.247200pt;}
.y147{bottom:909.826800pt;}
.y2d5{bottom:910.847200pt;}
.y1f0{bottom:911.426800pt;}
.y1c0{bottom:913.026800pt;}
.y10e{bottom:914.626800pt;}
.y316{bottom:915.002267pt;}
.y9b{bottom:915.080400pt;}
.yd4{bottom:916.226800pt;}
.y3b5{bottom:919.426800pt;}
.y5f{bottom:919.505067pt;}
.y1d{bottom:920.123333pt;}
.y1e{bottom:920.123467pt;}
.y343{bottom:922.319200pt;}
.y228{bottom:924.493467pt;}
.y1bf{bottom:925.826800pt;}
.y10d{bottom:927.160133pt;}
.y377{bottom:927.203733pt;}
.yd3{bottom:928.493467pt;}
.y18a{bottom:929.026800pt;}
.y146{bottom:929.606267pt;}
.y25e{bottom:929.606400pt;}
.y2d4{bottom:930.360133pt;}
.y1ef{bottom:930.939733pt;}
.y9a{bottom:931.080400pt;}
.y2a2{bottom:932.273067pt;}
.y5e{bottom:934.171733pt;}
.y3b4{bottom:935.426800pt;}
.y342{bottom:939.252533pt;}
.y189{bottom:941.826800pt;}
.y145{bottom:942.406267pt;}
.y25d{bottom:942.406400pt;}
.y17b{bottom:942.893467pt;}
.y376{bottom:943.203733pt;}
.y1ee{bottom:943.473067pt;}
.y227{bottom:944.539600pt;}
.y2a1{bottom:944.539733pt;}
.y1be{bottom:945.606267pt;}
.y2fb{bottom:945.606400pt;}
.y10c{bottom:946.673067pt;}
.yd2{bottom:947.739600pt;}
.y3b3{bottom:951.426800pt;}
.y315{bottom:953.402267pt;}
.y341{bottom:956.185867pt;}
.y5d{bottom:956.397467pt;}
.y226{bottom:957.606267pt;}
.y144{bottom:958.406267pt;}
.y25c{bottom:958.406400pt;}
.y10b{bottom:959.206267pt;}
.y1ed{bottom:959.206400pt;}
.yd1{bottom:960.006400pt;}
.y188{bottom:961.606400pt;}
.y17a{bottom:962.406267pt;}
.y375{bottom:966.762800pt;}
.y99{bottom:966.911733pt;}
.y5c{bottom:971.064133pt;}
.y340{bottom:973.119200pt;}
.y312{bottom:974.406267pt;}
.y187{bottom:974.406400pt;}
.y10a{bottom:974.939600pt;}
.y3b2{bottom:974.985867pt;}
.y283{bottom:975.472933pt;}
.y225{bottom:977.652533pt;}
.y143{bottom:978.185867pt;}
.y25b{bottom:978.186000pt;}
.y1ec{bottom:978.719200pt;}
.yd0{bottom:979.252533pt;}
.y2a0{bottom:979.252667pt;}
.y1c{bottom:980.668800pt;}
.y374{bottom:982.762800pt;}
.y33f{bottom:990.052533pt;}
.y224{bottom:990.719200pt;}
.y142{bottom:990.985867pt;}
.y1eb{bottom:991.252667pt;}
.ycf{bottom:991.519200pt;}
.y29f{bottom:991.519333pt;}
.y314{bottom:991.802267pt;}
.y5b{bottom:993.289867pt;}
.y311{bottom:994.185867pt;}
.y186{bottom:994.186000pt;}
.y109{bottom:994.452533pt;}
.y282{bottom:994.719200pt;}
.y373{bottom:1006.321867pt;}
.yce{bottom:1006.985867pt;}
.y5a{bottom:1007.956533pt;}
.y4{bottom:1026.897600pt;}
.y1b{bottom:1026.897733pt;}
.y1a{bottom:1037.564400pt;}
.y95{bottom:1038.555200pt;}
.y19{bottom:1048.231067pt;}
.y98{bottom:1053.362533pt;}
.y94{bottom:1066.538400pt;}
.h8{height:31.062500pt;}
.he{height:31.083333pt;}
.h16{height:31.250000pt;}
.hf{height:31.270833pt;}
.h5{height:34.944000pt;}
.hc{height:34.945312pt;}
.hb{height:34.968750pt;}
.hd{height:35.156250pt;}
.h1a{height:35.179688pt;}
.h1c{height:37.864583pt;}
.h14{height:38.854167pt;}
.h1e{height:39.062500pt;}
.h15{height:39.088542pt;}
.h19{height:42.739583pt;}
.h22{height:42.968750pt;}
.h21{height:42.997396pt;}
.h3{height:45.406250pt;}
.h12{height:46.592000pt;}
.ha{height:46.593750pt;}
.h20{height:46.625000pt;}
.h4{height:54.395833pt;}
.h1d{height:63.745313pt;}
.h10{height:67.905899pt;}
.h17{height:75.677083pt;}
.h1b{height:75.677617pt;}
.h1f{height:75.687500pt;}
.h18{height:90.812500pt;}
.h11{height:113.515625pt;}
.h9{height:146.923601pt;}
.h13{height:181.625000pt;}
.h6{height:186.368000pt;}
.h7{height:187.625000pt;}
.h2{height:201.541461pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1f{left:-593.540133pt;}
.x0{left:0.000000pt;}
.x18{left:60.472400pt;}
.x23{left:62.740133pt;}
.x1b{left:64.251867pt;}
.x19{left:68.409467pt;}
.x33{left:78.325467pt;}
.xd{left:87.140000pt;}
.xc{left:92.976400pt;}
.x32{left:94.531867pt;}
.x24{left:98.267733pt;}
.x29{left:103.483467pt;}
.x2{left:113.007733pt;}
.x6{left:114.054933pt;}
.x5{left:117.663333pt;}
.x1e{left:124.724400pt;}
.x2a{left:138.493200pt;}
.x2e{left:153.196800pt;}
.x31{left:158.740133pt;}
.x3a{left:165.419600pt;}
.x38{left:176.154533pt;}
.x39{left:188.794533pt;}
.x1d{left:190.753733pt;}
.x37{left:196.117200pt;}
.xa{left:200.262800pt;}
.x2d{left:224.457067pt;}
.x2b{left:234.062400pt;}
.x35{left:238.849867pt;}
.x1{left:260.031467pt;}
.x34{left:266.238533pt;}
.x3b{left:278.842667pt;}
.x4{left:303.622000pt;}
.x36{left:332.612933pt;}
.x30{left:338.550133pt;}
.x3{left:354.850800pt;}
.x9{left:458.546133pt;}
.x7{left:462.499200pt;}
.x8{left:473.559067pt;}
.x2c{left:493.837200pt;}
.x20{left:497.536000pt;}
.x12{left:502.677200pt;}
.x11{left:503.676267pt;}
.x14{left:508.973067pt;}
.xe{left:512.688000pt;}
.x13{left:515.699600pt;}
.x15{left:520.691867pt;}
.x17{left:522.323733pt;}
.x26{left:532.102933pt;}
.x1c{left:534.748533pt;}
.x16{left:539.688000pt;}
.x10{left:551.351067pt;}
.xf{left:583.047333pt;}
.xb{left:601.595600pt;}
.x27{left:676.052000pt;}
.x2f{left:683.732000pt;}
.x25{left:691.411867pt;}
.x22{left:699.091733pt;}
.x28{left:750.191067pt;}
.x21{left:760.562133pt;}
.x1a{left:1291.236800pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  