
    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_2f913225ac9b473729fc715a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.046000;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_3c558a77054e64430dad6bf3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_ca03b7c5d10989feb79d22ce.woff')format("woff");}.ff3{font-family:ff3;line-height:1.004000;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_edf5d5cf194df1c93834dcf6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767000;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_6932fd333a90a4290e95e282.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_0eb1a7f14ce0a7235bcddeb2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093413;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.952000;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_5afaca22b70b7b85c2f8baa6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_5afaca22b70b7b85c2f8baa6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.952000;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_a94c5301e774f6edcd9b138b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.093413;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_8e9ca3ef233604661dc7797e.woff')format("woff");}.fff{font-family:fff;line-height:0.722656;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_586162852e24be9cdd232af0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.093413;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_4c235fa0b04c6c1fe0ae0eda.woff')format("woff");}.ff11{font-family:ff11;line-height:0.916000;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_222d900b91ddddb9158b7e32.woff')format("woff");}.ff12{font-family:ff12;line-height:0.957000;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_37424aca99817a1685f6f9c1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.057000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff15{font-family:ff15;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff17{font-family:ff17;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff18{font-family:ff18;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff19{font-family:ff19;line-height:0.952000;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_a8979e7afc74f35cb8c2d861.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.708000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.952000;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_0dd80cea68452ac3081759e2.woff')format("woff");}.ff20{font-family:ff20;line-height:0.952000;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_443cef8a98ff106747d6036e.woff')format("woff");}.ff21{font-family:ff21;line-height:0.956000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-8.854800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.200000px;}
.v2{vertical-align:21.600000px;}
.v3{vertical-align:27.600000px;}
.v5{vertical-align:54.000000px;}
.ls23{letter-spacing:-3.888000px;}
.ls91{letter-spacing:-3.148200px;}
.ls4{letter-spacing:-2.798400px;}
.ls7b{letter-spacing:-2.700000px;}
.ls51{letter-spacing:-2.592000px;}
.ls65{letter-spacing:-2.484000px;}
.ls6b{letter-spacing:-2.430000px;}
.ls4a{letter-spacing:-2.322000px;}
.ls5a{letter-spacing:-2.268000px;}
.ls40{letter-spacing:-2.256000px;}
.ls66{letter-spacing:-2.052000px;}
.ls85{letter-spacing:-1.998000px;}
.ls4f{letter-spacing:-1.890000px;}
.ls67{letter-spacing:-1.782000px;}
.ls89{letter-spacing:-1.728000px;}
.ls50{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-1.566000px;}
.ls46{letter-spacing:-1.404000px;}
.ls58{letter-spacing:-1.350000px;}
.ls5b{letter-spacing:-1.242000px;}
.ls15{letter-spacing:-1.080000px;}
.ls4c{letter-spacing:-0.972000px;}
.ls36{letter-spacing:-0.810000px;}
.ls35{letter-spacing:-0.768000px;}
.ls54{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.720000px;}
.ls5f{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.432000px;}
.ls3e{letter-spacing:-0.390000px;}
.ls3c{letter-spacing:-0.378000px;}
.ls4b{letter-spacing:-0.324000px;}
.ls45{letter-spacing:-0.314820px;}
.lsa{letter-spacing:-0.270000px;}
.ls38{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.162000px;}
.lsb{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.005400px;}
.ls1a{letter-spacing:0.027000px;}
.ls1c{letter-spacing:0.049800px;}
.ls28{letter-spacing:0.050400px;}
.ls13{letter-spacing:0.054000px;}
.ls3f{letter-spacing:0.081000px;}
.ls78{letter-spacing:0.093600px;}
.ls6f{letter-spacing:0.095400px;}
.ls14{letter-spacing:0.108000px;}
.ls43{letter-spacing:0.109200px;}
.ls22{letter-spacing:0.135000px;}
.ls7e{letter-spacing:0.158400px;}
.ls7f{letter-spacing:0.159000px;}
.lsf{letter-spacing:0.162000px;}
.ls74{letter-spacing:0.186000px;}
.ls73{letter-spacing:0.186600px;}
.ls18{letter-spacing:0.189000px;}
.ls9{letter-spacing:0.216000px;}
.ls8b{letter-spacing:0.222600px;}
.ls44{letter-spacing:0.232800px;}
.ls2c{letter-spacing:0.243000px;}
.ls10{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.297000px;}
.ls71{letter-spacing:0.311400px;}
.ls3d{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.324000px;}
.ls75{letter-spacing:0.336000px;}
.ls68{letter-spacing:0.351000px;}
.ls64{letter-spacing:0.369600px;}
.lse{letter-spacing:0.378000px;}
.ls61{letter-spacing:0.401400px;}
.ls1e{letter-spacing:0.403200px;}
.ls1d{letter-spacing:0.405000px;}
.ls29{letter-spacing:0.422400px;}
.ls12{letter-spacing:0.432000px;}
.ls8c{letter-spacing:0.435600px;}
.ls7a{letter-spacing:0.451800px;}
.ls17{letter-spacing:0.459000px;}
.lsd{letter-spacing:0.486000px;}
.ls31{letter-spacing:0.513000px;}
.ls87{letter-spacing:0.539400px;}
.ls25{letter-spacing:0.540000px;}
.ls7c{letter-spacing:0.541800px;}
.ls83{letter-spacing:0.560400px;}
.ls84{letter-spacing:0.561000px;}
.ls79{letter-spacing:0.567000px;}
.ls24{letter-spacing:0.594000px;}
.ls2d{letter-spacing:0.648000px;}
.ls30{letter-spacing:0.675000px;}
.ls8a{letter-spacing:0.678000px;}
.ls2a{letter-spacing:0.702000px;}
.ls76{letter-spacing:0.732600px;}
.ls11{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.810000px;}
.ls8f{letter-spacing:0.833400px;}
.ls1{letter-spacing:0.864000px;}
.ls48{letter-spacing:0.911400px;}
.ls37{letter-spacing:0.918000px;}
.ls90{letter-spacing:0.945000px;}
.ls32{letter-spacing:0.972000px;}
.ls2e{letter-spacing:1.026000px;}
.ls49{letter-spacing:1.030200px;}
.ls8d{letter-spacing:1.080000px;}
.ls47{letter-spacing:1.134000px;}
.ls39{letter-spacing:1.188000px;}
.ls4e{letter-spacing:1.215000px;}
.ls53{letter-spacing:1.242000px;}
.ls6c{letter-spacing:1.296000px;}
.ls8e{letter-spacing:1.323000px;}
.ls6e{letter-spacing:1.350000px;}
.ls3a{letter-spacing:1.404000px;}
.ls70{letter-spacing:1.407000px;}
.ls2f{letter-spacing:1.566000px;}
.ls3b{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.836000px;}
.ls6a{letter-spacing:1.890000px;}
.ls42{letter-spacing:2.357400px;}
.ls41{letter-spacing:2.358000px;}
.ls57{letter-spacing:2.484000px;}
.ls5c{letter-spacing:2.592000px;}
.ls69{letter-spacing:2.646000px;}
.ls60{letter-spacing:2.808000px;}
.ls6d{letter-spacing:2.862000px;}
.ls5e{letter-spacing:2.970000px;}
.ls55{letter-spacing:3.618000px;}
.ls5d{letter-spacing:4.212000px;}
.ls4d{letter-spacing:4.618800px;}
.ls1f{letter-spacing:4.638000px;}
.ls2b{letter-spacing:4.655400px;}
.ls77{letter-spacing:4.672800px;}
.ls56{letter-spacing:4.698000px;}
.ls59{letter-spacing:4.806000px;}
.ls86{letter-spacing:4.842600px;}
.ls27{letter-spacing:4.871400px;}
.ls72{letter-spacing:4.890600px;}
.ls52{letter-spacing:4.914000px;}
.ls88{letter-spacing:4.921200px;}
.ls63{letter-spacing:4.948200px;}
.ls7d{letter-spacing:5.130000px;}
.ls81{letter-spacing:5.139000px;}
.ls82{letter-spacing:5.203800px;}
.ls3{letter-spacing:10.881969px;}
.ls2{letter-spacing:29.847686px;}
.ls16{letter-spacing:40.878000px;}
.ls80{letter-spacing:96.267600px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(4,208,232),0 0.015em rgb(4,208,232),0.015em 0 rgb(4,208,232),0 -0.015em  rgb(4,208,232);}
.sc2{text-shadow:-0.015em 0 rgb(90,178,205),0 0.015em rgb(90,178,205),0.015em 0 rgb(90,178,205),0 -0.015em  rgb(90,178,205);}
.sc1{text-shadow:-0.015em 0 rgb(26,58,94),0 0.015em rgb(26,58,94),0.015em 0 rgb(26,58,94),0 -0.015em  rgb(26,58,94);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(4,208,232);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(90,178,205);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(26,58,94);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws77{word-spacing:-108.603600px;}
.ws29{word-spacing:-54.000000px;}
.ws19{word-spacing:-40.878000px;}
.ws35{word-spacing:-15.498000px;}
.ws2a{word-spacing:-15.444000px;}
.ws9d{word-spacing:-14.823000px;}
.ws99{word-spacing:-14.472000px;}
.ws8e{word-spacing:-14.418000px;}
.ws9c{word-spacing:-14.364000px;}
.ws25{word-spacing:-14.310000px;}
.ws4b{word-spacing:-14.256000px;}
.ws98{word-spacing:-14.229000px;}
.ws9a{word-spacing:-14.202000px;}
.ws7{word-spacing:-14.196000px;}
.ws26{word-spacing:-14.148000px;}
.ws2d{word-spacing:-14.094000px;}
.ws34{word-spacing:-14.040000px;}
.ws9b{word-spacing:-13.986000px;}
.ws24{word-spacing:-13.932000px;}
.ws18{word-spacing:-13.878000px;}
.ws21{word-spacing:-13.608000px;}
.ws27{word-spacing:-13.338000px;}
.ws5e{word-spacing:-12.336000px;}
.ws69{word-spacing:-11.616000px;}
.ws59{word-spacing:-11.448000px;}
.ws1e{word-spacing:-9.990000px;}
.ws1a{word-spacing:-9.828000px;}
.ws1f{word-spacing:-9.600000px;}
.ws8{word-spacing:-8.090874px;}
.ws3a{word-spacing:-7.776054px;}
.ws6d{word-spacing:-5.130000px;}
.ws44{word-spacing:-4.914000px;}
.ws4a{word-spacing:-4.806000px;}
.ws47{word-spacing:-4.698000px;}
.ws4f{word-spacing:-4.212000px;}
.ws46{word-spacing:-3.618000px;}
.ws50{word-spacing:-2.970000px;}
.ws5b{word-spacing:-2.862000px;}
.ws52{word-spacing:-2.808000px;}
.ws57{word-spacing:-2.646000px;}
.ws4e{word-spacing:-2.592000px;}
.ws48{word-spacing:-2.484000px;}
.ws58{word-spacing:-1.890000px;}
.ws53{word-spacing:-1.836000px;}
.ws38{word-spacing:-1.404000px;}
.ws5c{word-spacing:-1.350000px;}
.ws5a{word-spacing:-1.296000px;}
.ws40{word-spacing:-1.242000px;}
.ws37{word-spacing:-1.188000px;}
.ws3c{word-spacing:-1.134000px;}
.ws97{word-spacing:-1.080000px;}
.ws2c{word-spacing:-1.026000px;}
.ws2e{word-spacing:-0.972000px;}
.ws32{word-spacing:-0.918000px;}
.ws3{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.810000px;}
.ws13{word-spacing:-0.756000px;}
.ws28{word-spacing:-0.702000px;}
.ws2b{word-spacing:-0.648000px;}
.ws20{word-spacing:-0.594000px;}
.ws22{word-spacing:-0.540000px;}
.wse{word-spacing:-0.486000px;}
.ws14{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.378000px;}
.ws67{word-spacing:-0.336000px;}
.ws9{word-spacing:-0.324000px;}
.ws12{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.162000px;}
.ws16{word-spacing:-0.108000px;}
.ws15{word-spacing:-0.054000px;}
.ws11{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.054000px;}
.wsc{word-spacing:0.108000px;}
.wsd{word-spacing:0.162000px;}
.ws33{word-spacing:0.216000px;}
.wsa{word-spacing:0.270000px;}
.ws3e{word-spacing:0.324000px;}
.ws36{word-spacing:0.378000px;}
.ws2f{word-spacing:0.432000px;}
.ws4{word-spacing:0.480000px;}
.ws23{word-spacing:0.540000px;}
.ws6{word-spacing:0.648000px;}
.ws51{word-spacing:0.702000px;}
.ws5{word-spacing:0.720000px;}
.ws45{word-spacing:0.756000px;}
.ws30{word-spacing:0.768000px;}
.ws31{word-spacing:0.810000px;}
.ws3f{word-spacing:0.972000px;}
.ws17{word-spacing:1.080000px;}
.ws4d{word-spacing:1.242000px;}
.ws49{word-spacing:1.350000px;}
.ws3b{word-spacing:1.404000px;}
.ws1b{word-spacing:1.566000px;}
.ws42{word-spacing:1.620000px;}
.ws8f{word-spacing:1.728000px;}
.ws56{word-spacing:1.782000px;}
.ws41{word-spacing:1.890000px;}
.ws7b{word-spacing:1.998000px;}
.ws55{word-spacing:2.052000px;}
.ws39{word-spacing:2.256000px;}
.ws4c{word-spacing:2.268000px;}
.ws3d{word-spacing:2.322000px;}
.ws54{word-spacing:2.484000px;}
.ws43{word-spacing:2.592000px;}
.ws68{word-spacing:2.700000px;}
.ws2{word-spacing:2.798400px;}
.ws9e{word-spacing:3.148200px;}
.ws1{word-spacing:9.194153px;}
.ws74{word-spacing:21.915000px;}
.ws76{word-spacing:21.915600px;}
.ws8b{word-spacing:22.533600px;}
.ws81{word-spacing:28.299600px;}
.ws7a{word-spacing:34.299600px;}
.ws8d{word-spacing:34.917600px;}
.ws64{word-spacing:37.843200px;}
.ws6c{word-spacing:43.079400px;}
.ws70{word-spacing:43.080000px;}
.ws94{word-spacing:43.841400px;}
.ws90{word-spacing:45.521400px;}
.ws78{word-spacing:46.731000px;}
.ws71{word-spacing:55.463400px;}
.ws5f{word-spacing:56.456400px;}
.ws75{word-spacing:59.115000px;}
.ws79{word-spacing:59.115600px;}
.ws8a{word-spacing:59.733600px;}
.ws82{word-spacing:64.107600px;}
.ws95{word-spacing:70.337400px;}
.ws91{word-spacing:71.820000px;}
.ws96{word-spacing:77.925000px;}
.ws92{word-spacing:78.924600px;}
.ws6f{word-spacing:80.279400px;}
.ws72{word-spacing:83.883600px;}
.ws73{word-spacing:83.931600px;}
.ws89{word-spacing:84.501600px;}
.ws8c{word-spacing:84.549600px;}
.ws84{word-spacing:100.299600px;}
.ws80{word-spacing:102.061800px;}
.ws6e{word-spacing:105.047400px;}
.ws6a{word-spacing:105.048000px;}
.ws6b{word-spacing:105.095400px;}
.ws7c{word-spacing:118.525800px;}
.ws66{word-spacing:125.514000px;}
.ws87{word-spacing:126.123600px;}
.ws61{word-spacing:129.464400px;}
.ws62{word-spacing:140.394000px;}
.ws63{word-spacing:142.828200px;}
.ws7d{word-spacing:149.575200px;}
.ws7f{word-spacing:152.983200px;}
.ws88{word-spacing:176.557800px;}
.ws7e{word-spacing:178.999200px;}
.ws65{word-spacing:181.530000px;}
.ws60{word-spacing:182.154000px;}
.ws83{word-spacing:191.437800px;}
.ws86{word-spacing:209.149800px;}
.ws93{word-spacing:225.215400px;}
.ws85{word-spacing:231.229800px;}
.ws5d{word-spacing:835.385607px;}
._57{margin-left:-96.270000px;}
._18{margin-left:-40.905000px;}
._c{margin-left:-15.609600px;}
._d{margin-left:-13.830000px;}
._2{margin-left:-12.348000px;}
._0{margin-left:-10.854000px;}
._14{margin-left:-9.474000px;}
._1{margin-left:-8.440200px;}
._11{margin-left:-7.213200px;}
._12{margin-left:-5.711400px;}
._a{margin-left:-3.940800px;}
._4{margin-left:-2.807400px;}
._3{margin-left:-1.060800px;}
._8{width:1.102800px;}
._6{width:2.116800px;}
._7{width:4.070400px;}
._b{width:5.115600px;}
._e{width:7.047000px;}
._9{width:8.169600px;}
._f{width:10.177800px;}
._2f{width:11.205600px;}
._30{width:12.626400px;}
._32{width:14.904000px;}
._31{width:16.135200px;}
._2e{width:17.280000px;}
._23{width:23.112000px;}
._22{width:28.944000px;}
._58{width:34.251000px;}
._10{width:35.424000px;}
._15{width:40.878000px;}
._13{width:44.604000px;}
._1f{width:46.761600px;}
._3c{width:50.179200px;}
._3b{width:52.861800px;}
._50{width:55.416000px;}
._55{width:58.645200px;}
._56{width:59.873400px;}
._3d{width:60.963000px;}
._51{width:64.114200px;}
._24{width:66.853800px;}
._2b{width:69.048600px;}
._52{width:70.557000px;}
._35{width:72.432600px;}
._5e{width:75.997200px;}
._43{width:77.130000px;}
._4e{width:79.321800px;}
._4d{width:81.141600px;}
._33{width:83.164200px;}
._6a{width:86.045400px;}
._5{width:87.408000px;}
._5c{width:88.827600px;}
._44{width:90.061800px;}
._4a{width:91.705800px;}
._37{width:93.571200px;}
._67{width:95.229000px;}
._36{width:96.253800px;}
._39{width:97.535400px;}
._62{width:101.706000px;}
._34{width:103.727400px;}
._53{width:106.155000px;}
._27{width:107.845800px;}
._6e{width:111.060600px;}
._5b{width:113.643600px;}
._66{width:115.077000px;}
._4f{width:116.520600px;}
._4c{width:118.294200px;}
._59{width:119.835600px;}
._72{width:120.838800px;}
._73{width:122.436600px;}
._5f{width:128.173800px;}
._70{width:132.063000px;}
._48{width:133.104600px;}
._2a{width:136.584600px;}
._46{width:138.906000px;}
._42{width:141.800400px;}
._47{width:144.234000px;}
._3e{width:145.440600px;}
._6c{width:147.965400px;}
._68{width:150.278400px;}
._28{width:155.544600px;}
._69{width:156.749400px;}
._6d{width:158.927400px;}
._3f{width:160.458000px;}
._41{width:166.616400px;}
._45{width:168.330000px;}
._40{width:169.629000px;}
._3a{width:171.171000px;}
._2c{width:174.840600px;}
._29{width:179.592600px;}
._38{width:180.988200px;}
._25{width:182.232600px;}
._54{width:190.939200px;}
._63{width:195.277800px;}
._2d{width:207.384600px;}
._5d{width:211.501800px;}
._60{width:219.373800px;}
._74{width:222.047400px;}
._77{width:224.687400px;}
._76{width:227.711400px;}
._61{width:231.613800px;}
._6b{width:245.279400px;}
._5a{width:246.877800px;}
._6f{width:253.151400px;}
._71{width:256.943400px;}
._75{width:265.391400px;}
._1c{width:278.653800px;}
._65{width:280.655400px;}
._17{width:303.328200px;}
._4b{width:350.812800px;}
._49{width:366.364800px;}
._64{width:369.766800px;}
._21{width:395.958600px;}
._26{width:411.554400px;}
._20{width:611.604000px;}
._1d{width:681.146400px;}
._1b{width:823.848600px;}
._1e{width:1040.742000px;}
._1a{width:1211.760000px;}
._16{width:1271.697600px;}
._19{width:1421.658000px;}
.fc7{color:rgb(4,208,232);}
.fc6{color:rgb(90,178,205);}
.fc4{color:rgb(23,111,192);}
.fc5{color:rgb(0,173,239);}
.fc2{color:transparent;}
.fc1{color:rgb(26,58,94);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs8{font-size:43.800000px;}
.fs7{font-size:44.416200px;}
.fs4{font-size:48.000000px;}
.fsc{font-size:49.199400px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:78.000000px;}
.fs2{font-size:96.000000px;}
.fs3{font-size:102.000000px;}
.fs1{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:0.510900px;}
.y17d{bottom:7.515900px;}
.y139{bottom:14.133300px;}
.y12e{bottom:20.251650px;}
.y138{bottom:37.533300px;}
.y3d{bottom:45.610500px;}
.y12d{bottom:49.411650px;}
.y137{bottom:63.093300px;}
.yb0{bottom:72.632550px;}
.yd6{bottom:73.532550px;}
.y3c{bottom:74.833950px;}
.y3a{bottom:75.685500px;}
.y25a{bottom:76.092600px;}
.y11c{bottom:76.110150px;}
.y61{bottom:76.110300px;}
.y12f{bottom:78.571650px;}
.yb{bottom:78.678450px;}
.y22c{bottom:81.705450px;}
.y1b0{bottom:83.081550px;}
.y1e1{bottom:83.160750px;}
.y15e{bottom:83.978550px;}
.yaf{bottom:86.132550px;}
.y136{bottom:86.493300px;}
.yd5{bottom:87.032550px;}
.y1{bottom:87.115050px;}
.y1e3{bottom:87.587550px;}
.y84{bottom:90.198300px;}
.y60{bottom:90.226350px;}
.ya{bottom:90.903450px;}
.y259{bottom:92.292600px;}
.y11b{bottom:94.110150px;}
.yf9{bottom:94.110300px;}
.y15d{bottom:97.478550px;}
.yae{bottom:99.632550px;}
.yd4{bottom:100.532550px;}
.y9{bottom:103.128450px;}
.y22b{bottom:104.115900px;}
.y83{bottom:104.286450px;}
.y5f{bottom:104.342400px;}
.y1af{bottom:104.641500px;}
.y180{bottom:104.930700px;}
.y12c{bottom:107.731650px;}
.y258{bottom:108.492450px;}
.y1e2{bottom:109.572600px;}
.y15c{bottom:110.978550px;}
.y11a{bottom:112.110150px;}
.yf8{bottom:112.110300px;}
.yad{bottom:113.132550px;}
.yd3{bottom:114.032550px;}
.y8{bottom:115.353450px;}
.y133{bottom:116.013300px;}
.y22a{bottom:117.615900px;}
.y82{bottom:118.374450px;}
.y5e{bottom:118.458450px;}
.y178{bottom:121.196400px;}
.y17a{bottom:121.375050px;}
.y1e0{bottom:123.072600px;}
.y15b{bottom:124.478550px;}
.y257{bottom:124.692600px;}
.y1ae{bottom:126.201300px;}
.yac{bottom:126.632550px;}
.yd2{bottom:127.532550px;}
.y119{bottom:130.110150px;}
.yf7{bottom:130.110300px;}
.y81{bottom:132.462450px;}
.y5d{bottom:132.574500px;}
.y17f{bottom:133.345800px;}
.y12b{bottom:136.891650px;}
.y15a{bottom:137.978550px;}
.y228{bottom:140.026200px;}
.yab{bottom:140.132550px;}
.y256{bottom:140.892450px;}
.yd1{bottom:141.032550px;}
.y39{bottom:141.387600px;}
.y135{bottom:142.593300px;}
.y1df{bottom:145.598700px;}
.y5c{bottom:146.690550px;}
.y1ad{bottom:147.761250px;}
.y118{bottom:148.110150px;}
.yf6{bottom:148.110300px;}
.y134{bottom:153.093300px;}
.y227{bottom:153.526200px;}
.yaa{bottom:153.632550px;}
.y1de{bottom:154.083750px;}
.y38{bottom:154.137600px;}
.yd0{bottom:154.532550px;}
.y255{bottom:157.092600px;}
.y80{bottom:160.638600px;}
.y1ac{bottom:161.261250px;}
.y159{bottom:162.089550px;}
.y141{bottom:162.510300px;}
.y13e{bottom:162.933450px;}
.y17e{bottom:163.972200px;}
.y130{bottom:166.051650px;}
.y177{bottom:166.110150px;}
.yf5{bottom:166.110300px;}
.y226{bottom:167.026200px;}
.ya9{bottom:167.132550px;}
.y1dd{bottom:167.583750px;}
.y229{bottom:171.615900px;}
.y13d{bottom:173.433450px;}
.y7f{bottom:174.726750px;}
.y1ab{bottom:174.761250px;}
.y158{bottom:175.589550px;}
.y5b{bottom:177.322800px;}
.y37{bottom:178.137600px;}
.y225{bottom:180.526200px;}
.y1dc{bottom:181.083750px;}
.ycf{bottom:181.532550px;}
.y13c{bottom:183.933450px;}
.y117{bottom:184.110150px;}
.yf4{bottom:184.110300px;}
.y1aa{bottom:188.261250px;}
.y7e{bottom:188.814750px;}
.y157{bottom:189.089550px;}
.y36{bottom:189.387600px;}
.y254{bottom:189.492450px;}
.y5a{bottom:191.438850px;}
.y17c{bottom:192.384900px;}
.y224{bottom:194.026200px;}
.ya8{bottom:194.132550px;}
.y13b{bottom:194.433450px;}
.y132{bottom:194.476500px;}
.yce{bottom:195.032550px;}
.y246{bottom:196.643850px;}
.y1a9{bottom:201.761250px;}
.y116{bottom:202.110150px;}
.yf3{bottom:202.110300px;}
.y156{bottom:202.589550px;}
.y7d{bottom:202.902900px;}
.y1db{bottom:203.068950px;}
.y13a{bottom:204.933450px;}
.y59{bottom:205.554900px;}
.y223{bottom:207.526200px;}
.ya7{bottom:207.632550px;}
.ycd{bottom:208.532550px;}
.y1da{bottom:211.554000px;}
.y35{bottom:213.387600px;}
.y155{bottom:216.089550px;}
.y7c{bottom:216.990900px;}
.y58{bottom:219.670950px;}
.y115{bottom:220.110150px;}
.yf2{bottom:220.110300px;}
.ya6{bottom:221.132550px;}
.ycc{bottom:222.032550px;}
.y245{bottom:223.306200px;}
.y1a8{bottom:223.321200px;}
.y1d9{bottom:225.054000px;}
.y34{bottom:226.137600px;}
.y222{bottom:229.936500px;}
.y57{bottom:233.787000px;}
.ya5{bottom:234.632550px;}
.y16d{bottom:234.947400px;}
.y16e{bottom:235.125900px;}
.ycb{bottom:235.532550px;}
.y13f{bottom:235.533300px;}
.y114{bottom:238.110150px;}
.yf1{bottom:238.110300px;}
.y1d8{bottom:238.554000px;}
.y221{bottom:238.846800px;}
.y154{bottom:240.200700px;}
.y1a7{bottom:244.881150px;}
.y7b{bottom:245.167050px;}
.ya4{bottom:248.132550px;}
.yca{bottom:249.032550px;}
.y244{bottom:249.968400px;}
.y33{bottom:251.637600px;}
.y220{bottom:252.346800px;}
.y131{bottom:252.510300px;}
.y153{bottom:253.700700px;}
.y113{bottom:256.110150px;}
.yf0{bottom:256.110300px;}
.y1a6{bottom:258.381150px;}
.y7a{bottom:259.255200px;}
.y1d7{bottom:260.539200px;}
.ya3{bottom:261.632550px;}
.yc9{bottom:262.532550px;}
.y32{bottom:263.637600px;}
.y56{bottom:264.419100px;}
.y21f{bottom:265.846800px;}
.y152{bottom:267.200700px;}
.y140{bottom:267.213300px;}
.y1d6{bottom:269.024250px;}
.y1a5{bottom:271.881150px;}
.y79{bottom:273.343200px;}
.y12a{bottom:273.678000px;}
.y112{bottom:274.110150px;}
.yef{bottom:274.110300px;}
.y31{bottom:275.637600px;}
.y243{bottom:276.630750px;}
.y55{bottom:278.535300px;}
.y151{bottom:280.700700px;}
.y1d5{bottom:282.524250px;}
.y1a4{bottom:285.381150px;}
.y78{bottom:287.431200px;}
.y30{bottom:287.637600px;}
.y21d{bottom:288.257100px;}
.ya2{bottom:288.632550px;}
.yc8{bottom:289.532550px;}
.y111{bottom:292.110150px;}
.yee{bottom:292.110300px;}
.y54{bottom:292.651350px;}
.y21e{bottom:292.846800px;}
.y150{bottom:294.200700px;}
.y1d4{bottom:296.024250px;}
.y2f{bottom:299.637600px;}
.y77{bottom:301.519350px;}
.y21c{bottom:301.757100px;}
.ya1{bottom:302.132550px;}
.yc7{bottom:303.032550px;}
.y242{bottom:303.293100px;}
.y53{bottom:306.767400px;}
.y1a3{bottom:306.941100px;}
.y110{bottom:310.110150px;}
.yed{bottom:310.110300px;}
.y181{bottom:310.830450px;}
.y2e{bottom:311.637600px;}
.y21b{bottom:315.257100px;}
.ya0{bottom:315.632550px;}
.yc6{bottom:316.532550px;}
.y1d3{bottom:318.009450px;}
.y14f{bottom:318.311850px;}
.y52{bottom:320.883450px;}
.y2d{bottom:323.637600px;}
.y1d2{bottom:326.494650px;}
.y10f{bottom:328.110150px;}
.yec{bottom:328.110300px;}
.y1a2{bottom:328.501050px;}
.y21a{bottom:328.757100px;}
.y9f{bottom:329.132550px;}
.y76{bottom:329.695500px;}
.y241{bottom:329.955300px;}
.yc5{bottom:330.032550px;}
.y14e{bottom:331.811850px;}
.y1ff{bottom:333.448200px;}
.y2c{bottom:335.637600px;}
.y17b{bottom:337.758000px;}
.y1d1{bottom:339.994650px;}
.y1a1{bottom:342.001050px;}
.yc4{bottom:343.532550px;}
.y75{bottom:343.783500px;}
.y195{bottom:344.695200px;}
.y14d{bottom:345.311850px;}
.y10e{bottom:346.110150px;}
.yeb{bottom:346.110300px;}
.y1c8{bottom:347.512500px;}
.y2b{bottom:347.637600px;}
.y16c{bottom:348.716850px;}
.y166{bottom:348.895350px;}
.y218{bottom:351.167400px;}
.y253{bottom:351.492450px;}
.y51{bottom:351.515550px;}
.y1d0{bottom:353.494650px;}
.y1a0{bottom:355.501050px;}
.y9e{bottom:356.132550px;}
.y240{bottom:356.617650px;}
.yc3{bottom:357.032550px;}
.y1fe{bottom:357.134100px;}
.y74{bottom:357.871650px;}
.y14c{bottom:358.811850px;}
.y2a{bottom:359.637600px;}
.y176{bottom:364.110150px;}
.yea{bottom:364.110300px;}
.y217{bottom:364.667400px;}
.y252{bottom:367.692600px;}
.y194{bottom:368.381100px;}
.y19f{bottom:369.001050px;}
.y1c7{bottom:369.072450px;}
.y219{bottom:369.257100px;}
.y9d{bottom:369.632550px;}
.yc2{bottom:370.532550px;}
.y29{bottom:371.637600px;}
.y73{bottom:371.959650px;}
.y1cf{bottom:375.479700px;}
.y216{bottom:378.167400px;}
.y1fd{bottom:380.820000px;}
.y10d{bottom:382.110150px;}
.ye9{bottom:382.110300px;}
.y14b{bottom:382.923000px;}
.y9c{bottom:383.132550px;}
.y23f{bottom:383.280000px;}
.y28{bottom:383.637600px;}
.y251{bottom:383.892450px;}
.y5{bottom:384.038400px;}
.y72{bottom:386.047800px;}
.y19e{bottom:390.561000px;}
.y1c6{bottom:390.632400px;}
.y215{bottom:391.667400px;}
.y193{bottom:392.067150px;}
.y14a{bottom:396.423000px;}
.y9b{bottom:396.632550px;}
.y1ce{bottom:397.107900px;}
.yc1{bottom:397.532550px;}
.y10c{bottom:400.110150px;}
.ye8{bottom:400.110300px;}
.y1fc{bottom:404.505900px;}
.y214{bottom:405.167400px;}
.y50{bottom:406.463850px;}
.y27{bottom:408.387600px;}
.y149{bottom:409.923000px;}
.y23e{bottom:409.942200px;}
.y9a{bottom:410.132550px;}
.yc0{bottom:411.032550px;}
.y19d{bottom:412.189200px;}
.y1c5{bottom:412.192350px;}
.y71{bottom:414.223950px;}
.y192{bottom:415.752900px;}
.y10b{bottom:418.110150px;}
.ye7{bottom:418.110300px;}
.y26{bottom:420.387600px;}
.y4f{bottom:420.579900px;}
.y148{bottom:423.423000px;}
.y99{bottom:423.632550px;}
.ybf{bottom:424.532550px;}
.y1c4{bottom:425.692350px;}
.y212{bottom:427.577700px;}
.y1fb{bottom:428.191800px;}
.y213{bottom:432.167400px;}
.y1cc{bottom:432.352350px;}
.y25{bottom:432.387600px;}
.y19c{bottom:433.817400px;}
.y4e{bottom:434.695950px;}
.y10a{bottom:436.110150px;}
.ye6{bottom:436.110300px;}
.y23d{bottom:436.604550px;}
.y19a{bottom:436.769100px;}
.ybe{bottom:438.032550px;}
.y1c3{bottom:439.192350px;}
.y191{bottom:439.438950px;}
.y211{bottom:441.077700px;}
.y24{bottom:444.387600px;}
.y4{bottom:445.810050px;}
.y1cb{bottom:445.852350px;}
.y147{bottom:447.534000px;}
.y4d{bottom:448.812000px;}
.y199{bottom:450.269100px;}
.y98{bottom:450.632550px;}
.ybd{bottom:451.532550px;}
.y1fa{bottom:451.877700px;}
.y1c2{bottom:452.692350px;}
.y109{bottom:454.110150px;}
.ye5{bottom:454.110300px;}
.y210{bottom:454.577700px;}
.y23{bottom:456.387600px;}
.y70{bottom:456.488100px;}
.y146{bottom:461.034000px;}
.y15f{bottom:462.829650px;}
.y4c{bottom:462.928050px;}
.y165{bottom:463.008150px;}
.y190{bottom:463.124850px;}
.y23c{bottom:463.266750px;}
.y198{bottom:463.769100px;}
.y97{bottom:464.132550px;}
.y250{bottom:464.892450px;}
.ybc{bottom:465.032550px;}
.y20f{bottom:468.077700px;}
.y22{bottom:468.387600px;}
.y6f{bottom:470.576250px;}
.y108{bottom:472.110150px;}
.ye4{bottom:472.110300px;}
.y1c1{bottom:474.252300px;}
.y145{bottom:474.534000px;}
.y1f9{bottom:475.563600px;}
.y197{bottom:477.269100px;}
.y96{bottom:477.632550px;}
.ybb{bottom:478.532550px;}
.y21{bottom:480.387600px;}
.y1cd{bottom:481.096800px;}
.y6e{bottom:484.664250px;}
.y18f{bottom:486.810750px;}
.y144{bottom:488.034000px;}
.y23b{bottom:489.556350px;}
.y107{bottom:490.110150px;}
.ye3{bottom:490.110300px;}
.y20e{bottom:490.488150px;}
.y95{bottom:491.132550px;}
.yba{bottom:492.032550px;}
.y20{bottom:492.387600px;}
.y4b{bottom:493.560300px;}
.y1c0{bottom:495.812250px;}
.y3{bottom:496.810050px;}
.y24f{bottom:497.292600px;}
.y6d{bottom:498.752250px;}
.y1f8{bottom:499.249500px;}
.y20d{bottom:499.398450px;}
.y19b{bottom:501.848850px;}
.y1ca{bottom:502.725150px;}
.y1f{bottom:504.387600px;}
.y4a{bottom:507.676350px;}
.y106{bottom:508.110150px;}
.ye2{bottom:508.110300px;}
.y1bf{bottom:509.312250px;}
.y18e{bottom:510.496650px;}
.y143{bottom:512.145150px;}
.y20c{bottom:512.898450px;}
.y24e{bottom:513.492600px;}
.y235{bottom:514.265850px;}
.y1e{bottom:516.387600px;}
.y94{bottom:518.132550px;}
.yb9{bottom:519.032550px;}
.y1c9{bottom:519.225150px;}
.y23a{bottom:521.015850px;}
.y49{bottom:521.792400px;}
.y1be{bottom:522.812250px;}
.y1f7{bottom:522.935550px;}
.y196{bottom:523.477200px;}
.y105{bottom:526.110150px;}
.ye1{bottom:526.110300px;}
.y20b{bottom:526.398450px;}
.y6c{bottom:526.928400px;}
.y234{bottom:527.765850px;}
.y1d{bottom:528.387600px;}
.y24d{bottom:529.692600px;}
.y93{bottom:531.632550px;}
.yb8{bottom:532.532550px;}
.y18d{bottom:534.182550px;}
.y238{bottom:534.515850px;}
.y22f{bottom:535.661100px;}
.y48{bottom:535.908450px;}
.y1bd{bottom:536.312250px;}
.y142{bottom:536.324550px;}
.y1c{bottom:540.387600px;}
.y6b{bottom:541.016550px;}
.y231{bottom:541.265850px;}
.y104{bottom:544.110150px;}
.ye0{bottom:544.110300px;}
.y92{bottom:545.132550px;}
.y24c{bottom:545.892450px;}
.yb7{bottom:546.032550px;}
.y1f6{bottom:546.621450px;}
.y2{bottom:547.810050px;}
.y237{bottom:548.015850px;}
.y20a{bottom:548.808750px;}
.y1bc{bottom:549.812250px;}
.y47{bottom:550.024500px;}
.y1b{bottom:552.387600px;}
.y230{bottom:554.765850px;}
.y6a{bottom:555.104550px;}
.y18c{bottom:557.868450px;}
.y91{bottom:558.632550px;}
.yb6{bottom:559.532550px;}
.y236{bottom:561.515850px;}
.y24b{bottom:562.092450px;}
.y103{bottom:562.110150px;}
.ydf{bottom:562.110300px;}
.y233{bottom:568.265850px;}
.y69{bottom:569.192700px;}
.y1f5{bottom:570.307350px;}
.y1ed{bottom:570.940350px;}
.y209{bottom:571.219050px;}
.y1bb{bottom:571.372200px;}
.yb5{bottom:573.032550px;}
.y239{bottom:575.015850px;}
.y1a{bottom:577.137600px;}
.y122{bottom:578.082000px;}
.y129{bottom:578.260650px;}
.y24a{bottom:578.292600px;}
.y102{bottom:580.110150px;}
.yde{bottom:580.110300px;}
.y46{bottom:580.656750px;}
.y18b{bottom:581.554350px;}
.y232{bottom:581.765850px;}
.y68{bottom:583.280700px;}
.y171{bottom:583.568550px;}
.y208{bottom:584.719050px;}
.y90{bottom:585.632550px;}
.yb4{bottom:586.532550px;}
.y19{bottom:589.887600px;}
.y1ec{bottom:592.500300px;}
.y1ba{bottom:592.932150px;}
.y1f4{bottom:593.993250px;}
.y45{bottom:594.772800px;}
.y67{bottom:597.368700px;}
.y11f{bottom:598.110150px;}
.ydd{bottom:598.110300px;}
.yb3{bottom:600.032550px;}
.y18{bottom:602.637600px;}
.y18a{bottom:605.240250px;}
.y22e{bottom:605.997750px;}
.y1eb{bottom:606.000300px;}
.y1b9{bottom:606.432150px;}
.y207{bottom:607.129350px;}
.y1f3{bottom:607.493250px;}
.y249{bottom:607.992600px;}
.y44{bottom:608.888850px;}
.y17{bottom:615.387600px;}
.y101{bottom:616.110150px;}
.ydc{bottom:616.110300px;}
.y179{bottom:619.485300px;}
.y22d{bottom:622.497750px;}
.y43{bottom:623.004900px;}
.y66{bottom:625.544850px;}
.y8f{bottom:626.732550px;}
.yb2{bottom:627.032550px;}
.y1ea{bottom:627.560100px;}
.y1b8{bottom:627.991950px;}
.y16{bottom:628.137600px;}
.y189{bottom:628.994550px;}
.y206{bottom:629.608050px;}
.y169{bottom:629.689950px;}
.y1f2{bottom:631.247400px;}
.y11e{bottom:634.110150px;}
.ydb{bottom:634.110300px;}
.y187{bottom:635.744550px;}
.y42{bottom:637.120950px;}
.y161{bottom:637.485300px;}
.y1f1{bottom:637.997400px;}
.y65{bottom:639.633000px;}
.y8e{bottom:640.532550px;}
.y15{bottom:640.887600px;}
.y124{bottom:642.268650px;}
.y183{bottom:642.494550px;}
.y168{bottom:647.689950px;}
.y1e9{bottom:649.120050px;}
.y186{bottom:649.244550px;}
.y1b7{bottom:649.551900px;}
.y41{bottom:651.237000px;}
.y205{bottom:652.086600px;}
.y100{bottom:652.110150px;}
.yda{bottom:652.110300px;}
.y14{bottom:653.637600px;}
.y64{bottom:653.721000px;}
.y8d{bottom:654.032550px;}
.y185{bottom:654.371700px;}
.y160{bottom:655.485300px;}
.y188{bottom:655.994550px;}
.y123{bottom:660.268650px;}
.y1e8{bottom:662.620050px;}
.y1b6{bottom:663.051900px;}
.y40{bottom:665.353200px;}
.y167{bottom:665.689950px;}
.y13{bottom:666.387600px;}
.y8c{bottom:667.532550px;}
.y63{bottom:667.809150px;}
.y1f0{bottom:668.501700px;}
.y203{bottom:669.700950px;}
.y248{bottom:670.092450px;}
.yff{bottom:670.110150px;}
.yd9{bottom:670.110300px;}
.y12{bottom:679.137600px;}
.y184{bottom:679.748700px;}
.y8b{bottom:681.032550px;}
.y62{bottom:681.897150px;}
.y202{bottom:683.200950px;}
.y1e7{bottom:684.180000px;}
.y1b5{bottom:684.611850px;}
.y1ef{bottom:685.001700px;}
.y247{bottom:686.292600px;}
.yfe{bottom:688.110150px;}
.yd8{bottom:688.110300px;}
.yb1{bottom:694.532550px;}
.y3f{bottom:695.985300px;}
.y121{bottom:704.520150px;}
.y11{bottom:704.637600px;}
.y1e6{bottom:705.739950px;}
.y175{bottom:706.110150px;}
.yfd{bottom:706.110300px;}
.y1b4{bottom:706.171800px;}
.y182{bottom:706.476450px;}
.y8a{bottom:708.032550px;}
.y10{bottom:717.387600px;}
.y1e5{bottom:719.239950px;}
.y1b3{bottom:719.671800px;}
.y89{bottom:721.532550px;}
.y204{bottom:723.293700px;}
.y174{bottom:724.110150px;}
.yfc{bottom:724.110300px;}
.yf{bottom:730.137600px;}
.y7{bottom:733.921800px;}
.y88{bottom:735.032550px;}
.y1e4{bottom:740.799900px;}
.y1b2{bottom:741.231750px;}
.y173{bottom:742.110150px;}
.yfb{bottom:742.110300px;}
.ye{bottom:742.887600px;}
.y201{bottom:745.772400px;}
.y127{bottom:746.431950px;}
.y87{bottom:748.532550px;}
.y120{bottom:749.396100px;}
.y3e{bottom:749.538000px;}
.y11d{bottom:749.608800px;}
.yd7{bottom:749.821350px;}
.y164{bottom:755.610300px;}
.yd{bottom:755.637600px;}
.y126{bottom:759.931950px;}
.y172{bottom:760.110150px;}
.yfa{bottom:760.110300px;}
.y1ee{bottom:761.584350px;}
.y86{bottom:762.032550px;}
.y200{bottom:762.272400px;}
.y6{bottom:762.421800px;}
.y1b1{bottom:762.859950px;}
.yc{bottom:768.387600px;}
.y163{bottom:769.110300px;}
.y125{bottom:786.931950px;}
.y170{bottom:787.749900px;}
.y128{bottom:788.056950px;}
.y16b{bottom:788.327700px;}
.y162{bottom:796.110300px;}
.y85{bottom:796.747950px;}
.y16f{bottom:799.749900px;}
.y16a{bottom:800.327700px;}
.hb{height:33.667480px;}
.h9{height:33.978000px;}
.h1b{height:35.040000px;}
.h10{height:35.467200px;}
.hc{height:35.959800px;}
.h7{height:36.576000px;}
.h1f{height:37.489943px;}
.hd{height:38.304000px;}
.h11{height:38.448000px;}
.h19{height:38.832000px;}
.h6{height:39.408000px;}
.h14{height:41.148000px;}
.h8{height:42.174864px;}
.h18{height:42.720000px;}
.hf{height:43.092000px;}
.h15{height:43.686000px;}
.h12{height:44.334000px;}
.h13{height:47.446722px;}
.h1d{height:48.060000px;}
.h1c{height:48.330000px;}
.ha{height:49.323000px;}
.h16{height:53.446722px;}
.he{height:62.244000px;}
.h20{height:63.576000px;}
.h2{height:64.038000px;}
.h4{height:78.816000px;}
.h5{height:83.742000px;}
.h21{height:90.576000px;}
.h3{height:133.002000px;}
.h17{height:187.198500px;}
.h1e{height:222.852000px;}
.h1a{height:290.520000px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w2{width:127.558500px;}
.w4{width:339.120000px;}
.w3{width:340.200000px;}
.w5{width:370.474500px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x23{left:26.272350px;}
.x1c{left:27.977850px;}
.x19{left:36.097500px;}
.x2{left:63.779550px;}
.x25{left:68.031450px;}
.x13{left:70.922850px;}
.x1a{left:73.540200px;}
.x9{left:75.685050px;}
.x28{left:78.023550px;}
.xd{left:85.039350px;}
.x5b{left:88.968450px;}
.x21{left:91.036500px;}
.x29{left:93.543300px;}
.x11{left:97.795350px;}
.x18{left:99.446850px;}
.x57{left:100.639950px;}
.x14{left:102.047250px;}
.x7{left:106.299150px;}
.x20{left:109.267950px;}
.x2a{left:110.445450px;}
.x1d{left:113.330550px;}
.x2f{left:114.800850px;}
.x32{left:117.663600px;}
.x1f{left:125.183100px;}
.x12{left:127.559100px;}
.x56{left:132.072900px;}
.x1e{left:136.729218px;}
.x1b{left:139.540500px;}
.x2c{left:146.936850px;}
.x34{left:148.245300px;}
.x53{left:157.263300px;}
.x33{left:158.802750px;}
.x5e{left:162.480750px;}
.xc{left:163.652250px;}
.x3a{left:165.826800px;}
.x26{left:183.307050px;}
.x30{left:209.743950px;}
.x5a{left:213.867900px;}
.x58{left:217.249650px;}
.x3b{left:219.779100px;}
.x4e{left:221.952750px;}
.x37{left:224.300850px;}
.x17{left:229.924500px;}
.x5d{left:235.035300px;}
.x4f{left:237.774900px;}
.x22{left:240.377850px;}
.x5c{left:241.431150px;}
.x59{left:245.538600px;}
.x3c{left:255.340950px;}
.x24{left:257.199150px;}
.x35{left:263.641650px;}
.x50{left:268.200300px;}
.x44{left:269.669250px;}
.x2b{left:271.246350px;}
.x55{left:273.739500px;}
.x15{left:276.396150px;}
.xe{left:286.488000px;}
.x1{left:288.104850px;}
.x3d{left:290.902950px;}
.x51{left:298.625700px;}
.x2d{left:299.963850px;}
.x10{left:301.253850px;}
.xf{left:302.669850px;}
.x8{left:304.019850px;}
.x3{left:305.692200px;}
.x2e{left:306.737250px;}
.x54{left:310.246350px;}
.x38{left:312.543600px;}
.xa{left:317.267700px;}
.x3e{left:326.464800px;}
.xb{left:329.173200px;}
.x45{left:330.210900px;}
.x52{left:359.476650px;}
.x46{left:360.481800px;}
.x3f{left:362.026800px;}
.x31{left:364.475700px;}
.x27{left:370.771650px;}
.x5{left:382.814550px;}
.x47{left:390.752550px;}
.x4d{left:393.732300px;}
.x39{left:396.235350px;}
.x4{left:398.282850px;}
.x6{left:405.302400px;}
.x48{left:421.023450px;}
.x40{left:433.150500px;}
.x49{left:451.294350px;}
.x41{left:468.712350px;}
.x36{left:478.346250px;}
.x4a{left:481.565100px;}
.x42{left:504.274350px;}
.x4b{left:511.836000px;}
.x43{left:539.836200px;}
.x4c{left:542.106900px;}
.x16{left:592.254900px;}
@media print{
.v4{vertical-align:-7.870933pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.066667pt;}
.v2{vertical-align:19.200000pt;}
.v3{vertical-align:24.533333pt;}
.v5{vertical-align:48.000000pt;}
.ls23{letter-spacing:-3.456000pt;}
.ls91{letter-spacing:-2.798400pt;}
.ls4{letter-spacing:-2.487467pt;}
.ls7b{letter-spacing:-2.400000pt;}
.ls51{letter-spacing:-2.304000pt;}
.ls65{letter-spacing:-2.208000pt;}
.ls6b{letter-spacing:-2.160000pt;}
.ls4a{letter-spacing:-2.064000pt;}
.ls5a{letter-spacing:-2.016000pt;}
.ls40{letter-spacing:-2.005333pt;}
.ls66{letter-spacing:-1.824000pt;}
.ls85{letter-spacing:-1.776000pt;}
.ls4f{letter-spacing:-1.680000pt;}
.ls67{letter-spacing:-1.584000pt;}
.ls89{letter-spacing:-1.536000pt;}
.ls50{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-1.392000pt;}
.ls46{letter-spacing:-1.248000pt;}
.ls58{letter-spacing:-1.200000pt;}
.ls5b{letter-spacing:-1.104000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls4c{letter-spacing:-0.864000pt;}
.ls36{letter-spacing:-0.720000pt;}
.ls35{letter-spacing:-0.682667pt;}
.ls54{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5f{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.384000pt;}
.ls3e{letter-spacing:-0.346667pt;}
.ls3c{letter-spacing:-0.336000pt;}
.ls4b{letter-spacing:-0.288000pt;}
.ls45{letter-spacing:-0.279840pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls38{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.144000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.004800pt;}
.ls1a{letter-spacing:0.024000pt;}
.ls1c{letter-spacing:0.044267pt;}
.ls28{letter-spacing:0.044800pt;}
.ls13{letter-spacing:0.048000pt;}
.ls3f{letter-spacing:0.072000pt;}
.ls78{letter-spacing:0.083200pt;}
.ls6f{letter-spacing:0.084800pt;}
.ls14{letter-spacing:0.096000pt;}
.ls43{letter-spacing:0.097067pt;}
.ls22{letter-spacing:0.120000pt;}
.ls7e{letter-spacing:0.140800pt;}
.ls7f{letter-spacing:0.141333pt;}
.lsf{letter-spacing:0.144000pt;}
.ls74{letter-spacing:0.165333pt;}
.ls73{letter-spacing:0.165867pt;}
.ls18{letter-spacing:0.168000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls8b{letter-spacing:0.197867pt;}
.ls44{letter-spacing:0.206933pt;}
.ls2c{letter-spacing:0.216000pt;}
.ls10{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.264000pt;}
.ls71{letter-spacing:0.276800pt;}
.ls3d{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls75{letter-spacing:0.298667pt;}
.ls68{letter-spacing:0.312000pt;}
.ls64{letter-spacing:0.328533pt;}
.lse{letter-spacing:0.336000pt;}
.ls61{letter-spacing:0.356800pt;}
.ls1e{letter-spacing:0.358400pt;}
.ls1d{letter-spacing:0.360000pt;}
.ls29{letter-spacing:0.375467pt;}
.ls12{letter-spacing:0.384000pt;}
.ls8c{letter-spacing:0.387200pt;}
.ls7a{letter-spacing:0.401600pt;}
.ls17{letter-spacing:0.408000pt;}
.lsd{letter-spacing:0.432000pt;}
.ls31{letter-spacing:0.456000pt;}
.ls87{letter-spacing:0.479467pt;}
.ls25{letter-spacing:0.480000pt;}
.ls7c{letter-spacing:0.481600pt;}
.ls83{letter-spacing:0.498133pt;}
.ls84{letter-spacing:0.498667pt;}
.ls79{letter-spacing:0.504000pt;}
.ls24{letter-spacing:0.528000pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls30{letter-spacing:0.600000pt;}
.ls8a{letter-spacing:0.602667pt;}
.ls2a{letter-spacing:0.624000pt;}
.ls76{letter-spacing:0.651200pt;}
.ls11{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.720000pt;}
.ls8f{letter-spacing:0.740800pt;}
.ls1{letter-spacing:0.768000pt;}
.ls48{letter-spacing:0.810133pt;}
.ls37{letter-spacing:0.816000pt;}
.ls90{letter-spacing:0.840000pt;}
.ls32{letter-spacing:0.864000pt;}
.ls2e{letter-spacing:0.912000pt;}
.ls49{letter-spacing:0.915733pt;}
.ls8d{letter-spacing:0.960000pt;}
.ls47{letter-spacing:1.008000pt;}
.ls39{letter-spacing:1.056000pt;}
.ls4e{letter-spacing:1.080000pt;}
.ls53{letter-spacing:1.104000pt;}
.ls6c{letter-spacing:1.152000pt;}
.ls8e{letter-spacing:1.176000pt;}
.ls6e{letter-spacing:1.200000pt;}
.ls3a{letter-spacing:1.248000pt;}
.ls70{letter-spacing:1.250667pt;}
.ls2f{letter-spacing:1.392000pt;}
.ls3b{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.632000pt;}
.ls6a{letter-spacing:1.680000pt;}
.ls42{letter-spacing:2.095467pt;}
.ls41{letter-spacing:2.096000pt;}
.ls57{letter-spacing:2.208000pt;}
.ls5c{letter-spacing:2.304000pt;}
.ls69{letter-spacing:2.352000pt;}
.ls60{letter-spacing:2.496000pt;}
.ls6d{letter-spacing:2.544000pt;}
.ls5e{letter-spacing:2.640000pt;}
.ls55{letter-spacing:3.216000pt;}
.ls5d{letter-spacing:3.744000pt;}
.ls4d{letter-spacing:4.105600pt;}
.ls1f{letter-spacing:4.122667pt;}
.ls2b{letter-spacing:4.138133pt;}
.ls77{letter-spacing:4.153600pt;}
.ls56{letter-spacing:4.176000pt;}
.ls59{letter-spacing:4.272000pt;}
.ls86{letter-spacing:4.304533pt;}
.ls27{letter-spacing:4.330133pt;}
.ls72{letter-spacing:4.347200pt;}
.ls52{letter-spacing:4.368000pt;}
.ls88{letter-spacing:4.374400pt;}
.ls63{letter-spacing:4.398400pt;}
.ls7d{letter-spacing:4.560000pt;}
.ls81{letter-spacing:4.568000pt;}
.ls82{letter-spacing:4.625600pt;}
.ls3{letter-spacing:9.672861pt;}
.ls2{letter-spacing:26.531277pt;}
.ls16{letter-spacing:36.336000pt;}
.ls80{letter-spacing:85.571200pt;}
.ws77{word-spacing:-96.536533pt;}
.ws29{word-spacing:-48.000000pt;}
.ws19{word-spacing:-36.336000pt;}
.ws35{word-spacing:-13.776000pt;}
.ws2a{word-spacing:-13.728000pt;}
.ws9d{word-spacing:-13.176000pt;}
.ws99{word-spacing:-12.864000pt;}
.ws8e{word-spacing:-12.816000pt;}
.ws9c{word-spacing:-12.768000pt;}
.ws25{word-spacing:-12.720000pt;}
.ws4b{word-spacing:-12.672000pt;}
.ws98{word-spacing:-12.648000pt;}
.ws9a{word-spacing:-12.624000pt;}
.ws7{word-spacing:-12.618667pt;}
.ws26{word-spacing:-12.576000pt;}
.ws2d{word-spacing:-12.528000pt;}
.ws34{word-spacing:-12.480000pt;}
.ws9b{word-spacing:-12.432000pt;}
.ws24{word-spacing:-12.384000pt;}
.ws18{word-spacing:-12.336000pt;}
.ws21{word-spacing:-12.096000pt;}
.ws27{word-spacing:-11.856000pt;}
.ws5e{word-spacing:-10.965333pt;}
.ws69{word-spacing:-10.325333pt;}
.ws59{word-spacing:-10.176000pt;}
.ws1e{word-spacing:-8.880000pt;}
.ws1a{word-spacing:-8.736000pt;}
.ws1f{word-spacing:-8.533333pt;}
.ws8{word-spacing:-7.191888pt;}
.ws3a{word-spacing:-6.912048pt;}
.ws6d{word-spacing:-4.560000pt;}
.ws44{word-spacing:-4.368000pt;}
.ws4a{word-spacing:-4.272000pt;}
.ws47{word-spacing:-4.176000pt;}
.ws4f{word-spacing:-3.744000pt;}
.ws46{word-spacing:-3.216000pt;}
.ws50{word-spacing:-2.640000pt;}
.ws5b{word-spacing:-2.544000pt;}
.ws52{word-spacing:-2.496000pt;}
.ws57{word-spacing:-2.352000pt;}
.ws4e{word-spacing:-2.304000pt;}
.ws48{word-spacing:-2.208000pt;}
.ws58{word-spacing:-1.680000pt;}
.ws53{word-spacing:-1.632000pt;}
.ws38{word-spacing:-1.248000pt;}
.ws5c{word-spacing:-1.200000pt;}
.ws5a{word-spacing:-1.152000pt;}
.ws40{word-spacing:-1.104000pt;}
.ws37{word-spacing:-1.056000pt;}
.ws3c{word-spacing:-1.008000pt;}
.ws97{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.912000pt;}
.ws2e{word-spacing:-0.864000pt;}
.ws32{word-spacing:-0.816000pt;}
.ws3{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.720000pt;}
.ws13{word-spacing:-0.672000pt;}
.ws28{word-spacing:-0.624000pt;}
.ws2b{word-spacing:-0.576000pt;}
.ws20{word-spacing:-0.528000pt;}
.ws22{word-spacing:-0.480000pt;}
.wse{word-spacing:-0.432000pt;}
.ws14{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.336000pt;}
.ws67{word-spacing:-0.298667pt;}
.ws9{word-spacing:-0.288000pt;}
.ws12{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.144000pt;}
.ws16{word-spacing:-0.096000pt;}
.ws15{word-spacing:-0.048000pt;}
.ws11{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.048000pt;}
.wsc{word-spacing:0.096000pt;}
.wsd{word-spacing:0.144000pt;}
.ws33{word-spacing:0.192000pt;}
.wsa{word-spacing:0.240000pt;}
.ws3e{word-spacing:0.288000pt;}
.ws36{word-spacing:0.336000pt;}
.ws2f{word-spacing:0.384000pt;}
.ws4{word-spacing:0.426667pt;}
.ws23{word-spacing:0.480000pt;}
.ws6{word-spacing:0.576000pt;}
.ws51{word-spacing:0.624000pt;}
.ws5{word-spacing:0.640000pt;}
.ws45{word-spacing:0.672000pt;}
.ws30{word-spacing:0.682667pt;}
.ws31{word-spacing:0.720000pt;}
.ws3f{word-spacing:0.864000pt;}
.ws17{word-spacing:0.960000pt;}
.ws4d{word-spacing:1.104000pt;}
.ws49{word-spacing:1.200000pt;}
.ws3b{word-spacing:1.248000pt;}
.ws1b{word-spacing:1.392000pt;}
.ws42{word-spacing:1.440000pt;}
.ws8f{word-spacing:1.536000pt;}
.ws56{word-spacing:1.584000pt;}
.ws41{word-spacing:1.680000pt;}
.ws7b{word-spacing:1.776000pt;}
.ws55{word-spacing:1.824000pt;}
.ws39{word-spacing:2.005333pt;}
.ws4c{word-spacing:2.016000pt;}
.ws3d{word-spacing:2.064000pt;}
.ws54{word-spacing:2.208000pt;}
.ws43{word-spacing:2.304000pt;}
.ws68{word-spacing:2.400000pt;}
.ws2{word-spacing:2.487467pt;}
.ws9e{word-spacing:2.798400pt;}
.ws1{word-spacing:8.172581pt;}
.ws74{word-spacing:19.480000pt;}
.ws76{word-spacing:19.480533pt;}
.ws8b{word-spacing:20.029867pt;}
.ws81{word-spacing:25.155200pt;}
.ws7a{word-spacing:30.488533pt;}
.ws8d{word-spacing:31.037867pt;}
.ws64{word-spacing:33.638400pt;}
.ws6c{word-spacing:38.292800pt;}
.ws70{word-spacing:38.293333pt;}
.ws94{word-spacing:38.970133pt;}
.ws90{word-spacing:40.463467pt;}
.ws78{word-spacing:41.538667pt;}
.ws71{word-spacing:49.300800pt;}
.ws5f{word-spacing:50.183467pt;}
.ws75{word-spacing:52.546667pt;}
.ws79{word-spacing:52.547200pt;}
.ws8a{word-spacing:53.096533pt;}
.ws82{word-spacing:56.984533pt;}
.ws95{word-spacing:62.522133pt;}
.ws91{word-spacing:63.840000pt;}
.ws96{word-spacing:69.266667pt;}
.ws92{word-spacing:70.155200pt;}
.ws6f{word-spacing:71.359467pt;}
.ws72{word-spacing:74.563200pt;}
.ws73{word-spacing:74.605867pt;}
.ws89{word-spacing:75.112533pt;}
.ws8c{word-spacing:75.155200pt;}
.ws84{word-spacing:89.155200pt;}
.ws80{word-spacing:90.721600pt;}
.ws6e{word-spacing:93.375467pt;}
.ws6a{word-spacing:93.376000pt;}
.ws6b{word-spacing:93.418133pt;}
.ws7c{word-spacing:105.356267pt;}
.ws66{word-spacing:111.568000pt;}
.ws87{word-spacing:112.109867pt;}
.ws61{word-spacing:115.079467pt;}
.ws62{word-spacing:124.794667pt;}
.ws63{word-spacing:126.958400pt;}
.ws7d{word-spacing:132.955733pt;}
.ws7f{word-spacing:135.985067pt;}
.ws88{word-spacing:156.940267pt;}
.ws7e{word-spacing:159.110400pt;}
.ws65{word-spacing:161.360000pt;}
.ws60{word-spacing:161.914667pt;}
.ws83{word-spacing:170.166933pt;}
.ws86{word-spacing:185.910933pt;}
.ws93{word-spacing:200.191467pt;}
.ws85{word-spacing:205.537600pt;}
.ws5d{word-spacing:742.564984pt;}
._57{margin-left:-85.573333pt;}
._18{margin-left:-36.360000pt;}
._c{margin-left:-13.875200pt;}
._d{margin-left:-12.293333pt;}
._2{margin-left:-10.976000pt;}
._0{margin-left:-9.648000pt;}
._14{margin-left:-8.421333pt;}
._1{margin-left:-7.502400pt;}
._11{margin-left:-6.411733pt;}
._12{margin-left:-5.076800pt;}
._a{margin-left:-3.502933pt;}
._4{margin-left:-2.495467pt;}
._3{margin-left:-0.942933pt;}
._8{width:0.980267pt;}
._6{width:1.881600pt;}
._7{width:3.618133pt;}
._b{width:4.547200pt;}
._e{width:6.264000pt;}
._9{width:7.261867pt;}
._f{width:9.046933pt;}
._2f{width:9.960533pt;}
._30{width:11.223467pt;}
._32{width:13.248000pt;}
._31{width:14.342400pt;}
._2e{width:15.360000pt;}
._23{width:20.544000pt;}
._22{width:25.728000pt;}
._58{width:30.445333pt;}
._10{width:31.488000pt;}
._15{width:36.336000pt;}
._13{width:39.648000pt;}
._1f{width:41.565867pt;}
._3c{width:44.603733pt;}
._3b{width:46.988267pt;}
._50{width:49.258667pt;}
._55{width:52.129067pt;}
._56{width:53.220800pt;}
._3d{width:54.189333pt;}
._51{width:56.990400pt;}
._24{width:59.425600pt;}
._2b{width:61.376533pt;}
._52{width:62.717333pt;}
._35{width:64.384533pt;}
._5e{width:67.553067pt;}
._43{width:68.560000pt;}
._4e{width:70.508267pt;}
._4d{width:72.125867pt;}
._33{width:73.923733pt;}
._6a{width:76.484800pt;}
._5{width:77.696000pt;}
._5c{width:78.957867pt;}
._44{width:80.054933pt;}
._4a{width:81.516267pt;}
._37{width:83.174400pt;}
._67{width:84.648000pt;}
._36{width:85.558933pt;}
._39{width:86.698133pt;}
._62{width:90.405333pt;}
._34{width:92.202133pt;}
._53{width:94.360000pt;}
._27{width:95.862933pt;}
._6e{width:98.720533pt;}
._5b{width:101.016533pt;}
._66{width:102.290667pt;}
._4f{width:103.573867pt;}
._4c{width:105.150400pt;}
._59{width:106.520533pt;}
._72{width:107.412267pt;}
._73{width:108.832533pt;}
._5f{width:113.932267pt;}
._70{width:117.389333pt;}
._48{width:118.315200pt;}
._2a{width:121.408533pt;}
._46{width:123.472000pt;}
._42{width:126.044800pt;}
._47{width:128.208000pt;}
._3e{width:129.280533pt;}
._6c{width:131.524800pt;}
._68{width:133.580800pt;}
._28{width:138.261867pt;}
._69{width:139.332800pt;}
._6d{width:141.268800pt;}
._3f{width:142.629333pt;}
._41{width:148.103467pt;}
._45{width:149.626667pt;}
._40{width:150.781333pt;}
._3a{width:152.152000pt;}
._2c{width:155.413867pt;}
._29{width:159.637867pt;}
._38{width:160.878400pt;}
._25{width:161.984533pt;}
._54{width:169.723733pt;}
._63{width:173.580267pt;}
._2d{width:184.341867pt;}
._5d{width:188.001600pt;}
._60{width:194.998933pt;}
._74{width:197.375467pt;}
._77{width:199.722133pt;}
._76{width:202.410133pt;}
._61{width:205.878933pt;}
._6b{width:218.026133pt;}
._5a{width:219.446933pt;}
._6f{width:225.023467pt;}
._71{width:228.394133pt;}
._75{width:235.903467pt;}
._1c{width:247.692267pt;}
._65{width:249.471467pt;}
._17{width:269.625067pt;}
._4b{width:311.833600pt;}
._49{width:325.657600pt;}
._64{width:328.681600pt;}
._21{width:351.963200pt;}
._26{width:365.826133pt;}
._20{width:543.648000pt;}
._1d{width:605.463467pt;}
._1b{width:732.309867pt;}
._1e{width:925.104000pt;}
._1a{width:1077.120000pt;}
._16{width:1130.397867pt;}
._19{width:1263.696000pt;}
.fs5{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs8{font-size:38.933333pt;}
.fs7{font-size:39.481067pt;}
.fs4{font-size:42.666667pt;}
.fsc{font-size:43.732800pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:69.333333pt;}
.fs2{font-size:85.333333pt;}
.fs3{font-size:90.666667pt;}
.fs1{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:0.454133pt;}
.y17d{bottom:6.680800pt;}
.y139{bottom:12.562933pt;}
.y12e{bottom:18.001467pt;}
.y138{bottom:33.362933pt;}
.y3d{bottom:40.542667pt;}
.y12d{bottom:43.921467pt;}
.y137{bottom:56.082933pt;}
.yb0{bottom:64.562267pt;}
.yd6{bottom:65.362267pt;}
.y3c{bottom:66.519067pt;}
.y3a{bottom:67.276000pt;}
.y25a{bottom:67.637867pt;}
.y11c{bottom:67.653467pt;}
.y61{bottom:67.653600pt;}
.y12f{bottom:69.841467pt;}
.yb{bottom:69.936400pt;}
.y22c{bottom:72.627067pt;}
.y1b0{bottom:73.850267pt;}
.y1e1{bottom:73.920667pt;}
.y15e{bottom:74.647600pt;}
.yaf{bottom:76.562267pt;}
.y136{bottom:76.882933pt;}
.yd5{bottom:77.362267pt;}
.y1{bottom:77.435600pt;}
.y1e3{bottom:77.855600pt;}
.y84{bottom:80.176267pt;}
.y60{bottom:80.201200pt;}
.ya{bottom:80.803067pt;}
.y259{bottom:82.037867pt;}
.y11b{bottom:83.653467pt;}
.yf9{bottom:83.653600pt;}
.y15d{bottom:86.647600pt;}
.yae{bottom:88.562267pt;}
.yd4{bottom:89.362267pt;}
.y9{bottom:91.669733pt;}
.y22b{bottom:92.547467pt;}
.y83{bottom:92.699067pt;}
.y5f{bottom:92.748800pt;}
.y1af{bottom:93.014667pt;}
.y180{bottom:93.271733pt;}
.y12c{bottom:95.761467pt;}
.y258{bottom:96.437733pt;}
.y1e2{bottom:97.397867pt;}
.y15c{bottom:98.647600pt;}
.y11a{bottom:99.653467pt;}
.yf8{bottom:99.653600pt;}
.yad{bottom:100.562267pt;}
.yd3{bottom:101.362267pt;}
.y8{bottom:102.536400pt;}
.y133{bottom:103.122933pt;}
.y22a{bottom:104.547467pt;}
.y82{bottom:105.221733pt;}
.y5e{bottom:105.296400pt;}
.y178{bottom:107.730133pt;}
.y17a{bottom:107.888933pt;}
.y1e0{bottom:109.397867pt;}
.y15b{bottom:110.647600pt;}
.y257{bottom:110.837867pt;}
.y1ae{bottom:112.178933pt;}
.yac{bottom:112.562267pt;}
.yd2{bottom:113.362267pt;}
.y119{bottom:115.653467pt;}
.yf7{bottom:115.653600pt;}
.y81{bottom:117.744400pt;}
.y5d{bottom:117.844000pt;}
.y17f{bottom:118.529600pt;}
.y12b{bottom:121.681467pt;}
.y15a{bottom:122.647600pt;}
.y228{bottom:124.467733pt;}
.yab{bottom:124.562267pt;}
.y256{bottom:125.237733pt;}
.yd1{bottom:125.362267pt;}
.y39{bottom:125.677867pt;}
.y135{bottom:126.749600pt;}
.y1df{bottom:129.421067pt;}
.y5c{bottom:130.391600pt;}
.y1ad{bottom:131.343333pt;}
.y118{bottom:131.653467pt;}
.yf6{bottom:131.653600pt;}
.y134{bottom:136.082933pt;}
.y227{bottom:136.467733pt;}
.yaa{bottom:136.562267pt;}
.y1de{bottom:136.963333pt;}
.y38{bottom:137.011200pt;}
.yd0{bottom:137.362267pt;}
.y255{bottom:139.637867pt;}
.y80{bottom:142.789867pt;}
.y1ac{bottom:143.343333pt;}
.y159{bottom:144.079600pt;}
.y141{bottom:144.453600pt;}
.y13e{bottom:144.829733pt;}
.y17e{bottom:145.753067pt;}
.y130{bottom:147.601467pt;}
.y177{bottom:147.653467pt;}
.yf5{bottom:147.653600pt;}
.y226{bottom:148.467733pt;}
.ya9{bottom:148.562267pt;}
.y1dd{bottom:148.963333pt;}
.y229{bottom:152.547467pt;}
.y13d{bottom:154.163067pt;}
.y7f{bottom:155.312667pt;}
.y1ab{bottom:155.343333pt;}
.y158{bottom:156.079600pt;}
.y5b{bottom:157.620267pt;}
.y37{bottom:158.344533pt;}
.y225{bottom:160.467733pt;}
.y1dc{bottom:160.963333pt;}
.ycf{bottom:161.362267pt;}
.y13c{bottom:163.496400pt;}
.y117{bottom:163.653467pt;}
.yf4{bottom:163.653600pt;}
.y1aa{bottom:167.343333pt;}
.y7e{bottom:167.835333pt;}
.y157{bottom:168.079600pt;}
.y36{bottom:168.344533pt;}
.y254{bottom:168.437733pt;}
.y5a{bottom:170.167867pt;}
.y17c{bottom:171.008800pt;}
.y224{bottom:172.467733pt;}
.ya8{bottom:172.562267pt;}
.y13b{bottom:172.829733pt;}
.y132{bottom:172.868000pt;}
.yce{bottom:173.362267pt;}
.y246{bottom:174.794533pt;}
.y1a9{bottom:179.343333pt;}
.y116{bottom:179.653467pt;}
.yf3{bottom:179.653600pt;}
.y156{bottom:180.079600pt;}
.y7d{bottom:180.358133pt;}
.y1db{bottom:180.505733pt;}
.y13a{bottom:182.163067pt;}
.y59{bottom:182.715467pt;}
.y223{bottom:184.467733pt;}
.ya7{bottom:184.562267pt;}
.ycd{bottom:185.362267pt;}
.y1da{bottom:188.048000pt;}
.y35{bottom:189.677867pt;}
.y155{bottom:192.079600pt;}
.y7c{bottom:192.880800pt;}
.y58{bottom:195.263067pt;}
.y115{bottom:195.653467pt;}
.yf2{bottom:195.653600pt;}
.ya6{bottom:196.562267pt;}
.ycc{bottom:197.362267pt;}
.y245{bottom:198.494400pt;}
.y1a8{bottom:198.507733pt;}
.y1d9{bottom:200.048000pt;}
.y34{bottom:201.011200pt;}
.y222{bottom:204.388000pt;}
.y57{bottom:207.810667pt;}
.ya5{bottom:208.562267pt;}
.y16d{bottom:208.842133pt;}
.y16e{bottom:209.000800pt;}
.ycb{bottom:209.362267pt;}
.y13f{bottom:209.362933pt;}
.y114{bottom:211.653467pt;}
.yf1{bottom:211.653600pt;}
.y1d8{bottom:212.048000pt;}
.y221{bottom:212.308267pt;}
.y154{bottom:213.511733pt;}
.y1a7{bottom:217.672133pt;}
.y7b{bottom:217.926267pt;}
.ya4{bottom:220.562267pt;}
.yca{bottom:221.362267pt;}
.y244{bottom:222.194133pt;}
.y33{bottom:223.677867pt;}
.y220{bottom:224.308267pt;}
.y131{bottom:224.453600pt;}
.y153{bottom:225.511733pt;}
.y113{bottom:227.653467pt;}
.yf0{bottom:227.653600pt;}
.y1a6{bottom:229.672133pt;}
.y7a{bottom:230.449067pt;}
.y1d7{bottom:231.590400pt;}
.ya3{bottom:232.562267pt;}
.yc9{bottom:233.362267pt;}
.y32{bottom:234.344533pt;}
.y56{bottom:235.039200pt;}
.y21f{bottom:236.308267pt;}
.y152{bottom:237.511733pt;}
.y140{bottom:237.522933pt;}
.y1d6{bottom:239.132667pt;}
.y1a5{bottom:241.672133pt;}
.y79{bottom:242.971733pt;}
.y12a{bottom:243.269333pt;}
.y112{bottom:243.653467pt;}
.yef{bottom:243.653600pt;}
.y31{bottom:245.011200pt;}
.y243{bottom:245.894000pt;}
.y55{bottom:247.586933pt;}
.y151{bottom:249.511733pt;}
.y1d5{bottom:251.132667pt;}
.y1a4{bottom:253.672133pt;}
.y78{bottom:255.494400pt;}
.y30{bottom:255.677867pt;}
.y21d{bottom:256.228533pt;}
.ya2{bottom:256.562267pt;}
.yc8{bottom:257.362267pt;}
.y111{bottom:259.653467pt;}
.yee{bottom:259.653600pt;}
.y54{bottom:260.134533pt;}
.y21e{bottom:260.308267pt;}
.y150{bottom:261.511733pt;}
.y1d4{bottom:263.132667pt;}
.y2f{bottom:266.344533pt;}
.y77{bottom:268.017200pt;}
.y21c{bottom:268.228533pt;}
.ya1{bottom:268.562267pt;}
.yc7{bottom:269.362267pt;}
.y242{bottom:269.593867pt;}
.y53{bottom:272.682133pt;}
.y1a3{bottom:272.836533pt;}
.y110{bottom:275.653467pt;}
.yed{bottom:275.653600pt;}
.y181{bottom:276.293733pt;}
.y2e{bottom:277.011200pt;}
.y21b{bottom:280.228533pt;}
.ya0{bottom:280.562267pt;}
.yc6{bottom:281.362267pt;}
.y1d3{bottom:282.675067pt;}
.y14f{bottom:282.943867pt;}
.y52{bottom:285.229733pt;}
.y2d{bottom:287.677867pt;}
.y1d2{bottom:290.217467pt;}
.y10f{bottom:291.653467pt;}
.yec{bottom:291.653600pt;}
.y1a2{bottom:292.000933pt;}
.y21a{bottom:292.228533pt;}
.y9f{bottom:292.562267pt;}
.y76{bottom:293.062667pt;}
.y241{bottom:293.293600pt;}
.yc5{bottom:293.362267pt;}
.y14e{bottom:294.943867pt;}
.y1ff{bottom:296.398400pt;}
.y2c{bottom:298.344533pt;}
.y17b{bottom:300.229333pt;}
.y1d1{bottom:302.217467pt;}
.y1a1{bottom:304.000933pt;}
.yc4{bottom:305.362267pt;}
.y75{bottom:305.585333pt;}
.y195{bottom:306.395733pt;}
.y14d{bottom:306.943867pt;}
.y10e{bottom:307.653467pt;}
.yeb{bottom:307.653600pt;}
.y1c8{bottom:308.900000pt;}
.y2b{bottom:309.011200pt;}
.y16c{bottom:309.970533pt;}
.y166{bottom:310.129200pt;}
.y218{bottom:312.148800pt;}
.y253{bottom:312.437733pt;}
.y51{bottom:312.458267pt;}
.y1d0{bottom:314.217467pt;}
.y1a0{bottom:316.000933pt;}
.y9e{bottom:316.562267pt;}
.y240{bottom:316.993467pt;}
.yc3{bottom:317.362267pt;}
.y1fe{bottom:317.452533pt;}
.y74{bottom:318.108133pt;}
.y14c{bottom:318.943867pt;}
.y2a{bottom:319.677867pt;}
.y176{bottom:323.653467pt;}
.yea{bottom:323.653600pt;}
.y217{bottom:324.148800pt;}
.y252{bottom:326.837867pt;}
.y194{bottom:327.449867pt;}
.y19f{bottom:328.000933pt;}
.y1c7{bottom:328.064400pt;}
.y219{bottom:328.228533pt;}
.y9d{bottom:328.562267pt;}
.yc2{bottom:329.362267pt;}
.y29{bottom:330.344533pt;}
.y73{bottom:330.630800pt;}
.y1cf{bottom:333.759733pt;}
.y216{bottom:336.148800pt;}
.y1fd{bottom:338.506667pt;}
.y10d{bottom:339.653467pt;}
.ye9{bottom:339.653600pt;}
.y14b{bottom:340.376000pt;}
.y9c{bottom:340.562267pt;}
.y23f{bottom:340.693333pt;}
.y28{bottom:341.011200pt;}
.y251{bottom:341.237733pt;}
.y5{bottom:341.367467pt;}
.y72{bottom:343.153600pt;}
.y19e{bottom:347.165333pt;}
.y1c6{bottom:347.228800pt;}
.y215{bottom:348.148800pt;}
.y193{bottom:348.504133pt;}
.y14a{bottom:352.376000pt;}
.y9b{bottom:352.562267pt;}
.y1ce{bottom:352.984800pt;}
.yc1{bottom:353.362267pt;}
.y10c{bottom:355.653467pt;}
.ye8{bottom:355.653600pt;}
.y1fc{bottom:359.560800pt;}
.y214{bottom:360.148800pt;}
.y50{bottom:361.301200pt;}
.y27{bottom:363.011200pt;}
.y149{bottom:364.376000pt;}
.y23e{bottom:364.393067pt;}
.y9a{bottom:364.562267pt;}
.yc0{bottom:365.362267pt;}
.y19d{bottom:366.390400pt;}
.y1c5{bottom:366.393200pt;}
.y71{bottom:368.199067pt;}
.y192{bottom:369.558133pt;}
.y10b{bottom:371.653467pt;}
.ye7{bottom:371.653600pt;}
.y26{bottom:373.677867pt;}
.y4f{bottom:373.848800pt;}
.y148{bottom:376.376000pt;}
.y99{bottom:376.562267pt;}
.ybf{bottom:377.362267pt;}
.y1c4{bottom:378.393200pt;}
.y212{bottom:380.069067pt;}
.y1fb{bottom:380.614933pt;}
.y213{bottom:384.148800pt;}
.y1cc{bottom:384.313200pt;}
.y25{bottom:384.344533pt;}
.y19c{bottom:385.615467pt;}
.y4e{bottom:386.396400pt;}
.y10a{bottom:387.653467pt;}
.ye6{bottom:387.653600pt;}
.y23d{bottom:388.092933pt;}
.y19a{bottom:388.239200pt;}
.ybe{bottom:389.362267pt;}
.y1c3{bottom:390.393200pt;}
.y191{bottom:390.612400pt;}
.y211{bottom:392.069067pt;}
.y24{bottom:395.011200pt;}
.y4{bottom:396.275600pt;}
.y1cb{bottom:396.313200pt;}
.y147{bottom:397.808000pt;}
.y4d{bottom:398.944000pt;}
.y199{bottom:400.239200pt;}
.y98{bottom:400.562267pt;}
.ybd{bottom:401.362267pt;}
.y1fa{bottom:401.669067pt;}
.y1c2{bottom:402.393200pt;}
.y109{bottom:403.653467pt;}
.ye5{bottom:403.653600pt;}
.y210{bottom:404.069067pt;}
.y23{bottom:405.677867pt;}
.y70{bottom:405.767200pt;}
.y146{bottom:409.808000pt;}
.y15f{bottom:411.404133pt;}
.y4c{bottom:411.491600pt;}
.y165{bottom:411.562800pt;}
.y190{bottom:411.666533pt;}
.y23c{bottom:411.792667pt;}
.y198{bottom:412.239200pt;}
.y97{bottom:412.562267pt;}
.y250{bottom:413.237733pt;}
.ybc{bottom:413.362267pt;}
.y20f{bottom:416.069067pt;}
.y22{bottom:416.344533pt;}
.y6f{bottom:418.290000pt;}
.y108{bottom:419.653467pt;}
.ye4{bottom:419.653600pt;}
.y1c1{bottom:421.557600pt;}
.y145{bottom:421.808000pt;}
.y1f9{bottom:422.723200pt;}
.y197{bottom:424.239200pt;}
.y96{bottom:424.562267pt;}
.ybb{bottom:425.362267pt;}
.y21{bottom:427.011200pt;}
.y1cd{bottom:427.641600pt;}
.y6e{bottom:430.812667pt;}
.y18f{bottom:432.720667pt;}
.y144{bottom:433.808000pt;}
.y23b{bottom:435.161200pt;}
.y107{bottom:435.653467pt;}
.ye3{bottom:435.653600pt;}
.y20e{bottom:435.989467pt;}
.y95{bottom:436.562267pt;}
.yba{bottom:437.362267pt;}
.y20{bottom:437.677867pt;}
.y4b{bottom:438.720267pt;}
.y1c0{bottom:440.722000pt;}
.y3{bottom:441.608933pt;}
.y24f{bottom:442.037867pt;}
.y6d{bottom:443.335333pt;}
.y1f8{bottom:443.777333pt;}
.y20d{bottom:443.909733pt;}
.y19b{bottom:446.087867pt;}
.y1ca{bottom:446.866800pt;}
.y1f{bottom:448.344533pt;}
.y4a{bottom:451.267867pt;}
.y106{bottom:451.653467pt;}
.ye2{bottom:451.653600pt;}
.y1bf{bottom:452.722000pt;}
.y18e{bottom:453.774800pt;}
.y143{bottom:455.240133pt;}
.y20c{bottom:455.909733pt;}
.y24e{bottom:456.437867pt;}
.y235{bottom:457.125200pt;}
.y1e{bottom:459.011200pt;}
.y94{bottom:460.562267pt;}
.yb9{bottom:461.362267pt;}
.y1c9{bottom:461.533467pt;}
.y23a{bottom:463.125200pt;}
.y49{bottom:463.815467pt;}
.y1be{bottom:464.722000pt;}
.y1f7{bottom:464.831600pt;}
.y196{bottom:465.313067pt;}
.y105{bottom:467.653467pt;}
.ye1{bottom:467.653600pt;}
.y20b{bottom:467.909733pt;}
.y6c{bottom:468.380800pt;}
.y234{bottom:469.125200pt;}
.y1d{bottom:469.677867pt;}
.y24d{bottom:470.837867pt;}
.y93{bottom:472.562267pt;}
.yb8{bottom:473.362267pt;}
.y18d{bottom:474.828933pt;}
.y238{bottom:475.125200pt;}
.y22f{bottom:476.143200pt;}
.y48{bottom:476.363067pt;}
.y1bd{bottom:476.722000pt;}
.y142{bottom:476.732933pt;}
.y1c{bottom:480.344533pt;}
.y6b{bottom:480.903600pt;}
.y231{bottom:481.125200pt;}
.y104{bottom:483.653467pt;}
.ye0{bottom:483.653600pt;}
.y92{bottom:484.562267pt;}
.y24c{bottom:485.237733pt;}
.yb7{bottom:485.362267pt;}
.y1f6{bottom:485.885733pt;}
.y2{bottom:486.942267pt;}
.y237{bottom:487.125200pt;}
.y20a{bottom:487.830000pt;}
.y1bc{bottom:488.722000pt;}
.y47{bottom:488.910667pt;}
.y1b{bottom:491.011200pt;}
.y230{bottom:493.125200pt;}
.y6a{bottom:493.426267pt;}
.y18c{bottom:495.883067pt;}
.y91{bottom:496.562267pt;}
.yb6{bottom:497.362267pt;}
.y236{bottom:499.125200pt;}
.y24b{bottom:499.637733pt;}
.y103{bottom:499.653467pt;}
.ydf{bottom:499.653600pt;}
.y233{bottom:505.125200pt;}
.y69{bottom:505.949067pt;}
.y1f5{bottom:506.939867pt;}
.y1ed{bottom:507.502533pt;}
.y209{bottom:507.750267pt;}
.y1bb{bottom:507.886400pt;}
.yb5{bottom:509.362267pt;}
.y239{bottom:511.125200pt;}
.y1a{bottom:513.011200pt;}
.y122{bottom:513.850667pt;}
.y129{bottom:514.009467pt;}
.y24a{bottom:514.037867pt;}
.y102{bottom:515.653467pt;}
.yde{bottom:515.653600pt;}
.y46{bottom:516.139333pt;}
.y18b{bottom:516.937200pt;}
.y232{bottom:517.125200pt;}
.y68{bottom:518.471733pt;}
.y171{bottom:518.727600pt;}
.y208{bottom:519.750267pt;}
.y90{bottom:520.562267pt;}
.yb4{bottom:521.362267pt;}
.y19{bottom:524.344533pt;}
.y1ec{bottom:526.666933pt;}
.y1ba{bottom:527.050800pt;}
.y1f4{bottom:527.994000pt;}
.y45{bottom:528.686933pt;}
.y67{bottom:530.994400pt;}
.y11f{bottom:531.653467pt;}
.ydd{bottom:531.653600pt;}
.yb3{bottom:533.362267pt;}
.y18{bottom:535.677867pt;}
.y18a{bottom:537.991333pt;}
.y22e{bottom:538.664667pt;}
.y1eb{bottom:538.666933pt;}
.y1b9{bottom:539.050800pt;}
.y207{bottom:539.670533pt;}
.y1f3{bottom:539.994000pt;}
.y249{bottom:540.437867pt;}
.y44{bottom:541.234533pt;}
.y17{bottom:547.011200pt;}
.y101{bottom:547.653467pt;}
.ydc{bottom:547.653600pt;}
.y179{bottom:550.653600pt;}
.y22d{bottom:553.331333pt;}
.y43{bottom:553.782133pt;}
.y66{bottom:556.039867pt;}
.y8f{bottom:557.095600pt;}
.yb2{bottom:557.362267pt;}
.y1ea{bottom:557.831200pt;}
.y1b8{bottom:558.215067pt;}
.y16{bottom:558.344533pt;}
.y189{bottom:559.106267pt;}
.y206{bottom:559.651600pt;}
.y169{bottom:559.724400pt;}
.y1f2{bottom:561.108800pt;}
.y11e{bottom:563.653467pt;}
.ydb{bottom:563.653600pt;}
.y187{bottom:565.106267pt;}
.y42{bottom:566.329733pt;}
.y161{bottom:566.653600pt;}
.y1f1{bottom:567.108800pt;}
.y65{bottom:568.562667pt;}
.y8e{bottom:569.362267pt;}
.y15{bottom:569.677867pt;}
.y124{bottom:570.905467pt;}
.y183{bottom:571.106267pt;}
.y168{bottom:575.724400pt;}
.y1e9{bottom:576.995600pt;}
.y186{bottom:577.106267pt;}
.y1b7{bottom:577.379467pt;}
.y41{bottom:578.877333pt;}
.y205{bottom:579.632533pt;}
.y100{bottom:579.653467pt;}
.yda{bottom:579.653600pt;}
.y14{bottom:581.011200pt;}
.y64{bottom:581.085333pt;}
.y8d{bottom:581.362267pt;}
.y185{bottom:581.663733pt;}
.y160{bottom:582.653600pt;}
.y188{bottom:583.106267pt;}
.y123{bottom:586.905467pt;}
.y1e8{bottom:588.995600pt;}
.y1b6{bottom:589.379467pt;}
.y40{bottom:591.425067pt;}
.y167{bottom:591.724400pt;}
.y13{bottom:592.344533pt;}
.y8c{bottom:593.362267pt;}
.y63{bottom:593.608133pt;}
.y1f0{bottom:594.223733pt;}
.y203{bottom:595.289733pt;}
.y248{bottom:595.637733pt;}
.yff{bottom:595.653467pt;}
.yd9{bottom:595.653600pt;}
.y12{bottom:603.677867pt;}
.y184{bottom:604.221067pt;}
.y8b{bottom:605.362267pt;}
.y62{bottom:606.130800pt;}
.y202{bottom:607.289733pt;}
.y1e7{bottom:608.160000pt;}
.y1b5{bottom:608.543867pt;}
.y1ef{bottom:608.890400pt;}
.y247{bottom:610.037867pt;}
.yfe{bottom:611.653467pt;}
.yd8{bottom:611.653600pt;}
.yb1{bottom:617.362267pt;}
.y3f{bottom:618.653600pt;}
.y121{bottom:626.240133pt;}
.y11{bottom:626.344533pt;}
.y1e6{bottom:627.324400pt;}
.y175{bottom:627.653467pt;}
.yfd{bottom:627.653600pt;}
.y1b4{bottom:627.708267pt;}
.y182{bottom:627.979067pt;}
.y8a{bottom:629.362267pt;}
.y10{bottom:637.677867pt;}
.y1e5{bottom:639.324400pt;}
.y1b3{bottom:639.708267pt;}
.y89{bottom:641.362267pt;}
.y204{bottom:642.927733pt;}
.y174{bottom:643.653467pt;}
.yfc{bottom:643.653600pt;}
.yf{bottom:649.011200pt;}
.y7{bottom:652.374933pt;}
.y88{bottom:653.362267pt;}
.y1e4{bottom:658.488800pt;}
.y1b2{bottom:658.872667pt;}
.y173{bottom:659.653467pt;}
.yfb{bottom:659.653600pt;}
.ye{bottom:660.344533pt;}
.y201{bottom:662.908800pt;}
.y127{bottom:663.495067pt;}
.y87{bottom:665.362267pt;}
.y120{bottom:666.129867pt;}
.y3e{bottom:666.256000pt;}
.y11d{bottom:666.318933pt;}
.yd7{bottom:666.507867pt;}
.y164{bottom:671.653600pt;}
.yd{bottom:671.677867pt;}
.y126{bottom:675.495067pt;}
.y172{bottom:675.653467pt;}
.yfa{bottom:675.653600pt;}
.y1ee{bottom:676.963867pt;}
.y86{bottom:677.362267pt;}
.y200{bottom:677.575467pt;}
.y6{bottom:677.708267pt;}
.y1b1{bottom:678.097733pt;}
.yc{bottom:683.011200pt;}
.y163{bottom:683.653600pt;}
.y125{bottom:699.495067pt;}
.y170{bottom:700.222133pt;}
.y128{bottom:700.495067pt;}
.y16b{bottom:700.735733pt;}
.y162{bottom:707.653600pt;}
.y85{bottom:708.220400pt;}
.y16f{bottom:710.888800pt;}
.y16a{bottom:711.402400pt;}
.hb{height:29.926649pt;}
.h9{height:30.202667pt;}
.h1b{height:31.146667pt;}
.h10{height:31.526400pt;}
.hc{height:31.964267pt;}
.h7{height:32.512000pt;}
.h1f{height:33.324394pt;}
.hd{height:34.048000pt;}
.h11{height:34.176000pt;}
.h19{height:34.517333pt;}
.h6{height:35.029333pt;}
.h14{height:36.576000pt;}
.h8{height:37.488768pt;}
.h18{height:37.973333pt;}
.hf{height:38.304000pt;}
.h15{height:38.832000pt;}
.h12{height:39.408000pt;}
.h13{height:42.174864pt;}
.h1d{height:42.720000pt;}
.h1c{height:42.960000pt;}
.ha{height:43.842667pt;}
.h16{height:47.508197pt;}
.he{height:55.328000pt;}
.h20{height:56.512000pt;}
.h2{height:56.922667pt;}
.h4{height:70.058667pt;}
.h5{height:74.437333pt;}
.h21{height:80.512000pt;}
.h3{height:118.224000pt;}
.h17{height:166.398667pt;}
.h1e{height:198.090667pt;}
.h1a{height:258.240000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w2{width:113.385333pt;}
.w4{width:301.440000pt;}
.w3{width:302.400000pt;}
.w5{width:329.310667pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x23{left:23.353200pt;}
.x1c{left:24.869200pt;}
.x19{left:32.086667pt;}
.x2{left:56.692933pt;}
.x25{left:60.472400pt;}
.x13{left:63.042533pt;}
.x1a{left:65.369067pt;}
.x9{left:67.275600pt;}
.x28{left:69.354267pt;}
.xd{left:75.590533pt;}
.x5b{left:79.083067pt;}
.x21{left:80.921333pt;}
.x29{left:83.149600pt;}
.x11{left:86.929200pt;}
.x18{left:88.397200pt;}
.x57{left:89.457733pt;}
.x14{left:90.708667pt;}
.x7{left:94.488133pt;}
.x20{left:97.127067pt;}
.x2a{left:98.173733pt;}
.x1d{left:100.738267pt;}
.x2f{left:102.045200pt;}
.x32{left:104.589867pt;}
.x1f{left:111.273867pt;}
.x12{left:113.385867pt;}
.x56{left:117.398133pt;}
.x1e{left:121.537083pt;}
.x1b{left:124.036000pt;}
.x2c{left:130.610533pt;}
.x34{left:131.773600pt;}
.x53{left:139.789600pt;}
.x33{left:141.158000pt;}
.x5e{left:144.427333pt;}
.xc{left:145.468667pt;}
.x3a{left:147.401600pt;}
.x26{left:162.939600pt;}
.x30{left:186.439067pt;}
.x5a{left:190.104800pt;}
.x58{left:193.110800pt;}
.x3b{left:195.359200pt;}
.x4e{left:197.291333pt;}
.x37{left:199.378533pt;}
.x17{left:204.377333pt;}
.x5d{left:208.920267pt;}
.x4f{left:211.355467pt;}
.x22{left:213.669200pt;}
.x5c{left:214.605467pt;}
.x59{left:218.256533pt;}
.x3c{left:226.969733pt;}
.x24{left:228.621467pt;}
.x35{left:234.348133pt;}
.x50{left:238.400267pt;}
.x44{left:239.706000pt;}
.x2b{left:241.107867pt;}
.x55{left:243.324000pt;}
.x15{left:245.685467pt;}
.xe{left:254.656000pt;}
.x1{left:256.093200pt;}
.x3d{left:258.580400pt;}
.x51{left:265.445067pt;}
.x2d{left:266.634533pt;}
.x10{left:267.781200pt;}
.xf{left:269.039867pt;}
.x8{left:270.239867pt;}
.x3{left:271.726400pt;}
.x2e{left:272.655333pt;}
.x54{left:275.774533pt;}
.x38{left:277.816533pt;}
.xa{left:282.015733pt;}
.x3e{left:290.190933pt;}
.xb{left:292.598400pt;}
.x45{left:293.520800pt;}
.x52{left:319.534800pt;}
.x46{left:320.428267pt;}
.x3f{left:321.801600pt;}
.x31{left:323.978400pt;}
.x27{left:329.574800pt;}
.x5{left:340.279600pt;}
.x47{left:347.335600pt;}
.x4d{left:349.984267pt;}
.x39{left:352.209200pt;}
.x4{left:354.029200pt;}
.x6{left:360.268800pt;}
.x48{left:374.243067pt;}
.x40{left:385.022667pt;}
.x49{left:401.150533pt;}
.x41{left:416.633200pt;}
.x36{left:425.196667pt;}
.x4a{left:428.057867pt;}
.x42{left:448.243867pt;}
.x4b{left:454.965333pt;}
.x43{left:479.854400pt;}
.x4c{left:481.872800pt;}
.x16{left:526.448800pt;}
}




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