
    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_1e7ecc01a52e6dbdd4e1b12c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_0529a37b70b702190af60e97.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.871000;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_3f92beab4baa761fd7257649.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.891000;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_421a4da70f0cfc5e9eb9f129.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882000;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_3dd18699ba416052b96f6700.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.880000;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_2ba5e6f3dc84f0ead4bffff6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882000;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_1f00e103ba69801883ba09af.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.678223;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_a66a8af19a3e93eb9ed70176.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_c94cc2aca2fe05e4df5e49d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_74a3d3eb51afde58a856fd19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891000;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_0529a37b70b702190af60e97.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871000;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_3dd18699ba416052b96f6700.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.880000;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_9a46740b4aa42af358c6108d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930000;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_2f7d56abc33303b3cbf50c08.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677246;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_74a3d3eb51afde58a856fd19.woff2')format("woff");}.fff{font-family:fff;line-height:0.891000;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_0529a37b70b702190af60e97.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871000;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_3dd18699ba416052b96f6700.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.880000;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_9a46740b4aa42af358c6108d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.930000;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_eb8ffde328ecd7b08efbf4ce.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.518284;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_369392b667605e5c1aea1bf5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.951000;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_f29e7ead0198ed9a09a12284.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.025000;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_5b3de0ffd1e5737ab4ed4ade.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.898000;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_60a8f53dff2afe0e29eee4fc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.964000;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_369392b667605e5c1aea1bf5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.951000;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_f29e7ead0198ed9a09a12284.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.025000;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_5b3de0ffd1e5737ab4ed4ade.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.898000;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_60a8f53dff2afe0e29eee4fc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.964000;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_b87edbc9dd38d4ca820fdb6d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.638000;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_08a5d02dd468eade9f6fb92b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.745765;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_9b49cc428c980b5e984d0177.woff2')format("woff");}.ff1e{font-family:ff1e;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;}
.m16{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245129,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245130,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.245498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245498,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245967,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246202,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246288,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247098,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247268,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247440,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247779,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248143,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249813,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);}
.mc{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251724,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252090,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252343,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252585,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252607,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252753,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252915,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253340,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253527,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253773,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253774,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254467,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v5{vertical-align:-19.980000px;}
.v4{vertical-align:-18.018000px;}
.v6{vertical-align:-15.007800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980600px;}
.ls4a{letter-spacing:-4.416000px;}
.ls22{letter-spacing:-4.368000px;}
.ls4f{letter-spacing:-3.168000px;}
.ls23{letter-spacing:-2.928000px;}
.ls4b{letter-spacing:-2.640000px;}
.ls16{letter-spacing:-2.400000px;}
.lse{letter-spacing:-1.500000px;}
.ls49{letter-spacing:-1.488000px;}
.ls4e{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.320000px;}
.lsa{letter-spacing:-1.140000px;}
.ls19{letter-spacing:-1.104000px;}
.ls27{letter-spacing:-1.035000px;}
.ls18{letter-spacing:-1.020000px;}
.ls5{letter-spacing:-1.008000px;}
.ls4d{letter-spacing:-0.960000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.660000px;}
.ls4c{letter-spacing:-0.624000px;}
.ls9{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.495000px;}
.ls13{letter-spacing:-0.420000px;}
.ls47{letter-spacing:-0.384000px;}
.ls24{letter-spacing:-0.315000px;}
.ls6{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.120000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000150px;}
.ls0{letter-spacing:0.000240px;}
.ls14{letter-spacing:0.000281px;}
.ls2{letter-spacing:0.000312px;}
.ls12{letter-spacing:0.004800px;}
.ls20{letter-spacing:0.135000px;}
.ls1d{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.384000px;}
.ls25{letter-spacing:0.405000px;}
.ls30{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.780000px;}
.lsb{letter-spacing:0.900000px;}
.ls3c{letter-spacing:0.960000px;}
.lsf{letter-spacing:1.680000px;}
.ls44{letter-spacing:2.160000px;}
.ls43{letter-spacing:2.208000px;}
.ls2b{letter-spacing:2.640000px;}
.ls2a{letter-spacing:2.832000px;}
.ls29{letter-spacing:2.976000px;}
.ls2d{letter-spacing:3.936000px;}
.ls36{letter-spacing:3.984000px;}
.ls34{letter-spacing:4.032000px;}
.ls35{letter-spacing:4.036800px;}
.ls3d{letter-spacing:5.184000px;}
.ls41{letter-spacing:5.856000px;}
.ls42{letter-spacing:5.860800px;}
.ls2e{letter-spacing:6.480000px;}
.ls2f{letter-spacing:6.484800px;}
.ls1e{letter-spacing:6.624000px;}
.ls2c{letter-spacing:7.056000px;}
.ls31{letter-spacing:7.104000px;}
.ls32{letter-spacing:7.296000px;}
.ls33{letter-spacing:7.300800px;}
.ls39{letter-spacing:7.344000px;}
.ls38{letter-spacing:7.392000px;}
.ls37{letter-spacing:8.016000px;}
.ls46{letter-spacing:9.744000px;}
.ls45{letter-spacing:10.800000px;}
.ls3e{letter-spacing:11.136000px;}
.ls28{letter-spacing:11.712000px;}
.ls3a{letter-spacing:12.288000px;}
.ls1c{letter-spacing:17.376000px;}
.ls1f{letter-spacing:19.344000px;}
.ls3b{letter-spacing:22.272000px;}
.ls40{letter-spacing:27.408000px;}
.ls3f{letter-spacing:27.412800px;}
.ls21{letter-spacing:176.625000px;}
.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;}
}
.ws3d{word-spacing:-15.420000px;}
.ws0{word-spacing:-14.760000px;}
.ws3c{word-spacing:-14.640000px;}
.ws62{word-spacing:-14.520000px;}
.ws3f{word-spacing:-14.400000px;}
.ws40{word-spacing:-14.100000px;}
.ws76{word-spacing:-13.824000px;}
.wsb{word-spacing:-13.620000px;}
.ws3e{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.452000px;}
.ws73{word-spacing:-13.320000px;}
.ws6{word-spacing:-13.284000px;}
.ws8e{word-spacing:-13.200000px;}
.wsa{word-spacing:-13.140000px;}
.ws75{word-spacing:-13.008000px;}
.ws9{word-spacing:-12.960000px;}
.ws7{word-spacing:-12.744000px;}
.ws8d{word-spacing:-12.600000px;}
.ws8c{word-spacing:-12.420000px;}
.wsed{word-spacing:-12.240000px;}
.wsee{word-spacing:-11.904000px;}
.ws11{word-spacing:-11.808000px;}
.wsb2{word-spacing:-11.760000px;}
.wsaf{word-spacing:-11.568000px;}
.ws3{word-spacing:-11.520000px;}
.wsf6{word-spacing:-11.424000px;}
.ws78{word-spacing:-11.328000px;}
.wsb0{word-spacing:-11.136000px;}
.wsd5{word-spacing:-10.944000px;}
.wsf2{word-spacing:-10.896000px;}
.wsda{word-spacing:-10.704000px;}
.wsf3{word-spacing:-10.560000px;}
.ws8f{word-spacing:-10.464000px;}
.wsb8{word-spacing:-10.350000px;}
.wsb9{word-spacing:-10.215000px;}
.wsf4{word-spacing:-10.080000px;}
.wsf0{word-spacing:-10.032000px;}
.wsb4{word-spacing:-9.900000px;}
.wsb7{word-spacing:-9.720000px;}
.ws77{word-spacing:-9.676800px;}
.ws74{word-spacing:-9.105600px;}
.wsf1{word-spacing:-8.880000px;}
.ws1{word-spacing:-8.605080px;}
.wsb1{word-spacing:-8.592000px;}
.wsf5{word-spacing:-8.352000px;}
.ws8{word-spacing:-7.940460px;}
.ws5{word-spacing:-7.744572px;}
.wsae{word-spacing:-7.152000px;}
.ws101{word-spacing:-7.104000px;}
.ws2{word-spacing:-6.884064px;}
.ws81{word-spacing:-6.471300px;}
.ws19{word-spacing:-6.422328px;}
.ws44{word-spacing:-6.120000px;}
.wsba{word-spacing:-5.955345px;}
.wsec{word-spacing:-4.853475px;}
.ws83{word-spacing:-3.600000px;}
.ws105{word-spacing:-3.120000px;}
.ws4a{word-spacing:-3.060000px;}
.ws26{word-spacing:-2.760000px;}
.ws2b{word-spacing:-2.700000px;}
.wsc3{word-spacing:-2.640000px;}
.ws79{word-spacing:-2.580000px;}
.ws61{word-spacing:-2.460000px;}
.ws70{word-spacing:-2.400000px;}
.ws1c{word-spacing:-2.376000px;}
.ws2f{word-spacing:-2.340000px;}
.ws9b{word-spacing:-2.280000px;}
.ws106{word-spacing:-2.256000px;}
.ws97{word-spacing:-2.220000px;}
.ws12{word-spacing:-2.160000px;}
.ws5c{word-spacing:-2.100000px;}
.ws20{word-spacing:-2.052000px;}
.ws125{word-spacing:-2.016000px;}
.wsc4{word-spacing:-1.860000px;}
.ws3a{word-spacing:-1.680000px;}
.ws4f{word-spacing:-1.620000px;}
.ws1e{word-spacing:-1.566000px;}
.ws7a{word-spacing:-1.560000px;}
.wsef{word-spacing:-1.512000px;}
.ws7e{word-spacing:-1.500000px;}
.ws104{word-spacing:-1.488000px;}
.ws1f{word-spacing:-1.458000px;}
.ws45{word-spacing:-1.440000px;}
.ws8b{word-spacing:-1.392000px;}
.ws8a{word-spacing:-1.344000px;}
.ws55{word-spacing:-1.320000px;}
.ws49{word-spacing:-1.260000px;}
.ws98{word-spacing:-1.200000px;}
.wsa6{word-spacing:-1.140000px;}
.ws117{word-spacing:-1.104000px;}
.wsdd{word-spacing:-1.056000px;}
.ws14{word-spacing:-1.026000px;}
.ws80{word-spacing:-1.020000px;}
.wsdf{word-spacing:-1.008000px;}
.ws54{word-spacing:-0.960000px;}
.ws64{word-spacing:-0.900000px;}
.ws37{word-spacing:-0.840000px;}
.wsd{word-spacing:-0.780000px;}
.wsf8{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.702000px;}
.wsdb{word-spacing:-0.672000px;}
.ws63{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.648000px;}
.ws109{word-spacing:-0.624000px;}
.ws18{word-spacing:-0.486000px;}
.ws2c{word-spacing:-0.480000px;}
.wseb{word-spacing:-0.405000px;}
.ws11a{word-spacing:-0.384000px;}
.ws4d{word-spacing:-0.360000px;}
.ws116{word-spacing:-0.336000px;}
.ws36{word-spacing:-0.240000px;}
.ws126{word-spacing:-0.192000px;}
.ws67{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.120000px;}
.ws108{word-spacing:-0.096000px;}
.wsc{word-spacing:0.000000px;}
.ws65{word-spacing:0.060000px;}
.ws4e{word-spacing:0.120000px;}
.ws138{word-spacing:0.192000px;}
.ws39{word-spacing:0.240000px;}
.ws9c{word-spacing:0.300000px;}
.wsf{word-spacing:0.336000px;}
.wsf7{word-spacing:0.384000px;}
.wsa1{word-spacing:0.420000px;}
.ws35{word-spacing:0.540000px;}
.ws10d{word-spacing:0.576000px;}
.ws82{word-spacing:0.600000px;}
.ws56{word-spacing:0.660000px;}
.ws11c{word-spacing:0.672000px;}
.ws11b{word-spacing:0.720000px;}
.ws31{word-spacing:0.780000px;}
.wscc{word-spacing:0.840000px;}
.wsd6{word-spacing:0.864000px;}
.ws129{word-spacing:0.912000px;}
.wsa3{word-spacing:0.960000px;}
.wse{word-spacing:1.008000px;}
.ws9a{word-spacing:1.020000px;}
.wsac{word-spacing:1.104000px;}
.ws3b{word-spacing:1.140000px;}
.ws29{word-spacing:1.200000px;}
.wsea{word-spacing:1.248000px;}
.wse9{word-spacing:1.296000px;}
.ws2d{word-spacing:1.500000px;}
.ws25{word-spacing:1.560000px;}
.ws13{word-spacing:1.566000px;}
.ws10{word-spacing:1.584000px;}
.ws87{word-spacing:1.620000px;}
.ws16{word-spacing:1.674000px;}
.wsd4{word-spacing:1.680000px;}
.wsa4{word-spacing:1.740000px;}
.ws10c{word-spacing:1.776000px;}
.ws10b{word-spacing:1.824000px;}
.wsa8{word-spacing:1.860000px;}
.ws122{word-spacing:1.920000px;}
.wsa9{word-spacing:1.980000px;}
.ws7b{word-spacing:2.100000px;}
.ws42{word-spacing:2.160000px;}
.wsad{word-spacing:2.256000px;}
.ws9d{word-spacing:2.280000px;}
.ws135{word-spacing:2.352000px;}
.ws96{word-spacing:2.400000px;}
.ws1d{word-spacing:2.430000px;}
.ws33{word-spacing:2.460000px;}
.ws134{word-spacing:2.496000px;}
.wsc6{word-spacing:2.580000px;}
.ws86{word-spacing:2.640000px;}
.ws34{word-spacing:2.700000px;}
.ws100{word-spacing:2.832000px;}
.ws43{word-spacing:2.880000px;}
.ws5b{word-spacing:2.940000px;}
.wsfd{word-spacing:2.976000px;}
.ws2e{word-spacing:3.060000px;}
.ws28{word-spacing:3.120000px;}
.ws17{word-spacing:3.132000px;}
.ws47{word-spacing:3.360000px;}
.wsc5{word-spacing:3.420000px;}
.ws1b{word-spacing:3.510000px;}
.ws6f{word-spacing:3.540000px;}
.ws1a{word-spacing:3.672000px;}
.wsd3{word-spacing:3.792000px;}
.ws58{word-spacing:3.840000px;}
.ws48{word-spacing:3.900000px;}
.ws11d{word-spacing:3.984000px;}
.ws46{word-spacing:4.020000px;}
.ws115{word-spacing:4.032000px;}
.ws32{word-spacing:4.080000px;}
.wsa5{word-spacing:4.200000px;}
.wsa0{word-spacing:4.260000px;}
.ws27{word-spacing:4.440000px;}
.ws23{word-spacing:4.500000px;}
.ws85{word-spacing:4.620000px;}
.wscf{word-spacing:4.680000px;}
.ws30{word-spacing:4.740000px;}
.wscd{word-spacing:4.920000px;}
.ws15{word-spacing:4.968000px;}
.ws12a{word-spacing:5.040000px;}
.ws4b{word-spacing:5.100000px;}
.ws12b{word-spacing:5.184000px;}
.wsa7{word-spacing:5.280000px;}
.wsd9{word-spacing:5.328000px;}
.wsc9{word-spacing:5.460000px;}
.wse5{word-spacing:5.568000px;}
.wsd2{word-spacing:5.616000px;}
.ws6e{word-spacing:5.640000px;}
.ws71{word-spacing:5.760000px;}
.wse6{word-spacing:5.808000px;}
.ws6d{word-spacing:5.820000px;}
.ws130{word-spacing:5.856000px;}
.ws72{word-spacing:6.000000px;}
.wsc8{word-spacing:6.120000px;}
.ws9f{word-spacing:6.300000px;}
.ws5e{word-spacing:6.420000px;}
.ws10a{word-spacing:6.480000px;}
.wsde{word-spacing:6.624000px;}
.wsfe{word-spacing:6.672000px;}
.ws57{word-spacing:6.720000px;}
.ws124{word-spacing:6.768000px;}
.wsdc{word-spacing:6.912000px;}
.wsff{word-spacing:6.960000px;}
.wse0{word-spacing:7.008000px;}
.ws107{word-spacing:7.056000px;}
.ws9e{word-spacing:7.080000px;}
.ws111{word-spacing:7.104000px;}
.ws99{word-spacing:7.200000px;}
.ws112{word-spacing:7.344000px;}
.ws11f{word-spacing:7.392000px;}
.ws69{word-spacing:7.440000px;}
.ws92{word-spacing:7.560000px;}
.ws90{word-spacing:7.620000px;}
.ws91{word-spacing:7.680000px;}
.ws7d{word-spacing:7.740000px;}
.ws6b{word-spacing:7.860000px;}
.ws53{word-spacing:7.980000px;}
.ws11e{word-spacing:8.064000px;}
.ws94{word-spacing:8.100000px;}
.ws52{word-spacing:8.160000px;}
.ws137{word-spacing:8.208000px;}
.ws93{word-spacing:8.220000px;}
.ws2a{word-spacing:8.280000px;}
.ws102{word-spacing:8.400000px;}
.ws136{word-spacing:8.544000px;}
.wsaa{word-spacing:8.832000px;}
.ws51{word-spacing:8.880000px;}
.ws6c{word-spacing:8.940000px;}
.wscb{word-spacing:9.000000px;}
.wsa2{word-spacing:9.060000px;}
.ws38{word-spacing:9.120000px;}
.wsab{word-spacing:9.216000px;}
.ws121{word-spacing:9.408000px;}
.ws50{word-spacing:9.600000px;}
.ws66{word-spacing:9.780000px;}
.ws120{word-spacing:9.840000px;}
.ws7f{word-spacing:9.900000px;}
.ws110{word-spacing:9.936000px;}
.wse8{word-spacing:9.984000px;}
.ws10f{word-spacing:10.320000px;}
.wse7{word-spacing:10.368000px;}
.ws24{word-spacing:10.500000px;}
.ws133{word-spacing:10.800000px;}
.ws12e{word-spacing:11.136000px;}
.ws10e{word-spacing:11.376000px;}
.ws41{word-spacing:11.520000px;}
.ws119{word-spacing:11.712000px;}
.wse2{word-spacing:11.904000px;}
.ws5d{word-spacing:11.940000px;}
.ws6a{word-spacing:12.060000px;}
.ws118{word-spacing:12.192000px;}
.ws123{word-spacing:12.288000px;}
.ws60{word-spacing:12.300000px;}
.ws84{word-spacing:12.420000px;}
.ws7c{word-spacing:12.480000px;}
.ws128{word-spacing:12.960000px;}
.ws132{word-spacing:13.200000px;}
.ws131{word-spacing:13.728000px;}
.ws95{word-spacing:14.580000px;}
.wsd1{word-spacing:15.120000px;}
.wsd8{word-spacing:15.552000px;}
.ws12d{word-spacing:15.648000px;}
.wsd0{word-spacing:16.080000px;}
.ws12c{word-spacing:16.320000px;}
.ws103{word-spacing:16.560000px;}
.ws114{word-spacing:16.800000px;}
.ws4c{word-spacing:16.980000px;}
.ws113{word-spacing:17.520000px;}
.wsfa{word-spacing:17.568000px;}
.ws88{word-spacing:17.640000px;}
.ws89{word-spacing:18.000000px;}
.wsd7{word-spacing:18.240000px;}
.wsf9{word-spacing:18.336000px;}
.wse1{word-spacing:19.104000px;}
.ws68{word-spacing:19.140000px;}
.wsfc{word-spacing:22.080000px;}
.ws127{word-spacing:22.272000px;}
.wse4{word-spacing:22.512000px;}
.wsca{word-spacing:22.620000px;}
.wsfb{word-spacing:23.040000px;}
.wse3{word-spacing:23.472000px;}
.ws12f{word-spacing:27.408000px;}
.ws5f{word-spacing:28.560000px;}
.wsce{word-spacing:29.160000px;}
.ws59{word-spacing:30.240000px;}
.wsc7{word-spacing:34.380000px;}
.wsc0{word-spacing:128.306895px;}
.wsbf{word-spacing:162.941895px;}
.wsb5{word-spacing:190.260000px;}
.wsb6{word-spacing:190.575000px;}
.wsc2{word-spacing:200.036295px;}
.wsc1{word-spacing:200.786295px;}
.wsbe{word-spacing:279.900000px;}
.wsbd{word-spacing:283.995000px;}
.wsbb{word-spacing:284.580000px;}
.wsbc{word-spacing:285.345000px;}
.wsb3{word-spacing:297.000000px;}
._1b{margin-left:-50.016000px;}
._1d{margin-left:-48.492000px;}
._1f{margin-left:-36.240000px;}
._f{margin-left:-31.590000px;}
._10{margin-left:-29.656800px;}
._1a{margin-left:-25.458189px;}
._13{margin-left:-24.078000px;}
._17{margin-left:-22.860000px;}
._19{margin-left:-21.728307px;}
._11{margin-left:-20.232000px;}
._b{margin-left:-18.378000px;}
._8{margin-left:-16.422000px;}
._5{margin-left:-14.850000px;}
._18{margin-left:-13.392000px;}
._22{margin-left:-12.352260px;}
._3{margin-left:-11.304000px;}
._12{margin-left:-9.738000px;}
._e{margin-left:-8.707200px;}
._2{margin-left:-7.344000px;}
._d{margin-left:-5.965200px;}
._a{margin-left:-4.932000px;}
._1{margin-left:-3.250800px;}
._0{margin-left:-1.944000px;}
._7{width:1.290000px;}
._9{width:2.394000px;}
._38{width:3.441600px;}
._c{width:4.764000px;}
._15{width:6.864000px;}
._14{width:8.340000px;}
._1c{width:9.572307px;}
._3a{width:10.608000px;}
._4{width:12.302400px;}
._6{width:13.553226px;}
._21{width:15.144000px;}
._16{width:17.376000px;}
._24{width:18.963600px;}
._25{width:20.118000px;}
._20{width:21.780000px;}
._39{width:22.857600px;}
._3b{width:27.619200px;}
._23{width:34.182000px;}
._1e{width:35.550000px;}
._3c{width:37.512000px;}
._33{width:45.000000px;}
._2a{width:136.665000px;}
._2c{width:138.645000px;}
._27{width:144.234000px;}
._2b{width:164.169000px;}
._2d{width:193.869000px;}
._28{width:216.684000px;}
._31{width:224.064000px;}
._2e{width:227.925000px;}
._30{width:290.700000px;}
._32{width:293.445000px;}
._2f{width:295.560000px;}
._26{width:305.055000px;}
._29{width:313.047000px;}
._35{width:373.644000px;}
._37{width:379.575000px;}
._34{width:402.009000px;}
._36{width:422.800800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:26.235000px;}
.fs5{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fsa{font-size:33.600000px;}
.fs3{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fsc{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fsb{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:2.842350px;}
.y127{bottom:2.843250px;}
.y1{bottom:26.078700px;}
.y12{bottom:43.466850px;}
.yc3{bottom:74.651850px;}
.y15b{bottom:76.551750px;}
.y69{bottom:76.557150px;}
.y91{bottom:76.562550px;}
.yf4{bottom:76.769850px;}
.yab{bottom:76.784400px;}
.y10a{bottom:76.934850px;}
.y195{bottom:77.073300px;}
.y11{bottom:80.646300px;}
.y194{bottom:90.753300px;}
.y15a{bottom:93.801750px;}
.y68{bottom:93.807150px;}
.y90{bottom:93.812550px;}
.yf3{bottom:94.034850px;}
.y10{bottom:94.146300px;}
.yaa{bottom:94.394400px;}
.y109{bottom:95.055000px;}
.y216{bottom:96.785400px;}
.y122{bottom:98.010600px;}
.y193{bottom:104.433300px;}
.yf{bottom:107.646300px;}
.y159{bottom:111.051750px;}
.y67{bottom:111.057150px;}
.y8f{bottom:111.062550px;}
.yf2{bottom:111.299850px;}
.ya8{bottom:112.004400px;}
.y108{bottom:113.174850px;}
.ya9{bottom:116.999400px;}
.y192{bottom:118.113300px;}
.ye{bottom:121.146300px;}
.y215{bottom:123.185400px;}
.y158{bottom:128.301750px;}
.y66{bottom:128.307150px;}
.y8e{bottom:128.312550px;}
.yf1{bottom:128.564850px;}
.ya7{bottom:129.614400px;}
.y107{bottom:131.294850px;}
.yd{bottom:134.646300px;}
.y191{bottom:136.293300px;}
.y214{bottom:138.185400px;}
.y157{bottom:145.551750px;}
.y78{bottom:145.557150px;}
.y8d{bottom:145.562550px;}
.yf0{bottom:145.829850px;}
.ya6{bottom:147.224400px;}
.yc{bottom:148.146300px;}
.y105{bottom:149.414850px;}
.y190{bottom:149.973300px;}
.y213{bottom:153.185400px;}
.y65{bottom:154.060950px;}
.y106{bottom:154.409850px;}
.yb{bottom:161.646300px;}
.y156{bottom:162.801750px;}
.y77{bottom:162.807150px;}
.yef{bottom:163.095000px;}
.y18f{bottom:163.653300px;}
.ya5{bottom:164.834400px;}
.y104{bottom:167.534850px;}
.y212{bottom:168.185400px;}
.y64{bottom:171.310950px;}
.y8c{bottom:171.316650px;}
.ya{bottom:175.146300px;}
.y155{bottom:180.051750px;}
.y76{bottom:180.057150px;}
.yee{bottom:180.360000px;}
.y18e{bottom:181.833300px;}
.ya4{bottom:182.444400px;}
.y211{bottom:183.185400px;}
.y103{bottom:185.655000px;}
.y63{bottom:188.560950px;}
.y8b{bottom:188.566650px;}
.y9{bottom:188.646300px;}
.y18d{bottom:195.513300px;}
.y154{bottom:197.301750px;}
.y75{bottom:197.307150px;}
.yed{bottom:197.625000px;}
.y210{bottom:198.185400px;}
.y8{bottom:202.146300px;}
.y102{bottom:203.774850px;}
.y62{bottom:205.810950px;}
.y8a{bottom:205.816650px;}
.ya3{bottom:208.558350px;}
.y18c{bottom:209.193300px;}
.y74{bottom:214.557150px;}
.yec{bottom:214.890000px;}
.y20f{bottom:217.685400px;}
.y101{bottom:221.894850px;}
.y153{bottom:223.055700px;}
.y61{bottom:223.060950px;}
.y89{bottom:223.066650px;}
.ya2{bottom:226.168350px;}
.y18b{bottom:227.373300px;}
.y73{bottom:231.807150px;}
.yeb{bottom:232.155000px;}
.yff{bottom:240.014850px;}
.y152{bottom:240.305700px;}
.y60{bottom:240.310950px;}
.y87{bottom:240.316650px;}
.y18a{bottom:241.053300px;}
.ya1{bottom:243.778350px;}
.y100{bottom:245.010000px;}
.y88{bottom:245.311650px;}
.y72{bottom:249.057150px;}
.yea{bottom:249.419850px;}
.y151{bottom:257.555700px;}
.y5f{bottom:257.560950px;}
.y86{bottom:257.566650px;}
.y40{bottom:257.832450px;}
.y31{bottom:257.936400px;}
.yfe{bottom:258.134850px;}
.y189{bottom:259.233300px;}
.ya0{bottom:261.388350px;}
.ye9{bottom:266.684850px;}
.y188{bottom:272.913300px;}
.y5e{bottom:274.810950px;}
.y85{bottom:274.816650px;}
.y3f{bottom:275.547450px;}
.y30{bottom:276.251400px;}
.yfd{bottom:276.254850px;}
.y9f{bottom:278.998500px;}
.y150{bottom:279.051750px;}
.ye8{bottom:283.949850px;}
.y187{bottom:286.593300px;}
.y9e{bottom:291.613500px;}
.y5d{bottom:292.060950px;}
.y84{bottom:292.066650px;}
.y3e{bottom:293.261400px;}
.yfc{bottom:294.374850px;}
.y2f{bottom:294.566400px;}
.y9d{bottom:296.608500px;}
.y14f{bottom:300.057750px;}
.ye6{bottom:301.214850px;}
.y186{bottom:304.773300px;}
.ye7{bottom:306.209850px;}
.y5c{bottom:309.310950px;}
.y83{bottom:309.316650px;}
.yfb{bottom:312.494850px;}
.y2e{bottom:312.881400px;}
.y9c{bottom:314.218350px;}
.y185{bottom:318.453300px;}
.ye5{bottom:318.479850px;}
.y3d{bottom:319.481400px;}
.y5b{bottom:326.560950px;}
.y82{bottom:326.566650px;}
.yfa{bottom:330.614850px;}
.y2d{bottom:331.196400px;}
.y9b{bottom:331.828350px;}
.y184{bottom:332.133300px;}
.ye4{bottom:335.744850px;}
.y3c{bottom:337.196400px;}
.y5a{bottom:343.810950px;}
.y81{bottom:343.816650px;}
.y14e{bottom:345.311700px;}
.y183{bottom:345.813300px;}
.yf9{bottom:348.734850px;}
.y9a{bottom:349.438350px;}
.y2c{bottom:349.511400px;}
.ye2{bottom:353.009850px;}
.y3a{bottom:354.911400px;}
.ye3{bottom:358.004850px;}
.y182{bottom:359.493300px;}
.y3b{bottom:359.906400px;}
.y59{bottom:361.060950px;}
.y80{bottom:361.066650px;}
.y14c{bottom:362.561700px;}
.yf8{bottom:366.854850px;}
.y99{bottom:367.048350px;}
.y14d{bottom:367.556700px;}
.y2b{bottom:367.826400px;}
.ye1{bottom:370.274850px;}
.y39{bottom:372.626400px;}
.y20e{bottom:373.996050px;}
.y1e0{bottom:374.596050px;}
.y58{bottom:378.310950px;}
.y7f{bottom:378.316650px;}
.y98{bottom:384.658350px;}
.yf7{bottom:384.974850px;}
.y2a{bottom:386.141400px;}
.y181{bottom:387.429300px;}
.y20d{bottom:387.496050px;}
.ye0{bottom:387.539850px;}
.y1df{bottom:388.696050px;}
.y38{bottom:390.341400px;}
.y57{bottom:395.560950px;}
.y7e{bottom:395.566650px;}
.y97{bottom:397.273350px;}
.y20c{bottom:400.996050px;}
.y180{bottom:401.109300px;}
.y96{bottom:402.268350px;}
.y1de{bottom:402.796050px;}
.yf6{bottom:403.094850px;}
.y29{bottom:404.456400px;}
.ydf{bottom:404.804850px;}
.y37{bottom:408.056400px;}
.y56{bottom:412.810950px;}
.y7d{bottom:412.815450px;}
.y20b{bottom:414.496050px;}
.y1b3{bottom:415.361100px;}
.y95{bottom:419.878350px;}
.yf5{bottom:421.214850px;}
.y1dd{bottom:421.396050px;}
.yde{bottom:422.069850px;}
.y28{bottom:422.771400px;}
.y17f{bottom:424.533300px;}
.y36{bottom:425.771400px;}
.y20a{bottom:427.996050px;}
.y55{bottom:430.060950px;}
.y94{bottom:432.493350px;}
.y1dc{bottom:435.496050px;}
.y93{bottom:437.488350px;}
.y17e{bottom:438.213300px;}
.y7c{bottom:438.570450px;}
.ydd{bottom:439.334850px;}
.y1b2{bottom:440.039700px;}
.y27{bottom:441.086400px;}
.y35{bottom:443.486400px;}
.y209{bottom:445.996050px;}
.y54{bottom:447.310950px;}
.y1db{bottom:449.596050px;}
.y17d{bottom:451.893300px;}
.y92{bottom:455.098350px;}
.y7b{bottom:455.820450px;}
.y26{bottom:459.401400px;}
.y208{bottom:459.496050px;}
.y34{bottom:461.201400px;}
.y53{bottom:464.560950px;}
.y1b1{bottom:464.718300px;}
.y17c{bottom:465.573300px;}
.y1da{bottom:468.196050px;}
.y207{bottom:472.996050px;}
.y25{bottom:477.716400px;}
.y33{bottom:478.916400px;}
.y52{bottom:481.810950px;}
.y1d9{bottom:482.296050px;}
.y206{bottom:486.496050px;}
.y1b0{bottom:489.361950px;}
.y17b{bottom:491.253300px;}
.y24{bottom:496.031400px;}
.y1d8{bottom:496.396050px;}
.y32{bottom:496.631400px;}
.y51{bottom:499.060950px;}
.y205{bottom:504.496050px;}
.y17a{bottom:504.933300px;}
.y14b{bottom:506.174700px;}
.ydc{bottom:508.650450px;}
.y1af{bottom:514.044450px;}
.y23{bottom:514.346400px;}
.y1d7{bottom:514.996050px;}
.y71{bottom:516.310950px;}
.y204{bottom:517.996050px;}
.y179{bottom:518.613300px;}
.y14a{bottom:521.174700px;}
.ydb{bottom:523.650450px;}
.y50{bottom:524.814900px;}
.y1d6{bottom:529.096050px;}
.y203{bottom:531.496050px;}
.y178{bottom:532.293300px;}
.y70{bottom:533.560950px;}
.y149{bottom:536.174700px;}
.yda{bottom:538.650450px;}
.y1ae{bottom:538.726950px;}
.y4f{bottom:542.064900px;}
.y1d5{bottom:547.696050px;}
.y202{bottom:549.496050px;}
.y6f{bottom:550.810950px;}
.y148{bottom:551.174700px;}
.yd9{bottom:553.650450px;}
.y4e{bottom:559.314900px;}
.y1d4{bottom:561.796050px;}
.y201{bottom:562.996050px;}
.y1ad{bottom:563.409450px;}
.y6e{bottom:568.060950px;}
.y1d3{bottom:575.896050px;}
.y4d{bottom:576.564900px;}
.y200{bottom:580.996050px;}
.y177{bottom:581.477250px;}
.y22{bottom:581.899650px;}
.y6d{bottom:585.310950px;}
.y1ac{bottom:588.091950px;}
.y121{bottom:588.727500px;}
.y1d2{bottom:589.996050px;}
.yc2{bottom:591.202500px;}
.y4c{bottom:593.814900px;}
.y1ff{bottom:594.496050px;}
.y128{bottom:596.070750px;}
.yc8{bottom:598.544850px;}
.y176{bottom:598.907250px;}
.y21{bottom:599.899650px;}
.y6c{bottom:602.560950px;}
.y1d1{bottom:608.596050px;}
.y126{bottom:610.998750px;}
.y4b{bottom:611.064900px;}
.yc6{bottom:611.753850px;}
.y1fe{bottom:612.496050px;}
.y1ab{bottom:612.774450px;}
.y175{bottom:616.337250px;}
.y20{bottom:617.899650px;}
.y6b{bottom:619.810950px;}
.y1d0{bottom:622.696050px;}
.y1fd{bottom:625.996050px;}
.y4a{bottom:628.314900px;}
.y12c{bottom:628.716600px;}
.y125{bottom:629.856600px;}
.yc5{bottom:630.422850px;}
.y174{bottom:633.767250px;}
.y1f{bottom:635.899650px;}
.y1cf{bottom:636.796050px;}
.y6a{bottom:637.060950px;}
.y1aa{bottom:637.456950px;}
.y1fc{bottom:639.496050px;}
.y143{bottom:643.380600px;}
.y49{bottom:645.564900px;}
.y124{bottom:646.808100px;}
.yc4{bottom:647.378850px;}
.y173{bottom:651.197250px;}
.yd4{bottom:652.690350px;}
.y1e{bottom:653.899650px;}
.y1ce{bottom:655.396050px;}
.y1fb{bottom:657.496050px;}
.y1a9{bottom:662.139450px;}
.y48{bottom:662.814900px;}
.y123{bottom:664.523250px;}
.y12d{bottom:664.716600px;}
.yc1{bottom:665.855850px;}
.y172{bottom:668.627250px;}
.y1cd{bottom:669.496050px;}
.y1fa{bottom:670.996050px;}
.y1d{bottom:671.899650px;}
.y138{bottom:675.204600px;}
.y144{bottom:678.996600px;}
.y47{bottom:680.064900px;}
.y120{bottom:682.238100px;}
.yc0{bottom:683.759850px;}
.ycc{bottom:684.142350px;}
.y1f9{bottom:684.496050px;}
.y171{bottom:686.057250px;}
.y1a8{bottom:686.821950px;}
.y1cc{bottom:688.096050px;}
.y1c{bottom:689.904150px;}
.y13b{bottom:690.816600px;}
.y46{bottom:697.314900px;}
.ycd{bottom:697.858350px;}
.y11f{bottom:699.951750px;}
.ybf{bottom:700.327350px;}
.y12b{bottom:700.332600px;}
.y131{bottom:700.716600px;}
.y1cb{bottom:702.196050px;}
.y1f8{bottom:702.496050px;}
.y170{bottom:703.487250px;}
.y1b{bottom:707.899650px;}
.yd8{bottom:708.337050px;}
.y1a7{bottom:711.493200px;}
.y45{bottom:714.564900px;}
.y13a{bottom:715.392600px;}
.y12f{bottom:715.764600px;}
.y1f7{bottom:715.996050px;}
.y1ca{bottom:716.296050px;}
.ybe{bottom:717.281850px;}
.y11e{bottom:718.047750px;}
.y16f{bottom:720.917250px;}
.y1a6{bottom:725.746950px;}
.y1a{bottom:725.899650px;}
.y1f6{bottom:729.496050px;}
.y44{bottom:731.814900px;}
.y130{bottom:732.144600px;}
.y1c9{bottom:734.896050px;}
.y11d{bottom:735.951750px;}
.ybd{bottom:736.903350px;}
.y16e{bottom:738.347250px;}
.y19{bottom:743.899650px;}
.y1f5{bottom:747.496050px;}
.y1c8{bottom:748.996050px;}
.y43{bottom:749.064900px;}
.y145{bottom:749.472600px;}
.y1a5{bottom:750.429450px;}
.ybc{bottom:753.097350px;}
.y11c{bottom:753.665250px;}
.y16d{bottom:755.777250px;}
.y147{bottom:756.336600px;}
.y13c{bottom:759.000600px;}
.y1f4{bottom:760.996050px;}
.y18{bottom:761.904150px;}
.y42{bottom:766.314900px;}
.y1c7{bottom:767.596050px;}
.y129{bottom:767.952600px;}
.y11b{bottom:771.761100px;}
.ybb{bottom:772.135500px;}
.y1f3{bottom:774.496050px;}
.y1a4{bottom:775.117650px;}
.ycf{bottom:777.850350px;}
.y17{bottom:779.899650px;}
.y1c6{bottom:781.696050px;}
.y16c{bottom:781.711200px;}
.yba{bottom:789.278850px;}
.y11a{bottom:789.284250px;}
.y1f2{bottom:792.496050px;}
.y16{bottom:797.904150px;}
.y16b{bottom:799.141200px;}
.y13d{bottom:799.764600px;}
.y1a3{bottom:799.800150px;}
.y1c5{bottom:800.296050px;}
.y1f1{bottom:805.996050px;}
.y119{bottom:807.189750px;}
.yb9{bottom:807.947850px;}
.yd3{bottom:809.506350px;}
.y1c4{bottom:814.396050px;}
.y15{bottom:815.899650px;}
.y16a{bottom:816.571200px;}
.y1f0{bottom:819.496050px;}
.y7a{bottom:820.224750px;}
.y146{bottom:822.852600px;}
.yd2{bottom:823.414350px;}
.yc9{bottom:823.426350px;}
.y1a2{bottom:824.471400px;}
.yb8{bottom:824.764350px;}
.y118{bottom:824.951250px;}
.y134{bottom:825.348600px;}
.y135{bottom:832.200600px;}
.y1c3{bottom:832.996050px;}
.y14{bottom:833.895150px;}
.y169{bottom:834.001200px;}
.y79{bottom:835.224750px;}
.y1ef{bottom:837.496050px;}
.y1a1{bottom:838.725150px;}
.y13e{bottom:839.616600px;}
.y117{bottom:843.047250px;}
.yb7{bottom:843.619350px;}
.yd1{bottom:844.942350px;}
.y1c2{bottom:847.096050px;}
.y1ee{bottom:850.996050px;}
.y168{bottom:851.431200px;}
.y13{bottom:856.147200px;}
.y116{bottom:860.571750px;}
.y133{bottom:860.964600px;}
.y1c1{bottom:861.196050px;}
.yb6{bottom:861.331350px;}
.y1a0{bottom:863.396400px;}
.y1ed{bottom:864.496050px;}
.y167{bottom:868.861200px;}
.yce{bottom:871.426350px;}
.y19f{bottom:877.650150px;}
.y1ec{bottom:877.996050px;}
.y115{bottom:878.475750px;}
.y139{bottom:879.060600px;}
.y1c0{bottom:879.796050px;}
.yb5{bottom:880.946850px;}
.y136{bottom:883.632600px;}
.y166{bottom:886.291200px;}
.y137{bottom:887.256600px;}
.yd0{bottom:889.894350px;}
.y1bf{bottom:893.896050px;}
.y1eb{bottom:895.996050px;}
.y114{bottom:897.141750px;}
.yb4{bottom:897.901350px;}
.y19e{bottom:902.332650px;}
.y165{bottom:903.721200px;}
.y1be{bottom:907.996050px;}
.y1ea{bottom:909.496050px;}
.y113{bottom:914.094750px;}
.yb3{bottom:914.474700px;}
.y132{bottom:914.484600px;}
.y164{bottom:921.151200px;}
.y1bd{bottom:922.096050px;}
.y1e9{bottom:922.996050px;}
.y19d{bottom:927.003900px;}
.y140{bottom:928.572600px;}
.y4{bottom:929.096400px;}
.y112{bottom:932.000100px;}
.yb2{bottom:932.381100px;}
.y163{bottom:938.581200px;}
.y13f{bottom:938.856600px;}
.y1bc{bottom:940.696050px;}
.y1e8{bottom:940.996050px;}
.y19c{bottom:941.257650px;}
.y111{bottom:949.713000px;}
.yb1{bottom:950.091300px;}
.y1e7{bottom:954.496050px;}
.y1bb{bottom:954.796050px;}
.y162{bottom:956.011200px;}
.y19b{bottom:966.187650px;}
.yb0{bottom:966.849750px;}
.y110{bottom:967.617900px;}
.y12a{bottom:968.184600px;}
.y3{bottom:969.584400px;}
.y1e6{bottom:972.496050px;}
.y1ba{bottom:973.396050px;}
.y161{bottom:973.441200px;}
.y141{bottom:982.860600px;}
.y10f{bottom:985.141800px;}
.yaf{bottom:985.518450px;}
.y1e5{bottom:985.996050px;}
.y1b9{bottom:987.496050px;}
.y160{bottom:990.871200px;}
.y19a{bottom:993.744750px;}
.yd6{bottom:994.642350px;}
.y2{bottom:998.096400px;}
.y1b8{bottom:1001.596050px;}
.yae{bottom:1002.468900px;}
.y10e{bottom:1003.808100px;}
.y1e4{bottom:1003.996050px;}
.y15f{bottom:1008.301200px;}
.y199{bottom:1008.744750px;}
.yd5{bottom:1009.498350px;}
.y1e3{bottom:1017.496050px;}
.y1b7{bottom:1020.196050px;}
.y10d{bottom:1021.141800px;}
.yad{bottom:1021.144050px;}
.y198{bottom:1023.744750px;}
.y15e{bottom:1025.731200px;}
.y1b6{bottom:1034.296050px;}
.y1e2{bottom:1035.496050px;}
.y10c{bottom:1038.856200px;}
.yd7{bottom:1040.542350px;}
.ycb{bottom:1041.334350px;}
.y142{bottom:1043.052600px;}
.y15d{bottom:1043.161200px;}
.y197{bottom:1047.496800px;}
.y1b5{bottom:1048.396050px;}
.y1e1{bottom:1048.996050px;}
.y12e{bottom:1053.720600px;}
.yca{bottom:1054.474350px;}
.yac{bottom:1056.760050px;}
.y10b{bottom:1056.760800px;}
.y15c{bottom:1060.591200px;}
.y1b4{bottom:1062.496050px;}
.y196{bottom:1062.501300px;}
.y7{bottom:1081.562850px;}
.y6{bottom:1099.310850px;}
.y5{bottom:1117.062900px;}
.y41{bottom:1117.771650px;}
.hf{height:24.940740px;}
.h7{height:26.640000px;}
.h25{height:26.913600px;}
.h2d{height:31.635000px;}
.h2e{height:32.085000px;}
.h30{height:33.168000px;}
.h2b{height:33.600000px;}
.h2{height:35.520000px;}
.h2c{height:36.674160px;}
.h6{height:36.692160px;}
.h23{height:38.448000px;}
.h8{height:39.387000px;}
.ha{height:39.960000px;}
.hb{height:41.242680px;}
.hc{height:41.260680px;}
.h9{height:41.278680px;}
.h2f{height:41.460000px;}
.hd{height:42.780000px;}
.h5{height:43.533000px;}
.h28{height:44.880000px;}
.h19{height:44.886000px;}
.h1f{height:44.889600px;}
.h1c{height:44.895600px;}
.h13{height:44.901000px;}
.h1b{height:44.901600px;}
.h17{height:44.904000px;}
.h20{height:44.907600px;}
.h18{height:44.908200px;}
.h27{height:44.913000px;}
.h12{height:44.913600px;}
.h21{height:44.919600px;}
.he{height:44.920740px;}
.h16{height:44.920800px;}
.h11{height:44.921340px;}
.h10{height:44.924940px;}
.h1d{height:44.925600px;}
.h15{height:44.926800px;}
.h1a{height:44.931600px;}
.h14{height:44.935800px;}
.h1e{height:44.937000px;}
.h24{height:44.937600px;}
.h26{height:45.019800px;}
.h4{height:45.865800px;}
.h2a{height:49.752000px;}
.h3{height:75.600000px;}
.h22{height:480.294000px;}
.h29{height:482.769000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w3{width:588.033000px;}
.w2{width:642.897000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:68.031450px;}
.x61{left:74.406450px;}
.x5a{left:77.781000px;}
.x6{left:86.539350px;}
.x62{left:91.794450px;}
.xa{left:104.031000px;}
.x56{left:120.930150px;}
.x2a{left:125.008500px;}
.x57{left:126.352800px;}
.x36{left:127.506900px;}
.x4b{left:152.440500px;}
.x53{left:173.341050px;}
.x5b{left:196.333500px;}
.x5d{left:204.996000px;}
.x60{left:209.086200px;}
.x5c{left:211.543500px;}
.x5f{left:217.557300px;}
.x63{left:220.395000px;}
.x5e{left:224.276550px;}
.x2f{left:240.571050px;}
.xb{left:243.924000px;}
.x3c{left:245.000400px;}
.xc{left:249.214350px;}
.x4d{left:265.598550px;}
.x38{left:307.482900px;}
.x4{left:309.667050px;}
.x50{left:312.013050px;}
.x35{left:317.010900px;}
.x37{left:319.866900px;}
.x34{left:324.642900px;}
.x39{left:326.346900px;}
.x32{left:328.626900px;}
.x3a{left:329.766900px;}
.x33{left:332.070900px;}
.x3b{left:333.575400px;}
.x25{left:334.913400px;}
.x23{left:336.247050px;}
.x22{left:337.958550px;}
.x2d{left:339.866550px;}
.x2c{left:341.388900px;}
.x29{left:342.533400px;}
.x24{left:345.583050px;}
.x21{left:347.482050px;}
.x26{left:348.625050px;}
.x51{left:351.553050px;}
.x1f{left:353.391900px;}
.x2e{left:354.530550px;}
.x3{left:355.756650px;}
.x28{left:357.008550px;}
.x20{left:358.338900px;}
.x52{left:360.133050px;}
.x1e{left:362.342400px;}
.x27{left:364.623900px;}
.x54{left:369.649050px;}
.x4f{left:370.993050px;}
.x5{left:374.023050px;}
.x55{left:376.321050px;}
.x41{left:389.279550px;}
.x42{left:391.564200px;}
.x43{left:394.229550px;}
.x4a{left:401.089200px;}
.x46{left:403.183200px;}
.x48{left:405.469050px;}
.x49{left:406.802550px;}
.x47{left:410.230200px;}
.x44{left:412.327050px;}
.x45{left:417.659700px;}
.x31{left:429.200550px;}
.x1{left:433.369800px;}
.x7{left:465.591450px;}
.x58{left:471.962700px;}
.x59{left:489.314700px;}
.x11{left:497.972100px;}
.x12{left:513.151500px;}
.x18{left:518.739300px;}
.x19{left:522.965850px;}
.x30{left:549.656400px;}
.xd{left:553.181250px;}
.xe{left:568.537800px;}
.x13{left:571.003200px;}
.x2b{left:574.054050px;}
.x4c{left:583.480050px;}
.x14{left:586.182450px;}
.x4e{left:602.116050px;}
.x3d{left:653.516700px;}
.x3e{left:658.971750px;}
.xf{left:661.593600px;}
.x8{left:665.867700px;}
.x9{left:671.344650px;}
.x10{left:676.950150px;}
.x15{left:681.602550px;}
.x1c{left:722.587200px;}
.x1d{left:727.154850px;}
.x16{left:739.454400px;}
.x17{left:754.633650px;}
.x1a{left:760.478700px;}
.x1b{left:764.705250px;}
.x3f{left:819.446100px;}
.x40{left:824.881950px;}
@media print{
.v5{vertical-align:-17.760000pt;}
.v4{vertical-align:-16.016000pt;}
.v6{vertical-align:-13.340267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760533pt;}
.ls4a{letter-spacing:-3.925333pt;}
.ls22{letter-spacing:-3.882667pt;}
.ls4f{letter-spacing:-2.816000pt;}
.ls23{letter-spacing:-2.602667pt;}
.ls4b{letter-spacing:-2.346667pt;}
.ls16{letter-spacing:-2.133333pt;}
.lse{letter-spacing:-1.333333pt;}
.ls49{letter-spacing:-1.322667pt;}
.ls4e{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.173333pt;}
.lsa{letter-spacing:-1.013333pt;}
.ls19{letter-spacing:-0.981333pt;}
.ls27{letter-spacing:-0.920000pt;}
.ls18{letter-spacing:-0.906667pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls4d{letter-spacing:-0.853333pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls4c{letter-spacing:-0.554667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.440000pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls47{letter-spacing:-0.341333pt;}
.ls24{letter-spacing:-0.280000pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000133pt;}
.ls0{letter-spacing:0.000213pt;}
.ls14{letter-spacing:0.000250pt;}
.ls2{letter-spacing:0.000277pt;}
.ls12{letter-spacing:0.004267pt;}
.ls20{letter-spacing:0.120000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.341333pt;}
.ls25{letter-spacing:0.360000pt;}
.ls30{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.693333pt;}
.lsb{letter-spacing:0.800000pt;}
.ls3c{letter-spacing:0.853333pt;}
.lsf{letter-spacing:1.493333pt;}
.ls44{letter-spacing:1.920000pt;}
.ls43{letter-spacing:1.962667pt;}
.ls2b{letter-spacing:2.346667pt;}
.ls2a{letter-spacing:2.517333pt;}
.ls29{letter-spacing:2.645333pt;}
.ls2d{letter-spacing:3.498667pt;}
.ls36{letter-spacing:3.541333pt;}
.ls34{letter-spacing:3.584000pt;}
.ls35{letter-spacing:3.588267pt;}
.ls3d{letter-spacing:4.608000pt;}
.ls41{letter-spacing:5.205333pt;}
.ls42{letter-spacing:5.209600pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls2f{letter-spacing:5.764267pt;}
.ls1e{letter-spacing:5.888000pt;}
.ls2c{letter-spacing:6.272000pt;}
.ls31{letter-spacing:6.314667pt;}
.ls32{letter-spacing:6.485333pt;}
.ls33{letter-spacing:6.489600pt;}
.ls39{letter-spacing:6.528000pt;}
.ls38{letter-spacing:6.570667pt;}
.ls37{letter-spacing:7.125333pt;}
.ls46{letter-spacing:8.661333pt;}
.ls45{letter-spacing:9.600000pt;}
.ls3e{letter-spacing:9.898667pt;}
.ls28{letter-spacing:10.410667pt;}
.ls3a{letter-spacing:10.922667pt;}
.ls1c{letter-spacing:15.445333pt;}
.ls1f{letter-spacing:17.194667pt;}
.ls3b{letter-spacing:19.797333pt;}
.ls40{letter-spacing:24.362667pt;}
.ls3f{letter-spacing:24.366933pt;}
.ls21{letter-spacing:157.000000pt;}
.ws3d{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.120000pt;}
.ws3c{word-spacing:-13.013333pt;}
.ws62{word-spacing:-12.906667pt;}
.ws3f{word-spacing:-12.800000pt;}
.ws40{word-spacing:-12.533333pt;}
.ws76{word-spacing:-12.288000pt;}
.wsb{word-spacing:-12.106667pt;}
.ws3e{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.957333pt;}
.ws73{word-spacing:-11.840000pt;}
.ws6{word-spacing:-11.808000pt;}
.ws8e{word-spacing:-11.733333pt;}
.wsa{word-spacing:-11.680000pt;}
.ws75{word-spacing:-11.562667pt;}
.ws9{word-spacing:-11.520000pt;}
.ws7{word-spacing:-11.328000pt;}
.ws8d{word-spacing:-11.200000pt;}
.ws8c{word-spacing:-11.040000pt;}
.wsed{word-spacing:-10.880000pt;}
.wsee{word-spacing:-10.581333pt;}
.ws11{word-spacing:-10.496000pt;}
.wsb2{word-spacing:-10.453333pt;}
.wsaf{word-spacing:-10.282667pt;}
.ws3{word-spacing:-10.240000pt;}
.wsf6{word-spacing:-10.154667pt;}
.ws78{word-spacing:-10.069333pt;}
.wsb0{word-spacing:-9.898667pt;}
.wsd5{word-spacing:-9.728000pt;}
.wsf2{word-spacing:-9.685333pt;}
.wsda{word-spacing:-9.514667pt;}
.wsf3{word-spacing:-9.386667pt;}
.ws8f{word-spacing:-9.301333pt;}
.wsb8{word-spacing:-9.200000pt;}
.wsb9{word-spacing:-9.080000pt;}
.wsf4{word-spacing:-8.960000pt;}
.wsf0{word-spacing:-8.917333pt;}
.wsb4{word-spacing:-8.800000pt;}
.wsb7{word-spacing:-8.640000pt;}
.ws77{word-spacing:-8.601600pt;}
.ws74{word-spacing:-8.093867pt;}
.wsf1{word-spacing:-7.893333pt;}
.ws1{word-spacing:-7.648960pt;}
.wsb1{word-spacing:-7.637333pt;}
.wsf5{word-spacing:-7.424000pt;}
.ws8{word-spacing:-7.058187pt;}
.ws5{word-spacing:-6.884064pt;}
.wsae{word-spacing:-6.357333pt;}
.ws101{word-spacing:-6.314667pt;}
.ws2{word-spacing:-6.119168pt;}
.ws81{word-spacing:-5.752267pt;}
.ws19{word-spacing:-5.708736pt;}
.ws44{word-spacing:-5.440000pt;}
.wsba{word-spacing:-5.293640pt;}
.wsec{word-spacing:-4.314200pt;}
.ws83{word-spacing:-3.200000pt;}
.ws105{word-spacing:-2.773333pt;}
.ws4a{word-spacing:-2.720000pt;}
.ws26{word-spacing:-2.453333pt;}
.ws2b{word-spacing:-2.400000pt;}
.wsc3{word-spacing:-2.346667pt;}
.ws79{word-spacing:-2.293333pt;}
.ws61{word-spacing:-2.186667pt;}
.ws70{word-spacing:-2.133333pt;}
.ws1c{word-spacing:-2.112000pt;}
.ws2f{word-spacing:-2.080000pt;}
.ws9b{word-spacing:-2.026667pt;}
.ws106{word-spacing:-2.005333pt;}
.ws97{word-spacing:-1.973333pt;}
.ws12{word-spacing:-1.920000pt;}
.ws5c{word-spacing:-1.866667pt;}
.ws20{word-spacing:-1.824000pt;}
.ws125{word-spacing:-1.792000pt;}
.wsc4{word-spacing:-1.653333pt;}
.ws3a{word-spacing:-1.493333pt;}
.ws4f{word-spacing:-1.440000pt;}
.ws1e{word-spacing:-1.392000pt;}
.ws7a{word-spacing:-1.386667pt;}
.wsef{word-spacing:-1.344000pt;}
.ws7e{word-spacing:-1.333333pt;}
.ws104{word-spacing:-1.322667pt;}
.ws1f{word-spacing:-1.296000pt;}
.ws45{word-spacing:-1.280000pt;}
.ws8b{word-spacing:-1.237333pt;}
.ws8a{word-spacing:-1.194667pt;}
.ws55{word-spacing:-1.173333pt;}
.ws49{word-spacing:-1.120000pt;}
.ws98{word-spacing:-1.066667pt;}
.wsa6{word-spacing:-1.013333pt;}
.ws117{word-spacing:-0.981333pt;}
.wsdd{word-spacing:-0.938667pt;}
.ws14{word-spacing:-0.912000pt;}
.ws80{word-spacing:-0.906667pt;}
.wsdf{word-spacing:-0.896000pt;}
.ws54{word-spacing:-0.853333pt;}
.ws64{word-spacing:-0.800000pt;}
.ws37{word-spacing:-0.746667pt;}
.wsd{word-spacing:-0.693333pt;}
.wsf8{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.624000pt;}
.wsdb{word-spacing:-0.597333pt;}
.ws63{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.576000pt;}
.ws109{word-spacing:-0.554667pt;}
.ws18{word-spacing:-0.432000pt;}
.ws2c{word-spacing:-0.426667pt;}
.wseb{word-spacing:-0.360000pt;}
.ws11a{word-spacing:-0.341333pt;}
.ws4d{word-spacing:-0.320000pt;}
.ws116{word-spacing:-0.298667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws126{word-spacing:-0.170667pt;}
.ws67{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.106667pt;}
.ws108{word-spacing:-0.085333pt;}
.wsc{word-spacing:0.000000pt;}
.ws65{word-spacing:0.053333pt;}
.ws4e{word-spacing:0.106667pt;}
.ws138{word-spacing:0.170667pt;}
.ws39{word-spacing:0.213333pt;}
.ws9c{word-spacing:0.266667pt;}
.wsf{word-spacing:0.298667pt;}
.wsf7{word-spacing:0.341333pt;}
.wsa1{word-spacing:0.373333pt;}
.ws35{word-spacing:0.480000pt;}
.ws10d{word-spacing:0.512000pt;}
.ws82{word-spacing:0.533333pt;}
.ws56{word-spacing:0.586667pt;}
.ws11c{word-spacing:0.597333pt;}
.ws11b{word-spacing:0.640000pt;}
.ws31{word-spacing:0.693333pt;}
.wscc{word-spacing:0.746667pt;}
.wsd6{word-spacing:0.768000pt;}
.ws129{word-spacing:0.810667pt;}
.wsa3{word-spacing:0.853333pt;}
.wse{word-spacing:0.896000pt;}
.ws9a{word-spacing:0.906667pt;}
.wsac{word-spacing:0.981333pt;}
.ws3b{word-spacing:1.013333pt;}
.ws29{word-spacing:1.066667pt;}
.wsea{word-spacing:1.109333pt;}
.wse9{word-spacing:1.152000pt;}
.ws2d{word-spacing:1.333333pt;}
.ws25{word-spacing:1.386667pt;}
.ws13{word-spacing:1.392000pt;}
.ws10{word-spacing:1.408000pt;}
.ws87{word-spacing:1.440000pt;}
.ws16{word-spacing:1.488000pt;}
.wsd4{word-spacing:1.493333pt;}
.wsa4{word-spacing:1.546667pt;}
.ws10c{word-spacing:1.578667pt;}
.ws10b{word-spacing:1.621333pt;}
.wsa8{word-spacing:1.653333pt;}
.ws122{word-spacing:1.706667pt;}
.wsa9{word-spacing:1.760000pt;}
.ws7b{word-spacing:1.866667pt;}
.ws42{word-spacing:1.920000pt;}
.wsad{word-spacing:2.005333pt;}
.ws9d{word-spacing:2.026667pt;}
.ws135{word-spacing:2.090667pt;}
.ws96{word-spacing:2.133333pt;}
.ws1d{word-spacing:2.160000pt;}
.ws33{word-spacing:2.186667pt;}
.ws134{word-spacing:2.218667pt;}
.wsc6{word-spacing:2.293333pt;}
.ws86{word-spacing:2.346667pt;}
.ws34{word-spacing:2.400000pt;}
.ws100{word-spacing:2.517333pt;}
.ws43{word-spacing:2.560000pt;}
.ws5b{word-spacing:2.613333pt;}
.wsfd{word-spacing:2.645333pt;}
.ws2e{word-spacing:2.720000pt;}
.ws28{word-spacing:2.773333pt;}
.ws17{word-spacing:2.784000pt;}
.ws47{word-spacing:2.986667pt;}
.wsc5{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.120000pt;}
.ws6f{word-spacing:3.146667pt;}
.ws1a{word-spacing:3.264000pt;}
.wsd3{word-spacing:3.370667pt;}
.ws58{word-spacing:3.413333pt;}
.ws48{word-spacing:3.466667pt;}
.ws11d{word-spacing:3.541333pt;}
.ws46{word-spacing:3.573333pt;}
.ws115{word-spacing:3.584000pt;}
.ws32{word-spacing:3.626667pt;}
.wsa5{word-spacing:3.733333pt;}
.wsa0{word-spacing:3.786667pt;}
.ws27{word-spacing:3.946667pt;}
.ws23{word-spacing:4.000000pt;}
.ws85{word-spacing:4.106667pt;}
.wscf{word-spacing:4.160000pt;}
.ws30{word-spacing:4.213333pt;}
.wscd{word-spacing:4.373333pt;}
.ws15{word-spacing:4.416000pt;}
.ws12a{word-spacing:4.480000pt;}
.ws4b{word-spacing:4.533333pt;}
.ws12b{word-spacing:4.608000pt;}
.wsa7{word-spacing:4.693333pt;}
.wsd9{word-spacing:4.736000pt;}
.wsc9{word-spacing:4.853333pt;}
.wse5{word-spacing:4.949333pt;}
.wsd2{word-spacing:4.992000pt;}
.ws6e{word-spacing:5.013333pt;}
.ws71{word-spacing:5.120000pt;}
.wse6{word-spacing:5.162667pt;}
.ws6d{word-spacing:5.173333pt;}
.ws130{word-spacing:5.205333pt;}
.ws72{word-spacing:5.333333pt;}
.wsc8{word-spacing:5.440000pt;}
.ws9f{word-spacing:5.600000pt;}
.ws5e{word-spacing:5.706667pt;}
.ws10a{word-spacing:5.760000pt;}
.wsde{word-spacing:5.888000pt;}
.wsfe{word-spacing:5.930667pt;}
.ws57{word-spacing:5.973333pt;}
.ws124{word-spacing:6.016000pt;}
.wsdc{word-spacing:6.144000pt;}
.wsff{word-spacing:6.186667pt;}
.wse0{word-spacing:6.229333pt;}
.ws107{word-spacing:6.272000pt;}
.ws9e{word-spacing:6.293333pt;}
.ws111{word-spacing:6.314667pt;}
.ws99{word-spacing:6.400000pt;}
.ws112{word-spacing:6.528000pt;}
.ws11f{word-spacing:6.570667pt;}
.ws69{word-spacing:6.613333pt;}
.ws92{word-spacing:6.720000pt;}
.ws90{word-spacing:6.773333pt;}
.ws91{word-spacing:6.826667pt;}
.ws7d{word-spacing:6.880000pt;}
.ws6b{word-spacing:6.986667pt;}
.ws53{word-spacing:7.093333pt;}
.ws11e{word-spacing:7.168000pt;}
.ws94{word-spacing:7.200000pt;}
.ws52{word-spacing:7.253333pt;}
.ws137{word-spacing:7.296000pt;}
.ws93{word-spacing:7.306667pt;}
.ws2a{word-spacing:7.360000pt;}
.ws102{word-spacing:7.466667pt;}
.ws136{word-spacing:7.594667pt;}
.wsaa{word-spacing:7.850667pt;}
.ws51{word-spacing:7.893333pt;}
.ws6c{word-spacing:7.946667pt;}
.wscb{word-spacing:8.000000pt;}
.wsa2{word-spacing:8.053333pt;}
.ws38{word-spacing:8.106667pt;}
.wsab{word-spacing:8.192000pt;}
.ws121{word-spacing:8.362667pt;}
.ws50{word-spacing:8.533333pt;}
.ws66{word-spacing:8.693333pt;}
.ws120{word-spacing:8.746667pt;}
.ws7f{word-spacing:8.800000pt;}
.ws110{word-spacing:8.832000pt;}
.wse8{word-spacing:8.874667pt;}
.ws10f{word-spacing:9.173333pt;}
.wse7{word-spacing:9.216000pt;}
.ws24{word-spacing:9.333333pt;}
.ws133{word-spacing:9.600000pt;}
.ws12e{word-spacing:9.898667pt;}
.ws10e{word-spacing:10.112000pt;}
.ws41{word-spacing:10.240000pt;}
.ws119{word-spacing:10.410667pt;}
.wse2{word-spacing:10.581333pt;}
.ws5d{word-spacing:10.613333pt;}
.ws6a{word-spacing:10.720000pt;}
.ws118{word-spacing:10.837333pt;}
.ws123{word-spacing:10.922667pt;}
.ws60{word-spacing:10.933333pt;}
.ws84{word-spacing:11.040000pt;}
.ws7c{word-spacing:11.093333pt;}
.ws128{word-spacing:11.520000pt;}
.ws132{word-spacing:11.733333pt;}
.ws131{word-spacing:12.202667pt;}
.ws95{word-spacing:12.960000pt;}
.wsd1{word-spacing:13.440000pt;}
.wsd8{word-spacing:13.824000pt;}
.ws12d{word-spacing:13.909333pt;}
.wsd0{word-spacing:14.293333pt;}
.ws12c{word-spacing:14.506667pt;}
.ws103{word-spacing:14.720000pt;}
.ws114{word-spacing:14.933333pt;}
.ws4c{word-spacing:15.093333pt;}
.ws113{word-spacing:15.573333pt;}
.wsfa{word-spacing:15.616000pt;}
.ws88{word-spacing:15.680000pt;}
.ws89{word-spacing:16.000000pt;}
.wsd7{word-spacing:16.213333pt;}
.wsf9{word-spacing:16.298667pt;}
.wse1{word-spacing:16.981333pt;}
.ws68{word-spacing:17.013333pt;}
.wsfc{word-spacing:19.626667pt;}
.ws127{word-spacing:19.797333pt;}
.wse4{word-spacing:20.010667pt;}
.wsca{word-spacing:20.106667pt;}
.wsfb{word-spacing:20.480000pt;}
.wse3{word-spacing:20.864000pt;}
.ws12f{word-spacing:24.362667pt;}
.ws5f{word-spacing:25.386667pt;}
.wsce{word-spacing:25.920000pt;}
.ws59{word-spacing:26.880000pt;}
.wsc7{word-spacing:30.560000pt;}
.wsc0{word-spacing:114.050573pt;}
.wsbf{word-spacing:144.837240pt;}
.wsb5{word-spacing:169.120000pt;}
.wsb6{word-spacing:169.400000pt;}
.wsc2{word-spacing:177.810040pt;}
.wsc1{word-spacing:178.476707pt;}
.wsbe{word-spacing:248.800000pt;}
.wsbd{word-spacing:252.440000pt;}
.wsbb{word-spacing:252.960000pt;}
.wsbc{word-spacing:253.640000pt;}
.wsb3{word-spacing:264.000000pt;}
._1b{margin-left:-44.458667pt;}
._1d{margin-left:-43.104000pt;}
._1f{margin-left:-32.213333pt;}
._f{margin-left:-28.080000pt;}
._10{margin-left:-26.361600pt;}
._1a{margin-left:-22.629502pt;}
._13{margin-left:-21.402667pt;}
._17{margin-left:-20.320000pt;}
._19{margin-left:-19.314051pt;}
._11{margin-left:-17.984000pt;}
._b{margin-left:-16.336000pt;}
._8{margin-left:-14.597333pt;}
._5{margin-left:-13.200000pt;}
._18{margin-left:-11.904000pt;}
._22{margin-left:-10.979787pt;}
._3{margin-left:-10.048000pt;}
._12{margin-left:-8.656000pt;}
._e{margin-left:-7.739733pt;}
._2{margin-left:-6.528000pt;}
._d{margin-left:-5.302400pt;}
._a{margin-left:-4.384000pt;}
._1{margin-left:-2.889600pt;}
._0{margin-left:-1.728000pt;}
._7{width:1.146667pt;}
._9{width:2.128000pt;}
._38{width:3.059200pt;}
._c{width:4.234667pt;}
._15{width:6.101333pt;}
._14{width:7.413333pt;}
._1c{width:8.508717pt;}
._3a{width:9.429333pt;}
._4{width:10.935467pt;}
._6{width:12.047312pt;}
._21{width:13.461333pt;}
._16{width:15.445333pt;}
._24{width:16.856533pt;}
._25{width:17.882667pt;}
._20{width:19.360000pt;}
._39{width:20.317867pt;}
._3b{width:24.550400pt;}
._23{width:30.384000pt;}
._1e{width:31.600000pt;}
._3c{width:33.344000pt;}
._33{width:40.000000pt;}
._2a{width:121.480000pt;}
._2c{width:123.240000pt;}
._27{width:128.208000pt;}
._2b{width:145.928000pt;}
._2d{width:172.328000pt;}
._28{width:192.608000pt;}
._31{width:199.168000pt;}
._2e{width:202.600000pt;}
._30{width:258.400000pt;}
._32{width:260.840000pt;}
._2f{width:262.720000pt;}
._26{width:271.160000pt;}
._29{width:278.264000pt;}
._35{width:332.128000pt;}
._37{width:337.400000pt;}
._34{width:357.341333pt;}
._36{width:375.822933pt;}
.fsd{font-size:23.320000pt;}
.fs5{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fsa{font-size:29.866667pt;}
.fs3{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fsc{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fsb{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:2.526533pt;}
.y127{bottom:2.527333pt;}
.y1{bottom:23.181067pt;}
.y12{bottom:38.637200pt;}
.yc3{bottom:66.357200pt;}
.y15b{bottom:68.046000pt;}
.y69{bottom:68.050800pt;}
.y91{bottom:68.055600pt;}
.yf4{bottom:68.239867pt;}
.yab{bottom:68.252800pt;}
.y10a{bottom:68.386533pt;}
.y195{bottom:68.509600pt;}
.y11{bottom:71.685600pt;}
.y194{bottom:80.669600pt;}
.y15a{bottom:83.379333pt;}
.y68{bottom:83.384133pt;}
.y90{bottom:83.388933pt;}
.yf3{bottom:83.586533pt;}
.y10{bottom:83.685600pt;}
.yaa{bottom:83.906133pt;}
.y109{bottom:84.493333pt;}
.y216{bottom:86.031467pt;}
.y122{bottom:87.120533pt;}
.y193{bottom:92.829600pt;}
.yf{bottom:95.685600pt;}
.y159{bottom:98.712667pt;}
.y67{bottom:98.717467pt;}
.y8f{bottom:98.722267pt;}
.yf2{bottom:98.933200pt;}
.ya8{bottom:99.559467pt;}
.y108{bottom:100.599867pt;}
.ya9{bottom:103.999467pt;}
.y192{bottom:104.989600pt;}
.ye{bottom:107.685600pt;}
.y215{bottom:109.498133pt;}
.y158{bottom:114.046000pt;}
.y66{bottom:114.050800pt;}
.y8e{bottom:114.055600pt;}
.yf1{bottom:114.279867pt;}
.ya7{bottom:115.212800pt;}
.y107{bottom:116.706533pt;}
.yd{bottom:119.685600pt;}
.y191{bottom:121.149600pt;}
.y214{bottom:122.831467pt;}
.y157{bottom:129.379333pt;}
.y78{bottom:129.384133pt;}
.y8d{bottom:129.388933pt;}
.yf0{bottom:129.626533pt;}
.ya6{bottom:130.866133pt;}
.yc{bottom:131.685600pt;}
.y105{bottom:132.813200pt;}
.y190{bottom:133.309600pt;}
.y213{bottom:136.164800pt;}
.y65{bottom:136.943067pt;}
.y106{bottom:137.253200pt;}
.yb{bottom:143.685600pt;}
.y156{bottom:144.712667pt;}
.y77{bottom:144.717467pt;}
.yef{bottom:144.973333pt;}
.y18f{bottom:145.469600pt;}
.ya5{bottom:146.519467pt;}
.y104{bottom:148.919867pt;}
.y212{bottom:149.498133pt;}
.y64{bottom:152.276400pt;}
.y8c{bottom:152.281467pt;}
.ya{bottom:155.685600pt;}
.y155{bottom:160.046000pt;}
.y76{bottom:160.050800pt;}
.yee{bottom:160.320000pt;}
.y18e{bottom:161.629600pt;}
.ya4{bottom:162.172800pt;}
.y211{bottom:162.831467pt;}
.y103{bottom:165.026667pt;}
.y63{bottom:167.609733pt;}
.y8b{bottom:167.614800pt;}
.y9{bottom:167.685600pt;}
.y18d{bottom:173.789600pt;}
.y154{bottom:175.379333pt;}
.y75{bottom:175.384133pt;}
.yed{bottom:175.666667pt;}
.y210{bottom:176.164800pt;}
.y8{bottom:179.685600pt;}
.y102{bottom:181.133200pt;}
.y62{bottom:182.943067pt;}
.y8a{bottom:182.948133pt;}
.ya3{bottom:185.385200pt;}
.y18c{bottom:185.949600pt;}
.y74{bottom:190.717467pt;}
.yec{bottom:191.013333pt;}
.y20f{bottom:193.498133pt;}
.y101{bottom:197.239867pt;}
.y153{bottom:198.271733pt;}
.y61{bottom:198.276400pt;}
.y89{bottom:198.281467pt;}
.ya2{bottom:201.038533pt;}
.y18b{bottom:202.109600pt;}
.y73{bottom:206.050800pt;}
.yeb{bottom:206.360000pt;}
.yff{bottom:213.346533pt;}
.y152{bottom:213.605067pt;}
.y60{bottom:213.609733pt;}
.y87{bottom:213.614800pt;}
.y18a{bottom:214.269600pt;}
.ya1{bottom:216.691867pt;}
.y100{bottom:217.786667pt;}
.y88{bottom:218.054800pt;}
.y72{bottom:221.384133pt;}
.yea{bottom:221.706533pt;}
.y151{bottom:228.938400pt;}
.y5f{bottom:228.943067pt;}
.y86{bottom:228.948133pt;}
.y40{bottom:229.184400pt;}
.y31{bottom:229.276800pt;}
.yfe{bottom:229.453200pt;}
.y189{bottom:230.429600pt;}
.ya0{bottom:232.345200pt;}
.ye9{bottom:237.053200pt;}
.y188{bottom:242.589600pt;}
.y5e{bottom:244.276400pt;}
.y85{bottom:244.281467pt;}
.y3f{bottom:244.931067pt;}
.y30{bottom:245.556800pt;}
.yfd{bottom:245.559867pt;}
.y9f{bottom:247.998667pt;}
.y150{bottom:248.046000pt;}
.ye8{bottom:252.399867pt;}
.y187{bottom:254.749600pt;}
.y9e{bottom:259.212000pt;}
.y5d{bottom:259.609733pt;}
.y84{bottom:259.614800pt;}
.y3e{bottom:260.676800pt;}
.yfc{bottom:261.666533pt;}
.y2f{bottom:261.836800pt;}
.y9d{bottom:263.652000pt;}
.y14f{bottom:266.718000pt;}
.ye6{bottom:267.746533pt;}
.y186{bottom:270.909600pt;}
.ye7{bottom:272.186533pt;}
.y5c{bottom:274.943067pt;}
.y83{bottom:274.948133pt;}
.yfb{bottom:277.773200pt;}
.y2e{bottom:278.116800pt;}
.y9c{bottom:279.305200pt;}
.y185{bottom:283.069600pt;}
.ye5{bottom:283.093200pt;}
.y3d{bottom:283.983467pt;}
.y5b{bottom:290.276400pt;}
.y82{bottom:290.281467pt;}
.yfa{bottom:293.879867pt;}
.y2d{bottom:294.396800pt;}
.y9b{bottom:294.958533pt;}
.y184{bottom:295.229600pt;}
.ye4{bottom:298.439867pt;}
.y3c{bottom:299.730133pt;}
.y5a{bottom:305.609733pt;}
.y81{bottom:305.614800pt;}
.y14e{bottom:306.943733pt;}
.y183{bottom:307.389600pt;}
.yf9{bottom:309.986533pt;}
.y9a{bottom:310.611867pt;}
.y2c{bottom:310.676800pt;}
.ye2{bottom:313.786533pt;}
.y3a{bottom:315.476800pt;}
.ye3{bottom:318.226533pt;}
.y182{bottom:319.549600pt;}
.y3b{bottom:319.916800pt;}
.y59{bottom:320.943067pt;}
.y80{bottom:320.948133pt;}
.y14c{bottom:322.277067pt;}
.yf8{bottom:326.093200pt;}
.y99{bottom:326.265200pt;}
.y14d{bottom:326.717067pt;}
.y2b{bottom:326.956800pt;}
.ye1{bottom:329.133200pt;}
.y39{bottom:331.223467pt;}
.y20e{bottom:332.440933pt;}
.y1e0{bottom:332.974267pt;}
.y58{bottom:336.276400pt;}
.y7f{bottom:336.281467pt;}
.y98{bottom:341.918533pt;}
.yf7{bottom:342.199867pt;}
.y2a{bottom:343.236800pt;}
.y181{bottom:344.381600pt;}
.y20d{bottom:344.440933pt;}
.ye0{bottom:344.479867pt;}
.y1df{bottom:345.507600pt;}
.y38{bottom:346.970133pt;}
.y57{bottom:351.609733pt;}
.y7e{bottom:351.614800pt;}
.y97{bottom:353.131867pt;}
.y20c{bottom:356.440933pt;}
.y180{bottom:356.541600pt;}
.y96{bottom:357.571867pt;}
.y1de{bottom:358.040933pt;}
.yf6{bottom:358.306533pt;}
.y29{bottom:359.516800pt;}
.ydf{bottom:359.826533pt;}
.y37{bottom:362.716800pt;}
.y56{bottom:366.943067pt;}
.y7d{bottom:366.947067pt;}
.y20b{bottom:368.440933pt;}
.y1b3{bottom:369.209867pt;}
.y95{bottom:373.225200pt;}
.yf5{bottom:374.413200pt;}
.y1dd{bottom:374.574267pt;}
.yde{bottom:375.173200pt;}
.y28{bottom:375.796800pt;}
.y17f{bottom:377.362933pt;}
.y36{bottom:378.463467pt;}
.y20a{bottom:380.440933pt;}
.y55{bottom:382.276400pt;}
.y94{bottom:384.438533pt;}
.y1dc{bottom:387.107600pt;}
.y93{bottom:388.878533pt;}
.y17e{bottom:389.522933pt;}
.y7c{bottom:389.840400pt;}
.ydd{bottom:390.519867pt;}
.y1b2{bottom:391.146400pt;}
.y27{bottom:392.076800pt;}
.y35{bottom:394.210133pt;}
.y209{bottom:396.440933pt;}
.y54{bottom:397.609733pt;}
.y1db{bottom:399.640933pt;}
.y17d{bottom:401.682933pt;}
.y92{bottom:404.531867pt;}
.y7b{bottom:405.173733pt;}
.y26{bottom:408.356800pt;}
.y208{bottom:408.440933pt;}
.y34{bottom:409.956800pt;}
.y53{bottom:412.943067pt;}
.y1b1{bottom:413.082933pt;}
.y17c{bottom:413.842933pt;}
.y1da{bottom:416.174267pt;}
.y207{bottom:420.440933pt;}
.y25{bottom:424.636800pt;}
.y33{bottom:425.703467pt;}
.y52{bottom:428.276400pt;}
.y1d9{bottom:428.707600pt;}
.y206{bottom:432.440933pt;}
.y1b0{bottom:434.988400pt;}
.y17b{bottom:436.669600pt;}
.y24{bottom:440.916800pt;}
.y1d8{bottom:441.240933pt;}
.y32{bottom:441.450133pt;}
.y51{bottom:443.609733pt;}
.y205{bottom:448.440933pt;}
.y17a{bottom:448.829600pt;}
.y14b{bottom:449.933067pt;}
.ydc{bottom:452.133733pt;}
.y1af{bottom:456.928400pt;}
.y23{bottom:457.196800pt;}
.y1d7{bottom:457.774267pt;}
.y71{bottom:458.943067pt;}
.y204{bottom:460.440933pt;}
.y179{bottom:460.989600pt;}
.y14a{bottom:463.266400pt;}
.ydb{bottom:465.467067pt;}
.y50{bottom:466.502133pt;}
.y1d6{bottom:470.307600pt;}
.y203{bottom:472.440933pt;}
.y178{bottom:473.149600pt;}
.y70{bottom:474.276400pt;}
.y149{bottom:476.599733pt;}
.yda{bottom:478.800400pt;}
.y1ae{bottom:478.868400pt;}
.y4f{bottom:481.835467pt;}
.y1d5{bottom:486.840933pt;}
.y202{bottom:488.440933pt;}
.y6f{bottom:489.609733pt;}
.y148{bottom:489.933067pt;}
.yd9{bottom:492.133733pt;}
.y4e{bottom:497.168800pt;}
.y1d4{bottom:499.374267pt;}
.y201{bottom:500.440933pt;}
.y1ad{bottom:500.808400pt;}
.y6e{bottom:504.943067pt;}
.y1d3{bottom:511.907600pt;}
.y4d{bottom:512.502133pt;}
.y200{bottom:516.440933pt;}
.y177{bottom:516.868667pt;}
.y22{bottom:517.244133pt;}
.y6d{bottom:520.276400pt;}
.y1ac{bottom:522.748400pt;}
.y121{bottom:523.313333pt;}
.y1d2{bottom:524.440933pt;}
.yc2{bottom:525.513333pt;}
.y4c{bottom:527.835467pt;}
.y1ff{bottom:528.440933pt;}
.y128{bottom:529.840667pt;}
.yc8{bottom:532.039867pt;}
.y176{bottom:532.362000pt;}
.y21{bottom:533.244133pt;}
.y6c{bottom:535.609733pt;}
.y1d1{bottom:540.974267pt;}
.y126{bottom:543.110000pt;}
.y4b{bottom:543.168800pt;}
.yc6{bottom:543.781200pt;}
.y1fe{bottom:544.440933pt;}
.y1ab{bottom:544.688400pt;}
.y175{bottom:547.855333pt;}
.y20{bottom:549.244133pt;}
.y6b{bottom:550.943067pt;}
.y1d0{bottom:553.507600pt;}
.y1fd{bottom:556.440933pt;}
.y4a{bottom:558.502133pt;}
.y12c{bottom:558.859200pt;}
.y125{bottom:559.872533pt;}
.yc5{bottom:560.375867pt;}
.y174{bottom:563.348667pt;}
.y1f{bottom:565.244133pt;}
.y1cf{bottom:566.040933pt;}
.y6a{bottom:566.276400pt;}
.y1aa{bottom:566.628400pt;}
.y1fc{bottom:568.440933pt;}
.y143{bottom:571.893867pt;}
.y49{bottom:573.835467pt;}
.y124{bottom:574.940533pt;}
.yc4{bottom:575.447867pt;}
.y173{bottom:578.842000pt;}
.yd4{bottom:580.169200pt;}
.y1e{bottom:581.244133pt;}
.y1ce{bottom:582.574267pt;}
.y1fb{bottom:584.440933pt;}
.y1a9{bottom:588.568400pt;}
.y48{bottom:589.168800pt;}
.y123{bottom:590.687333pt;}
.y12d{bottom:590.859200pt;}
.yc1{bottom:591.871867pt;}
.y172{bottom:594.335333pt;}
.y1cd{bottom:595.107600pt;}
.y1fa{bottom:596.440933pt;}
.y1d{bottom:597.244133pt;}
.y138{bottom:600.181867pt;}
.y144{bottom:603.552533pt;}
.y47{bottom:604.502133pt;}
.y120{bottom:606.433867pt;}
.yc0{bottom:607.786533pt;}
.ycc{bottom:608.126533pt;}
.y1f9{bottom:608.440933pt;}
.y171{bottom:609.828667pt;}
.y1a8{bottom:610.508400pt;}
.y1cc{bottom:611.640933pt;}
.y1c{bottom:613.248133pt;}
.y13b{bottom:614.059200pt;}
.y46{bottom:619.835467pt;}
.ycd{bottom:620.318533pt;}
.y11f{bottom:622.179333pt;}
.ybf{bottom:622.513200pt;}
.y12b{bottom:622.517867pt;}
.y131{bottom:622.859200pt;}
.y1cb{bottom:624.174267pt;}
.y1f8{bottom:624.440933pt;}
.y170{bottom:625.322000pt;}
.y1b{bottom:629.244133pt;}
.yd8{bottom:629.632933pt;}
.y1a7{bottom:632.438400pt;}
.y45{bottom:635.168800pt;}
.y13a{bottom:635.904533pt;}
.y12f{bottom:636.235200pt;}
.y1f7{bottom:636.440933pt;}
.y1ca{bottom:636.707600pt;}
.ybe{bottom:637.583867pt;}
.y11e{bottom:638.264667pt;}
.y16f{bottom:640.815333pt;}
.y1a6{bottom:645.108400pt;}
.y1a{bottom:645.244133pt;}
.y1f6{bottom:648.440933pt;}
.y44{bottom:650.502133pt;}
.y130{bottom:650.795200pt;}
.y1c9{bottom:653.240933pt;}
.y11d{bottom:654.179333pt;}
.ybd{bottom:655.025200pt;}
.y16e{bottom:656.308667pt;}
.y19{bottom:661.244133pt;}
.y1f5{bottom:664.440933pt;}
.y1c8{bottom:665.774267pt;}
.y43{bottom:665.835467pt;}
.y145{bottom:666.197867pt;}
.y1a5{bottom:667.048400pt;}
.ybc{bottom:669.419867pt;}
.y11c{bottom:669.924667pt;}
.y16d{bottom:671.802000pt;}
.y147{bottom:672.299200pt;}
.y13c{bottom:674.667200pt;}
.y1f4{bottom:676.440933pt;}
.y18{bottom:677.248133pt;}
.y42{bottom:681.168800pt;}
.y1c7{bottom:682.307600pt;}
.y129{bottom:682.624533pt;}
.y11b{bottom:686.009867pt;}
.ybb{bottom:686.342667pt;}
.y1f3{bottom:688.440933pt;}
.y1a4{bottom:688.993467pt;}
.ycf{bottom:691.422533pt;}
.y17{bottom:693.244133pt;}
.y1c6{bottom:694.840933pt;}
.y16c{bottom:694.854400pt;}
.yba{bottom:701.581200pt;}
.y11a{bottom:701.586000pt;}
.y1f2{bottom:704.440933pt;}
.y16{bottom:709.248133pt;}
.y16b{bottom:710.347733pt;}
.y13d{bottom:710.901867pt;}
.y1a3{bottom:710.933467pt;}
.y1c5{bottom:711.374267pt;}
.y1f1{bottom:716.440933pt;}
.y119{bottom:717.502000pt;}
.yb9{bottom:718.175867pt;}
.yd3{bottom:719.561200pt;}
.y1c4{bottom:723.907600pt;}
.y15{bottom:725.244133pt;}
.y16a{bottom:725.841067pt;}
.y1f0{bottom:728.440933pt;}
.y7a{bottom:729.088667pt;}
.y146{bottom:731.424533pt;}
.yd2{bottom:731.923867pt;}
.yc9{bottom:731.934533pt;}
.y1a2{bottom:732.863467pt;}
.yb8{bottom:733.123867pt;}
.y118{bottom:733.290000pt;}
.y134{bottom:733.643200pt;}
.y135{bottom:739.733867pt;}
.y1c3{bottom:740.440933pt;}
.y14{bottom:741.240133pt;}
.y169{bottom:741.334400pt;}
.y79{bottom:742.422000pt;}
.y1ef{bottom:744.440933pt;}
.y1a1{bottom:745.533467pt;}
.y13e{bottom:746.325867pt;}
.y117{bottom:749.375333pt;}
.yb7{bottom:749.883867pt;}
.yd1{bottom:751.059867pt;}
.y1c2{bottom:752.974267pt;}
.y1ee{bottom:756.440933pt;}
.y168{bottom:756.827733pt;}
.y13{bottom:761.019733pt;}
.y116{bottom:764.952667pt;}
.y133{bottom:765.301867pt;}
.y1c1{bottom:765.507600pt;}
.yb6{bottom:765.627867pt;}
.y1a0{bottom:767.463467pt;}
.y1ed{bottom:768.440933pt;}
.y167{bottom:772.321067pt;}
.yce{bottom:774.601200pt;}
.y19f{bottom:780.133467pt;}
.y1ec{bottom:780.440933pt;}
.y115{bottom:780.867333pt;}
.y139{bottom:781.387200pt;}
.y1c0{bottom:782.040933pt;}
.yb5{bottom:783.063867pt;}
.y136{bottom:785.451200pt;}
.y166{bottom:787.814400pt;}
.y137{bottom:788.672533pt;}
.yd0{bottom:791.017200pt;}
.y1bf{bottom:794.574267pt;}
.y1eb{bottom:796.440933pt;}
.y114{bottom:797.459333pt;}
.yb4{bottom:798.134533pt;}
.y19e{bottom:802.073467pt;}
.y165{bottom:803.307733pt;}
.y1be{bottom:807.107600pt;}
.y1ea{bottom:808.440933pt;}
.y113{bottom:812.528667pt;}
.yb3{bottom:812.866400pt;}
.y132{bottom:812.875200pt;}
.y164{bottom:818.801067pt;}
.y1bd{bottom:819.640933pt;}
.y1e9{bottom:820.440933pt;}
.y19d{bottom:824.003467pt;}
.y140{bottom:825.397867pt;}
.y4{bottom:825.863467pt;}
.y112{bottom:828.444533pt;}
.yb2{bottom:828.783200pt;}
.y163{bottom:834.294400pt;}
.y13f{bottom:834.539200pt;}
.y1bc{bottom:836.174267pt;}
.y1e8{bottom:836.440933pt;}
.y19c{bottom:836.673467pt;}
.y111{bottom:844.189333pt;}
.yb1{bottom:844.525600pt;}
.y1e7{bottom:848.440933pt;}
.y1bb{bottom:848.707600pt;}
.y162{bottom:849.787733pt;}
.y19b{bottom:858.833467pt;}
.yb0{bottom:859.422000pt;}
.y110{bottom:860.104800pt;}
.y12a{bottom:860.608533pt;}
.y3{bottom:861.852800pt;}
.y1e6{bottom:864.440933pt;}
.y1ba{bottom:865.240933pt;}
.y161{bottom:865.281067pt;}
.y141{bottom:873.653867pt;}
.y10f{bottom:875.681600pt;}
.yaf{bottom:876.016400pt;}
.y1e5{bottom:876.440933pt;}
.y1b9{bottom:877.774267pt;}
.y160{bottom:880.774400pt;}
.y19a{bottom:883.328667pt;}
.yd6{bottom:884.126533pt;}
.y2{bottom:887.196800pt;}
.y1b8{bottom:890.307600pt;}
.yae{bottom:891.083467pt;}
.y10e{bottom:892.273867pt;}
.y1e4{bottom:892.440933pt;}
.y15f{bottom:896.267733pt;}
.y199{bottom:896.662000pt;}
.yd5{bottom:897.331867pt;}
.y1e3{bottom:904.440933pt;}
.y1b7{bottom:906.840933pt;}
.y10d{bottom:907.681600pt;}
.yad{bottom:907.683600pt;}
.y198{bottom:909.995333pt;}
.y15e{bottom:911.761067pt;}
.y1b6{bottom:919.374267pt;}
.y1e2{bottom:920.440933pt;}
.y10c{bottom:923.427733pt;}
.yd7{bottom:924.926533pt;}
.ycb{bottom:925.630533pt;}
.y142{bottom:927.157867pt;}
.y15d{bottom:927.254400pt;}
.y197{bottom:931.108267pt;}
.y1b5{bottom:931.907600pt;}
.y1e1{bottom:932.440933pt;}
.y12e{bottom:936.640533pt;}
.yca{bottom:937.310533pt;}
.yac{bottom:939.342267pt;}
.y10b{bottom:939.342933pt;}
.y15c{bottom:942.747733pt;}
.y1b4{bottom:944.440933pt;}
.y196{bottom:944.445600pt;}
.y7{bottom:961.389200pt;}
.y6{bottom:977.165200pt;}
.y5{bottom:992.944800pt;}
.y41{bottom:993.574800pt;}
.hf{height:22.169547pt;}
.h7{height:23.680000pt;}
.h25{height:23.923200pt;}
.h2d{height:28.120000pt;}
.h2e{height:28.520000pt;}
.h30{height:29.482667pt;}
.h2b{height:29.866667pt;}
.h2{height:31.573333pt;}
.h2c{height:32.599253pt;}
.h6{height:32.615253pt;}
.h23{height:34.176000pt;}
.h8{height:35.010667pt;}
.ha{height:35.520000pt;}
.hb{height:36.660160pt;}
.hc{height:36.676160pt;}
.h9{height:36.692160pt;}
.h2f{height:36.853333pt;}
.hd{height:38.026667pt;}
.h5{height:38.696000pt;}
.h28{height:39.893333pt;}
.h19{height:39.898667pt;}
.h1f{height:39.901867pt;}
.h1c{height:39.907200pt;}
.h13{height:39.912000pt;}
.h1b{height:39.912533pt;}
.h17{height:39.914667pt;}
.h20{height:39.917867pt;}
.h18{height:39.918400pt;}
.h27{height:39.922667pt;}
.h12{height:39.923200pt;}
.h21{height:39.928533pt;}
.he{height:39.929547pt;}
.h16{height:39.929600pt;}
.h11{height:39.930080pt;}
.h10{height:39.933280pt;}
.h1d{height:39.933867pt;}
.h15{height:39.934933pt;}
.h1a{height:39.939200pt;}
.h14{height:39.942933pt;}
.h1e{height:39.944000pt;}
.h24{height:39.944533pt;}
.h26{height:40.017600pt;}
.h4{height:40.769600pt;}
.h2a{height:44.224000pt;}
.h3{height:67.200000pt;}
.h22{height:426.928000pt;}
.h29{height:429.128000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w3{width:522.696000pt;}
.w2{width:571.464000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.472400pt;}
.x61{left:66.139067pt;}
.x5a{left:69.138667pt;}
.x6{left:76.923867pt;}
.x62{left:81.595067pt;}
.xa{left:92.472000pt;}
.x56{left:107.493467pt;}
.x2a{left:111.118667pt;}
.x57{left:112.313600pt;}
.x36{left:113.339467pt;}
.x4b{left:135.502667pt;}
.x53{left:154.080933pt;}
.x5b{left:174.518667pt;}
.x5d{left:182.218667pt;}
.x60{left:185.854400pt;}
.x5c{left:188.038667pt;}
.x5f{left:193.384267pt;}
.x63{left:195.906667pt;}
.x5e{left:199.356933pt;}
.x2f{left:213.840933pt;}
.xb{left:216.821333pt;}
.x3c{left:217.778133pt;}
.xc{left:221.523867pt;}
.x4d{left:236.087600pt;}
.x38{left:273.318133pt;}
.x4{left:275.259600pt;}
.x50{left:277.344933pt;}
.x35{left:281.787467pt;}
.x37{left:284.326133pt;}
.x34{left:288.571467pt;}
.x39{left:290.086133pt;}
.x32{left:292.112800pt;}
.x3a{left:293.126133pt;}
.x33{left:295.174133pt;}
.x3b{left:296.511467pt;}
.x25{left:297.700800pt;}
.x23{left:298.886267pt;}
.x22{left:300.407600pt;}
.x2d{left:302.103600pt;}
.x2c{left:303.456800pt;}
.x29{left:304.474133pt;}
.x24{left:307.184933pt;}
.x21{left:308.872933pt;}
.x26{left:309.888933pt;}
.x51{left:312.491600pt;}
.x1f{left:314.126133pt;}
.x2e{left:315.138267pt;}
.x3{left:316.228133pt;}
.x28{left:317.340933pt;}
.x20{left:318.523467pt;}
.x52{left:320.118267pt;}
.x1e{left:322.082133pt;}
.x27{left:324.110133pt;}
.x54{left:328.576933pt;}
.x4f{left:329.771600pt;}
.x5{left:332.464933pt;}
.x55{left:334.507600pt;}
.x41{left:346.026267pt;}
.x42{left:348.057067pt;}
.x43{left:350.426267pt;}
.x4a{left:356.523733pt;}
.x46{left:358.385067pt;}
.x48{left:360.416933pt;}
.x49{left:361.602267pt;}
.x47{left:364.649067pt;}
.x44{left:366.512933pt;}
.x45{left:371.253067pt;}
.x31{left:381.511600pt;}
.x1{left:385.217600pt;}
.x7{left:413.859067pt;}
.x58{left:419.522400pt;}
.x59{left:434.946400pt;}
.x11{left:442.641867pt;}
.x12{left:456.134667pt;}
.x18{left:461.101600pt;}
.x19{left:464.858533pt;}
.x30{left:488.583467pt;}
.xd{left:491.716667pt;}
.xe{left:505.366933pt;}
.x13{left:507.558400pt;}
.x2b{left:510.270267pt;}
.x4c{left:518.648933pt;}
.x14{left:521.051067pt;}
.x4e{left:535.214267pt;}
.x3d{left:580.903733pt;}
.x3e{left:585.752667pt;}
.xf{left:588.083200pt;}
.x8{left:591.882400pt;}
.x9{left:596.750800pt;}
.x10{left:601.733467pt;}
.x15{left:605.868933pt;}
.x1c{left:642.299733pt;}
.x1d{left:646.359867pt;}
.x16{left:657.292800pt;}
.x17{left:670.785467pt;}
.x1a{left:675.981067pt;}
.x1b{left:679.738000pt;}
.x3f{left:728.396533pt;}
.x40{left:733.228400pt;}
}




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