
    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_9cf1e9afe451e0b454d28f53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c54bdb79be9763058e64f63c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_0fd94376d0d14908cde1a266.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d4c471e51b5037baa26b36ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_8b9a46b15f597602f7fb323e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_a406f281e01876ab5a7399fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d881c7289fd9e7c18c4bdc8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_13d926f3c9fbffe21eeeca8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.185000;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_c5e6d09201fc9e177620051e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.203000;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_2f011bb83e2d4616f8b9b37d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.239000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.fff{font-family:fff;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.203000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.239000;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_91ad9cdf69940f4ee71fbc78.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.483000;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_e6e7943a587a629014fa5084.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.303000;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_41bafd163529e5bbe7a36185.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.185000;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_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.222000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.203000;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_4dc67da1d9268cc4c57b2e70.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.483000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.239000;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_e6e7943a587a629014fa5084.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.303000;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_f9623dac9ea019baee59a0a0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.185000;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_f6dcae67d5d518d71db22476.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.203000;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_ca1e0f9152b3ea13e7ce6bb7.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.483000;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_e6e7943a587a629014fa5084.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.303000;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_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.222000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.239000;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_f9623dac9ea019baee59a0a0.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.185000;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_f6dcae67d5d518d71db22476.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.203000;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_59f9018f24ef545f2be00743.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.483000;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_e6e7943a587a629014fa5084.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.303000;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_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.222000;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_2f011bb83e2d4616f8b9b37d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.239000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.203000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.239000;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_8c12177655d1acbfc27a701a.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.185000;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_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.222000;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_35624f25dc2e0db2d57acd4b.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.222000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.203000;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_919d4ab5a744a14627e964d9.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.483000;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_37b8aeb4a42eea106861b00a.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.222000;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_2f011bb83e2d4616f8b9b37d.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.239000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.203000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.239000;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_f9623dac9ea019baee59a0a0.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.185000;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_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.222000;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_35624f25dc2e0db2d57acd4b.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.222000;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_ebbc72d8e5e5c4c378a638d5.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.183000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.202000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.202000;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_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.203000;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:ff46;src:url('chunks/assets/font_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.239000;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:ff47;src:url('chunks/assets/font_f9623dac9ea019baee59a0a0.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.185000;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:ff48;src:url('chunks/assets/font_f6dcae67d5d518d71db22476.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.666504;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:ff49;src:url('chunks/assets/font_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.202000;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:ff4a;src:url('chunks/assets/font_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.202000;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:ff4b;src:url('chunks/assets/font_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.203000;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:ff4c;src:url('chunks/assets/font_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.239000;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:ff4d;src:url('chunks/assets/font_81f70485dbcf985f4c1563ae.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.483000;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:ff4e;src:url('chunks/assets/font_a4e94a690b0c409187acae5a.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.444000;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:ff4f;src:url('chunks/assets/font_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.222000;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:ff50;src:url('chunks/assets/font_41bafd163529e5bbe7a36185.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.185000;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:ff51;src:url('chunks/assets/font_35624f25dc2e0db2d57acd4b.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.222000;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:ff52;src:url('chunks/assets/font_ebbc72d8e5e5c4c378a638d5.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.183000;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:ff53;src:url('chunks/assets/font_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.202000;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:ff54;src:url('chunks/assets/font_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.202000;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:ff55;src:url('chunks/assets/font_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.203000;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:ff56;src:url('chunks/assets/font_c5e6d09201fc9e177620051e.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.222000;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:ff57;src:url('chunks/assets/font_6c578382cfa8d6e72b173488.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.185000;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:ff58;src:url('chunks/assets/font_e0687ec8b222e5981fed5d0a.woff2')format("woff");}.ff58{font-family:ff58;line-height:1.183000;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:ff59;src:url('chunks/assets/font_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff59{font-family:ff59;line-height:1.239000;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:ff5a;src:url('chunks/assets/font_c60cc332a4b32d9725df4150.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.938477;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:ff5b;src:url('chunks/assets/font_fc3e09e964e29903c66cf098.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.666504;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:ff5c;src:url('chunks/assets/font_081209baef1a3fe48b5ae2cf.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v5{vertical-align:19.199982px;}
.v4{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.ls18{letter-spacing:-2.160000px;}
.ls19{letter-spacing:-2.112000px;}
.ls16{letter-spacing:-2.016000px;}
.ls1a{letter-spacing:-1.968000px;}
.ls10{letter-spacing:-1.824000px;}
.lsf{letter-spacing:-1.296000px;}
.ls6{letter-spacing:-1.050000px;}
.ls12{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.624000px;}
.ls7{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.318384px;}
.ls3{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000005px;}
.ls8{letter-spacing:0.000009px;}
.lsb{letter-spacing:0.000020px;}
.ls14{letter-spacing:0.000025px;}
.lsd{letter-spacing:0.000029px;}
.ls17{letter-spacing:0.000035px;}
.lsa{letter-spacing:0.000100px;}
.lse{letter-spacing:0.000120px;}
.ls15{letter-spacing:0.000146px;}
.ls0{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.317376px;}
.ls1c{letter-spacing:0.359136px;}
.ls11{letter-spacing:0.384000px;}
.ls5{letter-spacing:9.360000px;}
.ls1{letter-spacing:1510.884000px;}
.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;}
}
.ws3{word-spacing:-26.503056px;}
.ws0{word-spacing:-20.030400px;}
.ws4{word-spacing:-20.016000px;}
.ws1{word-spacing:-20.001600px;}
.ws1a{word-spacing:-14.700000px;}
.wsc{word-spacing:-14.454000px;}
.ws100{word-spacing:-13.935600px;}
.ws19{word-spacing:-13.818000px;}
.ws9{word-spacing:-12.483600px;}
.wsa{word-spacing:-12.420000px;}
.wsb{word-spacing:-11.880000px;}
.ws1b{word-spacing:-11.826000px;}
.wsd0{word-spacing:-11.426400px;}
.wsca{word-spacing:-10.896000px;}
.ws1f{word-spacing:-10.512000px;}
.wsd{word-spacing:-10.117800px;}
.wsc3{word-spacing:-9.936000px;}
.ws8{word-spacing:-9.855000px;}
.wscc{word-spacing:-9.792000px;}
.ws101{word-spacing:-9.315000px;}
.ws17{word-spacing:-9.198000px;}
.wsc4{word-spacing:-8.784000px;}
.wsc2{word-spacing:-8.640000px;}
.ws16{word-spacing:-8.148000px;}
.wsc9{word-spacing:-8.112000px;}
.ws10e{word-spacing:-8.100000px;}
.ws10c{word-spacing:-7.968000px;}
.wsff{word-spacing:-7.920000px;}
.ws103{word-spacing:-7.824000px;}
.ws102{word-spacing:-7.776000px;}
.ws21{word-spacing:-7.358400px;}
.ws7{word-spacing:-6.898500px;}
.ws10d{word-spacing:-6.585600px;}
.ws52{word-spacing:-6.468000px;}
.ws56{word-spacing:-4.512000px;}
.ws111{word-spacing:-4.230000px;}
.wsce{word-spacing:-3.936000px;}
.ws59{word-spacing:-2.016000px;}
.ws57{word-spacing:-1.680000px;}
.ws18{word-spacing:-1.575000px;}
.wsa4{word-spacing:-1.058400px;}
.wse1{word-spacing:-0.646800px;}
.ws94{word-spacing:-0.411600px;}
.ws58{word-spacing:-0.384000px;}
.wsac{word-spacing:-0.352800px;}
.wse7{word-spacing:-0.235200px;}
.ws10f{word-spacing:-0.135000px;}
.ws2b{word-spacing:-0.117600px;}
.ws110{word-spacing:-0.045000px;}
.ws2{word-spacing:0.000000px;}
.wsb6{word-spacing:0.117600px;}
.ws15{word-spacing:0.294000px;}
.ws3d{word-spacing:0.352800px;}
.ws5e{word-spacing:0.470400px;}
.ws11{word-spacing:0.504000px;}
.ws7a{word-spacing:0.588000px;}
.wscf{word-spacing:0.624000px;}
.ws76{word-spacing:0.646800px;}
.wsbe{word-spacing:0.764400px;}
.ws66{word-spacing:0.823200px;}
.ws34{word-spacing:0.882000px;}
.wsae{word-spacing:0.940800px;}
.wsbb{word-spacing:0.999600px;}
.wsec{word-spacing:1.117200px;}
.wsd2{word-spacing:1.234800px;}
.ws82{word-spacing:1.411200px;}
.ws86{word-spacing:1.470000px;}
.ws12{word-spacing:1.512000px;}
.wsda{word-spacing:1.528800px;}
.ws53{word-spacing:1.822800px;}
.ws93{word-spacing:1.881600px;}
.ws14{word-spacing:1.890000px;}
.wsa7{word-spacing:1.940400px;}
.ws67{word-spacing:1.999200px;}
.ws13{word-spacing:2.016000px;}
.ws41{word-spacing:2.058000px;}
.ws75{word-spacing:2.175600px;}
.ws45{word-spacing:2.234400px;}
.ws10{word-spacing:2.310000px;}
.ws87{word-spacing:2.352000px;}
.wsfb{word-spacing:2.410800px;}
.ws6d{word-spacing:2.528400px;}
.wsa5{word-spacing:2.587200px;}
.ws26{word-spacing:2.640000px;}
.ws73{word-spacing:2.646000px;}
.wse0{word-spacing:2.881200px;}
.ws83{word-spacing:2.998800px;}
.ws4f{word-spacing:3.057600px;}
.ws25{word-spacing:3.072000px;}
.wsd7{word-spacing:3.116400px;}
.ws3f{word-spacing:3.234000px;}
.ws7c{word-spacing:3.292800px;}
.wsd3{word-spacing:3.351600px;}
.ws42{word-spacing:3.410400px;}
.ws8f{word-spacing:3.586800px;}
.ws2c{word-spacing:3.704400px;}
.ws5b{word-spacing:3.880800px;}
.wsd4{word-spacing:3.939600px;}
.wsf5{word-spacing:3.998400px;}
.ws2a{word-spacing:4.057200px;}
.ws6e{word-spacing:4.116000px;}
.wseb{word-spacing:4.233600px;}
.ws7e{word-spacing:4.292400px;}
.ws77{word-spacing:4.351200px;}
.wsfa{word-spacing:4.468800px;}
.ws30{word-spacing:4.527600px;}
.ws97{word-spacing:4.762800px;}
.wsc0{word-spacing:4.821600px;}
.ws31{word-spacing:4.880400px;}
.ws72{word-spacing:4.998000px;}
.wsa3{word-spacing:5.056800px;}
.wsbd{word-spacing:5.115600px;}
.ws4b{word-spacing:5.233200px;}
.ws84{word-spacing:5.292000px;}
.wsd6{word-spacing:5.350800px;}
.ws64{word-spacing:5.468400px;}
.ws39{word-spacing:5.527200px;}
.wsb8{word-spacing:5.586000px;}
.ws60{word-spacing:5.644800px;}
.wsdd{word-spacing:5.703600px;}
.ws6c{word-spacing:5.821200px;}
.ws3b{word-spacing:5.880000px;}
.wsf9{word-spacing:5.938800px;}
.wsf3{word-spacing:5.997600px;}
.wsb7{word-spacing:6.056400px;}
.ws55{word-spacing:6.115200px;}
.ws51{word-spacing:6.174000px;}
.ws98{word-spacing:6.232800px;}
.ws2d{word-spacing:6.350400px;}
.ws5c{word-spacing:6.409200px;}
.ws90{word-spacing:6.468000px;}
.ws48{word-spacing:6.526800px;}
.wsf1{word-spacing:6.879600px;}
.ws27{word-spacing:6.938400px;}
.wsba{word-spacing:6.997200px;}
.ws92{word-spacing:7.114800px;}
.ws5f{word-spacing:7.232400px;}
.ws4e{word-spacing:7.291200px;}
.ws54{word-spacing:7.350000px;}
.ws99{word-spacing:7.408800px;}
.ws28{word-spacing:7.702800px;}
.wsdc{word-spacing:7.761600px;}
.ws7b{word-spacing:7.820400px;}
.wsab{word-spacing:7.879200px;}
.wsa2{word-spacing:7.938000px;}
.ws9c{word-spacing:7.996800px;}
.ws61{word-spacing:8.173200px;}
.ws43{word-spacing:8.349600px;}
.ws50{word-spacing:8.467200px;}
.ws5a{word-spacing:8.584800px;}
.ws9f{word-spacing:8.643600px;}
.ws65{word-spacing:8.702400px;}
.wsdf{word-spacing:8.761200px;}
.wsfd{word-spacing:8.878800px;}
.wsed{word-spacing:8.937600px;}
.ws44{word-spacing:8.996400px;}
.ws4c{word-spacing:9.055200px;}
.wsa0{word-spacing:9.114000px;}
.wsf0{word-spacing:9.172800px;}
.ws40{word-spacing:9.231600px;}
.ws29{word-spacing:9.290400px;}
.ws62{word-spacing:9.349200px;}
.ws32{word-spacing:9.643200px;}
.ws2f{word-spacing:9.702000px;}
.ws6b{word-spacing:9.819600px;}
.ws79{word-spacing:9.937200px;}
.wsf{word-spacing:10.038000px;}
.ws47{word-spacing:10.113600px;}
.ws36{word-spacing:10.172400px;}
.wsbf{word-spacing:10.348800px;}
.wsb5{word-spacing:10.407600px;}
.wsf6{word-spacing:10.584000px;}
.wse{word-spacing:10.626000px;}
.wse6{word-spacing:10.642800px;}
.ws68{word-spacing:10.760400px;}
.ws71{word-spacing:10.819200px;}
.ws88{word-spacing:10.936800px;}
.wsb9{word-spacing:10.995600px;}
.ws69{word-spacing:11.172000px;}
.wsef{word-spacing:11.289600px;}
.ws85{word-spacing:11.348400px;}
.wsf4{word-spacing:11.466000px;}
.ws37{word-spacing:11.583600px;}
.wsad{word-spacing:11.760000px;}
.wsf2{word-spacing:11.877600px;}
.ws8d{word-spacing:11.936400px;}
.ws7d{word-spacing:11.995200px;}
.ws95{word-spacing:12.054000px;}
.wsde{word-spacing:12.465600px;}
.ws89{word-spacing:12.524400px;}
.ws70{word-spacing:12.642000px;}
.wsdb{word-spacing:12.700800px;}
.ws63{word-spacing:12.818400px;}
.ws9e{word-spacing:12.877200px;}
.wsaa{word-spacing:12.936000px;}
.ws91{word-spacing:13.112400px;}
.ws8b{word-spacing:13.171200px;}
.ws46{word-spacing:13.288800px;}
.ws7f{word-spacing:13.465200px;}
.wsf7{word-spacing:13.524000px;}
.wse8{word-spacing:13.818000px;}
.wsa8{word-spacing:13.876800px;}
.wse2{word-spacing:14.170800px;}
.ws9b{word-spacing:14.347200px;}
.wsa9{word-spacing:14.406000px;}
.wsd9{word-spacing:14.700000px;}
.wse9{word-spacing:14.758800px;}
.wsfc{word-spacing:14.817600px;}
.ws9a{word-spacing:14.876400px;}
.wsb1{word-spacing:15.052800px;}
.wsb4{word-spacing:15.229200px;}
.ws80{word-spacing:15.817200px;}
.ws78{word-spacing:16.111200px;}
.ws96{word-spacing:16.464000px;}
.ws38{word-spacing:16.522800px;}
.ws81{word-spacing:16.581600px;}
.wsb2{word-spacing:16.758000px;}
.ws74{word-spacing:16.816800px;}
.ws35{word-spacing:16.875600px;}
.ws3a{word-spacing:16.934400px;}
.wsa6{word-spacing:17.110800px;}
.wsb0{word-spacing:17.346000px;}
.ws8c{word-spacing:17.757600px;}
.ws9d{word-spacing:17.992800px;}
.ws8e{word-spacing:18.110400px;}
.ws49{word-spacing:18.169200px;}
.wsbc{word-spacing:18.404400px;}
.wsa1{word-spacing:18.522000px;}
.ws33{word-spacing:18.698400px;}
.wsaf{word-spacing:18.874800px;}
.wsd8{word-spacing:19.404000px;}
.wsd1{word-spacing:19.992000px;}
.ws3c{word-spacing:20.580000px;}
.wse5{word-spacing:20.932800px;}
.wsee{word-spacing:21.109200px;}
.wsb3{word-spacing:22.990800px;}
.wsea{word-spacing:23.108400px;}
.ws8a{word-spacing:23.814000px;}
.wse4{word-spacing:24.754800px;}
.ws5d{word-spacing:24.813600px;}
.ws2e{word-spacing:25.166400px;}
.wse3{word-spacing:25.930800px;}
.ws3e{word-spacing:27.224400px;}
.wsf8{word-spacing:27.694800px;}
.ws6a{word-spacing:28.224000px;}
.ws4d{word-spacing:28.400400px;}
.wsd5{word-spacing:28.812000px;}
.ws108{word-spacing:29.275295px;}
.ws106{word-spacing:29.275752px;}
.ws109{word-spacing:29.275844px;}
.ws4a{word-spacing:33.516000px;}
.wsc6{word-spacing:36.761370px;}
.wsc7{word-spacing:36.761919px;}
.ws20{word-spacing:44.311778px;}
.ws6f{word-spacing:50.803200px;}
.wsc5{word-spacing:59.987383px;}
.wsc8{word-spacing:59.987933px;}
.ws104{word-spacing:79.243822px;}
.ws10a{word-spacing:92.282410px;}
.ws107{word-spacing:115.972778px;}
.ws105{word-spacing:115.972870px;}
.ws10b{word-spacing:115.972961px;}
.ws22{word-spacing:124.827647px;}
.wsfe{word-spacing:196.227553px;}
.wsc1{word-spacing:199.180834px;}
.ws1d{word-spacing:244.306184px;}
.ws1c{word-spacing:434.254781px;}
.ws24{word-spacing:462.713897px;}
.ws23{word-spacing:477.785897px;}
.wscd{word-spacing:484.996732px;}
.wscb{word-spacing:508.304186px;}
.ws1e{word-spacing:581.693459px;}
.ws6{word-spacing:1539.195652px;}
.ws5{word-spacing:1945.846745px;}
._f{margin-left:-2890.932630px;}
._74{margin-left:-37.396198px;}
._4e{margin-left:-25.195449px;}
._4d{margin-left:-23.931759px;}
._52{margin-left:-22.197211px;}
._4c{margin-left:-17.791676px;}
._4a{margin-left:-15.458142px;}
._14{margin-left:-12.638913px;}
._53{margin-left:-11.231399px;}
._50{margin-left:-10.050784px;}
._e{margin-left:-8.585281px;}
._4b{margin-left:-7.237953px;}
._b{margin-left:-5.890620px;}
._13{margin-left:-4.292400px;}
._7{margin-left:-3.198000px;}
._6{margin-left:-1.716000px;}
._1{width:1.061280px;}
._9{width:2.360160px;}
._11{width:3.439729px;}
._c{width:4.452720px;}
._55{width:6.049028px;}
._54{width:8.091622px;}
._12{width:9.185107px;}
._10{width:10.304330px;}
._51{width:12.161150px;}
._a{width:14.270999px;}
._d{width:15.895778px;}
._8{width:17.551798px;}
._4f{width:19.053400px;}
._9c{width:33.120000px;}
._6a{width:38.629992px;}
._1b{width:45.922184px;}
._5f{width:47.942413px;}
._5d{width:50.182755px;}
._61{width:51.541992px;}
._9b{width:55.080000px;}
._1f{width:60.504179px;}
._76{width:62.145000px;}
._7a{width:63.576133px;}
._44{width:68.194781px;}
._66{width:71.366413px;}
._57{width:72.716393px;}
._92{width:73.972870px;}
._69{width:75.092427px;}
._1c{width:82.008179px;}
._90{width:85.369021px;}
._7d{width:87.959201px;}
._82{width:89.667064px;}
._8a{width:93.508870px;}
._83{width:95.746715px;}
._64{width:97.030755px;}
._8c{width:98.278481px;}
._8f{width:104.661067px;}
._96{width:110.088379px;}
._2b{width:111.838781px;}
._88{width:113.091064px;}
._41{width:114.094781px;}
._20{width:115.426184px;}
._73{width:116.739481px;}
._6c{width:118.633295px;}
._3e{width:123.538781px;}
._6f{width:127.301424px;}
._8b{width:128.328987px;}
._6d{width:130.073406px;}
._8d{width:131.920630px;}
._99{width:133.457074px;}
._6e{width:135.646219px;}
._1e{width:138.370184px;}
._72{width:140.162931px;}
._80{width:143.463561px;}
._7b{width:145.991155px;}
._58{width:147.010827px;}
._71{width:150.726063px;}
._24{width:151.762184px;}
._36{width:158.062781px;}
._70{width:159.070129px;}
._28{width:162.274184px;}
._3b{width:167.170184px;}
._59{width:170.435376px;}
._1d{width:173.650781px;}
._30{width:175.090184px;}
._33{width:177.346184px;}
._2{width:181.078272px;}
._32{width:185.650781px;}
._2d{width:190.162184px;}
._18{width:198.514184px;}
._27{width:200.494781px;}
._1a{width:204.276221px;}
._47{width:209.278781px;}
._94{width:215.195947px;}
._6b{width:219.307459px;}
._2f{width:232.078781px;}
._37{width:233.122184px;}
._98{width:239.137387px;}
._23{width:246.082781px;}
._60{width:250.388306px;}
._93{width:253.691947px;}
._9d{width:255.973824px;}
._3a{width:264.082781px;}
._19{width:270.089501px;}
._67{width:273.812306px;}
._5e{width:275.976055px;}
._2a{width:278.105897px;}
._87{width:279.490639px;}
._56{width:283.918810px;}
._78{width:289.755000px;}
._2c{width:291.550781px;}
._77{width:293.850000px;}
._68{width:296.796070px;}
._21{width:299.069459px;}
._75{width:301.371000px;}
._35{width:308.249897px;}
._49{width:310.841897px;}
._84{width:315.811759px;}
._29{width:318.461459px;}
._65{width:322.824055px;}
._79{width:334.440000px;}
._17{width:344.093501px;}
._22{width:354.254297px;}
._3{width:359.880048px;}
._34{width:380.381459px;}
._25{width:390.365459px;}
._7f{width:396.386479px;}
._43{width:412.409897px;}
._91{width:436.319947px;}
._7e{width:444.521413px;}
._7c{width:455.033413px;}
._97{width:459.611947px;}
._3d{width:465.017897px;}
._48{width:471.225299px;}
._26{width:473.225897px;}
._42{width:484.541459px;}
._95{width:492.059947px;}
._63{width:498.982884px;}
._8e{width:507.371947px;}
._62{width:518.970094px;}
._86{width:521.731759px;}
._3c{width:523.565459px;}
._46{width:524.969897px;}
._9a{width:527.483947px;}
._39{width:543.497897px;}
._31{width:545.357459px;}
._5b{width:550.897381px;}
._85{width:554.179759px;}
._81{width:569.491759px;}
._5c{width:577.500042px;}
._2e{width:583.853459px;}
._89{width:589.603759px;}
._38{width:592.205459px;}
._16{width:612.041897px;}
._40{width:614.345897px;}
._4{width:615.969648px;}
._9e{width:640.367424px;}
._15{width:684.264179px;}
._5a{width:698.351388px;}
._0{width:837.178560px;}
._5{width:843.984432px;}
._45{width:884.703643px;}
._3f{width:966.447643px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(25,59,101);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.500000px;}
.fs12{font-size:33.600000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fsf{font-size:46.199999px;}
.fs15{font-size:47.520000px;}
.fs7{font-size:48.000000px;}
.fs11{font-size:54.000000px;}
.fs1{font-size:54.720000px;}
.fs13{font-size:55.199999px;}
.fs10{font-size:58.800000px;}
.fsc{font-size:60.000000px;}
.fs3{font-size:60.480000px;}
.fsb{font-size:61.800000px;}
.fse{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:74.580000px;}
.fs5{font-size:78.000000px;}
.fs14{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs2{font-size:108.000000px;}
.fsd{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:88.869152px;}
.yb0{bottom:90.000000px;}
.ycb{bottom:90.000149px;}
.ydf{bottom:92.551203px;}
.yab{bottom:94.364548px;}
.y47{bottom:100.869152px;}
.yc9{bottom:110.551197px;}
.yaa{bottom:111.868355px;}
.y46{bottom:112.869152px;}
.y1be{bottom:120.600000px;}
.y45{bottom:124.869152px;}
.yc8{bottom:128.551197px;}
.y125{bottom:129.372299px;}
.ya9{bottom:129.372448px;}
.y44{bottom:136.869152px;}
.y1bd{bottom:141.120000px;}
.yc7{bottom:146.551197px;}
.ya8{bottom:146.876255px;}
.y43{bottom:148.869152px;}
.y42{bottom:160.869152px;}
.yde{bottom:161.099247px;}
.y1bc{bottom:161.640000px;}
.ya7{bottom:164.380199px;}
.yc6{bottom:164.551197px;}
.y41{bottom:172.869152px;}
.ya6{bottom:181.884155px;}
.y1bb{bottom:182.520000px;}
.yc5{bottom:182.551197px;}
.ycc{bottom:194.373000px;}
.ya5{bottom:199.388100px;}
.y2d{bottom:199.440000px;}
.yc4{bottom:200.551208px;}
.y1ba{bottom:203.040000px;}
.y50{bottom:213.570900px;}
.ya4{bottom:216.892044px;}
.yc3{bottom:218.551208px;}
.y1b9{bottom:223.920000px;}
.y56{bottom:225.083405px;}
.y2c{bottom:225.720000px;}
.ye0{bottom:228.967644px;}
.y4f{bottom:231.570900px;}
.ya3{bottom:234.396011px;}
.yc2{bottom:236.551208px;}
.y4e{bottom:240.570900px;}
.y55{bottom:243.083405px;}
.y1b8{bottom:244.440000px;}
.y158{bottom:245.605797px;}
.y2b{bottom:246.600000px;}
.ycd{bottom:247.274689px;}
.ya2{bottom:251.899956px;}
.y54{bottom:252.083405px;}
.y4d{bottom:254.070900px;}
.yc1{bottom:254.551208px;}
.y157{bottom:259.105797px;}
.y1e7{bottom:262.080000px;}
.y18d{bottom:263.551208px;}
.y1b7{bottom:265.320000px;}
.y2a{bottom:267.120000px;}
.y4c{bottom:267.570900px;}
.ya1{bottom:269.403900px;}
.y53{bottom:270.083405px;}
.yc0{bottom:272.551208px;}
.y156{bottom:272.605797px;}
.y18c{bottom:277.051208px;}
.y52{bottom:279.083405px;}
.y1e6{bottom:281.160000px;}
.y1b6{bottom:285.840000px;}
.y155{bottom:286.105797px;}
.ya0{bottom:286.907845px;}
.y124{bottom:287.020340px;}
.y29{bottom:288.000000px;}
.ybf{bottom:290.551208px;}
.y4b{bottom:293.445900px;}
.y1e5{bottom:295.200000px;}
.y51{bottom:297.083405px;}
.y154{bottom:299.605797px;}
.yce{bottom:300.215996px;}
.ye1{bottom:301.841995px;}
.y9f{bottom:304.411789px;}
.y123{bottom:304.524307px;}
.y1b5{bottom:306.720000px;}
.y28{bottom:308.160000px;}
.ybe{bottom:308.551208px;}
.y1e4{bottom:308.880000px;}
.yec{bottom:311.025902px;}
.y153{bottom:313.105797px;}
.y9e{bottom:321.915756px;}
.y122{bottom:322.028709px;}
.y1e3{bottom:322.560000px;}
.y27{bottom:325.800000px;}
.ybd{bottom:326.551208px;}
.y152{bottom:326.605797px;}
.y18b{bottom:327.113708px;}
.y1b4{bottom:327.240000px;}
.y1e2{bottom:336.600000px;}
.y9d{bottom:336.915756px;}
.y121{bottom:339.533249px;}
.y151{bottom:340.105797px;}
.y18a{bottom:340.613708px;}
.ybc{bottom:344.551208px;}
.y26{bottom:346.680000px;}
.y1b3{bottom:348.120000px;}
.y1e1{bottom:350.280000px;}
.y6e{bottom:351.354149px;}
.y150{bottom:353.605797px;}
.y189{bottom:354.113708px;}
.y9c{bottom:354.419700px;}
.ycf{bottom:356.624702px;}
.ybb{bottom:362.551208px;}
.y1e0{bottom:363.960000px;}
.y14f{bottom:367.105797px;}
.y25{bottom:367.200000px;}
.y188{bottom:367.613708px;}
.y1b2{bottom:368.640000px;}
.y9b{bottom:369.419700px;}
.y6d{bottom:373.854149px;}
.ye2{bottom:376.109550px;}
.y1df{bottom:378.000000px;}
.yba{bottom:380.551208px;}
.y14e{bottom:380.605797px;}
.y187{bottom:381.113708px;}
.y9a{bottom:384.419678px;}
.y24{bottom:388.080000px;}
.y1b1{bottom:389.520000px;}
.y1de{bottom:391.680000px;}
.y6c{bottom:391.854172px;}
.y14d{bottom:394.105820px;}
.y186{bottom:394.613708px;}
.yb9{bottom:398.551208px;}
.y99{bottom:401.923508px;}
.yd0{bottom:403.110306px;}
.y1dd{bottom:405.360000px;}
.y14c{bottom:407.605820px;}
.y185{bottom:408.113708px;}
.y23{bottom:408.600000px;}
.y6b{bottom:409.854172px;}
.y1b0{bottom:410.040000px;}
.y103{bottom:411.675613px;}
.yb8{bottom:416.551208px;}
.y98{bottom:416.923508px;}
.y1dc{bottom:419.400000px;}
.y14b{bottom:421.105820px;}
.y184{bottom:421.613708px;}
.y102{bottom:425.175613px;}
.y6a{bottom:427.854172px;}
.y22{bottom:429.480000px;}
.y1af{bottom:430.920000px;}
.y1db{bottom:433.080000px;}
.y97{bottom:434.427429px;}
.yb7{bottom:434.551208px;}
.y14a{bottom:434.605820px;}
.y183{bottom:435.113708px;}
.ye3{bottom:442.434906px;}
.y69{bottom:445.854172px;}
.y1da{bottom:446.760000px;}
.y149{bottom:448.105820px;}
.y182{bottom:448.613708px;}
.y96{bottom:449.427429px;}
.yd1{bottom:449.605179px;}
.y21{bottom:450.000000px;}
.y1ae{bottom:451.440000px;}
.y101{bottom:452.175613px;}
.yb6{bottom:452.551208px;}
.y1d9{bottom:460.800000px;}
.y148{bottom:461.605820px;}
.y181{bottom:462.113708px;}
.y95{bottom:464.427429px;}
.y100{bottom:465.675613px;}
.y68{bottom:468.354172px;}
.y20{bottom:470.160000px;}
.yb5{bottom:470.551208px;}
.y1ad{bottom:472.320000px;}
.y1d8{bottom:474.480000px;}
.y147{bottom:475.105820px;}
.y180{bottom:475.613708px;}
.yb1{bottom:475.678940px;}
.yff{bottom:479.175613px;}
.y94{bottom:481.931396px;}
.y67{bottom:486.354172px;}
.y1f{bottom:487.440000px;}
.y1d7{bottom:488.160000px;}
.yb4{bottom:488.551208px;}
.y146{bottom:488.605820px;}
.y17f{bottom:489.113708px;}
.yfe{bottom:492.675613px;}
.y1ac{bottom:492.840000px;}
.y93{bottom:499.435364px;}
.yd2{bottom:500.207382px;}
.y145{bottom:502.105820px;}
.y1d6{bottom:502.200000px;}
.y17e{bottom:502.613708px;}
.y66{bottom:504.354172px;}
.y1e{bottom:505.080000px;}
.yfd{bottom:506.175613px;}
.yaf{bottom:506.551208px;}
.y1ab{bottom:513.720000px;}
.y144{bottom:515.605820px;}
.y1d5{bottom:515.880000px;}
.y17d{bottom:516.113708px;}
.ye4{bottom:516.702438px;}
.y92{bottom:517.051804px;}
.yfc{bottom:519.675613px;}
.y65{bottom:522.354172px;}
.yae{bottom:524.551208px;}
.y1d{bottom:525.960000px;}
.y143{bottom:529.105820px;}
.y1d4{bottom:529.560000px;}
.y17c{bottom:529.613708px;}
.y1aa{bottom:534.240000px;}
.y91{bottom:534.555771px;}
.y64{bottom:540.354172px;}
.yad{bottom:542.551208px;}
.y142{bottom:542.605820px;}
.y120{bottom:542.621384px;}
.y17b{bottom:543.113708px;}
.y1d3{bottom:543.600000px;}
.y1c{bottom:546.480000px;}
.yfb{bottom:546.675613px;}
.yd3{bottom:546.693008px;}
.y1a9{bottom:555.120000px;}
.y141{bottom:556.105820px;}
.y17a{bottom:556.613708px;}
.y1d2{bottom:557.280000px;}
.y63{bottom:558.354172px;}
.y11f{bottom:560.125350px;}
.yfa{bottom:560.175613px;}
.yac{bottom:560.551208px;}
.y1b{bottom:567.360000px;}
.y140{bottom:569.605820px;}
.y179{bottom:570.113708px;}
.y1d1{bottom:570.960000px;}
.y1a8{bottom:575.640000px;}
.y62{bottom:576.354172px;}
.y11e{bottom:577.629318px;}
.y90{bottom:578.551208px;}
.ye5{bottom:583.027954px;}
.y13f{bottom:583.105820px;}
.y178{bottom:583.613708px;}
.y1d0{bottom:585.000000px;}
.yf9{bottom:587.175613px;}
.y1a{bottom:587.880000px;}
.yd4{bottom:593.156387px;}
.y11d{bottom:595.133240px;}
.y1a7{bottom:596.520000px;}
.y8d{bottom:596.551208px;}
.y13e{bottom:596.605820px;}
.y177{bottom:597.113708px;}
.y1cf{bottom:598.680000px;}
.y61{bottom:598.854172px;}
.yf8{bottom:600.675613px;}
.y19{bottom:608.760000px;}
.y13d{bottom:610.105820px;}
.y176{bottom:610.613708px;}
.y1ce{bottom:612.360000px;}
.y11c{bottom:612.637207px;}
.yf7{bottom:614.175613px;}
.y8c{bottom:614.551208px;}
.y60{bottom:616.854172px;}
.y1a6{bottom:617.040000px;}
.y13c{bottom:623.605820px;}
.y175{bottom:624.113708px;}
.y1cd{bottom:626.400000px;}
.yf6{bottom:627.675613px;}
.y18{bottom:629.280000px;}
.y11b{bottom:630.141129px;}
.y8b{bottom:632.551208px;}
.yb2{bottom:632.911789px;}
.y5f{bottom:634.854172px;}
.y13b{bottom:637.105820px;}
.y174{bottom:637.613708px;}
.y1a5{bottom:637.920000px;}
.y1cc{bottom:640.080000px;}
.yf5{bottom:641.175613px;}
.yd5{bottom:643.758728px;}
.y11a{bottom:647.645096px;}
.y17{bottom:650.160000px;}
.y8a{bottom:650.551208px;}
.y13a{bottom:650.605820px;}
.y173{bottom:651.113708px;}
.y5e{bottom:652.854172px;}
.y1cb{bottom:653.760000px;}
.yca{bottom:654.151794px;}
.yf4{bottom:654.675613px;}
.ye6{bottom:657.295486px;}
.y1a4{bottom:658.440000px;}
.yed{bottom:663.944687px;}
.y139{bottom:664.105820px;}
.y172{bottom:664.613708px;}
.y119{bottom:665.149063px;}
.y1ca{bottom:667.800000px;}
.yf3{bottom:668.175613px;}
.y89{bottom:668.551208px;}
.y16{bottom:670.680000px;}
.y5d{bottom:670.854172px;}
.y171{bottom:678.113708px;}
.y1a3{bottom:679.320000px;}
.y1c9{bottom:681.480000px;}
.yf2{bottom:681.675613px;}
.y118{bottom:682.652985px;}
.y88{bottom:686.551208px;}
.yd6{bottom:690.244217px;}
.y15{bottom:691.560000px;}
.y170{bottom:691.613708px;}
.y5c{bottom:693.354172px;}
.y1c8{bottom:695.160000px;}
.yf1{bottom:695.175613px;}
.yee{bottom:695.911972px;}
.y1a2{bottom:699.840000px;}
.y117{bottom:700.156815px;}
.y87{bottom:704.551208px;}
.y16f{bottom:705.113708px;}
.yf0{bottom:708.675613px;}
.y1c7{bottom:709.200000px;}
.y5b{bottom:711.354172px;}
.y14{bottom:711.720000px;}
.y116{bottom:717.660919px;}
.y16e{bottom:718.613708px;}
.y1a1{bottom:720.720000px;}
.yef{bottom:722.175613px;}
.y86{bottom:722.551208px;}
.y1c6{bottom:722.880000px;}
.ye7{bottom:723.621002px;}
.y5a{bottom:729.354172px;}
.y13{bottom:729.360000px;}
.y16d{bottom:732.113708px;}
.y138{bottom:733.105820px;}
.y115{bottom:735.277222px;}
.y1c5{bottom:736.560000px;}
.yd7{bottom:736.710022px;}
.y85{bottom:740.551208px;}
.y1a0{bottom:741.240000px;}
.y16c{bottom:745.613708px;}
.y59{bottom:747.354172px;}
.y12{bottom:750.240000px;}
.y114{bottom:750.277222px;}
.y1c4{bottom:751.680000px;}
.y84{bottom:758.551208px;}
.y16b{bottom:759.113708px;}
.y19f{bottom:762.120000px;}
.y137{bottom:763.613708px;}
.y58{bottom:765.354172px;}
.y113{bottom:767.781738px;}
.y11{bottom:770.760000px;}
.y16a{bottom:772.613708px;}
.y83{bottom:776.551208px;}
.y136{bottom:777.113708px;}
.y19e{bottom:782.640000px;}
.y112{bottom:785.286163px;}
.y169{bottom:786.113708px;}
.y57{bottom:787.854126px;}
.yd8{bottom:793.118683px;}
.y10{bottom:793.800000px;}
.y82{bottom:794.551208px;}
.ye8{bottom:797.888580px;}
.y168{bottom:799.613708px;}
.y19d{bottom:803.160000px;}
.y135{bottom:804.113708px;}
.y81{bottom:812.551208px;}
.y167{bottom:813.113708px;}
.y1c3{bottom:813.600000px;}
.y134{bottom:817.613708px;}
.y111{bottom:823.514374px;}
.y19c{bottom:824.040000px;}
.yf{bottom:824.760000px;}
.y166{bottom:826.613708px;}
.y80{bottom:830.551208px;}
.yd9{bottom:839.604309px;}
.y165{bottom:840.113708px;}
.y110{bottom:841.018524px;}
.y19b{bottom:844.560000px;}
.y133{bottom:844.613708px;}
.y72{bottom:846.316681px;}
.y7f{bottom:848.551208px;}
.y164{bottom:853.613708px;}
.ye{bottom:855.720000px;}
.y132{bottom:858.113708px;}
.y10f{bottom:858.522491px;}
.y3b{bottom:861.840000px;}
.y19a{bottom:865.440000px;}
.y7e{bottom:866.551208px;}
.y163{bottom:867.113708px;}
.ye9{bottom:867.429108px;}
.y131{bottom:871.613708px;}
.y1c2{bottom:875.880000px;}
.y10e{bottom:876.026276px;}
.y162{bottom:880.613708px;}
.y3a{bottom:882.720000px;}
.y7d{bottom:884.551208px;}
.yd{bottom:884.880000px;}
.y130{bottom:885.113708px;}
.y199{bottom:885.960000px;}
.yda{bottom:886.070068px;}
.y10d{bottom:893.530243px;}
.y161{bottom:894.113708px;}
.y71{bottom:897.316681px;}
.y12f{bottom:898.613708px;}
.y7c{bottom:902.551208px;}
.y39{bottom:903.240000px;}
.yc{bottom:905.400000px;}
.y198{bottom:906.840000px;}
.y160{bottom:907.613708px;}
.y10c{bottom:911.034119px;}
.y12e{bottom:912.113708px;}
.y7b{bottom:920.551208px;}
.y15f{bottom:921.113708px;}
.y38{bottom:924.120000px;}
.y12d{bottom:925.613708px;}
.yb{bottom:926.280000px;}
.y197{bottom:927.360000px;}
.y10b{bottom:928.538086px;}
.y15e{bottom:934.613708px;}
.y70{bottom:936.316681px;}
.y1c1{bottom:937.800000px;}
.y7a{bottom:938.551208px;}
.y12c{bottom:939.113708px;}
.yea{bottom:941.696869px;}
.ydb{bottom:942.478912px;}
.y37{bottom:944.640000px;}
.y10a{bottom:946.042053px;}
.ya{bottom:946.800000px;}
.y15d{bottom:948.113708px;}
.y196{bottom:948.240000px;}
.y12b{bottom:952.613708px;}
.y79{bottom:956.551208px;}
.y15c{bottom:961.613708px;}
.y109{bottom:963.546021px;}
.y36{bottom:965.520000px;}
.y9{bottom:967.320000px;}
.y195{bottom:968.760000px;}
.y78{bottom:974.551208px;}
.y15b{bottom:975.113708px;}
.y6f{bottom:975.316681px;}
.y12a{bottom:979.613708px;}
.y108{bottom:981.049988px;}
.y35{bottom:986.040000px;}
.y8{bottom:988.200000px;}
.y15a{bottom:988.613708px;}
.y194{bottom:989.640000px;}
.ydc{bottom:989.864410px;}
.y77{bottom:992.551208px;}
.y107{bottom:998.553864px;}
.y1c0{bottom:1000.080000px;}
.y159{bottom:1002.113708px;}
.y34{bottom:1006.920000px;}
.y7{bottom:1008.720000px;}
.y193{bottom:1010.160000px;}
.y76{bottom:1010.551208px;}
.yeb{bottom:1011.237579px;}
.y129{bottom:1015.613708px;}
.y106{bottom:1016.170349px;}
.y33{bottom:1027.440000px;}
.y8f{bottom:1028.551208px;}
.y75{bottom:1028.551392px;}
.y128{bottom:1029.113708px;}
.y6{bottom:1029.600000px;}
.y192{bottom:1031.040000px;}
.y105{bottom:1033.674133px;}
.y3f{bottom:1034.640000px;}
.ydd{bottom:1036.327789px;}
.y40{bottom:1036.426208px;}
.y127{bottom:1042.613708px;}
.y8e{bottom:1046.551208px;}
.y74{bottom:1046.551392px;}
.y32{bottom:1048.320000px;}
.y5{bottom:1050.120000px;}
.y104{bottom:1050.174133px;}
.y191{bottom:1051.560000px;}
.yb3{bottom:1052.070740px;}
.y126{bottom:1056.113708px;}
.y3e{bottom:1056.600000px;}
.y31{bottom:1068.840000px;}
.y190{bottom:1072.440000px;}
.y4{bottom:1076.040000px;}
.y3d{bottom:1083.960000px;}
.y30{bottom:1089.720000px;}
.y18f{bottom:1092.960000px;}
.y3{bottom:1096.560000px;}
.y2f{bottom:1110.240000px;}
.y3c{bottom:1111.680000px;}
.y4a{bottom:1114.051208px;}
.y18e{bottom:1114.560000px;}
.y2{bottom:1117.440000px;}
.y49{bottom:1129.051208px;}
.y73{bottom:1129.426208px;}
.y2e{bottom:1132.200000px;}
.y1{bottom:1137.960000px;}
.y1bf{bottom:1138.320000px;}
.he{height:29.452500px;}
.h24{height:31.672266px;}
.hb{height:39.270000px;}
.h5{height:40.310156px;}
.ha{height:40.824000px;}
.h22{height:41.985000px;}
.hf{height:42.075000px;}
.h21{height:42.840000px;}
.h1f{height:43.740000px;}
.h19{height:44.880000px;}
.hc{height:45.744000px;}
.h18{height:46.656000px;}
.h1b{height:47.472000px;}
.h1c{height:47.988281px;}
.h20{height:50.490000px;}
.h1a{height:50.615982px;}
.h4{height:52.417969px;}
.h2{height:52.453125px;}
.h17{height:53.406000px;}
.h1d{height:53.654399px;}
.h1e{height:54.625200px;}
.h15{height:55.860000px;}
.h12{height:56.100000px;}
.h11{height:58.320000px;}
.h16{height:59.388000px;}
.h23{height:60.804844px;}
.h10{height:61.120200px;}
.h6{height:69.062344px;}
.h14{height:69.596779px;}
.h3{height:78.626953px;}
.h9{height:78.896517px;}
.hd{height:116.732582px;}
.h13{height:137.088000px;}
.h8{height:1190.250000px;}
.h7{height:1190.551500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:85.039352px;}
.x13{left:91.234200px;}
.x17{left:94.789352px;}
.x19{left:97.039500px;}
.x44{left:102.713402px;}
.x9{left:108.000000px;}
.x45{left:115.039352px;}
.x6{left:127.629648px;}
.x4{left:154.339596px;}
.x7{left:182.381076px;}
.x1f{left:195.130508px;}
.xb{left:199.379124px;}
.xc{left:206.845452px;}
.x20{left:212.635048px;}
.x3e{left:222.874649px;}
.x1b{left:224.575195px;}
.x5{left:227.345940px;}
.x21{left:230.139450px;}
.x3f{left:240.379211px;}
.x22{left:245.139450px;}
.x49{left:248.938339px;}
.x40{left:257.883591px;}
.x23{left:260.139450px;}
.x47{left:264.468292px;}
.x12{left:267.000012px;}
.x14{left:271.062904px;}
.x41{left:272.883591px;}
.x24{left:277.755890px;}
.x2{left:287.392824px;}
.x42{left:290.500053px;}
.x11{left:291.879648px;}
.x1c{left:294.567741px;}
.x25{left:307.755890px;}
.x8{left:321.949224px;}
.x26{left:325.259857px;}
.x48{left:327.241058px;}
.x27{left:342.763802px;}
.x1{left:354.418200px;}
.xd{left:358.434792px;}
.x10{left:367.434720px;}
.x28{left:375.267746px;}
.xa{left:379.471320px;}
.xf{left:390.936600px;}
.x29{left:405.267746px;}
.x2a{left:422.771713px;}
.x2b{left:437.771713px;}
.x2c{left:440.275635px;}
.x3{left:446.474880px;}
.x2d{left:455.275635px;}
.x16{left:457.547241px;}
.x1a{left:469.086731px;}
.x2e{left:470.275635px;}
.x1d{left:472.043106px;}
.x46{left:474.760483px;}
.x4a{left:479.586594px;}
.x2f{left:487.779465px;}
.x30{left:502.779465px;}
.x31{left:517.779465px;}
.x32{left:535.283569px;}
.x33{left:550.283569px;}
.x34{left:565.283569px;}
.x35{left:582.787354px;}
.x36{left:597.787354px;}
.x37{left:612.787354px;}
.x38{left:630.291321px;}
.x1e{left:631.485580px;}
.x39{left:645.291321px;}
.x3a{left:660.291321px;}
.x3b{left:677.795242px;}
.x3c{left:692.795242px;}
.x3d{left:707.795242px;}
.x43{left:738.661789px;}
.x18{left:744.817657px;}
.xe{left:784.950120px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v5{vertical-align:17.066651pt;}
.v4{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.ls18{letter-spacing:-1.920000pt;}
.ls19{letter-spacing:-1.877333pt;}
.ls16{letter-spacing:-1.792000pt;}
.ls1a{letter-spacing:-1.749333pt;}
.ls10{letter-spacing:-1.621333pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls6{letter-spacing:-0.933333pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.554667pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.283008pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000005pt;}
.ls8{letter-spacing:0.000008pt;}
.lsb{letter-spacing:0.000018pt;}
.ls14{letter-spacing:0.000022pt;}
.lsd{letter-spacing:0.000025pt;}
.ls17{letter-spacing:0.000031pt;}
.lsa{letter-spacing:0.000089pt;}
.lse{letter-spacing:0.000107pt;}
.ls15{letter-spacing:0.000130pt;}
.ls0{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.282112pt;}
.ls1c{letter-spacing:0.319232pt;}
.ls11{letter-spacing:0.341333pt;}
.ls5{letter-spacing:8.320000pt;}
.ls1{letter-spacing:1343.008000pt;}
.ws3{word-spacing:-23.558272pt;}
.ws0{word-spacing:-17.804800pt;}
.ws4{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.779200pt;}
.ws1a{word-spacing:-13.066667pt;}
.wsc{word-spacing:-12.848000pt;}
.ws100{word-spacing:-12.387200pt;}
.ws19{word-spacing:-12.282667pt;}
.ws9{word-spacing:-11.096533pt;}
.wsa{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.560000pt;}
.ws1b{word-spacing:-10.512000pt;}
.wsd0{word-spacing:-10.156800pt;}
.wsca{word-spacing:-9.685333pt;}
.ws1f{word-spacing:-9.344000pt;}
.wsd{word-spacing:-8.993600pt;}
.wsc3{word-spacing:-8.832000pt;}
.ws8{word-spacing:-8.760000pt;}
.wscc{word-spacing:-8.704000pt;}
.ws101{word-spacing:-8.280000pt;}
.ws17{word-spacing:-8.176000pt;}
.wsc4{word-spacing:-7.808000pt;}
.wsc2{word-spacing:-7.680000pt;}
.ws16{word-spacing:-7.242667pt;}
.wsc9{word-spacing:-7.210667pt;}
.ws10e{word-spacing:-7.200000pt;}
.ws10c{word-spacing:-7.082667pt;}
.wsff{word-spacing:-7.040000pt;}
.ws103{word-spacing:-6.954667pt;}
.ws102{word-spacing:-6.912000pt;}
.ws21{word-spacing:-6.540800pt;}
.ws7{word-spacing:-6.132000pt;}
.ws10d{word-spacing:-5.853867pt;}
.ws52{word-spacing:-5.749333pt;}
.ws56{word-spacing:-4.010667pt;}
.ws111{word-spacing:-3.760000pt;}
.wsce{word-spacing:-3.498667pt;}
.ws59{word-spacing:-1.792000pt;}
.ws57{word-spacing:-1.493333pt;}
.ws18{word-spacing:-1.400000pt;}
.wsa4{word-spacing:-0.940800pt;}
.wse1{word-spacing:-0.574933pt;}
.ws94{word-spacing:-0.365867pt;}
.ws58{word-spacing:-0.341333pt;}
.wsac{word-spacing:-0.313600pt;}
.wse7{word-spacing:-0.209067pt;}
.ws10f{word-spacing:-0.120000pt;}
.ws2b{word-spacing:-0.104533pt;}
.ws110{word-spacing:-0.040000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb6{word-spacing:0.104533pt;}
.ws15{word-spacing:0.261333pt;}
.ws3d{word-spacing:0.313600pt;}
.ws5e{word-spacing:0.418133pt;}
.ws11{word-spacing:0.448000pt;}
.ws7a{word-spacing:0.522667pt;}
.wscf{word-spacing:0.554667pt;}
.ws76{word-spacing:0.574933pt;}
.wsbe{word-spacing:0.679467pt;}
.ws66{word-spacing:0.731733pt;}
.ws34{word-spacing:0.784000pt;}
.wsae{word-spacing:0.836267pt;}
.wsbb{word-spacing:0.888533pt;}
.wsec{word-spacing:0.993067pt;}
.wsd2{word-spacing:1.097600pt;}
.ws82{word-spacing:1.254400pt;}
.ws86{word-spacing:1.306667pt;}
.ws12{word-spacing:1.344000pt;}
.wsda{word-spacing:1.358933pt;}
.ws53{word-spacing:1.620267pt;}
.ws93{word-spacing:1.672533pt;}
.ws14{word-spacing:1.680000pt;}
.wsa7{word-spacing:1.724800pt;}
.ws67{word-spacing:1.777067pt;}
.ws13{word-spacing:1.792000pt;}
.ws41{word-spacing:1.829333pt;}
.ws75{word-spacing:1.933867pt;}
.ws45{word-spacing:1.986133pt;}
.ws10{word-spacing:2.053333pt;}
.ws87{word-spacing:2.090667pt;}
.wsfb{word-spacing:2.142933pt;}
.ws6d{word-spacing:2.247467pt;}
.wsa5{word-spacing:2.299733pt;}
.ws26{word-spacing:2.346667pt;}
.ws73{word-spacing:2.352000pt;}
.wse0{word-spacing:2.561067pt;}
.ws83{word-spacing:2.665600pt;}
.ws4f{word-spacing:2.717867pt;}
.ws25{word-spacing:2.730667pt;}
.wsd7{word-spacing:2.770133pt;}
.ws3f{word-spacing:2.874667pt;}
.ws7c{word-spacing:2.926933pt;}
.wsd3{word-spacing:2.979200pt;}
.ws42{word-spacing:3.031467pt;}
.ws8f{word-spacing:3.188267pt;}
.ws2c{word-spacing:3.292800pt;}
.ws5b{word-spacing:3.449600pt;}
.wsd4{word-spacing:3.501867pt;}
.wsf5{word-spacing:3.554133pt;}
.ws2a{word-spacing:3.606400pt;}
.ws6e{word-spacing:3.658667pt;}
.wseb{word-spacing:3.763200pt;}
.ws7e{word-spacing:3.815467pt;}
.ws77{word-spacing:3.867733pt;}
.wsfa{word-spacing:3.972267pt;}
.ws30{word-spacing:4.024533pt;}
.ws97{word-spacing:4.233600pt;}
.wsc0{word-spacing:4.285867pt;}
.ws31{word-spacing:4.338133pt;}
.ws72{word-spacing:4.442667pt;}
.wsa3{word-spacing:4.494933pt;}
.wsbd{word-spacing:4.547200pt;}
.ws4b{word-spacing:4.651733pt;}
.ws84{word-spacing:4.704000pt;}
.wsd6{word-spacing:4.756267pt;}
.ws64{word-spacing:4.860800pt;}
.ws39{word-spacing:4.913067pt;}
.wsb8{word-spacing:4.965333pt;}
.ws60{word-spacing:5.017600pt;}
.wsdd{word-spacing:5.069867pt;}
.ws6c{word-spacing:5.174400pt;}
.ws3b{word-spacing:5.226667pt;}
.wsf9{word-spacing:5.278933pt;}
.wsf3{word-spacing:5.331200pt;}
.wsb7{word-spacing:5.383467pt;}
.ws55{word-spacing:5.435733pt;}
.ws51{word-spacing:5.488000pt;}
.ws98{word-spacing:5.540267pt;}
.ws2d{word-spacing:5.644800pt;}
.ws5c{word-spacing:5.697067pt;}
.ws90{word-spacing:5.749333pt;}
.ws48{word-spacing:5.801600pt;}
.wsf1{word-spacing:6.115200pt;}
.ws27{word-spacing:6.167467pt;}
.wsba{word-spacing:6.219733pt;}
.ws92{word-spacing:6.324267pt;}
.ws5f{word-spacing:6.428800pt;}
.ws4e{word-spacing:6.481067pt;}
.ws54{word-spacing:6.533333pt;}
.ws99{word-spacing:6.585600pt;}
.ws28{word-spacing:6.846933pt;}
.wsdc{word-spacing:6.899200pt;}
.ws7b{word-spacing:6.951467pt;}
.wsab{word-spacing:7.003733pt;}
.wsa2{word-spacing:7.056000pt;}
.ws9c{word-spacing:7.108267pt;}
.ws61{word-spacing:7.265067pt;}
.ws43{word-spacing:7.421867pt;}
.ws50{word-spacing:7.526400pt;}
.ws5a{word-spacing:7.630933pt;}
.ws9f{word-spacing:7.683200pt;}
.ws65{word-spacing:7.735467pt;}
.wsdf{word-spacing:7.787733pt;}
.wsfd{word-spacing:7.892267pt;}
.wsed{word-spacing:7.944533pt;}
.ws44{word-spacing:7.996800pt;}
.ws4c{word-spacing:8.049067pt;}
.wsa0{word-spacing:8.101333pt;}
.wsf0{word-spacing:8.153600pt;}
.ws40{word-spacing:8.205867pt;}
.ws29{word-spacing:8.258133pt;}
.ws62{word-spacing:8.310400pt;}
.ws32{word-spacing:8.571733pt;}
.ws2f{word-spacing:8.624000pt;}
.ws6b{word-spacing:8.728533pt;}
.ws79{word-spacing:8.833067pt;}
.wsf{word-spacing:8.922667pt;}
.ws47{word-spacing:8.989867pt;}
.ws36{word-spacing:9.042133pt;}
.wsbf{word-spacing:9.198933pt;}
.wsb5{word-spacing:9.251200pt;}
.wsf6{word-spacing:9.408000pt;}
.wse{word-spacing:9.445333pt;}
.wse6{word-spacing:9.460267pt;}
.ws68{word-spacing:9.564800pt;}
.ws71{word-spacing:9.617067pt;}
.ws88{word-spacing:9.721600pt;}
.wsb9{word-spacing:9.773867pt;}
.ws69{word-spacing:9.930667pt;}
.wsef{word-spacing:10.035200pt;}
.ws85{word-spacing:10.087467pt;}
.wsf4{word-spacing:10.192000pt;}
.ws37{word-spacing:10.296533pt;}
.wsad{word-spacing:10.453333pt;}
.wsf2{word-spacing:10.557867pt;}
.ws8d{word-spacing:10.610133pt;}
.ws7d{word-spacing:10.662400pt;}
.ws95{word-spacing:10.714667pt;}
.wsde{word-spacing:11.080533pt;}
.ws89{word-spacing:11.132800pt;}
.ws70{word-spacing:11.237333pt;}
.wsdb{word-spacing:11.289600pt;}
.ws63{word-spacing:11.394133pt;}
.ws9e{word-spacing:11.446400pt;}
.wsaa{word-spacing:11.498667pt;}
.ws91{word-spacing:11.655467pt;}
.ws8b{word-spacing:11.707733pt;}
.ws46{word-spacing:11.812267pt;}
.ws7f{word-spacing:11.969067pt;}
.wsf7{word-spacing:12.021333pt;}
.wse8{word-spacing:12.282667pt;}
.wsa8{word-spacing:12.334933pt;}
.wse2{word-spacing:12.596267pt;}
.ws9b{word-spacing:12.753067pt;}
.wsa9{word-spacing:12.805333pt;}
.wsd9{word-spacing:13.066667pt;}
.wse9{word-spacing:13.118933pt;}
.wsfc{word-spacing:13.171200pt;}
.ws9a{word-spacing:13.223467pt;}
.wsb1{word-spacing:13.380267pt;}
.wsb4{word-spacing:13.537067pt;}
.ws80{word-spacing:14.059733pt;}
.ws78{word-spacing:14.321067pt;}
.ws96{word-spacing:14.634667pt;}
.ws38{word-spacing:14.686933pt;}
.ws81{word-spacing:14.739200pt;}
.wsb2{word-spacing:14.896000pt;}
.ws74{word-spacing:14.948267pt;}
.ws35{word-spacing:15.000533pt;}
.ws3a{word-spacing:15.052800pt;}
.wsa6{word-spacing:15.209600pt;}
.wsb0{word-spacing:15.418667pt;}
.ws8c{word-spacing:15.784533pt;}
.ws9d{word-spacing:15.993600pt;}
.ws8e{word-spacing:16.098133pt;}
.ws49{word-spacing:16.150400pt;}
.wsbc{word-spacing:16.359467pt;}
.wsa1{word-spacing:16.464000pt;}
.ws33{word-spacing:16.620800pt;}
.wsaf{word-spacing:16.777600pt;}
.wsd8{word-spacing:17.248000pt;}
.wsd1{word-spacing:17.770667pt;}
.ws3c{word-spacing:18.293333pt;}
.wse5{word-spacing:18.606933pt;}
.wsee{word-spacing:18.763733pt;}
.wsb3{word-spacing:20.436267pt;}
.wsea{word-spacing:20.540800pt;}
.ws8a{word-spacing:21.168000pt;}
.wse4{word-spacing:22.004267pt;}
.ws5d{word-spacing:22.056533pt;}
.ws2e{word-spacing:22.370133pt;}
.wse3{word-spacing:23.049600pt;}
.ws3e{word-spacing:24.199467pt;}
.wsf8{word-spacing:24.617600pt;}
.ws6a{word-spacing:25.088000pt;}
.ws4d{word-spacing:25.244800pt;}
.wsd5{word-spacing:25.610667pt;}
.ws108{word-spacing:26.022484pt;}
.ws106{word-spacing:26.022891pt;}
.ws109{word-spacing:26.022972pt;}
.ws4a{word-spacing:29.792000pt;}
.wsc6{word-spacing:32.676773pt;}
.wsc7{word-spacing:32.677262pt;}
.ws20{word-spacing:39.388247pt;}
.ws6f{word-spacing:45.158400pt;}
.wsc5{word-spacing:53.322118pt;}
.wsc8{word-spacing:53.322607pt;}
.ws104{word-spacing:70.438953pt;}
.ws10a{word-spacing:82.028809pt;}
.ws107{word-spacing:103.086914pt;}
.ws105{word-spacing:103.086995pt;}
.ws10b{word-spacing:103.087077pt;}
.ws22{word-spacing:110.957909pt;}
.wsfe{word-spacing:174.424492pt;}
.wsc1{word-spacing:177.049630pt;}
.ws1d{word-spacing:217.161053pt;}
.ws1c{word-spacing:386.004250pt;}
.ws24{word-spacing:411.301242pt;}
.ws23{word-spacing:424.698576pt;}
.wscd{word-spacing:431.108206pt;}
.wscb{word-spacing:451.825943pt;}
.ws1e{word-spacing:517.060852pt;}
.ws6{word-spacing:1368.173913pt;}
.ws5{word-spacing:1729.641551pt;}
._f{margin-left:-2569.717893pt;}
._74{margin-left:-33.241064pt;}
._4e{margin-left:-22.395955pt;}
._4d{margin-left:-21.272674pt;}
._52{margin-left:-19.730854pt;}
._4c{margin-left:-15.814823pt;}
._4a{margin-left:-13.740571pt;}
._14{margin-left:-11.234589pt;}
._53{margin-left:-9.983465pt;}
._50{margin-left:-8.934030pt;}
._e{margin-left:-7.631361pt;}
._4b{margin-left:-6.433736pt;}
._b{margin-left:-5.236107pt;}
._13{margin-left:-3.815467pt;}
._7{margin-left:-2.842667pt;}
._6{margin-left:-1.525333pt;}
._1{width:0.943360pt;}
._9{width:2.097920pt;}
._11{width:3.057536pt;}
._c{width:3.957973pt;}
._55{width:5.376914pt;}
._54{width:7.192553pt;}
._12{width:8.164540pt;}
._10{width:9.159405pt;}
._51{width:10.809911pt;}
._a{width:12.685332pt;}
._d{width:14.129580pt;}
._8{width:15.601598pt;}
._4f{width:16.936355pt;}
._9c{width:29.440000pt;}
._6a{width:34.337771pt;}
._1b{width:40.819719pt;}
._5f{width:42.615479pt;}
._5d{width:44.606893pt;}
._61{width:45.815104pt;}
._9b{width:48.960000pt;}
._1f{width:53.781492pt;}
._76{width:55.240000pt;}
._7a{width:56.512119pt;}
._44{width:60.617583pt;}
._66{width:63.436812pt;}
._57{width:64.636794pt;}
._92{width:65.753662pt;}
._69{width:66.748824pt;}
._1c{width:72.896159pt;}
._90{width:75.883574pt;}
._7d{width:78.185956pt;}
._82{width:79.704057pt;}
._8a{width:83.118995pt;}
._83{width:85.108191pt;}
._64{width:86.249560pt;}
._8c{width:87.358649pt;}
._8f{width:93.032060pt;}
._96{width:97.856337pt;}
._2b{width:99.412250pt;}
._88{width:100.525391pt;}
._41{width:101.417583pt;}
._20{width:102.601053pt;}
._73{width:103.768427pt;}
._6c{width:105.451818pt;}
._3e{width:109.812250pt;}
._6f{width:113.156821pt;}
._8b{width:114.070211pt;}
._6d{width:115.620805pt;}
._8d{width:117.262782pt;}
._99{width:118.628510pt;}
._6e{width:120.574417pt;}
._1e{width:122.995719pt;}
._72{width:124.589272pt;}
._80{width:127.523165pt;}
._7b{width:129.769916pt;}
._58{width:130.676290pt;}
._71{width:133.978723pt;}
._24{width:134.899719pt;}
._36{width:140.500250pt;}
._70{width:141.395671pt;}
._28{width:144.243719pt;}
._3b{width:148.595719pt;}
._59{width:151.498112pt;}
._1d{width:154.356250pt;}
._30{width:155.635719pt;}
._33{width:157.641053pt;}
._2{width:160.958464pt;}
._32{width:165.022917pt;}
._2d{width:169.033053pt;}
._18{width:176.457053pt;}
._27{width:178.217583pt;}
._1a{width:181.578863pt;}
._47{width:186.025583pt;}
._94{width:191.285286pt;}
._6b{width:194.939964pt;}
._2f{width:206.292250pt;}
._37{width:207.219719pt;}
._98{width:212.566566pt;}
._23{width:218.740250pt;}
._60{width:222.567383pt;}
._93{width:225.503953pt;}
._9d{width:227.532288pt;}
._3a{width:234.740250pt;}
._19{width:240.079557pt;}
._67{width:243.388716pt;}
._5e{width:245.312049pt;}
._2a{width:247.205242pt;}
._87{width:248.436124pt;}
._56{width:252.372275pt;}
._78{width:257.560000pt;}
._2c{width:259.156250pt;}
._77{width:261.200000pt;}
._68{width:263.818729pt;}
._21{width:265.839519pt;}
._75{width:267.885333pt;}
._35{width:273.999909pt;}
._49{width:276.303909pt;}
._84{width:280.721564pt;}
._29{width:283.076852pt;}
._65{width:286.954715pt;}
._79{width:297.280000pt;}
._17{width:305.860890pt;}
._22{width:314.892709pt;}
._3{width:319.893376pt;}
._34{width:338.116852pt;}
._25{width:346.991519pt;}
._7f{width:352.343537pt;}
._43{width:366.586576pt;}
._91{width:387.839953pt;}
._7e{width:395.130145pt;}
._7c{width:404.474145pt;}
._97{width:408.543953pt;}
._3d{width:413.349242pt;}
._48{width:418.866932pt;}
._26{width:420.645242pt;}
._42{width:430.703519pt;}
._95{width:437.386620pt;}
._63{width:443.540341pt;}
._8e{width:450.997286pt;}
._62{width:461.306750pt;}
._86{width:463.761564pt;}
._3c{width:465.391519pt;}
._46{width:466.639909pt;}
._9a{width:468.874620pt;}
._39{width:483.109242pt;}
._31{width:484.762186pt;}
._5b{width:489.686561pt;}
._85{width:492.604230pt;}
._81{width:506.214897pt;}
._5c{width:513.333370pt;}
._2e{width:518.980852pt;}
._89{width:524.092230pt;}
._38{width:526.404852pt;}
._16{width:544.037242pt;}
._40{width:546.085242pt;}
._4{width:547.528576pt;}
._9e{width:569.215488pt;}
._15{width:608.234826pt;}
._5a{width:620.756789pt;}
._0{width:744.158720pt;}
._5{width:750.208384pt;}
._45{width:786.403238pt;}
._3f{width:859.064572pt;}
.fs9{font-size:28.000000pt;}
.fs12{font-size:29.866667pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fsf{font-size:41.066666pt;}
.fs15{font-size:42.240000pt;}
.fs7{font-size:42.666667pt;}
.fs11{font-size:48.000000pt;}
.fs1{font-size:48.640000pt;}
.fs13{font-size:49.066666pt;}
.fs10{font-size:52.266667pt;}
.fsc{font-size:53.333333pt;}
.fs3{font-size:53.760000pt;}
.fsb{font-size:54.933333pt;}
.fse{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:66.293333pt;}
.fs5{font-size:69.333333pt;}
.fs14{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs2{font-size:96.000000pt;}
.fsd{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:78.994802pt;}
.yb0{bottom:80.000000pt;}
.ycb{bottom:80.000132pt;}
.ydf{bottom:82.267736pt;}
.yab{bottom:83.879598pt;}
.y47{bottom:89.661469pt;}
.yc9{bottom:98.267731pt;}
.yaa{bottom:99.438538pt;}
.y46{bottom:100.328135pt;}
.y1be{bottom:107.200000pt;}
.y45{bottom:110.994802pt;}
.yc8{bottom:114.267731pt;}
.y125{bottom:114.997599pt;}
.ya9{bottom:114.997732pt;}
.y44{bottom:121.661469pt;}
.y1bd{bottom:125.440000pt;}
.yc7{bottom:130.267731pt;}
.ya8{bottom:130.556671pt;}
.y43{bottom:132.328135pt;}
.y42{bottom:142.994802pt;}
.yde{bottom:143.199331pt;}
.y1bc{bottom:143.680000pt;}
.ya7{bottom:146.115733pt;}
.yc6{bottom:146.267731pt;}
.y41{bottom:153.661469pt;}
.ya6{bottom:161.674805pt;}
.y1bb{bottom:162.240000pt;}
.yc5{bottom:162.267731pt;}
.ycc{bottom:172.776000pt;}
.ya5{bottom:177.233866pt;}
.y2d{bottom:177.280000pt;}
.yc4{bottom:178.267741pt;}
.y1ba{bottom:180.480000pt;}
.y50{bottom:189.840800pt;}
.ya4{bottom:192.792928pt;}
.yc3{bottom:194.267741pt;}
.y1b9{bottom:199.040000pt;}
.y56{bottom:200.074137pt;}
.y2c{bottom:200.640000pt;}
.ye0{bottom:203.526794pt;}
.y4f{bottom:205.840800pt;}
.ya3{bottom:208.352010pt;}
.yc2{bottom:210.267741pt;}
.y4e{bottom:213.840800pt;}
.y55{bottom:216.074137pt;}
.y1b8{bottom:217.280000pt;}
.y158{bottom:218.316264pt;}
.y2b{bottom:219.200000pt;}
.ycd{bottom:219.799723pt;}
.ya2{bottom:223.911072pt;}
.y54{bottom:224.074137pt;}
.y4d{bottom:225.840800pt;}
.yc1{bottom:226.267741pt;}
.y157{bottom:230.316264pt;}
.y1e7{bottom:232.960000pt;}
.y18d{bottom:234.267741pt;}
.y1b7{bottom:235.840000pt;}
.y2a{bottom:237.440000pt;}
.y4c{bottom:237.840800pt;}
.ya1{bottom:239.470133pt;}
.y53{bottom:240.074137pt;}
.yc0{bottom:242.267741pt;}
.y156{bottom:242.316264pt;}
.y18c{bottom:246.267741pt;}
.y52{bottom:248.074137pt;}
.y1e6{bottom:249.920000pt;}
.y1b6{bottom:254.080000pt;}
.y155{bottom:254.316264pt;}
.ya0{bottom:255.029195pt;}
.y124{bottom:255.129191pt;}
.y29{bottom:256.000000pt;}
.ybf{bottom:258.267741pt;}
.y4b{bottom:260.840800pt;}
.y1e5{bottom:262.400000pt;}
.y51{bottom:264.074137pt;}
.y154{bottom:266.316264pt;}
.yce{bottom:266.858663pt;}
.ye1{bottom:268.303996pt;}
.y9f{bottom:270.588257pt;}
.y123{bottom:270.688273pt;}
.y1b5{bottom:272.640000pt;}
.y28{bottom:273.920000pt;}
.ybe{bottom:274.267741pt;}
.y1e4{bottom:274.560000pt;}
.yec{bottom:276.467468pt;}
.y153{bottom:278.316264pt;}
.y9e{bottom:286.147339pt;}
.y122{bottom:286.247742pt;}
.y1e3{bottom:286.720000pt;}
.y27{bottom:289.600000pt;}
.ybd{bottom:290.267741pt;}
.y152{bottom:290.316264pt;}
.y18b{bottom:290.767741pt;}
.y1b4{bottom:290.880000pt;}
.y1e2{bottom:299.200000pt;}
.y9d{bottom:299.480672pt;}
.y121{bottom:301.807332pt;}
.y151{bottom:302.316264pt;}
.y18a{bottom:302.767741pt;}
.ybc{bottom:306.267741pt;}
.y26{bottom:308.160000pt;}
.y1b3{bottom:309.440000pt;}
.y1e1{bottom:311.360000pt;}
.y6e{bottom:312.314799pt;}
.y150{bottom:314.316264pt;}
.y189{bottom:314.767741pt;}
.y9c{bottom:315.039733pt;}
.ycf{bottom:316.999736pt;}
.ybb{bottom:322.267741pt;}
.y1e0{bottom:323.520000pt;}
.y14f{bottom:326.316264pt;}
.y25{bottom:326.400000pt;}
.y188{bottom:326.767741pt;}
.y1b2{bottom:327.680000pt;}
.y9b{bottom:328.373067pt;}
.y6d{bottom:332.314799pt;}
.ye2{bottom:334.319600pt;}
.y1df{bottom:336.000000pt;}
.yba{bottom:338.267741pt;}
.y14e{bottom:338.316264pt;}
.y187{bottom:338.767741pt;}
.y9a{bottom:341.706380pt;}
.y24{bottom:344.960000pt;}
.y1b1{bottom:346.240000pt;}
.y1de{bottom:348.160000pt;}
.y6c{bottom:348.314819pt;}
.y14d{bottom:350.316284pt;}
.y186{bottom:350.767741pt;}
.yb9{bottom:354.267741pt;}
.y99{bottom:357.265340pt;}
.yd0{bottom:358.320272pt;}
.y1dd{bottom:360.320000pt;}
.y14c{bottom:362.316284pt;}
.y185{bottom:362.767741pt;}
.y23{bottom:363.200000pt;}
.y6b{bottom:364.314819pt;}
.y1b0{bottom:364.480000pt;}
.y103{bottom:365.933879pt;}
.yb8{bottom:370.267741pt;}
.y98{bottom:370.598674pt;}
.y1dc{bottom:372.800000pt;}
.y14b{bottom:374.316284pt;}
.y184{bottom:374.767741pt;}
.y102{bottom:377.933879pt;}
.y6a{bottom:380.314819pt;}
.y22{bottom:381.760000pt;}
.y1af{bottom:383.040000pt;}
.y1db{bottom:384.960000pt;}
.y97{bottom:386.157715pt;}
.yb7{bottom:386.267741pt;}
.y14a{bottom:386.316284pt;}
.y183{bottom:386.767741pt;}
.ye3{bottom:393.275472pt;}
.y69{bottom:396.314819pt;}
.y1da{bottom:397.120000pt;}
.y149{bottom:398.316284pt;}
.y182{bottom:398.767741pt;}
.y96{bottom:399.491048pt;}
.yd1{bottom:399.649048pt;}
.y21{bottom:400.000000pt;}
.y1ae{bottom:401.280000pt;}
.y101{bottom:401.933879pt;}
.yb6{bottom:402.267741pt;}
.y1d9{bottom:409.600000pt;}
.y148{bottom:410.316284pt;}
.y181{bottom:410.767741pt;}
.y95{bottom:412.824382pt;}
.y100{bottom:413.933879pt;}
.y68{bottom:416.314819pt;}
.y20{bottom:417.920000pt;}
.yb5{bottom:418.267741pt;}
.y1ad{bottom:419.840000pt;}
.y1d8{bottom:421.760000pt;}
.y147{bottom:422.316284pt;}
.y180{bottom:422.767741pt;}
.yb1{bottom:422.825724pt;}
.yff{bottom:425.933879pt;}
.y94{bottom:428.383464pt;}
.y67{bottom:432.314819pt;}
.y1f{bottom:433.280000pt;}
.y1d7{bottom:433.920000pt;}
.yb4{bottom:434.267741pt;}
.y146{bottom:434.316284pt;}
.y17f{bottom:434.767741pt;}
.yfe{bottom:437.933879pt;}
.y1ac{bottom:438.080000pt;}
.y93{bottom:443.942546pt;}
.yd2{bottom:444.628784pt;}
.y145{bottom:446.316284pt;}
.y1d6{bottom:446.400000pt;}
.y17e{bottom:446.767741pt;}
.y66{bottom:448.314819pt;}
.y1e{bottom:448.960000pt;}
.yfd{bottom:449.933879pt;}
.yaf{bottom:450.267741pt;}
.y1ab{bottom:456.640000pt;}
.y144{bottom:458.316284pt;}
.y1d5{bottom:458.560000pt;}
.y17d{bottom:458.767741pt;}
.ye4{bottom:459.291056pt;}
.y92{bottom:459.601603pt;}
.yfc{bottom:461.933879pt;}
.y65{bottom:464.314819pt;}
.yae{bottom:466.267741pt;}
.y1d{bottom:467.520000pt;}
.y143{bottom:470.316284pt;}
.y1d4{bottom:470.720000pt;}
.y17c{bottom:470.767741pt;}
.y1aa{bottom:474.880000pt;}
.y91{bottom:475.160685pt;}
.y64{bottom:480.314819pt;}
.yad{bottom:482.267741pt;}
.y142{bottom:482.316284pt;}
.y120{bottom:482.330119pt;}
.y17b{bottom:482.767741pt;}
.y1d3{bottom:483.200000pt;}
.y1c{bottom:485.760000pt;}
.yfb{bottom:485.933879pt;}
.yd3{bottom:485.949341pt;}
.y1a9{bottom:493.440000pt;}
.y141{bottom:494.316284pt;}
.y17a{bottom:494.767741pt;}
.y1d2{bottom:495.360000pt;}
.y63{bottom:496.314819pt;}
.y11f{bottom:497.889200pt;}
.yfa{bottom:497.933879pt;}
.yac{bottom:498.267741pt;}
.y1b{bottom:504.320000pt;}
.y140{bottom:506.316284pt;}
.y179{bottom:506.767741pt;}
.y1d1{bottom:507.520000pt;}
.y1a8{bottom:511.680000pt;}
.y62{bottom:512.314819pt;}
.y11e{bottom:513.448283pt;}
.y90{bottom:514.267741pt;}
.ye5{bottom:518.247070pt;}
.y13f{bottom:518.316284pt;}
.y178{bottom:518.767741pt;}
.y1d0{bottom:520.000000pt;}
.yf9{bottom:521.933879pt;}
.y1a{bottom:522.560000pt;}
.yd4{bottom:527.250122pt;}
.y11d{bottom:529.007324pt;}
.y1a7{bottom:530.240000pt;}
.y8d{bottom:530.267741pt;}
.y13e{bottom:530.316284pt;}
.y177{bottom:530.767741pt;}
.y1cf{bottom:532.160000pt;}
.y61{bottom:532.314819pt;}
.yf8{bottom:533.933879pt;}
.y19{bottom:541.120000pt;}
.y13d{bottom:542.316284pt;}
.y176{bottom:542.767741pt;}
.y1ce{bottom:544.320000pt;}
.y11c{bottom:544.566406pt;}
.yf7{bottom:545.933879pt;}
.y8c{bottom:546.267741pt;}
.y60{bottom:548.314819pt;}
.y1a6{bottom:548.480000pt;}
.y13c{bottom:554.316284pt;}
.y175{bottom:554.767741pt;}
.y1cd{bottom:556.800000pt;}
.yf6{bottom:557.933879pt;}
.y18{bottom:559.360000pt;}
.y11b{bottom:560.125448pt;}
.y8b{bottom:562.267741pt;}
.yb2{bottom:562.588257pt;}
.y5f{bottom:564.314819pt;}
.y13b{bottom:566.316284pt;}
.y174{bottom:566.767741pt;}
.y1a5{bottom:567.040000pt;}
.y1cc{bottom:568.960000pt;}
.yf5{bottom:569.933879pt;}
.yd5{bottom:572.229980pt;}
.y11a{bottom:575.684530pt;}
.y17{bottom:577.920000pt;}
.y8a{bottom:578.267741pt;}
.y13a{bottom:578.316284pt;}
.y173{bottom:578.767741pt;}
.y5e{bottom:580.314819pt;}
.y1cb{bottom:581.120000pt;}
.yca{bottom:581.468262pt;}
.yf4{bottom:581.933879pt;}
.ye6{bottom:584.262655pt;}
.y1a4{bottom:585.280000pt;}
.yed{bottom:590.173055pt;}
.y139{bottom:590.316284pt;}
.y172{bottom:590.767741pt;}
.y119{bottom:591.243612pt;}
.y1ca{bottom:593.600000pt;}
.yf3{bottom:593.933879pt;}
.y89{bottom:594.267741pt;}
.y16{bottom:596.160000pt;}
.y5d{bottom:596.314819pt;}
.y171{bottom:602.767741pt;}
.y1a3{bottom:603.840000pt;}
.y1c9{bottom:605.760000pt;}
.yf2{bottom:605.933879pt;}
.y118{bottom:606.802653pt;}
.y88{bottom:610.267741pt;}
.yd6{bottom:613.550415pt;}
.y15{bottom:614.720000pt;}
.y170{bottom:614.767741pt;}
.y5c{bottom:616.314819pt;}
.y1c8{bottom:617.920000pt;}
.yf1{bottom:617.933879pt;}
.yee{bottom:618.588420pt;}
.y1a2{bottom:622.080000pt;}
.y117{bottom:622.361613pt;}
.y87{bottom:626.267741pt;}
.y16f{bottom:626.767741pt;}
.yf0{bottom:629.933879pt;}
.y1c7{bottom:630.400000pt;}
.y5b{bottom:632.314819pt;}
.y14{bottom:632.640000pt;}
.y116{bottom:637.920817pt;}
.y16e{bottom:638.767741pt;}
.y1a1{bottom:640.640000pt;}
.yef{bottom:641.933879pt;}
.y86{bottom:642.267741pt;}
.y1c6{bottom:642.560000pt;}
.ye7{bottom:643.218669pt;}
.y5a{bottom:648.314819pt;}
.y13{bottom:648.320000pt;}
.y16d{bottom:650.767741pt;}
.y138{bottom:651.649618pt;}
.y115{bottom:653.579753pt;}
.y1c5{bottom:654.720000pt;}
.yd7{bottom:654.853353pt;}
.y85{bottom:658.267741pt;}
.y1a0{bottom:658.880000pt;}
.y16c{bottom:662.767741pt;}
.y59{bottom:664.314819pt;}
.y12{bottom:666.880000pt;}
.y114{bottom:666.913086pt;}
.y1c4{bottom:668.160000pt;}
.y84{bottom:674.267741pt;}
.y16b{bottom:674.767741pt;}
.y19f{bottom:677.440000pt;}
.y137{bottom:678.767741pt;}
.y58{bottom:680.314819pt;}
.y113{bottom:682.472656pt;}
.y11{bottom:685.120000pt;}
.y16a{bottom:686.767741pt;}
.y83{bottom:690.267741pt;}
.y136{bottom:690.767741pt;}
.y19e{bottom:695.680000pt;}
.y112{bottom:698.032145pt;}
.y169{bottom:698.767741pt;}
.y57{bottom:700.314779pt;}
.yd8{bottom:704.994385pt;}
.y10{bottom:705.600000pt;}
.y82{bottom:706.267741pt;}
.ye8{bottom:709.234294pt;}
.y168{bottom:710.767741pt;}
.y19d{bottom:713.920000pt;}
.y135{bottom:714.767741pt;}
.y81{bottom:722.267741pt;}
.y167{bottom:722.767741pt;}
.y1c3{bottom:723.200000pt;}
.y134{bottom:726.767741pt;}
.y111{bottom:732.012777pt;}
.y19c{bottom:732.480000pt;}
.yf{bottom:733.120000pt;}
.y166{bottom:734.767741pt;}
.y80{bottom:738.267741pt;}
.yd9{bottom:746.314941pt;}
.y165{bottom:746.767741pt;}
.y110{bottom:747.572021pt;}
.y19b{bottom:750.720000pt;}
.y133{bottom:750.767741pt;}
.y72{bottom:752.281494pt;}
.y7f{bottom:754.267741pt;}
.y164{bottom:758.767741pt;}
.ye{bottom:760.640000pt;}
.y132{bottom:762.767741pt;}
.y10f{bottom:763.131104pt;}
.y3b{bottom:766.080000pt;}
.y19a{bottom:769.280000pt;}
.y7e{bottom:770.267741pt;}
.y163{bottom:770.767741pt;}
.ye9{bottom:771.048096pt;}
.y131{bottom:774.767741pt;}
.y1c2{bottom:778.560000pt;}
.y10e{bottom:778.690023pt;}
.y162{bottom:782.767741pt;}
.y3a{bottom:784.640000pt;}
.y7d{bottom:786.267741pt;}
.yd{bottom:786.560000pt;}
.y130{bottom:786.767741pt;}
.y199{bottom:787.520000pt;}
.yda{bottom:787.617839pt;}
.y10d{bottom:794.249105pt;}
.y161{bottom:794.767741pt;}
.y71{bottom:797.614827pt;}
.y12f{bottom:798.767741pt;}
.y7c{bottom:802.267741pt;}
.y39{bottom:802.880000pt;}
.yc{bottom:804.800000pt;}
.y198{bottom:806.080000pt;}
.y160{bottom:806.767741pt;}
.y10c{bottom:809.808105pt;}
.y12e{bottom:810.767741pt;}
.y7b{bottom:818.267741pt;}
.y15f{bottom:818.767741pt;}
.y38{bottom:821.440000pt;}
.y12d{bottom:822.767741pt;}
.yb{bottom:823.360000pt;}
.y197{bottom:824.320000pt;}
.y10b{bottom:825.367188pt;}
.y15e{bottom:830.767741pt;}
.y70{bottom:832.281494pt;}
.y1c1{bottom:833.600000pt;}
.y7a{bottom:834.267741pt;}
.y12c{bottom:834.767741pt;}
.yea{bottom:837.063883pt;}
.ydb{bottom:837.759033pt;}
.y37{bottom:839.680000pt;}
.y10a{bottom:840.926270pt;}
.ya{bottom:841.600000pt;}
.y15d{bottom:842.767741pt;}
.y196{bottom:842.880000pt;}
.y12b{bottom:846.767741pt;}
.y79{bottom:850.267741pt;}
.y15c{bottom:854.767741pt;}
.y109{bottom:856.485352pt;}
.y36{bottom:858.240000pt;}
.y9{bottom:859.840000pt;}
.y195{bottom:861.120000pt;}
.y78{bottom:866.267741pt;}
.y15b{bottom:866.767741pt;}
.y6f{bottom:866.948161pt;}
.y12a{bottom:870.767741pt;}
.y108{bottom:872.044434pt;}
.y35{bottom:876.480000pt;}
.y8{bottom:878.400000pt;}
.y15a{bottom:878.767741pt;}
.y194{bottom:879.680000pt;}
.ydc{bottom:879.879476pt;}
.y77{bottom:882.267741pt;}
.y107{bottom:887.603434pt;}
.y1c0{bottom:888.960000pt;}
.y159{bottom:890.767741pt;}
.y34{bottom:895.040000pt;}
.y7{bottom:896.640000pt;}
.y193{bottom:897.920000pt;}
.y76{bottom:898.267741pt;}
.yeb{bottom:898.877848pt;}
.y129{bottom:902.767741pt;}
.y106{bottom:903.262533pt;}
.y33{bottom:913.280000pt;}
.y8f{bottom:914.267741pt;}
.y75{bottom:914.267904pt;}
.y128{bottom:914.767741pt;}
.y6{bottom:915.200000pt;}
.y192{bottom:916.480000pt;}
.y105{bottom:918.821452pt;}
.y3f{bottom:919.680000pt;}
.ydd{bottom:921.180257pt;}
.y40{bottom:921.267741pt;}
.y127{bottom:926.767741pt;}
.y8e{bottom:930.267741pt;}
.y74{bottom:930.267904pt;}
.y32{bottom:931.840000pt;}
.y5{bottom:933.440000pt;}
.y104{bottom:933.488118pt;}
.y191{bottom:934.720000pt;}
.yb3{bottom:935.173991pt;}
.y126{bottom:938.767741pt;}
.y3e{bottom:939.200000pt;}
.y31{bottom:950.080000pt;}
.y190{bottom:953.280000pt;}
.y4{bottom:956.480000pt;}
.y3d{bottom:963.520000pt;}
.y30{bottom:968.640000pt;}
.y18f{bottom:971.520000pt;}
.y3{bottom:974.720000pt;}
.y2f{bottom:986.880000pt;}
.y3c{bottom:988.160000pt;}
.y4a{bottom:990.267741pt;}
.y18e{bottom:990.720000pt;}
.y2{bottom:993.280000pt;}
.y49{bottom:1003.601074pt;}
.y73{bottom:1003.934408pt;}
.y2e{bottom:1006.400000pt;}
.y1{bottom:1011.520000pt;}
.y1bf{bottom:1011.840000pt;}
.he{height:26.180000pt;}
.h24{height:28.153125pt;}
.hb{height:34.906667pt;}
.h5{height:35.831250pt;}
.ha{height:36.288000pt;}
.h22{height:37.320000pt;}
.hf{height:37.400000pt;}
.h21{height:38.080000pt;}
.h1f{height:38.880000pt;}
.h19{height:39.893333pt;}
.hc{height:40.661333pt;}
.h18{height:41.472000pt;}
.h1b{height:42.197333pt;}
.h1c{height:42.656250pt;}
.h20{height:44.880000pt;}
.h1a{height:44.991984pt;}
.h4{height:46.593750pt;}
.h2{height:46.625000pt;}
.h17{height:47.472000pt;}
.h1d{height:47.692799pt;}
.h1e{height:48.555733pt;}
.h15{height:49.653333pt;}
.h12{height:49.866667pt;}
.h11{height:51.840000pt;}
.h16{height:52.789333pt;}
.h23{height:54.048750pt;}
.h10{height:54.329067pt;}
.h6{height:61.388750pt;}
.h14{height:61.863804pt;}
.h3{height:69.890625pt;}
.h9{height:70.130237pt;}
.hd{height:103.762295pt;}
.h13{height:121.856000pt;}
.h8{height:1058.000000pt;}
.h7{height:1058.268000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:75.590535pt;}
.x13{left:81.097066pt;}
.x17{left:84.257202pt;}
.x19{left:86.257333pt;}
.x44{left:91.300802pt;}
.x9{left:96.000000pt;}
.x45{left:102.257202pt;}
.x6{left:113.448576pt;}
.x4{left:137.190752pt;}
.x7{left:162.116512pt;}
.x1f{left:173.449341pt;}
.xb{left:177.225888pt;}
.xc{left:183.862624pt;}
.x20{left:189.008931pt;}
.x3e{left:198.110799pt;}
.x1b{left:199.622396pt;}
.x5{left:202.085280pt;}
.x21{left:204.568400pt;}
.x3f{left:213.670410pt;}
.x22{left:217.901733pt;}
.x49{left:221.278524pt;}
.x40{left:229.229858pt;}
.x23{left:231.235067pt;}
.x47{left:235.082926pt;}
.x12{left:237.333344pt;}
.x14{left:240.944804pt;}
.x41{left:242.563192pt;}
.x24{left:246.894124pt;}
.x2{left:255.460288pt;}
.x42{left:258.222270pt;}
.x11{left:259.448576pt;}
.x1c{left:261.837992pt;}
.x25{left:273.560791pt;}
.x8{left:286.177088pt;}
.x26{left:289.119873pt;}
.x48{left:290.880941pt;}
.x27{left:304.678935pt;}
.x1{left:315.038400pt;}
.xd{left:318.608704pt;}
.x10{left:326.608640pt;}
.x28{left:333.571330pt;}
.xa{left:337.307840pt;}
.xf{left:347.499200pt;}
.x29{left:360.237996pt;}
.x2a{left:375.797078pt;}
.x2b{left:389.130412pt;}
.x2c{left:391.356120pt;}
.x3{left:396.866560pt;}
.x2d{left:404.689453pt;}
.x16{left:406.708659pt;}
.x1a{left:416.965983pt;}
.x2e{left:418.022786pt;}
.x1d{left:419.593872pt;}
.x46{left:422.009318pt;}
.x4a{left:426.299194pt;}
.x2f{left:433.581746pt;}
.x30{left:446.915080pt;}
.x31{left:460.248413pt;}
.x32{left:475.807617pt;}
.x33{left:489.140951pt;}
.x34{left:502.474284pt;}
.x35{left:518.033203pt;}
.x36{left:531.366536pt;}
.x37{left:544.699870pt;}
.x38{left:560.258952pt;}
.x1e{left:561.320516pt;}
.x39{left:573.592285pt;}
.x3a{left:586.925618pt;}
.x3b{left:602.484660pt;}
.x3c{left:615.817993pt;}
.x3d{left:629.151326pt;}
.x43{left:656.588257pt;}
.x18{left:662.060140pt;}
.xe{left:697.733440pt;}
}




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