
    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_570298b7dcd9e672f14102cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.147461;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_30f7fba95dc4c0a56737cbeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.878906;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_0e491464bcd67468b669ffdf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_aae2e2a0fda1871fe5e9b6b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173340;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_ca5d0f8fb03220e9e1cfff7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_74f6c405e8fc9f7a363273a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.040000;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_fad853c9f930ea052ed55317.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a09a84c47a3d64337167f2db.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ba28ab8a374811031396e3c6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ecb50283f6e5faa35a4de868.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.497000;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_c38df7b7d462d94c5a54c4fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.806000;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_0ec919c19586f234d74e898a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;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_731733bdb1a7c4a719529a26.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8adf4427023a3c3744f7fab6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685000;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_a5f5d77b513abd90fae10da6.woff2')format("woff");}.fff{font-family:fff;line-height:0.451000;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_3f21d05161874275fdbcae60.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_e39a92bb75dfad66e7728cbb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.459000;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_725dd0ddf0c65607eb9f5f8c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.704000;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_f51d825d9092d0d583947ec4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_de132bbd3290296005f38ff5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919000;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_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.942000;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_da57114ef681952dbcad45c3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.927000;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_7c32e3b0ca3f56cb05c2cc40.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666000;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_2aecea0cc21c7a0eb439f247.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.730000;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_24ccec5d96ee8d73f9c517bb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.052734;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_3caa882eb53fc1178639e4a4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.115000;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_10f29b723777ea7c45cfa057.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_eb4befe48c25e01f87257ba5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_b7751b92c31af66712c697ec.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_9a9460228c1cefcaa145b6e9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.942000;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:ff22;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.919000;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:ff23;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.942000;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:ff24;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.919000;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:ff25;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.942000;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:ff26;src:url('chunks/assets/font_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.942000;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:ff28;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.919000;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:ff29;src:url('chunks/assets/font_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.942000;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:ff2b;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.919000;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:ff2c;src:url('chunks/assets/font_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_a7cd6bffca8ac493f32627de.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_559db1ec4e9408a288c4e5a9.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.115000;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:ff2f;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.942000;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:ff30;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.919000;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:ff31;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.942000;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:ff32;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.919000;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:ff33;src:url('chunks/assets/font_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_d24a23a793622a5e7b940e58.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.128000;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:ff35;src:url('chunks/assets/font_d7a9d1edd4bab8d1e704c4fc.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.115000;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:ff36;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.919000;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:ff37;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.942000;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:ff38;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.919000;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:ff39;src:url('chunks/assets/font_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.942000;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:ff3b;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.942000;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:ff3c;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.919000;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:ff3d;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.942000;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:ff3e;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.919000;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:ff3f;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.919000;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:ff40;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.942000;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:ff41;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.942000;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:ff42;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.919000;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:ff43;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.919000;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:ff44;src:url('chunks/assets/font_eb6010396d924372a7a5c4ca.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-37.908000px;}
.v2{vertical-align:-26.028000px;}
.v3{vertical-align:-23.760600px;}
.v7{vertical-align:-1.846309px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:26.028000px;}
.v5{vertical-align:35.911339px;}
.ls4c{letter-spacing:-5.385220px;}
.ls4b{letter-spacing:-5.379840px;}
.ls1d{letter-spacing:-5.227395px;}
.ls68{letter-spacing:-3.560832px;}
.ls72{letter-spacing:-3.486648px;}
.ls75{letter-spacing:-3.203374px;}
.ls61{letter-spacing:-3.115728px;}
.ls76{letter-spacing:-2.967360px;}
.ls6c{letter-spacing:-2.687328px;}
.ls6e{letter-spacing:-2.504096px;}
.ls63{letter-spacing:-2.264467px;}
.ls5c{letter-spacing:-2.026714px;}
.ls74{letter-spacing:-1.973299px;}
.ls73{letter-spacing:-1.926011px;}
.ls6f{letter-spacing:-1.805279px;}
.ls6d{letter-spacing:-1.747044px;}
.ls65{letter-spacing:-1.724778px;}
.ls71{letter-spacing:-1.717830px;}
.ls70{letter-spacing:-1.627420px;}
.ls5e{letter-spacing:-1.626970px;}
.ls32{letter-spacing:-1.610958px;}
.ls64{letter-spacing:-1.609793px;}
.ls62{letter-spacing:-1.585694px;}
.ls66{letter-spacing:-1.573169px;}
.ls6b{letter-spacing:-1.570853px;}
.ls6a{letter-spacing:-1.428048px;}
.ls67{letter-spacing:-1.410427px;}
.ls5f{letter-spacing:-1.152437px;}
.ls69{letter-spacing:-1.043220px;}
.ls5d{letter-spacing:-1.001491px;}
.ls60{letter-spacing:-0.724339px;}
.ls1e{letter-spacing:-0.026301px;}
.ls57{letter-spacing:-0.023910px;}
.ls1b{letter-spacing:-0.019726px;}
.ls58{letter-spacing:-0.017933px;}
.lse{letter-spacing:-0.014346px;}
.ls1a{letter-spacing:-0.013151px;}
.lsb{letter-spacing:-0.007173px;}
.ls11{letter-spacing:-0.006575px;}
.ls9{letter-spacing:-0.005380px;}
.ls8{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.001434px;}
.ls7{letter-spacing:0.005380px;}
.ls6{letter-spacing:0.006575px;}
.ls4{letter-spacing:0.007173px;}
.ls42{letter-spacing:0.008392px;}
.ls49{letter-spacing:0.010192px;}
.ls47{letter-spacing:0.011392px;}
.ls50{letter-spacing:0.013082px;}
.ls13{letter-spacing:0.013151px;}
.ls3{letter-spacing:0.014346px;}
.ls0{letter-spacing:0.014944px;}
.ls2f{letter-spacing:0.015718px;}
.ls10{letter-spacing:0.016140px;}
.ls1c{letter-spacing:0.026301px;}
.ls12{letter-spacing:0.065753px;}
.ls30{letter-spacing:0.174456px;}
.ls3e{letter-spacing:0.363432px;}
.ls33{letter-spacing:0.367909px;}
.ls37{letter-spacing:0.368064px;}
.ls45{letter-spacing:0.373023px;}
.ls48{letter-spacing:0.377808px;}
.ls40{letter-spacing:0.378405px;}
.ls17{letter-spacing:2.957261px;}
.ls26{letter-spacing:2.960400px;}
.ls53{letter-spacing:2.970854px;}
.ls34{letter-spacing:2.979518px;}
.ls54{letter-spacing:3.001882px;}
.ls27{letter-spacing:3.014400px;}
.lsf{letter-spacing:3.039610px;}
.lsd{letter-spacing:3.981048px;}
.lsc{letter-spacing:4.031260px;}
.ls28{letter-spacing:6.278697px;}
.ls5{letter-spacing:6.902400px;}
.ls46{letter-spacing:13.438840px;}
.ls3c{letter-spacing:13.444220px;}
.ls39{letter-spacing:13.449600px;}
.ls36{letter-spacing:13.498019px;}
.ls5a{letter-spacing:14.393419px;}
.ls52{letter-spacing:14.962408px;}
.ls25{letter-spacing:14.992579px;}
.ls15{letter-spacing:16.070131px;}
.ls19{letter-spacing:16.392323px;}
.ls18{letter-spacing:16.444925px;}
.ls3b{letter-spacing:18.316118px;}
.ls43{letter-spacing:18.322118px;}
.ls59{letter-spacing:18.851500px;}
.ls14{letter-spacing:18.930404px;}
.ls3f{letter-spacing:19.555718px;}
.ls35{letter-spacing:19.561098px;}
.ls2d{letter-spacing:19.653721px;}
.ls5b{letter-spacing:19.739171px;}
.ls16{letter-spacing:19.798349px;}
.ls1{letter-spacing:20.909700px;}
.ls2{letter-spacing:20.963700px;}
.ls2e{letter-spacing:21.698400px;}
.ls29{letter-spacing:22.711224px;}
.ls55{letter-spacing:24.387936px;}
.ls31{letter-spacing:25.361086px;}
.ls41{letter-spacing:27.603959px;}
.ls38{letter-spacing:27.657757px;}
.ls2c{letter-spacing:28.825547px;}
.ls4a{letter-spacing:32.336400px;}
.lsa{letter-spacing:37.330012px;}
.ls2a{letter-spacing:93.135790px;}
.ls2b{letter-spacing:93.141170px;}
.ls44{letter-spacing:163.224346px;}
.ls4d{letter-spacing:172.063423px;}
.ls3d{letter-spacing:282.215647px;}
.ls56{letter-spacing:293.895843px;}
.ls23{letter-spacing:294.017261px;}
.ls4e{letter-spacing:305.519261px;}
.ls4f{letter-spacing:405.175082px;}
.ls51{letter-spacing:442.287846px;}
.ls24{letter-spacing:573.089261px;}
.ls20{letter-spacing:714.623261px;}
.ls22{letter-spacing:779.423261px;}
.ls1f{letter-spacing:1174.757261px;}
.ls21{letter-spacing:1204.133261px;}
.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;}
}
.wse0{word-spacing:-185.513023px;}
.wsde{word-spacing:-176.673946px;}
.wsf7{word-spacing:-127.016244px;}
.ws4{word-spacing:-74.689912px;}
.wsa7{word-spacing:-41.799436px;}
.ws162{word-spacing:-36.177521px;}
.ws147{word-spacing:-35.289850px;}
.ws156{word-spacing:-30.831769px;}
.ws167{word-spacing:-22.101000px;}
.ws8{word-spacing:-21.913698px;}
.ws62{word-spacing:-21.796382px;}
.ws11{word-spacing:-17.946996px;}
.ws9{word-spacing:-17.932650px;}
.ws6{word-spacing:-17.925477px;}
.wsd{word-spacing:-17.918304px;}
.wsf8{word-spacing:-16.451501px;}
.ws54{word-spacing:-16.444925px;}
.ws4e{word-spacing:-16.438350px;}
.ws75{word-spacing:-16.431775px;}
.wsf5{word-spacing:-16.425199px;}
.ws77{word-spacing:-16.412049px;}
.ws172{word-spacing:-13.499932px;}
.ws30{word-spacing:-13.454980px;}
.wsa2{word-spacing:-13.449600px;}
.ws173{word-spacing:-13.278936px;}
.ws16a{word-spacing:-13.130568px;}
.ws169{word-spacing:-13.015757px;}
.ws170{word-spacing:-12.759648px;}
.ws16d{word-spacing:-12.753421px;}
.ws16c{word-spacing:-12.685464px;}
.wsc7{word-spacing:-11.943245px;}
.ws16f{word-spacing:-10.948142px;}
.ws171{word-spacing:-10.866101px;}
.ws16e{word-spacing:-10.249325px;}
.wsc8{word-spacing:-8.966400px;}
.ws182{word-spacing:-8.560516px;}
.ws7{word-spacing:-8.076866px;}
.wsdd{word-spacing:-8.069760px;}
.wsdf{word-spacing:-8.064380px;}
.ws1d{word-spacing:-6.089979px;}
.ws12a{word-spacing:-3.649314px;}
.ws164{word-spacing:-3.465204px;}
.ws166{word-spacing:-3.452053px;}
.ws165{word-spacing:-3.412601px;}
.ws67{word-spacing:-3.254793px;}
.ws8b{word-spacing:-3.215341px;}
.ws87{word-spacing:-3.156163px;}
.ws89{word-spacing:-3.149588px;}
.ws8a{word-spacing:-3.143013px;}
.ws88{word-spacing:-3.090410px;}
.wsc6{word-spacing:-2.988000px;}
.ws95{word-spacing:-2.945752px;}
.ws96{word-spacing:-2.912876px;}
.ws12b{word-spacing:-2.853698px;}
.ws93{word-spacing:-2.833972px;}
.ws94{word-spacing:-2.761643px;}
.ws143{word-spacing:-2.709040px;}
.ws142{word-spacing:-2.656437px;}
.ws141{word-spacing:-2.610410px;}
.ws140{word-spacing:-2.603835px;}
.ws69{word-spacing:-2.281643px;}
.ws6d{word-spacing:-2.163287px;}
.ws16b{word-spacing:-2.162527px;}
.ws6b{word-spacing:-2.150136px;}
.ws7d{word-spacing:-2.130410px;}
.ws155{word-spacing:-2.058081px;}
.ws154{word-spacing:-1.998903px;}
.ws117{word-spacing:-1.946301px;}
.wsab{word-spacing:-1.913424px;}
.wse3{word-spacing:-1.880547px;}
.wse1{word-spacing:-1.860821px;}
.wse2{word-spacing:-1.827945px;}
.wsf4{word-spacing:-1.755616px;}
.wsf3{word-spacing:-1.670136px;}
.wsf2{word-spacing:-1.610958px;}
.ws97{word-spacing:-1.551780px;}
.ws98{word-spacing:-1.518904px;}
.wscc{word-spacing:-1.413698px;}
.ws56{word-spacing:-1.308493px;}
.ws57{word-spacing:-1.288767px;}
.ws58{word-spacing:-1.242739px;}
.ws163{word-spacing:-1.216438px;}
.ws134{word-spacing:-1.209863px;}
.ws45{word-spacing:-1.196712px;}
.ws44{word-spacing:-1.124383px;}
.ws135{word-spacing:-1.091506px;}
.ws5b{word-spacing:-1.019178px;}
.wsac{word-spacing:-1.012602px;}
.ws31{word-spacing:-0.984511px;}
.ws78{word-spacing:-0.966575px;}
.ws8e{word-spacing:-0.867945px;}
.ws145{word-spacing:-0.690411px;}
.ws144{word-spacing:-0.677260px;}
.ws128{word-spacing:-0.552329px;}
.ws50{word-spacing:-0.433972px;}
.ws126{word-spacing:-0.368219px;}
.ws4f{word-spacing:-0.302466px;}
.wsc9{word-spacing:-0.276164px;}
.ws13c{word-spacing:-0.216986px;}
.ws102{word-spacing:-0.177534px;}
.ws5{word-spacing:-0.149440px;}
.ws150{word-spacing:-0.124931px;}
.ws13b{word-spacing:-0.118356px;}
.ws15d{word-spacing:-0.111781px;}
.ws73{word-spacing:-0.098630px;}
.ws12c{word-spacing:-0.085479px;}
.ws17{word-spacing:-0.078904px;}
.ws3{word-spacing:-0.074720px;}
.wsa{word-spacing:-0.071731px;}
.ws3f{word-spacing:-0.065753px;}
.ws64{word-spacing:-0.065455px;}
.wsf{word-spacing:-0.064558px;}
.ws2{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.059178px;}
.wsa1{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.052603px;}
.wse{word-spacing:-0.050211px;}
.ws19{word-spacing:-0.046027px;}
.ws72{word-spacing:-0.039452px;}
.wsc{word-spacing:-0.035865px;}
.ws14{word-spacing:-0.028692px;}
.wsc4{word-spacing:-0.026899px;}
.ws46{word-spacing:-0.026301px;}
.ws110{word-spacing:-0.019726px;}
.ws39{word-spacing:-0.016140px;}
.ws13{word-spacing:-0.014346px;}
.ws1a{word-spacing:-0.013151px;}
.ws0{word-spacing:-0.010760px;}
.ws15{word-spacing:-0.007173px;}
.ws6e{word-spacing:-0.006575px;}
.ws1c{word-spacing:0.000000px;}
.wsfd{word-spacing:0.005380px;}
.ws16{word-spacing:0.006575px;}
.ws10{word-spacing:0.007173px;}
.wsdc{word-spacing:0.010760px;}
.wsb{word-spacing:0.014346px;}
.wsc5{word-spacing:0.016140px;}
.ws3a{word-spacing:0.019726px;}
.ws74{word-spacing:0.039452px;}
.ws37{word-spacing:0.043039px;}
.ws79{word-spacing:0.052603px;}
.ws3d{word-spacing:0.053798px;}
.ws12{word-spacing:0.071731px;}
.wsb9{word-spacing:0.072329px;}
.ws1{word-spacing:0.075318px;}
.ws115{word-spacing:0.078904px;}
.ws60{word-spacing:0.309041px;}
.ws14c{word-spacing:0.348493px;}
.ws5f{word-spacing:0.401096px;}
.wsfa{word-spacing:0.416097px;}
.wsfb{word-spacing:0.461439px;}
.ws68{word-spacing:0.506301px;}
.wsdb{word-spacing:0.512877px;}
.wsf9{word-spacing:0.554124px;}
.ws92{word-spacing:0.578630px;}
.ws12e{word-spacing:0.604931px;}
.ws12d{word-spacing:0.683835px;}
.ws10f{word-spacing:0.696986px;}
.ws177{word-spacing:0.724339px;}
.ws32{word-spacing:0.801596px;}
.wscf{word-spacing:0.835068px;}
.ws6f{word-spacing:0.848219px;}
.ws175{word-spacing:1.001491px;}
.ws17e{word-spacing:1.043220px;}
.ws1f{word-spacing:1.059828px;}
.ws122{word-spacing:1.216438px;}
.ws15f{word-spacing:1.236164px;}
.ws15e{word-spacing:1.249315px;}
.ws11a{word-spacing:1.321643px;}
.ws17d{word-spacing:1.410427px;}
.ws17f{word-spacing:1.428048px;}
.ws11e{word-spacing:1.466301px;}
.ws8d{word-spacing:1.486027px;}
.wsb8{word-spacing:1.538630px;}
.ws180{word-spacing:1.570853px;}
.ws17c{word-spacing:1.573169px;}
.ws159{word-spacing:1.578082px;}
.ws178{word-spacing:1.585694px;}
.ws17a{word-spacing:1.609793px;}
.ws176{word-spacing:1.626970px;}
.ws183{word-spacing:1.627420px;}
.ws71{word-spacing:1.650410px;}
.ws184{word-spacing:1.717830px;}
.ws17b{word-spacing:1.724778px;}
.wsb2{word-spacing:1.775342px;}
.wsd4{word-spacing:1.880547px;}
.ws185{word-spacing:1.926011px;}
.wsf0{word-spacing:1.939725px;}
.ws186{word-spacing:1.973299px;}
.ws27{word-spacing:1.985161px;}
.ws174{word-spacing:2.026714px;}
.ws181{word-spacing:2.047488px;}
.ws5e{word-spacing:2.058081px;}
.ws5d{word-spacing:2.123835px;}
.wsb5{word-spacing:2.189588px;}
.ws10b{word-spacing:2.202739px;}
.wsb4{word-spacing:2.209314px;}
.wsb3{word-spacing:2.238777px;}
.ws11f{word-spacing:2.242191px;}
.wsb6{word-spacing:2.255342px;}
.ws14a{word-spacing:2.261917px;}
.ws179{word-spacing:2.264467px;}
.wsb7{word-spacing:2.321095px;}
.ws146{word-spacing:2.367122px;}
.ws81{word-spacing:2.406574px;}
.ws82{word-spacing:2.419725px;}
.ws4b{word-spacing:2.426300px;}
.wsbf{word-spacing:2.452602px;}
.ws2e{word-spacing:2.474726px;}
.ws4c{word-spacing:2.492054px;}
.ws2d{word-spacing:2.528525px;}
.ws132{word-spacing:2.603835px;}
.wsae{word-spacing:2.616985px;}
.ws121{word-spacing:2.630136px;}
.ws120{word-spacing:2.636711px;}
.ws133{word-spacing:2.643287px;}
.ws131{word-spacing:2.649862px;}
.wsd1{word-spacing:2.676163px;}
.wsad{word-spacing:2.689314px;}
.wsd0{word-spacing:2.709040px;}
.ws15c{word-spacing:2.748492px;}
.ws15a{word-spacing:2.794519px;}
.ws15b{word-spacing:2.807670px;}
.wsfc{word-spacing:2.997696px;}
.ws51{word-spacing:3.070684px;}
.ws52{word-spacing:3.116711px;}
.ws3e{word-spacing:3.123286px;}
.ws12f{word-spacing:3.143013px;}
.ws130{word-spacing:3.175889px;}
.wsaf{word-spacing:3.267944px;}
.wsb1{word-spacing:3.313971px;}
.ws55{word-spacing:3.320547px;}
.ws53{word-spacing:3.333697px;}
.ws161{word-spacing:3.438903px;}
.ws2f{word-spacing:3.443098px;}
.ws160{word-spacing:3.465204px;}
.ws151{word-spacing:3.517807px;}
.ws66{word-spacing:3.603286px;}
.ws63{word-spacing:3.611167px;}
.ws118{word-spacing:3.642738px;}
.ws65{word-spacing:3.688766px;}
.ws119{word-spacing:3.701916px;}
.ws8c{word-spacing:3.754519px;}
.wsba{word-spacing:3.767670px;}
.ws148{word-spacing:4.017533px;}
.ws149{word-spacing:4.056985px;}
.wsc2{word-spacing:4.076711px;}
.ws6a{word-spacing:4.096437px;}
.ws139{word-spacing:4.116163px;}
.wsc1{word-spacing:4.155615px;}
.wsc0{word-spacing:4.168766px;}
.ws13a{word-spacing:4.306848px;}
.ws83{word-spacing:4.359450px;}
.ws7e{word-spacing:4.431779px;}
.ws14f{word-spacing:4.438354px;}
.ws7f{word-spacing:4.464656px;}
.ws80{word-spacing:4.484382px;}
.ws36{word-spacing:4.524445px;}
.ws35{word-spacing:4.578244px;}
.ws158{word-spacing:4.583012px;}
.ws157{word-spacing:4.681642px;}
.ws34{word-spacing:4.707360px;}
.ws33{word-spacing:4.761158px;}
.ws7a{word-spacing:4.766538px;}
.ws7b{word-spacing:4.793437px;}
.wsef{word-spacing:4.865752px;}
.ws84{word-spacing:5.023560px;}
.ws86{word-spacing:5.063012px;}
.ws5c{word-spacing:5.122190px;}
.ws59{word-spacing:5.155067px;}
.ws11d{word-spacing:5.187943px;}
.ws5a{word-spacing:5.214245px;}
.wsda{word-spacing:5.233971px;}
.ws21{word-spacing:5.245344px;}
.ws11c{word-spacing:5.247121px;}
.ws22{word-spacing:5.250724px;}
.ws23{word-spacing:5.283003px;}
.ws20{word-spacing:5.336801px;}
.ws10e{word-spacing:5.575888px;}
.ws10a{word-spacing:5.602190px;}
.ws10d{word-spacing:5.674518px;}
.ws49{word-spacing:5.707395px;}
.wsc3{word-spacing:5.720546px;}
.ws4a{word-spacing:5.753422px;}
.ws8f{word-spacing:5.819176px;}
.ws14e{word-spacing:5.983559px;}
.ws9a{word-spacing:6.167669px;}
.ws9c{word-spacing:6.187395px;}
.ws99{word-spacing:6.233422px;}
.ws9b{word-spacing:6.318902px;}
.ws11b{word-spacing:6.345203px;}
.ws9e{word-spacing:6.371504px;}
.wsb0{word-spacing:6.440934px;}
.ws9f{word-spacing:6.463559px;}
.wsd3{word-spacing:6.476710px;}
.wsd2{word-spacing:6.529313px;}
.wse4{word-spacing:6.595066px;}
.ws28{word-spacing:6.671002px;}
.ws29{word-spacing:6.703281px;}
.ws13f{word-spacing:6.792326px;}
.ws2b{word-spacing:6.848536px;}
.ws2c{word-spacing:6.880815px;}
.ws13d{word-spacing:6.897532px;}
.ws2a{word-spacing:6.902335px;}
.wsbb{word-spacing:6.936984px;}
.ws13e{word-spacing:6.950134px;}
.ws4d{word-spacing:7.081641px;}
.ws137{word-spacing:7.127669px;}
.ws136{word-spacing:7.134244px;}
.ws138{word-spacing:7.232874px;}
.ws104{word-spacing:7.265751px;}
.ws109{word-spacing:7.436710px;}
.ws14b{word-spacing:7.463011px;}
.ws108{word-spacing:7.469586px;}
.wse5{word-spacing:7.476162px;}
.wse6{word-spacing:7.495888px;}
.wse7{word-spacing:7.509038px;}
.ws10c{word-spacing:7.535340px;}
.wsf1{word-spacing:7.614244px;}
.ws48{word-spacing:7.620819px;}
.ws1e{word-spacing:7.763109px;}
.ws70{word-spacing:7.804929px;}
.wsa4{word-spacing:7.809979px;}
.ws7c{word-spacing:7.824655px;}
.wsa5{word-spacing:7.890408px;}
.wsa3{word-spacing:7.916709px;}
.ws100{word-spacing:7.929860px;}
.ws26{word-spacing:7.951404px;}
.ws101{word-spacing:7.975887px;}
.ws41{word-spacing:8.054792px;}
.ws42{word-spacing:8.100819px;}
.ws116{word-spacing:8.153422px;}
.ws6c{word-spacing:8.238901px;}
.ws91{word-spacing:8.311230px;}
.ws90{word-spacing:8.324380px;}
.wsbd{word-spacing:8.423011px;}
.wsff{word-spacing:8.429586px;}
.wsbe{word-spacing:8.436161px;}
.wsee{word-spacing:8.561093px;}
.wsed{word-spacing:8.593969px;}
.ws3c{word-spacing:8.843832px;}
.wsa6{word-spacing:8.916161px;}
.ws124{word-spacing:8.988490px;}
.ws123{word-spacing:9.001640px;}
.wsa9{word-spacing:9.054243px;}
.wsa8{word-spacing:9.067394px;}
.wsaa{word-spacing:9.093695px;}
.ws113{word-spacing:9.369860px;}
.ws112{word-spacing:9.383010px;}
.ws114{word-spacing:9.422462px;}
.ws127{word-spacing:9.435613px;}
.ws47{word-spacing:9.494791px;}
.ws61{word-spacing:9.639448px;}
.ws43{word-spacing:9.757805px;}
.wscb{word-spacing:9.770955px;}
.ws9d{word-spacing:10.106298px;}
.wsd6{word-spacing:10.191777px;}
.wsd5{word-spacing:10.231229px;}
.ws85{word-spacing:10.461366px;}
.wscd{word-spacing:10.684928px;}
.ws111{word-spacing:11.164927px;}
.wsbc{word-spacing:11.230681px;}
.wsce{word-spacing:11.658078px;}
.ws106{word-spacing:11.973694px;}
.ws105{word-spacing:12.026297px;}
.ws24{word-spacing:12.190717px;}
.ws38{word-spacing:12.196097px;}
.ws153{word-spacing:12.197256px;}
.ws25{word-spacing:12.244516px;}
.ws152{word-spacing:12.282735px;}
.wsd7{word-spacing:12.295886px;}
.wseb{word-spacing:12.900817px;}
.ws103{word-spacing:12.999447px;}
.ws3b{word-spacing:13.019173px;}
.wsd9{word-spacing:13.157255px;}
.ws107{word-spacing:13.163831px;}
.wsd8{word-spacing:13.203283px;}
.wsca{word-spacing:13.308488px;}
.ws129{word-spacing:13.703009px;}
.wsea{word-spacing:14.406570px;}
.wse9{word-spacing:14.413145px;}
.ws40{word-spacing:14.932597px;}
.ws14d{word-spacing:15.399446px;}
.wsec{word-spacing:16.056980px;}
.ws125{word-spacing:16.333145px;}
.wse8{word-spacing:16.911774px;}
.wsfe{word-spacing:22.066841px;}
.wsa0{word-spacing:79.686190px;}
.wsf6{word-spacing:251.934152px;}
.ws168{word-spacing:310.995893px;}
.ws76{word-spacing:385.045335px;}
._23{margin-left:-987.184500px;}
._26{margin-left:-954.249120px;}
._28{margin-left:-172.063423px;}
._27{margin-left:-163.224346px;}
._1{margin-left:-37.479452px;}
._5{margin-left:-32.006194px;}
._3{margin-left:-27.845819px;}
._24{margin-left:-26.220747px;}
._c{margin-left:-24.537535px;}
._b{margin-left:-21.470941px;}
._39{margin-left:-20.419052px;}
._37{margin-left:-18.404541px;}
._38{margin-left:-15.168900px;}
._29{margin-left:-13.449600px;}
._3d{margin-left:-10.176190px;}
._36{margin-left:-8.159975px;}
._0{margin-left:-6.993792px;}
._7{margin-left:-5.368257px;}
._4{margin-left:-4.009741px;}
._2{margin-left:-2.211706px;}
._a{margin-left:-1.056216px;}
._15{width:1.001243px;}
._3c{width:2.011108px;}
._d{width:3.039610px;}
._8{width:4.441731px;}
._6{width:5.937915px;}
._14{width:10.117657px;}
._17{width:11.576782px;}
._e{width:13.438840px;}
._33{width:15.033921px;}
._11{width:16.161039px;}
._9{width:17.392949px;}
._13{width:19.006503px;}
._25{width:21.221614px;}
._16{width:22.506827px;}
._34{width:23.857725px;}
._12{width:25.076094px;}
._f{width:26.647883px;}
._35{width:29.466490px;}
._30{width:33.310672px;}
._2b{width:57.238335px;}
._2a{width:79.250181px;}
._31{width:264.894147px;}
._2e{width:283.614140px;}
._32{width:286.408693px;}
._2c{width:298.139066px;}
._1a{width:300.354956px;}
._21{width:308.414026px;}
._3a{width:310.638872px;}
._3b{width:315.117911px;}
._19{width:350.320965px;}
._2d{width:382.329720px;}
._22{width:398.038207px;}
._20{width:432.048257px;}
._1e{width:434.320933px;}
._2f{width:481.794888px;}
._1b{width:491.140010px;}
._1c{width:507.177133px;}
._1f{width:524.015146px;}
._1d{width:955.515258px;}
._18{width:1154.471896px;}
._10{width:1789.286365px;}
.fc13{color:transparent;}
.fc11{color:rgb(224,245,253);}
.fcd{color:rgb(146,145,37);}
.fc1{color:rgb(0,0,0);}
.fc10{color:rgb(254,243,169);}
.fcf{color:rgb(0,148,70);}
.fc3{color:rgb(46,42,43);}
.fc4{color:rgb(255,255,255);}
.fc12{color:rgb(246,138,17);}
.fc8{color:rgb(57,53,54);}
.fc2{color:rgb(33,29,29);}
.fc5{color:rgb(246,135,18);}
.fc9{color:rgb(201,234,250);}
.fcb{color:rgb(43,67,160);}
.fc6{color:rgb(77,74,74);}
.fce{color:rgb(240,239,239);}
.fc0{color:rgb(35,31,32);}
.fc7{color:rgb(254,230,76);}
.fca{color:rgb(135,199,38);}
.fcc{color:rgb(242,241,62);}
.fs18{font-size:9.273000px;}
.fs10{font-size:9.286200px;}
.fsb{font-size:10.200600px;}
.fse{font-size:27.819000px;}
.fs12{font-size:27.859200px;}
.fs7{font-size:29.887800px;}
.fs8{font-size:35.865600px;}
.fs9{font-size:36.000000px;}
.fs1c{font-size:37.092000px;}
.fsd{font-size:41.728800px;}
.fs4{font-size:46.027200px;}
.fs3{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs16{font-size:54.247200px;}
.fs1d{font-size:57.261000px;}
.fs15{font-size:57.492600px;}
.fs1a{font-size:58.234800px;}
.fs1b{font-size:60.274800px;}
.fs1f{font-size:61.665600px;}
.fs1e{font-size:62.129400px;}
.fsc{font-size:63.334800px;}
.fs19{font-size:63.984000px;}
.fs6{font-size:65.454600px;}
.fs5{font-size:65.753400px;}
.fs11{font-size:67.790400px;}
.fs14{font-size:68.620200px;}
.fs17{font-size:71.402400px;}
.fs2{font-size:71.730600px;}
.fs13{font-size:74.184000px;}
.fs20{font-size:76.270800px;}
.fsa{font-size:79.500000px;}
.fsf{font-size:126.112800px;}
.fs1{font-size:149.439600px;}
.y0{bottom:0.000000px;}
.y15e{bottom:9.608040px;}
.y164{bottom:9.856786px;}
.y154{bottom:9.857236px;}
.y159{bottom:9.857520px;}
.y16c{bottom:9.857550px;}
.y15d{bottom:12.393900px;}
.y163{bottom:12.639000px;}
.y153{bottom:12.639450px;}
.y158{bottom:12.917700px;}
.y160{bottom:20.733432px;}
.y168{bottom:20.929800px;}
.y16f{bottom:21.060450px;}
.y166{bottom:21.123150px;}
.y179{bottom:21.123300px;}
.y155{bottom:21.123600px;}
.y172{bottom:21.125824px;}
.y15b{bottom:26.135100px;}
.y174{bottom:34.057050px;}
.y16d{bottom:34.685400px;}
.y177{bottom:34.799550px;}
.y176{bottom:34.878300px;}
.y156{bottom:35.081250px;}
.y170{bottom:35.190300px;}
.y16a{bottom:35.496750px;}
.y171{bottom:35.728200px;}
.y167{bottom:35.777850px;}
.y173{bottom:35.828550px;}
.y165{bottom:36.909000px;}
.y175{bottom:36.909450px;}
.y178{bottom:37.261050px;}
.y15f{bottom:38.613150px;}
.y16e{bottom:38.911050px;}
.y15a{bottom:45.587250px;}
.y16b{bottom:48.469800px;}
.y161{bottom:55.004100px;}
.y162{bottom:75.000000px;}
.y26{bottom:193.593643px;}
.y8e{bottom:193.594276px;}
.yc4{bottom:193.595347px;}
.y71{bottom:193.595853px;}
.y4b{bottom:193.597205px;}
.y113{bottom:193.600437px;}
.y136{bottom:193.609289px;}
.y135{bottom:211.550104px;}
.y25{bottom:213.776650px;}
.y8d{bottom:213.777282px;}
.yc3{bottom:213.778353px;}
.y70{bottom:213.778859px;}
.y4a{bottom:213.780211px;}
.y112{bottom:213.783444px;}
.y134{bottom:229.477769px;}
.y8c{bottom:233.945494px;}
.yc2{bottom:233.946565px;}
.y6f{bottom:233.947071px;}
.y49{bottom:233.948422px;}
.y111{bottom:233.951655px;}
.y133{bottom:247.418584px;}
.y24{bottom:249.079650px;}
.yc1{bottom:254.129571px;}
.y8b{bottom:254.129853px;}
.y6e{bottom:254.130077px;}
.y48{bottom:254.131428px;}
.y110{bottom:254.134661px;}
.y132{bottom:265.346248px;}
.y152{bottom:273.606000px;}
.yc0{bottom:274.297782px;}
.y8a{bottom:274.298065px;}
.y6d{bottom:274.298288px;}
.y10f{bottom:274.302873px;}
.y131{bottom:283.273913px;}
.y47{bottom:289.434429px;}
.ybf{bottom:294.465994px;}
.y89{bottom:294.466276px;}
.y6c{bottom:294.466782px;}
.yef{bottom:294.468713px;}
.y10e{bottom:294.471084px;}
.y130{bottom:301.214728px;}
.y88{bottom:314.649282px;}
.y6b{bottom:314.649788px;}
.ybe{bottom:314.650913px;}
.yee{bottom:314.651720px;}
.y10d{bottom:314.654091px;}
.y12f{bottom:319.142393px;}
.y87{bottom:334.817494px;}
.ybd{bottom:334.819125px;}
.y6a{bottom:334.819353px;}
.yed{bottom:334.819931px;}
.y10c{bottom:334.822302px;}
.y12e{bottom:337.070057px;}
.y23{bottom:340.951696px;}
.y86{bottom:355.002077px;}
.ybc{bottom:355.002131px;}
.y69{bottom:355.002359px;}
.yec{bottom:355.002937px;}
.y10b{bottom:355.005308px;}
.y12d{bottom:355.010872px;}
.y22{bottom:357.395177px;}
.y46{bottom:364.250291px;}
.y12c{bottom:372.938537px;}
.y85{bottom:375.170288px;}
.ybb{bottom:375.170342px;}
.y68{bottom:375.170571px;}
.yeb{bottom:375.171149px;}
.y10a{bottom:375.173520px;}
.y21{bottom:382.802816px;}
.y45{bottom:384.418503px;}
.y12b{bottom:390.866201px;}
.yba{bottom:395.338554px;}
.y67{bottom:395.338782px;}
.y84{bottom:395.339215px;}
.yea{bottom:395.339361px;}
.y20{bottom:399.232848px;}
.y44{bottom:404.586715px;}
.y12a{bottom:408.807017px;}
.y109{bottom:410.476520px;}
.yb9{bottom:415.521560px;}
.y66{bottom:415.521788px;}
.y83{bottom:415.522221px;}
.ye9{bottom:415.522367px;}
.y1f{bottom:415.676328px;}
.y43{bottom:424.769721px;}
.y129{bottom:426.734681px;}
.y1e{bottom:432.119809px;}
.yb8{bottom:435.689772px;}
.y82{bottom:435.690432px;}
.y65{bottom:441.630000px;}
.y128{bottom:444.662346px;}
.y42{bottom:444.937932px;}
.y1d{bottom:448.549841px;}
.yb7{bottom:455.872778px;}
.y81{bottom:455.873438px;}
.y64{bottom:455.874077px;}
.y127{bottom:462.603161px;}
.y1c{bottom:464.993322px;}
.y41{bottom:465.120938px;}
.y108{bottom:470.928553px;}
.y169{bottom:472.212000px;}
.yb6{bottom:476.040989px;}
.y63{bottom:476.042288px;}
.y126{bottom:480.530825px;}
.ye8{bottom:480.537685px;}
.y1b{bottom:481.436803px;}
.y40{bottom:485.289788px;}
.y107{bottom:491.111559px;}
.y62{bottom:496.210140px;}
.y80{bottom:496.210368px;}
.y1a{bottom:497.866834px;}
.y125{bottom:498.458490px;}
.ye7{bottom:498.478500px;}
.y3f{bottom:505.461227px;}
.y106{bottom:511.279770px;}
.y19{bottom:514.310315px;}
.y61{bottom:516.393146px;}
.y124{bottom:516.399305px;}
.y3e{bottom:525.644233px;}
.ye6{bottom:528.624000px;}
.y18{bottom:530.753796px;}
.y105{bottom:531.447982px;}
.y123{bottom:534.326970px;}
.yb5{bottom:538.978500px;}
.y17{bottom:547.183827px;}
.y104{bottom:551.630988px;}
.y60{bottom:551.696147px;}
.y122{bottom:552.267785px;}
.ye1{bottom:552.481756px;}
.y3d{bottom:560.947234px;}
.y16{bottom:563.627308px;}
.y7f{bottom:564.358835px;}
.y151{bottom:564.622500px;}
.yb4{bottom:569.124000px;}
.y121{bottom:570.195449px;}
.ye4{bottom:570.340983px;}
.ydf{bottom:570.482326px;}
.y103{bottom:571.799200px;}
.y15{bottom:580.057340px;}
.y7e{bottom:582.286500px;}
.ye3{bottom:582.718650px;}
.y120{bottom:588.123114px;}
.y150{bottom:588.472500px;}
.y102{bottom:591.982206px;}
.ya3{bottom:592.980000px;}
.y3c{bottom:594.751056px;}
.y14{bottom:605.464979px;}
.y11f{bottom:606.063929px;}
.y5f{bottom:606.195852px;}
.y14f{bottom:607.556531px;}
.yb1{bottom:610.980000px;}
.y101{bottom:612.150417px;}
.y7d{bottom:614.848500px;}
.y13{bottom:621.908460px;}
.y14e{bottom:625.497346px;}
.y5e{bottom:626.364064px;}
.ye5{bottom:628.211922px;}
.y100{bottom:632.318629px;}
.ya9{bottom:636.379050px;}
.y12{bottom:638.351941px;}
.y7b{bottom:638.705050px;}
.y11e{bottom:639.124738px;}
.yac{bottom:639.326550px;}
.y14d{bottom:643.425011px;}
.y5d{bottom:646.547070px;}
.ya6{bottom:648.623685px;}
.ya1{bottom:648.748650px;}
.yab{bottom:649.543350px;}
.yff{bottom:652.501635px;}
.ya8{bottom:652.870650px;}
.y7a{bottom:656.704650px;}
.yae{bottom:658.239150px;}
.y14c{bottom:661.352675px;}
.ye2{bottom:665.585700px;}
.yad{bottom:666.187050px;}
.y5c{bottom:666.715282px;}
.y11{bottom:666.796500px;}
.y3b{bottom:669.568563px;}
.y15c{bottom:670.818000px;}
.yaa{bottom:671.291850px;}
.yfe{bottom:672.669847px;}
.ydc{bottom:672.680850px;}
.yb2{bottom:674.049150px;}
.ya2{bottom:675.769050px;}
.y14b{bottom:679.293491px;}
.yaf{bottom:681.096450px;}
.y5b{bottom:686.883493px;}
.y3a{bottom:689.751569px;}
.yfd{bottom:692.852853px;}
.y10{bottom:696.753685px;}
.y14a{bottom:697.221155px;}
.y11d{bottom:698.713757px;}
.y5a{bottom:707.066500px;}
.ya5{bottom:707.682224px;}
.y39{bottom:709.919780px;}
.yfc{bottom:713.021065px;}
.y149{bottom:715.148820px;}
.ydd{bottom:717.967950px;}
.y11c{bottom:718.881969px;}
.yf{bottom:720.634500px;}
.y7c{bottom:729.956551px;}
.y38{bottom:730.087992px;}
.y148{bottom:733.089635px;}
.yfb{bottom:733.189276px;}
.y11b{bottom:739.064975px;}
.ye{bottom:739.656000px;}
.y59{bottom:742.369500px;}
.ya0{bottom:749.332650px;}
.y37{bottom:750.270998px;}
.ya7{bottom:750.553050px;}
.y147{bottom:751.017299px;}
.yd{bottom:752.751335px;}
.yb3{bottom:753.162450px;}
.yfa{bottom:753.372282px;}
.y11a{bottom:759.233187px;}
.yde{bottom:763.256788px;}
.ya4{bottom:767.635161px;}
.y146{bottom:768.944964px;}
.y79{bottom:770.125650px;}
.y36{bottom:770.439210px;}
.yb0{bottom:771.205350px;}
.yf9{bottom:773.540494px;}
.yc{bottom:776.619000px;}
.ye0{bottom:778.631026px;}
.y119{bottom:779.401398px;}
.y145{bottom:786.885779px;}
.yb{bottom:789.714335px;}
.y35{bottom:790.622216px;}
.y58{bottom:792.170469px;}
.yf8{bottom:793.723500px;}
.y77{bottom:793.982950px;}
.y9f{bottom:794.898000px;}
.y118{bottom:799.584404px;}
.yd0{bottom:803.902650px;}
.y144{bottom:804.813443px;}
.y34{bottom:810.790428px;}
.y76{bottom:811.982550px;}
.ya{bottom:813.582150px;}
.y57{bottom:818.077500px;}
.y8f{bottom:818.755500px;}
.y143{bottom:822.741108px;}
.yda{bottom:827.759923px;}
.ycd{bottom:827.760920px;}
.y9{bottom:830.254650px;}
.y33{bottom:830.958639px;}
.y56{bottom:831.023647px;}
.y117{bottom:834.887405px;}
.y93{bottom:836.613155px;}
.y91{bottom:836.614500px;}
.y98{bottom:836.754376px;}
.y9d{bottom:836.755721px;}
.y142{bottom:840.681923px;}
.yd8{bottom:845.618302px;}
.ycb{bottom:845.619299px;}
.ycf{bottom:845.760000px;}
.yd4{bottom:845.760241px;}
.yc7{bottom:845.760517px;}
.yd5{bottom:845.761586px;}
.y92{bottom:848.758144px;}
.y8{bottom:850.423500px;}
.y32{bottom:851.141645px;}
.y55{bottom:852.934323px;}
.yca{bottom:857.331211px;}
.yd9{bottom:857.780775px;}
.y141{bottom:858.609588px;}
.y157{bottom:869.424000px;}
.y7{bottom:870.606150px;}
.y31{bottom:871.309857px;}
.y94{bottom:873.853752px;}
.y54{bottom:874.844647px;}
.y140{bottom:876.550403px;}
.y78{bottom:880.553991px;}
.yf7{bottom:883.768019px;}
.y30{bottom:891.492863px;}
.y116{bottom:894.476424px;}
.y13f{bottom:894.478067px;}
.y53{bottom:896.755323px;}
.y95{bottom:897.757727px;}
.ycc{bottom:902.942839px;}
.yd7{bottom:903.409888px;}
.yf6{bottom:909.688500px;}
.y2f{bottom:911.661075px;}
.y13e{bottom:912.405732px;}
.y115{bottom:914.644635px;}
.y52{bottom:918.666340px;}
.y96{bottom:921.810991px;}
.y75{bottom:922.405500px;}
.yf5{bottom:922.621650px;}
.y6{bottom:929.967120px;}
.y13d{bottom:930.346547px;}
.y2e{bottom:931.829286px;}
.y114{bottom:934.827641px;}
.y90{bottom:935.845800px;}
.yce{bottom:940.378800px;}
.y51{bottom:940.576165px;}
.ydb{bottom:940.680150px;}
.yf4{bottom:943.547749px;}
.y97{bottom:943.748634px;}
.y73{bottom:946.249300px;}
.yc5{bottom:947.530950px;}
.yd1{bottom:948.017550px;}
.y13c{bottom:948.274212px;}
.y2d{bottom:954.995853px;}
.y50{bottom:958.503830px;}
.y72{bottom:964.248900px;}
.yf3{bottom:964.472124px;}
.y13b{bottom:966.201876px;}
.y99{bottom:967.761550px;}
.y5{bottom:974.799000px;}
.y2c{bottom:975.164065px;}
.y4f{bottom:979.442973px;}
.y13a{bottom:984.142691px;}
.yf2{bottom:985.396500px;}
.y9a{bottom:991.773120px;}
.yc6{bottom:992.940834px;}
.yd2{bottom:993.262004px;}
.y2b{bottom:995.347071px;}
.y4e{bottom:1001.353650px;}
.y139{bottom:1002.070356px;}
.yf1{bottom:1006.915500px;}
.y2a{bottom:1015.515282px;}
.y9b{bottom:1015.786036px;}
.y138{bottom:1019.998020px;}
.y4d{bottom:1023.858000px;}
.y29{bottom:1035.698288px;}
.y74{bottom:1036.598333px;}
.yf0{bottom:1037.074835px;}
.y137{bottom:1037.938835px;}
.yc8{bottom:1038.350719px;}
.yd3{bottom:1038.505114px;}
.y9c{bottom:1039.797607px;}
.y4{bottom:1043.904007px;}
.y9e{bottom:1053.474505px;}
.yc9{bottom:1053.723612px;}
.yd6{bottom:1054.141619px;}
.y4c{bottom:1055.002500px;}
.y28{bottom:1055.866500px;}
.y3{bottom:1060.347488px;}
.y2{bottom:1076.790969px;}
.y27{bottom:1090.683150px;}
.y1{bottom:1093.221000px;}
.h21{height:7.242426px;}
.h24{height:7.344432px;}
.h2f{height:8.160240px;}
.h27{height:8.171856px;}
.h1e{height:13.389734px;}
.hc{height:13.897827px;}
.h25{height:19.890585px;}
.h29{height:24.516096px;}
.h19{height:24.675533px;}
.h17{height:24.768000px;}
.h23{height:30.086465px;}
.h33{height:32.640960px;}
.h11{height:37.013299px;}
.h10{height:37.018679px;}
.h18{height:37.927872px;}
.h2d{height:39.112231px;}
.h4{height:40.642018px;}
.h34{height:41.285181px;}
.he{height:41.307614px;}
.h2c{height:41.452165px;}
.h31{height:41.987291px;}
.h36{height:44.460898px;}
.h35{height:44.795297px;}
.h22{height:45.664391px;}
.h30{height:46.132464px;}
.h1b{height:46.690349px;}
.h1c{height:46.695321px;}
.h16{height:46.698402px;}
.h1a{height:46.706377px;}
.h1{height:48.281963px;}
.h2b{height:49.475164px;}
.h6{height:49.674206px;}
.h32{height:53.041824px;}
.h2a{height:53.486664px;}
.h37{height:54.991247px;}
.h1f{height:55.650000px;}
.h5{height:58.060252px;}
.h8{height:59.011108px;}
.h9{height:59.011215px;}
.hb{height:59.012522px;}
.h28{height:59.655552px;}
.h7{height:60.712734px;}
.h2e{height:62.834112px;}
.h1d{height:65.058760px;}
.h15{height:65.061307px;}
.hf{height:65.062202px;}
.h14{height:65.064461px;}
.h13{height:65.068142px;}
.h12{height:65.068214px;}
.hd{height:65.069053px;}
.h3{height:68.945121px;}
.ha{height:94.922447px;}
.h26{height:94.954071px;}
.h2{height:134.116204px;}
.h20{height:183.606000px;}
.h0{height:1188.000000px;}
.w2{width:138.000000px;}
.w1{width:900.000000px;}
.w0{width:900.045000px;}
.x0{left:0.000000px;}
.x4c{left:8.575650px;}
.x4b{left:9.857100px;}
.x4e{left:22.999950px;}
.x4f{left:75.000000px;}
.x1{left:106.524000px;}
.x9{left:109.521000px;}
.x6{left:114.003000px;}
.x48{left:139.895494px;}
.x7{left:151.357956px;}
.x2c{left:152.491500px;}
.x8{left:155.124000px;}
.x34{left:181.339800px;}
.x32{left:188.161622px;}
.x2e{left:198.909450px;}
.x2d{left:205.634250px;}
.x31{left:210.570253px;}
.x4a{left:228.000000px;}
.x2{left:240.242726px;}
.x1c{left:251.809800px;}
.x1f{left:258.633420px;}
.x1e{left:269.379651px;}
.x4{left:292.607158px;}
.x35{left:296.199000px;}
.x13{left:302.812800px;}
.x15{left:309.636845px;}
.x33{left:311.458140px;}
.x16{left:316.361645px;}
.x27{left:317.977500px;}
.x18{left:320.384420px;}
.x45{left:323.805300px;}
.x14{left:326.434050px;}
.x46{left:330.628500px;}
.x41{left:341.374650px;}
.x49{left:343.611150px;}
.x40{left:348.099750px;}
.x43{left:352.833709px;}
.x19{left:356.566534px;}
.x26{left:360.380100px;}
.x2f{left:369.475932px;}
.x4d{left:381.000000px;}
.x47{left:400.678052px;}
.x24{left:410.734200px;}
.xd{left:412.046644px;}
.x25{left:418.602000px;}
.x10{left:420.268454px;}
.x30{left:422.573608px;}
.x1d{left:424.584000px;}
.x28{left:425.694000px;}
.xc{left:430.713344px;}
.xe{left:438.664500px;}
.x11{left:446.508000px;}
.x44{left:453.937989px;}
.x12{left:456.403500px;}
.x23{left:460.677900px;}
.x42{left:462.519232px;}
.x3f{left:464.772300px;}
.x3d{left:471.596070px;}
.x3{left:473.831802px;}
.x3b{left:478.320870px;}
.x38{left:482.342250px;}
.x37{left:489.067050px;}
.x2b{left:492.294000px;}
.x36{left:495.791850px;}
.x17{left:505.185959px;}
.x1b{left:510.063300px;}
.x22{left:521.861700px;}
.x50{left:534.000000px;}
.x3c{left:546.161997px;}
.xb{left:563.820000px;}
.xf{left:572.044500px;}
.x20{left:575.607000px;}
.x21{left:580.453500px;}
.x5{left:585.990101px;}
.x29{left:594.670500px;}
.x3e{left:597.357900px;}
.x2a{left:599.110500px;}
.x39{left:605.792094px;}
.x1a{left:611.631000px;}
.x51{left:687.000000px;}
.x3a{left:700.855211px;}
.xa{left:774.313887px;}
@media print{
.v6{vertical-align:-33.696000pt;}
.v2{vertical-align:-23.136000pt;}
.v3{vertical-align:-21.120533pt;}
.v7{vertical-align:-1.641163pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:23.136000pt;}
.v5{vertical-align:31.921190pt;}
.ls4c{letter-spacing:-4.786862pt;}
.ls4b{letter-spacing:-4.782080pt;}
.ls1d{letter-spacing:-4.646574pt;}
.ls68{letter-spacing:-3.165184pt;}
.ls72{letter-spacing:-3.099243pt;}
.ls75{letter-spacing:-2.847443pt;}
.ls61{letter-spacing:-2.769536pt;}
.ls76{letter-spacing:-2.637653pt;}
.ls6c{letter-spacing:-2.388736pt;}
.ls6e{letter-spacing:-2.225863pt;}
.ls63{letter-spacing:-2.012859pt;}
.ls5c{letter-spacing:-1.801523pt;}
.ls74{letter-spacing:-1.754044pt;}
.ls73{letter-spacing:-1.712010pt;}
.ls6f{letter-spacing:-1.604692pt;}
.ls6d{letter-spacing:-1.552928pt;}
.ls65{letter-spacing:-1.533136pt;}
.ls71{letter-spacing:-1.526960pt;}
.ls70{letter-spacing:-1.446595pt;}
.ls5e{letter-spacing:-1.446195pt;}
.ls32{letter-spacing:-1.431963pt;}
.ls64{letter-spacing:-1.430927pt;}
.ls62{letter-spacing:-1.409506pt;}
.ls66{letter-spacing:-1.398372pt;}
.ls6b{letter-spacing:-1.396314pt;}
.ls6a{letter-spacing:-1.269376pt;}
.ls67{letter-spacing:-1.253713pt;}
.ls5f{letter-spacing:-1.024388pt;}
.ls69{letter-spacing:-0.927307pt;}
.ls5d{letter-spacing:-0.890214pt;}
.ls60{letter-spacing:-0.643857pt;}
.ls1e{letter-spacing:-0.023379pt;}
.ls57{letter-spacing:-0.021254pt;}
.ls1b{letter-spacing:-0.017534pt;}
.ls58{letter-spacing:-0.015940pt;}
.lse{letter-spacing:-0.012752pt;}
.ls1a{letter-spacing:-0.011689pt;}
.lsb{letter-spacing:-0.006376pt;}
.ls11{letter-spacing:-0.005845pt;}
.ls9{letter-spacing:-0.004782pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.001275pt;}
.ls7{letter-spacing:0.004782pt;}
.ls6{letter-spacing:0.005845pt;}
.ls4{letter-spacing:0.006376pt;}
.ls42{letter-spacing:0.007460pt;}
.ls49{letter-spacing:0.009060pt;}
.ls47{letter-spacing:0.010127pt;}
.ls50{letter-spacing:0.011629pt;}
.ls13{letter-spacing:0.011689pt;}
.ls3{letter-spacing:0.012752pt;}
.ls0{letter-spacing:0.013284pt;}
.ls2f{letter-spacing:0.013972pt;}
.ls10{letter-spacing:0.014346pt;}
.ls1c{letter-spacing:0.023379pt;}
.ls12{letter-spacing:0.058447pt;}
.ls30{letter-spacing:0.155072pt;}
.ls3e{letter-spacing:0.323051pt;}
.ls33{letter-spacing:0.327031pt;}
.ls37{letter-spacing:0.327168pt;}
.ls45{letter-spacing:0.331576pt;}
.ls48{letter-spacing:0.335829pt;}
.ls40{letter-spacing:0.336360pt;}
.ls17{letter-spacing:2.628677pt;}
.ls26{letter-spacing:2.631467pt;}
.ls53{letter-spacing:2.640759pt;}
.ls34{letter-spacing:2.648461pt;}
.ls54{letter-spacing:2.668339pt;}
.ls27{letter-spacing:2.679467pt;}
.lsf{letter-spacing:2.701875pt;}
.lsd{letter-spacing:3.538710pt;}
.lsc{letter-spacing:3.583342pt;}
.ls28{letter-spacing:5.581064pt;}
.ls5{letter-spacing:6.135467pt;}
.ls46{letter-spacing:11.945636pt;}
.ls3c{letter-spacing:11.950418pt;}
.ls39{letter-spacing:11.955200pt;}
.ls36{letter-spacing:11.998239pt;}
.ls5a{letter-spacing:12.794150pt;}
.ls52{letter-spacing:13.299918pt;}
.ls25{letter-spacing:13.326737pt;}
.ls15{letter-spacing:14.284561pt;}
.ls19{letter-spacing:14.570953pt;}
.ls18{letter-spacing:14.617711pt;}
.ls3b{letter-spacing:16.280994pt;}
.ls43{letter-spacing:16.286327pt;}
.ls59{letter-spacing:16.756889pt;}
.ls14{letter-spacing:16.827026pt;}
.ls3f{letter-spacing:17.382861pt;}
.ls35{letter-spacing:17.387643pt;}
.ls2d{letter-spacing:17.469974pt;}
.ls5b{letter-spacing:17.545929pt;}
.ls16{letter-spacing:17.598532pt;}
.ls1{letter-spacing:18.586400pt;}
.ls2{letter-spacing:18.634400pt;}
.ls2e{letter-spacing:19.287467pt;}
.ls29{letter-spacing:20.187755pt;}
.ls55{letter-spacing:21.678165pt;}
.ls31{letter-spacing:22.543188pt;}
.ls41{letter-spacing:24.536852pt;}
.ls38{letter-spacing:24.584673pt;}
.ls2c{letter-spacing:25.622708pt;}
.ls4a{letter-spacing:28.743467pt;}
.lsa{letter-spacing:33.182233pt;}
.ls2a{letter-spacing:82.787369pt;}
.ls2b{letter-spacing:82.792151pt;}
.ls44{letter-spacing:145.088307pt;}
.ls4d{letter-spacing:152.945265pt;}
.ls3d{letter-spacing:250.858353pt;}
.ls56{letter-spacing:261.240750pt;}
.ls23{letter-spacing:261.348677pt;}
.ls4e{letter-spacing:271.572677pt;}
.ls4f{letter-spacing:360.155629pt;}
.ls51{letter-spacing:393.144752pt;}
.ls24{letter-spacing:509.412677pt;}
.ls20{letter-spacing:635.220677pt;}
.ls22{letter-spacing:692.820677pt;}
.ls1f{letter-spacing:1044.228677pt;}
.ls21{letter-spacing:1070.340677pt;}
.wse0{word-spacing:-164.900465pt;}
.wsde{word-spacing:-157.043507pt;}
.wsf7{word-spacing:-112.903328pt;}
.ws4{word-spacing:-66.391033pt;}
.wsa7{word-spacing:-37.155055pt;}
.ws162{word-spacing:-32.157796pt;}
.ws147{word-spacing:-31.368755pt;}
.ws156{word-spacing:-27.406017pt;}
.ws167{word-spacing:-19.645333pt;}
.ws8{word-spacing:-19.478843pt;}
.ws62{word-spacing:-19.374562pt;}
.ws11{word-spacing:-15.952885pt;}
.ws9{word-spacing:-15.940133pt;}
.ws6{word-spacing:-15.933757pt;}
.wsd{word-spacing:-15.927381pt;}
.wsf8{word-spacing:-14.623556pt;}
.ws54{word-spacing:-14.617711pt;}
.ws4e{word-spacing:-14.611867pt;}
.ws75{word-spacing:-14.606022pt;}
.wsf5{word-spacing:-14.600177pt;}
.ws77{word-spacing:-14.588488pt;}
.ws172{word-spacing:-11.999939pt;}
.ws30{word-spacing:-11.959982pt;}
.wsa2{word-spacing:-11.955200pt;}
.ws173{word-spacing:-11.803499pt;}
.ws16a{word-spacing:-11.671616pt;}
.ws169{word-spacing:-11.569562pt;}
.ws170{word-spacing:-11.341909pt;}
.ws16d{word-spacing:-11.336374pt;}
.ws16c{word-spacing:-11.275968pt;}
.wsc7{word-spacing:-10.616218pt;}
.ws16f{word-spacing:-9.731682pt;}
.ws171{word-spacing:-9.658757pt;}
.ws16e{word-spacing:-9.110511pt;}
.wsc8{word-spacing:-7.970133pt;}
.ws182{word-spacing:-7.609347pt;}
.ws7{word-spacing:-7.179436pt;}
.wsdd{word-spacing:-7.173120pt;}
.wsdf{word-spacing:-7.168338pt;}
.ws1d{word-spacing:-5.413315pt;}
.ws12a{word-spacing:-3.243834pt;}
.ws164{word-spacing:-3.080181pt;}
.ws166{word-spacing:-3.068492pt;}
.ws165{word-spacing:-3.033424pt;}
.ws67{word-spacing:-2.893150pt;}
.ws8b{word-spacing:-2.858081pt;}
.ws87{word-spacing:-2.805478pt;}
.ws89{word-spacing:-2.799634pt;}
.ws8a{word-spacing:-2.793789pt;}
.ws88{word-spacing:-2.747031pt;}
.wsc6{word-spacing:-2.656000pt;}
.ws95{word-spacing:-2.618447pt;}
.ws96{word-spacing:-2.589223pt;}
.ws12b{word-spacing:-2.536620pt;}
.ws93{word-spacing:-2.519086pt;}
.ws94{word-spacing:-2.454794pt;}
.ws143{word-spacing:-2.408036pt;}
.ws142{word-spacing:-2.361278pt;}
.ws141{word-spacing:-2.320364pt;}
.ws140{word-spacing:-2.314520pt;}
.ws69{word-spacing:-2.028127pt;}
.ws6d{word-spacing:-1.922922pt;}
.ws16b{word-spacing:-1.922246pt;}
.ws6b{word-spacing:-1.911232pt;}
.ws7d{word-spacing:-1.893698pt;}
.ws155{word-spacing:-1.829406pt;}
.ws154{word-spacing:-1.776803pt;}
.ws117{word-spacing:-1.730045pt;}
.wsab{word-spacing:-1.700821pt;}
.wse3{word-spacing:-1.671598pt;}
.wse1{word-spacing:-1.654063pt;}
.wse2{word-spacing:-1.624840pt;}
.wsf4{word-spacing:-1.560547pt;}
.wsf3{word-spacing:-1.484566pt;}
.wsf2{word-spacing:-1.431963pt;}
.ws97{word-spacing:-1.379360pt;}
.ws98{word-spacing:-1.350136pt;}
.wscc{word-spacing:-1.256621pt;}
.ws56{word-spacing:-1.163105pt;}
.ws57{word-spacing:-1.145570pt;}
.ws58{word-spacing:-1.104657pt;}
.ws163{word-spacing:-1.081278pt;}
.ws134{word-spacing:-1.075433pt;}
.ws45{word-spacing:-1.063744pt;}
.ws44{word-spacing:-0.999452pt;}
.ws135{word-spacing:-0.970228pt;}
.ws5b{word-spacing:-0.905936pt;}
.wsac{word-spacing:-0.900091pt;}
.ws31{word-spacing:-0.875121pt;}
.ws78{word-spacing:-0.859178pt;}
.ws8e{word-spacing:-0.771507pt;}
.ws145{word-spacing:-0.613698pt;}
.ws144{word-spacing:-0.602009pt;}
.ws128{word-spacing:-0.490959pt;}
.ws50{word-spacing:-0.385753pt;}
.ws126{word-spacing:-0.327306pt;}
.ws4f{word-spacing:-0.268858pt;}
.wsc9{word-spacing:-0.245479pt;}
.ws13c{word-spacing:-0.192877pt;}
.ws102{word-spacing:-0.157808pt;}
.ws5{word-spacing:-0.132835pt;}
.ws150{word-spacing:-0.111050pt;}
.ws13b{word-spacing:-0.105205pt;}
.ws15d{word-spacing:-0.099361pt;}
.ws73{word-spacing:-0.087671pt;}
.ws12c{word-spacing:-0.075982pt;}
.ws17{word-spacing:-0.070137pt;}
.ws3{word-spacing:-0.066418pt;}
.wsa{word-spacing:-0.063761pt;}
.ws3f{word-spacing:-0.058447pt;}
.ws64{word-spacing:-0.058182pt;}
.wsf{word-spacing:-0.057384pt;}
.ws2{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.052603pt;}
.wsa1{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.046758pt;}
.wse{word-spacing:-0.044632pt;}
.ws19{word-spacing:-0.040913pt;}
.ws72{word-spacing:-0.035068pt;}
.wsc{word-spacing:-0.031880pt;}
.ws14{word-spacing:-0.025504pt;}
.wsc4{word-spacing:-0.023910pt;}
.ws46{word-spacing:-0.023379pt;}
.ws110{word-spacing:-0.017534pt;}
.ws39{word-spacing:-0.014346pt;}
.ws13{word-spacing:-0.012752pt;}
.ws1a{word-spacing:-0.011689pt;}
.ws0{word-spacing:-0.009564pt;}
.ws15{word-spacing:-0.006376pt;}
.ws6e{word-spacing:-0.005845pt;}
.ws1c{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.004782pt;}
.ws16{word-spacing:0.005845pt;}
.ws10{word-spacing:0.006376pt;}
.wsdc{word-spacing:0.009564pt;}
.wsb{word-spacing:0.012752pt;}
.wsc5{word-spacing:0.014346pt;}
.ws3a{word-spacing:0.017534pt;}
.ws74{word-spacing:0.035068pt;}
.ws37{word-spacing:0.038257pt;}
.ws79{word-spacing:0.046758pt;}
.ws3d{word-spacing:0.047821pt;}
.ws12{word-spacing:0.063761pt;}
.wsb9{word-spacing:0.064292pt;}
.ws1{word-spacing:0.066949pt;}
.ws115{word-spacing:0.070137pt;}
.ws60{word-spacing:0.274703pt;}
.ws14c{word-spacing:0.309772pt;}
.ws5f{word-spacing:0.356530pt;}
.wsfa{word-spacing:0.369864pt;}
.wsfb{word-spacing:0.410168pt;}
.ws68{word-spacing:0.450045pt;}
.wsdb{word-spacing:0.455890pt;}
.wsf9{word-spacing:0.492554pt;}
.ws92{word-spacing:0.514338pt;}
.ws12e{word-spacing:0.537717pt;}
.ws12d{word-spacing:0.607854pt;}
.ws10f{word-spacing:0.619543pt;}
.ws177{word-spacing:0.643857pt;}
.ws32{word-spacing:0.712530pt;}
.wscf{word-spacing:0.742283pt;}
.ws6f{word-spacing:0.753972pt;}
.ws175{word-spacing:0.890214pt;}
.ws17e{word-spacing:0.927307pt;}
.ws1f{word-spacing:0.942070pt;}
.ws122{word-spacing:1.081278pt;}
.ws15f{word-spacing:1.098812pt;}
.ws15e{word-spacing:1.110502pt;}
.ws11a{word-spacing:1.174794pt;}
.ws17d{word-spacing:1.253713pt;}
.ws17f{word-spacing:1.269376pt;}
.ws11e{word-spacing:1.303379pt;}
.ws8d{word-spacing:1.320913pt;}
.wsb8{word-spacing:1.367671pt;}
.ws180{word-spacing:1.396314pt;}
.ws17c{word-spacing:1.398372pt;}
.ws159{word-spacing:1.402739pt;}
.ws178{word-spacing:1.409506pt;}
.ws17a{word-spacing:1.430927pt;}
.ws176{word-spacing:1.446195pt;}
.ws183{word-spacing:1.446595pt;}
.ws71{word-spacing:1.467031pt;}
.ws184{word-spacing:1.526960pt;}
.ws17b{word-spacing:1.533136pt;}
.wsb2{word-spacing:1.578082pt;}
.wsd4{word-spacing:1.671598pt;}
.ws185{word-spacing:1.712010pt;}
.wsf0{word-spacing:1.724200pt;}
.ws186{word-spacing:1.754044pt;}
.ws27{word-spacing:1.764588pt;}
.ws174{word-spacing:1.801523pt;}
.ws181{word-spacing:1.819989pt;}
.ws5e{word-spacing:1.829406pt;}
.ws5d{word-spacing:1.887853pt;}
.wsb5{word-spacing:1.946301pt;}
.ws10b{word-spacing:1.957990pt;}
.wsb4{word-spacing:1.963835pt;}
.wsb3{word-spacing:1.990024pt;}
.ws11f{word-spacing:1.993059pt;}
.wsb6{word-spacing:2.004748pt;}
.ws14a{word-spacing:2.010593pt;}
.ws179{word-spacing:2.012859pt;}
.wsb7{word-spacing:2.063196pt;}
.ws146{word-spacing:2.104109pt;}
.ws81{word-spacing:2.139177pt;}
.ws82{word-spacing:2.150867pt;}
.ws4b{word-spacing:2.156712pt;}
.wsbf{word-spacing:2.180091pt;}
.ws2e{word-spacing:2.199757pt;}
.ws4c{word-spacing:2.215159pt;}
.ws2d{word-spacing:2.247578pt;}
.ws132{word-spacing:2.314520pt;}
.wsae{word-spacing:2.326209pt;}
.ws121{word-spacing:2.337899pt;}
.ws120{word-spacing:2.343743pt;}
.ws133{word-spacing:2.349588pt;}
.ws131{word-spacing:2.355433pt;}
.wsd1{word-spacing:2.378812pt;}
.wsad{word-spacing:2.390501pt;}
.wsd0{word-spacing:2.408036pt;}
.ws15c{word-spacing:2.443104pt;}
.ws15a{word-spacing:2.484017pt;}
.ws15b{word-spacing:2.495707pt;}
.wsfc{word-spacing:2.664619pt;}
.ws51{word-spacing:2.729497pt;}
.ws52{word-spacing:2.770410pt;}
.ws3e{word-spacing:2.776255pt;}
.ws12f{word-spacing:2.793789pt;}
.ws130{word-spacing:2.823013pt;}
.wsaf{word-spacing:2.904839pt;}
.wsb1{word-spacing:2.945752pt;}
.ws55{word-spacing:2.951597pt;}
.ws53{word-spacing:2.963287pt;}
.ws161{word-spacing:3.056803pt;}
.ws2f{word-spacing:3.060531pt;}
.ws160{word-spacing:3.080181pt;}
.ws151{word-spacing:3.126939pt;}
.ws66{word-spacing:3.202921pt;}
.ws63{word-spacing:3.209926pt;}
.ws118{word-spacing:3.237990pt;}
.ws65{word-spacing:3.278903pt;}
.ws119{word-spacing:3.290592pt;}
.ws8c{word-spacing:3.337350pt;}
.wsba{word-spacing:3.349040pt;}
.ws148{word-spacing:3.571140pt;}
.ws149{word-spacing:3.606209pt;}
.wsc2{word-spacing:3.623743pt;}
.ws6a{word-spacing:3.641277pt;}
.ws139{word-spacing:3.658811pt;}
.wsc1{word-spacing:3.693880pt;}
.wsc0{word-spacing:3.705569pt;}
.ws13a{word-spacing:3.828309pt;}
.ws83{word-spacing:3.875067pt;}
.ws7e{word-spacing:3.939359pt;}
.ws14f{word-spacing:3.945204pt;}
.ws7f{word-spacing:3.968583pt;}
.ws80{word-spacing:3.986117pt;}
.ws36{word-spacing:4.021729pt;}
.ws35{word-spacing:4.069550pt;}
.ws158{word-spacing:4.073788pt;}
.ws157{word-spacing:4.161460pt;}
.ws34{word-spacing:4.184320pt;}
.ws33{word-spacing:4.232141pt;}
.ws7a{word-spacing:4.236923pt;}
.ws7b{word-spacing:4.260833pt;}
.wsef{word-spacing:4.325113pt;}
.ws84{word-spacing:4.465386pt;}
.ws86{word-spacing:4.500455pt;}
.ws5c{word-spacing:4.553058pt;}
.ws59{word-spacing:4.582281pt;}
.ws11d{word-spacing:4.611505pt;}
.ws5a{word-spacing:4.634884pt;}
.wsda{word-spacing:4.652418pt;}
.ws21{word-spacing:4.662528pt;}
.ws11c{word-spacing:4.664108pt;}
.ws22{word-spacing:4.667310pt;}
.ws23{word-spacing:4.696003pt;}
.ws20{word-spacing:4.743823pt;}
.ws10e{word-spacing:4.956345pt;}
.ws10a{word-spacing:4.979724pt;}
.ws10d{word-spacing:5.044016pt;}
.ws49{word-spacing:5.073240pt;}
.wsc3{word-spacing:5.084930pt;}
.ws4a{word-spacing:5.114153pt;}
.ws8f{word-spacing:5.172601pt;}
.ws14e{word-spacing:5.318719pt;}
.ws9a{word-spacing:5.482372pt;}
.ws9c{word-spacing:5.499907pt;}
.ws99{word-spacing:5.540820pt;}
.ws9b{word-spacing:5.616802pt;}
.ws11b{word-spacing:5.640181pt;}
.ws9e{word-spacing:5.663560pt;}
.wsb0{word-spacing:5.725275pt;}
.ws9f{word-spacing:5.745386pt;}
.wsd3{word-spacing:5.757075pt;}
.wsd2{word-spacing:5.803833pt;}
.wse4{word-spacing:5.862281pt;}
.ws28{word-spacing:5.929779pt;}
.ws29{word-spacing:5.958472pt;}
.ws13f{word-spacing:6.037623pt;}
.ws2b{word-spacing:6.087588pt;}
.ws2c{word-spacing:6.116280pt;}
.ws13d{word-spacing:6.131139pt;}
.ws2a{word-spacing:6.135409pt;}
.wsbb{word-spacing:6.166208pt;}
.ws13e{word-spacing:6.177897pt;}
.ws4d{word-spacing:6.294792pt;}
.ws137{word-spacing:6.335705pt;}
.ws136{word-spacing:6.341550pt;}
.ws138{word-spacing:6.429221pt;}
.ws104{word-spacing:6.458445pt;}
.ws109{word-spacing:6.610408pt;}
.ws14b{word-spacing:6.633787pt;}
.ws108{word-spacing:6.639632pt;}
.wse5{word-spacing:6.645477pt;}
.wse6{word-spacing:6.663011pt;}
.wse7{word-spacing:6.674701pt;}
.ws10c{word-spacing:6.698080pt;}
.wsf1{word-spacing:6.768217pt;}
.ws48{word-spacing:6.774061pt;}
.ws1e{word-spacing:6.900541pt;}
.ws70{word-spacing:6.937714pt;}
.wsa4{word-spacing:6.942204pt;}
.ws7c{word-spacing:6.955249pt;}
.wsa5{word-spacing:7.013696pt;}
.wsa3{word-spacing:7.037075pt;}
.ws100{word-spacing:7.048764pt;}
.ws26{word-spacing:7.067914pt;}
.ws101{word-spacing:7.089678pt;}
.ws41{word-spacing:7.159815pt;}
.ws42{word-spacing:7.200728pt;}
.ws116{word-spacing:7.247486pt;}
.ws6c{word-spacing:7.323468pt;}
.ws91{word-spacing:7.387760pt;}
.ws90{word-spacing:7.399449pt;}
.wsbd{word-spacing:7.487120pt;}
.wsff{word-spacing:7.492965pt;}
.wsbe{word-spacing:7.498810pt;}
.wsee{word-spacing:7.609860pt;}
.wsed{word-spacing:7.639084pt;}
.ws3c{word-spacing:7.861184pt;}
.wsa6{word-spacing:7.925476pt;}
.ws124{word-spacing:7.989769pt;}
.ws123{word-spacing:8.001458pt;}
.wsa9{word-spacing:8.048216pt;}
.wsa8{word-spacing:8.059906pt;}
.wsaa{word-spacing:8.083285pt;}
.ws113{word-spacing:8.328764pt;}
.ws112{word-spacing:8.340453pt;}
.ws114{word-spacing:8.375522pt;}
.ws127{word-spacing:8.387211pt;}
.ws47{word-spacing:8.439814pt;}
.ws61{word-spacing:8.568399pt;}
.ws43{word-spacing:8.673604pt;}
.wscb{word-spacing:8.685294pt;}
.ws9d{word-spacing:8.983376pt;}
.wsd6{word-spacing:9.059357pt;}
.wsd5{word-spacing:9.094426pt;}
.ws85{word-spacing:9.298992pt;}
.wscd{word-spacing:9.497713pt;}
.ws111{word-spacing:9.924380pt;}
.wsbc{word-spacing:9.982827pt;}
.wsce{word-spacing:10.362736pt;}
.ws106{word-spacing:10.643284pt;}
.ws105{word-spacing:10.690042pt;}
.ws24{word-spacing:10.836193pt;}
.ws38{word-spacing:10.840975pt;}
.ws153{word-spacing:10.842005pt;}
.ws25{word-spacing:10.884014pt;}
.ws152{word-spacing:10.917987pt;}
.wsd7{word-spacing:10.929676pt;}
.wseb{word-spacing:11.467393pt;}
.ws103{word-spacing:11.555064pt;}
.ws3b{word-spacing:11.572598pt;}
.wsd9{word-spacing:11.695338pt;}
.ws107{word-spacing:11.701183pt;}
.wsd8{word-spacing:11.736251pt;}
.wsca{word-spacing:11.829767pt;}
.ws129{word-spacing:12.180452pt;}
.wsea{word-spacing:12.805840pt;}
.wse9{word-spacing:12.811685pt;}
.ws40{word-spacing:13.273420pt;}
.ws14d{word-spacing:13.688397pt;}
.wsec{word-spacing:14.272871pt;}
.ws125{word-spacing:14.518351pt;}
.wse8{word-spacing:15.032688pt;}
.wsfe{word-spacing:19.614970pt;}
.wsa0{word-spacing:70.832169pt;}
.wsf6{word-spacing:223.941469pt;}
.ws168{word-spacing:276.440794pt;}
.ws76{word-spacing:342.262520pt;}
._23{margin-left:-877.497334pt;}
._26{margin-left:-848.221440pt;}
._28{margin-left:-152.945265pt;}
._27{margin-left:-145.088307pt;}
._1{margin-left:-33.315068pt;}
._5{margin-left:-28.449950pt;}
._3{margin-left:-24.751839pt;}
._24{margin-left:-23.307330pt;}
._c{margin-left:-21.811142pt;}
._b{margin-left:-19.085281pt;}
._39{margin-left:-18.150268pt;}
._37{margin-left:-16.359592pt;}
._38{margin-left:-13.483467pt;}
._29{margin-left:-11.955200pt;}
._3d{margin-left:-9.045502pt;}
._36{margin-left:-7.253311pt;}
._0{margin-left:-6.216704pt;}
._7{margin-left:-4.771784pt;}
._4{margin-left:-3.564214pt;}
._2{margin-left:-1.965961pt;}
._a{margin-left:-0.938859pt;}
._15{width:0.889994pt;}
._3c{width:1.787652pt;}
._d{width:2.701875pt;}
._8{width:3.948206pt;}
._6{width:5.278147pt;}
._14{width:8.993473pt;}
._17{width:10.290473pt;}
._e{width:11.945636pt;}
._33{width:13.363485pt;}
._11{width:14.365368pt;}
._9{width:15.460399pt;}
._13{width:16.894669pt;}
._25{width:18.863657pt;}
._16{width:20.006069pt;}
._34{width:21.206867pt;}
._12{width:22.289861pt;}
._f{width:23.687007pt;}
._35{width:26.192436pt;}
._30{width:29.609487pt;}
._2b{width:50.878520pt;}
._2a{width:70.444605pt;}
._31{width:235.461464pt;}
._2e{width:252.101458pt;}
._32{width:254.585505pt;}
._2c{width:265.012503pt;}
._1a{width:266.982183pt;}
._21{width:274.145801pt;}
._3a{width:276.123442pt;}
._3b{width:280.104810pt;}
._19{width:311.396413pt;}
._2d{width:339.848640pt;}
._22{width:353.811739pt;}
._20{width:384.042895pt;}
._1e{width:386.063052pt;}
._2f{width:428.262123pt;}
._1b{width:436.568898pt;}
._1c{width:450.824118pt;}
._1f{width:465.791241pt;}
._1d{width:849.346896pt;}
._18{width:1026.197241pt;}
._10{width:1590.476769pt;}
.fs18{font-size:8.242667pt;}
.fs10{font-size:8.254400pt;}
.fsb{font-size:9.067200pt;}
.fse{font-size:24.728000pt;}
.fs12{font-size:24.763733pt;}
.fs7{font-size:26.566933pt;}
.fs8{font-size:31.880533pt;}
.fs9{font-size:32.000000pt;}
.fs1c{font-size:32.970667pt;}
.fsd{font-size:37.092267pt;}
.fs4{font-size:40.913067pt;}
.fs3{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs16{font-size:48.219733pt;}
.fs1d{font-size:50.898667pt;}
.fs15{font-size:51.104533pt;}
.fs1a{font-size:51.764267pt;}
.fs1b{font-size:53.577600pt;}
.fs1f{font-size:54.813867pt;}
.fs1e{font-size:55.226133pt;}
.fsc{font-size:56.297600pt;}
.fs19{font-size:56.874667pt;}
.fs6{font-size:58.181867pt;}
.fs5{font-size:58.447467pt;}
.fs11{font-size:60.258133pt;}
.fs14{font-size:60.995733pt;}
.fs17{font-size:63.468800pt;}
.fs2{font-size:63.760533pt;}
.fs13{font-size:65.941333pt;}
.fs20{font-size:67.796267pt;}
.fsa{font-size:70.666667pt;}
.fsf{font-size:112.100267pt;}
.fs1{font-size:132.835200pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:8.540480pt;}
.y164{bottom:8.761588pt;}
.y154{bottom:8.761988pt;}
.y159{bottom:8.762240pt;}
.y16c{bottom:8.762267pt;}
.y15d{bottom:11.016800pt;}
.y163{bottom:11.234667pt;}
.y153{bottom:11.235067pt;}
.y158{bottom:11.482400pt;}
.y160{bottom:18.429717pt;}
.y168{bottom:18.604267pt;}
.y16f{bottom:18.720400pt;}
.y166{bottom:18.776133pt;}
.y179{bottom:18.776267pt;}
.y155{bottom:18.776533pt;}
.y172{bottom:18.778510pt;}
.y15b{bottom:23.231200pt;}
.y174{bottom:30.272933pt;}
.y16d{bottom:30.831467pt;}
.y177{bottom:30.932933pt;}
.y176{bottom:31.002933pt;}
.y156{bottom:31.183333pt;}
.y170{bottom:31.280267pt;}
.y16a{bottom:31.552667pt;}
.y171{bottom:31.758400pt;}
.y167{bottom:31.802533pt;}
.y173{bottom:31.847600pt;}
.y165{bottom:32.808000pt;}
.y175{bottom:32.808400pt;}
.y178{bottom:33.120933pt;}
.y15f{bottom:34.322800pt;}
.y16e{bottom:34.587600pt;}
.y15a{bottom:40.522000pt;}
.y16b{bottom:43.084267pt;}
.y161{bottom:48.892533pt;}
.y162{bottom:66.666667pt;}
.y26{bottom:172.083239pt;}
.y8e{bottom:172.083801pt;}
.yc4{bottom:172.084753pt;}
.y71{bottom:172.085203pt;}
.y4b{bottom:172.086404pt;}
.y113{bottom:172.089278pt;}
.y136{bottom:172.097146pt;}
.y135{bottom:188.044537pt;}
.y25{bottom:190.023688pt;}
.y8d{bottom:190.024251pt;}
.yc3{bottom:190.025203pt;}
.y70{bottom:190.025652pt;}
.y4a{bottom:190.026854pt;}
.y112{bottom:190.029728pt;}
.y134{bottom:203.980239pt;}
.y8c{bottom:207.951550pt;}
.yc2{bottom:207.952502pt;}
.y6f{bottom:207.952952pt;}
.y49{bottom:207.954153pt;}
.y111{bottom:207.957027pt;}
.y133{bottom:219.927630pt;}
.y24{bottom:221.404133pt;}
.yc1{bottom:225.892952pt;}
.y8b{bottom:225.893203pt;}
.y6e{bottom:225.893402pt;}
.y48{bottom:225.894603pt;}
.y110{bottom:225.897477pt;}
.y132{bottom:235.863332pt;}
.y152{bottom:243.205333pt;}
.yc0{bottom:243.820251pt;}
.y8a{bottom:243.820502pt;}
.y6d{bottom:243.820701pt;}
.y10f{bottom:243.824776pt;}
.y131{bottom:251.799034pt;}
.y47{bottom:257.275048pt;}
.ybf{bottom:261.747550pt;}
.y89{bottom:261.747801pt;}
.y6c{bottom:261.748251pt;}
.yef{bottom:261.749968pt;}
.y10e{bottom:261.752075pt;}
.y130{bottom:267.746425pt;}
.y88{bottom:279.688251pt;}
.y6b{bottom:279.688701pt;}
.ybe{bottom:279.689700pt;}
.yee{bottom:279.690417pt;}
.y10d{bottom:279.692525pt;}
.y12f{bottom:283.682127pt;}
.y87{bottom:297.615550pt;}
.ybd{bottom:297.617000pt;}
.y6a{bottom:297.617203pt;}
.yed{bottom:297.617717pt;}
.y10c{bottom:297.619824pt;}
.y12e{bottom:299.617829pt;}
.y23{bottom:303.068174pt;}
.y86{bottom:315.557402pt;}
.ybc{bottom:315.557449pt;}
.y69{bottom:315.557652pt;}
.yec{bottom:315.558167pt;}
.y10b{bottom:315.560274pt;}
.y12d{bottom:315.565220pt;}
.y22{bottom:317.684602pt;}
.y46{bottom:323.778037pt;}
.y12c{bottom:331.500922pt;}
.y85{bottom:333.484701pt;}
.ybb{bottom:333.484749pt;}
.y68{bottom:333.484952pt;}
.yeb{bottom:333.485466pt;}
.y10a{bottom:333.487573pt;}
.y21{bottom:340.269170pt;}
.y45{bottom:341.705336pt;}
.y12b{bottom:347.436623pt;}
.yba{bottom:351.412048pt;}
.y67{bottom:351.412251pt;}
.y84{bottom:351.412635pt;}
.yea{bottom:351.412765pt;}
.y20{bottom:354.873642pt;}
.y44{bottom:359.632635pt;}
.y12a{bottom:363.384015pt;}
.y109{bottom:364.868018pt;}
.yb9{bottom:369.352498pt;}
.y66{bottom:369.352701pt;}
.y83{bottom:369.353085pt;}
.ye9{bottom:369.353215pt;}
.y1f{bottom:369.490070pt;}
.y43{bottom:377.573085pt;}
.y129{bottom:379.319717pt;}
.y1e{bottom:384.106497pt;}
.yb8{bottom:387.279797pt;}
.y82{bottom:387.280384pt;}
.y65{bottom:392.560000pt;}
.y128{bottom:395.255418pt;}
.y42{bottom:395.500384pt;}
.y1d{bottom:398.710970pt;}
.yb7{bottom:405.220247pt;}
.y81{bottom:405.220834pt;}
.y64{bottom:405.221402pt;}
.y127{bottom:411.202810pt;}
.y1c{bottom:413.327397pt;}
.y41{bottom:413.440834pt;}
.y108{bottom:418.603158pt;}
.y169{bottom:419.744000pt;}
.yb6{bottom:423.147546pt;}
.y63{bottom:423.148701pt;}
.y126{bottom:427.138511pt;}
.ye8{bottom:427.144609pt;}
.y1b{bottom:427.943825pt;}
.y40{bottom:431.368701pt;}
.y107{bottom:436.543608pt;}
.y62{bottom:441.075680pt;}
.y80{bottom:441.075883pt;}
.y1a{bottom:442.548297pt;}
.y125{bottom:443.074213pt;}
.ye7{bottom:443.092000pt;}
.y3f{bottom:449.298868pt;}
.y106{bottom:454.470907pt;}
.y19{bottom:457.164724pt;}
.y61{bottom:459.016130pt;}
.y124{bottom:459.021604pt;}
.y3e{bottom:467.239318pt;}
.ye6{bottom:469.888000pt;}
.y18{bottom:471.781152pt;}
.y105{bottom:472.398206pt;}
.y123{bottom:474.957306pt;}
.yb5{bottom:479.092000pt;}
.y17{bottom:486.385624pt;}
.y104{bottom:490.338656pt;}
.y60{bottom:490.396575pt;}
.y122{bottom:490.904698pt;}
.ye1{bottom:491.094894pt;}
.y3d{bottom:498.619763pt;}
.y16{bottom:501.002052pt;}
.y7f{bottom:501.652298pt;}
.y151{bottom:501.886667pt;}
.yb4{bottom:505.888000pt;}
.y121{bottom:506.840399pt;}
.ye4{bottom:506.969763pt;}
.ydf{bottom:507.095401pt;}
.y103{bottom:508.265955pt;}
.y15{bottom:515.606524pt;}
.y7e{bottom:517.588000pt;}
.ye3{bottom:517.972133pt;}
.y120{bottom:522.776101pt;}
.y150{bottom:523.086667pt;}
.y102{bottom:526.206405pt;}
.ya3{bottom:527.093333pt;}
.y3c{bottom:528.667606pt;}
.y14{bottom:538.191092pt;}
.y11f{bottom:538.723492pt;}
.y5f{bottom:538.840758pt;}
.y14f{bottom:540.050250pt;}
.yb1{bottom:543.093333pt;}
.y101{bottom:544.133704pt;}
.y7d{bottom:546.532000pt;}
.y13{bottom:552.807520pt;}
.y14e{bottom:555.997641pt;}
.y5e{bottom:556.768057pt;}
.ye5{bottom:558.410597pt;}
.y100{bottom:562.061004pt;}
.ya9{bottom:565.670267pt;}
.y12{bottom:567.423948pt;}
.y7b{bottom:567.737823pt;}
.y11e{bottom:568.110879pt;}
.yac{bottom:568.290267pt;}
.y14d{bottom:571.933343pt;}
.y5d{bottom:574.708507pt;}
.ya6{bottom:576.554387pt;}
.ya1{bottom:576.665467pt;}
.yab{bottom:577.371867pt;}
.yff{bottom:580.001453pt;}
.ya8{bottom:580.329467pt;}
.y7a{bottom:583.737467pt;}
.yae{bottom:585.101467pt;}
.y14c{bottom:587.869045pt;}
.ye2{bottom:591.631733pt;}
.yad{bottom:592.166267pt;}
.y5c{bottom:592.635806pt;}
.y11{bottom:592.708000pt;}
.y3b{bottom:595.172056pt;}
.y15c{bottom:596.282667pt;}
.yaa{bottom:596.703867pt;}
.yfe{bottom:597.928753pt;}
.ydc{bottom:597.938533pt;}
.yb2{bottom:599.154800pt;}
.ya2{bottom:600.683600pt;}
.y14b{bottom:603.816436pt;}
.yaf{bottom:605.419067pt;}
.y5b{bottom:610.563105pt;}
.y3a{bottom:613.112506pt;}
.yfd{bottom:615.869203pt;}
.y10{bottom:619.336609pt;}
.y14a{bottom:619.752138pt;}
.y11d{bottom:621.078895pt;}
.y5a{bottom:628.503555pt;}
.ya5{bottom:629.050865pt;}
.y39{bottom:631.039805pt;}
.yfc{bottom:633.796502pt;}
.y149{bottom:635.687840pt;}
.ydd{bottom:638.193733pt;}
.y11c{bottom:639.006195pt;}
.yf{bottom:640.564000pt;}
.y7c{bottom:648.850268pt;}
.y38{bottom:648.967104pt;}
.y148{bottom:651.635231pt;}
.yfb{bottom:651.723801pt;}
.y11b{bottom:656.946644pt;}
.ye{bottom:657.472000pt;}
.y59{bottom:659.884000pt;}
.ya0{bottom:666.073467pt;}
.y37{bottom:666.907554pt;}
.ya7{bottom:667.158267pt;}
.y147{bottom:667.570933pt;}
.yd{bottom:669.112298pt;}
.yb3{bottom:669.477733pt;}
.yfa{bottom:669.664251pt;}
.y11a{bottom:674.873944pt;}
.yde{bottom:678.450478pt;}
.ya4{bottom:682.342365pt;}
.y146{bottom:683.506634pt;}
.y79{bottom:684.556133pt;}
.y36{bottom:684.834853pt;}
.yb0{bottom:685.515867pt;}
.yf9{bottom:687.591550pt;}
.yc{bottom:690.328000pt;}
.ye0{bottom:692.116467pt;}
.y119{bottom:692.801243pt;}
.y145{bottom:699.454026pt;}
.yb{bottom:701.968298pt;}
.y35{bottom:702.775303pt;}
.y58{bottom:704.151528pt;}
.yf8{bottom:705.532000pt;}
.y77{bottom:705.762623pt;}
.y9f{bottom:706.576000pt;}
.y118{bottom:710.741693pt;}
.yd0{bottom:714.580133pt;}
.y144{bottom:715.389728pt;}
.y34{bottom:720.702602pt;}
.y76{bottom:721.762267pt;}
.ya{bottom:723.184133pt;}
.y57{bottom:727.180000pt;}
.y8f{bottom:727.782667pt;}
.y143{bottom:731.325429pt;}
.yda{bottom:735.786598pt;}
.ycd{bottom:735.787485pt;}
.y9{bottom:738.004133pt;}
.y33{bottom:738.629901pt;}
.y56{bottom:738.687686pt;}
.y117{bottom:742.122138pt;}
.y93{bottom:743.656138pt;}
.y91{bottom:743.657333pt;}
.y98{bottom:743.781667pt;}
.y9d{bottom:743.782863pt;}
.y142{bottom:747.272821pt;}
.yd8{bottom:751.660713pt;}
.ycb{bottom:751.661599pt;}
.ycf{bottom:751.786667pt;}
.yd4{bottom:751.786881pt;}
.yc7{bottom:751.787126pt;}
.yd5{bottom:751.788077pt;}
.y92{bottom:754.451683pt;}
.y8{bottom:755.932000pt;}
.y32{bottom:756.570351pt;}
.y55{bottom:758.163843pt;}
.yca{bottom:762.072188pt;}
.yd9{bottom:762.471800pt;}
.y141{bottom:763.208522pt;}
.y157{bottom:772.821333pt;}
.y7{bottom:773.872133pt;}
.y31{bottom:774.497651pt;}
.y94{bottom:776.758891pt;}
.y54{bottom:777.639686pt;}
.y140{bottom:779.155914pt;}
.y78{bottom:782.714658pt;}
.yf7{bottom:785.571572pt;}
.y30{bottom:792.438100pt;}
.y116{bottom:795.090154pt;}
.y13f{bottom:795.091615pt;}
.y53{bottom:797.115843pt;}
.y95{bottom:798.006868pt;}
.ycc{bottom:802.615857pt;}
.yd7{bottom:803.031011pt;}
.yf6{bottom:808.612000pt;}
.y2f{bottom:810.365400pt;}
.y13e{bottom:811.027317pt;}
.y115{bottom:813.017453pt;}
.y52{bottom:816.592303pt;}
.y96{bottom:819.387548pt;}
.y75{bottom:819.916000pt;}
.yf5{bottom:820.108133pt;}
.y6{bottom:826.637440pt;}
.y13d{bottom:826.974709pt;}
.y2e{bottom:828.292699pt;}
.y114{bottom:830.957903pt;}
.y90{bottom:831.862933pt;}
.yce{bottom:835.892267pt;}
.y51{bottom:836.067702pt;}
.ydb{bottom:836.160133pt;}
.yf4{bottom:838.709110pt;}
.y97{bottom:838.887674pt;}
.y73{bottom:841.110489pt;}
.yc5{bottom:842.249733pt;}
.yd1{bottom:842.682267pt;}
.y13c{bottom:842.910410pt;}
.y2d{bottom:848.885203pt;}
.y50{bottom:852.003404pt;}
.y72{bottom:857.110133pt;}
.yf3{bottom:857.308555pt;}
.y13b{bottom:858.846112pt;}
.y99{bottom:860.232489pt;}
.y5{bottom:866.488000pt;}
.y2c{bottom:866.812502pt;}
.y4f{bottom:870.615976pt;}
.y13a{bottom:874.793503pt;}
.yf2{bottom:875.908000pt;}
.y9a{bottom:881.576107pt;}
.yc6{bottom:882.614075pt;}
.yd2{bottom:882.899559pt;}
.y2b{bottom:884.752952pt;}
.y4e{bottom:890.092133pt;}
.y139{bottom:890.729205pt;}
.yf1{bottom:895.036000pt;}
.y2a{bottom:902.680251pt;}
.y9b{bottom:902.920921pt;}
.y138{bottom:906.664907pt;}
.y4d{bottom:910.096000pt;}
.y29{bottom:920.620701pt;}
.y74{bottom:921.420741pt;}
.yf0{bottom:921.844298pt;}
.y137{bottom:922.612298pt;}
.yc8{bottom:922.978417pt;}
.yd3{bottom:923.115657pt;}
.y9c{bottom:924.264540pt;}
.y4{bottom:927.914673pt;}
.y9e{bottom:936.421783pt;}
.yc9{bottom:936.643210pt;}
.yd6{bottom:937.014772pt;}
.y4c{bottom:937.780000pt;}
.y28{bottom:938.548000pt;}
.y3{bottom:942.531100pt;}
.y2{bottom:957.147528pt;}
.y27{bottom:969.496133pt;}
.y1{bottom:971.752000pt;}
.h21{height:6.437712pt;}
.h24{height:6.528384pt;}
.h2f{height:7.253547pt;}
.h27{height:7.263872pt;}
.h1e{height:11.901986pt;}
.hc{height:12.353624pt;}
.h25{height:17.680520pt;}
.h29{height:21.792085pt;}
.h19{height:21.933807pt;}
.h17{height:22.016000pt;}
.h23{height:26.743524pt;}
.h33{height:29.014187pt;}
.h11{height:32.900710pt;}
.h10{height:32.905492pt;}
.h18{height:33.713664pt;}
.h2d{height:34.766428pt;}
.h4{height:36.126238pt;}
.h34{height:36.697939pt;}
.he{height:36.717879pt;}
.h2c{height:36.846369pt;}
.h31{height:37.322036pt;}
.h36{height:39.520798pt;}
.h35{height:39.818042pt;}
.h22{height:40.590570pt;}
.h30{height:41.006635pt;}
.h1b{height:41.502532pt;}
.h1c{height:41.506952pt;}
.h16{height:41.509691pt;}
.h1a{height:41.516780pt;}
.h1{height:42.917300pt;}
.h2b{height:43.977924pt;}
.h6{height:44.154850pt;}
.h32{height:47.148288pt;}
.h2a{height:47.543701pt;}
.h37{height:48.881108pt;}
.h1f{height:49.466667pt;}
.h5{height:51.609113pt;}
.h8{height:52.454318pt;}
.h9{height:52.454413pt;}
.hb{height:52.455575pt;}
.h28{height:53.027157pt;}
.h7{height:53.966875pt;}
.h2e{height:55.852544pt;}
.h1d{height:57.830009pt;}
.h15{height:57.832273pt;}
.hf{height:57.833069pt;}
.h14{height:57.835076pt;}
.h13{height:57.838349pt;}
.h12{height:57.838413pt;}
.hd{height:57.839158pt;}
.h3{height:61.284552pt;}
.ha{height:84.375508pt;}
.h26{height:84.403619pt;}
.h2{height:119.214403pt;}
.h20{height:163.205333pt;}
.h0{height:1056.000000pt;}
.w2{width:122.666667pt;}
.w1{width:800.000000pt;}
.w0{width:800.040000pt;}
.x0{left:0.000000pt;}
.x4c{left:7.622800pt;}
.x4b{left:8.761867pt;}
.x4e{left:20.444400pt;}
.x4f{left:66.666667pt;}
.x1{left:94.688000pt;}
.x9{left:97.352000pt;}
.x6{left:101.336000pt;}
.x48{left:124.351551pt;}
.x7{left:134.540405pt;}
.x2c{left:135.548000pt;}
.x8{left:137.888000pt;}
.x34{left:161.190933pt;}
.x32{left:167.254775pt;}
.x2e{left:176.808400pt;}
.x2d{left:182.786000pt;}
.x31{left:187.173558pt;}
.x4a{left:202.666667pt;}
.x2{left:213.549090pt;}
.x1c{left:223.830933pt;}
.x1f{left:229.896374pt;}
.x1e{left:239.448579pt;}
.x4{left:260.095251pt;}
.x35{left:263.288000pt;}
.x13{left:269.166933pt;}
.x15{left:275.232751pt;}
.x33{left:276.851680pt;}
.x16{left:281.210351pt;}
.x27{left:282.646667pt;}
.x18{left:284.786151pt;}
.x45{left:287.826933pt;}
.x14{left:290.163600pt;}
.x46{left:293.892000pt;}
.x41{left:303.444133pt;}
.x49{left:305.432133pt;}
.x40{left:309.422000pt;}
.x43{left:313.629964pt;}
.x19{left:316.948030pt;}
.x26{left:320.337867pt;}
.x2f{left:328.423051pt;}
.x4d{left:338.666667pt;}
.x47{left:356.158268pt;}
.x24{left:365.097067pt;}
.xd{left:366.263683pt;}
.x25{left:372.090667pt;}
.x10{left:373.571959pt;}
.x30{left:375.620985pt;}
.x1d{left:377.408000pt;}
.x28{left:378.394667pt;}
.xc{left:382.856305pt;}
.xe{left:389.924000pt;}
.x11{left:396.896000pt;}
.x44{left:403.500434pt;}
.x12{left:405.692000pt;}
.x23{left:409.491467pt;}
.x42{left:411.128206pt;}
.x3f{left:413.130933pt;}
.x3d{left:419.196506pt;}
.x3{left:421.183824pt;}
.x3b{left:425.174106pt;}
.x38{left:428.748667pt;}
.x37{left:434.726267pt;}
.x2b{left:437.594667pt;}
.x36{left:440.703867pt;}
.x17{left:449.054186pt;}
.x1b{left:453.389600pt;}
.x22{left:463.877067pt;}
.x50{left:474.666667pt;}
.x3c{left:485.477331pt;}
.xb{left:501.173333pt;}
.xf{left:508.484000pt;}
.x20{left:511.650667pt;}
.x21{left:515.958667pt;}
.x5{left:520.880089pt;}
.x29{left:528.596000pt;}
.x3e{left:530.984800pt;}
.x2a{left:532.542667pt;}
.x39{left:538.481861pt;}
.x1a{left:543.672000pt;}
.x51{left:610.666667pt;}
.x3a{left:622.982410pt;}
.xa{left:688.279010pt;}
}




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