
    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_81cb888b0b55aa251505f19b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909000;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_9363f522a031704e19f89bbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ea736d4d9c0e9aa61c552e7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.792000;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_464b20b8ad740fea917cdf6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_7345748195e46665de539a5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.664000;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_a554671e4fbcf1ee19cf9eb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_be5d9fe133202ded6de2bcdc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_49a3dd8d7900355129afea1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.849000;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_99c8891d5014f13e116d8366.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_351301bff5f77c4fc5b9191c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_005a898c7dae2a0d6d606d77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_60d26d5436e31d814b5ef269.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_1e121a52e9cc91516e5abe58.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_3e1e6a91f0a8a05ff694cb7a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_55b1e52119eaba442a6b6df9.woff2')format("woff");}.fff{font-family:fff;line-height:0.897000;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_1e3255413612ad94083b9e0b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a6a1614f36d46d63e15861d5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.703450;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_ae9b652770cc417f364727e4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.523000;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_806b8c3de812810a5ad604a7.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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_7c0e7c3c306ecee96af68605.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_5c53751e9db020d2ea446af6.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_c6dbc4de13cb62afc24253c1.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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_44b3d61f221dffa643a66d5f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_c501710d58e1747a171ba50b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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_a4be013bbd7416d82f93363b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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_15d7d441527afbc90c3a1a39.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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_b55c87f3dbd5a200c00f5922.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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_2fb04999389de952d9c5e5b9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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_a4be013bbd7416d82f93363b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;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_33649291fe1e9885da92c3a7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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_2afedc79b6ddf7b7da15b60c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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_6e5623901645b151b8c144a3.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;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_72c93f1ecf4e831d886c5ec6.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.923000;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-48.664800px;}
.v3{vertical-align:-8.964000px;}
.v4{vertical-align:-7.296000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.034000px;}
.v7{vertical-align:15.774000px;}
.v2{vertical-align:16.878000px;}
.v1{vertical-align:21.690000px;}
.v8{vertical-align:24.678000px;}
.va{vertical-align:37.248000px;}
.v5{vertical-align:40.434000px;}
.v9{vertical-align:56.784000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000062px;}
.ls6{letter-spacing:0.000538px;}
.ls2e{letter-spacing:0.000564px;}
.lsc{letter-spacing:0.000993px;}
.ls8{letter-spacing:0.001329px;}
.ls7{letter-spacing:0.002338px;}
.ls10{letter-spacing:0.002469px;}
.ls24{letter-spacing:0.002481px;}
.ls3a{letter-spacing:0.002915px;}
.ls14{letter-spacing:0.003031px;}
.ls5{letter-spacing:0.003333px;}
.lsb{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.221549px;}
.ls2a{letter-spacing:1.006868px;}
.ls32{letter-spacing:1.659333px;}
.ls23{letter-spacing:1.665333px;}
.lsf{letter-spacing:2.138023px;}
.lsa{letter-spacing:2.984525px;}
.ls39{letter-spacing:2.986982px;}
.ls9{letter-spacing:2.987251px;}
.lse{letter-spacing:2.989409px;}
.ls17{letter-spacing:3.002207px;}
.ls12{letter-spacing:3.156921px;}
.ls1f{letter-spacing:4.893269px;}
.ls1e{letter-spacing:4.899269px;}
.ls30{letter-spacing:8.303139px;}
.ls3{letter-spacing:11.289056px;}
.ls2{letter-spacing:11.292499px;}
.ls11{letter-spacing:12.168921px;}
.ls2d{letter-spacing:13.255140px;}
.ls26{letter-spacing:13.278538px;}
.ls20{letter-spacing:13.281269px;}
.ls21{letter-spacing:13.284538px;}
.ls1c{letter-spacing:13.286338px;}
.ls31{letter-spacing:15.846538px;}
.ls1d{letter-spacing:16.602538px;}
.ls16{letter-spacing:16.902300px;}
.ls2c{letter-spacing:17.278868px;}
.ls19{letter-spacing:17.540023px;}
.ls4{letter-spacing:18.654621px;}
.ls1a{letter-spacing:18.753415px;}
.ls36{letter-spacing:19.060200px;}
.lsd{letter-spacing:19.595251px;}
.ls2b{letter-spacing:19.596775px;}
.ls38{letter-spacing:20.002200px;}
.ls3c{letter-spacing:20.526921px;}
.ls37{letter-spacing:20.638200px;}
.ls29{letter-spacing:21.498538px;}
.ls34{letter-spacing:21.789333px;}
.ls33{letter-spacing:22.497333px;}
.ls18{letter-spacing:22.536300px;}
.ls35{letter-spacing:24.060921px;}
.ls13{letter-spacing:24.606921px;}
.ls3b{letter-spacing:29.688921px;}
.ls15{letter-spacing:29.890200px;}
.ls28{letter-spacing:54.898868px;}
.ls25{letter-spacing:61.576868px;}
.ls1b{letter-spacing:96.636538px;}
.ls2f{letter-spacing:595.172525px;}
.ls22{letter-spacing:757.066200px;}
.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;}
}
.ws11a{word-spacing:-59.775600px;}
.ws11f{word-spacing:-50.809387px;}
.ws9a{word-spacing:-38.937826px;}
.wsc2{word-spacing:-28.955301px;}
.wsdb{word-spacing:-25.173596px;}
.wsd3{word-spacing:-23.984895px;}
.wsb8{word-spacing:-22.379985px;}
.wsdc{word-spacing:-22.335596px;}
.wsd8{word-spacing:-18.087596px;}
.ws26{word-spacing:-16.605662px;}
.ws12{word-spacing:-14.111859px;}
.wsa7{word-spacing:-12.397459px;}
.wsdd{word-spacing:-3.335478px;}
.ws115{word-spacing:-3.215927px;}
.wsea{word-spacing:-3.096376px;}
.ws24{word-spacing:-2.976825px;}
.ws61{word-spacing:-2.857274px;}
.ws97{word-spacing:-2.797498px;}
.wsf6{word-spacing:-2.319293px;}
.ws87{word-spacing:-2.259518px;}
.ws8a{word-spacing:-2.199742px;}
.ws4a{word-spacing:-1.960640px;}
.ws47{word-spacing:-1.900864px;}
.wsda{word-spacing:-1.841088px;}
.ws8c{word-spacing:-1.781313px;}
.ws86{word-spacing:-1.721537px;}
.ws88{word-spacing:-1.661762px;}
.ws150{word-spacing:-1.601986px;}
.ws65{word-spacing:-1.542210px;}
.ws31{word-spacing:-1.422659px;}
.wscf{word-spacing:-1.362884px;}
.ws2b{word-spacing:-1.303108px;}
.ws52{word-spacing:-1.243332px;}
.ws62{word-spacing:-1.183557px;}
.ws41{word-spacing:-1.064006px;}
.ws79{word-spacing:-1.004230px;}
.ws55{word-spacing:-0.884679px;}
.ws11b{word-spacing:-0.765128px;}
.wsad{word-spacing:-0.645576px;}
.ws5d{word-spacing:-0.585801px;}
.ws53{word-spacing:-0.526025px;}
.ws1e{word-spacing:-0.466250px;}
.wsae{word-spacing:-0.406474px;}
.ws42{word-spacing:-0.346698px;}
.ws90{word-spacing:-0.286923px;}
.ws39{word-spacing:-0.227147px;}
.wsbf{word-spacing:-0.167372px;}
.ws36{word-spacing:-0.107596px;}
.ws12a{word-spacing:-0.059776px;}
.ws49{word-spacing:-0.047820px;}
.ws8e{word-spacing:-0.041843px;}
.wsa8{word-spacing:-0.016340px;}
.ws17{word-spacing:0.000000px;}
.ws6b{word-spacing:0.011955px;}
.ws114{word-spacing:0.071731px;}
.ws3f{word-spacing:0.131506px;}
.ws7d{word-spacing:0.191282px;}
.ws113{word-spacing:0.234321px;}
.ws40{word-spacing:0.251058px;}
.ws60{word-spacing:0.310833px;}
.wsb0{word-spacing:0.370609px;}
.ws54{word-spacing:0.430384px;}
.wsb1{word-spacing:0.490160px;}
.ws2d{word-spacing:0.549936px;}
.ws19{word-spacing:0.609711px;}
.wsb9{word-spacing:0.789038px;}
.ws58{word-spacing:0.848814px;}
.ws92{word-spacing:0.855989px;}
.wsbc{word-spacing:0.908589px;}
.wsc0{word-spacing:0.968365px;}
.ws106{word-spacing:0.999451px;}
.ws38{word-spacing:1.028140px;}
.wsd9{word-spacing:1.087916px;}
.ws11e{word-spacing:1.095092px;}
.ws5a{word-spacing:1.147692px;}
.ws68{word-spacing:1.207467px;}
.wsf7{word-spacing:1.267243px;}
.ws56{word-spacing:1.327018px;}
.wsc9{word-spacing:1.386794px;}
.ws4f{word-spacing:1.446570px;}
.wsf5{word-spacing:1.506345px;}
.wsee{word-spacing:1.566121px;}
.wsa{word-spacing:1.685672px;}
.wsef{word-spacing:1.690638px;}
.ws125{word-spacing:1.745448px;}
.wsaf{word-spacing:1.805223px;}
.ws77{word-spacing:1.864999px;}
.wsbe{word-spacing:1.924774px;}
.wsf8{word-spacing:1.984550px;}
.wsd6{word-spacing:2.044326px;}
.ws98{word-spacing:2.104101px;}
.ws46{word-spacing:2.163877px;}
.ws124{word-spacing:2.223652px;}
.ws11c{word-spacing:2.283428px;}
.ws25{word-spacing:2.343204px;}
.ws3b{word-spacing:2.402979px;}
.ws119{word-spacing:2.457017px;}
.ws7c{word-spacing:2.462755px;}
.ws95{word-spacing:2.529710px;}
.ws8b{word-spacing:2.582306px;}
.ws8d{word-spacing:2.642082px;}
.wsbb{word-spacing:2.701857px;}
.ws85{word-spacing:2.761633px;}
.ws10{word-spacing:2.808538px;}
.ws13{word-spacing:2.810095px;}
.ws15{word-spacing:2.816633px;}
.wsf2{word-spacing:2.821408px;}
.ws112{word-spacing:2.864454px;}
.ws9e{word-spacing:2.940960px;}
.ws74{word-spacing:3.000735px;}
.wsba{word-spacing:3.060511px;}
.ws57{word-spacing:3.120286px;}
.ws99{word-spacing:3.180062px;}
.wsc7{word-spacing:3.199198px;}
.ws9b{word-spacing:3.239838px;}
.ws2{word-spacing:3.299613px;}
.wscd{word-spacing:3.316436px;}
.wsce{word-spacing:3.323434px;}
.ws7f{word-spacing:3.359389px;}
.ws11d{word-spacing:3.407768px;}
.ws72{word-spacing:3.419164px;}
.ws91{word-spacing:3.438301px;}
.ws23{word-spacing:3.478940px;}
.ws10b{word-spacing:3.486122px;}
.ws5f{word-spacing:3.538716px;}
.ws4c{word-spacing:3.598491px;}
.ws35{word-spacing:3.629584px;}
.wsc1{word-spacing:3.658267px;}
.ws29{word-spacing:3.718042px;}
.wsfb{word-spacing:3.837594px;}
.ws5e{word-spacing:3.897369px;}
.ws2a{word-spacing:3.957145px;}
.wsca{word-spacing:3.964328px;}
.ws37{word-spacing:4.016920px;}
.wsd4{word-spacing:4.076696px;}
.ws22{word-spacing:4.136472px;}
.ws89{word-spacing:4.196247px;}
.wsd7{word-spacing:4.256023px;}
.ws100{word-spacing:4.312465px;}
.ws1f{word-spacing:4.315798px;}
.ws8f{word-spacing:4.375574px;}
.wsf1{word-spacing:4.435350px;}
.ws1c{word-spacing:4.495125px;}
.ws51{word-spacing:4.554901px;}
.ws1b{word-spacing:4.614676px;}
.ws1{word-spacing:4.648169px;}
.ws107{word-spacing:4.674452px;}
.ws120{word-spacing:4.734228px;}
.ws0{word-spacing:4.734246px;}
.ws45{word-spacing:4.794003px;}
.wsaa{word-spacing:4.825099px;}
.wsd{word-spacing:4.853779px;}
.ws30{word-spacing:5.033106px;}
.wsc{word-spacing:5.092881px;}
.ws70{word-spacing:5.152657px;}
.ws10c{word-spacing:5.207663px;}
.ws3{word-spacing:5.245920px;}
.ws6d{word-spacing:5.272208px;}
.wsf4{word-spacing:5.331984px;}
.ws2f{word-spacing:5.391759px;}
.ws2e{word-spacing:5.451535px;}
.wsf9{word-spacing:5.511310px;}
.wsfa{word-spacing:5.571086px;}
.wse7{word-spacing:5.630862px;}
.ws6e{word-spacing:5.690637px;}
.wsb2{word-spacing:5.750413px;}
.ws3e{word-spacing:5.810188px;}
.wsff{word-spacing:5.869964px;}
.wsd0{word-spacing:5.925807px;}
.ws32{word-spacing:5.929740px;}
.ws6a{word-spacing:5.989515px;}
.ws28{word-spacing:6.049291px;}
.wse9{word-spacing:6.061246px;}
.ws6c{word-spacing:6.109066px;}
.ws101{word-spacing:6.121021px;}
.ws80{word-spacing:6.168842px;}
.wseb{word-spacing:6.183728px;}
.ws5c{word-spacing:6.228618px;}
.ws33{word-spacing:6.288393px;}
.wsac{word-spacing:6.348169px;}
.ws71{word-spacing:6.407944px;}
.ws82{word-spacing:6.527496px;}
.ws43{word-spacing:6.587271px;}
.ws7e{word-spacing:6.647047px;}
.ws141{word-spacing:6.706822px;}
.ws75{word-spacing:6.766598px;}
.ws3d{word-spacing:6.826374px;}
.ws50{word-spacing:6.886149px;}
.wsd1{word-spacing:6.945925px;}
.ws108{word-spacing:7.005700px;}
.wsc6{word-spacing:7.024846px;}
.wsed{word-spacing:7.125252px;}
.ws8{word-spacing:7.185027px;}
.ws6f{word-spacing:7.244803px;}
.ws1d{word-spacing:7.304578px;}
.wsc8{word-spacing:7.364354px;}
.ws44{word-spacing:7.424130px;}
.ws7b{word-spacing:7.483905px;}
.ws1a{word-spacing:7.543681px;}
.ws128{word-spacing:7.550873px;}
.ws9d{word-spacing:7.603456px;}
.ws3a{word-spacing:7.663232px;}
.wsd2{word-spacing:7.842559px;}
.wsd5{word-spacing:7.902334px;}
.ws81{word-spacing:8.021886px;}
.wsa9{word-spacing:8.081661px;}
.wsb7{word-spacing:8.141437px;}
.ws9c{word-spacing:8.201212px;}
.ws4{word-spacing:8.260988px;}
.ws116{word-spacing:8.380539px;}
.ws83{word-spacing:8.440315px;}
.ws48{word-spacing:8.500090px;}
.wsb6{word-spacing:8.559866px;}
.ws96{word-spacing:8.602926px;}
.ws9f{word-spacing:8.619642px;}
.wsfd{word-spacing:8.679417px;}
.wsb4{word-spacing:8.798968px;}
.wsfc{word-spacing:8.858744px;}
.ws7a{word-spacing:8.918520px;}
.wsab{word-spacing:8.978295px;}
.ws6{word-spacing:9.038071px;}
.wsbd{word-spacing:9.097846px;}
.wsf3{word-spacing:9.157622px;}
.ws2c{word-spacing:9.217398px;}
.ws118{word-spacing:9.336949px;}
.wsc4{word-spacing:9.387011px;}
.ws64{word-spacing:9.576051px;}
.wsc3{word-spacing:9.635827px;}
.ws9{word-spacing:9.695602px;}
.ws121{word-spacing:9.934705px;}
.ws129{word-spacing:9.994480px;}
.ws67{word-spacing:10.054256px;}
.ws105{word-spacing:10.085365px;}
.wsdf{word-spacing:10.114032px;}
.ws73{word-spacing:10.173807px;}
.ws4b{word-spacing:10.233583px;}
.ws4e{word-spacing:10.293358px;}
.ws69{word-spacing:10.353134px;}
.ws59{word-spacing:10.472685px;}
.wsf0{word-spacing:10.532461px;}
.ws66{word-spacing:10.592236px;}
.ws4d{word-spacing:10.771563px;}
.wsec{word-spacing:10.903069px;}
.ws7{word-spacing:10.950890px;}
.ws5b{word-spacing:11.010666px;}
.ws102{word-spacing:11.070441px;}
.ws14f{word-spacing:11.130217px;}
.ws21{word-spacing:11.249768px;}
.ws20{word-spacing:11.309544px;}
.ws63{word-spacing:11.429095px;}
.ws3c{word-spacing:11.488870px;}
.ws5{word-spacing:11.668197px;}
.wsb3{word-spacing:12.086626px;}
.ws78{word-spacing:12.325729px;}
.ws76{word-spacing:12.564831px;}
.wsb5{word-spacing:12.983260px;}
.wsb{word-spacing:13.102812px;}
.wsa0{word-spacing:13.222363px;}
.ws14d{word-spacing:13.341914px;}
.ws13b{word-spacing:13.760343px;}
.ws27{word-spacing:13.939670px;}
.ws140{word-spacing:14.238548px;}
.ws152{word-spacing:14.656977px;}
.ws15c{word-spacing:14.896080px;}
.ws142{word-spacing:15.732938px;}
.wse2{word-spacing:16.223702px;}
.wse0{word-spacing:16.231959px;}
.ws13a{word-spacing:16.510021px;}
.ws11{word-spacing:16.865162px;}
.ws16{word-spacing:16.868247px;}
.wsf{word-spacing:16.906644px;}
.ws14{word-spacing:16.909898px;}
.ws13f{word-spacing:17.167552px;}
.ws13c{word-spacing:17.705533px;}
.ws13d{word-spacing:17.765308px;}
.ws93{word-spacing:17.918582px;}
.ws136{word-spacing:18.422840px;}
.wse4{word-spacing:19.550547px;}
.ws94{word-spacing:19.594833px;}
.ws14e{word-spacing:20.036781px;}
.ws151{word-spacing:20.395435px;}
.ws13e{word-spacing:20.634537px;}
.ws149{word-spacing:20.993191px;}
.ws12f{word-spacing:21.052966px;}
.ws12e{word-spacing:21.112742px;}
.ws12d{word-spacing:22.489481px;}
.wse5{word-spacing:22.591959px;}
.ws84{word-spacing:22.834279px;}
.wscc{word-spacing:22.863595px;}
.wsfe{word-spacing:22.894055px;}
.ws139{word-spacing:23.085337px;}
.ws132{word-spacing:23.563542px;}
.ws12c{word-spacing:24.041746px;}
.wse8{word-spacing:25.185595px;}
.wse6{word-spacing:25.989595px;}
.ws143{word-spacing:26.313219px;}
.ws131{word-spacing:26.671873px;}
.ws156{word-spacing:28.285814px;}
.ws155{word-spacing:28.764019px;}
.ws12b{word-spacing:29.660653px;}
.ws158{word-spacing:30.019306px;}
.wscb{word-spacing:30.129011px;}
.ws138{word-spacing:31.812574px;}
.ws130{word-spacing:32.231004px;}
.ws18{word-spacing:34.311194px;}
.ws154{word-spacing:34.382925px;}
.ws111{word-spacing:34.763051px;}
.ws14c{word-spacing:35.697988px;}
.ws137{word-spacing:35.877315px;}
.wse{word-spacing:36.146329px;}
.ws14b{word-spacing:37.730359px;}
.ws14a{word-spacing:38.208564px;}
.ws144{word-spacing:39.762729px;}
.ws133{word-spacing:41.974426px;}
.ws159{word-spacing:44.245899px;}
.ws148{word-spacing:44.305675px;}
.ws134{word-spacing:45.441411px;}
.ws145{word-spacing:49.565928px;}
.ws146{word-spacing:52.315605px;}
.ws135{word-spacing:52.494932px;}
.ws110{word-spacing:52.860567px;}
.ws157{word-spacing:53.391566px;}
.ws15a{word-spacing:58.845849px;}
.ws109{word-spacing:77.320483px;}
.ws10d{word-spacing:78.145438px;}
.ws117{word-spacing:83.590651px;}
.ws10f{word-spacing:86.592747px;}
.ws153{word-spacing:89.017824px;}
.ws10e{word-spacing:93.820428px;}
.wsa4{word-spacing:96.640648px;}
.ws10a{word-spacing:99.132653px;}
.ws127{word-spacing:119.441002px;}
.ws126{word-spacing:137.369927px;}
.ws103{word-spacing:144.145643px;}
.ws123{word-spacing:147.695564px;}
.wsa6{word-spacing:153.646886px;}
.ws122{word-spacing:155.200803px;}
.wsa2{word-spacing:164.696253px;}
.wsa5{word-spacing:187.828886px;}
.ws104{word-spacing:195.828194px;}
.wsa1{word-spacing:199.395770px;}
.wsa3{word-spacing:246.622322px;}
.ws147{word-spacing:286.934835px;}
.ws15b{word-spacing:349.699215px;}
.wse1{word-spacing:719.473959px;}
.wse3{word-spacing:740.375702px;}
.wsde{word-spacing:824.616357px;}
.wsc5{word-spacing:906.230763px;}
.ws34{word-spacing:923.756763px;}
._27{margin-left:-2169.982204px;}
._29{margin-left:-2168.797515px;}
._1a{margin-left:-2154.010517px;}
._16{margin-left:-2152.957692px;}
._2b{margin-left:-2150.204817px;}
._14{margin-left:-2137.906222px;}
._3a{margin-left:-2135.725258px;}
._2c{margin-left:-2075.339499px;}
._6f{margin-left:-2035.670492px;}
._63{margin-left:-1724.012468px;}
._35{margin-left:-1659.092099px;}
._64{margin-left:-1637.576957px;}
._34{margin-left:-1625.571132px;}
._48{margin-left:-1469.903495px;}
._58{margin-left:-1156.969172px;}
._5c{margin-left:-1067.987226px;}
._70{margin-left:-1062.822602px;}
._3b{margin-left:-1008.166313px;}
._3c{margin-left:-906.760590px;}
._30{margin-left:-723.114992px;}
._50{margin-left:-561.485619px;}
._4b{margin-left:-522.989881px;}
._56{margin-left:-435.178802px;}
._52{margin-left:-430.164352px;}
._51{margin-left:-376.569549px;}
._3e{margin-left:-367.089139px;}
._18{margin-left:-167.911262px;}
._36{margin-left:-33.716878px;}
._2a{margin-left:-30.478392px;}
._2{margin-left:-29.177657px;}
._a{margin-left:-27.544666px;}
._4{margin-left:-24.962353px;}
._25{margin-left:-23.252708px;}
._6{margin-left:-20.993243px;}
._24{margin-left:-6.886156px;}
._5{margin-left:-5.824543px;}
._8{margin-left:-3.921289px;}
._0{margin-left:-2.324084px;}
._3{margin-left:-1.291156px;}
._9{width:1.291156px;}
._7{width:2.582312px;}
._1{width:4.217783px;}
._39{width:5.367056px;}
._17{width:15.386236px;}
._1b{width:16.909331px;}
._10{width:17.971687px;}
._3d{width:19.176006px;}
._12{width:20.196989px;}
._28{width:21.557451px;}
._1f{width:22.707564px;}
._20{width:24.292865px;}
._e{width:26.002386px;}
._d{width:27.974981px;}
._13{width:28.995947px;}
._b{width:30.574036px;}
._1e{width:31.829324px;}
._1d{width:33.144394px;}
._2f{width:34.370970px;}
._19{width:35.528247px;}
._2e{width:36.785901px;}
._22{width:37.986194px;}
._15{width:39.533212px;}
._2d{width:41.477102px;}
._38{width:42.665450px;}
._21{width:43.777280px;}
._1c{width:45.097112px;}
._23{width:47.019474px;}
._26{width:48.358460px;}
._c{width:49.494197px;}
._3f{width:51.375945px;}
._37{width:52.693375px;}
._6c{width:54.032361px;}
._f{width:55.949962px;}
._60{width:58.187920px;}
._5d{width:60.672234px;}
._68{width:62.845696px;}
._46{width:63.905860px;}
._6a{width:67.046699px;}
._59{width:68.203960px;}
._61{width:70.155053px;}
._5a{width:72.627354px;}
._6b{width:76.445828px;}
._62{width:78.126709px;}
._65{width:80.393401px;}
._66{width:81.825632px;}
._55{width:83.626064px;}
._5f{width:86.354201px;}
._54{width:88.819378px;}
._57{width:96.896248px;}
._6d{width:101.078167px;}
._44{width:102.785961px;}
._53{width:105.661785px;}
._47{width:108.231174px;}
._5e{width:111.629750px;}
._43{width:113.923487px;}
._45{width:118.460950px;}
._4e{width:123.010036px;}
._4f{width:124.479533px;}
._69{width:130.430359px;}
._4d{width:136.999744px;}
._40{width:141.786180px;}
._4c{width:149.149773px;}
._5b{width:152.069126px;}
._33{width:159.866964px;}
._4a{width:160.969049px;}
._32{width:163.677468px;}
._31{width:167.234153px;}
._41{width:169.267926px;}
._67{width:172.512382px;}
._49{width:179.841326px;}
._6e{width:193.031780px;}
._42{width:218.894311px;}
._11{width:836.707484px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs9{font-size:34.320660px;}
.fs4{font-size:35.865600px;}
.fsb{font-size:37.751010px;}
.fsa{font-size:38.610000px;}
.fse{font-size:41.182920px;}
.fs2{font-size:41.842800px;}
.fsf{font-size:42.120000px;}
.fs7{font-size:42.899340px;}
.fsc{font-size:46.799280px;}
.fs8{font-size:47.190990px;}
.fs3{font-size:47.820600px;}
.fsd{font-size:51.481080px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y13c{bottom:0.948750px;}
.y119{bottom:2.614838px;}
.y1b9{bottom:2.805000px;}
.y118{bottom:12.292500px;}
.y1e5{bottom:13.530000px;}
.y1b8{bottom:19.098750px;}
.y13d{bottom:22.893750px;}
.y1e6{bottom:24.131250px;}
.y1ef{bottom:29.700000px;}
.y11a{bottom:30.230475px;}
.y17f{bottom:30.648750px;}
.y154{bottom:32.711250px;}
.y1ad{bottom:34.361250px;}
.y21b{bottom:37.485000px;}
.y133{bottom:43.848750px;}
.y1fb{bottom:45.211898px;}
.y1c2{bottom:45.251910px;}
.y1e7{bottom:46.251562px;}
.y17e{bottom:46.323750px;}
.y161{bottom:48.571875px;}
.y1ac{bottom:50.036250px;}
.y1ba{bottom:50.366250px;}
.y1eb{bottom:51.356250px;}
.y155{bottom:54.295313px;}
.y21a{bottom:54.585000px;}
.y134{bottom:56.023605px;}
.y180{bottom:56.925000px;}
.y1fa{bottom:58.589520px;}
.y1c1{bottom:58.698090px;}
.y1f0{bottom:59.223038px;}
.y1ae{bottom:60.637500px;}
.y13e{bottom:63.978750px;}
.y21c{bottom:66.150000px;}
.y11b{bottom:66.913358px;}
.y1e8{bottom:68.371875px;}
.y18b{bottom:70.455000px;}
.y1f9{bottom:71.966730px;}
.y162{bottom:74.250000px;}
.y156{bottom:77.962500px;}
.y15b{bottom:79.468785px;}
.y181{bottom:80.932500px;}
.y15a{bottom:83.136075px;}
.y225{bottom:83.790720px;}
.y1f8{bottom:85.344600px;}
.y135{bottom:86.712285px;}
.y120{bottom:87.575400px;}
.y1f1{bottom:88.746405px;}
.y1ed{bottom:89.183325px;}
.y21d{bottom:89.325000px;}
.y1e9{bottom:90.492188px;}
.y1bb{bottom:91.698750px;}
.y1af{bottom:92.503125px;}
.y143{bottom:96.215625px;}
.y18c{bottom:96.372375px;}
.y224{bottom:98.459100px;}
.y163{bottom:99.928125px;}
.y157{bottom:101.629688px;}
.y1ec{bottom:102.629175px;}
.y11c{bottom:103.596570px;}
.y182{bottom:104.940000px;}
.y13f{bottom:105.063750px;}
.y1b3{bottom:107.353125px;}
.y168{bottom:108.590625px;}
.y21e{bottom:112.500000px;}
.y1ea{bottom:112.612500px;}
.y1f7{bottom:113.231250px;}
.y1bf{bottom:116.015625px;}
.y137{bottom:116.189700px;}
.y223{bottom:117.112500px;}
.y136{bottom:117.400965px;}
.y1f2{bottom:118.269443px;}
.y18d{bottom:118.676993px;}
.y159{bottom:124.230150px;}
.y1b0{bottom:124.368750px;}
.y158{bottom:125.296875px;}
.y164{bottom:125.606250px;}
.y183{bottom:128.947500px;}
.y1bc{bottom:133.031250px;}
.y1a{bottom:134.047500px;}
.y21f{bottom:135.675000px;}
.y1de{bottom:136.661250px;}
.y11d{bottom:140.279452px;}
.y140{bottom:146.148750px;}
.y1df{bottom:147.262500px;}
.y1f3{bottom:147.792810px;}
.y186{bottom:147.964575px;}
.y165{bottom:151.284375px;}
.y184{bottom:152.955000px;}
.y1b1{bottom:156.234375px;}
.y220{bottom:158.850000px;}
.y1b5{bottom:159.102075px;}
.y185{bottom:161.410425px;}
.y122{bottom:161.450025px;}
.y131{bottom:161.467350px;}
.y123{bottom:161.947500px;}
.y12f{bottom:162.667725px;}
.y132{bottom:164.840775px;}
.y130{bottom:165.711150px;}
.y12d{bottom:165.799425px;}
.y125{bottom:168.337950px;}
.y12e{bottom:168.976500px;}
.y12b{bottom:169.089525px;}
.y127{bottom:169.624125px;}
.y12c{bottom:169.814700px;}
.y153{bottom:169.919475px;}
.y124{bottom:170.435100px;}
.y152{bottom:170.561325px;}
.y146{bottom:170.749425px;}
.y148{bottom:171.264225px;}
.y128{bottom:171.600000px;}
.y126{bottom:171.825225px;}
.y12a{bottom:171.897825px;}
.y1b4{bottom:172.547925px;}
.y14b{bottom:172.583400px;}
.y129{bottom:173.500800px;}
.y150{bottom:173.705400px;}
.y151{bottom:174.140175px;}
.y1bd{bottom:174.363750px;}
.y1e2{bottom:174.796875px;}
.y14f{bottom:176.525250px;}
.y166{bottom:176.962500px;}
.y11e{bottom:176.962665px;}
.y1f4{bottom:177.315848px;}
.y14e{bottom:178.091925px;}
.y144{bottom:178.306425px;}
.y69{bottom:178.879500px;}
.y14c{bottom:179.028300px;}
.y145{bottom:179.101725px;}
.y14d{bottom:179.407800px;}
.y147{bottom:180.523200px;}
.ya5{bottom:181.468500px;}
.y149{bottom:181.830000px;}
.y221{bottom:182.025000px;}
.y14a{bottom:182.216100px;}
.yc6{bottom:184.857000px;}
.y1e4{bottom:186.327075px;}
.y1b7{bottom:187.177500px;}
.y141{bottom:187.233750px;}
.y202{bottom:187.396500px;}
.ycd{bottom:187.845000px;}
.y1b2{bottom:188.100000px;}
.yfc{bottom:188.514000px;}
.y116{bottom:191.245500px;}
.y1e0{bottom:191.812500px;}
.y36{bottom:192.328500px;}
.y4c{bottom:193.662000px;}
.y8d{bottom:196.752000px;}
.y177{bottom:197.711250px;}
.y16a{bottom:199.320825px;}
.y1e3{bottom:199.772925px;}
.y167{bottom:202.640625px;}
.y7b{bottom:204.861000px;}
.y222{bottom:205.200000px;}
.y68{bottom:205.779000px;}
.y1f5{bottom:206.839215px;}
.ya4{bottom:208.368000px;}
.y1b6{bottom:208.471500px;}
.y1a3{bottom:211.323750px;}
.yc5{bottom:211.756500px;}
.y169{bottom:212.766675px;}
.y176{bottom:213.386250px;}
.y11f{bottom:213.645878px;}
.y201{bottom:214.296000px;}
.ycc{bottom:214.744500px;}
.yfb{bottom:215.413500px;}
.y1be{bottom:215.696250px;}
.yb1{bottom:216.777000px;}
.y15f{bottom:217.032000px;}
.y115{bottom:218.145000px;}
.y35{bottom:219.228000px;}
.y4b{bottom:220.561500px;}
.y8c{bottom:223.651500px;}
.y1a2{bottom:226.998750px;}
.y142{bottom:228.318750px;}
.ye9{bottom:230.526000px;}
.y212{bottom:230.535000px;}
.y19{bottom:231.507000px;}
.y7a{bottom:231.760500px;}
.y67{bottom:232.677000px;}
.y187{bottom:233.186250px;}
.y178{bottom:233.990625px;}
.ya3{bottom:235.267500px;}
.y1f6{bottom:236.362253px;}
.y1e1{bottom:236.362500px;}
.y1a4{bottom:237.600000px;}
.y121{bottom:237.955575px;}
.yb0{bottom:238.072500px;}
.y195{bottom:238.323000px;}
.yc4{bottom:238.654500px;}
.y200{bottom:241.195500px;}
.y23c{bottom:241.644000px;}
.yfa{bottom:242.313000px;}
.y229{bottom:245.593500px;}
.y18{bottom:245.703000px;}
.y1c0{bottom:245.992725px;}
.y34{bottom:246.127500px;}
.y4a{bottom:247.461000px;}
.y211{bottom:247.635000px;}
.y114{bottom:249.528000px;}
.y8b{bottom:250.549500px;}
.ycb{bottom:250.609500px;}
.yca{bottom:253.368000px;}
.y244{bottom:253.599000px;}
.y188{bottom:256.645125px;}
.ye8{bottom:257.424000px;}
.y79{bottom:258.660000px;}
.y213{bottom:259.278300px;}
.y66{bottom:259.576500px;}
.ya2{bottom:262.167000px;}
.yc3{bottom:264.270000px;}
.y17b{bottom:266.990625px;}
.y1ff{bottom:268.093500px;}
.y23b{bottom:268.543500px;}
.y1a5{bottom:269.465625px;}
.y189{bottom:272.792850px;}
.y33{bottom:273.025500px;}
.y49{bottom:274.359000px;}
.yc2{bottom:274.521000px;}
.y8a{bottom:277.449000px;}
.y243{bottom:280.498500px;}
.yf9{bottom:281.167500px;}
.y179{bottom:284.006250px;}
.y1a9{bottom:284.315625px;}
.ye7{bottom:284.323500px;}
.y78{bottom:285.559500px;}
.y65{bottom:286.476000px;}
.y18a{bottom:288.940905px;}
.ya1{bottom:289.065000px;}
.y113{bottom:294.358500px;}
.y214{bottom:294.448230px;}
.y1fe{bottom:294.993000px;}
.y23a{bottom:295.441500px;}
.y32{bottom:299.925000px;}
.y48{bottom:301.258500px;}
.y1a6{bottom:301.331250px;}
.yc9{bottom:303.124500px;}
.y228{bottom:305.247000px;}
.y242{bottom:307.396500px;}
.yf8{bottom:308.065500px;}
.y17{bottom:309.954000px;}
.y217{bottom:310.162500px;}
.ye6{bottom:311.223000px;}
.y77{bottom:312.457500px;}
.y64{bottom:313.375500px;}
.y17d{bottom:315.027075px;}
.ya0{bottom:315.964500px;}
.yc7{bottom:316.132500px;}
.y112{bottom:321.258000px;}
.yc8{bottom:323.484000px;}
.y89{bottom:325.764000px;}
.y1fd{bottom:326.376000px;}
.y227{bottom:326.541000px;}
.y31{bottom:326.824500px;}
.y47{bottom:328.158000px;}
.yc1{bottom:328.318500px;}
.y17c{bottom:328.472925px;}
.y215{bottom:329.618160px;}
.y1cf{bottom:332.577000px;}
.y1a7{bottom:333.196875px;}
.y17a{bottom:334.021875px;}
.y239{bottom:334.296000px;}
.yf7{bottom:334.965000px;}
.y1ab{bottom:336.064575px;}
.ye5{bottom:338.122500px;}
.y16{bottom:338.182500px;}
.y76{bottom:339.357000px;}
.y63{bottom:340.273500px;}
.y194{bottom:342.835500px;}
.y9f{bottom:342.864000px;}
.y88{bottom:347.059500px;}
.y111{bottom:348.157500px;}
.y1aa{bottom:349.510425px;}
.y30{bottom:353.724000px;}
.y46{bottom:355.057500px;}
.yc0{bottom:355.218000px;}
.y203{bottom:356.392500px;}
.y1ce{bottom:359.476500px;}
.y238{bottom:361.195500px;}
.yf6{bottom:361.864500px;}
.y16e{bottom:364.155000px;}
.y216{bottom:364.788090px;}
.ye4{bottom:365.020500px;}
.y1a8{bottom:365.062500px;}
.y15{bottom:365.080500px;}
.y75{bottom:366.256500px;}
.y219{bottom:366.615900px;}
.y62{bottom:367.173000px;}
.y9e{bottom:369.763500px;}
.y110{bottom:375.057000px;}
.y1fc{bottom:377.596500px;}
.y16d{bottom:379.830000px;}
.y2f{bottom:380.622000px;}
.y218{bottom:381.284100px;}
.y45{bottom:381.955500px;}
.ybf{bottom:382.117500px;}
.y1cd{bottom:386.376000px;}
.y237{bottom:388.095000px;}
.y197{bottom:388.286250px;}
.yf5{bottom:388.764000px;}
.ye3{bottom:391.920000px;}
.y14{bottom:391.980000px;}
.y193{bottom:392.775000px;}
.y74{bottom:393.156000px;}
.y61{bottom:394.072500px;}
.y9d{bottom:396.661500px;}
.y16f{bottom:397.972575px;}
.y18e{bottom:400.867500px;}
.y10f{bottom:401.955000px;}
.y196{bottom:403.961250px;}
.y175{bottom:405.197925px;}
.y1ee{bottom:407.446500px;}
.y2e{bottom:407.521500px;}
.y44{bottom:408.855000px;}
.ybe{bottom:409.015500px;}
.y1cc{bottom:413.275500px;}
.y192{bottom:414.070500px;}
.y18f{bottom:414.718425px;}
.y198{bottom:415.611075px;}
.yf4{bottom:415.662000px;}
.y1dd{bottom:417.118500px;}
.y13a{bottom:417.202500px;}
.y174{bottom:418.358325px;}
.ye2{bottom:418.819500px;}
.y13{bottom:418.879500px;}
.y73{bottom:420.054000px;}
.y60{bottom:420.972000px;}
.y9c{bottom:423.561000px;}
.y205{bottom:423.585000px;}
.y236{bottom:426.949500px;}
.y190{bottom:427.278390px;}
.y10e{bottom:428.854500px;}
.y1a1{bottom:430.733325px;}
.y173{bottom:431.268750px;}
.y2d{bottom:434.421000px;}
.y170{bottom:435.677633px;}
.y43{bottom:435.754500px;}
.ybd{bottom:435.915000px;}
.y199{bottom:436.577048px;}
.y139{bottom:438.496500px;}
.y191{bottom:439.838355px;}
.y1cb{bottom:440.173500px;}
.y204{bottom:440.685000px;}
.yf3{bottom:442.561500px;}
.y16c{bottom:443.920500px;}
.y1dc{bottom:444.016500px;}
.y1a0{bottom:444.179175px;}
.ye1{bottom:445.719000px;}
.y12{bottom:445.779000px;}
.y72{bottom:446.953500px;}
.y5f{bottom:447.870000px;}
.y9b{bottom:450.460500px;}
.y206{bottom:452.250000px;}
.y235{bottom:453.847500px;}
.y10d{bottom:455.754000px;}
.y19a{bottom:457.543020px;}
.y138{bottom:459.792000px;}
.y2c{bottom:461.320500px;}
.y42{bottom:462.654000px;}
.ybc{bottom:462.814500px;}
.y20e{bottom:464.570100px;}
.y1ca{bottom:467.073000px;}
.y19f{bottom:469.012500px;}
.yf2{bottom:469.461000px;}
.y226{bottom:470.491200px;}
.y1db{bottom:470.916000px;}
.ye0{bottom:472.617000px;}
.y11{bottom:472.677000px;}
.y171{bottom:473.382690px;}
.y71{bottom:473.853000px;}
.y5e{bottom:474.769500px;}
.y207{bottom:475.312500px;}
.y9a{bottom:477.360000px;}
.y19b{bottom:478.508993px;}
.y241{bottom:480.747000px;}
.y10c{bottom:482.653500px;}
.y210{bottom:487.259100px;}
.y2b{bottom:488.218500px;}
.y41{bottom:489.552000px;}
.y117{bottom:489.643500px;}
.ybb{bottom:489.714000px;}
.y234{bottom:492.702000px;}
.y1c9{bottom:493.972500px;}
.yf1{bottom:496.360500px;}
.y1da{bottom:497.815500px;}
.y208{bottom:498.375000px;}
.y19c{bottom:499.474635px;}
.ydf{bottom:499.516500px;}
.y10{bottom:499.576500px;}
.y20d{bottom:500.175000px;}
.y70{bottom:500.752500px;}
.y20f{bottom:501.615900px;}
.y5d{bottom:501.669000px;}
.y99{bottom:504.258000px;}
.y240{bottom:507.646500px;}
.y10b{bottom:509.551500px;}
.y172{bottom:511.087748px;}
.y2a{bottom:515.118000px;}
.y40{bottom:516.451500px;}
.yba{bottom:516.612000px;}
.yaf{bottom:518.823000px;}
.y233{bottom:519.601500px;}
.y19d{bottom:520.440607px;}
.y1c8{bottom:520.872000px;}
.y209{bottom:521.437500px;}
.yf0{bottom:523.258500px;}
.y1d9{bottom:524.715000px;}
.yde{bottom:526.416000px;}
.yf{bottom:526.476000px;}
.y6f{bottom:527.650500px;}
.y5c{bottom:528.568500px;}
.y98{bottom:531.157500px;}
.y23f{bottom:534.546000px;}
.y10a{bottom:536.451000px;}
.y19e{bottom:541.406580px;}
.y29{bottom:542.017500px;}
.y3f{bottom:543.351000px;}
.yb9{bottom:543.511500px;}
.y20a{bottom:544.500000px;}
.yae{bottom:545.722500px;}
.y232{bottom:546.501000px;}
.y1c7{bottom:547.770000px;}
.y15e{bottom:550.506000px;}
.y1d8{bottom:551.613000px;}
.ydd{bottom:553.315500px;}
.ye{bottom:553.375500px;}
.y5b{bottom:555.466500px;}
.y97{bottom:558.057000px;}
.y23e{bottom:561.444000px;}
.yef{bottom:562.113000px;}
.y109{bottom:563.350500px;}
.y20b{bottom:567.562500px;}
.y28{bottom:568.917000px;}
.y3e{bottom:570.250500px;}
.yb8{bottom:570.411000px;}
.y15d{bottom:571.801500px;}
.yad{bottom:572.622000px;}
.y231{bottom:573.399000px;}
.y1c6{bottom:574.669500px;}
.y1d7{bottom:578.512500px;}
.y6e{bottom:578.871000px;}
.ydc{bottom:580.213500px;}
.yd{bottom:580.273500px;}
.y5a{bottom:582.366000px;}
.y96{bottom:584.956500px;}
.yee{bottom:589.012500px;}
.y108{bottom:590.250000px;}
.y20c{bottom:590.625000px;}
.y15c{bottom:593.097000px;}
.y27{bottom:595.815000px;}
.y3d{bottom:597.148500px;}
.yb7{bottom:597.310500px;}
.yac{bottom:599.520000px;}
.y6d{bottom:600.166500px;}
.y230{bottom:600.298500px;}
.y1c5{bottom:601.569000px;}
.y1d6{bottom:605.412000px;}
.ydb{bottom:607.113000px;}
.yc{bottom:607.173000px;}
.y59{bottom:609.265500px;}
.y95{bottom:611.854500px;}
.yed{bottom:615.912000px;}
.y107{bottom:617.148000px;}
.y6c{bottom:621.462000px;}
.y26{bottom:622.714500px;}
.y13b{bottom:622.947000px;}
.y3c{bottom:624.048000px;}
.yb6{bottom:624.208500px;}
.yab{bottom:626.419500px;}
.y22f{bottom:627.198000px;}
.y1c4{bottom:628.468500px;}
.y1d5{bottom:632.311500px;}
.y87{bottom:633.997500px;}
.y58{bottom:636.165000px;}
.yda{bottom:638.496000px;}
.y94{bottom:638.754000px;}
.y245{bottom:639.153000px;}
.y6b{bottom:642.757500px;}
.yec{bottom:642.810000px;}
.yb{bottom:643.038000px;}
.y106{bottom:644.047500px;}
.y25{bottom:649.614000px;}
.y3b{bottom:650.947500px;}
.yb5{bottom:651.108000px;}
.yaa{bottom:653.319000px;}
.y23d{bottom:654.097500px;}
.y1d4{bottom:659.209500px;}
.y1c3{bottom:659.850000px;}
.y86{bottom:660.897000px;}
.y57{bottom:663.063000px;}
.y6a{bottom:664.051500px;}
.y93{bottom:665.653500px;}
.y22e{bottom:666.052500px;}
.y105{bottom:670.947000px;}
.y24{bottom:676.513500px;}
.y3a{bottom:677.847000px;}
.yd9{bottom:679.437000px;}
.yd8{bottom:683.328000px;}
.yeb{bottom:684.654000px;}
.y1d3{bottom:686.109000px;}
.y85{bottom:687.796500px;}
.y56{bottom:689.962500px;}
.y92{bottom:692.553000px;}
.yb4{bottom:692.952000px;}
.y23{bottom:703.411500px;}
.ya9{bottom:704.539500px;}
.yd7{bottom:706.336500px;}
.yd6{bottom:710.226000px;}
.y16b{bottom:711.070500px;}
.y104{bottom:711.295500px;}
.y84{bottom:714.694500px;}
.y55{bottom:716.862000px;}
.y91{bottom:719.451000px;}
.y22d{bottom:719.850000px;}
.ya8{bottom:725.835000px;}
.y39{bottom:729.067500px;}
.y22{bottom:730.311000px;}
.yb3{bottom:731.805000px;}
.yea{bottom:735.874500px;}
.yd5{bottom:737.125500px;}
.y1d2{bottom:737.329500px;}
.y160{bottom:740.920500px;}
.y83{bottom:741.594000px;}
.ya{bottom:743.013000px;}
.y54{bottom:743.761500px;}
.y90{bottom:746.350500px;}
.y22c{bottom:746.749500px;}
.ya7{bottom:747.129000px;}
.y38{bottom:750.361500px;}
.y21{bottom:757.210500px;}
.y1d1{bottom:758.625000px;}
.y102{bottom:758.704500px;}
.yd4{bottom:760.135500px;}
.yd3{bottom:764.025000px;}
.y9{bottom:766.177500px;}
.y53{bottom:770.659500px;}
.y103{bottom:771.483000px;}
.y8f{bottom:773.250000px;}
.y22b{bottom:773.649000px;}
.y1d0{bottom:779.920500px;}
.y20{bottom:784.110000px;}
.ya6{bottom:784.377000px;}
.y101{bottom:785.604000px;}
.y37{bottom:787.609500px;}
.yd2{bottom:788.551500px;}
.y8{bottom:792.328500px;}
.y52{bottom:797.559000px;}
.yd1{bottom:806.526000px;}
.y82{bottom:807.759000px;}
.yb2{bottom:809.514000px;}
.y1f{bottom:811.008000px;}
.y100{bottom:812.503500px;}
.y7{bottom:815.491500px;}
.y51{bottom:824.458500px;}
.y8e{bottom:824.470500px;}
.y1e{bottom:837.907500px;}
.yff{bottom:839.401500px;}
.y6{bottom:841.644000px;}
.y81{bottom:846.276000px;}
.y50{bottom:851.358000px;}
.y5{bottom:864.807000px;}
.yd0{bottom:865.596000px;}
.yfe{bottom:866.301000px;}
.ycf{bottom:869.290500px;}
.y80{bottom:873.774000px;}
.y4f{bottom:878.256000px;}
.y4{bottom:890.959500px;}
.y1d{bottom:891.706500px;}
.yfd{bottom:893.200500px;}
.y7f{bottom:900.672000px;}
.y4e{bottom:905.155500px;}
.y3{bottom:914.122500px;}
.y1c{bottom:918.604500px;}
.y22a{bottom:920.100000px;}
.y7e{bottom:927.571500px;}
.yce{bottom:928.360500px;}
.y4d{bottom:932.055000px;}
.y1b{bottom:945.504000px;}
.y7d{bottom:954.471000px;}
.y2{bottom:958.954500px;}
.y7c{bottom:981.370500px;}
.y1{bottom:985.852500px;}
.h19{height:29.415488px;}
.h3{height:34.143908px;}
.h21{height:35.795376px;}
.h8{height:35.865450px;}
.h22{height:40.269023px;}
.h9{height:40.348800px;}
.h5{height:40.686758px;}
.h4{height:40.692758px;}
.h6{height:41.842920px;}
.h1d{height:42.799330px;}
.h2b{height:43.929844px;}
.h1f{height:44.742671px;}
.h7{height:44.831700px;}
.h26{height:45.086125px;}
.h28{height:48.810187px;}
.h20{height:49.218728px;}
.h2{height:49.892047px;}
.ha{height:49.898047px;}
.hb{height:51.105488px;}
.hc{height:51.111488px;}
.h29{height:53.693158px;}
.h14{height:54.093488px;}
.hf{height:55.859700px;}
.he{height:55.865700px;}
.h18{height:56.784000px;}
.h16{height:59.609700px;}
.h1b{height:60.389700px;}
.h1c{height:60.395700px;}
.h1{height:60.598349px;}
.h10{height:60.605700px;}
.h13{height:60.611700px;}
.h24{height:61.648124px;}
.h1a{height:66.663488px;}
.h2a{height:67.252499px;}
.h15{height:68.871488px;}
.h17{height:75.383700px;}
.hd{height:85.265700px;}
.h12{height:85.835700px;}
.h11{height:101.039700px;}
.h1e{height:259.875000px;}
.h23{height:556.875000px;}
.h25{height:590.700000px;}
.h27{height:644.400000px;}
.h0{height:1188.000000px;}
.w1{width:346.500000px;}
.w2{width:378.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4e{left:9.198750px;}
.x37{left:10.436250px;}
.x35{left:11.673750px;}
.x6b{left:13.612500px;}
.x4f{left:15.386250px;}
.x36{left:17.861250px;}
.x6e{left:20.336250px;}
.x64{left:22.192500px;}
.x4d{left:24.048750px;}
.x34{left:26.523750px;}
.x4b{left:28.153125px;}
.x6d{left:29.617500px;}
.x77{left:31.473750px;}
.x6a{left:35.186250px;}
.x7e{left:38.280000px;}
.x49{left:40.136250px;}
.x68{left:42.075000px;}
.x82{left:45.900000px;}
.x5f{left:49.417500px;}
.x71{left:51.892500px;}
.x47{left:58.648507px;}
.x48{left:60.911400px;}
.x32{left:63.009375px;}
.x46{left:72.376013px;}
.x5e{left:76.368930px;}
.x45{left:86.738850px;}
.x51{left:90.282225px;}
.x70{left:93.992250px;}
.x7c{left:97.034850px;}
.x62{left:100.336500px;}
.x44{left:101.559975px;}
.x75{left:103.867500px;}
.x43{left:116.853000px;}
.x73{left:119.955000px;}
.x33{left:122.822205px;}
.x4c{left:124.987500px;}
.x50{left:127.462500px;}
.x74{left:129.236250px;}
.x42{left:132.062700px;}
.x7a{left:138.600000px;}
.x72{left:140.390250px;}
.x41{left:147.824325px;}
.x52{left:150.055950px;}
.x69{left:153.140625px;}
.x7d{left:154.688160px;}
.x78{left:159.018750px;}
.x63{left:160.875000px;}
.x40{left:165.748275px;}
.x65{left:166.753125px;}
.x60{left:168.490575px;}
.x7f{left:172.012500px;}
.x3f{left:180.001800px;}
.x53{left:182.013150px;}
.x4a{left:192.421350px;}
.x3e{left:199.176450px;}
.x7{left:200.652000px;}
.x54{left:201.665475px;}
.x79{left:205.425000px;}
.x1{left:208.252500px;}
.x67{left:212.697000px;}
.x3d{left:215.184750px;}
.x8{left:223.068000px;}
.x55{left:228.256050px;}
.x3c{left:231.535425px;}
.x66{left:233.887500px;}
.x4{left:238.620000px;}
.x76{left:241.931250px;}
.x56{left:244.651275px;}
.x3b{left:246.201450px;}
.x61{left:248.089875px;}
.x6c{left:249.356250px;}
.xf{left:261.316500px;}
.x6f{left:262.968750px;}
.x5d{left:266.365275px;}
.x81{left:269.434500px;}
.x3a{left:276.075525px;}
.x57{left:278.429250px;}
.x2a{left:286.164000px;}
.x39{left:290.383500px;}
.x58{left:297.102300px;}
.x38{left:304.432425px;}
.x59{left:306.180600px;}
.x28{left:308.536500px;}
.x2{left:311.799000px;}
.xb{left:315.409500px;}
.xd{left:317.298000px;}
.x5c{left:318.610050px;}
.x80{left:322.077000px;}
.x2f{left:325.035000px;}
.x7b{left:326.331000px;}
.xa{left:331.549500px;}
.x5b{left:334.389825px;}
.x12{left:335.931000px;}
.x5a{left:337.360650px;}
.xe{left:339.942000px;}
.x2d{left:344.118000px;}
.x1a{left:361.455000px;}
.xc{left:362.691000px;}
.x19{left:363.919500px;}
.x26{left:368.751000px;}
.x29{left:370.414500px;}
.x11{left:386.148000px;}
.x22{left:398.470500px;}
.x3{left:399.822000px;}
.x6{left:401.566500px;}
.x5{left:403.869000px;}
.x1b{left:404.989500px;}
.x23{left:408.987000px;}
.x13{left:418.651500px;}
.x20{left:430.047000px;}
.x1f{left:432.513000px;}
.x24{left:444.838500px;}
.x17{left:446.718000px;}
.x14{left:448.326000px;}
.x16{left:449.769000px;}
.x10{left:450.963000px;}
.x9{left:454.699500px;}
.x1c{left:465.826500px;}
.x21{left:473.581500px;}
.x27{left:495.243000px;}
.x25{left:496.837500px;}
.x1e{left:500.385000px;}
.x30{left:502.678500px;}
.x18{left:519.981000px;}
.x1d{left:524.053500px;}
.x2e{left:567.393000px;}
.x2c{left:574.626000px;}
.x31{left:615.289500px;}
.x2b{left:676.852500px;}
.x15{left:697.123500px;}
@media print{
.vb{vertical-align:-43.257600pt;}
.v3{vertical-align:-7.968000pt;}
.v4{vertical-align:-6.485333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.808000pt;}
.v7{vertical-align:14.021333pt;}
.v2{vertical-align:15.002667pt;}
.v1{vertical-align:19.280000pt;}
.v8{vertical-align:21.936000pt;}
.va{vertical-align:33.109333pt;}
.v5{vertical-align:35.941333pt;}
.v9{vertical-align:50.474667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000055pt;}
.ls6{letter-spacing:0.000479pt;}
.ls2e{letter-spacing:0.000501pt;}
.lsc{letter-spacing:0.000882pt;}
.ls8{letter-spacing:0.001181pt;}
.ls7{letter-spacing:0.002079pt;}
.ls10{letter-spacing:0.002195pt;}
.ls24{letter-spacing:0.002205pt;}
.ls3a{letter-spacing:0.002591pt;}
.ls14{letter-spacing:0.002694pt;}
.ls5{letter-spacing:0.002963pt;}
.lsb{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.196932pt;}
.ls2a{letter-spacing:0.894993pt;}
.ls32{letter-spacing:1.474963pt;}
.ls23{letter-spacing:1.480296pt;}
.lsf{letter-spacing:1.900465pt;}
.lsa{letter-spacing:2.652911pt;}
.ls39{letter-spacing:2.655095pt;}
.ls9{letter-spacing:2.655334pt;}
.lse{letter-spacing:2.657253pt;}
.ls17{letter-spacing:2.668629pt;}
.ls12{letter-spacing:2.806152pt;}
.ls1f{letter-spacing:4.349573pt;}
.ls1e{letter-spacing:4.354906pt;}
.ls30{letter-spacing:7.380568pt;}
.ls3{letter-spacing:10.034717pt;}
.ls2{letter-spacing:10.037777pt;}
.ls11{letter-spacing:10.816818pt;}
.ls2d{letter-spacing:11.782347pt;}
.ls26{letter-spacing:11.803145pt;}
.ls20{letter-spacing:11.805573pt;}
.ls21{letter-spacing:11.808479pt;}
.ls1c{letter-spacing:11.810079pt;}
.ls31{letter-spacing:14.085812pt;}
.ls1d{letter-spacing:14.757812pt;}
.ls16{letter-spacing:15.024267pt;}
.ls2c{letter-spacing:15.358993pt;}
.ls19{letter-spacing:15.591132pt;}
.ls4{letter-spacing:16.581885pt;}
.ls1a{letter-spacing:16.669702pt;}
.ls36{letter-spacing:16.942400pt;}
.lsd{letter-spacing:17.418001pt;}
.ls2b{letter-spacing:17.419356pt;}
.ls38{letter-spacing:17.779733pt;}
.ls3c{letter-spacing:18.246152pt;}
.ls37{letter-spacing:18.345067pt;}
.ls29{letter-spacing:19.109812pt;}
.ls34{letter-spacing:19.368296pt;}
.ls33{letter-spacing:19.997630pt;}
.ls18{letter-spacing:20.032267pt;}
.ls35{letter-spacing:21.387485pt;}
.ls13{letter-spacing:21.872818pt;}
.ls3b{letter-spacing:26.390152pt;}
.ls15{letter-spacing:26.569067pt;}
.ls28{letter-spacing:48.798993pt;}
.ls25{letter-spacing:54.734993pt;}
.ls1b{letter-spacing:85.899145pt;}
.ls2f{letter-spacing:529.042245pt;}
.ls22{letter-spacing:672.947733pt;}
.ws11a{word-spacing:-53.133867pt;}
.ws11f{word-spacing:-45.163900pt;}
.ws9a{word-spacing:-34.611401pt;}
.wsc2{word-spacing:-25.738045pt;}
.wsdb{word-spacing:-22.376530pt;}
.wsd3{word-spacing:-21.319906pt;}
.wsb8{word-spacing:-19.893320pt;}
.wsdc{word-spacing:-19.853863pt;}
.wsd8{word-spacing:-16.077863pt;}
.ws26{word-spacing:-14.760588pt;}
.ws12{word-spacing:-12.543875pt;}
.wsa7{word-spacing:-11.019964pt;}
.wsdd{word-spacing:-2.964870pt;}
.ws115{word-spacing:-2.858602pt;}
.wsea{word-spacing:-2.752334pt;}
.ws24{word-spacing:-2.646067pt;}
.ws61{word-spacing:-2.539799pt;}
.ws97{word-spacing:-2.486665pt;}
.wsf6{word-spacing:-2.061594pt;}
.ws87{word-spacing:-2.008460pt;}
.ws8a{word-spacing:-1.955326pt;}
.ws4a{word-spacing:-1.742791pt;}
.ws47{word-spacing:-1.689657pt;}
.wsda{word-spacing:-1.636523pt;}
.ws8c{word-spacing:-1.583389pt;}
.ws86{word-spacing:-1.530255pt;}
.ws88{word-spacing:-1.477121pt;}
.ws150{word-spacing:-1.423988pt;}
.ws65{word-spacing:-1.370854pt;}
.ws31{word-spacing:-1.264586pt;}
.wscf{word-spacing:-1.211452pt;}
.ws2b{word-spacing:-1.158318pt;}
.ws52{word-spacing:-1.105184pt;}
.ws62{word-spacing:-1.052051pt;}
.ws41{word-spacing:-0.945783pt;}
.ws79{word-spacing:-0.892649pt;}
.ws55{word-spacing:-0.786381pt;}
.ws11b{word-spacing:-0.680113pt;}
.wsad{word-spacing:-0.573846pt;}
.ws5d{word-spacing:-0.520712pt;}
.ws53{word-spacing:-0.467578pt;}
.ws1e{word-spacing:-0.414444pt;}
.wsae{word-spacing:-0.361310pt;}
.ws42{word-spacing:-0.308176pt;}
.ws90{word-spacing:-0.255043pt;}
.ws39{word-spacing:-0.201909pt;}
.wsbf{word-spacing:-0.148775pt;}
.ws36{word-spacing:-0.095641pt;}
.ws12a{word-spacing:-0.053134pt;}
.ws49{word-spacing:-0.042507pt;}
.ws8e{word-spacing:-0.037194pt;}
.wsa8{word-spacing:-0.014525pt;}
.ws17{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.010627pt;}
.ws114{word-spacing:0.063761pt;}
.ws3f{word-spacing:0.116895pt;}
.ws7d{word-spacing:0.170028pt;}
.ws113{word-spacing:0.208285pt;}
.ws40{word-spacing:0.223162pt;}
.ws60{word-spacing:0.276296pt;}
.wsb0{word-spacing:0.329430pt;}
.ws54{word-spacing:0.382564pt;}
.wsb1{word-spacing:0.435698pt;}
.ws2d{word-spacing:0.488832pt;}
.ws19{word-spacing:0.541965pt;}
.wsb9{word-spacing:0.701367pt;}
.ws58{word-spacing:0.754501pt;}
.ws92{word-spacing:0.760879pt;}
.wsbc{word-spacing:0.807635pt;}
.wsc0{word-spacing:0.860769pt;}
.ws106{word-spacing:0.888400pt;}
.ws38{word-spacing:0.913903pt;}
.wsd9{word-spacing:0.967036pt;}
.ws11e{word-spacing:0.973415pt;}
.ws5a{word-spacing:1.020170pt;}
.ws68{word-spacing:1.073304pt;}
.wsf7{word-spacing:1.126438pt;}
.ws56{word-spacing:1.179572pt;}
.wsc9{word-spacing:1.232706pt;}
.ws4f{word-spacing:1.285840pt;}
.wsf5{word-spacing:1.338973pt;}
.wsee{word-spacing:1.392107pt;}
.wsa{word-spacing:1.498375pt;}
.wsef{word-spacing:1.502790pt;}
.ws125{word-spacing:1.551509pt;}
.wsaf{word-spacing:1.604643pt;}
.ws77{word-spacing:1.657777pt;}
.wsbe{word-spacing:1.710911pt;}
.wsf8{word-spacing:1.764044pt;}
.wsd6{word-spacing:1.817178pt;}
.ws98{word-spacing:1.870312pt;}
.ws46{word-spacing:1.923446pt;}
.ws124{word-spacing:1.976580pt;}
.ws11c{word-spacing:2.029714pt;}
.ws25{word-spacing:2.082848pt;}
.ws3b{word-spacing:2.135981pt;}
.ws119{word-spacing:2.184015pt;}
.ws7c{word-spacing:2.189115pt;}
.ws95{word-spacing:2.248631pt;}
.ws8b{word-spacing:2.295383pt;}
.ws8d{word-spacing:2.348517pt;}
.wsbb{word-spacing:2.401651pt;}
.ws85{word-spacing:2.454785pt;}
.ws10{word-spacing:2.496478pt;}
.ws13{word-spacing:2.497863pt;}
.ws15{word-spacing:2.503674pt;}
.wsf2{word-spacing:2.507919pt;}
.ws112{word-spacing:2.546181pt;}
.ws9e{word-spacing:2.614186pt;}
.ws74{word-spacing:2.667320pt;}
.wsba{word-spacing:2.720454pt;}
.ws57{word-spacing:2.773588pt;}
.ws99{word-spacing:2.826722pt;}
.wsc7{word-spacing:2.843732pt;}
.ws9b{word-spacing:2.879856pt;}
.ws2{word-spacing:2.932989pt;}
.wscd{word-spacing:2.947943pt;}
.wsce{word-spacing:2.954164pt;}
.ws7f{word-spacing:2.986123pt;}
.ws11d{word-spacing:3.029127pt;}
.ws72{word-spacing:3.039257pt;}
.ws91{word-spacing:3.056268pt;}
.ws23{word-spacing:3.092391pt;}
.ws10b{word-spacing:3.098775pt;}
.ws5f{word-spacing:3.145525pt;}
.ws4c{word-spacing:3.198659pt;}
.ws35{word-spacing:3.226296pt;}
.wsc1{word-spacing:3.251793pt;}
.ws29{word-spacing:3.304927pt;}
.wsfb{word-spacing:3.411194pt;}
.ws5e{word-spacing:3.464328pt;}
.ws2a{word-spacing:3.517462pt;}
.wsca{word-spacing:3.523847pt;}
.ws37{word-spacing:3.570596pt;}
.wsd4{word-spacing:3.623730pt;}
.ws22{word-spacing:3.676864pt;}
.ws89{word-spacing:3.729997pt;}
.wsd7{word-spacing:3.783131pt;}
.ws100{word-spacing:3.833302pt;}
.ws1f{word-spacing:3.836265pt;}
.ws8f{word-spacing:3.889399pt;}
.wsf1{word-spacing:3.942533pt;}
.ws1c{word-spacing:3.995667pt;}
.ws51{word-spacing:4.048801pt;}
.ws1b{word-spacing:4.101935pt;}
.ws1{word-spacing:4.131706pt;}
.ws107{word-spacing:4.155068pt;}
.ws120{word-spacing:4.208202pt;}
.ws0{word-spacing:4.208219pt;}
.ws45{word-spacing:4.261336pt;}
.wsaa{word-spacing:4.288976pt;}
.wsd{word-spacing:4.314470pt;}
.ws30{word-spacing:4.473872pt;}
.wsc{word-spacing:4.527005pt;}
.ws70{word-spacing:4.580139pt;}
.ws10c{word-spacing:4.629034pt;}
.ws3{word-spacing:4.663040pt;}
.ws6d{word-spacing:4.686407pt;}
.wsf4{word-spacing:4.739541pt;}
.ws2f{word-spacing:4.792675pt;}
.ws2e{word-spacing:4.845809pt;}
.wsf9{word-spacing:4.898943pt;}
.wsfa{word-spacing:4.952076pt;}
.wse7{word-spacing:5.005210pt;}
.ws6e{word-spacing:5.058344pt;}
.wsb2{word-spacing:5.111478pt;}
.ws3e{word-spacing:5.164612pt;}
.wsff{word-spacing:5.217746pt;}
.wsd0{word-spacing:5.267384pt;}
.ws32{word-spacing:5.270880pt;}
.ws6a{word-spacing:5.324013pt;}
.ws28{word-spacing:5.377147pt;}
.wse9{word-spacing:5.387774pt;}
.ws6c{word-spacing:5.430281pt;}
.ws101{word-spacing:5.440908pt;}
.ws80{word-spacing:5.483415pt;}
.wseb{word-spacing:5.496647pt;}
.ws5c{word-spacing:5.536549pt;}
.ws33{word-spacing:5.589683pt;}
.wsac{word-spacing:5.642817pt;}
.ws71{word-spacing:5.695951pt;}
.ws82{word-spacing:5.802218pt;}
.ws43{word-spacing:5.855352pt;}
.ws7e{word-spacing:5.908486pt;}
.ws141{word-spacing:5.961620pt;}
.ws75{word-spacing:6.014754pt;}
.ws3d{word-spacing:6.067888pt;}
.ws50{word-spacing:6.121021pt;}
.wsd1{word-spacing:6.174155pt;}
.ws108{word-spacing:6.227289pt;}
.wsc6{word-spacing:6.244308pt;}
.wsed{word-spacing:6.333557pt;}
.ws8{word-spacing:6.386691pt;}
.ws6f{word-spacing:6.439825pt;}
.ws1d{word-spacing:6.492959pt;}
.wsc8{word-spacing:6.546092pt;}
.ws44{word-spacing:6.599226pt;}
.ws7b{word-spacing:6.652360pt;}
.ws1a{word-spacing:6.705494pt;}
.ws128{word-spacing:6.711887pt;}
.ws9d{word-spacing:6.758628pt;}
.ws3a{word-spacing:6.811762pt;}
.wsd2{word-spacing:6.971163pt;}
.wsd5{word-spacing:7.024297pt;}
.ws81{word-spacing:7.130565pt;}
.wsa9{word-spacing:7.183699pt;}
.wsb7{word-spacing:7.236833pt;}
.ws9c{word-spacing:7.289967pt;}
.ws4{word-spacing:7.343100pt;}
.ws116{word-spacing:7.449368pt;}
.ws83{word-spacing:7.502502pt;}
.ws48{word-spacing:7.555636pt;}
.wsb6{word-spacing:7.608770pt;}
.ws96{word-spacing:7.647045pt;}
.ws9f{word-spacing:7.661904pt;}
.wsfd{word-spacing:7.715037pt;}
.wsb4{word-spacing:7.821305pt;}
.wsfc{word-spacing:7.874439pt;}
.ws7a{word-spacing:7.927573pt;}
.wsab{word-spacing:7.980707pt;}
.ws6{word-spacing:8.033841pt;}
.wsbd{word-spacing:8.086975pt;}
.wsf3{word-spacing:8.140108pt;}
.ws2c{word-spacing:8.193242pt;}
.ws118{word-spacing:8.299510pt;}
.wsc4{word-spacing:8.344009pt;}
.ws64{word-spacing:8.512045pt;}
.wsc3{word-spacing:8.565179pt;}
.ws9{word-spacing:8.618313pt;}
.ws121{word-spacing:8.830849pt;}
.ws129{word-spacing:8.883983pt;}
.ws67{word-spacing:8.937116pt;}
.ws105{word-spacing:8.964768pt;}
.wsdf{word-spacing:8.990250pt;}
.ws73{word-spacing:9.043384pt;}
.ws4b{word-spacing:9.096518pt;}
.ws4e{word-spacing:9.149652pt;}
.ws69{word-spacing:9.202786pt;}
.ws59{word-spacing:9.309053pt;}
.wsf0{word-spacing:9.362187pt;}
.ws66{word-spacing:9.415321pt;}
.ws4d{word-spacing:9.574723pt;}
.wsec{word-spacing:9.691617pt;}
.ws7{word-spacing:9.734124pt;}
.ws5b{word-spacing:9.787258pt;}
.ws102{word-spacing:9.840392pt;}
.ws14f{word-spacing:9.893526pt;}
.ws21{word-spacing:9.999794pt;}
.ws20{word-spacing:10.052928pt;}
.ws63{word-spacing:10.159195pt;}
.ws3c{word-spacing:10.212329pt;}
.ws5{word-spacing:10.371731pt;}
.wsb3{word-spacing:10.743668pt;}
.ws78{word-spacing:10.956203pt;}
.ws76{word-spacing:11.168739pt;}
.wsb5{word-spacing:11.540676pt;}
.wsb{word-spacing:11.646944pt;}
.wsa0{word-spacing:11.753211pt;}
.ws14d{word-spacing:11.859479pt;}
.ws13b{word-spacing:12.231416pt;}
.ws27{word-spacing:12.390818pt;}
.ws140{word-spacing:12.656487pt;}
.ws152{word-spacing:13.028424pt;}
.ws15c{word-spacing:13.240960pt;}
.ws142{word-spacing:13.984834pt;}
.wse2{word-spacing:14.421068pt;}
.wse0{word-spacing:14.428408pt;}
.ws13a{word-spacing:14.675574pt;}
.ws11{word-spacing:14.991255pt;}
.ws16{word-spacing:14.993997pt;}
.wsf{word-spacing:15.028128pt;}
.ws14{word-spacing:15.031020pt;}
.ws13f{word-spacing:15.260047pt;}
.ws13c{word-spacing:15.738251pt;}
.ws13d{word-spacing:15.791385pt;}
.ws93{word-spacing:15.927629pt;}
.ws136{word-spacing:16.375858pt;}
.wse4{word-spacing:17.378264pt;}
.ws94{word-spacing:17.417629pt;}
.ws14e{word-spacing:17.810472pt;}
.ws151{word-spacing:18.129275pt;}
.ws13e{word-spacing:18.341811pt;}
.ws149{word-spacing:18.660614pt;}
.ws12f{word-spacing:18.713748pt;}
.ws12e{word-spacing:18.766882pt;}
.ws12d{word-spacing:19.990650pt;}
.wse5{word-spacing:20.081742pt;}
.ws84{word-spacing:20.297137pt;}
.wscc{word-spacing:20.323195pt;}
.wsfe{word-spacing:20.350271pt;}
.ws139{word-spacing:20.520299pt;}
.ws132{word-spacing:20.945370pt;}
.ws12c{word-spacing:21.370441pt;}
.wse8{word-spacing:22.387195pt;}
.wse6{word-spacing:23.101862pt;}
.ws143{word-spacing:23.389528pt;}
.ws131{word-spacing:23.708331pt;}
.ws156{word-spacing:25.142946pt;}
.ws155{word-spacing:25.568017pt;}
.ws12b{word-spacing:26.365025pt;}
.ws158{word-spacing:26.683828pt;}
.wscb{word-spacing:26.781343pt;}
.ws138{word-spacing:28.277844pt;}
.ws130{word-spacing:28.649781pt;}
.ws18{word-spacing:30.498839pt;}
.ws154{word-spacing:30.562600pt;}
.ws111{word-spacing:30.900490pt;}
.ws14c{word-spacing:31.731545pt;}
.ws137{word-spacing:31.890947pt;}
.wse{word-spacing:32.130070pt;}
.ws14b{word-spacing:33.538097pt;}
.ws14a{word-spacing:33.963168pt;}
.ws144{word-spacing:35.344648pt;}
.ws133{word-spacing:37.310601pt;}
.ws159{word-spacing:39.329688pt;}
.ws148{word-spacing:39.382822pt;}
.ws134{word-spacing:40.392365pt;}
.ws145{word-spacing:44.058602pt;}
.ws146{word-spacing:46.502760pt;}
.ws135{word-spacing:46.662162pt;}
.ws110{word-spacing:46.987170pt;}
.ws157{word-spacing:47.459170pt;}
.ws15a{word-spacing:52.307421pt;}
.ws109{word-spacing:68.729319pt;}
.ws10d{word-spacing:69.462611pt;}
.ws117{word-spacing:74.302801pt;}
.ws10f{word-spacing:76.971330pt;}
.ws153{word-spacing:79.126954pt;}
.ws10e{word-spacing:83.395936pt;}
.wsa4{word-spacing:85.902798pt;}
.ws10a{word-spacing:88.117914pt;}
.ws127{word-spacing:106.169780pt;}
.ws126{word-spacing:122.106601pt;}
.ws103{word-spacing:128.129461pt;}
.ws123{word-spacing:131.284946pt;}
.wsa6{word-spacing:136.575010pt;}
.ws122{word-spacing:137.956270pt;}
.wsa2{word-spacing:146.396669pt;}
.wsa5{word-spacing:166.959010pt;}
.ws104{word-spacing:174.069506pt;}
.wsa1{word-spacing:177.240684pt;}
.wsa3{word-spacing:219.219842pt;}
.ws147{word-spacing:255.053187pt;}
.ws15b{word-spacing:310.843747pt;}
.wse1{word-spacing:639.532408pt;}
.wse3{word-spacing:658.111735pt;}
.wsde{word-spacing:732.992317pt;}
.wsc5{word-spacing:805.538456pt;}
.ws34{word-spacing:821.117123pt;}
._27{margin-left:-1928.873070pt;}
._29{margin-left:-1927.820013pt;}
._1a{margin-left:-1914.676015pt;}
._16{margin-left:-1913.740170pt;}
._2b{margin-left:-1911.293171pt;}
._14{margin-left:-1900.361087pt;}
._3a{margin-left:-1898.422451pt;}
._2c{margin-left:-1844.746222pt;}
._6f{margin-left:-1809.484881pt;}
._63{margin-left:-1532.455527pt;}
._35{margin-left:-1474.748532pt;}
._64{margin-left:-1455.623962pt;}
._34{margin-left:-1444.952118pt;}
._48{margin-left:-1306.580884pt;}
._58{margin-left:-1028.417041pt;}
._5c{margin-left:-949.321979pt;}
._70{margin-left:-944.731201pt;}
._3b{margin-left:-896.147833pt;}
._3c{margin-left:-806.009414pt;}
._30{margin-left:-642.768882pt;}
._50{margin-left:-499.098328pt;}
._4b{margin-left:-464.879895pt;}
._56{margin-left:-386.825601pt;}
._52{margin-left:-382.368313pt;}
._51{margin-left:-334.728488pt;}
._3e{margin-left:-326.301457pt;}
._18{margin-left:-149.254455pt;}
._36{margin-left:-29.970558pt;}
._2a{margin-left:-27.091904pt;}
._2{margin-left:-25.935695pt;}
._a{margin-left:-24.484147pt;}
._4{margin-left:-22.188758pt;}
._25{margin-left:-20.669074pt;}
._6{margin-left:-18.660661pt;}
._24{margin-left:-6.121027pt;}
._5{margin-left:-5.177371pt;}
._8{margin-left:-3.485590pt;}
._0{margin-left:-2.065853pt;}
._3{margin-left:-1.147694pt;}
._9{width:1.147694pt;}
._7{width:2.295389pt;}
._1{width:3.749140pt;}
._39{width:4.770716pt;}
._17{width:13.676654pt;}
._1b{width:15.030516pt;}
._10{width:15.974833pt;}
._3d{width:17.045339pt;}
._12{width:17.952879pt;}
._28{width:19.162179pt;}
._1f{width:20.184501pt;}
._20{width:21.593658pt;}
._e{width:23.113232pt;}
._d{width:24.866650pt;}
._13{width:25.774175pt;}
._b{width:27.176921pt;}
._1e{width:28.292732pt;}
._1d{width:29.461683pt;}
._2f{width:30.551973pt;}
._19{width:31.580664pt;}
._2e{width:32.698579pt;}
._22{width:33.765506pt;}
._15{width:35.140633pt;}
._2d{width:36.868535pt;}
._38{width:37.924845pt;}
._21{width:38.913138pt;}
._1c{width:40.086322pt;}
._23{width:41.795088pt;}
._26{width:42.985298pt;}
._c{width:43.994842pt;}
._3f{width:45.667507pt;}
._37{width:46.838555pt;}
._6c{width:48.028765pt;}
._f{width:49.733299pt;}
._60{width:51.722595pt;}
._5d{width:53.930875pt;}
._68{width:55.862841pt;}
._46{width:56.805209pt;}
._6a{width:59.597066pt;}
._59{width:60.625742pt;}
._61{width:62.360047pt;}
._5a{width:64.557648pt;}
._6b{width:67.951847pt;}
._62{width:69.445964pt;}
._65{width:71.460801pt;}
._66{width:72.733895pt;}
._55{width:74.334279pt;}
._5f{width:76.759290pt;}
._54{width:78.950558pt;}
._57{width:86.129998pt;}
._6d{width:89.847260pt;}
._44{width:91.365298pt;}
._53{width:93.921587pt;}
._47{width:96.205488pt;}
._5e{width:99.226444pt;}
._43{width:101.265322pt;}
._45{width:105.298623pt;}
._4e{width:109.342254pt;}
._4f{width:110.648474pt;}
._69{width:115.938097pt;}
._4d{width:121.777550pt;}
._40{width:126.032160pt;}
._4c{width:132.577576pt;}
._5b{width:135.172557pt;}
._33{width:142.103968pt;}
._4a{width:143.083599pt;}
._32{width:145.491083pt;}
._31{width:148.652580pt;}
._41{width:150.460379pt;}
._67{width:153.344339pt;}
._49{width:159.858957pt;}
._6e{width:171.583804pt;}
._42{width:194.572721pt;}
._11{width:743.739986pt;}
.fs5{font-size:26.566933pt;}
.fs9{font-size:30.507253pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:33.556453pt;}
.fsa{font-size:34.320000pt;}
.fse{font-size:36.607040pt;}
.fs2{font-size:37.193600pt;}
.fsf{font-size:37.440000pt;}
.fs7{font-size:38.132747pt;}
.fsc{font-size:41.599360pt;}
.fs8{font-size:41.947547pt;}
.fs3{font-size:42.507200pt;}
.fsd{font-size:45.760960pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y13c{bottom:0.843333pt;}
.y119{bottom:2.324300pt;}
.y1b9{bottom:2.493333pt;}
.y118{bottom:10.926667pt;}
.y1e5{bottom:12.026667pt;}
.y1b8{bottom:16.976667pt;}
.y13d{bottom:20.350000pt;}
.y1e6{bottom:21.450000pt;}
.y1ef{bottom:26.400000pt;}
.y11a{bottom:26.871533pt;}
.y17f{bottom:27.243333pt;}
.y154{bottom:29.076667pt;}
.y1ad{bottom:30.543333pt;}
.y21b{bottom:33.320000pt;}
.y133{bottom:38.976667pt;}
.y1fb{bottom:40.188353pt;}
.y1c2{bottom:40.223920pt;}
.y1e7{bottom:41.112500pt;}
.y17e{bottom:41.176667pt;}
.y161{bottom:43.175000pt;}
.y1ac{bottom:44.476667pt;}
.y1ba{bottom:44.770000pt;}
.y1eb{bottom:45.650000pt;}
.y155{bottom:48.262500pt;}
.y21a{bottom:48.520000pt;}
.y134{bottom:49.798760pt;}
.y180{bottom:50.600000pt;}
.y1fa{bottom:52.079573pt;}
.y1c1{bottom:52.176080pt;}
.y1f0{bottom:52.642700pt;}
.y1ae{bottom:53.900000pt;}
.y13e{bottom:56.870000pt;}
.y21c{bottom:58.800000pt;}
.y11b{bottom:59.478540pt;}
.y1e8{bottom:60.775000pt;}
.y18b{bottom:62.626667pt;}
.y1f9{bottom:63.970427pt;}
.y162{bottom:66.000000pt;}
.y156{bottom:69.300000pt;}
.y15b{bottom:70.638920pt;}
.y181{bottom:71.940000pt;}
.y15a{bottom:73.898733pt;}
.y225{bottom:74.480640pt;}
.y1f8{bottom:75.861867pt;}
.y135{bottom:77.077587pt;}
.y120{bottom:77.844800pt;}
.y1f1{bottom:78.885693pt;}
.y1ed{bottom:79.274067pt;}
.y21d{bottom:79.400000pt;}
.y1e9{bottom:80.437500pt;}
.y1bb{bottom:81.510000pt;}
.y1af{bottom:82.225000pt;}
.y143{bottom:85.525000pt;}
.y18c{bottom:85.664333pt;}
.y224{bottom:87.519200pt;}
.y163{bottom:88.825000pt;}
.y157{bottom:90.337500pt;}
.y1ec{bottom:91.225933pt;}
.y11c{bottom:92.085840pt;}
.y182{bottom:93.280000pt;}
.y13f{bottom:93.390000pt;}
.y1b3{bottom:95.425000pt;}
.y168{bottom:96.525000pt;}
.y21e{bottom:100.000000pt;}
.y1ea{bottom:100.100000pt;}
.y1f7{bottom:100.650000pt;}
.y1bf{bottom:103.125000pt;}
.y137{bottom:103.279733pt;}
.y223{bottom:104.100000pt;}
.y136{bottom:104.356413pt;}
.y1f2{bottom:105.128393pt;}
.y18d{bottom:105.490660pt;}
.y159{bottom:110.426800pt;}
.y1b0{bottom:110.550000pt;}
.y158{bottom:111.375000pt;}
.y164{bottom:111.650000pt;}
.y183{bottom:114.620000pt;}
.y1bc{bottom:118.250000pt;}
.y1a{bottom:119.153333pt;}
.y21f{bottom:120.600000pt;}
.y1de{bottom:121.476667pt;}
.y11d{bottom:124.692847pt;}
.y140{bottom:129.910000pt;}
.y1df{bottom:130.900000pt;}
.y1f3{bottom:131.371387pt;}
.y186{bottom:131.524067pt;}
.y165{bottom:134.475000pt;}
.y184{bottom:135.960000pt;}
.y1b1{bottom:138.875000pt;}
.y220{bottom:141.200000pt;}
.y1b5{bottom:141.424067pt;}
.y185{bottom:143.475933pt;}
.y122{bottom:143.511133pt;}
.y131{bottom:143.526533pt;}
.y123{bottom:143.953333pt;}
.y12f{bottom:144.593533pt;}
.y132{bottom:146.525133pt;}
.y130{bottom:147.298800pt;}
.y12d{bottom:147.377267pt;}
.y125{bottom:149.633733pt;}
.y12e{bottom:150.201333pt;}
.y12b{bottom:150.301800pt;}
.y127{bottom:150.777000pt;}
.y12c{bottom:150.946400pt;}
.y153{bottom:151.039533pt;}
.y124{bottom:151.497867pt;}
.y152{bottom:151.610067pt;}
.y146{bottom:151.777267pt;}
.y148{bottom:152.234867pt;}
.y128{bottom:152.533333pt;}
.y126{bottom:152.733533pt;}
.y12a{bottom:152.798067pt;}
.y1b4{bottom:153.375933pt;}
.y14b{bottom:153.407467pt;}
.y129{bottom:154.222933pt;}
.y150{bottom:154.404800pt;}
.y151{bottom:154.791267pt;}
.y1bd{bottom:154.990000pt;}
.y1e2{bottom:155.375000pt;}
.y14f{bottom:156.911333pt;}
.y166{bottom:157.300000pt;}
.y11e{bottom:157.300147pt;}
.y1f4{bottom:157.614087pt;}
.y14e{bottom:158.303933pt;}
.y144{bottom:158.494600pt;}
.y69{bottom:159.004000pt;}
.y14c{bottom:159.136267pt;}
.y145{bottom:159.201533pt;}
.y14d{bottom:159.473600pt;}
.y147{bottom:160.465067pt;}
.ya5{bottom:161.305333pt;}
.y149{bottom:161.626667pt;}
.y221{bottom:161.800000pt;}
.y14a{bottom:161.969867pt;}
.yc6{bottom:164.317333pt;}
.y1e4{bottom:165.624067pt;}
.y1b7{bottom:166.380000pt;}
.y141{bottom:166.430000pt;}
.y202{bottom:166.574667pt;}
.ycd{bottom:166.973333pt;}
.y1b2{bottom:167.200000pt;}
.yfc{bottom:167.568000pt;}
.y116{bottom:169.996000pt;}
.y1e0{bottom:170.500000pt;}
.y36{bottom:170.958667pt;}
.y4c{bottom:172.144000pt;}
.y8d{bottom:174.890667pt;}
.y177{bottom:175.743333pt;}
.y16a{bottom:177.174067pt;}
.y1e3{bottom:177.575933pt;}
.y167{bottom:180.125000pt;}
.y7b{bottom:182.098667pt;}
.y222{bottom:182.400000pt;}
.y68{bottom:182.914667pt;}
.y1f5{bottom:183.857080pt;}
.ya4{bottom:185.216000pt;}
.y1b6{bottom:185.308000pt;}
.y1a3{bottom:187.843333pt;}
.yc5{bottom:188.228000pt;}
.y169{bottom:189.125933pt;}
.y176{bottom:189.676667pt;}
.y11f{bottom:189.907447pt;}
.y201{bottom:190.485333pt;}
.ycc{bottom:190.884000pt;}
.yfb{bottom:191.478667pt;}
.y1be{bottom:191.730000pt;}
.yb1{bottom:192.690667pt;}
.y15f{bottom:192.917333pt;}
.y115{bottom:193.906667pt;}
.y35{bottom:194.869333pt;}
.y4b{bottom:196.054667pt;}
.y8c{bottom:198.801333pt;}
.y1a2{bottom:201.776667pt;}
.y142{bottom:202.950000pt;}
.ye9{bottom:204.912000pt;}
.y212{bottom:204.920000pt;}
.y19{bottom:205.784000pt;}
.y7a{bottom:206.009333pt;}
.y67{bottom:206.824000pt;}
.y187{bottom:207.276667pt;}
.y178{bottom:207.991667pt;}
.ya3{bottom:209.126667pt;}
.y1f6{bottom:210.099780pt;}
.y1e1{bottom:210.100000pt;}
.y1a4{bottom:211.200000pt;}
.y121{bottom:211.516067pt;}
.yb0{bottom:211.620000pt;}
.y195{bottom:211.842667pt;}
.yc4{bottom:212.137333pt;}
.y200{bottom:214.396000pt;}
.y23c{bottom:214.794667pt;}
.yfa{bottom:215.389333pt;}
.y229{bottom:218.305333pt;}
.y18{bottom:218.402667pt;}
.y1c0{bottom:218.660200pt;}
.y34{bottom:218.780000pt;}
.y4a{bottom:219.965333pt;}
.y211{bottom:220.120000pt;}
.y114{bottom:221.802667pt;}
.y8b{bottom:222.710667pt;}
.ycb{bottom:222.764000pt;}
.yca{bottom:225.216000pt;}
.y244{bottom:225.421333pt;}
.y188{bottom:228.129000pt;}
.ye8{bottom:228.821333pt;}
.y79{bottom:229.920000pt;}
.y213{bottom:230.469600pt;}
.y66{bottom:230.734667pt;}
.ya2{bottom:233.037333pt;}
.yc3{bottom:234.906667pt;}
.y17b{bottom:237.325000pt;}
.y1ff{bottom:238.305333pt;}
.y23b{bottom:238.705333pt;}
.y1a5{bottom:239.525000pt;}
.y189{bottom:242.482533pt;}
.y33{bottom:242.689333pt;}
.y49{bottom:243.874667pt;}
.yc2{bottom:244.018667pt;}
.y8a{bottom:246.621333pt;}
.y243{bottom:249.332000pt;}
.yf9{bottom:249.926667pt;}
.y179{bottom:252.450000pt;}
.y1a9{bottom:252.725000pt;}
.ye7{bottom:252.732000pt;}
.y78{bottom:253.830667pt;}
.y65{bottom:254.645333pt;}
.y18a{bottom:256.836360pt;}
.ya1{bottom:256.946667pt;}
.y113{bottom:261.652000pt;}
.y214{bottom:261.731760pt;}
.y1fe{bottom:262.216000pt;}
.y23a{bottom:262.614667pt;}
.y32{bottom:266.600000pt;}
.y48{bottom:267.785333pt;}
.y1a6{bottom:267.850000pt;}
.yc9{bottom:269.444000pt;}
.y228{bottom:271.330667pt;}
.y242{bottom:273.241333pt;}
.yf8{bottom:273.836000pt;}
.y17{bottom:275.514667pt;}
.y217{bottom:275.700000pt;}
.ye6{bottom:276.642667pt;}
.y77{bottom:277.740000pt;}
.y64{bottom:278.556000pt;}
.y17d{bottom:280.024067pt;}
.ya0{bottom:280.857333pt;}
.yc7{bottom:281.006667pt;}
.y112{bottom:285.562667pt;}
.yc8{bottom:287.541333pt;}
.y89{bottom:289.568000pt;}
.y1fd{bottom:290.112000pt;}
.y227{bottom:290.258667pt;}
.y31{bottom:290.510667pt;}
.y47{bottom:291.696000pt;}
.yc1{bottom:291.838667pt;}
.y17c{bottom:291.975933pt;}
.y215{bottom:292.993920pt;}
.y1cf{bottom:295.624000pt;}
.y1a7{bottom:296.175000pt;}
.y17a{bottom:296.908333pt;}
.y239{bottom:297.152000pt;}
.yf7{bottom:297.746667pt;}
.y1ab{bottom:298.724067pt;}
.ye5{bottom:300.553333pt;}
.y16{bottom:300.606667pt;}
.y76{bottom:301.650667pt;}
.y63{bottom:302.465333pt;}
.y194{bottom:304.742667pt;}
.y9f{bottom:304.768000pt;}
.y88{bottom:308.497333pt;}
.y111{bottom:309.473333pt;}
.y1aa{bottom:310.675933pt;}
.y30{bottom:314.421333pt;}
.y46{bottom:315.606667pt;}
.yc0{bottom:315.749333pt;}
.y203{bottom:316.793333pt;}
.y1ce{bottom:319.534667pt;}
.y238{bottom:321.062667pt;}
.yf6{bottom:321.657333pt;}
.y16e{bottom:323.693333pt;}
.y216{bottom:324.256080pt;}
.ye4{bottom:324.462667pt;}
.y1a8{bottom:324.500000pt;}
.y15{bottom:324.516000pt;}
.y75{bottom:325.561333pt;}
.y219{bottom:325.880800pt;}
.y62{bottom:326.376000pt;}
.y9e{bottom:328.678667pt;}
.y110{bottom:333.384000pt;}
.y1fc{bottom:335.641333pt;}
.y16d{bottom:337.626667pt;}
.y2f{bottom:338.330667pt;}
.y218{bottom:338.919200pt;}
.y45{bottom:339.516000pt;}
.ybf{bottom:339.660000pt;}
.y1cd{bottom:343.445333pt;}
.y237{bottom:344.973333pt;}
.y197{bottom:345.143333pt;}
.yf5{bottom:345.568000pt;}
.ye3{bottom:348.373333pt;}
.y14{bottom:348.426667pt;}
.y193{bottom:349.133333pt;}
.y74{bottom:349.472000pt;}
.y61{bottom:350.286667pt;}
.y9d{bottom:352.588000pt;}
.y16f{bottom:353.753400pt;}
.y18e{bottom:356.326667pt;}
.y10f{bottom:357.293333pt;}
.y196{bottom:359.076667pt;}
.y175{bottom:360.175933pt;}
.y1ee{bottom:362.174667pt;}
.y2e{bottom:362.241333pt;}
.y44{bottom:363.426667pt;}
.ybe{bottom:363.569333pt;}
.y1cc{bottom:367.356000pt;}
.y192{bottom:368.062667pt;}
.y18f{bottom:368.638600pt;}
.y198{bottom:369.432067pt;}
.yf4{bottom:369.477333pt;}
.y1dd{bottom:370.772000pt;}
.y13a{bottom:370.846667pt;}
.y174{bottom:371.874067pt;}
.ye2{bottom:372.284000pt;}
.y13{bottom:372.337333pt;}
.y73{bottom:373.381333pt;}
.y60{bottom:374.197333pt;}
.y9c{bottom:376.498667pt;}
.y205{bottom:376.520000pt;}
.y236{bottom:379.510667pt;}
.y190{bottom:379.803013pt;}
.y10e{bottom:381.204000pt;}
.y1a1{bottom:382.874067pt;}
.y173{bottom:383.350000pt;}
.y2d{bottom:386.152000pt;}
.y170{bottom:387.269007pt;}
.y43{bottom:387.337333pt;}
.ybd{bottom:387.480000pt;}
.y199{bottom:388.068487pt;}
.y139{bottom:389.774667pt;}
.y191{bottom:390.967427pt;}
.y1cb{bottom:391.265333pt;}
.y204{bottom:391.720000pt;}
.yf3{bottom:393.388000pt;}
.y16c{bottom:394.596000pt;}
.y1dc{bottom:394.681333pt;}
.y1a0{bottom:394.825933pt;}
.ye1{bottom:396.194667pt;}
.y12{bottom:396.248000pt;}
.y72{bottom:397.292000pt;}
.y5f{bottom:398.106667pt;}
.y9b{bottom:400.409333pt;}
.y206{bottom:402.000000pt;}
.y235{bottom:403.420000pt;}
.y10d{bottom:405.114667pt;}
.y19a{bottom:406.704907pt;}
.y138{bottom:408.704000pt;}
.y2c{bottom:410.062667pt;}
.y42{bottom:411.248000pt;}
.ybc{bottom:411.390667pt;}
.y20e{bottom:412.951200pt;}
.y1ca{bottom:415.176000pt;}
.y19f{bottom:416.900000pt;}
.yf2{bottom:417.298667pt;}
.y226{bottom:418.214400pt;}
.y1db{bottom:418.592000pt;}
.ye0{bottom:420.104000pt;}
.y11{bottom:420.157333pt;}
.y171{bottom:420.784613pt;}
.y71{bottom:421.202667pt;}
.y5e{bottom:422.017333pt;}
.y207{bottom:422.500000pt;}
.y9a{bottom:424.320000pt;}
.y19b{bottom:425.341327pt;}
.y241{bottom:427.330667pt;}
.y10c{bottom:429.025333pt;}
.y210{bottom:433.119200pt;}
.y2b{bottom:433.972000pt;}
.y41{bottom:435.157333pt;}
.y117{bottom:435.238667pt;}
.ybb{bottom:435.301333pt;}
.y234{bottom:437.957333pt;}
.y1c9{bottom:439.086667pt;}
.yf1{bottom:441.209333pt;}
.y1da{bottom:442.502667pt;}
.y208{bottom:443.000000pt;}
.y19c{bottom:443.977453pt;}
.ydf{bottom:444.014667pt;}
.y10{bottom:444.068000pt;}
.y20d{bottom:444.600000pt;}
.y70{bottom:445.113333pt;}
.y20f{bottom:445.880800pt;}
.y5d{bottom:445.928000pt;}
.y99{bottom:448.229333pt;}
.y240{bottom:451.241333pt;}
.y10b{bottom:452.934667pt;}
.y172{bottom:454.300220pt;}
.y2a{bottom:457.882667pt;}
.y40{bottom:459.068000pt;}
.yba{bottom:459.210667pt;}
.yaf{bottom:461.176000pt;}
.y233{bottom:461.868000pt;}
.y19d{bottom:462.613873pt;}
.y1c8{bottom:462.997333pt;}
.y209{bottom:463.500000pt;}
.yf0{bottom:465.118667pt;}
.y1d9{bottom:466.413333pt;}
.yde{bottom:467.925333pt;}
.yf{bottom:467.978667pt;}
.y6f{bottom:469.022667pt;}
.y5c{bottom:469.838667pt;}
.y98{bottom:472.140000pt;}
.y23f{bottom:475.152000pt;}
.y10a{bottom:476.845333pt;}
.y19e{bottom:481.250293pt;}
.y29{bottom:481.793333pt;}
.y3f{bottom:482.978667pt;}
.yb9{bottom:483.121333pt;}
.y20a{bottom:484.000000pt;}
.yae{bottom:485.086667pt;}
.y232{bottom:485.778667pt;}
.y1c7{bottom:486.906667pt;}
.y15e{bottom:489.338667pt;}
.y1d8{bottom:490.322667pt;}
.ydd{bottom:491.836000pt;}
.ye{bottom:491.889333pt;}
.y5b{bottom:493.748000pt;}
.y97{bottom:496.050667pt;}
.y23e{bottom:499.061333pt;}
.yef{bottom:499.656000pt;}
.y109{bottom:500.756000pt;}
.y20b{bottom:504.500000pt;}
.y28{bottom:505.704000pt;}
.y3e{bottom:506.889333pt;}
.yb8{bottom:507.032000pt;}
.y15d{bottom:508.268000pt;}
.yad{bottom:508.997333pt;}
.y231{bottom:509.688000pt;}
.y1c6{bottom:510.817333pt;}
.y1d7{bottom:514.233333pt;}
.y6e{bottom:514.552000pt;}
.ydc{bottom:515.745333pt;}
.yd{bottom:515.798667pt;}
.y5a{bottom:517.658667pt;}
.y96{bottom:519.961333pt;}
.yee{bottom:523.566667pt;}
.y108{bottom:524.666667pt;}
.y20c{bottom:525.000000pt;}
.y15c{bottom:527.197333pt;}
.y27{bottom:529.613333pt;}
.y3d{bottom:530.798667pt;}
.yb7{bottom:530.942667pt;}
.yac{bottom:532.906667pt;}
.y6d{bottom:533.481333pt;}
.y230{bottom:533.598667pt;}
.y1c5{bottom:534.728000pt;}
.y1d6{bottom:538.144000pt;}
.ydb{bottom:539.656000pt;}
.yc{bottom:539.709333pt;}
.y59{bottom:541.569333pt;}
.y95{bottom:543.870667pt;}
.yed{bottom:547.477333pt;}
.y107{bottom:548.576000pt;}
.y6c{bottom:552.410667pt;}
.y26{bottom:553.524000pt;}
.y13b{bottom:553.730667pt;}
.y3c{bottom:554.709333pt;}
.yb6{bottom:554.852000pt;}
.yab{bottom:556.817333pt;}
.y22f{bottom:557.509333pt;}
.y1c4{bottom:558.638667pt;}
.y1d5{bottom:562.054667pt;}
.y87{bottom:563.553333pt;}
.y58{bottom:565.480000pt;}
.yda{bottom:567.552000pt;}
.y94{bottom:567.781333pt;}
.y245{bottom:568.136000pt;}
.y6b{bottom:571.340000pt;}
.yec{bottom:571.386667pt;}
.yb{bottom:571.589333pt;}
.y106{bottom:572.486667pt;}
.y25{bottom:577.434667pt;}
.y3b{bottom:578.620000pt;}
.yb5{bottom:578.762667pt;}
.yaa{bottom:580.728000pt;}
.y23d{bottom:581.420000pt;}
.y1d4{bottom:585.964000pt;}
.y1c3{bottom:586.533333pt;}
.y86{bottom:587.464000pt;}
.y57{bottom:589.389333pt;}
.y6a{bottom:590.268000pt;}
.y93{bottom:591.692000pt;}
.y22e{bottom:592.046667pt;}
.y105{bottom:596.397333pt;}
.y24{bottom:601.345333pt;}
.y3a{bottom:602.530667pt;}
.yd9{bottom:603.944000pt;}
.yd8{bottom:607.402667pt;}
.yeb{bottom:608.581333pt;}
.y1d3{bottom:609.874667pt;}
.y85{bottom:611.374667pt;}
.y56{bottom:613.300000pt;}
.y92{bottom:615.602667pt;}
.yb4{bottom:615.957333pt;}
.y23{bottom:625.254667pt;}
.ya9{bottom:626.257333pt;}
.yd7{bottom:627.854667pt;}
.yd6{bottom:631.312000pt;}
.y16b{bottom:632.062667pt;}
.y104{bottom:632.262667pt;}
.y84{bottom:635.284000pt;}
.y55{bottom:637.210667pt;}
.y91{bottom:639.512000pt;}
.y22d{bottom:639.866667pt;}
.ya8{bottom:645.186667pt;}
.y39{bottom:648.060000pt;}
.y22{bottom:649.165333pt;}
.yb3{bottom:650.493333pt;}
.yea{bottom:654.110667pt;}
.yd5{bottom:655.222667pt;}
.y1d2{bottom:655.404000pt;}
.y160{bottom:658.596000pt;}
.y83{bottom:659.194667pt;}
.ya{bottom:660.456000pt;}
.y54{bottom:661.121333pt;}
.y90{bottom:663.422667pt;}
.y22c{bottom:663.777333pt;}
.ya7{bottom:664.114667pt;}
.y38{bottom:666.988000pt;}
.y21{bottom:673.076000pt;}
.y1d1{bottom:674.333333pt;}
.y102{bottom:674.404000pt;}
.yd4{bottom:675.676000pt;}
.yd3{bottom:679.133333pt;}
.y9{bottom:681.046667pt;}
.y53{bottom:685.030667pt;}
.y103{bottom:685.762667pt;}
.y8f{bottom:687.333333pt;}
.y22b{bottom:687.688000pt;}
.y1d0{bottom:693.262667pt;}
.y20{bottom:696.986667pt;}
.ya6{bottom:697.224000pt;}
.y101{bottom:698.314667pt;}
.y37{bottom:700.097333pt;}
.yd2{bottom:700.934667pt;}
.y8{bottom:704.292000pt;}
.y52{bottom:708.941333pt;}
.yd1{bottom:716.912000pt;}
.y82{bottom:718.008000pt;}
.yb2{bottom:719.568000pt;}
.y1f{bottom:720.896000pt;}
.y100{bottom:722.225333pt;}
.y7{bottom:724.881333pt;}
.y51{bottom:732.852000pt;}
.y8e{bottom:732.862667pt;}
.y1e{bottom:744.806667pt;}
.yff{bottom:746.134667pt;}
.y6{bottom:748.128000pt;}
.y81{bottom:752.245333pt;}
.y50{bottom:756.762667pt;}
.y5{bottom:768.717333pt;}
.yd0{bottom:769.418667pt;}
.yfe{bottom:770.045333pt;}
.ycf{bottom:772.702667pt;}
.y80{bottom:776.688000pt;}
.y4f{bottom:780.672000pt;}
.y4{bottom:791.964000pt;}
.y1d{bottom:792.628000pt;}
.yfd{bottom:793.956000pt;}
.y7f{bottom:800.597333pt;}
.y4e{bottom:804.582667pt;}
.y3{bottom:812.553333pt;}
.y1c{bottom:816.537333pt;}
.y22a{bottom:817.866667pt;}
.y7e{bottom:824.508000pt;}
.yce{bottom:825.209333pt;}
.y4d{bottom:828.493333pt;}
.y1b{bottom:840.448000pt;}
.y7d{bottom:848.418667pt;}
.y2{bottom:852.404000pt;}
.y7c{bottom:872.329333pt;}
.y1{bottom:876.313333pt;}
.h19{height:26.147101pt;}
.h3{height:30.350141pt;}
.h21{height:31.818112pt;}
.h8{height:31.880400pt;}
.h22{height:35.794688pt;}
.h9{height:35.865600pt;}
.h5{height:36.166007pt;}
.h4{height:36.171341pt;}
.h6{height:37.193707pt;}
.h1d{height:38.043849pt;}
.h2b{height:39.048750pt;}
.h1f{height:39.771263pt;}
.h7{height:39.850400pt;}
.h26{height:40.076556pt;}
.h28{height:43.386833pt;}
.h20{height:43.749980pt;}
.h2{height:44.348486pt;}
.ha{height:44.353820pt;}
.hb{height:45.427101pt;}
.hc{height:45.432434pt;}
.h29{height:47.727251pt;}
.h14{height:48.083101pt;}
.hf{height:49.653067pt;}
.he{height:49.658400pt;}
.h18{height:50.474667pt;}
.h16{height:52.986400pt;}
.h1b{height:53.679733pt;}
.h1c{height:53.685067pt;}
.h1{height:53.865199pt;}
.h10{height:53.871733pt;}
.h13{height:53.877067pt;}
.h24{height:54.798332pt;}
.h1a{height:59.256434pt;}
.h2a{height:59.779999pt;}
.h15{height:61.219101pt;}
.h17{height:67.007733pt;}
.hd{height:75.791733pt;}
.h12{height:76.298400pt;}
.h11{height:89.813067pt;}
.h1e{height:231.000000pt;}
.h23{height:495.000000pt;}
.h25{height:525.066667pt;}
.h27{height:572.800000pt;}
.h0{height:1056.000000pt;}
.w1{width:308.000000pt;}
.w2{width:336.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:8.176667pt;}
.x37{left:9.276667pt;}
.x35{left:10.376667pt;}
.x6b{left:12.100000pt;}
.x4f{left:13.676667pt;}
.x36{left:15.876667pt;}
.x6e{left:18.076667pt;}
.x64{left:19.726667pt;}
.x4d{left:21.376667pt;}
.x34{left:23.576667pt;}
.x4b{left:25.025000pt;}
.x6d{left:26.326667pt;}
.x77{left:27.976667pt;}
.x6a{left:31.276667pt;}
.x7e{left:34.026667pt;}
.x49{left:35.676667pt;}
.x68{left:37.400000pt;}
.x82{left:40.800000pt;}
.x5f{left:43.926667pt;}
.x71{left:46.126667pt;}
.x47{left:52.132007pt;}
.x48{left:54.143467pt;}
.x32{left:56.008333pt;}
.x46{left:64.334233pt;}
.x5e{left:67.883493pt;}
.x45{left:77.101200pt;}
.x51{left:80.250867pt;}
.x70{left:83.548667pt;}
.x7c{left:86.253200pt;}
.x62{left:89.188000pt;}
.x44{left:90.275533pt;}
.x75{left:92.326667pt;}
.x43{left:103.869333pt;}
.x73{left:106.626667pt;}
.x33{left:109.175293pt;}
.x4c{left:111.100000pt;}
.x50{left:113.300000pt;}
.x74{left:114.876667pt;}
.x42{left:117.389067pt;}
.x7a{left:123.200000pt;}
.x72{left:124.791333pt;}
.x41{left:131.399400pt;}
.x52{left:133.383067pt;}
.x69{left:136.125000pt;}
.x7d{left:137.500587pt;}
.x78{left:141.350000pt;}
.x63{left:143.000000pt;}
.x40{left:147.331800pt;}
.x65{left:148.225000pt;}
.x60{left:149.769400pt;}
.x7f{left:152.900000pt;}
.x3f{left:160.001600pt;}
.x53{left:161.789467pt;}
.x4a{left:171.041200pt;}
.x3e{left:177.045733pt;}
.x7{left:178.357333pt;}
.x54{left:179.258200pt;}
.x79{left:182.600000pt;}
.x1{left:185.113333pt;}
.x67{left:189.064000pt;}
.x3d{left:191.275333pt;}
.x8{left:198.282667pt;}
.x55{left:202.894267pt;}
.x3c{left:205.809267pt;}
.x66{left:207.900000pt;}
.x4{left:212.106667pt;}
.x76{left:215.050000pt;}
.x56{left:217.467800pt;}
.x3b{left:218.845733pt;}
.x61{left:220.524333pt;}
.x6c{left:221.650000pt;}
.xf{left:232.281333pt;}
.x6f{left:233.750000pt;}
.x5d{left:236.769133pt;}
.x81{left:239.497333pt;}
.x3a{left:245.400467pt;}
.x57{left:247.492667pt;}
.x2a{left:254.368000pt;}
.x39{left:258.118667pt;}
.x58{left:264.090933pt;}
.x38{left:270.606600pt;}
.x59{left:272.160533pt;}
.x28{left:274.254667pt;}
.x2{left:277.154667pt;}
.xb{left:280.364000pt;}
.xd{left:282.042667pt;}
.x5c{left:283.208933pt;}
.x80{left:286.290667pt;}
.x2f{left:288.920000pt;}
.x7b{left:290.072000pt;}
.xa{left:294.710667pt;}
.x5b{left:297.235400pt;}
.x12{left:298.605333pt;}
.x5a{left:299.876133pt;}
.xe{left:302.170667pt;}
.x2d{left:305.882667pt;}
.x1a{left:321.293333pt;}
.xc{left:322.392000pt;}
.x19{left:323.484000pt;}
.x26{left:327.778667pt;}
.x29{left:329.257333pt;}
.x11{left:343.242667pt;}
.x22{left:354.196000pt;}
.x3{left:355.397333pt;}
.x6{left:356.948000pt;}
.x5{left:358.994667pt;}
.x1b{left:359.990667pt;}
.x23{left:363.544000pt;}
.x13{left:372.134667pt;}
.x20{left:382.264000pt;}
.x1f{left:384.456000pt;}
.x24{left:395.412000pt;}
.x17{left:397.082667pt;}
.x14{left:398.512000pt;}
.x16{left:399.794667pt;}
.x10{left:400.856000pt;}
.x9{left:404.177333pt;}
.x1c{left:414.068000pt;}
.x21{left:420.961333pt;}
.x27{left:440.216000pt;}
.x25{left:441.633333pt;}
.x1e{left:444.786667pt;}
.x30{left:446.825333pt;}
.x18{left:462.205333pt;}
.x1d{left:465.825333pt;}
.x2e{left:504.349333pt;}
.x2c{left:510.778667pt;}
.x31{left:546.924000pt;}
.x2b{left:601.646667pt;}
.x15{left:619.665333pt;}
}




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