
    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_a5587ee614f5ac7f43aed3ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_3776190c6aefad304488b957.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;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_012234be4d125486ddaa66ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.718000;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_2c960a21324eaf04fe2bb417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_26d08379ff21e2c7b806d767.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_d456c2f528fe930dd5993338.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_f95f00e3beb1698a0ccb2fdb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012207;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_f2458822d60a94813c789dc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.015137;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_2c960a21324eaf04fe2bb417.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_26d08379ff21e2c7b806d767.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_3efc2ee2019f689a1ce18bc4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_ecd723e4e4ccad2ac2e0b4ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_559c0575eec952ac14f11c98.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958000;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_3b3e8532be22612f7cc04890.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.958000;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);}
.ve{vertical-align:-54.674400px;}
.v9{vertical-align:-33.790800px;}
.v6{vertical-align:-30.321000px;}
.vd{vertical-align:-26.606400px;}
.v11{vertical-align:-24.759000px;}
.v3{vertical-align:-15.830400px;}
.v10{vertical-align:-8.832000px;}
.vb{vertical-align:-4.201200px;}
.vf{vertical-align:-2.431800px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.278600px;}
.vc{vertical-align:4.200600px;}
.v8{vertical-align:6.514800px;}
.v5{vertical-align:13.759800px;}
.v2{vertical-align:17.582400px;}
.v1{vertical-align:27.972000px;}
.v7{vertical-align:32.409000px;}
.v4{vertical-align:35.739600px;}
.ls5{letter-spacing:-4.620000px;}
.ls20{letter-spacing:-3.273600px;}
.ls19{letter-spacing:-3.168000px;}
.lsc{letter-spacing:-2.956800px;}
.ls6b{letter-spacing:-2.692800px;}
.ls0{letter-spacing:-2.640000px;}
.ls11{letter-spacing:-2.508000px;}
.ls68{letter-spacing:-2.481600px;}
.ls36{letter-spacing:-2.428800px;}
.ls51{letter-spacing:-2.323200px;}
.ls3d{letter-spacing:-2.270400px;}
.ls54{letter-spacing:-2.268000px;}
.ls72{letter-spacing:-2.246400px;}
.ls5f{letter-spacing:-2.217600px;}
.ls65{letter-spacing:-2.164800px;}
.ls63{letter-spacing:-2.006400px;}
.ls25{letter-spacing:-1.900800px;}
.ls26{letter-spacing:-1.848000px;}
.lsa{letter-spacing:-1.795200px;}
.ls56{letter-spacing:-1.742400px;}
.ls3c{letter-spacing:-1.689600px;}
.ls55{letter-spacing:-1.561800px;}
.ls45{letter-spacing:-1.479600px;}
.ls59{letter-spacing:-1.470000px;}
.ls48{letter-spacing:-1.372800px;}
.ls5d{letter-spacing:-1.344000px;}
.ls9{letter-spacing:-1.320000px;}
.ls57{letter-spacing:-1.214400px;}
.ls3b{letter-spacing:-1.161600px;}
.ls62{letter-spacing:-1.134000px;}
.ls49{letter-spacing:-1.109700px;}
.ls4c{letter-spacing:-1.108800px;}
.ls4e{letter-spacing:-1.056000px;}
.ls60{letter-spacing:-1.003200px;}
.ls5e{letter-spacing:-0.966000px;}
.ls22{letter-spacing:-0.950400px;}
.ls64{letter-spacing:-0.924000px;}
.ls47{letter-spacing:-0.897600px;}
.ls2a{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.739200px;}
.ls14{letter-spacing:-0.686400px;}
.ls4b{letter-spacing:-0.672000px;}
.ls4f{letter-spacing:-0.633600px;}
.ls5b{letter-spacing:-0.528000px;}
.ls39{letter-spacing:-0.475200px;}
.ls2f{letter-spacing:-0.336000px;}
.ls24{letter-spacing:-0.316800px;}
.ls75{letter-spacing:-0.280800px;}
.ls31{letter-spacing:-0.211200px;}
.ls50{letter-spacing:-0.158400px;}
.ls12{letter-spacing:-0.084000px;}
.ls67{letter-spacing:-0.052800px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.052800px;}
.ls42{letter-spacing:0.062400px;}
.ls1f{letter-spacing:0.094838px;}
.ls2d{letter-spacing:0.104400px;}
.ls17{letter-spacing:0.105600px;}
.ls2e{letter-spacing:0.108000px;}
.ls5c{letter-spacing:0.123300px;}
.ls34{letter-spacing:0.153000px;}
.ls6{letter-spacing:0.158400px;}
.ls30{letter-spacing:0.171000px;}
.ls4{letter-spacing:0.198000px;}
.ls7{letter-spacing:0.210000px;}
.lsb{letter-spacing:0.211200px;}
.ls6f{letter-spacing:0.234000px;}
.ls13{letter-spacing:0.252000px;}
.ls46{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.369600px;}
.ls76{letter-spacing:0.421200px;}
.lsd{letter-spacing:0.422400px;}
.ls6c{letter-spacing:0.468000px;}
.ls52{letter-spacing:0.475200px;}
.ls41{letter-spacing:0.510000px;}
.ls4d{letter-spacing:0.513000px;}
.ls70{letter-spacing:0.514800px;}
.ls61{letter-spacing:0.528000px;}
.ls69{letter-spacing:0.561000px;}
.ls1d{letter-spacing:0.580800px;}
.lsf{letter-spacing:0.594000px;}
.ls58{letter-spacing:0.612000px;}
.ls3f{letter-spacing:0.627000px;}
.ls6d{letter-spacing:0.702000px;}
.ls5a{letter-spacing:0.739200px;}
.ls1a{letter-spacing:0.792000px;}
.ls3e{letter-spacing:0.816000px;}
.ls29{letter-spacing:0.924000px;}
.ls16{letter-spacing:0.950400px;}
.ls2b{letter-spacing:1.008000px;}
.ls27{letter-spacing:1.050000px;}
.ls8{letter-spacing:1.056000px;}
.ls1b{letter-spacing:1.108800px;}
.ls28{letter-spacing:1.176000px;}
.ls2c{letter-spacing:1.218000px;}
.ls33{letter-spacing:1.275000px;}
.ls6e{letter-spacing:1.310400px;}
.ls23{letter-spacing:1.372800px;}
.ls71{letter-spacing:1.404000px;}
.ls35{letter-spacing:1.425600px;}
.ls44{letter-spacing:1.478400px;}
.ls77{letter-spacing:1.684800px;}
.ls21{letter-spacing:1.742400px;}
.ls15{letter-spacing:1.900800px;}
.ls6a{letter-spacing:2.006400px;}
.ls2{letter-spacing:2.123208px;}
.ls40{letter-spacing:2.217600px;}
.lse{letter-spacing:2.323200px;}
.ls1{letter-spacing:2.335529px;}
.ls32{letter-spacing:2.481600px;}
.ls53{letter-spacing:2.534400px;}
.ls37{letter-spacing:2.587200px;}
.ls38{letter-spacing:2.692800px;}
.ls73{letter-spacing:2.714400px;}
.ls66{letter-spacing:2.745600px;}
.ls10{letter-spacing:3.036000px;}
.ls43{letter-spacing:3.147000px;}
.ls74{letter-spacing:3.556800px;}
.ls4a{letter-spacing:4.224000px;}
.ls3a{letter-spacing:205.086000px;}
.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;}
}
.ws5a{word-spacing:-205.086000px;}
.wsb5{word-spacing:-21.756000px;}
.wsb7{word-spacing:-21.504000px;}
.wsc{word-spacing:-16.051200px;}
.wsbc{word-spacing:-15.724800px;}
.wsbb{word-spacing:-14.882400px;}
.ws1c{word-spacing:-14.836800px;}
.ws2b{word-spacing:-14.520000px;}
.ws1e{word-spacing:-14.308800px;}
.wsb{word-spacing:-14.150400px;}
.ws1b{word-spacing:-14.097600px;}
.ws51{word-spacing:-14.076000px;}
.ws9{word-spacing:-13.939200px;}
.ws1f{word-spacing:-13.780800px;}
.ws60{word-spacing:-13.770000px;}
.ws6{word-spacing:-13.728000px;}
.wsba{word-spacing:-13.572000px;}
.wsbf{word-spacing:-13.478400px;}
.ws2a{word-spacing:-13.411200px;}
.ws1d{word-spacing:-12.988800px;}
.wsb9{word-spacing:-12.682800px;}
.wsb8{word-spacing:-12.636000px;}
.wsbe{word-spacing:-12.589200px;}
.ws68{word-spacing:-12.413756px;}
.ws7{word-spacing:-12.408000px;}
.ws2d{word-spacing:-12.096000px;}
.ws8{word-spacing:-11.932800px;}
.ws31{word-spacing:-11.928000px;}
.wsbd{word-spacing:-11.887200px;}
.ws2c{word-spacing:-11.880000px;}
.ws2e{word-spacing:-11.844000px;}
.ws2f{word-spacing:-11.130000px;}
.ws8b{word-spacing:-10.809300px;}
.wsa{word-spacing:-10.771200px;}
.ws74{word-spacing:-10.248000px;}
.ws30{word-spacing:-10.080000px;}
.wsa8{word-spacing:-9.996000px;}
.ws99{word-spacing:-9.954000px;}
.ws3d{word-spacing:-9.468000px;}
.ws8a{word-spacing:-9.450000px;}
.ws3{word-spacing:-8.910000px;}
.ws73{word-spacing:-4.224000px;}
.ws27{word-spacing:-3.273600px;}
.ws1a{word-spacing:-3.234000px;}
.ws22{word-spacing:-3.036000px;}
.wsb1{word-spacing:-2.745600px;}
.ws4e{word-spacing:-2.692800px;}
.ws4d{word-spacing:-2.587200px;}
.ws7f{word-spacing:-2.534400px;}
.ws40{word-spacing:-2.481600px;}
.ws66{word-spacing:-2.217600px;}
.wsc0{word-spacing:-2.006400px;}
.ws26{word-spacing:-1.900800px;}
.ws34{word-spacing:-1.742400px;}
.ws6d{word-spacing:-1.478400px;}
.wsc6{word-spacing:-1.450800px;}
.ws4b{word-spacing:-1.425600px;}
.ws36{word-spacing:-1.372800px;}
.ws13{word-spacing:-1.320000px;}
.ws42{word-spacing:-1.275000px;}
.ws5d{word-spacing:-1.108800px;}
.wsc3{word-spacing:-1.076400px;}
.ws3a{word-spacing:-1.008000px;}
.ws39{word-spacing:-0.966000px;}
.ws12{word-spacing:-0.950400px;}
.ws10{word-spacing:-0.897600px;}
.ws38{word-spacing:-0.840000px;}
.ws90{word-spacing:-0.739200px;}
.ws21{word-spacing:-0.594000px;}
.wsa2{word-spacing:-0.528000px;}
.ws7d{word-spacing:-0.475200px;}
.wsc2{word-spacing:-0.468000px;}
.ws89{word-spacing:-0.459000px;}
.ws65{word-spacing:-0.456000px;}
.ws11{word-spacing:-0.422400px;}
.wsb4{word-spacing:-0.408000px;}
.ws78{word-spacing:-0.342000px;}
.wsf{word-spacing:-0.316800px;}
.ws6f{word-spacing:-0.264000px;}
.wsc4{word-spacing:-0.234000px;}
.ws1{word-spacing:-0.212321px;}
.ws33{word-spacing:-0.211200px;}
.wse{word-spacing:-0.210000px;}
.ws4{word-spacing:-0.198000px;}
.ws9f{word-spacing:-0.171000px;}
.ws16{word-spacing:-0.158400px;}
.ws43{word-spacing:-0.153000px;}
.ws44{word-spacing:-0.108000px;}
.ws17{word-spacing:-0.105600px;}
.ws2{word-spacing:0.000000px;}
.wsb2{word-spacing:0.052800px;}
.ws24{word-spacing:0.084000px;}
.ws41{word-spacing:0.158400px;}
.wsd{word-spacing:0.210000px;}
.ws3f{word-spacing:0.211200px;}
.wsb0{word-spacing:0.316800px;}
.ws50{word-spacing:0.475200px;}
.ws91{word-spacing:0.528000px;}
.ws7e{word-spacing:0.580800px;}
.ws3e{word-spacing:0.588000px;}
.ws7a{word-spacing:0.633600px;}
.ws25{word-spacing:0.686400px;}
.ws70{word-spacing:0.897600px;}
.ws35{word-spacing:0.950400px;}
.wsa1{word-spacing:1.003200px;}
.ws79{word-spacing:1.056000px;}
.ws77{word-spacing:1.108800px;}
.ws72{word-spacing:1.109700px;}
.ws5b{word-spacing:1.161600px;}
.ws88{word-spacing:1.214400px;}
.ws71{word-spacing:1.372800px;}
.ws14{word-spacing:1.425600px;}
.ws6e{word-spacing:1.479600px;}
.ws85{word-spacing:1.561800px;}
.ws5e{word-spacing:1.689600px;}
.ws87{word-spacing:1.742400px;}
.ws4f{word-spacing:1.795200px;}
.ws7b{word-spacing:1.848000px;}
.ws37{word-spacing:1.900800px;}
.ws15{word-spacing:1.953600px;}
.wsa7{word-spacing:2.006400px;}
.wsaf{word-spacing:2.164800px;}
.wsa0{word-spacing:2.217600px;}
.ws5f{word-spacing:2.270400px;}
.ws7c{word-spacing:2.323200px;}
.ws4c{word-spacing:2.428800px;}
.wsc5{word-spacing:2.480400px;}
.wsb3{word-spacing:2.481600px;}
.ws23{word-spacing:2.508000px;}
.wsc1{word-spacing:2.692800px;}
.ws18{word-spacing:3.062400px;}
.ws28{word-spacing:3.168000px;}
.ws32{word-spacing:3.273600px;}
.ws0{word-spacing:3.432000px;}
.ws5{word-spacing:4.818000px;}
.ws19{word-spacing:8.382000px;}
.ws5c{word-spacing:8.448000px;}
.ws86{word-spacing:11.088000px;}
.ws8e{word-spacing:30.478258px;}
.ws9a{word-spacing:35.391677px;}
.ws45{word-spacing:35.392277px;}
.ws69{word-spacing:36.001462px;}
.ws8c{word-spacing:42.355858px;}
.ws6a{word-spacing:45.852862px;}
.ws55{word-spacing:53.441850px;}
.ws59{word-spacing:53.459460px;}
.wsa9{word-spacing:53.488373px;}
.ws29{word-spacing:53.908800px;}
.ws49{word-spacing:57.260158px;}
.ws46{word-spacing:57.260758px;}
.ws92{word-spacing:67.173677px;}
.ws76{word-spacing:69.523272px;}
.ws63{word-spacing:69.845226px;}
.ws61{word-spacing:69.855060px;}
.ws57{word-spacing:70.526460px;}
.ws54{word-spacing:70.543242px;}
.wsac{word-spacing:70.871830px;}
.ws53{word-spacing:75.298476px;}
.ws58{word-spacing:75.320460px;}
.ws9c{word-spacing:82.431072px;}
.ws82{word-spacing:88.609277px;}
.ws93{word-spacing:88.981558px;}
.ws97{word-spacing:90.345672px;}
.ws80{word-spacing:91.616458px;}
.wsa4{word-spacing:92.306078px;}
.wsb6{word-spacing:96.374838px;}
.ws67{word-spacing:102.291862px;}
.ws9e{word-spacing:102.948672px;}
.wsad{word-spacing:103.034838px;}
.ws47{word-spacing:103.983672px;}
.ws6c{word-spacing:106.540872px;}
.ws4a{word-spacing:109.281072px;}
.ws3c{word-spacing:112.751472px;}
.ws3b{word-spacing:116.647872px;}
.ws48{word-spacing:117.708677px;}
.ws64{word-spacing:120.576660px;}
.ws62{word-spacing:120.582264px;}
.ws52{word-spacing:123.357060px;}
.ws56{word-spacing:123.374328px;}
.wsa3{word-spacing:128.725404px;}
.wsaa{word-spacing:135.873173px;}
.ws9b{word-spacing:139.577158px;}
.wsa5{word-spacing:150.665004px;}
.wsae{word-spacing:152.773030px;}
.wsab{word-spacing:153.159430px;}
.ws9d{word-spacing:170.373677px;}
.ws75{word-spacing:192.242758px;}
.ws94{word-spacing:196.103472px;}
.ws20{word-spacing:205.086000px;}
.wsa6{word-spacing:206.220000px;}
.ws98{word-spacing:206.430000px;}
.ws84{word-spacing:207.354000px;}
.ws95{word-spacing:229.919477px;}
.ws96{word-spacing:251.787958px;}
.ws83{word-spacing:273.452370px;}
.ws6b{word-spacing:386.038008px;}
.ws8f{word-spacing:553.361970px;}
.ws8d{word-spacing:774.111077px;}
.ws81{word-spacing:1617.306658px;}
._4c{margin-left:-206.505600px;}
._10{margin-left:-139.469400px;}
._11{margin-left:-76.540800px;}
._d{margin-left:-25.740000px;}
._e{margin-left:-16.962000px;}
._31{margin-left:-13.869078px;}
._c{margin-left:-8.382000px;}
._5{margin-left:-7.010695px;}
._6{margin-left:-4.831200px;}
._13{margin-left:-3.758166px;}
._3{margin-left:-2.664626px;}
._0{margin-left:-1.531200px;}
._1{width:1.742400px;}
._2{width:3.352800px;}
._17{width:4.363811px;}
._4{width:5.399549px;}
._7{width:6.749851px;}
._37{width:7.777440px;}
._15{width:8.801760px;}
._14{width:10.522826px;}
._b{width:11.688600px;}
._f{width:13.074600px;}
._9{width:15.110400px;}
._8{width:16.219200px;}
._18{width:18.556320px;}
._a{width:19.929600px;}
._1d{width:25.564800px;}
._19{width:27.035400px;}
._16{width:41.160000px;}
._2d{width:53.354598px;}
._23{width:65.616600px;}
._47{width:72.428381px;}
._2c{width:77.610654px;}
._3b{width:86.009809px;}
._3e{width:90.284938px;}
._2b{width:94.799298px;}
._32{width:96.814469px;}
._29{width:99.554532px;}
._45{width:105.885980px;}
._49{width:107.526432px;}
._48{width:108.781632px;}
._40{width:109.843469px;}
._1f{width:116.441033px;}
._3d{width:117.698069px;}
._3c{width:119.940671px;}
._20{width:124.764233px;}
._24{width:128.545200px;}
._41{width:130.301069px;}
._1e{width:131.336069px;}
._30{width:133.954469px;}
._22{width:136.694069px;}
._1b{width:140.164469px;}
._1a{width:144.061469px;}
._27{width:147.613944px;}
._43{width:149.787202px;}
._21{width:156.974755px;}
._44{width:171.725602px;}
._33{width:203.020031px;}
._25{width:205.086000px;}
._39{width:223.515869px;}
._34{width:228.612236px;}
._3a{width:258.717938px;}
._36{width:314.816868px;}
._2f{width:427.399603px;}
._28{width:532.790459px;}
._2e{width:537.756440px;}
._2a{width:543.221737px;}
._38{width:594.726468px;}
._4d{width:615.495622px;}
._1c{width:776.472268px;}
._3f{width:777.507268px;}
._4a{width:1332.829800px;}
._46{width:1337.081400px;}
._42{width:1866.442200px;}
._35{width:1867.618200px;}
._12{width:1889.332200px;}
._4b{width:2071.822200px;}
._26{width:2094.418200px;}
.fc5{color:transparent;}
.fc4{color:rgb(30,45,83);}
.fc3{color:rgb(160,32,44);}
.fc1{color:rgb(233,71,52);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1b{font-size:30.218400px;}
.fs7{font-size:30.782400px;}
.fs1e{font-size:31.177800px;}
.fsb{font-size:34.800000px;}
.fsf{font-size:36.000000px;}
.fs1c{font-size:37.796400px;}
.fs1f{font-size:38.995800px;}
.fsc{font-size:39.331800px;}
.fs9{font-size:41.100000px;}
.fs3{font-size:42.000000px;}
.fs10{font-size:43.626000px;}
.fs13{font-size:44.653800px;}
.fs17{font-size:44.656800px;}
.fs21{font-size:46.800000px;}
.fs12{font-size:47.941200px;}
.fs6{font-size:48.972000px;}
.fsd{font-size:49.195200px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:52.800000px;}
.fs1d{font-size:52.905600px;}
.fs20{font-size:54.585000px;}
.fs8{font-size:57.000000px;}
.fs15{font-size:59.477400px;}
.fs19{font-size:59.481000px;}
.fs11{font-size:60.981000px;}
.fs2{font-size:66.000000px;}
.fse{font-size:68.860800px;}
.fs14{font-size:74.392800px;}
.fs18{font-size:74.397000px;}
.fs4{font-size:84.000000px;}
.fs16{font-size:104.131200px;}
.fs1a{font-size:104.137200px;}
.fs1{font-size:106.160400px;}
.fs0{font-size:264.000000px;}
.ydc{bottom:-281.943252px;}
.y144{bottom:-280.242252px;}
.y10d{bottom:-278.967252px;}
.y175{bottom:-278.542752px;}
.ydb{bottom:-265.882950px;}
.y143{bottom:-264.181950px;}
.y10c{bottom:-262.906950px;}
.y174{bottom:-262.482450px;}
.yd9{bottom:-256.162650px;}
.y141{bottom:-254.461650px;}
.y10a{bottom:-253.186650px;}
.y172{bottom:-252.762150px;}
.y148{bottom:-239.228700px;}
.ye0{bottom:-238.772400px;}
.y179{bottom:-237.529200px;}
.y111{bottom:-235.796400px;}
.y13f{bottom:-231.390300px;}
.y170{bottom:-229.690800px;}
.yd7{bottom:-227.266500px;}
.y108{bottom:-224.290500px;}
.yda{bottom:-202.618650px;}
.y142{bottom:-200.917650px;}
.y10b{bottom:-199.642650px;}
.y173{bottom:-199.218150px;}
.y140{bottom:-120.024028px;}
.y171{bottom:-118.324528px;}
.ye1{bottom:-116.019743px;}
.y112{bottom:-113.043743px;}
.y149{bottom:-112.189788px;}
.y17a{bottom:-110.490288px;}
.y1b8{bottom:-107.030100px;}
.yd8{bottom:-106.117098px;}
.y109{bottom:-103.141098px;}
.ydf{bottom:-93.103800px;}
.y147{bottom:-91.402800px;}
.y231{bottom:-90.574950px;}
.y110{bottom:-90.127800px;}
.y178{bottom:-89.703300px;}
.y208{bottom:-87.233100px;}
.yde{bottom:-77.858550px;}
.y146{bottom:-76.157550px;}
.y10f{bottom:-74.882550px;}
.y1bd{bottom:-74.847001px;}
.y177{bottom:-74.458050px;}
.ydd{bottom:-62.613300px;}
.y7a{bottom:-62.028750px;}
.y145{bottom:-60.912300px;}
.y10e{bottom:-59.637300px;}
.y88{bottom:-59.575500px;}
.y252{bottom:-59.361750px;}
.y27b{bottom:-59.332350px;}
.y176{bottom:-59.212800px;}
.y1de{bottom:-59.147250px;}
.y236{bottom:-58.389978px;}
.y1c7{bottom:-56.905650px;}
.y247{bottom:-56.609550px;}
.y26a{bottom:-56.184300px;}
.yb6{bottom:-56.130300px;}
.ya5{bottom:-55.202250px;}
.y20d{bottom:-55.047978px;}
.y1bc{bottom:-48.795900px;}
.y2d1{bottom:-47.353050px;}
.y2b0{bottom:-46.041000px;}
.y292{bottom:-44.931750px;}
.y2c0{bottom:-43.431150px;}
.y2a0{bottom:-42.320700px;}
.y7e{bottom:-41.617319px;}
.y8d{bottom:-39.164069px;}
.y256{bottom:-38.950169px;}
.y280{bottom:-38.920769px;}
.y1e3{bottom:-38.735669px;}
.y1cb{bottom:-36.494219px;}
.y24b{bottom:-36.197969px;}
.y26e{bottom:-35.772719px;}
.ybb{bottom:-35.718869px;}
.yaa{bottom:-34.790819px;}
.y235{bottom:-32.337300px;}
.y2d5{bottom:-31.173029px;}
.y296{bottom:-29.249789px;}
.y2b4{bottom:-29.170976px;}
.y20c{bottom:-28.995300px;}
.y2a4{bottom:-26.638739px;}
.y2c4{bottom:-26.561126px;}
.y7d{bottom:-24.386700px;}
.y8c{bottom:-21.933450px;}
.y255{bottom:-21.719550px;}
.y27f{bottom:-21.690150px;}
.y1e2{bottom:-21.505050px;}
.y1ca{bottom:-19.263600px;}
.y24a{bottom:-18.967350px;}
.y26d{bottom:-18.542100px;}
.yba{bottom:-18.488250px;}
.ya9{bottom:-17.560200px;}
.y2d4{bottom:-17.514750px;}
.y295{bottom:-16.011600px;}
.y2b3{bottom:-15.515100px;}
.yce{bottom:-15.295650px;}
.yd6{bottom:-15.295602px;}
.y136{bottom:-13.594650px;}
.y13e{bottom:-13.594602px;}
.y124{bottom:-13.572552px;}
.y12c{bottom:-13.572450px;}
.y2a3{bottom:-13.400550px;}
.yfb{bottom:-13.101102px;}
.yf3{bottom:-13.101000px;}
.y2c3{bottom:-12.905250px;}
.y107{bottom:-12.319650px;}
.y102{bottom:-12.319602px;}
.y18b{bottom:-12.184152px;}
.y193{bottom:-12.184050px;}
.y16f{bottom:-11.895150px;}
.y16a{bottom:-11.895102px;}
.y1ab{bottom:-11.645550px;}
.y163{bottom:-10.436202px;}
.y15b{bottom:-10.436100px;}
.y0{bottom:0.000000px;}
.ycd{bottom:0.764700px;}
.y79{bottom:1.048050px;}
.y135{bottom:2.465700px;}
.y123{bottom:2.487750px;}
.y2d0{bottom:2.647050px;}
.yf2{bottom:2.959200px;}
.y87{bottom:3.501300px;}
.y291{bottom:3.529800px;}
.y251{bottom:3.715200px;}
.y101{bottom:3.740700px;}
.y27a{bottom:3.744600px;}
.y18a{bottom:3.876150px;}
.y1dd{bottom:3.929700px;}
.y2af{bottom:3.958950px;}
.y169{bottom:4.165200px;}
.y225{bottom:4.815150px;}
.y15a{bottom:5.624100px;}
.y1aa{bottom:6.193050px;}
.yd4{bottom:10.484850px;}
.y13c{bottom:12.185850px;}
.y121{bottom:12.208200px;}
.yf9{bottom:12.679650px;}
.yff{bottom:13.460850px;}
.y188{bottom:13.596450px;}
.y167{bottom:13.885350px;}
.y161{bottom:15.344400px;}
.yf7{bottom:30.069900px;}
.y15f{bottom:30.577350px;}
.y186{bottom:36.667800px;}
.y11f{bottom:41.104200px;}
.y166{bottom:41.917235px;}
.yd2{bottom:45.325650px;}
.y8{bottom:47.111700px;}
.yd5{bottom:64.029000px;}
.y13d{bottom:65.730000px;}
.y122{bottom:65.752050px;}
.yfa{bottom:66.223500px;}
.y100{bottom:67.005000px;}
.y189{bottom:67.140450px;}
.y168{bottom:67.429500px;}
.y162{bottom:68.888400px;}
.y2be{bottom:82.663800px;}
.y98{bottom:97.334700px;}
.y44{bottom:97.334850px;}
.y2a5{bottom:102.446550px;}
.y25d{bottom:102.862200px;}
.y20e{bottom:103.474050px;}
.y1e4{bottom:103.509450px;}
.y8e{bottom:103.568550px;}
.y13a{bottom:103.692900px;}
.yfd{bottom:108.395700px;}
.y43{bottom:111.584850px;}
.y284{bottom:114.032550px;}
.y2a7{bottom:114.528600px;}
.y97{bottom:116.834700px;}
.y25{bottom:116.900700px;}
.y6e{bottom:125.834850px;}
.y1e6{bottom:126.009000px;}
.y92{bottom:127.258350px;}
.y25a{bottom:131.749050px;}
.y283{bottom:133.532550px;}
.y239{bottom:133.730850px;}
.y2a6{bottom:134.028600px;}
.y96{bottom:136.334700px;}
.y24{bottom:139.400700px;}
.y6d{bottom:140.084850px;}
.y1e5{bottom:145.509000px;}
.y91{bottom:146.758350px;}
.y187{bottom:148.034071px;}
.y259{bottom:151.249050px;}
.yf8{bottom:152.822557px;}
.y238{bottom:153.230850px;}
.y6c{bottom:154.335000px;}
.y95{bottom:155.834700px;}
.y160{bottom:157.616262px;}
.y269{bottom:159.744000px;}
.yd3{bottom:160.531009px;}
.y23{bottom:161.900700px;}
.y13b{bottom:162.228085px;}
.y120{bottom:162.253602px;}
.y207{bottom:162.757500px;}
.yfe{bottom:163.506244px;}
.y165{bottom:163.928250px;}
.y268{bottom:166.636650px;}
.y6b{bottom:168.585000px;}
.y1fb{bottom:170.914650px;}
.yd1{bottom:173.543700px;}
.y139{bottom:175.244700px;}
.y127{bottom:175.266900px;}
.y94{bottom:175.334700px;}
.y86{bottom:175.335000px;}
.yf6{bottom:175.738350px;}
.y267{bottom:176.469450px;}
.y105{bottom:176.519700px;}
.y18e{bottom:176.655300px;}
.y16d{bottom:176.944200px;}
.y250{bottom:178.206000px;}
.y15e{bottom:178.403250px;}
.y294{bottom:180.136624px;}
.y224{bottom:180.813000px;}
.y2a2{bottom:182.747674px;}
.y6a{bottom:182.835000px;}
.y265{bottom:184.846800px;}
.y2d3{bottom:184.860454px;}
.y2b2{bottom:186.172354px;}
.y84{bottom:187.213650px;}
.y1db{bottom:187.641900px;}
.y1fa{bottom:188.754300px;}
.y2c2{bottom:188.782204px;}
.yd0{bottom:188.788950px;}
.y24e{bottom:190.298400px;}
.y138{bottom:190.489950px;}
.y126{bottom:190.512150px;}
.yf5{bottom:190.983600px;}
.y104{bottom:191.764950px;}
.y18d{bottom:191.900550px;}
.y16c{bottom:192.189450px;}
.y293{bottom:193.376250px;}
.y15d{bottom:193.648500px;}
.y42{bottom:194.834700px;}
.y2a1{bottom:195.987300px;}
.y69{bottom:197.085000px;}
.y2d2{bottom:198.520350px;}
.y290{bottom:198.567000px;}
.y2b1{bottom:199.832250px;}
.y22{bottom:201.408600px;}
.y2c1{bottom:202.442100px;}
.y223{bottom:203.467800px;}
.ycf{bottom:204.034200px;}
.y29f{bottom:204.519000px;}
.y137{bottom:205.735200px;}
.y125{bottom:205.757400px;}
.y1d5{bottom:206.115000px;}
.yf4{bottom:206.228850px;}
.y103{bottom:207.010200px;}
.y18c{bottom:207.145800px;}
.y16b{bottom:207.434700px;}
.y15c{bottom:208.893750px;}
.y24d{bottom:209.091150px;}
.y28f{bottom:209.651250px;}
.y29e{bottom:210.659700px;}
.y264{bottom:211.021800px;}
.y68{bottom:211.335000px;}
.y263{bottom:212.361150px;}
.y41{bottom:214.334700px;}
.y28d{bottom:216.087450px;}
.y8b{bottom:216.155435px;}
.y27e{bottom:216.398585px;}
.y1e1{bottom:216.583835px;}
.y29c{bottom:217.095900px;}
.yb9{bottom:219.600635px;}
.ya8{bottom:220.528685px;}
.y21{bottom:223.908600px;}
.y67{bottom:225.585000px;}
.y289{bottom:226.736850px;}
.y28b{bottom:228.034800px;}
.y7c{bottom:230.917385px;}
.y25e{bottom:231.661800px;}
.y1e7{bottom:233.341800px;}
.y8a{bottom:233.370635px;}
.y254{bottom:233.584535px;}
.y27d{bottom:233.613785px;}
.y1e0{bottom:233.799035px;}
.y93{bottom:233.834700px;}
.y1c9{bottom:236.040485px;}
.y249{bottom:236.336735px;}
.y26c{bottom:236.761985px;}
.yb8{bottom:236.815835px;}
.y1fc{bottom:237.301050px;}
.ya7{bottom:237.743885px;}
.y6{bottom:237.824700px;}
.y66{bottom:239.835150px;}
.y1e8{bottom:241.260300px;}
.y288{bottom:242.781450px;}
.y20{bottom:246.408600px;}
.y1d7{bottom:247.379700px;}
.y210{bottom:248.055450px;}
.y7b{bottom:248.149800px;}
.y89{bottom:250.603050px;}
.y253{bottom:250.816950px;}
.y27c{bottom:250.846200px;}
.y1df{bottom:251.031450px;}
.y226{bottom:252.014550px;}
.y119{bottom:253.075098px;}
.y1c8{bottom:253.272900px;}
.y40{bottom:253.334700px;}
.ye8{bottom:253.546398px;}
.y248{bottom:253.569150px;}
.y299{bottom:253.940550px;}
.y26b{bottom:253.994400px;}
.yb7{bottom:254.048250px;}
.y65{bottom:254.085150px;}
.y180{bottom:254.463348px;}
.y1e9{bottom:254.542200px;}
.ya6{bottom:254.976300px;}
.y211{bottom:255.973800px;}
.y150{bottom:256.211298px;}
.y1fd{bottom:258.501300px;}
.y1da{bottom:258.810900px;}
.y1ea{bottom:262.460700px;}
.y85{bottom:266.233050px;}
.y1dc{bottom:266.661450px;}
.y266{bottom:267.565050px;}
.y83{bottom:267.880650px;}
.y64{bottom:268.335150px;}
.y1f{bottom:268.908600px;}
.y118{bottom:269.135400px;}
.y212{bottom:269.255700px;}
.ye7{bottom:269.606700px;}
.y17f{bottom:270.523650px;}
.y14f{bottom:272.271600px;}
.y286{bottom:272.789250px;}
.y3f{bottom:272.834700px;}
.y227{bottom:273.214950px;}
.y1eb{bottom:275.742600px;}
.y213{bottom:277.174200px;}
.y24f{bottom:277.917900px;}
.y116{bottom:278.855700px;}
.ye5{bottom:279.327150px;}
.y28e{bottom:279.639300px;}
.y1fe{bottom:279.701850px;}
.y17d{bottom:280.243950px;}
.y14d{bottom:281.991900px;}
.y63{bottom:282.585150px;}
.y1ec{bottom:283.660950px;}
.y29d{bottom:284.413350px;}
.y82{bottom:289.190400px;}
.y214{bottom:290.456100px;}
.y1d8{bottom:290.927700px;}
.y3e{bottom:292.334700px;}
.y25f{bottom:293.642700px;}
.y228{bottom:294.415350px;}
.y262{bottom:295.697550px;}
.y62{bottom:296.835150px;}
.y1ed{bottom:296.942850px;}
.y285{bottom:297.873600px;}
.y215{bottom:298.374600px;}
.y297{bottom:299.782650px;}
.y28a{bottom:300.469800px;}
.y1ff{bottom:300.902100px;}
.y4{bottom:301.284150px;}
.y1ee{bottom:304.861350px;}
.y28c{bottom:305.124150px;}
.y1d4{bottom:307.945200px;}
.y17c{bottom:308.275834px;}
.y1e{bottom:308.416500px;}
.y1bb{bottom:309.928867px;}
.y14c{bottom:310.023784px;}
.y61{bottom:311.085150px;}
.y216{bottom:311.656500px;}
.y3d{bottom:311.834700px;}
.y298{bottom:311.956350px;}
.y11d{bottom:313.696350px;}
.yec{bottom:314.167800px;}
.y229{bottom:315.615750px;}
.y1ce{bottom:317.974050px;}
.y1ef{bottom:318.143250px;}
.y217{bottom:319.575000px;}
.y200{bottom:322.102500px;}
.y60{bottom:325.335150px;}
.y1f0{bottom:326.061750px;}
.y234{bottom:326.408766px;}
.y1d2{bottom:329.276700px;}
.y20b{bottom:329.750616px;}
.y1d{bottom:330.916500px;}
.y3c{bottom:331.334700px;}
.y80{bottom:331.338000px;}
.y3{bottom:332.070750px;}
.y117{bottom:332.399700px;}
.y218{bottom:332.856750px;}
.ye6{bottom:332.871150px;}
.y17e{bottom:333.788100px;}
.y14e{bottom:335.535900px;}
.y1ba{bottom:335.961667px;}
.y22a{bottom:336.816150px;}
.y1f1{bottom:339.343650px;}
.y5f{bottom:339.585150px;}
.y219{bottom:340.775250px;}
.y201{bottom:343.302900px;}
.y260{bottom:344.222850px;}
.y1d1{bottom:348.776700px;}
.y3b{bottom:350.834700px;}
.y233{bottom:352.443066px;}
.y81{bottom:352.663050px;}
.y1c{bottom:353.416500px;}
.y5e{bottom:353.835300px;}
.y21a{bottom:354.057150px;}
.y20a{bottom:355.784916px;}
.y22b{bottom:358.016550px;}
.y1f2{bottom:360.520950px;}
.y1c6{bottom:361.015500px;}
.y1b9{bottom:362.020500px;}
.y29b{bottom:362.674950px;}
.y2{bottom:362.857200px;}
.y261{bottom:363.523500px;}
.y202{bottom:364.503300px;}
.y1c5{bottom:367.186650px;}
.y5d{bottom:368.085300px;}
.y1f3{bottom:368.462550px;}
.y287{bottom:368.496000px;}
.y3a{bottom:370.334700px;}
.y1d9{bottom:371.448150px;}
.y184{bottom:371.751000px;}
.y154{bottom:373.498950px;}
.y114{bottom:373.790400px;}
.y29a{bottom:374.240700px;}
.ye3{bottom:374.261850px;}
.y21b{bottom:375.234600px;}
.ybe{bottom:375.594150px;}
.y1b{bottom:375.916500px;}
.yc7{bottom:376.060650px;}
.y1c4{bottom:377.019600px;}
.y232{bottom:378.503400px;}
.y1d6{bottom:378.632550px;}
.y22c{bottom:379.216800px;}
.y1f4{bottom:381.721350px;}
.y209{bottom:381.845250px;}
.y5c{bottom:382.335300px;}
.y21c{bottom:383.176050px;}
.y1c2{bottom:385.396800px;}
.y203{bottom:385.703700px;}
.y24c{bottom:389.523750px;}
.y39{bottom:389.834700px;}
.y21d{bottom:396.435000px;}
.y5b{bottom:396.585300px;}
.yc3{bottom:399.009000px;}
.y22d{bottom:400.417200px;}
.y1f5{bottom:402.921750px;}
.y204{bottom:406.903950px;}
.y38{bottom:409.334700px;}
.y5a{bottom:410.835300px;}
.y1f6{bottom:410.863350px;}
.y7f{bottom:411.584700px;}
.y1a{bottom:415.424400px;}
.y21e{bottom:417.635400px;}
.yc2{bottom:418.509000px;}
.y22e{bottom:421.617600px;}
.y1f7{bottom:424.122150px;}
.y59{bottom:425.085300px;}
.y12e{bottom:425.356800px;}
.y1bf{bottom:425.362350px;}
.y21f{bottom:425.576850px;}
.y205{bottom:428.104500px;}
.y37{bottom:428.834700px;}
.y115{bottom:428.900944px;}
.y11e{bottom:428.901709px;}
.ye4{bottom:429.372394px;}
.yed{bottom:429.373159px;}
.y185{bottom:430.286185px;}
.y17b{bottom:430.286850px;}
.y23c{bottom:431.084700px;}
.y155{bottom:432.034136px;}
.y14b{bottom:432.034800px;}
.y1f8{bottom:432.063600px;}
.y132{bottom:434.974050px;}
.y19{bottom:437.924400px;}
.y220{bottom:438.835650px;}
.y11c{bottom:441.914550px;}
.yeb{bottom:442.385850px;}
.y22f{bottom:442.818000px;}
.y183{bottom:443.302800px;}
.y153{bottom:445.050750px;}
.y1f9{bottom:445.322550px;}
.y221{bottom:446.777250px;}
.y36{bottom:448.334700px;}
.y206{bottom:449.304750px;}
.yb5{bottom:451.240500px;}
.y113{bottom:454.960500px;}
.ye2{bottom:456.237000px;}
.y11b{bottom:457.159800px;}
.yea{bottom:457.631100px;}
.yb4{bottom:458.187000px;}
.y182{bottom:458.548050px;}
.y222{bottom:460.036050px;}
.y152{bottom:460.296000px;}
.y230{bottom:464.018400px;}
.y195{bottom:464.959050px;}
.yb2{bottom:466.564200px;}
.y12a{bottom:467.168700px;}
.y35{bottom:467.834700px;}
.y1c3{bottom:468.115200px;}
.yf0{bottom:468.916650px;}
.y1c0{bottom:470.082300px;}
.y11a{bottom:472.405050px;}
.ye9{bottom:472.876350px;}
.y181{bottom:473.793300px;}
.y151{bottom:475.541250px;}
.y18{bottom:477.432150px;}
.y128{bottom:484.558950px;}
.y34{bottom:487.334700px;}
.y14a{bottom:488.397000px;}
.y1{bottom:492.540750px;}
.y25c{bottom:493.474050px;}
.yb1{bottom:496.240200px;}
.yee{bottom:497.812650px;}
.y17{bottom:499.932150px;}
.y191{bottom:501.993450px;}
.y70{bottom:503.224050px;}
.y158{bottom:503.741400px;}
.y33{bottom:506.834700px;}
.yb0{bottom:514.901400px;}
.y18f{bottom:517.226400px;}
.y282{bottom:517.258350px;}
.y12b{bottom:520.712550px;}
.yac{bottom:521.933550px;}
.y16{bottom:522.432150px;}
.yf1{bottom:522.460500px;}
.y23b{bottom:522.724050px;}
.y90{bottom:524.911800px;}
.y58{bottom:526.334700px;}
.y156{bottom:526.812750px;}
.y237{bottom:528.584700px;}
.y281{bottom:536.758350px;}
.y1be{bottom:539.049750px;}
.y8f{bottom:544.411800px;}
.y15{bottom:544.932150px;}
.yb3{bottom:545.583750px;}
.y57{bottom:545.834700px;}
.y20f{bottom:548.084700px;}
.y258{bottom:551.820000px;}
.y192{bottom:555.537450px;}
.y279{bottom:555.585000px;}
.y159{bottom:557.285400px;}
.y5{bottom:559.905300px;}
.y32{bottom:560.834700px;}
.y78{bottom:564.661500px;}
.y56{bottom:565.334700px;}
.yab{bottom:566.075250px;}
.y278{bottom:569.162400px;}
.y257{bottom:571.320000px;}
.y77{bottom:575.542500px;}
.y276{bottom:577.539750px;}
.y1c1{bottom:583.769850px;}
.y75{bottom:583.919700px;}
.y14{bottom:584.440050px;}
.y31{bottom:584.834700px;}
.y272{bottom:591.537750px;}
.y246{bottom:593.149500px;}
.y245{bottom:599.616900px;}
.y55{bottom:604.334700px;}
.y129{bottom:607.311750px;}
.y243{bottom:607.994100px;}
.y2ec{bottom:608.084550px;}
.yad{bottom:613.017600px;}
.y273{bottom:613.304100px;}
.y275{bottom:617.063700px;}
.y242{bottom:618.491250px;}
.yef{bottom:618.959400px;}
.y2eb{bottom:623.834550px;}
.y1d3{bottom:623.834700px;}
.y1cc{bottom:626.084700px;}
.y274{bottom:626.805300px;}
.y26f{bottom:630.138750px;}
.y74{bottom:636.488400px;}
.y157{bottom:638.179500px;}
.yae{bottom:639.639600px;}
.y54{bottom:643.334700px;}
.y190{bottom:644.269950px;}
.y277{bottom:651.642750px;}
.yaf{bottom:657.555000px;}
.y2ea{bottom:657.584550px;}
.y23f{bottom:661.552050px;}
.y53{bottom:662.834700px;}
.y76{bottom:666.638100px;}
.y73{bottom:674.815500px;}
.y52{bottom:682.334700px;}
.yc5{bottom:686.834700px;}
.y2e9{bottom:689.084550px;}
.y271{bottom:693.063450px;}
.y244{bottom:695.613600px;}
.y51{bottom:701.834700px;}
.ybf{bottom:704.084700px;}
.y2e8{bottom:704.834550px;}
.y1cd{bottom:713.481000px;}
.y241{bottom:718.707900px;}
.y2e7{bottom:720.584550px;}
.y50{bottom:721.334700px;}
.y130{bottom:725.834700px;}
.y1d0{bottom:726.265800px;}
.y270{bottom:728.209350px;}
.y2e6{bottom:736.334550px;}
.y4f{bottom:740.834700px;}
.y12f{bottom:743.084700px;}
.y71{bottom:743.965650px;}
.y1cf{bottom:745.765800px;}
.y23d{bottom:750.748650px;}
.y2e5{bottom:752.084550px;}
.y4e{bottom:760.334700px;}
.y2e4{bottom:767.834550px;}
.y240{bottom:771.099450px;}
.y4d{bottom:779.834700px;}
.y1a9{bottom:781.602000px;}
.y72{bottom:782.292750px;}
.y2e3{bottom:783.584700px;}
.y4c{bottom:799.334700px;}
.y25b{bottom:801.584700px;}
.ybd{bottom:804.868050px;}
.y2c8{bottom:805.350000px;}
.yc6{bottom:805.474050px;}
.y23e{bottom:811.283550px;}
.y4b{bottom:818.834700px;}
.y6f{bottom:821.084700px;}
.yc1{bottom:828.008850px;}
.y131{bottom:829.639350px;}
.y1ac{bottom:834.313350px;}
.y2e2{bottom:836.084700px;}
.y4a{bottom:838.334700px;}
.y194{bottom:839.427600px;}
.y196{bottom:839.653350px;}
.y12d{bottom:845.026050px;}
.yc0{bottom:847.508850px;}
.y197{bottom:850.954950px;}
.y2e1{bottom:851.834700px;}
.y1ad{bottom:853.717050px;}
.y49{bottom:857.834700px;}
.y23a{bottom:860.084700px;}
.ya4{bottom:867.402000px;}
.y2e0{bottom:867.584700px;}
.y164{bottom:868.252500px;}
.yfc{bottom:868.677000px;}
.y134{bottom:869.952000px;}
.y198{bottom:870.358650px;}
.ycc{bottom:871.653000px;}
.y1ae{bottom:873.120900px;}
.y30{bottom:873.930900px;}
.ya3{bottom:875.276550px;}
.y13{bottom:877.334700px;}
.yca{bottom:882.137850px;}
.y2df{bottom:883.334700px;}
.ya1{bottom:883.653900px;}
.y2bd{bottom:883.984500px;}
.y2ae{bottom:886.960500px;}
.y2cf{bottom:888.331500px;}
.y199{bottom:889.762500px;}
.y2bf{bottom:890.553300px;}
.y1af{bottom:892.524600px;}
.y2f{bottom:896.430900px;}
.y48{bottom:896.834700px;}
.y2bc{bottom:897.193800px;}
.y2ac{bottom:897.559950px;}
.y2cd{bottom:897.619050px;}
.y2de{bottom:899.084700px;}
.y9f{bottom:902.537850px;}
.y2ba{bottom:906.528150px;}
.y2b6{bottom:906.817800px;}
.y19a{bottom:909.166200px;}
.y133{bottom:910.171050px;}
.y2b8{bottom:911.306100px;}
.y1b0{bottom:911.928300px;}
.y2ab{bottom:912.154950px;}
.y2dd{bottom:914.834700px;}
.y12{bottom:916.334700px;}
.y106{bottom:916.978650px;}
.y19b{bottom:917.291400px;}
.ya0{bottom:919.448700px;}
.y9e{bottom:927.165750px;}
.y19c{bottom:928.570050px;}
.y2dc{bottom:930.584700px;}
.y1b1{bottom:931.332150px;}
.y9a{bottom:933.436950px;}
.ycb{bottom:935.682000px;}
.y11{bottom:935.834700px;}
.y2e{bottom:935.938800px;}
.y2ca{bottom:936.405600px;}
.y19d{bottom:936.695100px;}
.y2b7{bottom:939.986100px;}
.y2db{bottom:946.334700px;}
.y19e{bottom:947.973750px;}
.y1b2{bottom:950.758800px;}
.y10{bottom:955.334700px;}
.y19f{bottom:956.098950px;}
.y2d{bottom:958.438800px;}
.y2aa{bottom:962.275500px;}
.ya2{bottom:962.673300px;}
.y2ad{bottom:967.014450px;}
.y2ce{bottom:967.073400px;}
.y1a0{bottom:967.377450px;}
.y1b3{bottom:970.162650px;}
.y16e{bottom:973.644900px;}
.yf{bottom:974.834700px;}
.y1a1{bottom:975.502650px;}
.yc8{bottom:977.072700px;}
.y99{bottom:977.715600px;}
.y2da{bottom:977.834700px;}
.y2c{bottom:980.938800px;}
.y2b9{bottom:981.938250px;}
.y1a2{bottom:986.781300px;}
.y2a8{bottom:986.937600px;}
.y1b4{bottom:989.566350px;}
.y2cb{bottom:989.940600px;}
.y2d9{bottom:993.584700px;}
.ye{bottom:994.334700px;}
.y1a3{bottom:994.906350px;}
.y2b{bottom:1003.438800px;}
.y1a4{bottom:1006.208100px;}
.y1b5{bottom:1008.970050px;}
.y2c9{bottom:1009.125000px;}
.y2d8{bottom:1009.334700px;}
.yd{bottom:1013.834700px;}
.y2bb{bottom:1016.433900px;}
.y2d7{bottom:1025.084700px;}
.y1a5{bottom:1025.611800px;}
.y2a{bottom:1025.938800px;}
.y1b6{bottom:1028.373900px;}
.yc9{bottom:1032.180750px;}
.yc{bottom:1033.334700px;}
.y1a6{bottom:1033.713900px;}
.y9b{bottom:1038.631050px;}
.y2a9{bottom:1039.773000px;}
.y1a7{bottom:1045.015500px;}
.y1b7{bottom:1047.777600px;}
.y29{bottom:1048.438800px;}
.y9c{bottom:1052.238900px;}
.yb{bottom:1052.834700px;}
.y1a8{bottom:1053.117750px;}
.y2d6{bottom:1056.584700px;}
.y2b5{bottom:1056.781350px;}
.y2cc{bottom:1062.660150px;}
.y47{bottom:1072.334700px;}
.y9d{bottom:1074.644550px;}
.y28{bottom:1087.946700px;}
.ya{bottom:1091.834700px;}
.y2c7{bottom:1096.334550px;}
.yc4{bottom:1096.334700px;}
.y27{bottom:1110.446700px;}
.y46{bottom:1111.334700px;}
.y2c6{bottom:1113.584550px;}
.ybc{bottom:1113.584700px;}
.y2c5{bottom:1130.834550px;}
.y45{bottom:1130.834700px;}
.y9{bottom:1131.113250px;}
.y26{bottom:1132.946700px;}
.y7{bottom:1197.611700px;}
.h40{height:22.270961px;}
.h46{height:22.978039px;}
.hf{height:25.607227px;}
.h47{height:27.128239px;}
.h15{height:27.544922px;}
.h41{height:27.855947px;}
.h48{height:28.739905px;}
.h10{height:28.987537px;}
.h3c{height:29.596537px;}
.h45{height:29.858827px;}
.h3e{height:30.205537px;}
.h38{height:30.266137px;}
.h4b{height:30.458839px;}
.h5{height:32.135742px;}
.h1a{height:32.152362px;}
.h25{height:32.909851px;}
.h2f{height:32.912062px;}
.h3a{height:33.188137px;}
.h1d{height:35.332664px;}
.h2d{height:35.502337px;}
.h4f{height:36.036914px;}
.h4e{height:36.128320px;}
.h11{height:36.256862px;}
.h50{height:36.265430px;}
.h43{height:38.991427px;}
.he{height:39.021973px;}
.h4a{height:40.229145px;}
.h8{height:40.657031px;}
.h7{height:40.760156px;}
.h9{height:40.914844px;}
.hc{height:41.285449px;}
.h18{height:42.747337px;}
.hd{height:43.612793px;}
.h2a{height:43.834844px;}
.h33{height:43.837497px;}
.h1b{height:44.942997px;}
.h13{height:50.750410px;}
.h4{height:50.821289px;}
.ha{height:51.143555px;}
.h29{height:54.827494px;}
.h32{height:54.830589px;}
.h6{height:64.271484px;}
.h30{height:64.586062px;}
.h36{height:64.586662px;}
.h31{height:64.677862px;}
.h16{height:64.727137px;}
.h27{height:65.318251px;}
.h26{height:65.318851px;}
.hb{height:65.442275px;}
.h2b{height:76.744694px;}
.h35{height:76.749116px;}
.h3{height:81.227220px;}
.h1e{height:176.893500px;}
.h1f{height:179.644500px;}
.h23{height:181.134000px;}
.h1c{height:181.182000px;}
.h20{height:181.996500px;}
.h21{height:182.883000px;}
.h22{height:183.372000px;}
.h24{height:183.384000px;}
.h42{height:183.790500px;}
.h44{height:184.276500px;}
.h49{height:185.374500px;}
.h4c{height:189.639000px;}
.h4d{height:192.945000px;}
.h2{height:201.996094px;}
.h14{height:211.128000px;}
.h3f{height:214.500000px;}
.h19{height:220.464000px;}
.h2e{height:220.488000px;}
.h17{height:224.431500px;}
.h3b{height:228.259500px;}
.h3d{height:234.979500px;}
.h2c{height:235.518000px;}
.h12{height:240.588000px;}
.h39{height:240.603000px;}
.h28{height:304.725000px;}
.h37{height:331.500000px;}
.h34{height:344.077500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wf{width:361.416000px;}
.we{width:361.417500px;}
.w10{width:376.723500px;}
.wd{width:376.725000px;}
.w5{width:384.378000px;}
.w4{width:384.379500px;}
.wc{width:391.605000px;}
.w7{width:476.857500px;}
.w9{width:481.110000px;}
.w3{width:488.340000px;}
.w2{width:488.976000px;}
.wb{width:496.063500px;}
.wa{width:497.481000px;}
.w8{width:748.347000px;}
.w6{width:813.685500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x50{left:-353.115150px;}
.x4f{left:-339.835500px;}
.x52{left:-328.143439px;}
.x54{left:-304.505555px;}
.x51{left:-266.251350px;}
.x4d{left:-264.872700px;}
.x53{left:-203.261850px;}
.x72{left:-200.296650px;}
.x55{left:-179.128619px;}
.x4e{left:-110.360314px;}
.x0{left:0.000000px;}
.xf1{left:10.314000px;}
.x59{left:18.139650px;}
.x5d{left:19.842455px;}
.x65{left:26.601150px;}
.x60{left:29.094000px;}
.xf3{left:30.885750px;}
.xe8{left:32.247750px;}
.x63{left:35.495716px;}
.x5b{left:38.298750px;}
.x44{left:39.767850px;}
.x3a{left:40.818000px;}
.x84{left:42.378000px;}
.xd8{left:44.515350px;}
.x15{left:49.960500px;}
.xaf{left:51.024000px;}
.x43{left:53.047500px;}
.xca{left:55.973250px;}
.xdf{left:57.402000px;}
.x7{left:59.527500px;}
.x6e{left:62.362500px;}
.x8{left:63.779550px;}
.x88{left:65.934150px;}
.x76{left:70.285050px;}
.xde{left:71.394900px;}
.x13{left:73.431750px;}
.x9{left:76.414650px;}
.x93{left:77.654100px;}
.x9e{left:78.811933px;}
.x39{left:80.585850px;}
.xdd{left:81.791250px;}
.xa{left:82.913400px;}
.x4{left:83.976300px;}
.x3{left:85.039350px;}
.x12{left:86.963400px;}
.x1{left:89.291400px;}
.x2{left:91.509900px;}
.x38{left:93.865500px;}
.x90{left:95.892600px;}
.x5{left:97.674450px;}
.xaa{left:99.518550px;}
.x5a{left:101.263800px;}
.x61{left:103.205550px;}
.x89{left:104.773350px;}
.x8a{left:106.439100px;}
.x5e{left:107.616150px;}
.xe7{left:109.100850px;}
.xab{left:111.933300px;}
.xda{left:113.219100px;}
.x6d{left:115.408800px;}
.xc2{left:117.918150px;}
.x1a{left:119.773200px;}
.x1b{left:120.838650px;}
.x16{left:126.435450px;}
.x28{left:127.899264px;}
.xcb{left:131.362200px;}
.xac{left:137.378250px;}
.xf4{left:139.122000px;}
.x87{left:140.311800px;}
.xe6{left:141.610800px;}
.xc3{left:143.363250px;}
.x19{left:145.723500px;}
.xc9{left:150.594900px;}
.xd9{left:153.803250px;}
.xe{left:156.333300px;}
.xae{left:157.865550px;}
.x27{left:158.972700px;}
.xa9{left:164.362950px;}
.x5c{left:165.571800px;}
.x62{left:166.818300px;}
.x36{left:168.828300px;}
.xc1{left:170.347800px;}
.xe0{left:172.498500px;}
.xad{left:175.851450px;}
.xc7{left:178.116900px;}
.x85{left:182.033100px;}
.x86{left:184.935150px;}
.xea{left:186.742200px;}
.x3b{left:189.621150px;}
.x64{left:190.966776px;}
.x6f{left:192.584850px;}
.x14{left:195.683700px;}
.x8c{left:197.490994px;}
.xe9{left:200.628829px;}
.x91{left:204.612900px;}
.x3c{left:213.754381px;}
.xb1{left:220.315057px;}
.x9d{left:223.574550px;}
.x18{left:229.780050px;}
.xf{left:235.590300px;}
.xc8{left:242.655000px;}
.x8e{left:244.519500px;}
.x7e{left:246.867750px;}
.x7d{left:248.709150px;}
.x7b{left:252.391950px;}
.x7f{left:255.453300px;}
.x77{left:256.696200px;}
.x17{left:258.975275px;}
.x5f{left:260.339869px;}
.x7a{left:261.598950px;}
.x79{left:262.818900px;}
.x7c{left:265.880250px;}
.x8b{left:272.022900px;}
.xdb{left:273.684450px;}
.xba{left:276.585600px;}
.x42{left:282.522686px;}
.xa0{left:283.606200px;}
.xc6{left:284.964450px;}
.xa1{left:287.404350px;}
.xbf{left:288.486300px;}
.xb4{left:291.524850px;}
.x78{left:293.501250px;}
.xb5{left:295.299900px;}
.xb8{left:297.003300px;}
.xa5{left:301.998300px;}
.xb3{left:304.668600px;}
.x80{left:310.695300px;}
.xb7{left:312.517950px;}
.xa6{left:314.980950px;}
.xa3{left:316.937550px;}
.x81{left:321.743700px;}
.x37{left:323.341800px;}
.xb9{left:325.638750px;}
.x9c{left:333.142500px;}
.xa7{left:334.593000px;}
.xb6{left:336.158400px;}
.x26{left:338.457000px;}
.xb{left:340.157400px;}
.xa2{left:342.442350px;}
.x6c{left:344.885100px;}
.xb2{left:346.663050px;}
.xbd{left:348.059100px;}
.xa4{left:349.302000px;}
.xdc{left:352.855500px;}
.x9b{left:356.612850px;}
.xc{left:359.291250px;}
.x6{left:361.238100px;}
.x31{left:363.628650px;}
.x10{left:367.939050px;}
.x9a{left:370.144500px;}
.x24{left:375.459450px;}
.x30{left:377.160300px;}
.xd6{left:381.082200px;}
.xc4{left:382.678350px;}
.xbe{left:384.290850px;}
.xb0{left:388.887150px;}
.x6a{left:398.152800px;}
.xbc{left:399.160950px;}
.x9f{left:401.893650px;}
.xce{left:405.509700px;}
.x34{left:408.271650px;}
.x1c{left:410.855550px;}
.x29{left:412.556250px;}
.x25{left:413.922300px;}
.x32{left:415.623150px;}
.x92{left:418.406550px;}
.x3e{left:419.484150px;}
.x46{left:421.977000px;}
.x4a{left:428.378717px;}
.x3f{left:431.176034px;}
.xc0{left:432.298350px;}
.x48{left:433.693078px;}
.x8d{left:437.669606px;}
.x2a{left:443.272800px;}
.x1d{left:444.305550px;}
.x4c{left:445.606500px;}
.x11{left:447.180900px;}
.x95{left:452.385300px;}
.xc5{left:454.298709px;}
.x8f{left:456.110100px;}
.x68{left:460.557150px;}
.x6b{left:468.000000px;}
.xe5{left:470.846400px;}
.x58{left:472.207650px;}
.x69{left:482.255850px;}
.x75{left:485.289300px;}
.xf0{left:488.153400px;}
.xa8{left:489.531150px;}
.xcf{left:490.816500px;}
.x1e{left:492.882750px;}
.x2b{left:494.583600px;}
.x47{left:496.088550px;}
.xbb{left:498.073050px;}
.x45{left:500.499150px;}
.xf6{left:503.105550px;}
.xd{left:504.168600px;}
.xe1{left:509.442900px;}
.xf2{left:512.991900px;}
.xf5{left:518.503950px;}
.xd2{left:521.129400px;}
.x83{left:524.251650px;}
.x2c{left:525.300000px;}
.xd0{left:543.044100px;}
.x56{left:548.249100px;}
.x66{left:550.033650px;}
.x96{left:552.714750px;}
.x40{left:558.454800px;}
.x49{left:559.701300px;}
.x70{left:561.418500px;}
.x71{left:562.665150px;}
.x73{left:569.792250px;}
.x1f{left:574.894800px;}
.xcc{left:576.595650px;}
.x41{left:582.588031px;}
.x4b{left:583.849776px;}
.xf7{left:595.275600px;}
.xeb{left:602.468400px;}
.x20{left:605.611350px;}
.x2d{left:607.312200px;}
.xd7{left:611.239950px;}
.xe2{left:615.931800px;}
.x97{left:617.176800px;}
.xd3{left:624.192450px;}
.xec{left:635.294100px;}
.xd1{left:648.572550px;}
.x3d{left:652.655396px;}
.x98{left:655.762650px;}
.x21{left:659.655750px;}
.x2e{left:661.356600px;}
.xd4{left:662.778450px;}
.x82{left:674.578950px;}
.x67{left:702.761700px;}
.x57{left:705.375450px;}
.xed{left:714.968250px;}
.x99{left:720.224700px;}
.xe3{left:722.420850px;}
.x74{left:726.918750px;}
.x22{left:741.667950px;}
.x2f{left:743.368650px;}
.x94{left:758.223750px;}
.x35{left:759.286800px;}
.xe4{left:762.310350px;}
.xd5{left:765.841500px;}
.xee{left:768.329550px;}
.x23{left:772.384350px;}
.xcd{left:774.085200px;}
.x33{left:780.546600px;}
.xef{left:796.821450px;}
@media print{
.ve{vertical-align:-48.599467pt;}
.v9{vertical-align:-30.036267pt;}
.v6{vertical-align:-26.952000pt;}
.vd{vertical-align:-23.650133pt;}
.v11{vertical-align:-22.008000pt;}
.v3{vertical-align:-14.071467pt;}
.v10{vertical-align:-7.850667pt;}
.vb{vertical-align:-3.734400pt;}
.vf{vertical-align:-2.161600pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.136533pt;}
.vc{vertical-align:3.733867pt;}
.v8{vertical-align:5.790933pt;}
.v5{vertical-align:12.230933pt;}
.v2{vertical-align:15.628800pt;}
.v1{vertical-align:24.864000pt;}
.v7{vertical-align:28.808000pt;}
.v4{vertical-align:31.768533pt;}
.ls5{letter-spacing:-4.106667pt;}
.ls20{letter-spacing:-2.909867pt;}
.ls19{letter-spacing:-2.816000pt;}
.lsc{letter-spacing:-2.628267pt;}
.ls6b{letter-spacing:-2.393600pt;}
.ls0{letter-spacing:-2.346667pt;}
.ls11{letter-spacing:-2.229333pt;}
.ls68{letter-spacing:-2.205867pt;}
.ls36{letter-spacing:-2.158933pt;}
.ls51{letter-spacing:-2.065067pt;}
.ls3d{letter-spacing:-2.018133pt;}
.ls54{letter-spacing:-2.016000pt;}
.ls72{letter-spacing:-1.996800pt;}
.ls5f{letter-spacing:-1.971200pt;}
.ls65{letter-spacing:-1.924267pt;}
.ls63{letter-spacing:-1.783467pt;}
.ls25{letter-spacing:-1.689600pt;}
.ls26{letter-spacing:-1.642667pt;}
.lsa{letter-spacing:-1.595733pt;}
.ls56{letter-spacing:-1.548800pt;}
.ls3c{letter-spacing:-1.501867pt;}
.ls55{letter-spacing:-1.388267pt;}
.ls45{letter-spacing:-1.315200pt;}
.ls59{letter-spacing:-1.306667pt;}
.ls48{letter-spacing:-1.220267pt;}
.ls5d{letter-spacing:-1.194667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls57{letter-spacing:-1.079467pt;}
.ls3b{letter-spacing:-1.032533pt;}
.ls62{letter-spacing:-1.008000pt;}
.ls49{letter-spacing:-0.986400pt;}
.ls4c{letter-spacing:-0.985600pt;}
.ls4e{letter-spacing:-0.938667pt;}
.ls60{letter-spacing:-0.891733pt;}
.ls5e{letter-spacing:-0.858667pt;}
.ls22{letter-spacing:-0.844800pt;}
.ls64{letter-spacing:-0.821333pt;}
.ls47{letter-spacing:-0.797867pt;}
.ls2a{letter-spacing:-0.746667pt;}
.ls1c{letter-spacing:-0.657067pt;}
.ls14{letter-spacing:-0.610133pt;}
.ls4b{letter-spacing:-0.597333pt;}
.ls4f{letter-spacing:-0.563200pt;}
.ls5b{letter-spacing:-0.469333pt;}
.ls39{letter-spacing:-0.422400pt;}
.ls2f{letter-spacing:-0.298667pt;}
.ls24{letter-spacing:-0.281600pt;}
.ls75{letter-spacing:-0.249600pt;}
.ls31{letter-spacing:-0.187733pt;}
.ls50{letter-spacing:-0.140800pt;}
.ls12{letter-spacing:-0.074667pt;}
.ls67{letter-spacing:-0.046933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.046933pt;}
.ls42{letter-spacing:0.055467pt;}
.ls1f{letter-spacing:0.084301pt;}
.ls2d{letter-spacing:0.092800pt;}
.ls17{letter-spacing:0.093867pt;}
.ls2e{letter-spacing:0.096000pt;}
.ls5c{letter-spacing:0.109600pt;}
.ls34{letter-spacing:0.136000pt;}
.ls6{letter-spacing:0.140800pt;}
.ls30{letter-spacing:0.152000pt;}
.ls4{letter-spacing:0.176000pt;}
.ls7{letter-spacing:0.186667pt;}
.lsb{letter-spacing:0.187733pt;}
.ls6f{letter-spacing:0.208000pt;}
.ls13{letter-spacing:0.224000pt;}
.ls46{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.328533pt;}
.ls76{letter-spacing:0.374400pt;}
.lsd{letter-spacing:0.375467pt;}
.ls6c{letter-spacing:0.416000pt;}
.ls52{letter-spacing:0.422400pt;}
.ls41{letter-spacing:0.453333pt;}
.ls4d{letter-spacing:0.456000pt;}
.ls70{letter-spacing:0.457600pt;}
.ls61{letter-spacing:0.469333pt;}
.ls69{letter-spacing:0.498667pt;}
.ls1d{letter-spacing:0.516267pt;}
.lsf{letter-spacing:0.528000pt;}
.ls58{letter-spacing:0.544000pt;}
.ls3f{letter-spacing:0.557333pt;}
.ls6d{letter-spacing:0.624000pt;}
.ls5a{letter-spacing:0.657067pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls3e{letter-spacing:0.725333pt;}
.ls29{letter-spacing:0.821333pt;}
.ls16{letter-spacing:0.844800pt;}
.ls2b{letter-spacing:0.896000pt;}
.ls27{letter-spacing:0.933333pt;}
.ls8{letter-spacing:0.938667pt;}
.ls1b{letter-spacing:0.985600pt;}
.ls28{letter-spacing:1.045333pt;}
.ls2c{letter-spacing:1.082667pt;}
.ls33{letter-spacing:1.133333pt;}
.ls6e{letter-spacing:1.164800pt;}
.ls23{letter-spacing:1.220267pt;}
.ls71{letter-spacing:1.248000pt;}
.ls35{letter-spacing:1.267200pt;}
.ls44{letter-spacing:1.314133pt;}
.ls77{letter-spacing:1.497600pt;}
.ls21{letter-spacing:1.548800pt;}
.ls15{letter-spacing:1.689600pt;}
.ls6a{letter-spacing:1.783467pt;}
.ls2{letter-spacing:1.887296pt;}
.ls40{letter-spacing:1.971200pt;}
.lse{letter-spacing:2.065067pt;}
.ls1{letter-spacing:2.076026pt;}
.ls32{letter-spacing:2.205867pt;}
.ls53{letter-spacing:2.252800pt;}
.ls37{letter-spacing:2.299733pt;}
.ls38{letter-spacing:2.393600pt;}
.ls73{letter-spacing:2.412800pt;}
.ls66{letter-spacing:2.440533pt;}
.ls10{letter-spacing:2.698667pt;}
.ls43{letter-spacing:2.797333pt;}
.ls74{letter-spacing:3.161600pt;}
.ls4a{letter-spacing:3.754667pt;}
.ls3a{letter-spacing:182.298667pt;}
.ws5a{word-spacing:-182.298667pt;}
.wsb5{word-spacing:-19.338667pt;}
.wsb7{word-spacing:-19.114667pt;}
.wsc{word-spacing:-14.267733pt;}
.wsbc{word-spacing:-13.977600pt;}
.wsbb{word-spacing:-13.228800pt;}
.ws1c{word-spacing:-13.188267pt;}
.ws2b{word-spacing:-12.906667pt;}
.ws1e{word-spacing:-12.718933pt;}
.wsb{word-spacing:-12.578133pt;}
.ws1b{word-spacing:-12.531200pt;}
.ws51{word-spacing:-12.512000pt;}
.ws9{word-spacing:-12.390400pt;}
.ws1f{word-spacing:-12.249600pt;}
.ws60{word-spacing:-12.240000pt;}
.ws6{word-spacing:-12.202667pt;}
.wsba{word-spacing:-12.064000pt;}
.wsbf{word-spacing:-11.980800pt;}
.ws2a{word-spacing:-11.921067pt;}
.ws1d{word-spacing:-11.545600pt;}
.wsb9{word-spacing:-11.273600pt;}
.wsb8{word-spacing:-11.232000pt;}
.wsbe{word-spacing:-11.190400pt;}
.ws68{word-spacing:-11.034450pt;}
.ws7{word-spacing:-11.029333pt;}
.ws2d{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.606933pt;}
.ws31{word-spacing:-10.602667pt;}
.wsbd{word-spacing:-10.566400pt;}
.ws2c{word-spacing:-10.560000pt;}
.ws2e{word-spacing:-10.528000pt;}
.ws2f{word-spacing:-9.893333pt;}
.ws8b{word-spacing:-9.608267pt;}
.wsa{word-spacing:-9.574400pt;}
.ws74{word-spacing:-9.109333pt;}
.ws30{word-spacing:-8.960000pt;}
.wsa8{word-spacing:-8.885333pt;}
.ws99{word-spacing:-8.848000pt;}
.ws3d{word-spacing:-8.416000pt;}
.ws8a{word-spacing:-8.400000pt;}
.ws3{word-spacing:-7.920000pt;}
.ws73{word-spacing:-3.754667pt;}
.ws27{word-spacing:-2.909867pt;}
.ws1a{word-spacing:-2.874667pt;}
.ws22{word-spacing:-2.698667pt;}
.wsb1{word-spacing:-2.440533pt;}
.ws4e{word-spacing:-2.393600pt;}
.ws4d{word-spacing:-2.299733pt;}
.ws7f{word-spacing:-2.252800pt;}
.ws40{word-spacing:-2.205867pt;}
.ws66{word-spacing:-1.971200pt;}
.wsc0{word-spacing:-1.783467pt;}
.ws26{word-spacing:-1.689600pt;}
.ws34{word-spacing:-1.548800pt;}
.ws6d{word-spacing:-1.314133pt;}
.wsc6{word-spacing:-1.289600pt;}
.ws4b{word-spacing:-1.267200pt;}
.ws36{word-spacing:-1.220267pt;}
.ws13{word-spacing:-1.173333pt;}
.ws42{word-spacing:-1.133333pt;}
.ws5d{word-spacing:-0.985600pt;}
.wsc3{word-spacing:-0.956800pt;}
.ws3a{word-spacing:-0.896000pt;}
.ws39{word-spacing:-0.858667pt;}
.ws12{word-spacing:-0.844800pt;}
.ws10{word-spacing:-0.797867pt;}
.ws38{word-spacing:-0.746667pt;}
.ws90{word-spacing:-0.657067pt;}
.ws21{word-spacing:-0.528000pt;}
.wsa2{word-spacing:-0.469333pt;}
.ws7d{word-spacing:-0.422400pt;}
.wsc2{word-spacing:-0.416000pt;}
.ws89{word-spacing:-0.408000pt;}
.ws65{word-spacing:-0.405333pt;}
.ws11{word-spacing:-0.375467pt;}
.wsb4{word-spacing:-0.362667pt;}
.ws78{word-spacing:-0.304000pt;}
.wsf{word-spacing:-0.281600pt;}
.ws6f{word-spacing:-0.234667pt;}
.wsc4{word-spacing:-0.208000pt;}
.ws1{word-spacing:-0.188730pt;}
.ws33{word-spacing:-0.187733pt;}
.wse{word-spacing:-0.186667pt;}
.ws4{word-spacing:-0.176000pt;}
.ws9f{word-spacing:-0.152000pt;}
.ws16{word-spacing:-0.140800pt;}
.ws43{word-spacing:-0.136000pt;}
.ws44{word-spacing:-0.096000pt;}
.ws17{word-spacing:-0.093867pt;}
.ws2{word-spacing:0.000000pt;}
.wsb2{word-spacing:0.046933pt;}
.ws24{word-spacing:0.074667pt;}
.ws41{word-spacing:0.140800pt;}
.wsd{word-spacing:0.186667pt;}
.ws3f{word-spacing:0.187733pt;}
.wsb0{word-spacing:0.281600pt;}
.ws50{word-spacing:0.422400pt;}
.ws91{word-spacing:0.469333pt;}
.ws7e{word-spacing:0.516267pt;}
.ws3e{word-spacing:0.522667pt;}
.ws7a{word-spacing:0.563200pt;}
.ws25{word-spacing:0.610133pt;}
.ws70{word-spacing:0.797867pt;}
.ws35{word-spacing:0.844800pt;}
.wsa1{word-spacing:0.891733pt;}
.ws79{word-spacing:0.938667pt;}
.ws77{word-spacing:0.985600pt;}
.ws72{word-spacing:0.986400pt;}
.ws5b{word-spacing:1.032533pt;}
.ws88{word-spacing:1.079467pt;}
.ws71{word-spacing:1.220267pt;}
.ws14{word-spacing:1.267200pt;}
.ws6e{word-spacing:1.315200pt;}
.ws85{word-spacing:1.388267pt;}
.ws5e{word-spacing:1.501867pt;}
.ws87{word-spacing:1.548800pt;}
.ws4f{word-spacing:1.595733pt;}
.ws7b{word-spacing:1.642667pt;}
.ws37{word-spacing:1.689600pt;}
.ws15{word-spacing:1.736533pt;}
.wsa7{word-spacing:1.783467pt;}
.wsaf{word-spacing:1.924267pt;}
.wsa0{word-spacing:1.971200pt;}
.ws5f{word-spacing:2.018133pt;}
.ws7c{word-spacing:2.065067pt;}
.ws4c{word-spacing:2.158933pt;}
.wsc5{word-spacing:2.204800pt;}
.wsb3{word-spacing:2.205867pt;}
.ws23{word-spacing:2.229333pt;}
.wsc1{word-spacing:2.393600pt;}
.ws18{word-spacing:2.722133pt;}
.ws28{word-spacing:2.816000pt;}
.ws32{word-spacing:2.909867pt;}
.ws0{word-spacing:3.050667pt;}
.ws5{word-spacing:4.282667pt;}
.ws19{word-spacing:7.450667pt;}
.ws5c{word-spacing:7.509333pt;}
.ws86{word-spacing:9.856000pt;}
.ws8e{word-spacing:27.091785pt;}
.ws9a{word-spacing:31.459268pt;}
.ws45{word-spacing:31.459802pt;}
.ws69{word-spacing:32.001299pt;}
.ws8c{word-spacing:37.649651pt;}
.ws6a{word-spacing:40.758099pt;}
.ws55{word-spacing:47.503867pt;}
.ws59{word-spacing:47.519520pt;}
.wsa9{word-spacing:47.545220pt;}
.ws29{word-spacing:47.918933pt;}
.ws49{word-spacing:50.897918pt;}
.ws46{word-spacing:50.898451pt;}
.ws92{word-spacing:59.709935pt;}
.ws76{word-spacing:61.798464pt;}
.ws63{word-spacing:62.084645pt;}
.ws61{word-spacing:62.093387pt;}
.ws57{word-spacing:62.690187pt;}
.ws54{word-spacing:62.705104pt;}
.wsac{word-spacing:62.997182pt;}
.ws53{word-spacing:66.931979pt;}
.ws58{word-spacing:66.951520pt;}
.ws9c{word-spacing:73.272064pt;}
.ws82{word-spacing:78.763802pt;}
.ws93{word-spacing:79.094718pt;}
.ws97{word-spacing:80.307264pt;}
.ws80{word-spacing:81.436851pt;}
.wsa4{word-spacing:82.049847pt;}
.wsb6{word-spacing:85.666523pt;}
.ws67{word-spacing:90.926099pt;}
.ws9e{word-spacing:91.509931pt;}
.wsad{word-spacing:91.586523pt;}
.ws47{word-spacing:92.429931pt;}
.ws6c{word-spacing:94.702997pt;}
.ws4a{word-spacing:97.138731pt;}
.ws3c{word-spacing:100.223531pt;}
.ws3b{word-spacing:103.686997pt;}
.ws48{word-spacing:104.629935pt;}
.ws64{word-spacing:107.179253pt;}
.ws62{word-spacing:107.184235pt;}
.ws52{word-spacing:109.650720pt;}
.ws56{word-spacing:109.666069pt;}
.wsa3{word-spacing:114.422581pt;}
.wsaa{word-spacing:120.776154pt;}
.ws9b{word-spacing:124.068585pt;}
.wsa5{word-spacing:133.924448pt;}
.wsae{word-spacing:135.798249pt;}
.wsab{word-spacing:136.141715pt;}
.ws9d{word-spacing:151.443268pt;}
.ws75{word-spacing:170.882451pt;}
.ws94{word-spacing:174.314197pt;}
.ws20{word-spacing:182.298667pt;}
.wsa6{word-spacing:183.306667pt;}
.ws98{word-spacing:183.493333pt;}
.ws84{word-spacing:184.314667pt;}
.ws95{word-spacing:204.372868pt;}
.ws96{word-spacing:223.811518pt;}
.ws83{word-spacing:243.068773pt;}
.ws6b{word-spacing:343.144896pt;}
.ws8f{word-spacing:491.877307pt;}
.ws8d{word-spacing:688.098735pt;}
.ws81{word-spacing:1437.605918pt;}
._4c{margin-left:-183.560533pt;}
._10{margin-left:-123.972800pt;}
._11{margin-left:-68.036267pt;}
._d{margin-left:-22.880000pt;}
._e{margin-left:-15.077333pt;}
._31{margin-left:-12.328069pt;}
._c{margin-left:-7.450667pt;}
._5{margin-left:-6.231729pt;}
._6{margin-left:-4.294400pt;}
._13{margin-left:-3.340592pt;}
._3{margin-left:-2.368556pt;}
._0{margin-left:-1.361067pt;}
._1{width:1.548800pt;}
._2{width:2.980267pt;}
._17{width:3.878943pt;}
._4{width:4.799599pt;}
._7{width:5.999868pt;}
._37{width:6.913280pt;}
._15{width:7.823787pt;}
._14{width:9.353623pt;}
._b{width:10.389867pt;}
._f{width:11.621867pt;}
._9{width:13.431467pt;}
._8{width:14.417067pt;}
._18{width:16.494507pt;}
._a{width:17.715200pt;}
._1d{width:22.724267pt;}
._19{width:24.031467pt;}
._16{width:36.586667pt;}
._2d{width:47.426309pt;}
._23{width:58.325867pt;}
._47{width:64.380783pt;}
._2c{width:68.987248pt;}
._3b{width:76.453163pt;}
._3e{width:80.253278pt;}
._2b{width:84.266043pt;}
._32{width:86.057306pt;}
._29{width:88.492917pt;}
._45{width:94.120871pt;}
._49{width:95.579051pt;}
._48{width:96.694784pt;}
._40{width:97.638639pt;}
._1f{width:103.503140pt;}
._3d{width:104.620506pt;}
._3c{width:106.613930pt;}
._20{width:110.901541pt;}
._24{width:114.262400pt;}
._41{width:115.823172pt;}
._1e{width:116.743172pt;}
._30{width:119.070639pt;}
._22{width:121.505839pt;}
._1b{width:124.590639pt;}
._1a{width:128.054639pt;}
._27{width:131.212395pt;}
._43{width:133.144179pt;}
._21{width:139.533115pt;}
._44{width:152.644979pt;}
._33{width:180.462250pt;}
._25{width:182.298667pt;}
._39{width:198.680772pt;}
._34{width:203.210877pt;}
._3a{width:229.971501pt;}
._36{width:279.837216pt;}
._2f{width:379.910758pt;}
._28{width:473.591519pt;}
._2e{width:478.005725pt;}
._2a{width:482.863766pt;}
._38{width:528.645749pt;}
._4d{width:547.107220pt;}
._1c{width:690.197572pt;}
._3f{width:691.117572pt;}
._4a{width:1184.737600pt;}
._46{width:1188.516800pt;}
._42{width:1659.059733pt;}
._35{width:1660.105067pt;}
._12{width:1679.406400pt;}
._4b{width:1841.619733pt;}
._26{width:1861.705067pt;}
.fs1b{font-size:26.860800pt;}
.fs7{font-size:27.362133pt;}
.fs1e{font-size:27.713600pt;}
.fsb{font-size:30.933333pt;}
.fsf{font-size:32.000000pt;}
.fs1c{font-size:33.596800pt;}
.fs1f{font-size:34.662933pt;}
.fsc{font-size:34.961600pt;}
.fs9{font-size:36.533333pt;}
.fs3{font-size:37.333333pt;}
.fs10{font-size:38.778667pt;}
.fs13{font-size:39.692267pt;}
.fs17{font-size:39.694933pt;}
.fs21{font-size:41.600000pt;}
.fs12{font-size:42.614400pt;}
.fs6{font-size:43.530667pt;}
.fsd{font-size:43.729067pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:46.933333pt;}
.fs1d{font-size:47.027200pt;}
.fs20{font-size:48.520000pt;}
.fs8{font-size:50.666667pt;}
.fs15{font-size:52.868800pt;}
.fs19{font-size:52.872000pt;}
.fs11{font-size:54.205333pt;}
.fs2{font-size:58.666667pt;}
.fse{font-size:61.209600pt;}
.fs14{font-size:66.126933pt;}
.fs18{font-size:66.130667pt;}
.fs4{font-size:74.666667pt;}
.fs16{font-size:92.561067pt;}
.fs1a{font-size:92.566400pt;}
.fs1{font-size:94.364800pt;}
.fs0{font-size:234.666667pt;}
.ydc{bottom:-250.616224pt;}
.y144{bottom:-249.104224pt;}
.y10d{bottom:-247.970891pt;}
.y175{bottom:-247.593557pt;}
.ydb{bottom:-236.340400pt;}
.y143{bottom:-234.828400pt;}
.y10c{bottom:-233.695067pt;}
.y174{bottom:-233.317733pt;}
.yd9{bottom:-227.700133pt;}
.y141{bottom:-226.188133pt;}
.y10a{bottom:-225.054800pt;}
.y172{bottom:-224.677467pt;}
.y148{bottom:-212.647733pt;}
.ye0{bottom:-212.242133pt;}
.y179{bottom:-211.137067pt;}
.y111{bottom:-209.596800pt;}
.y13f{bottom:-205.680267pt;}
.y170{bottom:-204.169600pt;}
.yd7{bottom:-202.014667pt;}
.y108{bottom:-199.369333pt;}
.yda{bottom:-180.105467pt;}
.y142{bottom:-178.593467pt;}
.y10b{bottom:-177.460133pt;}
.y173{bottom:-177.082800pt;}
.y140{bottom:-106.688025pt;}
.y171{bottom:-105.177359pt;}
.ye1{bottom:-103.128660pt;}
.y112{bottom:-100.483327pt;}
.y149{bottom:-99.724256pt;}
.y17a{bottom:-98.213589pt;}
.y1b8{bottom:-95.137867pt;}
.yd8{bottom:-94.326309pt;}
.y109{bottom:-91.680976pt;}
.ydf{bottom:-82.758933pt;}
.y147{bottom:-81.246933pt;}
.y231{bottom:-80.511067pt;}
.y110{bottom:-80.113600pt;}
.y178{bottom:-79.736267pt;}
.y208{bottom:-77.540533pt;}
.yde{bottom:-69.207600pt;}
.y146{bottom:-67.695600pt;}
.y10f{bottom:-66.562267pt;}
.y1bd{bottom:-66.530668pt;}
.y177{bottom:-66.184933pt;}
.ydd{bottom:-55.656267pt;}
.y7a{bottom:-55.136667pt;}
.y145{bottom:-54.144267pt;}
.y10e{bottom:-53.010933pt;}
.y88{bottom:-52.956000pt;}
.y252{bottom:-52.766000pt;}
.y27b{bottom:-52.739867pt;}
.y176{bottom:-52.633600pt;}
.y1de{bottom:-52.575333pt;}
.y236{bottom:-51.902203pt;}
.y1c7{bottom:-50.582800pt;}
.y247{bottom:-50.319600pt;}
.y26a{bottom:-49.941600pt;}
.yb6{bottom:-49.893600pt;}
.ya5{bottom:-49.068667pt;}
.y20d{bottom:-48.931536pt;}
.y1bc{bottom:-43.374133pt;}
.y2d1{bottom:-42.091600pt;}
.y2b0{bottom:-40.925333pt;}
.y292{bottom:-39.939333pt;}
.y2c0{bottom:-38.605467pt;}
.y2a0{bottom:-37.618400pt;}
.y7e{bottom:-36.993172pt;}
.y8d{bottom:-34.812506pt;}
.y256{bottom:-34.622372pt;}
.y280{bottom:-34.596239pt;}
.y1e3{bottom:-34.431706pt;}
.y1cb{bottom:-32.439306pt;}
.y24b{bottom:-32.175972pt;}
.y26e{bottom:-31.797972pt;}
.ybb{bottom:-31.750106pt;}
.yaa{bottom:-30.925172pt;}
.y235{bottom:-28.744267pt;}
.y2d5{bottom:-27.709359pt;}
.y296{bottom:-25.999813pt;}
.y2b4{bottom:-25.929757pt;}
.y20c{bottom:-25.773600pt;}
.y2a4{bottom:-23.678879pt;}
.y2c4{bottom:-23.609890pt;}
.y7d{bottom:-21.677067pt;}
.y8c{bottom:-19.496400pt;}
.y255{bottom:-19.306267pt;}
.y27f{bottom:-19.280133pt;}
.y1e2{bottom:-19.115600pt;}
.y1ca{bottom:-17.123200pt;}
.y24a{bottom:-16.859867pt;}
.y26d{bottom:-16.481867pt;}
.yba{bottom:-16.434000pt;}
.ya9{bottom:-15.609067pt;}
.y2d4{bottom:-15.568667pt;}
.y295{bottom:-14.232533pt;}
.y2b3{bottom:-13.791200pt;}
.yce{bottom:-13.596133pt;}
.yd6{bottom:-13.596091pt;}
.y136{bottom:-12.084133pt;}
.y13e{bottom:-12.084091pt;}
.y124{bottom:-12.064491pt;}
.y12c{bottom:-12.064400pt;}
.y2a3{bottom:-11.911600pt;}
.yfb{bottom:-11.645424pt;}
.yf3{bottom:-11.645333pt;}
.y2c3{bottom:-11.471333pt;}
.y107{bottom:-10.950800pt;}
.y102{bottom:-10.950757pt;}
.y18b{bottom:-10.830357pt;}
.y193{bottom:-10.830267pt;}
.y16f{bottom:-10.573467pt;}
.y16a{bottom:-10.573424pt;}
.y1ab{bottom:-10.351600pt;}
.y163{bottom:-9.276624pt;}
.y15b{bottom:-9.276533pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:0.679733pt;}
.y79{bottom:0.931600pt;}
.y135{bottom:2.191733pt;}
.y123{bottom:2.211333pt;}
.y2d0{bottom:2.352933pt;}
.yf2{bottom:2.630400pt;}
.y87{bottom:3.112267pt;}
.y291{bottom:3.137600pt;}
.y251{bottom:3.302400pt;}
.y101{bottom:3.325067pt;}
.y27a{bottom:3.328533pt;}
.y18a{bottom:3.445467pt;}
.y1dd{bottom:3.493067pt;}
.y2af{bottom:3.519067pt;}
.y169{bottom:3.702400pt;}
.y225{bottom:4.280133pt;}
.y15a{bottom:4.999200pt;}
.y1aa{bottom:5.504933pt;}
.yd4{bottom:9.319867pt;}
.y13c{bottom:10.831867pt;}
.y121{bottom:10.851733pt;}
.yf9{bottom:11.270800pt;}
.yff{bottom:11.965200pt;}
.y188{bottom:12.085733pt;}
.y167{bottom:12.342533pt;}
.y161{bottom:13.639467pt;}
.yf7{bottom:26.728800pt;}
.y15f{bottom:27.179867pt;}
.y186{bottom:32.593600pt;}
.y11f{bottom:36.537067pt;}
.y166{bottom:37.259764pt;}
.yd2{bottom:40.289467pt;}
.y8{bottom:41.877067pt;}
.yd5{bottom:56.914667pt;}
.y13d{bottom:58.426667pt;}
.y122{bottom:58.446267pt;}
.yfa{bottom:58.865333pt;}
.y100{bottom:59.560000pt;}
.y189{bottom:59.680400pt;}
.y168{bottom:59.937333pt;}
.y162{bottom:61.234133pt;}
.y2be{bottom:73.478933pt;}
.y98{bottom:86.519733pt;}
.y44{bottom:86.519867pt;}
.y2a5{bottom:91.063600pt;}
.y25d{bottom:91.433067pt;}
.y20e{bottom:91.976933pt;}
.y1e4{bottom:92.008400pt;}
.y8e{bottom:92.060933pt;}
.y13a{bottom:92.171467pt;}
.yfd{bottom:96.351733pt;}
.y43{bottom:99.186533pt;}
.y284{bottom:101.362267pt;}
.y2a7{bottom:101.803200pt;}
.y97{bottom:103.853067pt;}
.y25{bottom:103.911733pt;}
.y6e{bottom:111.853200pt;}
.y1e6{bottom:112.008000pt;}
.y92{bottom:113.118533pt;}
.y25a{bottom:117.110267pt;}
.y283{bottom:118.695600pt;}
.y239{bottom:118.871867pt;}
.y2a6{bottom:119.136533pt;}
.y96{bottom:121.186400pt;}
.y24{bottom:123.911733pt;}
.y6d{bottom:124.519867pt;}
.y1e5{bottom:129.341333pt;}
.y91{bottom:130.451867pt;}
.y187{bottom:131.585841pt;}
.y259{bottom:134.443600pt;}
.yf8{bottom:135.842273pt;}
.y238{bottom:136.205200pt;}
.y6c{bottom:137.186667pt;}
.y95{bottom:138.519733pt;}
.y160{bottom:140.103344pt;}
.y269{bottom:141.994667pt;}
.yd3{bottom:142.694231pt;}
.y23{bottom:143.911733pt;}
.y13b{bottom:144.202743pt;}
.y120{bottom:144.225424pt;}
.y207{bottom:144.673333pt;}
.yfe{bottom:145.338884pt;}
.y165{bottom:145.714000pt;}
.y268{bottom:148.121467pt;}
.y6b{bottom:149.853333pt;}
.y1fb{bottom:151.924133pt;}
.yd1{bottom:154.261067pt;}
.y139{bottom:155.773067pt;}
.y127{bottom:155.792800pt;}
.y94{bottom:155.853067pt;}
.y86{bottom:155.853333pt;}
.yf6{bottom:156.211867pt;}
.y267{bottom:156.861733pt;}
.y105{bottom:156.906400pt;}
.y18e{bottom:157.026933pt;}
.y16d{bottom:157.283733pt;}
.y250{bottom:158.405333pt;}
.y15e{bottom:158.580667pt;}
.y294{bottom:160.121443pt;}
.y224{bottom:160.722667pt;}
.y2a2{bottom:162.442377pt;}
.y6a{bottom:162.520000pt;}
.y265{bottom:164.308267pt;}
.y2d3{bottom:164.320403pt;}
.y2b2{bottom:165.486537pt;}
.y84{bottom:166.412133pt;}
.y1db{bottom:166.792800pt;}
.y1fa{bottom:167.781600pt;}
.y2c2{bottom:167.806403pt;}
.yd0{bottom:167.812400pt;}
.y24e{bottom:169.154133pt;}
.y138{bottom:169.324400pt;}
.y126{bottom:169.344133pt;}
.yf5{bottom:169.763200pt;}
.y104{bottom:170.457733pt;}
.y18d{bottom:170.578267pt;}
.y16c{bottom:170.835067pt;}
.y293{bottom:171.890000pt;}
.y15d{bottom:172.132000pt;}
.y42{bottom:173.186400pt;}
.y2a1{bottom:174.210933pt;}
.y69{bottom:175.186667pt;}
.y2d2{bottom:176.462533pt;}
.y290{bottom:176.504000pt;}
.y2b1{bottom:177.628667pt;}
.y22{bottom:179.029867pt;}
.y2c1{bottom:179.948533pt;}
.y223{bottom:180.860267pt;}
.ycf{bottom:181.363733pt;}
.y29f{bottom:181.794667pt;}
.y137{bottom:182.875733pt;}
.y125{bottom:182.895467pt;}
.y1d5{bottom:183.213333pt;}
.yf4{bottom:183.314533pt;}
.y103{bottom:184.009067pt;}
.y18c{bottom:184.129600pt;}
.y16b{bottom:184.386400pt;}
.y15c{bottom:185.683333pt;}
.y24d{bottom:185.858800pt;}
.y28f{bottom:186.356667pt;}
.y29e{bottom:187.253067pt;}
.y264{bottom:187.574933pt;}
.y68{bottom:187.853333pt;}
.y263{bottom:188.765467pt;}
.y41{bottom:190.519733pt;}
.y28d{bottom:192.077733pt;}
.y8b{bottom:192.138164pt;}
.y27e{bottom:192.354298pt;}
.y1e1{bottom:192.518964pt;}
.y29c{bottom:192.974133pt;}
.yb9{bottom:195.200564pt;}
.ya8{bottom:196.025498pt;}
.y21{bottom:199.029867pt;}
.y67{bottom:200.520000pt;}
.y289{bottom:201.543867pt;}
.y28b{bottom:202.697600pt;}
.y7c{bottom:205.259898pt;}
.y25e{bottom:205.921600pt;}
.y1e7{bottom:207.414933pt;}
.y8a{bottom:207.440564pt;}
.y254{bottom:207.630698pt;}
.y27d{bottom:207.656698pt;}
.y1e0{bottom:207.821364pt;}
.y93{bottom:207.853067pt;}
.y1c9{bottom:209.813764pt;}
.y249{bottom:210.077098pt;}
.y26c{bottom:210.455098pt;}
.yb8{bottom:210.502964pt;}
.y1fc{bottom:210.934267pt;}
.ya7{bottom:211.327898pt;}
.y6{bottom:211.399733pt;}
.y66{bottom:213.186800pt;}
.y1e8{bottom:214.453600pt;}
.y288{bottom:215.805733pt;}
.y20{bottom:219.029867pt;}
.y1d7{bottom:219.893067pt;}
.y210{bottom:220.493733pt;}
.y7b{bottom:220.577600pt;}
.y89{bottom:222.758267pt;}
.y253{bottom:222.948400pt;}
.y27c{bottom:222.974400pt;}
.y1df{bottom:223.139067pt;}
.y226{bottom:224.012933pt;}
.y119{bottom:224.955643pt;}
.y1c8{bottom:225.131467pt;}
.y40{bottom:225.186400pt;}
.ye8{bottom:225.374576pt;}
.y248{bottom:225.394800pt;}
.y299{bottom:225.724933pt;}
.y26b{bottom:225.772800pt;}
.yb7{bottom:225.820667pt;}
.y65{bottom:225.853467pt;}
.y180{bottom:226.189643pt;}
.y1e9{bottom:226.259733pt;}
.ya6{bottom:226.645600pt;}
.y211{bottom:227.532267pt;}
.y150{bottom:227.743376pt;}
.y1fd{bottom:229.778933pt;}
.y1da{bottom:230.054133pt;}
.y1ea{bottom:233.298400pt;}
.y85{bottom:236.651600pt;}
.y1dc{bottom:237.032400pt;}
.y266{bottom:237.835600pt;}
.y83{bottom:238.116133pt;}
.y64{bottom:238.520133pt;}
.y1f{bottom:239.029867pt;}
.y118{bottom:239.231467pt;}
.y212{bottom:239.338400pt;}
.ye7{bottom:239.650400pt;}
.y17f{bottom:240.465467pt;}
.y14f{bottom:242.019200pt;}
.y286{bottom:242.479333pt;}
.y3f{bottom:242.519733pt;}
.y227{bottom:242.857733pt;}
.y1eb{bottom:245.104533pt;}
.y213{bottom:246.377067pt;}
.y24f{bottom:247.038133pt;}
.y116{bottom:247.871733pt;}
.ye5{bottom:248.290800pt;}
.y28e{bottom:248.568267pt;}
.y1fe{bottom:248.623867pt;}
.y17d{bottom:249.105733pt;}
.y14d{bottom:250.659467pt;}
.y63{bottom:251.186800pt;}
.y1ec{bottom:252.143067pt;}
.y29d{bottom:252.811867pt;}
.y82{bottom:257.058133pt;}
.y214{bottom:258.183200pt;}
.y1d8{bottom:258.602400pt;}
.y3e{bottom:259.853067pt;}
.y25f{bottom:261.015733pt;}
.y228{bottom:261.702533pt;}
.y262{bottom:262.842267pt;}
.y62{bottom:263.853467pt;}
.y1ed{bottom:263.949200pt;}
.y285{bottom:264.776533pt;}
.y215{bottom:265.221867pt;}
.y297{bottom:266.473467pt;}
.y28a{bottom:267.084267pt;}
.y1ff{bottom:267.468533pt;}
.y4{bottom:267.808133pt;}
.y1ee{bottom:270.987867pt;}
.y28c{bottom:271.221467pt;}
.y1d4{bottom:273.729067pt;}
.y17c{bottom:274.022964pt;}
.y1e{bottom:274.148000pt;}
.y1bb{bottom:275.492326pt;}
.y14c{bottom:275.576697pt;}
.y61{bottom:276.520133pt;}
.y216{bottom:277.028000pt;}
.y3d{bottom:277.186400pt;}
.y298{bottom:277.294533pt;}
.y11d{bottom:278.841200pt;}
.yec{bottom:279.260267pt;}
.y229{bottom:280.547333pt;}
.y1ce{bottom:282.643600pt;}
.y1ef{bottom:282.794000pt;}
.y217{bottom:284.066667pt;}
.y200{bottom:286.313333pt;}
.y60{bottom:289.186800pt;}
.y1f0{bottom:289.832667pt;}
.y234{bottom:290.141125pt;}
.y1d2{bottom:292.690400pt;}
.y20b{bottom:293.111658pt;}
.y1d{bottom:294.148000pt;}
.y3c{bottom:294.519733pt;}
.y80{bottom:294.522667pt;}
.y3{bottom:295.174000pt;}
.y117{bottom:295.466400pt;}
.y218{bottom:295.872667pt;}
.ye6{bottom:295.885467pt;}
.y17e{bottom:296.700533pt;}
.y14e{bottom:298.254133pt;}
.y1ba{bottom:298.632593pt;}
.y22a{bottom:299.392133pt;}
.y1f1{bottom:301.638800pt;}
.y5f{bottom:301.853467pt;}
.y219{bottom:302.911333pt;}
.y201{bottom:305.158133pt;}
.y260{bottom:305.975867pt;}
.y1d1{bottom:310.023733pt;}
.y3b{bottom:311.853067pt;}
.y233{bottom:313.282725pt;}
.y81{bottom:313.478267pt;}
.y1c{bottom:314.148000pt;}
.y5e{bottom:314.520267pt;}
.y21a{bottom:314.717467pt;}
.y20a{bottom:316.253258pt;}
.y22b{bottom:318.236933pt;}
.y1f2{bottom:320.463067pt;}
.y1c6{bottom:320.902667pt;}
.y1b9{bottom:321.796000pt;}
.y29b{bottom:322.377733pt;}
.y2{bottom:322.539733pt;}
.y261{bottom:323.132000pt;}
.y202{bottom:324.002933pt;}
.y1c5{bottom:326.388133pt;}
.y5d{bottom:327.186933pt;}
.y1f3{bottom:327.522267pt;}
.y287{bottom:327.552000pt;}
.y3a{bottom:329.186400pt;}
.y1d9{bottom:330.176133pt;}
.y184{bottom:330.445333pt;}
.y154{bottom:331.999067pt;}
.y114{bottom:332.258133pt;}
.y29a{bottom:332.658400pt;}
.ye3{bottom:332.677200pt;}
.y21b{bottom:333.541867pt;}
.ybe{bottom:333.861467pt;}
.y1b{bottom:334.148000pt;}
.yc7{bottom:334.276133pt;}
.y1c4{bottom:335.128533pt;}
.y232{bottom:336.447467pt;}
.y1d6{bottom:336.562267pt;}
.y22c{bottom:337.081600pt;}
.y1f4{bottom:339.307867pt;}
.y209{bottom:339.418000pt;}
.y5c{bottom:339.853600pt;}
.y21c{bottom:340.600933pt;}
.y1c2{bottom:342.574933pt;}
.y203{bottom:342.847733pt;}
.y24c{bottom:346.243333pt;}
.y39{bottom:346.519733pt;}
.y21d{bottom:352.386667pt;}
.y5b{bottom:352.520267pt;}
.yc3{bottom:354.674667pt;}
.y22d{bottom:355.926400pt;}
.y1f5{bottom:358.152667pt;}
.y204{bottom:361.692400pt;}
.y38{bottom:363.853067pt;}
.y5a{bottom:365.186933pt;}
.y1f6{bottom:365.211867pt;}
.y7f{bottom:365.853067pt;}
.y1a{bottom:369.266133pt;}
.y21e{bottom:371.231467pt;}
.yc2{bottom:372.008000pt;}
.y22e{bottom:374.771200pt;}
.y1f7{bottom:376.997467pt;}
.y59{bottom:377.853600pt;}
.y12e{bottom:378.094933pt;}
.y1bf{bottom:378.099867pt;}
.y21f{bottom:378.290533pt;}
.y205{bottom:380.537333pt;}
.y37{bottom:381.186400pt;}
.y115{bottom:381.245284pt;}
.y11e{bottom:381.245964pt;}
.ye4{bottom:381.664351pt;}
.yed{bottom:381.665031pt;}
.y185{bottom:382.476609pt;}
.y17b{bottom:382.477200pt;}
.y23c{bottom:383.186400pt;}
.y155{bottom:384.030343pt;}
.y14b{bottom:384.030933pt;}
.y1f8{bottom:384.056533pt;}
.y132{bottom:386.643600pt;}
.y19{bottom:389.266133pt;}
.y220{bottom:390.076133pt;}
.y11c{bottom:392.812933pt;}
.yeb{bottom:393.231867pt;}
.y22f{bottom:393.616000pt;}
.y183{bottom:394.046933pt;}
.y153{bottom:395.600667pt;}
.y1f9{bottom:395.842267pt;}
.y221{bottom:397.135333pt;}
.y36{bottom:398.519733pt;}
.y206{bottom:399.382000pt;}
.yb5{bottom:401.102667pt;}
.y113{bottom:404.409333pt;}
.ye2{bottom:405.544000pt;}
.y11b{bottom:406.364267pt;}
.yea{bottom:406.783200pt;}
.yb4{bottom:407.277333pt;}
.y182{bottom:407.598267pt;}
.y222{bottom:408.920933pt;}
.y152{bottom:409.152000pt;}
.y230{bottom:412.460800pt;}
.y195{bottom:413.296933pt;}
.yb2{bottom:414.723733pt;}
.y12a{bottom:415.261067pt;}
.y35{bottom:415.853067pt;}
.y1c3{bottom:416.102400pt;}
.yf0{bottom:416.814800pt;}
.y1c0{bottom:417.850933pt;}
.y11a{bottom:419.915600pt;}
.ye9{bottom:420.334533pt;}
.y181{bottom:421.149600pt;}
.y151{bottom:422.703333pt;}
.y18{bottom:424.384133pt;}
.y128{bottom:430.719067pt;}
.y34{bottom:433.186400pt;}
.y14a{bottom:434.130667pt;}
.y1{bottom:437.814000pt;}
.y25c{bottom:438.643600pt;}
.yb1{bottom:441.102400pt;}
.yee{bottom:442.500133pt;}
.y17{bottom:444.384133pt;}
.y191{bottom:446.216400pt;}
.y70{bottom:447.310267pt;}
.y158{bottom:447.770133pt;}
.y33{bottom:450.519733pt;}
.yb0{bottom:457.690133pt;}
.y18f{bottom:459.756800pt;}
.y282{bottom:459.785200pt;}
.y12b{bottom:462.855600pt;}
.yac{bottom:463.940933pt;}
.y16{bottom:464.384133pt;}
.yf1{bottom:464.409333pt;}
.y23b{bottom:464.643600pt;}
.y90{bottom:466.588267pt;}
.y58{bottom:467.853067pt;}
.y156{bottom:468.278000pt;}
.y237{bottom:469.853067pt;}
.y281{bottom:477.118533pt;}
.y1be{bottom:479.155333pt;}
.y8f{bottom:483.921600pt;}
.y15{bottom:484.384133pt;}
.yb3{bottom:484.963333pt;}
.y57{bottom:485.186400pt;}
.y20f{bottom:487.186400pt;}
.y258{bottom:490.506667pt;}
.y192{bottom:493.811067pt;}
.y279{bottom:493.853333pt;}
.y159{bottom:495.364800pt;}
.y5{bottom:497.693600pt;}
.y32{bottom:498.519733pt;}
.y78{bottom:501.921333pt;}
.y56{bottom:502.519733pt;}
.yab{bottom:503.178000pt;}
.y278{bottom:505.922133pt;}
.y257{bottom:507.840000pt;}
.y77{bottom:511.593333pt;}
.y276{bottom:513.368667pt;}
.y1c1{bottom:518.906533pt;}
.y75{bottom:519.039733pt;}
.y14{bottom:519.502267pt;}
.y31{bottom:519.853067pt;}
.y272{bottom:525.811333pt;}
.y246{bottom:527.244000pt;}
.y245{bottom:532.992800pt;}
.y55{bottom:537.186400pt;}
.y129{bottom:539.832667pt;}
.y243{bottom:540.439200pt;}
.y2ec{bottom:540.519600pt;}
.yad{bottom:544.904533pt;}
.y273{bottom:545.159200pt;}
.y275{bottom:548.501067pt;}
.y242{bottom:549.770000pt;}
.yef{bottom:550.186133pt;}
.y2eb{bottom:554.519600pt;}
.y1d3{bottom:554.519733pt;}
.y1cc{bottom:556.519733pt;}
.y274{bottom:557.160267pt;}
.y26f{bottom:560.123333pt;}
.y74{bottom:565.767467pt;}
.y157{bottom:567.270667pt;}
.yae{bottom:568.568533pt;}
.y54{bottom:571.853067pt;}
.y190{bottom:572.684400pt;}
.y277{bottom:579.238000pt;}
.yaf{bottom:584.493333pt;}
.y2ea{bottom:584.519600pt;}
.y23f{bottom:588.046267pt;}
.y53{bottom:589.186400pt;}
.y76{bottom:592.567200pt;}
.y73{bottom:599.836000pt;}
.y52{bottom:606.519733pt;}
.yc5{bottom:610.519733pt;}
.y2e9{bottom:612.519600pt;}
.y271{bottom:616.056400pt;}
.y244{bottom:618.323200pt;}
.y51{bottom:623.853067pt;}
.ybf{bottom:625.853067pt;}
.y2e8{bottom:626.519600pt;}
.y1cd{bottom:634.205333pt;}
.y241{bottom:638.851467pt;}
.y2e7{bottom:640.519600pt;}
.y50{bottom:641.186400pt;}
.y130{bottom:645.186400pt;}
.y1d0{bottom:645.569600pt;}
.y270{bottom:647.297200pt;}
.y2e6{bottom:654.519600pt;}
.y4f{bottom:658.519733pt;}
.y12f{bottom:660.519733pt;}
.y71{bottom:661.302800pt;}
.y1cf{bottom:662.902933pt;}
.y23d{bottom:667.332133pt;}
.y2e5{bottom:668.519600pt;}
.y4e{bottom:675.853067pt;}
.y2e4{bottom:682.519600pt;}
.y240{bottom:685.421733pt;}
.y4d{bottom:693.186400pt;}
.y1a9{bottom:694.757333pt;}
.y72{bottom:695.371333pt;}
.y2e3{bottom:696.519733pt;}
.y4c{bottom:710.519733pt;}
.y25b{bottom:712.519733pt;}
.ybd{bottom:715.438267pt;}
.y2c8{bottom:715.866667pt;}
.yc6{bottom:715.976933pt;}
.y23e{bottom:721.140933pt;}
.y4b{bottom:727.853067pt;}
.y6f{bottom:729.853067pt;}
.yc1{bottom:736.007867pt;}
.y131{bottom:737.457200pt;}
.y1ac{bottom:741.611867pt;}
.y2e2{bottom:743.186400pt;}
.y4a{bottom:745.186400pt;}
.y194{bottom:746.157867pt;}
.y196{bottom:746.358533pt;}
.y12d{bottom:751.134267pt;}
.yc0{bottom:753.341200pt;}
.y197{bottom:756.404400pt;}
.y2e1{bottom:757.186400pt;}
.y1ad{bottom:758.859600pt;}
.y49{bottom:762.519733pt;}
.y23a{bottom:764.519733pt;}
.ya4{bottom:771.024000pt;}
.y2e0{bottom:771.186400pt;}
.y164{bottom:771.780000pt;}
.yfc{bottom:772.157333pt;}
.y134{bottom:773.290667pt;}
.y198{bottom:773.652133pt;}
.ycc{bottom:774.802667pt;}
.y1ae{bottom:776.107467pt;}
.y30{bottom:776.827467pt;}
.ya3{bottom:778.023600pt;}
.y13{bottom:779.853067pt;}
.yca{bottom:784.122533pt;}
.y2df{bottom:785.186400pt;}
.ya1{bottom:785.470133pt;}
.y2bd{bottom:785.764000pt;}
.y2ae{bottom:788.409333pt;}
.y2cf{bottom:789.628000pt;}
.y199{bottom:790.900000pt;}
.y2bf{bottom:791.602933pt;}
.y1af{bottom:793.355200pt;}
.y2f{bottom:796.827467pt;}
.y48{bottom:797.186400pt;}
.y2bc{bottom:797.505600pt;}
.y2ac{bottom:797.831067pt;}
.y2cd{bottom:797.883600pt;}
.y2de{bottom:799.186400pt;}
.y9f{bottom:802.255867pt;}
.y2ba{bottom:805.802800pt;}
.y2b6{bottom:806.060267pt;}
.y19a{bottom:808.147733pt;}
.y133{bottom:809.040933pt;}
.y2b8{bottom:810.049867pt;}
.y1b0{bottom:810.602933pt;}
.y2ab{bottom:810.804400pt;}
.y2dd{bottom:813.186400pt;}
.y12{bottom:814.519733pt;}
.y106{bottom:815.092133pt;}
.y19b{bottom:815.370133pt;}
.ya0{bottom:817.287733pt;}
.y9e{bottom:824.147333pt;}
.y19c{bottom:825.395600pt;}
.y2dc{bottom:827.186400pt;}
.y1b1{bottom:827.850800pt;}
.y9a{bottom:829.721733pt;}
.ycb{bottom:831.717333pt;}
.y11{bottom:831.853067pt;}
.y2e{bottom:831.945600pt;}
.y2ca{bottom:832.360533pt;}
.y19d{bottom:832.617867pt;}
.y2b7{bottom:835.543200pt;}
.y2db{bottom:841.186400pt;}
.y19e{bottom:842.643333pt;}
.y1b2{bottom:845.118933pt;}
.y10{bottom:849.186400pt;}
.y19f{bottom:849.865733pt;}
.y2d{bottom:851.945600pt;}
.y2aa{bottom:855.356000pt;}
.ya2{bottom:855.709600pt;}
.y2ad{bottom:859.568400pt;}
.y2ce{bottom:859.620800pt;}
.y1a0{bottom:859.891067pt;}
.y1b3{bottom:862.366800pt;}
.y16e{bottom:865.462133pt;}
.yf{bottom:866.519733pt;}
.y1a1{bottom:867.113467pt;}
.yc8{bottom:868.509067pt;}
.y99{bottom:869.080533pt;}
.y2da{bottom:869.186400pt;}
.y2c{bottom:871.945600pt;}
.y2b9{bottom:872.834000pt;}
.y1a2{bottom:877.138933pt;}
.y2a8{bottom:877.277867pt;}
.y1b4{bottom:879.614533pt;}
.y2cb{bottom:879.947200pt;}
.y2d9{bottom:883.186400pt;}
.ye{bottom:883.853067pt;}
.y1a3{bottom:884.361200pt;}
.y2b{bottom:891.945600pt;}
.y1a4{bottom:894.407200pt;}
.y1b5{bottom:896.862267pt;}
.y2c9{bottom:897.000000pt;}
.y2d8{bottom:897.186400pt;}
.yd{bottom:901.186400pt;}
.y2bb{bottom:903.496800pt;}
.y2d7{bottom:911.186400pt;}
.y1a5{bottom:911.654933pt;}
.y2a{bottom:911.945600pt;}
.y1b6{bottom:914.110133pt;}
.yc9{bottom:917.494000pt;}
.yc{bottom:918.519733pt;}
.y1a6{bottom:918.856800pt;}
.y9b{bottom:923.227600pt;}
.y2a9{bottom:924.242667pt;}
.y1a7{bottom:928.902667pt;}
.y1b7{bottom:931.357867pt;}
.y29{bottom:931.945600pt;}
.y9c{bottom:935.323467pt;}
.yb{bottom:935.853067pt;}
.y1a8{bottom:936.104667pt;}
.y2d6{bottom:939.186400pt;}
.y2b5{bottom:939.361200pt;}
.y2cc{bottom:944.586800pt;}
.y47{bottom:953.186400pt;}
.y9d{bottom:955.239600pt;}
.y28{bottom:967.063733pt;}
.ya{bottom:970.519733pt;}
.y2c7{bottom:974.519600pt;}
.yc4{bottom:974.519733pt;}
.y27{bottom:987.063733pt;}
.y46{bottom:987.853067pt;}
.y2c6{bottom:989.852933pt;}
.ybc{bottom:989.853067pt;}
.y2c5{bottom:1005.186267pt;}
.y45{bottom:1005.186400pt;}
.y9{bottom:1005.434000pt;}
.y26{bottom:1007.063733pt;}
.y7{bottom:1064.543733pt;}
.h40{height:19.796410pt;}
.h46{height:20.424923pt;}
.hf{height:22.761979pt;}
.h47{height:24.113990pt;}
.h15{height:24.484375pt;}
.h41{height:24.760842pt;}
.h48{height:25.546582pt;}
.h10{height:25.766699pt;}
.h3c{height:26.308033pt;}
.h45{height:26.541179pt;}
.h3e{height:26.849366pt;}
.h38{height:26.903233pt;}
.h4b{height:27.074523pt;}
.h5{height:28.565104pt;}
.h1a{height:28.579877pt;}
.h25{height:29.253201pt;}
.h2f{height:29.255166pt;}
.h3a{height:29.500566pt;}
.h1d{height:31.406813pt;}
.h2d{height:31.557633pt;}
.h4f{height:32.032812pt;}
.h4e{height:32.114062pt;}
.h11{height:32.228322pt;}
.h50{height:32.235937pt;}
.h43{height:34.659046pt;}
.he{height:34.686198pt;}
.h4a{height:35.759240pt;}
.h8{height:36.139583pt;}
.h7{height:36.231250pt;}
.h9{height:36.368750pt;}
.hc{height:36.698177pt;}
.h18{height:37.997633pt;}
.hd{height:38.766927pt;}
.h2a{height:38.964306pt;}
.h33{height:38.966664pt;}
.h1b{height:39.949331pt;}
.h13{height:45.111475pt;}
.h4{height:45.174479pt;}
.ha{height:45.460938pt;}
.h29{height:48.735550pt;}
.h32{height:48.738301pt;}
.h6{height:57.130208pt;}
.h30{height:57.409833pt;}
.h36{height:57.410366pt;}
.h31{height:57.491433pt;}
.h16{height:57.535233pt;}
.h27{height:58.060667pt;}
.h26{height:58.061201pt;}
.hb{height:58.170911pt;}
.h2b{height:68.217506pt;}
.h35{height:68.221437pt;}
.h3{height:72.201973pt;}
.h1e{height:157.238667pt;}
.h1f{height:159.684000pt;}
.h23{height:161.008000pt;}
.h1c{height:161.050667pt;}
.h20{height:161.774667pt;}
.h21{height:162.562667pt;}
.h22{height:162.997333pt;}
.h24{height:163.008000pt;}
.h42{height:163.369333pt;}
.h44{height:163.801333pt;}
.h49{height:164.777333pt;}
.h4c{height:168.568000pt;}
.h4d{height:171.506667pt;}
.h2{height:179.552083pt;}
.h14{height:187.669333pt;}
.h3f{height:190.666667pt;}
.h19{height:195.968000pt;}
.h2e{height:195.989333pt;}
.h17{height:199.494667pt;}
.h3b{height:202.897333pt;}
.h3d{height:208.870667pt;}
.h2c{height:209.349333pt;}
.h12{height:213.856000pt;}
.h39{height:213.869333pt;}
.h28{height:270.866667pt;}
.h37{height:294.666667pt;}
.h34{height:305.846667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wf{width:321.258667pt;}
.we{width:321.260000pt;}
.w10{width:334.865333pt;}
.wd{width:334.866667pt;}
.w5{width:341.669333pt;}
.w4{width:341.670667pt;}
.wc{width:348.093333pt;}
.w7{width:423.873333pt;}
.w9{width:427.653333pt;}
.w3{width:434.080000pt;}
.w2{width:434.645333pt;}
.wb{width:440.945333pt;}
.wa{width:442.205333pt;}
.w8{width:665.197333pt;}
.w6{width:723.276000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x50{left:-313.880133pt;}
.x4f{left:-302.076000pt;}
.x52{left:-291.683057pt;}
.x54{left:-270.671605pt;}
.x51{left:-236.667867pt;}
.x4d{left:-235.442400pt;}
.x53{left:-180.677200pt;}
.x72{left:-178.041467pt;}
.x55{left:-159.225439pt;}
.x4e{left:-98.098057pt;}
.x0{left:0.000000pt;}
.xf1{left:9.168000pt;}
.x59{left:16.124133pt;}
.x5d{left:17.637738pt;}
.x65{left:23.645467pt;}
.x60{left:25.861333pt;}
.xf3{left:27.454000pt;}
.xe8{left:28.664667pt;}
.x63{left:31.551748pt;}
.x5b{left:34.043333pt;}
.x44{left:35.349200pt;}
.x3a{left:36.282667pt;}
.x84{left:37.669333pt;}
.xd8{left:39.569200pt;}
.x15{left:44.409333pt;}
.xaf{left:45.354667pt;}
.x43{left:47.153333pt;}
.xca{left:49.754000pt;}
.xdf{left:51.024000pt;}
.x7{left:52.913333pt;}
.x6e{left:55.433333pt;}
.x8{left:56.692933pt;}
.x88{left:58.608133pt;}
.x76{left:62.475600pt;}
.xde{left:63.462133pt;}
.x13{left:65.272667pt;}
.x9{left:67.924133pt;}
.x93{left:69.025867pt;}
.x9e{left:70.055052pt;}
.x39{left:71.631867pt;}
.xdd{left:72.703333pt;}
.xa{left:73.700800pt;}
.x4{left:74.645600pt;}
.x3{left:75.590533pt;}
.x12{left:77.300800pt;}
.x1{left:79.370133pt;}
.x2{left:81.342133pt;}
.x38{left:83.436000pt;}
.x90{left:85.237867pt;}
.x5{left:86.821733pt;}
.xaa{left:88.460933pt;}
.x5a{left:90.012267pt;}
.x61{left:91.738267pt;}
.x89{left:93.131867pt;}
.x8a{left:94.612533pt;}
.x5e{left:95.658800pt;}
.xe7{left:96.978533pt;}
.xab{left:99.496267pt;}
.xda{left:100.639200pt;}
.x6d{left:102.585600pt;}
.xc2{left:104.816133pt;}
.x1a{left:106.465067pt;}
.x1b{left:107.412133pt;}
.x16{left:112.387067pt;}
.x28{left:113.688235pt;}
.xcb{left:116.766400pt;}
.xac{left:122.114000pt;}
.xf4{left:123.664000pt;}
.x87{left:124.721600pt;}
.xe6{left:125.876267pt;}
.xc3{left:127.434000pt;}
.x19{left:129.532000pt;}
.xc9{left:133.862133pt;}
.xd9{left:136.714000pt;}
.xe{left:138.962933pt;}
.xae{left:140.324933pt;}
.x27{left:141.309067pt;}
.xa9{left:146.100400pt;}
.x5c{left:147.174933pt;}
.x62{left:148.282933pt;}
.x36{left:150.069600pt;}
.xc1{left:151.420267pt;}
.xe0{left:153.332000pt;}
.xad{left:156.312400pt;}
.xc7{left:158.326133pt;}
.x85{left:161.807200pt;}
.x86{left:164.386800pt;}
.xea{left:165.993067pt;}
.x3b{left:168.552133pt;}
.x64{left:169.748245pt;}
.x6f{left:171.186533pt;}
.x14{left:173.941067pt;}
.x8c{left:175.547550pt;}
.xe9{left:178.336737pt;}
.x91{left:181.878133pt;}
.x3c{left:190.003894pt;}
.xb1{left:195.835607pt;}
.x9d{left:198.732933pt;}
.x18{left:204.248933pt;}
.xf{left:209.413600pt;}
.xc8{left:215.693333pt;}
.x8e{left:217.350667pt;}
.x7e{left:219.438000pt;}
.x7d{left:221.074800pt;}
.x7b{left:224.348400pt;}
.x7f{left:227.069600pt;}
.x77{left:228.174400pt;}
.x17{left:230.200244pt;}
.x5f{left:231.413217pt;}
.x7a{left:232.532400pt;}
.x79{left:233.616800pt;}
.x7c{left:236.338000pt;}
.x8b{left:241.798133pt;}
.xdb{left:243.275067pt;}
.xba{left:245.853867pt;}
.x42{left:251.131276pt;}
.xa0{left:252.094400pt;}
.xc6{left:253.301733pt;}
.xa1{left:255.470533pt;}
.xbf{left:256.432267pt;}
.xb4{left:259.133200pt;}
.x78{left:260.890000pt;}
.xb5{left:262.488800pt;}
.xb8{left:264.002933pt;}
.xa5{left:268.442933pt;}
.xb3{left:270.816533pt;}
.x80{left:276.173600pt;}
.xb7{left:277.793733pt;}
.xa6{left:279.983067pt;}
.xa3{left:281.722267pt;}
.x81{left:285.994400pt;}
.x37{left:287.414933pt;}
.xb9{left:289.456667pt;}
.x9c{left:296.126667pt;}
.xa7{left:297.416000pt;}
.xb6{left:298.807467pt;}
.x26{left:300.850667pt;}
.xb{left:302.362133pt;}
.xa2{left:304.393200pt;}
.x6c{left:306.564533pt;}
.xb2{left:308.144933pt;}
.xbd{left:309.385867pt;}
.xa4{left:310.490667pt;}
.xdc{left:313.649333pt;}
.x9b{left:316.989200pt;}
.xc{left:319.370000pt;}
.x6{left:321.100533pt;}
.x31{left:323.225467pt;}
.x10{left:327.056933pt;}
.x9a{left:329.017333pt;}
.x24{left:333.741733pt;}
.x30{left:335.253600pt;}
.xd6{left:338.739733pt;}
.xc4{left:340.158533pt;}
.xbe{left:341.591867pt;}
.xb0{left:345.677467pt;}
.x6a{left:353.913600pt;}
.xbc{left:354.809733pt;}
.x9f{left:357.238800pt;}
.xce{left:360.453067pt;}
.x34{left:362.908133pt;}
.x1c{left:365.204933pt;}
.x29{left:366.716667pt;}
.x25{left:367.930933pt;}
.x32{left:369.442800pt;}
.x92{left:371.916933pt;}
.x3e{left:372.874800pt;}
.x46{left:375.090667pt;}
.x4a{left:380.781081pt;}
.x3f{left:383.267586pt;}
.xc0{left:384.265200pt;}
.x48{left:385.504958pt;}
.x8d{left:389.039650pt;}
.x2a{left:394.020267pt;}
.x1d{left:394.938267pt;}
.x4c{left:396.094667pt;}
.x11{left:397.494133pt;}
.x95{left:402.120267pt;}
.xc5{left:403.821075pt;}
.x8f{left:405.431200pt;}
.x68{left:409.384133pt;}
.x6b{left:416.000000pt;}
.xe5{left:418.530133pt;}
.x58{left:419.740133pt;}
.x69{left:428.671867pt;}
.x75{left:431.368267pt;}
.xf0{left:433.914133pt;}
.xa8{left:435.138800pt;}
.xcf{left:436.281333pt;}
.x1e{left:438.118000pt;}
.x2b{left:439.629867pt;}
.x47{left:440.967600pt;}
.xbb{left:442.731600pt;}
.x45{left:444.888133pt;}
.xf6{left:447.204933pt;}
.xd{left:448.149867pt;}
.xe1{left:452.838133pt;}
.xf2{left:455.992800pt;}
.xf5{left:460.892400pt;}
.xd2{left:463.226133pt;}
.x83{left:466.001467pt;}
.x2c{left:466.933333pt;}
.xd0{left:482.705867pt;}
.x56{left:487.332533pt;}
.x66{left:488.918800pt;}
.x96{left:491.302000pt;}
.x40{left:496.404267pt;}
.x49{left:497.512267pt;}
.x70{left:499.038667pt;}
.x71{left:500.146800pt;}
.x73{left:506.482000pt;}
.x1f{left:511.017600pt;}
.xcc{left:512.529467pt;}
.x41{left:517.856027pt;}
.x4b{left:518.977579pt;}
.xf7{left:529.133867pt;}
.xeb{left:535.527467pt;}
.x20{left:538.321200pt;}
.x2d{left:539.833067pt;}
.xd7{left:543.324400pt;}
.xe2{left:547.494933pt;}
.x97{left:548.601600pt;}
.xd3{left:554.837733pt;}
.xec{left:564.705867pt;}
.xd1{left:576.508933pt;}
.x3d{left:580.138129pt;}
.x98{left:582.900133pt;}
.x21{left:586.360667pt;}
.x2e{left:587.872533pt;}
.xd4{left:589.136400pt;}
.x82{left:599.625733pt;}
.x67{left:624.677067pt;}
.x57{left:627.000400pt;}
.xed{left:635.527333pt;}
.x99{left:640.199733pt;}
.xe3{left:642.151867pt;}
.x74{left:646.150000pt;}
.x22{left:659.260400pt;}
.x2f{left:660.772133pt;}
.x94{left:673.976667pt;}
.x35{left:674.921600pt;}
.xe4{left:677.609200pt;}
.xd5{left:680.748000pt;}
.xee{left:682.959600pt;}
.x23{left:686.563867pt;}
.xcd{left:688.075733pt;}
.x33{left:693.819200pt;}
.xef{left:708.285733pt;}
}




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