
    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_361668c761e8687c3bcd2a21.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d4185dceff42938566dd6fdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_f988e5d99803516214b3325f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_99d6e983d0b2fd57b8d76298.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f8ab930f6834e35968fd3371.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_0d6513f2059e8c7f44ae5e61.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.450000;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_5cf757485cc55f2c0925d910.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cfbb289b2623d60bf4475d24.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_f03bda9d435a99ffcf935a6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_62e348e20c15c70a89aca709.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_49a1f86c5ef41a6881f4f378.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6feb4390d4d6c24935160a46.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1805a31b0b809d9aff22c6af.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9b52d2d31618550a379c2a26.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;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_91dbd208cc79d4f3d705f9b5.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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_60aa2fa8246ef2e9eb0b3ea3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5eda79effd541c22a1d6c4b0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.686000;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_9f639e29c773dbf9063abaa3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_02a6f5fc7cb569f08159d76e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_9dceb2c4275411242801d803.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.911000;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_7ab746ac2fe6374b3b75dcbc.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906000;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_aa308c7686c73e25084ebfa5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.001000;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_314996831cddd67fe676c0c2.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_2636fe21f59b0b7a2ca957a6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a2d10c809b4da95094085cf6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.665000;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_47221ede6c315bc8b3b4a90e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_24bc0d4e68c0cf73f78f7add.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.888000;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_3adbd7108942281a966e0e25.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.889000;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_1466fb070053772b3caa9023.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(-0.336973,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(-0.336973,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(-0.336973,0.000000,0.000000,-0.250000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-26.028000px;}
.v2{vertical-align:-21.690000px;}
.vf{vertical-align:-18.564000px;}
.ve{vertical-align:-16.110000px;}
.v3{vertical-align:-10.758000px;}
.v10{vertical-align:-8.970000px;}
.vb{vertical-align:-1.632000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.758000px;}
.va{vertical-align:18.738000px;}
.v8{vertical-align:22.572000px;}
.v1{vertical-align:26.028000px;}
.v6{vertical-align:29.496000px;}
.v5{vertical-align:36.786000px;}
.vd{vertical-align:41.418000px;}
.vc{vertical-align:51.804000px;}
.v9{vertical-align:53.802000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000472px;}
.ls22{letter-spacing:0.000479px;}
.ls11{letter-spacing:0.000545px;}
.ls58{letter-spacing:0.000701px;}
.ls2f{letter-spacing:0.000991px;}
.ls57{letter-spacing:0.001198px;}
.ls2d{letter-spacing:0.001586px;}
.ls17{letter-spacing:0.001747px;}
.ls52{letter-spacing:0.002154px;}
.ls5b{letter-spacing:0.002665px;}
.ls16{letter-spacing:0.004852px;}
.ls26{letter-spacing:0.006031px;}
.ls1f{letter-spacing:0.007668px;}
.ls2a{letter-spacing:0.009642px;}
.lsd{letter-spacing:0.011626px;}
.ls47{letter-spacing:0.012298px;}
.ls19{letter-spacing:0.015483px;}
.ls25{letter-spacing:0.016643px;}
.ls28{letter-spacing:0.018010px;}
.ls59{letter-spacing:0.019515px;}
.ls43{letter-spacing:0.019659px;}
.ls46{letter-spacing:0.019928px;}
.ls1d{letter-spacing:0.021241px;}
.ls54{letter-spacing:0.021364px;}
.ls29{letter-spacing:0.022643px;}
.ls4b{letter-spacing:0.023850px;}
.ls20{letter-spacing:0.024240px;}
.ls51{letter-spacing:0.025574px;}
.ls14{letter-spacing:0.025845px;}
.ls4a{letter-spacing:0.026043px;}
.ls3a{letter-spacing:0.027074px;}
.ls36{letter-spacing:0.028867px;}
.lsa{letter-spacing:0.030012px;}
.ls5a{letter-spacing:0.031893px;}
.ls41{letter-spacing:0.036843px;}
.lsc{letter-spacing:0.717312px;}
.ls3d{letter-spacing:2.961643px;}
.ls38{letter-spacing:2.967643px;}
.ls5c{letter-spacing:2.984289px;}
.ls40{letter-spacing:2.984292px;}
.ls3{letter-spacing:2.989289px;}
.ls1{letter-spacing:2.989409px;}
.ls7{letter-spacing:2.990289px;}
.ls5d{letter-spacing:2.990292px;}
.ls3f{letter-spacing:2.990964px;}
.ls0{letter-spacing:2.992792px;}
.ls15{letter-spacing:2.995289px;}
.ls31{letter-spacing:3.009464px;}
.ls32{letter-spacing:4.394783px;}
.ls3b{letter-spacing:4.400783px;}
.ls3e{letter-spacing:5.810227px;}
.ls30{letter-spacing:7.029628px;}
.ls37{letter-spacing:7.077449px;}
.ls33{letter-spacing:10.043429px;}
.ls3c{letter-spacing:10.049429px;}
.ls12{letter-spacing:14.947289px;}
.ls27{letter-spacing:15.637402px;}
.ls39{letter-spacing:15.924326px;}
.ls5{letter-spacing:16.282982px;}
.ls6{letter-spacing:16.354714px;}
.ls56{letter-spacing:17.000294px;}
.ls4e{letter-spacing:17.502413px;}
.ls42{letter-spacing:18.076262px;}
.ls53{letter-spacing:18.196379px;}
.ls35{letter-spacing:19.869542px;}
.ls55{letter-spacing:19.891079px;}
.ls34{letter-spacing:19.941274px;}
.ls1e{letter-spacing:20.013005px;}
.ls4{letter-spacing:20.873779px;}
.ls1b{letter-spacing:22.810522px;}
.ls24{letter-spacing:22.953984px;}
.lsb{letter-spacing:23.384371px;}
.ls2c{letter-spacing:23.456102px;}
.ls1a{letter-spacing:24.818995px;}
.ls49{letter-spacing:25.608038px;}
.ls21{letter-spacing:26.110157px;}
.ls10{letter-spacing:26.632441px;}
.lsf{letter-spacing:26.684006px;}
.ls23{letter-spacing:26.827469px;}
.ls8{letter-spacing:26.942292px;}
.ls1c{letter-spacing:27.975168px;}
.ls48{letter-spacing:28.046899px;}
.ls18{letter-spacing:28.220292px;}
.ls2b{letter-spacing:28.549018px;}
.ls44{letter-spacing:31.274803px;}
.ls50{letter-spacing:31.705190px;}
.ls4f{letter-spacing:31.992115px;}
.lse{letter-spacing:32.063846px;}
.ls4c{letter-spacing:32.781158px;}
.ls45{letter-spacing:33.355008px;}
.ls9{letter-spacing:35.076557px;}
.ls4d{letter-spacing:35.937331px;}
.ls2e{letter-spacing:261.296706px;}
.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;}
}
.wsc7{word-spacing:-71.731200px;}
.wse6{word-spacing:-65.454600px;}
.wsf8{word-spacing:-51.861658px;}
.ws30{word-spacing:-45.664082px;}
.wse7{word-spacing:-42.637126px;}
.ws31{word-spacing:-40.384666px;}
.ws3{word-spacing:-40.341627px;}
.ws11c{word-spacing:-38.937826px;}
.ws6b{word-spacing:-35.858427px;}
.ws65{word-spacing:-35.112422px;}
.ws32{word-spacing:-33.211407px;}
.ws117{word-spacing:-32.544027px;}
.ws8a{word-spacing:-29.881822px;}
.ws83{word-spacing:-25.397521px;}
.ws10d{word-spacing:-24.632494px;}
.ws118{word-spacing:-24.506202px;}
.ws13f{word-spacing:-23.628257px;}
.ws61{word-spacing:-23.556526px;}
.ws137{word-spacing:-22.408827px;}
.ws13{word-spacing:-21.763246px;}
.ws161{word-spacing:-20.830740px;}
.ws131{word-spacing:-20.543816px;}
.wsb5{word-spacing:-19.625656px;}
.wscc{word-spacing:-19.546752px;}
.ws35{word-spacing:-19.510886px;}
.ws63{word-spacing:-19.475021px;}
.ws70{word-spacing:-19.467848px;}
.ws77{word-spacing:-19.396116px;}
.ws10e{word-spacing:-19.331558px;}
.wsbb{word-spacing:-19.259827px;}
.wsa5{word-spacing:-19.252654px;}
.wsa4{word-spacing:-19.180923px;}
.ws13a{word-spacing:-19.116365px;}
.ws121{word-spacing:-19.037460px;}
.wsfb{word-spacing:-18.980076px;}
.wsdf{word-spacing:-18.893998px;}
.ws7a{word-spacing:-18.757709px;}
.ws10{word-spacing:-18.685978px;}
.ws6c{word-spacing:-18.535342px;}
.ws9f{word-spacing:-18.470784px;}
.ws60{word-spacing:-18.399053px;}
.ws41{word-spacing:-18.391880px;}
.ws12a{word-spacing:-18.183859px;}
.wscf{word-spacing:-18.176686px;}
.wsd1{word-spacing:-18.112128px;}
.ws62{word-spacing:-17.968666px;}
.ws160{word-spacing:-17.961492px;}
.ws132{word-spacing:-17.896934px;}
.ws15e{word-spacing:-17.825203px;}
.ws170{word-spacing:-17.753472px;}
.ws14e{word-spacing:-17.602836px;}
.ws109{word-spacing:-17.538278px;}
.wse{word-spacing:-17.531105px;}
.ws87{word-spacing:-17.459374px;}
.wsdb{word-spacing:-17.394816px;}
.ws58{word-spacing:-17.387643px;}
.ws2e{word-spacing:-17.179622px;}
.wsee{word-spacing:-17.172449px;}
.wsf4{word-spacing:-17.036160px;}
.ws8e{word-spacing:-17.030068px;}
.wsce{word-spacing:-17.028987px;}
.ws174{word-spacing:-16.993121px;}
.ws6d{word-spacing:-16.964429px;}
.ws7{word-spacing:-16.957256px;}
.ws76{word-spacing:-16.892698px;}
.ws78{word-spacing:-16.820966px;}
.ws16f{word-spacing:-16.777928px;}
.wsa6{word-spacing:-16.749235px;}
.ws159{word-spacing:-16.742062px;}
.ws3a{word-spacing:-16.677504px;}
.ws74{word-spacing:-16.605773px;}
.ws12{word-spacing:-16.534042px;}
.wsd3{word-spacing:-16.526868px;}
.ws14{word-spacing:-16.462310px;}
.wse0{word-spacing:-16.318848px;}
.ws171{word-spacing:-16.275809px;}
.ws0{word-spacing:-16.196248px;}
.ws37{word-spacing:-16.175386px;}
.ws40{word-spacing:-16.031923px;}
.ws18{word-spacing:-16.024750px;}
.ws4e{word-spacing:-15.960192px;}
.wse4{word-spacing:-15.888461px;}
.ws44{word-spacing:-15.816730px;}
.ws7b{word-spacing:-15.744998px;}
.ws11b{word-spacing:-15.715005px;}
.ws33{word-spacing:-15.673267px;}
.ws11e{word-spacing:-15.655230px;}
.ws68{word-spacing:-15.630228px;}
.ws15f{word-spacing:-15.601536px;}
.ws105{word-spacing:-15.529805px;}
.ws84{word-spacing:-15.379169px;}
.ws3f{word-spacing:-15.242880px;}
.wsae{word-spacing:-15.235707px;}
.ws88{word-spacing:-15.171149px;}
.ws16d{word-spacing:-15.128110px;}
.ws15{word-spacing:-15.099418px;}
.ws7e{word-spacing:-15.027686px;}
.wsc9{word-spacing:-14.955955px;}
.ws125{word-spacing:-14.937922px;}
.wse5{word-spacing:-14.884224px;}
.ws8d{word-spacing:-14.818371px;}
.ws6{word-spacing:-14.812493px;}
.ws106{word-spacing:-14.805320px;}
.wsdc{word-spacing:-14.740762px;}
.ws1a{word-spacing:-14.669030px;}
.wsf9{word-spacing:-14.625992px;}
.wse2{word-spacing:-14.597299px;}
.ws165{word-spacing:-14.525568px;}
.wsed{word-spacing:-14.453837px;}
.ws12f{word-spacing:-14.446664px;}
.ws11{word-spacing:-14.382106px;}
.ws6f{word-spacing:-14.310374px;}
.ws6e{word-spacing:-14.303201px;}
.wsc2{word-spacing:-14.238643px;}
.ws69{word-spacing:-14.195604px;}
.ws128{word-spacing:-14.166912px;}
.ws15d{word-spacing:-14.159739px;}
.ws127{word-spacing:-14.101064px;}
.ws136{word-spacing:-14.016276px;}
.ws19{word-spacing:-13.951718px;}
.wsd6{word-spacing:-13.879987px;}
.ws152{word-spacing:-13.872814px;}
.ws67{word-spacing:-13.836948px;}
.ws100{word-spacing:-13.808256px;}
.wsb0{word-spacing:-13.585889px;}
.ws55{word-spacing:-13.521331px;}
.ws21{word-spacing:-13.442427px;}
.ws85{word-spacing:-13.377869px;}
.ws49{word-spacing:-13.306138px;}
.wsad{word-spacing:-13.234406px;}
.wsd0{word-spacing:-13.191368px;}
.ws1b{word-spacing:-13.090944px;}
.ws124{word-spacing:-13.025103px;}
.ws10f{word-spacing:-13.019213px;}
.ws126{word-spacing:-12.965328px;}
.ws34{word-spacing:-12.947482px;}
.ws14c{word-spacing:-12.940308px;}
.ws107{word-spacing:-12.875750px;}
.ws12b{word-spacing:-12.804019px;}
.ws130{word-spacing:-12.588826px;}
.wsd{word-spacing:-12.581652px;}
.wsc{word-spacing:-12.509921px;}
.ws14f{word-spacing:-12.445363px;}
.ws4{word-spacing:-12.301901px;}
.ws59{word-spacing:-12.230170px;}
.ws12d{word-spacing:-12.222996px;}
.ws9{word-spacing:-12.158438px;}
.ws4b{word-spacing:-12.151265px;}
.wsa7{word-spacing:-12.115400px;}
.ws39{word-spacing:-12.086707px;}
.wsef{word-spacing:-12.014976px;}
.ws81{word-spacing:-12.007803px;}
.wsa{word-spacing:-11.943245px;}
.wsb1{word-spacing:-11.799782px;}
.wsc5{word-spacing:-11.792609px;}
.ws1{word-spacing:-11.728051px;}
.ws1d{word-spacing:-11.656320px;}
.ws2a{word-spacing:-11.649147px;}
.ws57{word-spacing:-11.584589px;}
.ws51{word-spacing:-11.577416px;}
.ws4f{word-spacing:-11.505684px;}
.ws5e{word-spacing:-11.441126px;}
.ws140{word-spacing:-11.433953px;}
.wsec{word-spacing:-11.411162px;}
.wsd2{word-spacing:-11.369395px;}
.ws7d{word-spacing:-11.297664px;}
.ws38{word-spacing:-11.225933px;}
.ws2f{word-spacing:-11.154202px;}
.ws79{word-spacing:-11.082470px;}
.ws10b{word-spacing:-11.003566px;}
.wse9{word-spacing:-10.878555px;}
.wse8{word-spacing:-10.878450px;}
.wsc8{word-spacing:-10.867277px;}
.wsf2{word-spacing:-10.824238px;}
.ws89{word-spacing:-10.813100px;}
.ws108{word-spacing:-10.795546px;}
.ws156{word-spacing:-10.788372px;}
.ws6a{word-spacing:-10.752507px;}
.ws5b{word-spacing:-10.723814px;}
.wsc0{word-spacing:-10.716641px;}
.ws12e{word-spacing:-10.652083px;}
.ws142{word-spacing:-10.609044px;}
.ws4a{word-spacing:-10.580352px;}
.wseb{word-spacing:-10.514528px;}
.ws4c{word-spacing:-10.508621px;}
.ws2d{word-spacing:-10.501448px;}
.ws82{word-spacing:-10.436890px;}
.ws75{word-spacing:-10.365158px;}
.ws4d{word-spacing:-10.293427px;}
.ws2b{word-spacing:-10.149965px;}
.ws3e{word-spacing:-10.006502px;}
.ws1e{word-spacing:-9.976548px;}
.ws101{word-spacing:-9.927598px;}
.ws8b{word-spacing:-9.916772px;}
.ws8{word-spacing:-9.863040px;}
.ws10a{word-spacing:-9.855867px;}
.wsca{word-spacing:-9.820001px;}
.ws54{word-spacing:-9.791309px;}
.ws163{word-spacing:-9.719578px;}
.wsc4{word-spacing:-9.676539px;}
.wsde{word-spacing:-9.647846px;}
.wsfd{word-spacing:-9.576115px;}
.wsfc{word-spacing:-9.504384px;}
.ws120{word-spacing:-9.498343px;}
.ws143{word-spacing:-9.497211px;}
.ws123{word-spacing:-9.360922px;}
.ws36{word-spacing:-9.289190px;}
.ws2c{word-spacing:-9.145728px;}
.wsea{word-spacing:-9.139689px;}
.ws5f{word-spacing:-9.073997px;}
.wsb2{word-spacing:-9.066824px;}
.ws16b{word-spacing:-9.002266px;}
.ws17{word-spacing:-8.923361px;}
.ws11f{word-spacing:-8.781036px;}
.wsb6{word-spacing:-8.779899px;}
.ws91{word-spacing:-8.721260px;}
.wsd4{word-spacing:-8.715341px;}
.ws102{word-spacing:-8.643610px;}
.ws133{word-spacing:-8.571878px;}
.ws7f{word-spacing:-8.564705px;}
.wsab{word-spacing:-8.528840px;}
.ws80{word-spacing:-8.469028px;}
.ws86{word-spacing:-8.421208px;}
.ws8f{word-spacing:-8.362606px;}
.ws43{word-spacing:-8.356685px;}
.ws122{word-spacing:-8.349512px;}
.ws16c{word-spacing:-8.313646px;}
.wsc6{word-spacing:-8.284954px;}
.ws7c{word-spacing:-8.213222px;}
.wse1{word-spacing:-8.141491px;}
.wsb4{word-spacing:-8.069760px;}
.wscd{word-spacing:-8.026721px;}
.ws3c{word-spacing:-7.990856px;}
.wsb3{word-spacing:-7.926298px;}
.ws29{word-spacing:-7.854566px;}
.ws9e{word-spacing:-7.782835px;}
.ws154{word-spacing:-7.775662px;}
.ws16{word-spacing:-7.711104px;}
.ws9c{word-spacing:-7.703931px;}
.ws45{word-spacing:-7.639373px;}
.wsf{word-spacing:-7.567642px;}
.ws103{word-spacing:-7.560468px;}
.ws48{word-spacing:-7.495910px;}
.wsf1{word-spacing:-7.424179px;}
.wsb{word-spacing:-7.352448px;}
.ws9a{word-spacing:-7.137254px;}
.ws158{word-spacing:-7.094216px;}
.wsfa{word-spacing:-7.065523px;}
.ws3b{word-spacing:-6.993792px;}
.ws3d{word-spacing:-6.922061px;}
.ws72{word-spacing:-6.850330px;}
.ws16e{word-spacing:-6.807291px;}
.ws153{word-spacing:-6.778598px;}
.ws172{word-spacing:-6.735560px;}
.ws9d{word-spacing:-6.706867px;}
.wsd5{word-spacing:-6.635136px;}
.ws15c{word-spacing:-6.563405px;}
.ws5d{word-spacing:-6.491674px;}
.ws12c{word-spacing:-6.419942px;}
.ws71{word-spacing:-6.348211px;}
.ws50{word-spacing:-6.276480px;}
.ws141{word-spacing:-6.204749px;}
.ws5{word-spacing:-6.133018px;}
.ws173{word-spacing:-5.946516px;}
.ws53{word-spacing:-5.917824px;}
.wse3{word-spacing:-5.910651px;}
.wsbd{word-spacing:-5.838920px;}
.wsa0{word-spacing:-5.695457px;}
.ws157{word-spacing:-5.559168px;}
.ws138{word-spacing:-5.551995px;}
.ws150{word-spacing:-5.480264px;}
.ws56{word-spacing:-5.415706px;}
.ws42{word-spacing:-5.343974px;}
.ws5a{word-spacing:-5.272243px;}
.wsdd{word-spacing:-5.128781px;}
.wsb7{word-spacing:-5.121608px;}
.wsbe{word-spacing:-5.057050px;}
.ws13d{word-spacing:-5.049876px;}
.wsa1{word-spacing:-4.913587px;}
.ws134{word-spacing:-4.834683px;}
.ws139{word-spacing:-4.770125px;}
.ws151{word-spacing:-4.698394px;}
.wscb{word-spacing:-4.626662px;}
.ws162{word-spacing:-4.583624px;}
.ws52{word-spacing:-4.483200px;}
.ws94{word-spacing:-4.411469px;}
.wsd8{word-spacing:-4.339738px;}
.ws97{word-spacing:-4.332564px;}
.ws144{word-spacing:-4.268006px;}
.ws114{word-spacing:-4.225111px;}
.ws135{word-spacing:-4.196275px;}
.ws14d{word-spacing:-4.189102px;}
.ws5c{word-spacing:-3.981082px;}
.wsd9{word-spacing:-3.973908px;}
.ws90{word-spacing:-3.879436px;}
.wsf5{word-spacing:-3.837619px;}
.ws92{word-spacing:-3.830446px;}
.ws98{word-spacing:-3.765888px;}
.ws10c{word-spacing:-3.694157px;}
.wsc3{word-spacing:-3.622426px;}
.wsa3{word-spacing:-3.579387px;}
.wsc1{word-spacing:-3.550694px;}
.wsda{word-spacing:-3.478963px;}
.ws99{word-spacing:-3.435924px;}
.ws110{word-spacing:-3.407232px;}
.ws93{word-spacing:-3.335501px;}
.ws166{word-spacing:-3.192038px;}
.ws147{word-spacing:-3.184865px;}
.wsa8{word-spacing:-3.120307px;}
.wsff{word-spacing:-3.048576px;}
.wsac{word-spacing:-2.976845px;}
.ws11a{word-spacing:-2.863251px;}
.ws64{word-spacing:-2.618189px;}
.ws9b{word-spacing:-2.546458px;}
.ws119{word-spacing:-2.504598px;}
.wsd7{word-spacing:-2.474726px;}
.ws27{word-spacing:-2.331264px;}
.ws15a{word-spacing:-2.324091px;}
.wsbf{word-spacing:-2.259533px;}
.wsba{word-spacing:-2.187802px;}
.wsb9{word-spacing:-2.116070px;}
.ws15b{word-spacing:-2.044339px;}
.wsf7{word-spacing:-1.990562px;}
.ws104{word-spacing:-1.829146px;}
.ws46{word-spacing:-1.685683px;}
.ws47{word-spacing:-1.542221px;}
.ws66{word-spacing:-1.283988px;}
.ws155{word-spacing:-1.040102px;}
.wsbc{word-spacing:-0.824909px;}
.wsaa{word-spacing:-0.817736px;}
.wsa9{word-spacing:-0.681446px;}
.ws145{word-spacing:-0.674273px;}
.ws95{word-spacing:-0.537984px;}
.ws96{word-spacing:-0.494945px;}
.ws26{word-spacing:-0.394522px;}
.wsf0{word-spacing:-0.251059px;}
.ws129{word-spacing:-0.071731px;}
.ws111{word-spacing:-0.047821px;}
.ws11d{word-spacing:-0.041843px;}
.wsaf{word-spacing:-0.035866px;}
.ws20{word-spacing:0.000000px;}
.ws13e{word-spacing:0.179328px;}
.ws28{word-spacing:0.251059px;}
.wsf3{word-spacing:0.358656px;}
.ws25{word-spacing:0.609715px;}
.ws14a{word-spacing:0.824909px;}
.ws148{word-spacing:2.044339px;}
.ws73{word-spacing:2.194975px;}
.wsfe{word-spacing:3.172889px;}
.ws13b{word-spacing:4.131717px;}
.ws146{word-spacing:4.483200px;}
.wsb8{word-spacing:5.287438px;}
.ws112{word-spacing:5.930809px;}
.ws113{word-spacing:5.937481px;}
.wsf6{word-spacing:10.936889px;}
.wsa2{word-spacing:11.979110px;}
.ws8c{word-spacing:14.561434px;}
.ws13c{word-spacing:14.747935px;}
.ws1c{word-spacing:16.648812px;}
.ws115{word-spacing:18.130924px;}
.ws1f{word-spacing:19.845499px;}
.ws2{word-spacing:21.339889px;}
.ws177{word-spacing:23.678469px;}
.ws116{word-spacing:24.872748px;}
.ws176{word-spacing:25.643904px;}
.ws178{word-spacing:25.715635px;}
.ws149{word-spacing:25.722808px;}
.ws168{word-spacing:28.699653px;}
.ws175{word-spacing:29.230464px;}
.ws167{word-spacing:31.238938px;}
.ws169{word-spacing:34.079493px;}
.ws14b{word-spacing:36.410757px;}
.ws16a{word-spacing:37.049165px;}
.ws164{word-spacing:40.355973px;}
.ws22{word-spacing:47.313900px;}
.ws23{word-spacing:78.445240px;}
.ws24{word-spacing:83.674445px;}
._5e{margin-left:-2570.823334px;}
._a2{margin-left:-2471.899661px;}
._39{margin-left:-2448.267994px;}
._45{margin-left:-2447.228446px;}
._4e{margin-left:-2442.519469px;}
._7b{margin-left:-2437.935612px;}
._1d{margin-left:-2429.192837px;}
._20{margin-left:-2428.150427px;}
._b9{margin-left:-2414.579025px;}
._7e{margin-left:-2392.761402px;}
._5{margin-left:-2389.169388px;}
._46{margin-left:-2382.546960px;}
._b2{margin-left:-2376.457772px;}
._78{margin-left:-2373.311582px;}
._57{margin-left:-2371.149137px;}
._a{margin-left:-2341.752091px;}
._8d{margin-left:-2335.030168px;}
._71{margin-left:-2332.523424px;}
._96{margin-left:-2315.788649px;}
._6d{margin-left:-2299.450836px;}
._54{margin-left:-2296.335601px;}
._95{margin-left:-2293.362588px;}
._63{margin-left:-2290.026214px;}
._53{margin-left:-2283.007944px;}
._13{margin-left:-2274.515497px;}
._84{margin-left:-2269.542008px;}
._7d{margin-left:-2266.175228px;}
._ba{margin-left:-2257.609226px;}
._29{margin-left:-2253.093229px;}
._1c{margin-left:-2250.652446px;}
._68{margin-left:-2237.051478px;}
._69{margin-left:-2219.119132px;}
._bd{margin-left:-2215.116809px;}
._14{margin-left:-2214.107382px;}
._85{margin-left:-2197.482184px;}
._72{margin-left:-2191.998667px;}
._83{margin-left:-2183.540237px;}
._4f{margin-left:-2176.593319px;}
._27{margin-left:-2174.557659px;}
._5b{margin-left:-2164.488694px;}
._2{margin-left:-2156.812575px;}
._92{margin-left:-2132.063198px;}
._90{margin-left:-2127.351006px;}
._62{margin-left:-2125.960789px;}
._c0{margin-left:-2098.389491px;}
._32{margin-left:-2070.135594px;}
._3b{margin-left:-2058.027223px;}
._4{margin-left:-2034.786609px;}
._73{margin-left:-2024.782323px;}
._2b{margin-left:-2014.404411px;}
._9b{margin-left:-1991.501885px;}
._56{margin-left:-1958.832898px;}
._55{margin-left:-1950.885954px;}
._43{margin-left:-1948.864674px;}
._3e{margin-left:-1940.100732px;}
._be{margin-left:-1931.094605px;}
._60{margin-left:-1905.823776px;}
._8a{margin-left:-1898.136138px;}
._6e{margin-left:-1876.129226px;}
._64{margin-left:-1866.629848px;}
._3f{margin-left:-1860.414546px;}
._99{margin-left:-1847.938312px;}
._33{margin-left:-1845.184322px;}
._40{margin-left:-1835.030747px;}
._51{margin-left:-1791.493743px;}
._a8{margin-left:-1789.810689px;}
._b8{margin-left:-1787.213147px;}
._61{margin-left:-1786.124342px;}
._36{margin-left:-1783.364348px;}
._bf{margin-left:-1744.966033px;}
._30{margin-left:-1726.392153px;}
._8{margin-left:-1720.279952px;}
._76{margin-left:-1693.221357px;}
._24{margin-left:-1655.127660px;}
._34{margin-left:-1635.423513px;}
._2f{margin-left:-1628.977436px;}
._47{margin-left:-1616.405131px;}
._75{margin-left:-1606.864553px;}
._9d{margin-left:-1602.340559px;}
._38{margin-left:-1597.810079px;}
._37{margin-left:-1596.804562px;}
._6{margin-left:-1592.152083px;}
._80{margin-left:-1546.954983px;}
._9a{margin-left:-1509.102429px;}
._4d{margin-left:-1477.951970px;}
._97{margin-left:-1473.925259px;}
._87{margin-left:-1467.021452px;}
._77{margin-left:-1460.545178px;}
._af{margin-left:-1453.400929px;}
._6a{margin-left:-1443.927681px;}
._3d{margin-left:-1439.276878px;}
._ad{margin-left:-1436.649526px;}
._b6{margin-left:-1431.522501px;}
._15{margin-left:-1426.487315px;}
._5f{margin-left:-1405.146632px;}
._2d{margin-left:-1395.288107px;}
._74{margin-left:-1390.347036px;}
._a9{margin-left:-1389.174436px;}
._3c{margin-left:-1379.647834px;}
._a1{margin-left:-1377.868323px;}
._6b{margin-left:-1370.591164px;}
._50{margin-left:-1363.564362px;}
._41{margin-left:-1303.168611px;}
._21{margin-left:-1296.076684px;}
._6c{margin-left:-1287.216074px;}
._5a{margin-left:-1252.058446px;}
._9e{margin-left:-1247.479889px;}
._8b{margin-left:-1226.689522px;}
._b3{margin-left:-1218.158046px;}
._82{margin-left:-1196.265918px;}
._6f{margin-left:-1193.557100px;}
._91{margin-left:-1139.612354px;}
._1f{margin-left:-1135.891790px;}
._bc{margin-left:-1118.576333px;}
._a3{margin-left:-1074.932215px;}
._94{margin-left:-1070.307998px;}
._a0{margin-left:-1065.599532px;}
._7c{margin-left:-1062.446669px;}
._b5{margin-left:-981.425342px;}
._70{margin-left:-926.341034px;}
._4c{margin-left:-898.712578px;}
._25{margin-left:-891.336209px;}
._98{margin-left:-881.217792px;}
._5d{margin-left:-850.515173px;}
._31{margin-left:-812.893824px;}
._c1{margin-left:-807.442253px;}
._b0{margin-left:-801.983054px;}
._5c{margin-left:-794.965342px;}
._ac{margin-left:-752.783078px;}
._58{margin-left:-748.084685px;}
._3a{margin-left:-746.147942px;}
._52{margin-left:-742.712544px;}
._44{margin-left:-736.851125px;}
._81{margin-left:-705.624132px;}
._b4{margin-left:-692.317994px;}
._ae{margin-left:-660.361745px;}
._67{margin-left:-654.514716px;}
._b7{margin-left:-646.262246px;}
._b1{margin-left:-632.238797px;}
._49{margin-left:-624.061440px;}
._86{margin-left:-621.770359px;}
._65{margin-left:-597.955601px;}
._2c{margin-left:-575.149397px;}
._35{margin-left:-527.048374px;}
._66{margin-left:-522.633523px;}
._bb{margin-left:-519.262157px;}
._2a{margin-left:-502.659766px;}
._9f{margin-left:-489.820817px;}
._4a{margin-left:-462.953165px;}
._88{margin-left:-448.499328px;}
._59{margin-left:-427.446221px;}
._26{margin-left:-404.097715px;}
._b{margin-left:-387.169152px;}
._79{margin-left:-370.491648px;}
._28{margin-left:-277.312819px;}
._1b{margin-left:-20.905301px;}
._0{margin-left:-8.056807px;}
._e{margin-left:-6.886195px;}
._d{margin-left:-5.850410px;}
._7{margin-left:-3.834238px;}
._1{margin-left:-2.685602px;}
._9{margin-left:-1.554166px;}
._10{width:1.546538px;}
._3{width:2.685602px;}
._f{width:4.057130px;}
._9c{width:5.267926px;}
._93{width:16.856719px;}
._8c{width:18.147994px;}
._1e{width:19.550062px;}
._12{width:21.526987px;}
._a4{width:22.770338px;}
._c{width:23.846306px;}
._22{width:25.041816px;}
._11{width:26.181888px;}
._1a{width:27.544781px;}
._4b{width:29.297878px;}
._aa{width:30.596666px;}
._19{width:31.776922px;}
._23{width:33.075710px;}
._48{width:35.036374px;}
._89{width:37.712911px;}
._42{width:40.265052px;}
._7f{width:42.402638px;}
._a5{width:45.939516px;}
._7a{width:51.146218px;}
._ab{width:53.471292px;}
._a7{width:66.925210px;}
._2e{width:71.731200px;}
._a6{width:75.748147px;}
._18{width:80.796041px;}
._8e{width:114.181570px;}
._17{width:119.854200px;}
._16{width:136.504474px;}
._8f{width:188.446599px;}
.fc8{color:rgb(0,255,0);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(204,102,0);}
.fc4{color:rgb(0,153,0);}
.fc7{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,128);}
.fc3{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:47.895640px;}
.fs5{font-size:59.775600px;}
.fs8{font-size:65.453972px;}
.fs7{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y20{bottom:117.477000px;}
.y38{bottom:134.794500px;}
.y1f{bottom:140.832000px;}
.y7d{bottom:179.626500px;}
.y5d{bottom:187.845000px;}
.y95{bottom:190.087500px;}
.yef{bottom:193.075500px;}
.y140{bottom:193.822500px;}
.y18d{bottom:200.169000px;}
.y7c{bottom:201.295500px;}
.y1e{bottom:202.855500px;}
.y5c{bottom:209.514000px;}
.yee{bottom:214.744500px;}
.y13f{bottom:215.491500px;}
.y94{bottom:219.228000px;}
.y12b{bottom:219.867000px;}
.y18c{bottom:221.838000px;}
.y7b{bottom:222.964500px;}
.y1d{bottom:224.524500px;}
.yd7{bottom:228.195000px;}
.y5b{bottom:231.183000px;}
.y13e{bottom:237.160500px;}
.y7a{bottom:244.632000px;}
.y1c{bottom:246.193500px;}
.y93{bottom:248.368500px;}
.yd6{bottom:249.862500px;}
.yed{bottom:251.358000px;}
.y5a{bottom:252.852000px;}
.y12a{bottom:256.480500px;}
.y18b{bottom:258.450000px;}
.y79{bottom:266.301000px;}
.yd5{bottom:271.531500px;}
.yec{bottom:273.025500px;}
.y13d{bottom:273.774000px;}
.y59{bottom:274.521000px;}
.y1b{bottom:278.070000px;}
.y18a{bottom:280.119000px;}
.y1b9{bottom:281.668500px;}
.y92{bottom:284.982000px;}
.ybe{bottom:287.970000px;}
.y129{bottom:293.092500px;}
.yd4{bottom:293.200500px;}
.yeb{bottom:294.694500px;}
.y58{bottom:296.190000px;}
.y13c{bottom:296.937000px;}
.y1a{bottom:299.737500px;}
.y78{bottom:301.140000px;}
.y189{bottom:303.282000px;}
.y1b8{bottom:303.337500px;}
.y91{bottom:306.649500px;}
.ybd{bottom:309.639000px;}
.y57{bottom:317.857500px;}
.y19{bottom:321.406500px;}
.y77{bottom:322.809000px;}
.y1b7{bottom:327.966000px;}
.y128{bottom:329.706000px;}
.yd3{bottom:329.812500px;}
.yea{bottom:331.308000px;}
.y13b{bottom:338.032500px;}
.y56{bottom:339.526500px;}
.y188{bottom:342.883500px;}
.y18{bottom:343.075500px;}
.y90{bottom:343.263000px;}
.ybc{bottom:343.378500px;}
.y127{bottom:351.373500px;}
.yd2{bottom:351.481500px;}
.ye9{bottom:352.977000px;}
.y1d0{bottom:355.858500px;}
.y13a{bottom:359.701500px;}
.y55{bottom:361.195500px;}
.y187{bottom:364.552500px;}
.y17{bottom:364.744500px;}
.y1e2{bottom:364.932000px;}
.ybb{bottom:365.047500px;}
.y1b6{bottom:366.045000px;}
.y76{bottom:371.095500px;}
.y8f{bottom:372.403500px;}
.yd1{bottom:373.150500px;}
.ye8{bottom:374.644500px;}
.y53{bottom:382.864500px;}
.y186{bottom:386.221500px;}
.y16{bottom:386.413500px;}
.y1e1{bottom:386.601000px;}
.yba{bottom:386.716500px;}
.y1b5{bottom:387.714000px;}
.y16c{bottom:389.476500px;}
.y54{bottom:390.583500px;}
.y126{bottom:392.470500px;}
.y75{bottom:392.764500px;}
.y1cf{bottom:393.859500px;}
.yd0{bottom:394.819500px;}
.y103{bottom:396.313500px;}
.y8e{bottom:401.544000px;}
.y52{bottom:404.533500px;}
.y185{bottom:407.890500px;}
.y15{bottom:408.082500px;}
.y1e0{bottom:408.268500px;}
.yb9{bottom:408.385500px;}
.y1b4{bottom:409.383000px;}
.ye7{bottom:411.258000px;}
.y125{bottom:414.139500px;}
.y74{bottom:414.433500px;}
.y1ce{bottom:415.527000px;}
.y16b{bottom:415.629000px;}
.y139{bottom:417.982500px;}
.y102{bottom:419.476500px;}
.y51{bottom:426.202500px;}
.y14{bottom:429.750000px;}
.yb8{bottom:430.054500px;}
.y1b3{bottom:431.050500px;}
.ycf{bottom:431.431500px;}
.ye6{bottom:432.927000px;}
.y73{bottom:436.102500px;}
.y1cd{bottom:437.196000px;}
.y8d{bottom:438.157500px;}
.y124{bottom:440.290500px;}
.y101{bottom:441.145500px;}
.y184{bottom:444.502500px;}
.y1df{bottom:444.882000px;}
.y50{bottom:447.870000px;}
.y13{bottom:451.419000px;}
.y1b2{bottom:452.719500px;}
.yce{bottom:453.100500px;}
.y138{bottom:454.594500px;}
.y16a{bottom:455.230500px;}
.y72{bottom:457.771500px;}
.y1cc{bottom:458.865000px;}
.ye5{bottom:459.078000px;}
.y8c{bottom:459.825000px;}
.yb7{bottom:463.794000px;}
.y1de{bottom:466.551000px;}
.y4f{bottom:469.539000px;}
.y12{bottom:473.088000px;}
.y1b1{bottom:474.388500px;}
.ycd{bottom:474.769500px;}
.y137{bottom:476.263500px;}
.y169{bottom:476.899500px;}
.y37{bottom:477.732000px;}
.y153{bottom:479.253000px;}
.y71{bottom:479.439000px;}
.y100{bottom:479.563500px;}
.y123{bottom:479.892000px;}
.y1cb{bottom:480.534000px;}
.y183{bottom:481.116000px;}
.yb6{bottom:485.463000px;}
.y19c{bottom:485.977500px;}
.y1dd{bottom:488.218500px;}
.y4e{bottom:491.208000px;}
.y11{bottom:494.757000px;}
.y1b0{bottom:496.057500px;}
.y36{bottom:496.101000px;}
.y8b{bottom:496.438500px;}
.y168{bottom:498.568500px;}
.ye4{bottom:498.679500px;}
.y152{bottom:500.922000px;}
.y70{bottom:501.108000px;}
.yff{bottom:501.232500px;}
.y122{bottom:501.561000px;}
.y1ca{bottom:502.203000px;}
.y110{bottom:504.657000px;}
.yb5{bottom:507.132000px;}
.y1dc{bottom:509.887500px;}
.ycc{bottom:511.383000px;}
.y4d{bottom:512.877000px;}
.y10{bottom:516.426000px;}
.y1af{bottom:517.726500px;}
.y182{bottom:517.728000px;}
.y35{bottom:517.768500px;}
.y167{bottom:520.236000px;}
.ye3{bottom:520.348500px;}
.y151{bottom:522.589500px;}
.y6f{bottom:522.777000px;}
.y121{bottom:523.230000px;}
.y1c9{bottom:523.870500px;}
.y8a{bottom:525.579000px;}
.y10f{bottom:526.326000px;}
.yb4{bottom:528.799500px;}
.ycb{bottom:533.050500px;}
.y4c{bottom:534.546000px;}
.yfe{bottom:537.057000px;}
.yf{bottom:538.093500px;}
.y34{bottom:539.437500px;}
.ye2{bottom:542.017500px;}
.y1ae{bottom:542.355000px;}
.y150{bottom:544.258500px;}
.y120{bottom:544.899000px;}
.y1c8{bottom:545.539500px;}
.y1db{bottom:546.501000px;}
.y19b{bottom:547.248000px;}
.y10e{bottom:547.995000px;}
.yb3{bottom:550.642500px;}
.y181{bottom:554.341500px;}
.y89{bottom:554.719500px;}
.y166{bottom:555.355500px;}
.y1d1{bottom:556.213500px;}
.y4b{bottom:556.215000px;}
.y136{bottom:557.709000px;}
.yfd{bottom:558.726000px;}
.y6e{bottom:558.829500px;}
.ye{bottom:559.762500px;}
.y33{bottom:561.106500px;}
.y11f{bottom:566.566500px;}
.y1c7{bottom:567.208500px;}
.y1da{bottom:568.170000px;}
.y10d{bottom:569.664000px;}
.y1ad{bottom:575.950500px;}
.ye1{bottom:577.135500px;}
.y4a{bottom:577.882500px;}
.y6d{bottom:580.498500px;}
.y14f{bottom:580.872000px;}
.yd{bottom:581.431500px;}
.y32{bottom:582.775500px;}
.y19a{bottom:583.860000px;}
.y11e{bottom:588.235500px;}
.y1c6{bottom:588.877500px;}
.y1d9{bottom:589.837500px;}
.yb2{bottom:590.392500px;}
.y180{bottom:590.953500px;}
.y88{bottom:591.333000px;}
.yfc{bottom:594.549000px;}
.yca{bottom:595.815000px;}
.y165{bottom:597.945000px;}
.y135{bottom:598.804500px;}
.y49{bottom:599.551500px;}
.y6c{bottom:602.167500px;}
.y14e{bottom:602.541000px;}
.yc{bottom:603.100500px;}
.y31{bottom:604.444500px;}
.y199{bottom:605.529000px;}
.yb1{bottom:608.326500px;}
.y1c5{bottom:610.546500px;}
.y17f{bottom:612.622500px;}
.y87{bottom:613.000500px;}
.y10c{bottom:613.002000px;}
.y164{bottom:615.877500px;}
.yc9{bottom:617.484000px;}
.y48{bottom:621.220500px;}
.y11d{bottom:623.353500px;}
.y6b{bottom:623.835000px;}
.y14d{bottom:624.208500px;}
.yb{bottom:624.769500px;}
.ye0{bottom:625.704000px;}
.y30{bottom:626.113500px;}
.yb0{bottom:626.259000px;}
.y1d8{bottom:626.451000px;}
.yfb{bottom:630.373500px;}
.y163{bottom:633.811500px;}
.y1ac{bottom:633.988500px;}
.y10b{bottom:634.669500px;}
.y1c4{bottom:635.097000px;}
.y134{bottom:635.416500px;}
.y17e{bottom:635.785500px;}
.yc8{bottom:639.153000px;}
.y198{bottom:642.142500px;}
.y47{bottom:642.889500px;}
.yaf{bottom:644.191500px;}
.y6a{bottom:645.504000px;}
.y14c{bottom:645.877500px;}
.ya{bottom:646.438500px;}
.ydf{bottom:647.373000px;}
.y2f{bottom:647.781000px;}
.y1d7{bottom:648.120000px;}
.y86{bottom:649.614000px;}
.y162{bottom:651.744000px;}
.y1ab{bottom:655.657500px;}
.y10a{bottom:656.338500px;}
.yc7{bottom:660.822000px;}
.y17d{bottom:661.938000px;}
.y197{bottom:663.810000px;}
.y46{bottom:664.558500px;}
.yfa{bottom:664.620000px;}
.y69{bottom:667.173000px;}
.y9{bottom:668.106000px;}
.yde{bottom:669.040500px;}
.y2e{bottom:669.450000px;}
.y161{bottom:669.676500px;}
.y1d6{bottom:669.789000px;}
.y1c3{bottom:671.923500px;}
.y133{bottom:672.030000px;}
.y11c{bottom:674.827500px;}
.y1aa{bottom:677.326500px;}
.y109{bottom:678.007500px;}
.y85{bottom:678.754500px;}
.y14b{bottom:682.491000px;}
.y45{bottom:686.226000px;}
.yc6{bottom:686.974500px;}
.yf9{bottom:689.589000px;}
.ydd{bottom:690.709500px;}
.y11b{bottom:692.760000px;}
.y1c2{bottom:693.592500px;}
.y132{bottom:693.699000px;}
.y8{bottom:695.752500px;}
.y1a9{bottom:698.995500px;}
.y108{bottom:699.676500px;}
.y196{bottom:700.423500px;}
.y2d{bottom:700.960500px;}
.y68{bottom:703.225500px;}
.y14a{bottom:704.160000px;}
.yae{bottom:706.330500px;}
.y1d5{bottom:706.401000px;}
.y44{bottom:707.895000px;}
.y17c{bottom:708.262500px;}
.yc5{bottom:708.642000px;}
.y11a{bottom:710.692500px;}
.y1c1{bottom:715.260000px;}
.yad{bottom:716.791500px;}
.y131{bottom:716.862000px;}
.y1a8{bottom:720.664500px;}
.y107{bottom:721.345500px;}
.y195{bottom:722.092500px;}
.y67{bottom:724.894500px;}
.y149{bottom:725.827500px;}
.y17b{bottom:726.195000px;}
.ydc{bottom:727.323000px;}
.yf8{bottom:728.007000px;}
.y1d4{bottom:728.070000px;}
.y119{bottom:728.625000px;}
.y43{bottom:729.564000px;}
.y156{bottom:733.254000px;}
.y2c{bottom:734.656500px;}
.y1c0{bottom:736.929000px;}
.y15b{bottom:739.788000px;}
.y1a7{bottom:742.332000px;}
.y106{bottom:743.013000px;}
.y17a{bottom:744.129000px;}
.y84{bottom:744.508500px;}
.y154{bottom:746.191500px;}
.y148{bottom:747.496500px;}
.ydb{bottom:748.992000px;}
.yf7{bottom:749.676000px;}
.yc4{bottom:749.739000px;}
.y42{bottom:751.233000px;}
.y2b{bottom:754.021500px;}
.ya6{bottom:754.503000px;}
.y130{bottom:757.957500px;}
.y1bf{bottom:758.598000px;}
.y194{bottom:758.704500px;}
.y157{bottom:759.339000px;}
.y66{bottom:759.732000px;}
.y1a6{bottom:764.001000px;}
.y105{bottom:764.682000px;}
.yac{bottom:764.922000px;}
.y83{bottom:766.177500px;}
.y160{bottom:766.686000px;}
.y147{bottom:769.165500px;}
.yda{bottom:770.659500px;}
.y99{bottom:771.394500px;}
.yc3{bottom:771.408000px;}
.ya5{bottom:772.435500px;}
.y41{bottom:772.902000px;}
.y113{bottom:774.076500px;}
.y2a{bottom:775.690500px;}
.y12f{bottom:779.626500px;}
.y1be{bottom:780.267000px;}
.y193{bottom:780.373500px;}
.yab{bottom:782.854500px;}
.y7{bottom:783.363000px;}
.yf6{bottom:785.500500px;}
.y1a5{bottom:785.670000px;}
.y158{bottom:785.689500px;}
.y104{bottom:786.351000px;}
.y15f{bottom:787.009500px;}
.ya4{bottom:790.368000px;}
.yd9{bottom:792.328500px;}
.yc2{bottom:793.075500px;}
.y40{bottom:794.571000px;}
.y29{bottom:797.358000px;}
.y16f{bottom:798.669000px;}
.y192{bottom:803.536500px;}
.y146{bottom:805.779000px;}
.y6{bottom:806.718000px;}
.yf5{bottom:807.169500px;}
.y82{bottom:807.273000px;}
.y1a4{bottom:807.339000px;}
.y111{bottom:807.684000px;}
.y65{bottom:808.020000px;}
.y15a{bottom:810.771000px;}
.yc1{bottom:814.744500px;}
.y1bd{bottom:815.812500px;}
.y3f{bottom:816.238500px;}
.ya3{bottom:818.283000px;}
.y28{bottom:819.027000px;}
.y175{bottom:821.266500px;}
.y145{bottom:827.446500px;}
.yaa{bottom:828.702000px;}
.y81{bottom:828.942000px;}
.y1a3{bottom:829.008000px;}
.y64{bottom:829.689000px;}
.y177{bottom:829.837500px;}
.y5{bottom:834.172500px;}
.ya2{bottom:836.215500px;}
.yc0{bottom:836.413500px;}
.y98{bottom:836.916000px;}
.y1bc{bottom:837.481500px;}
.y3e{bottom:837.907500px;}
.y118{bottom:838.413000px;}
.y27{bottom:840.696000px;}
.y174{bottom:841.590000px;}
.yf4{bottom:842.992500px;}
.y191{bottom:843.138000px;}
.y1d3{bottom:844.632000px;}
.y159{bottom:844.653000px;}
.ya9{bottom:846.634500px;}
.y144{bottom:849.115500px;}
.y176{bottom:850.161000px;}
.y80{bottom:850.609500px;}
.y1a2{bottom:850.677000px;}
.y63{bottom:851.358000px;}
.y15e{bottom:852.274500px;}
.y12e{bottom:852.852000px;}
.y114{bottom:853.164000px;}
.ya1{bottom:854.148000px;}
.ybf{bottom:858.082500px;}
.y117{bottom:858.738000px;}
.y1bb{bottom:859.149000px;}
.y3d{bottom:859.576500px;}
.y173{bottom:861.913500px;}
.y26{bottom:862.365000px;}
.y190{bottom:864.807000px;}
.y1d2{bottom:866.301000px;}
.y9a{bottom:869.206500px;}
.y116{bottom:869.383500px;}
.y143{bottom:870.784500px;}
.y7f{bottom:872.278500px;}
.y1a1{bottom:872.344500px;}
.y15d{bottom:872.598000px;}
.y62{bottom:873.025500px;}
.y12d{bottom:876.015000px;}
.yd8{bottom:876.762000px;}
.yf3{bottom:878.817000px;}
.y1ba{bottom:880.818000px;}
.y3c{bottom:881.245500px;}
.ya0{bottom:882.061500px;}
.y4{bottom:882.739500px;}
.y16e{bottom:883.708500px;}
.y25{bottom:884.034000px;}
.y142{bottom:892.453500px;}
.y15c{bottom:892.921500px;}
.y1a0{bottom:894.013500px;}
.y61{bottom:894.694500px;}
.y7e{bottom:898.431000px;}
.y97{bottom:898.953000px;}
.y9f{bottom:899.994000px;}
.yf2{bottom:900.486000px;}
.y18f{bottom:901.419000px;}
.y3b{bottom:902.914500px;}
.y24{bottom:905.703000px;}
.y115{bottom:906.151500px;}
.y172{bottom:906.304500px;}
.y179{bottom:914.877000px;}
.y3{bottom:915.616500px;}
.y60{bottom:916.363500px;}
.y9e{bottom:917.928000px;}
.y18e{bottom:923.088000px;}
.y3a{bottom:924.583500px;}
.y19f{bottom:924.666000px;}
.y171{bottom:926.629500px;}
.y23{bottom:927.370500px;}
.y155{bottom:931.684500px;}
.y141{bottom:933.549000px;}
.yf1{bottom:934.732500px;}
.y178{bottom:935.200500px;}
.y5f{bottom:938.032500px;}
.y39{bottom:946.251000px;}
.y19e{bottom:946.333500px;}
.y170{bottom:946.953000px;}
.y9d{bottom:947.293500px;}
.y2{bottom:948.493500px;}
.y22{bottom:949.039500px;}
.y12c{bottom:955.218000px;}
.ya8{bottom:956.260500px;}
.yf0{bottom:956.401500px;}
.y5e{bottom:959.701500px;}
.y96{bottom:962.733000px;}
.y112{bottom:962.820000px;}
.y9c{bottom:965.226000px;}
.y16d{bottom:968.748000px;}
.y19d{bottom:973.153500px;}
.ya7{bottom:974.193000px;}
.y21{bottom:980.548500px;}
.y1{bottom:981.370500px;}
.y9b{bottom:983.160000px;}
.h4{height:21.169105px;}
.h7{height:23.201476px;}
.h3{height:24.352742px;}
.hc{height:25.249382px;}
.ha{height:35.969625px;}
.h5{height:42.859105px;}
.h8{height:44.891476px;}
.h13{height:45.556402px;}
.h10{height:46.210504px;}
.hb{height:46.210948px;}
.he{height:49.090950px;}
.h11{height:53.798400px;}
.h6{height:53.870131px;}
.hd{height:56.285523px;}
.h2{height:59.741523px;}
.h9{height:61.893450px;}
.h12{height:61.899450px;}
.h1{height:77.469300px;}
.hf{height:100.894950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3c{left:137.050500px;}
.xd{left:141.813000px;}
.x6{left:146.575500px;}
.x9{left:166.281000px;}
.x3{left:171.504000px;}
.x3f{left:175.059000px;}
.x8{left:183.298500px;}
.x3e{left:184.321500px;}
.xa{left:186.304500px;}
.x24{left:187.737000px;}
.xc{left:189.667500px;}
.xb{left:193.174500px;}
.x1f{left:195.619500px;}
.x1b{left:199.603500px;}
.x12{left:202.138500px;}
.x19{left:208.276500px;}
.x11{left:210.168000px;}
.x23{left:212.895000px;}
.x1d{left:227.076000px;}
.x1{left:229.611000px;}
.x13{left:231.234000px;}
.x1a{left:232.513500px;}
.x2c{left:234.195000px;}
.x39{left:240.754500px;}
.x3b{left:251.142000px;}
.x1c{left:253.636500px;}
.x18{left:257.164500px;}
.x2{left:260.109000px;}
.x1e{left:262.849500px;}
.x3a{left:276.553500px;}
.x38{left:286.951500px;}
.x27{left:319.608000px;}
.x7{left:338.544000px;}
.x31{left:340.593000px;}
.x36{left:343.951500px;}
.x5{left:346.045500px;}
.x30{left:352.344000px;}
.x2b{left:358.605000px;}
.x22{left:362.683500px;}
.x21{left:364.540500px;}
.x4{left:370.759500px;}
.x2f{left:372.024000px;}
.x2a{left:377.362500px;}
.x2e{left:379.285500px;}
.x28{left:412.237500px;}
.x26{left:439.059000px;}
.x25{left:448.911000px;}
.xe{left:453.300000px;}
.xf{left:457.494000px;}
.x15{left:459.079500px;}
.x14{left:462.208500px;}
.x10{left:463.833000px;}
.x3d{left:466.654500px;}
.x32{left:468.832500px;}
.x16{left:472.584000px;}
.x29{left:481.336500px;}
.x37{left:511.893000px;}
.x17{left:521.388000px;}
.x35{left:616.971000px;}
.x33{left:628.722000px;}
.x34{left:641.377500px;}
.x20{left:682.368000px;}
.x2d{left:735.834000px;}
@media print{
.v7{vertical-align:-23.136000pt;}
.v2{vertical-align:-19.280000pt;}
.vf{vertical-align:-16.501333pt;}
.ve{vertical-align:-14.320000pt;}
.v3{vertical-align:-9.562667pt;}
.v10{vertical-align:-7.973333pt;}
.vb{vertical-align:-1.450667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.562667pt;}
.va{vertical-align:16.656000pt;}
.v8{vertical-align:20.064000pt;}
.v1{vertical-align:23.136000pt;}
.v6{vertical-align:26.218667pt;}
.v5{vertical-align:32.698667pt;}
.vd{vertical-align:36.816000pt;}
.vc{vertical-align:46.048000pt;}
.v9{vertical-align:47.824000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000420pt;}
.ls22{letter-spacing:0.000426pt;}
.ls11{letter-spacing:0.000485pt;}
.ls58{letter-spacing:0.000623pt;}
.ls2f{letter-spacing:0.000881pt;}
.ls57{letter-spacing:0.001065pt;}
.ls2d{letter-spacing:0.001409pt;}
.ls17{letter-spacing:0.001553pt;}
.ls52{letter-spacing:0.001914pt;}
.ls5b{letter-spacing:0.002369pt;}
.ls16{letter-spacing:0.004313pt;}
.ls26{letter-spacing:0.005361pt;}
.ls1f{letter-spacing:0.006816pt;}
.ls2a{letter-spacing:0.008571pt;}
.lsd{letter-spacing:0.010334pt;}
.ls47{letter-spacing:0.010931pt;}
.ls19{letter-spacing:0.013763pt;}
.ls25{letter-spacing:0.014793pt;}
.ls28{letter-spacing:0.016009pt;}
.ls59{letter-spacing:0.017347pt;}
.ls43{letter-spacing:0.017475pt;}
.ls46{letter-spacing:0.017713pt;}
.ls1d{letter-spacing:0.018881pt;}
.ls54{letter-spacing:0.018990pt;}
.ls29{letter-spacing:0.020127pt;}
.ls4b{letter-spacing:0.021200pt;}
.ls20{letter-spacing:0.021547pt;}
.ls51{letter-spacing:0.022733pt;}
.ls14{letter-spacing:0.022973pt;}
.ls4a{letter-spacing:0.023149pt;}
.ls3a{letter-spacing:0.024066pt;}
.ls36{letter-spacing:0.025660pt;}
.lsa{letter-spacing:0.026677pt;}
.ls5a{letter-spacing:0.028349pt;}
.ls41{letter-spacing:0.032749pt;}
.lsc{letter-spacing:0.637611pt;}
.ls3d{letter-spacing:2.632572pt;}
.ls38{letter-spacing:2.637905pt;}
.ls5c{letter-spacing:2.652701pt;}
.ls40{letter-spacing:2.652704pt;}
.ls3{letter-spacing:2.657146pt;}
.ls1{letter-spacing:2.657253pt;}
.ls7{letter-spacing:2.658034pt;}
.ls5d{letter-spacing:2.658037pt;}
.ls3f{letter-spacing:2.658635pt;}
.ls0{letter-spacing:2.660259pt;}
.ls15{letter-spacing:2.662479pt;}
.ls31{letter-spacing:2.675079pt;}
.ls32{letter-spacing:3.906474pt;}
.ls3b{letter-spacing:3.911807pt;}
.ls3e{letter-spacing:5.164646pt;}
.ls30{letter-spacing:6.248558pt;}
.ls37{letter-spacing:6.291066pt;}
.ls33{letter-spacing:8.927492pt;}
.ls3c{letter-spacing:8.932825pt;}
.ls12{letter-spacing:13.286479pt;}
.ls27{letter-spacing:13.899913pt;}
.ls39{letter-spacing:14.154957pt;}
.ls5{letter-spacing:14.473762pt;}
.ls6{letter-spacing:14.537523pt;}
.ls56{letter-spacing:15.111373pt;}
.ls4e{letter-spacing:15.557700pt;}
.ls42{letter-spacing:16.067789pt;}
.ls53{letter-spacing:16.174559pt;}
.ls35{letter-spacing:17.661815pt;}
.ls55{letter-spacing:17.680959pt;}
.ls34{letter-spacing:17.725577pt;}
.ls1e{letter-spacing:17.789338pt;}
.ls4{letter-spacing:18.554470pt;}
.ls1b{letter-spacing:20.276019pt;}
.ls24{letter-spacing:20.403541pt;}
.lsb{letter-spacing:20.786108pt;}
.ls2c{letter-spacing:20.849869pt;}
.ls1a{letter-spacing:22.061329pt;}
.ls49{letter-spacing:22.762701pt;}
.ls21{letter-spacing:23.209028pt;}
.ls10{letter-spacing:23.673281pt;}
.lsf{letter-spacing:23.719117pt;}
.ls23{letter-spacing:23.846639pt;}
.ls8{letter-spacing:23.948704pt;}
.ls1c{letter-spacing:24.866816pt;}
.ls48{letter-spacing:24.930577pt;}
.ls18{letter-spacing:25.084704pt;}
.ls2b{letter-spacing:25.376905pt;}
.ls44{letter-spacing:27.799825pt;}
.ls50{letter-spacing:28.182391pt;}
.ls4f{letter-spacing:28.437436pt;}
.lse{letter-spacing:28.501197pt;}
.ls4c{letter-spacing:29.138807pt;}
.ls45{letter-spacing:29.648896pt;}
.ls9{letter-spacing:31.179162pt;}
.ls4d{letter-spacing:31.944294pt;}
.ls2e{letter-spacing:232.263739pt;}
.wsc7{word-spacing:-63.761067pt;}
.wse6{word-spacing:-58.181867pt;}
.wsf8{word-spacing:-46.099251pt;}
.ws30{word-spacing:-40.590295pt;}
.wse7{word-spacing:-37.899668pt;}
.ws31{word-spacing:-35.897481pt;}
.ws3{word-spacing:-35.859224pt;}
.ws11c{word-spacing:-34.611401pt;}
.ws6b{word-spacing:-31.874157pt;}
.ws65{word-spacing:-31.211042pt;}
.ws32{word-spacing:-29.521250pt;}
.ws117{word-spacing:-28.928024pt;}
.ws8a{word-spacing:-26.561620pt;}
.ws83{word-spacing:-22.575574pt;}
.ws10d{word-spacing:-21.895550pt;}
.ws118{word-spacing:-21.783291pt;}
.ws13f{word-spacing:-21.002895pt;}
.ws61{word-spacing:-20.939134pt;}
.ws137{word-spacing:-19.918957pt;}
.ws13{word-spacing:-19.345108pt;}
.ws161{word-spacing:-18.516214pt;}
.ws131{word-spacing:-18.261169pt;}
.wsb5{word-spacing:-17.445028pt;}
.wscc{word-spacing:-17.374891pt;}
.ws35{word-spacing:-17.343010pt;}
.ws63{word-spacing:-17.311130pt;}
.ws70{word-spacing:-17.304753pt;}
.ws77{word-spacing:-17.240992pt;}
.ws10e{word-spacing:-17.183607pt;}
.wsbb{word-spacing:-17.119846pt;}
.wsa5{word-spacing:-17.113470pt;}
.wsa4{word-spacing:-17.049709pt;}
.ws13a{word-spacing:-16.992324pt;}
.ws121{word-spacing:-16.922187pt;}
.wsfb{word-spacing:-16.871178pt;}
.wsdf{word-spacing:-16.794665pt;}
.ws7a{word-spacing:-16.673519pt;}
.ws10{word-spacing:-16.609758pt;}
.ws6c{word-spacing:-16.475860pt;}
.ws9f{word-spacing:-16.418475pt;}
.ws60{word-spacing:-16.354714pt;}
.ws41{word-spacing:-16.348337pt;}
.ws12a{word-spacing:-16.163430pt;}
.wscf{word-spacing:-16.157054pt;}
.wsd1{word-spacing:-16.099669pt;}
.ws62{word-spacing:-15.972147pt;}
.ws160{word-spacing:-15.965771pt;}
.ws132{word-spacing:-15.908386pt;}
.ws15e{word-spacing:-15.844625pt;}
.ws170{word-spacing:-15.780864pt;}
.ws14e{word-spacing:-15.646966pt;}
.ws109{word-spacing:-15.589581pt;}
.wse{word-spacing:-15.583205pt;}
.ws87{word-spacing:-15.519444pt;}
.wsdb{word-spacing:-15.462059pt;}
.ws58{word-spacing:-15.455683pt;}
.ws2e{word-spacing:-15.270775pt;}
.wsee{word-spacing:-15.264399pt;}
.wsf4{word-spacing:-15.143253pt;}
.ws8e{word-spacing:-15.137839pt;}
.wsce{word-spacing:-15.136877pt;}
.ws174{word-spacing:-15.104997pt;}
.ws6d{word-spacing:-15.079492pt;}
.ws7{word-spacing:-15.073116pt;}
.ws76{word-spacing:-15.015731pt;}
.ws78{word-spacing:-14.951970pt;}
.ws16f{word-spacing:-14.913713pt;}
.wsa6{word-spacing:-14.888209pt;}
.ws159{word-spacing:-14.881833pt;}
.ws3a{word-spacing:-14.824448pt;}
.ws74{word-spacing:-14.760687pt;}
.ws12{word-spacing:-14.696926pt;}
.wsd3{word-spacing:-14.690550pt;}
.ws14{word-spacing:-14.633165pt;}
.wse0{word-spacing:-14.505643pt;}
.ws171{word-spacing:-14.467386pt;}
.ws0{word-spacing:-14.396665pt;}
.ws37{word-spacing:-14.378121pt;}
.ws40{word-spacing:-14.250598pt;}
.ws18{word-spacing:-14.244222pt;}
.ws4e{word-spacing:-14.186837pt;}
.wse4{word-spacing:-14.123076pt;}
.ws44{word-spacing:-14.059315pt;}
.ws7b{word-spacing:-13.995554pt;}
.ws11b{word-spacing:-13.968894pt;}
.ws33{word-spacing:-13.931793pt;}
.ws11e{word-spacing:-13.915760pt;}
.ws68{word-spacing:-13.893536pt;}
.ws15f{word-spacing:-13.868032pt;}
.ws105{word-spacing:-13.804271pt;}
.ws84{word-spacing:-13.670373pt;}
.ws3f{word-spacing:-13.549227pt;}
.wsae{word-spacing:-13.542851pt;}
.ws88{word-spacing:-13.485466pt;}
.ws16d{word-spacing:-13.447209pt;}
.ws15{word-spacing:-13.421705pt;}
.ws7e{word-spacing:-13.357943pt;}
.wsc9{word-spacing:-13.294182pt;}
.ws125{word-spacing:-13.278153pt;}
.wse5{word-spacing:-13.230421pt;}
.ws8d{word-spacing:-13.171886pt;}
.ws6{word-spacing:-13.166660pt;}
.ws106{word-spacing:-13.160284pt;}
.wsdc{word-spacing:-13.102899pt;}
.ws1a{word-spacing:-13.039138pt;}
.wsf9{word-spacing:-13.000881pt;}
.wse2{word-spacing:-12.975377pt;}
.ws165{word-spacing:-12.911616pt;}
.wsed{word-spacing:-12.847855pt;}
.ws12f{word-spacing:-12.841479pt;}
.ws11{word-spacing:-12.784094pt;}
.ws6f{word-spacing:-12.720333pt;}
.ws6e{word-spacing:-12.713957pt;}
.wsc2{word-spacing:-12.656572pt;}
.ws69{word-spacing:-12.618315pt;}
.ws128{word-spacing:-12.592811pt;}
.ws15d{word-spacing:-12.586435pt;}
.ws127{word-spacing:-12.534279pt;}
.ws136{word-spacing:-12.458912pt;}
.ws19{word-spacing:-12.401527pt;}
.wsd6{word-spacing:-12.337766pt;}
.ws152{word-spacing:-12.331390pt;}
.ws67{word-spacing:-12.299510pt;}
.ws100{word-spacing:-12.274005pt;}
.wsb0{word-spacing:-12.076346pt;}
.ws55{word-spacing:-12.018961pt;}
.ws21{word-spacing:-11.948824pt;}
.ws85{word-spacing:-11.891439pt;}
.ws49{word-spacing:-11.827678pt;}
.wsad{word-spacing:-11.763917pt;}
.wsd0{word-spacing:-11.725660pt;}
.ws1b{word-spacing:-11.636395pt;}
.ws124{word-spacing:-11.577870pt;}
.ws10f{word-spacing:-11.572634pt;}
.ws126{word-spacing:-11.524736pt;}
.ws34{word-spacing:-11.508873pt;}
.ws14c{word-spacing:-11.502496pt;}
.ws107{word-spacing:-11.445111pt;}
.ws12b{word-spacing:-11.381350pt;}
.ws130{word-spacing:-11.190067pt;}
.wsd{word-spacing:-11.183691pt;}
.wsc{word-spacing:-11.119930pt;}
.ws14f{word-spacing:-11.062545pt;}
.ws4{word-spacing:-10.935023pt;}
.ws59{word-spacing:-10.871262pt;}
.ws12d{word-spacing:-10.864886pt;}
.ws9{word-spacing:-10.807501pt;}
.ws4b{word-spacing:-10.801125pt;}
.wsa7{word-spacing:-10.769244pt;}
.ws39{word-spacing:-10.743740pt;}
.wsef{word-spacing:-10.679979pt;}
.ws81{word-spacing:-10.673603pt;}
.wsa{word-spacing:-10.616218pt;}
.wsb1{word-spacing:-10.488695pt;}
.wsc5{word-spacing:-10.482319pt;}
.ws1{word-spacing:-10.424934pt;}
.ws1d{word-spacing:-10.361173pt;}
.ws2a{word-spacing:-10.354797pt;}
.ws57{word-spacing:-10.297412pt;}
.ws51{word-spacing:-10.291036pt;}
.ws4f{word-spacing:-10.227275pt;}
.ws5e{word-spacing:-10.169890pt;}
.ws140{word-spacing:-10.163514pt;}
.wsec{word-spacing:-10.143255pt;}
.wsd2{word-spacing:-10.106129pt;}
.ws7d{word-spacing:-10.042368pt;}
.ws38{word-spacing:-9.978607pt;}
.ws2f{word-spacing:-9.914846pt;}
.ws79{word-spacing:-9.851085pt;}
.ws10b{word-spacing:-9.780948pt;}
.wse9{word-spacing:-9.669826pt;}
.wse8{word-spacing:-9.669734pt;}
.wsc8{word-spacing:-9.659802pt;}
.wsf2{word-spacing:-9.621545pt;}
.ws89{word-spacing:-9.611644pt;}
.ws108{word-spacing:-9.596041pt;}
.ws156{word-spacing:-9.589664pt;}
.ws6a{word-spacing:-9.557784pt;}
.ws5b{word-spacing:-9.532279pt;}
.wsc0{word-spacing:-9.525903pt;}
.ws12e{word-spacing:-9.468518pt;}
.ws142{word-spacing:-9.430262pt;}
.ws4a{word-spacing:-9.404757pt;}
.wseb{word-spacing:-9.346247pt;}
.ws4c{word-spacing:-9.340996pt;}
.ws2d{word-spacing:-9.334620pt;}
.ws82{word-spacing:-9.277235pt;}
.ws75{word-spacing:-9.213474pt;}
.ws4d{word-spacing:-9.149713pt;}
.ws2b{word-spacing:-9.022191pt;}
.ws3e{word-spacing:-8.894669pt;}
.ws1e{word-spacing:-8.868042pt;}
.ws101{word-spacing:-8.824532pt;}
.ws8b{word-spacing:-8.814908pt;}
.ws8{word-spacing:-8.767147pt;}
.ws10a{word-spacing:-8.760771pt;}
.wsca{word-spacing:-8.728890pt;}
.ws54{word-spacing:-8.703386pt;}
.ws163{word-spacing:-8.639625pt;}
.wsc4{word-spacing:-8.601368pt;}
.wsde{word-spacing:-8.575863pt;}
.wsfd{word-spacing:-8.512102pt;}
.wsfc{word-spacing:-8.448341pt;}
.ws120{word-spacing:-8.442971pt;}
.ws143{word-spacing:-8.441965pt;}
.ws123{word-spacing:-8.320819pt;}
.ws36{word-spacing:-8.257058pt;}
.ws2c{word-spacing:-8.129536pt;}
.wsea{word-spacing:-8.124168pt;}
.ws5f{word-spacing:-8.065775pt;}
.wsb2{word-spacing:-8.059399pt;}
.ws16b{word-spacing:-8.002014pt;}
.ws17{word-spacing:-7.931877pt;}
.ws11f{word-spacing:-7.805365pt;}
.wsb6{word-spacing:-7.804355pt;}
.ws91{word-spacing:-7.752231pt;}
.wsd4{word-spacing:-7.746970pt;}
.ws102{word-spacing:-7.683209pt;}
.ws133{word-spacing:-7.619447pt;}
.ws7f{word-spacing:-7.613071pt;}
.wsab{word-spacing:-7.581191pt;}
.ws80{word-spacing:-7.528025pt;}
.ws86{word-spacing:-7.485518pt;}
.ws8f{word-spacing:-7.433428pt;}
.ws43{word-spacing:-7.428164pt;}
.ws122{word-spacing:-7.421788pt;}
.ws16c{word-spacing:-7.389908pt;}
.wsc6{word-spacing:-7.364403pt;}
.ws7c{word-spacing:-7.300642pt;}
.wse1{word-spacing:-7.236881pt;}
.wsb4{word-spacing:-7.173120pt;}
.wscd{word-spacing:-7.134863pt;}
.ws3c{word-spacing:-7.102983pt;}
.wsb3{word-spacing:-7.045598pt;}
.ws29{word-spacing:-6.981837pt;}
.ws9e{word-spacing:-6.918076pt;}
.ws154{word-spacing:-6.911700pt;}
.ws16{word-spacing:-6.854315pt;}
.ws9c{word-spacing:-6.847939pt;}
.ws45{word-spacing:-6.790554pt;}
.wsf{word-spacing:-6.726793pt;}
.ws103{word-spacing:-6.720416pt;}
.ws48{word-spacing:-6.663031pt;}
.wsf1{word-spacing:-6.599270pt;}
.wsb{word-spacing:-6.535509pt;}
.ws9a{word-spacing:-6.344226pt;}
.ws158{word-spacing:-6.305969pt;}
.wsfa{word-spacing:-6.280465pt;}
.ws3b{word-spacing:-6.216704pt;}
.ws3d{word-spacing:-6.152943pt;}
.ws72{word-spacing:-6.089182pt;}
.ws16e{word-spacing:-6.050925pt;}
.ws153{word-spacing:-6.025421pt;}
.ws172{word-spacing:-5.987164pt;}
.ws9d{word-spacing:-5.961660pt;}
.wsd5{word-spacing:-5.897899pt;}
.ws15c{word-spacing:-5.834138pt;}
.ws5d{word-spacing:-5.770377pt;}
.ws12c{word-spacing:-5.706615pt;}
.ws71{word-spacing:-5.642854pt;}
.ws50{word-spacing:-5.579093pt;}
.ws141{word-spacing:-5.515332pt;}
.ws5{word-spacing:-5.451571pt;}
.ws173{word-spacing:-5.285792pt;}
.ws53{word-spacing:-5.260288pt;}
.wse3{word-spacing:-5.253912pt;}
.wsbd{word-spacing:-5.190151pt;}
.wsa0{word-spacing:-5.062629pt;}
.ws157{word-spacing:-4.941483pt;}
.ws138{word-spacing:-4.935107pt;}
.ws150{word-spacing:-4.871345pt;}
.ws56{word-spacing:-4.813961pt;}
.ws42{word-spacing:-4.750199pt;}
.ws5a{word-spacing:-4.686438pt;}
.wsdd{word-spacing:-4.558916pt;}
.wsb7{word-spacing:-4.552540pt;}
.wsbe{word-spacing:-4.495155pt;}
.ws13d{word-spacing:-4.488779pt;}
.wsa1{word-spacing:-4.367633pt;}
.ws134{word-spacing:-4.297496pt;}
.ws139{word-spacing:-4.240111pt;}
.ws151{word-spacing:-4.176350pt;}
.wscb{word-spacing:-4.112589pt;}
.ws162{word-spacing:-4.074332pt;}
.ws52{word-spacing:-3.985067pt;}
.ws94{word-spacing:-3.921306pt;}
.wsd8{word-spacing:-3.857545pt;}
.ws97{word-spacing:-3.851168pt;}
.ws144{word-spacing:-3.793783pt;}
.ws114{word-spacing:-3.755654pt;}
.ws135{word-spacing:-3.730022pt;}
.ws14d{word-spacing:-3.723646pt;}
.ws5c{word-spacing:-3.538739pt;}
.wsd9{word-spacing:-3.532363pt;}
.ws90{word-spacing:-3.448388pt;}
.wsf5{word-spacing:-3.411217pt;}
.ws92{word-spacing:-3.404841pt;}
.ws98{word-spacing:-3.347456pt;}
.ws10c{word-spacing:-3.283695pt;}
.wsc3{word-spacing:-3.219934pt;}
.wsa3{word-spacing:-3.181677pt;}
.wsc1{word-spacing:-3.156173pt;}
.wsda{word-spacing:-3.092412pt;}
.ws99{word-spacing:-3.054155pt;}
.ws110{word-spacing:-3.028651pt;}
.ws93{word-spacing:-2.964890pt;}
.ws166{word-spacing:-2.837367pt;}
.ws147{word-spacing:-2.830991pt;}
.wsa8{word-spacing:-2.773606pt;}
.wsff{word-spacing:-2.709845pt;}
.wsac{word-spacing:-2.646084pt;}
.ws11a{word-spacing:-2.545112pt;}
.ws64{word-spacing:-2.327279pt;}
.ws9b{word-spacing:-2.263518pt;}
.ws119{word-spacing:-2.226309pt;}
.wsd7{word-spacing:-2.199757pt;}
.ws27{word-spacing:-2.072235pt;}
.ws15a{word-spacing:-2.065859pt;}
.wsbf{word-spacing:-2.008474pt;}
.wsba{word-spacing:-1.944713pt;}
.wsb9{word-spacing:-1.880951pt;}
.ws15b{word-spacing:-1.817190pt;}
.wsf7{word-spacing:-1.769388pt;}
.ws104{word-spacing:-1.625907pt;}
.ws46{word-spacing:-1.498385pt;}
.ws47{word-spacing:-1.370863pt;}
.ws66{word-spacing:-1.141323pt;}
.ws155{word-spacing:-0.924535pt;}
.wsbc{word-spacing:-0.733252pt;}
.wsaa{word-spacing:-0.726876pt;}
.wsa9{word-spacing:-0.605730pt;}
.ws145{word-spacing:-0.599354pt;}
.ws95{word-spacing:-0.478208pt;}
.ws96{word-spacing:-0.439951pt;}
.ws26{word-spacing:-0.350686pt;}
.wsf0{word-spacing:-0.223164pt;}
.ws129{word-spacing:-0.063761pt;}
.ws111{word-spacing:-0.042507pt;}
.ws11d{word-spacing:-0.037194pt;}
.wsaf{word-spacing:-0.031881pt;}
.ws20{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.159403pt;}
.ws28{word-spacing:0.223164pt;}
.wsf3{word-spacing:0.318805pt;}
.ws25{word-spacing:0.541969pt;}
.ws14a{word-spacing:0.733252pt;}
.ws148{word-spacing:1.817190pt;}
.ws73{word-spacing:1.951089pt;}
.wsfe{word-spacing:2.820346pt;}
.ws13b{word-spacing:3.672637pt;}
.ws146{word-spacing:3.985067pt;}
.wsb8{word-spacing:4.699945pt;}
.ws112{word-spacing:5.271830pt;}
.ws113{word-spacing:5.277761pt;}
.wsf6{word-spacing:9.721679pt;}
.wsa2{word-spacing:10.648098pt;}
.ws8c{word-spacing:12.943497pt;}
.ws13c{word-spacing:13.109275pt;}
.ws1c{word-spacing:14.798944pt;}
.ws115{word-spacing:16.116377pt;}
.ws1f{word-spacing:17.640444pt;}
.ws2{word-spacing:18.968790pt;}
.ws177{word-spacing:21.047528pt;}
.ws116{word-spacing:22.109109pt;}
.ws176{word-spacing:22.794581pt;}
.ws178{word-spacing:22.858342pt;}
.ws149{word-spacing:22.864719pt;}
.ws168{word-spacing:25.510803pt;}
.ws175{word-spacing:25.982635pt;}
.ws167{word-spacing:27.767945pt;}
.ws169{word-spacing:30.292883pt;}
.ws14b{word-spacing:32.365117pt;}
.ws16a{word-spacing:32.932591pt;}
.ws164{word-spacing:35.871976pt;}
.ws22{word-spacing:42.056800pt;}
.ws23{word-spacing:69.729103pt;}
.ws24{word-spacing:74.377284pt;}
._5e{margin-left:-2285.176297pt;}
._a2{margin-left:-2197.244143pt;}
._39{margin-left:-2176.238217pt;}
._45{margin-left:-2175.314174pt;}
._4e{margin-left:-2171.128417pt;}
._7b{margin-left:-2167.053877pt;}
._1d{margin-left:-2159.282522pt;}
._20{margin-left:-2158.355935pt;}
._b9{margin-left:-2146.292466pt;}
._7e{margin-left:-2126.899024pt;}
._5{margin-left:-2123.706122pt;}
._46{margin-left:-2117.819520pt;}
._b2{margin-left:-2112.406908pt;}
._78{margin-left:-2109.610295pt;}
._57{margin-left:-2107.688122pt;}
._a{margin-left:-2081.557415pt;}
._8d{margin-left:-2075.582372pt;}
._71{margin-left:-2073.354155pt;}
._96{margin-left:-2058.478799pt;}
._6d{margin-left:-2043.956299pt;}
._54{margin-left:-2041.187201pt;}
._95{margin-left:-2038.544522pt;}
._63{margin-left:-2035.578857pt;}
._53{margin-left:-2029.340395pt;}
._13{margin-left:-2021.791553pt;}
._84{margin-left:-2017.370674pt;}
._7d{margin-left:-2014.377981pt;}
._ba{margin-left:-2006.763757pt;}
._29{margin-left:-2002.749537pt;}
._1c{margin-left:-2000.579952pt;}
._68{margin-left:-1988.490202pt;}
._69{margin-left:-1972.550339pt;}
._bd{margin-left:-1968.992719pt;}
._14{margin-left:-1968.095450pt;}
._85{margin-left:-1953.317497pt;}
._72{margin-left:-1948.443260pt;}
._83{margin-left:-1940.924655pt;}
._4f{margin-left:-1934.749617pt;}
._27{margin-left:-1932.940142pt;}
._5b{margin-left:-1923.989950pt;}
._2{margin-left:-1917.166734pt;}
._92{margin-left:-1895.167287pt;}
._90{margin-left:-1890.978672pt;}
._62{margin-left:-1889.742924pt;}
._c0{margin-left:-1865.235103pt;}
._32{margin-left:-1840.120528pt;}
._3b{margin-left:-1829.357532pt;}
._4{margin-left:-1808.699208pt;}
._73{margin-left:-1799.806510pt;}
._2b{margin-left:-1790.581699pt;}
._9b{margin-left:-1770.223898pt;}
._56{margin-left:-1741.184798pt;}
._55{margin-left:-1734.120848pt;}
._43{margin-left:-1732.324155pt;}
._3e{margin-left:-1724.533984pt;}
._be{margin-left:-1716.528538pt;}
._60{margin-left:-1694.065578pt;}
._8a{margin-left:-1687.232123pt;}
._6e{margin-left:-1667.670423pt;}
._64{margin-left:-1659.226531pt;}
._3f{margin-left:-1653.701819pt;}
._99{margin-left:-1642.611833pt;}
._33{margin-left:-1640.163842pt;}
._40{margin-left:-1631.138442pt;}
._51{margin-left:-1592.438883pt;}
._a8{margin-left:-1590.942835pt;}
._b8{margin-left:-1588.633908pt;}
._61{margin-left:-1587.666082pt;}
._36{margin-left:-1585.212754pt;}
._bf{margin-left:-1551.080918pt;}
._30{margin-left:-1534.570802pt;}
._8{margin-left:-1529.137735pt;}
._76{margin-left:-1505.085651pt;}
._24{margin-left:-1471.224586pt;}
._34{margin-left:-1453.709789pt;}
._2f{margin-left:-1447.979943pt;}
._47{margin-left:-1436.804561pt;}
._75{margin-left:-1428.324047pt;}
._9d{margin-left:-1424.302719pt;}
._38{margin-left:-1420.275626pt;}
._37{margin-left:-1419.381833pt;}
._6{margin-left:-1415.246296pt;}
._80{margin-left:-1375.071096pt;}
._9a{margin-left:-1341.424381pt;}
._4d{margin-left:-1313.735085pt;}
._97{margin-left:-1310.155785pt;}
._87{margin-left:-1304.019068pt;}
._77{margin-left:-1298.262381pt;}
._af{margin-left:-1291.911937pt;}
._6a{margin-left:-1283.491272pt;}
._3d{margin-left:-1279.357225pt;}
._ad{margin-left:-1277.021801pt;}
._b6{margin-left:-1272.464445pt;}
._15{margin-left:-1267.988724pt;}
._5f{margin-left:-1249.019228pt;}
._2d{margin-left:-1240.256095pt;}
._74{margin-left:-1235.864032pt;}
._a9{margin-left:-1234.821721pt;}
._3c{margin-left:-1226.353630pt;}
._a1{margin-left:-1224.771843pt;}
._6b{margin-left:-1218.303257pt;}
._50{margin-left:-1212.057210pt;}
._41{margin-left:-1158.372099pt;}
._21{margin-left:-1152.068163pt;}
._6c{margin-left:-1144.192066pt;}
._5a{margin-left:-1112.940841pt;}
._9e{margin-left:-1108.871012pt;}
._8b{margin-left:-1090.390686pt;}
._b3{margin-left:-1082.807152pt;}
._82{margin-left:-1063.347483pt;}
._6f{margin-left:-1060.939645pt;}
._91{margin-left:-1012.988759pt;}
._1f{margin-left:-1009.681591pt;}
._bc{margin-left:-994.290074pt;}
._a3{margin-left:-955.495302pt;}
._94{margin-left:-951.384887pt;}
._a0{margin-left:-947.199584pt;}
._7c{margin-left:-944.397039pt;}
._b5{margin-left:-872.378082pt;}
._70{margin-left:-823.414253pt;}
._4c{margin-left:-798.855625pt;}
._25{margin-left:-792.298852pt;}
._98{margin-left:-783.304704pt;}
._5d{margin-left:-756.013488pt;}
._31{margin-left:-722.572288pt;}
._c1{margin-left:-717.726447pt;}
._b0{margin-left:-712.873826pt;}
._5c{margin-left:-706.635859pt;}
._ac{margin-left:-669.140514pt;}
._58{margin-left:-664.964164pt;}
._3a{margin-left:-663.242615pt;}
._52{margin-left:-660.188928pt;}
._44{margin-left:-654.978778pt;}
._81{margin-left:-627.221451pt;}
._b4{margin-left:-615.393773pt;}
._ae{margin-left:-586.988218pt;}
._67{margin-left:-581.790859pt;}
._b7{margin-left:-574.455330pt;}
._b1{margin-left:-561.990042pt;}
._49{margin-left:-554.721280pt;}
._86{margin-left:-552.684764pt;}
._65{margin-left:-531.516090pt;}
._2c{margin-left:-511.243908pt;}
._35{margin-left:-468.487443pt;}
._66{margin-left:-464.563132pt;}
._bb{margin-left:-461.566362pt;}
._2a{margin-left:-446.808681pt;}
._9f{margin-left:-435.396282pt;}
._4a{margin-left:-411.513924pt;}
._88{margin-left:-398.666069pt;}
._59{margin-left:-379.952196pt;}
._26{margin-left:-359.197969pt;}
._b{margin-left:-344.150357pt;}
._79{margin-left:-329.325909pt;}
._28{margin-left:-246.500284pt;}
._1b{margin-left:-18.582490pt;}
._0{margin-left:-7.161606pt;}
._e{margin-left:-6.121062pt;}
._d{margin-left:-5.200365pt;}
._7{margin-left:-3.408211pt;}
._1{margin-left:-2.387202pt;}
._9{margin-left:-1.381481pt;}
._10{width:1.374701pt;}
._3{width:2.387202pt;}
._f{width:3.606338pt;}
._9c{width:4.682601pt;}
._93{width:14.983750pt;}
._8c{width:16.131550pt;}
._1e{width:17.377833pt;}
._12{width:19.135100pt;}
._a4{width:20.240301pt;}
._c{width:21.196717pt;}
._22{width:22.259392pt;}
._11{width:23.272789pt;}
._1a{width:24.484250pt;}
._4b{width:26.042558pt;}
._aa{width:27.197037pt;}
._19{width:28.246153pt;}
._23{width:29.400631pt;}
._48{width:31.143443pt;}
._89{width:33.522587pt;}
._42{width:35.791157pt;}
._7f{width:37.691234pt;}
._a5{width:40.835125pt;}
._7a{width:45.463305pt;}
._ab{width:47.530037pt;}
._a7{width:59.489075pt;}
._2e{width:63.761067pt;}
._a6{width:67.331686pt;}
._18{width:71.818703pt;}
._8e{width:101.494729pt;}
._17{width:106.537067pt;}
._16{width:121.337310pt;}
._8f{width:167.508088pt;}
.fs1{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:42.573902pt;}
.fs5{font-size:53.133867pt;}
.fs8{font-size:58.181309pt;}
.fs7{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:104.424000pt;}
.y38{bottom:119.817333pt;}
.y1f{bottom:125.184000pt;}
.y7d{bottom:159.668000pt;}
.y5d{bottom:166.973333pt;}
.y95{bottom:168.966667pt;}
.yef{bottom:171.622667pt;}
.y140{bottom:172.286667pt;}
.y18d{bottom:177.928000pt;}
.y7c{bottom:178.929333pt;}
.y1e{bottom:180.316000pt;}
.y5c{bottom:186.234667pt;}
.yee{bottom:190.884000pt;}
.y13f{bottom:191.548000pt;}
.y94{bottom:194.869333pt;}
.y12b{bottom:195.437333pt;}
.y18c{bottom:197.189333pt;}
.y7b{bottom:198.190667pt;}
.y1d{bottom:199.577333pt;}
.yd7{bottom:202.840000pt;}
.y5b{bottom:205.496000pt;}
.y13e{bottom:210.809333pt;}
.y7a{bottom:217.450667pt;}
.y1c{bottom:218.838667pt;}
.y93{bottom:220.772000pt;}
.yd6{bottom:222.100000pt;}
.yed{bottom:223.429333pt;}
.y5a{bottom:224.757333pt;}
.y12a{bottom:227.982667pt;}
.y18b{bottom:229.733333pt;}
.y79{bottom:236.712000pt;}
.yd5{bottom:241.361333pt;}
.yec{bottom:242.689333pt;}
.y13d{bottom:243.354667pt;}
.y59{bottom:244.018667pt;}
.y1b{bottom:247.173333pt;}
.y18a{bottom:248.994667pt;}
.y1b9{bottom:250.372000pt;}
.y92{bottom:253.317333pt;}
.ybe{bottom:255.973333pt;}
.y129{bottom:260.526667pt;}
.yd4{bottom:260.622667pt;}
.yeb{bottom:261.950667pt;}
.y58{bottom:263.280000pt;}
.y13c{bottom:263.944000pt;}
.y1a{bottom:266.433333pt;}
.y78{bottom:267.680000pt;}
.y189{bottom:269.584000pt;}
.y1b8{bottom:269.633333pt;}
.y91{bottom:272.577333pt;}
.ybd{bottom:275.234667pt;}
.y57{bottom:282.540000pt;}
.y19{bottom:285.694667pt;}
.y77{bottom:286.941333pt;}
.y1b7{bottom:291.525333pt;}
.y128{bottom:293.072000pt;}
.yd3{bottom:293.166667pt;}
.yea{bottom:294.496000pt;}
.y13b{bottom:300.473333pt;}
.y56{bottom:301.801333pt;}
.y188{bottom:304.785333pt;}
.y18{bottom:304.956000pt;}
.y90{bottom:305.122667pt;}
.ybc{bottom:305.225333pt;}
.y127{bottom:312.332000pt;}
.yd2{bottom:312.428000pt;}
.ye9{bottom:313.757333pt;}
.y1d0{bottom:316.318667pt;}
.y13a{bottom:319.734667pt;}
.y55{bottom:321.062667pt;}
.y187{bottom:324.046667pt;}
.y17{bottom:324.217333pt;}
.y1e2{bottom:324.384000pt;}
.ybb{bottom:324.486667pt;}
.y1b6{bottom:325.373333pt;}
.y76{bottom:329.862667pt;}
.y8f{bottom:331.025333pt;}
.yd1{bottom:331.689333pt;}
.ye8{bottom:333.017333pt;}
.y53{bottom:340.324000pt;}
.y186{bottom:343.308000pt;}
.y16{bottom:343.478667pt;}
.y1e1{bottom:343.645333pt;}
.yba{bottom:343.748000pt;}
.y1b5{bottom:344.634667pt;}
.y16c{bottom:346.201333pt;}
.y54{bottom:347.185333pt;}
.y126{bottom:348.862667pt;}
.y75{bottom:349.124000pt;}
.y1cf{bottom:350.097333pt;}
.yd0{bottom:350.950667pt;}
.y103{bottom:352.278667pt;}
.y8e{bottom:356.928000pt;}
.y52{bottom:359.585333pt;}
.y185{bottom:362.569333pt;}
.y15{bottom:362.740000pt;}
.y1e0{bottom:362.905333pt;}
.yb9{bottom:363.009333pt;}
.y1b4{bottom:363.896000pt;}
.ye7{bottom:365.562667pt;}
.y125{bottom:368.124000pt;}
.y74{bottom:368.385333pt;}
.y1ce{bottom:369.357333pt;}
.y16b{bottom:369.448000pt;}
.y139{bottom:371.540000pt;}
.y102{bottom:372.868000pt;}
.y51{bottom:378.846667pt;}
.y14{bottom:382.000000pt;}
.yb8{bottom:382.270667pt;}
.y1b3{bottom:383.156000pt;}
.ycf{bottom:383.494667pt;}
.ye6{bottom:384.824000pt;}
.y73{bottom:387.646667pt;}
.y1cd{bottom:388.618667pt;}
.y8d{bottom:389.473333pt;}
.y124{bottom:391.369333pt;}
.y101{bottom:392.129333pt;}
.y184{bottom:395.113333pt;}
.y1df{bottom:395.450667pt;}
.y50{bottom:398.106667pt;}
.y13{bottom:401.261333pt;}
.y1b2{bottom:402.417333pt;}
.yce{bottom:402.756000pt;}
.y138{bottom:404.084000pt;}
.y16a{bottom:404.649333pt;}
.y72{bottom:406.908000pt;}
.y1cc{bottom:407.880000pt;}
.ye5{bottom:408.069333pt;}
.y8c{bottom:408.733333pt;}
.yb7{bottom:412.261333pt;}
.y1de{bottom:414.712000pt;}
.y4f{bottom:417.368000pt;}
.y12{bottom:420.522667pt;}
.y1b1{bottom:421.678667pt;}
.ycd{bottom:422.017333pt;}
.y137{bottom:423.345333pt;}
.y169{bottom:423.910667pt;}
.y37{bottom:424.650667pt;}
.y153{bottom:426.002667pt;}
.y71{bottom:426.168000pt;}
.y100{bottom:426.278667pt;}
.y123{bottom:426.570667pt;}
.y1cb{bottom:427.141333pt;}
.y183{bottom:427.658667pt;}
.yb6{bottom:431.522667pt;}
.y19c{bottom:431.980000pt;}
.y1dd{bottom:433.972000pt;}
.y4e{bottom:436.629333pt;}
.y11{bottom:439.784000pt;}
.y1b0{bottom:440.940000pt;}
.y36{bottom:440.978667pt;}
.y8b{bottom:441.278667pt;}
.y168{bottom:443.172000pt;}
.ye4{bottom:443.270667pt;}
.y152{bottom:445.264000pt;}
.y70{bottom:445.429333pt;}
.yff{bottom:445.540000pt;}
.y122{bottom:445.832000pt;}
.y1ca{bottom:446.402667pt;}
.y110{bottom:448.584000pt;}
.yb5{bottom:450.784000pt;}
.y1dc{bottom:453.233333pt;}
.ycc{bottom:454.562667pt;}
.y4d{bottom:455.890667pt;}
.y10{bottom:459.045333pt;}
.y1af{bottom:460.201333pt;}
.y182{bottom:460.202667pt;}
.y35{bottom:460.238667pt;}
.y167{bottom:462.432000pt;}
.ye3{bottom:462.532000pt;}
.y151{bottom:464.524000pt;}
.y6f{bottom:464.690667pt;}
.y121{bottom:465.093333pt;}
.y1c9{bottom:465.662667pt;}
.y8a{bottom:467.181333pt;}
.y10f{bottom:467.845333pt;}
.yb4{bottom:470.044000pt;}
.ycb{bottom:473.822667pt;}
.y4c{bottom:475.152000pt;}
.yfe{bottom:477.384000pt;}
.yf{bottom:478.305333pt;}
.y34{bottom:479.500000pt;}
.ye2{bottom:481.793333pt;}
.y1ae{bottom:482.093333pt;}
.y150{bottom:483.785333pt;}
.y120{bottom:484.354667pt;}
.y1c8{bottom:484.924000pt;}
.y1db{bottom:485.778667pt;}
.y19b{bottom:486.442667pt;}
.y10e{bottom:487.106667pt;}
.yb3{bottom:489.460000pt;}
.y181{bottom:492.748000pt;}
.y89{bottom:493.084000pt;}
.y166{bottom:493.649333pt;}
.y1d1{bottom:494.412000pt;}
.y4b{bottom:494.413333pt;}
.y136{bottom:495.741333pt;}
.yfd{bottom:496.645333pt;}
.y6e{bottom:496.737333pt;}
.ye{bottom:497.566667pt;}
.y33{bottom:498.761333pt;}
.y11f{bottom:503.614667pt;}
.y1c7{bottom:504.185333pt;}
.y1da{bottom:505.040000pt;}
.y10d{bottom:506.368000pt;}
.y1ad{bottom:511.956000pt;}
.ye1{bottom:513.009333pt;}
.y4a{bottom:513.673333pt;}
.y6d{bottom:515.998667pt;}
.y14f{bottom:516.330667pt;}
.yd{bottom:516.828000pt;}
.y32{bottom:518.022667pt;}
.y19a{bottom:518.986667pt;}
.y11e{bottom:522.876000pt;}
.y1c6{bottom:523.446667pt;}
.y1d9{bottom:524.300000pt;}
.yb2{bottom:524.793333pt;}
.y180{bottom:525.292000pt;}
.y88{bottom:525.629333pt;}
.yfc{bottom:528.488000pt;}
.yca{bottom:529.613333pt;}
.y165{bottom:531.506667pt;}
.y135{bottom:532.270667pt;}
.y49{bottom:532.934667pt;}
.y6c{bottom:535.260000pt;}
.y14e{bottom:535.592000pt;}
.yc{bottom:536.089333pt;}
.y31{bottom:537.284000pt;}
.y199{bottom:538.248000pt;}
.yb1{bottom:540.734667pt;}
.y1c5{bottom:542.708000pt;}
.y17f{bottom:544.553333pt;}
.y87{bottom:544.889333pt;}
.y10c{bottom:544.890667pt;}
.y164{bottom:547.446667pt;}
.yc9{bottom:548.874667pt;}
.y48{bottom:552.196000pt;}
.y11d{bottom:554.092000pt;}
.y6b{bottom:554.520000pt;}
.y14d{bottom:554.852000pt;}
.yb{bottom:555.350667pt;}
.ye0{bottom:556.181333pt;}
.y30{bottom:556.545333pt;}
.yb0{bottom:556.674667pt;}
.y1d8{bottom:556.845333pt;}
.yfb{bottom:560.332000pt;}
.y163{bottom:563.388000pt;}
.y1ac{bottom:563.545333pt;}
.y10b{bottom:564.150667pt;}
.y1c4{bottom:564.530667pt;}
.y134{bottom:564.814667pt;}
.y17e{bottom:565.142667pt;}
.yc8{bottom:568.136000pt;}
.y198{bottom:570.793333pt;}
.y47{bottom:571.457333pt;}
.yaf{bottom:572.614667pt;}
.y6a{bottom:573.781333pt;}
.y14c{bottom:574.113333pt;}
.ya{bottom:574.612000pt;}
.ydf{bottom:575.442667pt;}
.y2f{bottom:575.805333pt;}
.y1d7{bottom:576.106667pt;}
.y86{bottom:577.434667pt;}
.y162{bottom:579.328000pt;}
.y1ab{bottom:582.806667pt;}
.y10a{bottom:583.412000pt;}
.yc7{bottom:587.397333pt;}
.y17d{bottom:588.389333pt;}
.y197{bottom:590.053333pt;}
.y46{bottom:590.718667pt;}
.yfa{bottom:590.773333pt;}
.y69{bottom:593.042667pt;}
.y9{bottom:593.872000pt;}
.yde{bottom:594.702667pt;}
.y2e{bottom:595.066667pt;}
.y161{bottom:595.268000pt;}
.y1d6{bottom:595.368000pt;}
.y1c3{bottom:597.265333pt;}
.y133{bottom:597.360000pt;}
.y11c{bottom:599.846667pt;}
.y1aa{bottom:602.068000pt;}
.y109{bottom:602.673333pt;}
.y85{bottom:603.337333pt;}
.y14b{bottom:606.658667pt;}
.y45{bottom:609.978667pt;}
.yc6{bottom:610.644000pt;}
.yf9{bottom:612.968000pt;}
.ydd{bottom:613.964000pt;}
.y11b{bottom:615.786667pt;}
.y1c2{bottom:616.526667pt;}
.y132{bottom:616.621333pt;}
.y8{bottom:618.446667pt;}
.y1a9{bottom:621.329333pt;}
.y108{bottom:621.934667pt;}
.y196{bottom:622.598667pt;}
.y2d{bottom:623.076000pt;}
.y68{bottom:625.089333pt;}
.y14a{bottom:625.920000pt;}
.yae{bottom:627.849333pt;}
.y1d5{bottom:627.912000pt;}
.y44{bottom:629.240000pt;}
.y17c{bottom:629.566667pt;}
.yc5{bottom:629.904000pt;}
.y11a{bottom:631.726667pt;}
.y1c1{bottom:635.786667pt;}
.yad{bottom:637.148000pt;}
.y131{bottom:637.210667pt;}
.y1a8{bottom:640.590667pt;}
.y107{bottom:641.196000pt;}
.y195{bottom:641.860000pt;}
.y67{bottom:644.350667pt;}
.y149{bottom:645.180000pt;}
.y17b{bottom:645.506667pt;}
.ydc{bottom:646.509333pt;}
.yf8{bottom:647.117333pt;}
.y1d4{bottom:647.173333pt;}
.y119{bottom:647.666667pt;}
.y43{bottom:648.501333pt;}
.y156{bottom:651.781333pt;}
.y2c{bottom:653.028000pt;}
.y1c0{bottom:655.048000pt;}
.y15b{bottom:657.589333pt;}
.y1a7{bottom:659.850667pt;}
.y106{bottom:660.456000pt;}
.y17a{bottom:661.448000pt;}
.y84{bottom:661.785333pt;}
.y154{bottom:663.281333pt;}
.y148{bottom:664.441333pt;}
.ydb{bottom:665.770667pt;}
.yf7{bottom:666.378667pt;}
.yc4{bottom:666.434667pt;}
.y42{bottom:667.762667pt;}
.y2b{bottom:670.241333pt;}
.ya6{bottom:670.669333pt;}
.y130{bottom:673.740000pt;}
.y1bf{bottom:674.309333pt;}
.y194{bottom:674.404000pt;}
.y157{bottom:674.968000pt;}
.y66{bottom:675.317333pt;}
.y1a6{bottom:679.112000pt;}
.y105{bottom:679.717333pt;}
.yac{bottom:679.930667pt;}
.y83{bottom:681.046667pt;}
.y160{bottom:681.498667pt;}
.y147{bottom:683.702667pt;}
.yda{bottom:685.030667pt;}
.y99{bottom:685.684000pt;}
.yc3{bottom:685.696000pt;}
.ya5{bottom:686.609333pt;}
.y41{bottom:687.024000pt;}
.y113{bottom:688.068000pt;}
.y2a{bottom:689.502667pt;}
.y12f{bottom:693.001333pt;}
.y1be{bottom:693.570667pt;}
.y193{bottom:693.665333pt;}
.yab{bottom:695.870667pt;}
.y7{bottom:696.322667pt;}
.yf6{bottom:698.222667pt;}
.y1a5{bottom:698.373333pt;}
.y158{bottom:698.390667pt;}
.y104{bottom:698.978667pt;}
.y15f{bottom:699.564000pt;}
.ya4{bottom:702.549333pt;}
.yd9{bottom:704.292000pt;}
.yc2{bottom:704.956000pt;}
.y40{bottom:706.285333pt;}
.y29{bottom:708.762667pt;}
.y16f{bottom:709.928000pt;}
.y192{bottom:714.254667pt;}
.y146{bottom:716.248000pt;}
.y6{bottom:717.082667pt;}
.yf5{bottom:717.484000pt;}
.y82{bottom:717.576000pt;}
.y1a4{bottom:717.634667pt;}
.y111{bottom:717.941333pt;}
.y65{bottom:718.240000pt;}
.y15a{bottom:720.685333pt;}
.yc1{bottom:724.217333pt;}
.y1bd{bottom:725.166667pt;}
.y3f{bottom:725.545333pt;}
.ya3{bottom:727.362667pt;}
.y28{bottom:728.024000pt;}
.y175{bottom:730.014667pt;}
.y145{bottom:735.508000pt;}
.yaa{bottom:736.624000pt;}
.y81{bottom:736.837333pt;}
.y1a3{bottom:736.896000pt;}
.y64{bottom:737.501333pt;}
.y177{bottom:737.633333pt;}
.y5{bottom:741.486667pt;}
.ya2{bottom:743.302667pt;}
.yc0{bottom:743.478667pt;}
.y98{bottom:743.925333pt;}
.y1bc{bottom:744.428000pt;}
.y3e{bottom:744.806667pt;}
.y118{bottom:745.256000pt;}
.y27{bottom:747.285333pt;}
.y174{bottom:748.080000pt;}
.yf4{bottom:749.326667pt;}
.y191{bottom:749.456000pt;}
.y1d3{bottom:750.784000pt;}
.y159{bottom:750.802667pt;}
.ya9{bottom:752.564000pt;}
.y144{bottom:754.769333pt;}
.y176{bottom:755.698667pt;}
.y80{bottom:756.097333pt;}
.y1a2{bottom:756.157333pt;}
.y63{bottom:756.762667pt;}
.y15e{bottom:757.577333pt;}
.y12e{bottom:758.090667pt;}
.y114{bottom:758.368000pt;}
.ya1{bottom:759.242667pt;}
.ybf{bottom:762.740000pt;}
.y117{bottom:763.322667pt;}
.y1bb{bottom:763.688000pt;}
.y3d{bottom:764.068000pt;}
.y173{bottom:766.145333pt;}
.y26{bottom:766.546667pt;}
.y190{bottom:768.717333pt;}
.y1d2{bottom:770.045333pt;}
.y9a{bottom:772.628000pt;}
.y116{bottom:772.785333pt;}
.y143{bottom:774.030667pt;}
.y7f{bottom:775.358667pt;}
.y1a1{bottom:775.417333pt;}
.y15d{bottom:775.642667pt;}
.y62{bottom:776.022667pt;}
.y12d{bottom:778.680000pt;}
.yd8{bottom:779.344000pt;}
.yf3{bottom:781.170667pt;}
.y1ba{bottom:782.949333pt;}
.y3c{bottom:783.329333pt;}
.ya0{bottom:784.054667pt;}
.y4{bottom:784.657333pt;}
.y16e{bottom:785.518667pt;}
.y25{bottom:785.808000pt;}
.y142{bottom:793.292000pt;}
.y15c{bottom:793.708000pt;}
.y1a0{bottom:794.678667pt;}
.y61{bottom:795.284000pt;}
.y7e{bottom:798.605333pt;}
.y97{bottom:799.069333pt;}
.y9f{bottom:799.994667pt;}
.yf2{bottom:800.432000pt;}
.y18f{bottom:801.261333pt;}
.y3b{bottom:802.590667pt;}
.y24{bottom:805.069333pt;}
.y115{bottom:805.468000pt;}
.y172{bottom:805.604000pt;}
.y179{bottom:813.224000pt;}
.y3{bottom:813.881333pt;}
.y60{bottom:814.545333pt;}
.y9e{bottom:815.936000pt;}
.y18e{bottom:820.522667pt;}
.y3a{bottom:821.852000pt;}
.y19f{bottom:821.925333pt;}
.y171{bottom:823.670667pt;}
.y23{bottom:824.329333pt;}
.y155{bottom:828.164000pt;}
.y141{bottom:829.821333pt;}
.yf1{bottom:830.873333pt;}
.y178{bottom:831.289333pt;}
.y5f{bottom:833.806667pt;}
.y39{bottom:841.112000pt;}
.y19e{bottom:841.185333pt;}
.y170{bottom:841.736000pt;}
.y9d{bottom:842.038667pt;}
.y2{bottom:843.105333pt;}
.y22{bottom:843.590667pt;}
.y12c{bottom:849.082667pt;}
.ya8{bottom:850.009333pt;}
.yf0{bottom:850.134667pt;}
.y5e{bottom:853.068000pt;}
.y96{bottom:855.762667pt;}
.y112{bottom:855.840000pt;}
.y9c{bottom:857.978667pt;}
.y16d{bottom:861.109333pt;}
.y19d{bottom:865.025333pt;}
.ya7{bottom:865.949333pt;}
.y21{bottom:871.598667pt;}
.y1{bottom:872.329333pt;}
.y9b{bottom:873.920000pt;}
.h4{height:18.816982pt;}
.h7{height:20.623534pt;}
.h3{height:21.646882pt;}
.hc{height:22.443895pt;}
.ha{height:31.973000pt;}
.h5{height:38.096982pt;}
.h8{height:39.903534pt;}
.h13{height:40.494579pt;}
.h10{height:41.076004pt;}
.hb{height:41.076398pt;}
.he{height:43.636400pt;}
.h11{height:47.820800pt;}
.h6{height:47.884561pt;}
.hd{height:50.031576pt;}
.h2{height:53.103576pt;}
.h9{height:55.016400pt;}
.h12{height:55.021733pt;}
.h1{height:68.861600pt;}
.hf{height:89.684400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:121.822667pt;}
.xd{left:126.056000pt;}
.x6{left:130.289333pt;}
.x9{left:147.805333pt;}
.x3{left:152.448000pt;}
.x3f{left:155.608000pt;}
.x8{left:162.932000pt;}
.x3e{left:163.841333pt;}
.xa{left:165.604000pt;}
.x24{left:166.877333pt;}
.xc{left:168.593333pt;}
.xb{left:171.710667pt;}
.x1f{left:173.884000pt;}
.x1b{left:177.425333pt;}
.x12{left:179.678667pt;}
.x19{left:185.134667pt;}
.x11{left:186.816000pt;}
.x23{left:189.240000pt;}
.x1d{left:201.845333pt;}
.x1{left:204.098667pt;}
.x13{left:205.541333pt;}
.x1a{left:206.678667pt;}
.x2c{left:208.173333pt;}
.x39{left:214.004000pt;}
.x3b{left:223.237333pt;}
.x1c{left:225.454667pt;}
.x18{left:228.590667pt;}
.x2{left:231.208000pt;}
.x1e{left:233.644000pt;}
.x3a{left:245.825333pt;}
.x38{left:255.068000pt;}
.x27{left:284.096000pt;}
.x7{left:300.928000pt;}
.x31{left:302.749333pt;}
.x36{left:305.734667pt;}
.x5{left:307.596000pt;}
.x30{left:313.194667pt;}
.x2b{left:318.760000pt;}
.x22{left:322.385333pt;}
.x21{left:324.036000pt;}
.x4{left:329.564000pt;}
.x2f{left:330.688000pt;}
.x2a{left:335.433333pt;}
.x2e{left:337.142667pt;}
.x28{left:366.433333pt;}
.x26{left:390.274667pt;}
.x25{left:399.032000pt;}
.xe{left:402.933333pt;}
.xf{left:406.661333pt;}
.x15{left:408.070667pt;}
.x14{left:410.852000pt;}
.x10{left:412.296000pt;}
.x3d{left:414.804000pt;}
.x32{left:416.740000pt;}
.x16{left:420.074667pt;}
.x29{left:427.854667pt;}
.x37{left:455.016000pt;}
.x17{left:463.456000pt;}
.x35{left:548.418667pt;}
.x33{left:558.864000pt;}
.x34{left:570.113333pt;}
.x20{left:606.549333pt;}
.x2d{left:654.074667pt;}
}




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