
    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_ab0e06819928df6c5b3bd10d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_10d701557db40eb760040d33.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_307afb803af5c32ae1e3b010.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_f584facb3f6550e109ccb1aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.175293;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_80759779f87f79d8022ed35f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_404360a1d0003b43f057dc01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_27aee1faa8ed1f58f89d4c78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_c93021219a700219c55b1953.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_63dbf854320721ce62ecb2c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_efb35b53845f469e31c277a7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_38a134e7d2bb4cd93fa88813.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961048;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_255fbd3aa8b36c3ec122139c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.032715;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_7d058c986eef5012456eaf12.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964844;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_1beeff45d44dd7848ab8dfc5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926778;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_fe97933a3f3e2ce56ed76745.woff2')format("woff");}.fff{font-family:fff;line-height:0.958008;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_4a9ab0ebe3db831900e5b5c5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958008;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_0fb0473fe28af385fcd69094.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958008;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_e154a72f12822380e5688aa9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958008;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_dce16799c78aef6e128762a2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958008;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_ad30d16f09f7ed74aac332ac.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958008;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_930b7b4ba5a1ab32bcbb6c6c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958008;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_5458a41162014a4f8866cd3a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958008;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_7877b88448d3affd35afe968.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958008;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_9e6311e05cb83cdfaf0a68f8.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958008;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_1f3741486eac7cb97366bf4b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958008;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_462a4335031b218aecae5d94.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958008;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_4a9ab0ebe3db831900e5b5c5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.958008;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_0fb0473fe28af385fcd69094.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.958008;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_e154a72f12822380e5688aa9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.958008;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_dce16799c78aef6e128762a2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958008;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_ad30d16f09f7ed74aac332ac.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.958008;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_930b7b4ba5a1ab32bcbb6c6c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.958008;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_998e568b2c595f893624d47d.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.958008;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_4a9ab0ebe3db831900e5b5c5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.958008;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_0fb0473fe28af385fcd69094.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.958008;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_e154a72f12822380e5688aa9.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.958008;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_dce16799c78aef6e128762a2.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.958008;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_ad30d16f09f7ed74aac332ac.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.958008;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_930b7b4ba5a1ab32bcbb6c6c.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.958008;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_e66fe6423a889eb86645f322.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.943848;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_ff4ea042b7d76d9abe707f03.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.943848;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_97c5379d260a16fe03b2714f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.958008;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_4a9ab0ebe3db831900e5b5c5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.958008;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_0fb0473fe28af385fcd69094.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.958008;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_e154a72f12822380e5688aa9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.958008;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_dce16799c78aef6e128762a2.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.958008;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_ad30d16f09f7ed74aac332ac.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.958008;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_930b7b4ba5a1ab32bcbb6c6c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.958008;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_454facb0a26565d9d71a7263.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.943848;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_f44d3d3377ec84d997eb0091.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.958008;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_ec2631cbf48e12b333c31c60.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.958008;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_58f93ddb77cf09e884a24839.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.943848;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_04e7f2135135643d0f8670b2.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.958008;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_32933a45bec6176a0352d3d5.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.772054;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_3ed0185e621aff3e6a9b99fb.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.973633;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;}
.m7{transform:matrix(0.000000,-0.249035,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249035,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249035,0.250000,0.000000,0,0);}
.m8{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);}
.m9{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m5{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-16.507714px;}
.v4{vertical-align:-10.656878px;}
.v5{vertical-align:-8.845906px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:23.368514px;}
.v6{vertical-align:26.642196px;}
.v8{vertical-align:30.000000px;}
.ls8{letter-spacing:-6.360000px;}
.ls37{letter-spacing:-5.724000px;}
.ls2b{letter-spacing:-1.776000px;}
.ls3b{letter-spacing:-0.972000px;}
.ls32{letter-spacing:-0.960000px;}
.ls23{letter-spacing:-0.926064px;}
.ls1f{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.762780px;}
.ls14{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.702000px;}
.ls5{letter-spacing:-0.691200px;}
.ls24{letter-spacing:-0.676140px;}
.ls2a{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.408000px;}
.ls12{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.300000px;}
.ls3a{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.120000px;}
.ls3c{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.060000px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.001800px;}
.ls6{letter-spacing:0.002400px;}
.ls0{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.015600px;}
.ls1a{letter-spacing:0.017400px;}
.ls1b{letter-spacing:0.018600px;}
.ls1c{letter-spacing:0.019200px;}
.ls29{letter-spacing:0.021000px;}
.ls2{letter-spacing:0.025800px;}
.lsf{letter-spacing:0.094200px;}
.lse{letter-spacing:0.120000px;}
.ls39{letter-spacing:0.242400px;}
.ls25{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.301800px;}
.ls26{letter-spacing:0.302400px;}
.ls27{letter-spacing:0.303000px;}
.ls13{letter-spacing:0.314820px;}
.ls9{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.617400px;}
.ls30{letter-spacing:0.780000px;}
.ls2d{letter-spacing:1.720800px;}
.ls34{letter-spacing:4.153800px;}
.ls33{letter-spacing:5.068200px;}
.ls2e{letter-spacing:5.288400px;}
.ls31{letter-spacing:8.649600px;}
.ls35{letter-spacing:14.064000px;}
.ls2f{letter-spacing:35.013600px;}
.ls1d{letter-spacing:147.594283px;}
.ls1e{letter-spacing:280.979395px;}
.ls21{letter-spacing:304.654332px;}
.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;}
}
.ws172{word-spacing:-60.000000px;}
.ws173{word-spacing:-59.340000px;}
.ws0{word-spacing:-24.786000px;}
.ws27{word-spacing:-17.928000px;}
.ws195{word-spacing:-16.434000px;}
.ws16e{word-spacing:-15.720000px;}
.ws170{word-spacing:-15.660000px;}
.ws16f{word-spacing:-15.600000px;}
.wsd2{word-spacing:-15.420000px;}
.wsd1{word-spacing:-15.240000px;}
.ws158{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.940000px;}
.ws87{word-spacing:-14.880000px;}
.wsb8{word-spacing:-14.820000px;}
.ws28{word-spacing:-14.760000px;}
.ws29{word-spacing:-14.700000px;}
.ws9c{word-spacing:-14.640000px;}
.ws2a{word-spacing:-14.580000px;}
.ws86{word-spacing:-14.460000px;}
.ws174{word-spacing:-14.400000px;}
.wsd0{word-spacing:-14.340000px;}
.ws101{word-spacing:-14.280000px;}
.ws106{word-spacing:-14.220000px;}
.wse3{word-spacing:-14.160000px;}
.wsf3{word-spacing:-14.040000px;}
.wse2{word-spacing:-13.980000px;}
.ws171{word-spacing:-13.860000px;}
.ws188{word-spacing:-13.680000px;}
.ws75{word-spacing:-13.662000px;}
.ws166{word-spacing:-13.446000px;}
.ws196{word-spacing:-13.392000px;}
.ws1e1{word-spacing:-13.284000px;}
.ws5{word-spacing:-13.230000px;}
.ws197{word-spacing:-12.852000px;}
.ws1bb{word-spacing:-12.690000px;}
.ws118{word-spacing:-12.582000px;}
.ws1ba{word-spacing:-12.528000px;}
.ws1e0{word-spacing:-12.420000px;}
.ws1a4{word-spacing:-12.366000px;}
.ws1df{word-spacing:-12.258000px;}
.ws8{word-spacing:-12.150000px;}
.ws7{word-spacing:-12.042000px;}
.ws163{word-spacing:-11.904000px;}
.ws6{word-spacing:-11.772000px;}
.ws162{word-spacing:-11.760000px;}
.ws183{word-spacing:-11.580000px;}
.ws124{word-spacing:-11.208793px;}
.ws2{word-spacing:-10.896000px;}
.ws25{word-spacing:-10.800000px;}
.ws26{word-spacing:-10.704000px;}
.ws9{word-spacing:-10.464000px;}
.ws1{word-spacing:-9.542544px;}
.ws186{word-spacing:-9.420000px;}
.ws3{word-spacing:-9.417600px;}
.ws14b{word-spacing:-9.400721px;}
.ws14c{word-spacing:-9.398346px;}
.wsd3{word-spacing:-8.989860px;}
.ws184{word-spacing:-8.820000px;}
.ws10f{word-spacing:-8.675040px;}
.ws1a3{word-spacing:-7.807536px;}
.ws185{word-spacing:-7.560000px;}
.ws187{word-spacing:-7.440000px;}
.ws175{word-spacing:-5.280000px;}
.ws3a{word-spacing:-5.040000px;}
.ws194{word-spacing:-4.680000px;}
.wsd5{word-spacing:-4.620000px;}
.ws190{word-spacing:-4.500000px;}
.ws191{word-spacing:-4.440000px;}
.ws108{word-spacing:-3.960000px;}
.ws1e6{word-spacing:-3.834000px;}
.ws8b{word-spacing:-3.600000px;}
.ws110{word-spacing:-3.540000px;}
.ws1c4{word-spacing:-3.402000px;}
.wsf8{word-spacing:-3.300000px;}
.ws1d5{word-spacing:-3.294000px;}
.wsf9{word-spacing:-3.240000px;}
.wsf6{word-spacing:-3.180000px;}
.ws198{word-spacing:-3.132000px;}
.ws18b{word-spacing:-3.120000px;}
.ws10e{word-spacing:-3.060000px;}
.wsef{word-spacing:-3.000000px;}
.wsce{word-spacing:-2.940000px;}
.ws17d{word-spacing:-2.880000px;}
.ws6a{word-spacing:-2.820000px;}
.wsc8{word-spacing:-2.760000px;}
.ws67{word-spacing:-2.700000px;}
.ws1af{word-spacing:-2.646000px;}
.ws4f{word-spacing:-2.640000px;}
.ws119{word-spacing:-2.592000px;}
.wsb0{word-spacing:-2.580000px;}
.ws11a{word-spacing:-2.538000px;}
.wsab{word-spacing:-2.520000px;}
.ws1b2{word-spacing:-2.484000px;}
.wsd6{word-spacing:-2.460000px;}
.ws146{word-spacing:-2.400000px;}
.ws144{word-spacing:-2.376000px;}
.ws2d{word-spacing:-2.340000px;}
.ws1b6{word-spacing:-2.322000px;}
.wsfe{word-spacing:-2.280000px;}
.ws199{word-spacing:-2.268000px;}
.wscf{word-spacing:-2.220000px;}
.ws167{word-spacing:-2.214000px;}
.wsae{word-spacing:-2.160000px;}
.ws11b{word-spacing:-2.106000px;}
.ws70{word-spacing:-2.100000px;}
.ws1c8{word-spacing:-2.052000px;}
.ws74{word-spacing:-2.040000px;}
.ws1c7{word-spacing:-1.998000px;}
.ws4d{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.890000px;}
.ws85{word-spacing:-1.860000px;}
.ws104{word-spacing:-1.800000px;}
.ws1c3{word-spacing:-1.782000px;}
.ws8d{word-spacing:-1.740000px;}
.ws33{word-spacing:-1.680000px;}
.ws11f{word-spacing:-1.620000px;}
.ws143{word-spacing:-1.566000px;}
.wsdc{word-spacing:-1.560000px;}
.ws1c0{word-spacing:-1.512000px;}
.wsa8{word-spacing:-1.500000px;}
.ws1b4{word-spacing:-1.458000px;}
.wsac{word-spacing:-1.440000px;}
.ws155{word-spacing:-1.392000px;}
.ws34{word-spacing:-1.380000px;}
.ws20{word-spacing:-1.350000px;}
.ws8f{word-spacing:-1.320000px;}
.ws21{word-spacing:-1.296000px;}
.ws81{word-spacing:-1.260000px;}
.ws23{word-spacing:-1.242000px;}
.ws10d{word-spacing:-1.200000px;}
.ws1f{word-spacing:-1.188000px;}
.wsb7{word-spacing:-1.140000px;}
.ws1e2{word-spacing:-1.134000px;}
.ws107{word-spacing:-1.080000px;}
.ws16b{word-spacing:-1.026000px;}
.ws68{word-spacing:-1.020000px;}
.ws1bc{word-spacing:-0.972000px;}
.ws89{word-spacing:-0.960000px;}
.ws1e9{word-spacing:-0.918000px;}
.wsa4{word-spacing:-0.900000px;}
.ws46{word-spacing:-0.840000px;}
.ws61{word-spacing:-0.780000px;}
.ws17e{word-spacing:-0.720000px;}
.ws17b{word-spacing:-0.702000px;}
.wse1{word-spacing:-0.660000px;}
.ws58{word-spacing:-0.600000px;}
.ws41{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.486000px;}
.ws100{word-spacing:-0.480000px;}
.ws1c2{word-spacing:-0.432000px;}
.ws7e{word-spacing:-0.420000px;}
.ws176{word-spacing:-0.360000px;}
.ws1e8{word-spacing:-0.324000px;}
.ws6b{word-spacing:-0.300000px;}
.ws1d4{word-spacing:-0.270000px;}
.ws94{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.216000px;}
.wsc5{word-spacing:-0.180000px;}
.ws1c1{word-spacing:-0.162000px;}
.wsc2{word-spacing:-0.120000px;}
.ws98{word-spacing:-0.060000px;}
.ws1ef{word-spacing:-0.054000px;}
.ws141{word-spacing:-0.046303px;}
.ws12a{word-spacing:-0.042520px;}
.ws13f{word-spacing:-0.042445px;}
.ws139{word-spacing:-0.038139px;}
.ws121{word-spacing:-0.036959px;}
.ws137{word-spacing:-0.034961px;}
.ws129{word-spacing:-0.033416px;}
.ws12b{word-spacing:-0.033408px;}
.ws111{word-spacing:-0.027364px;}
.wsa{word-spacing:0.000000px;}
.ws7b{word-spacing:0.060000px;}
.ws1ea{word-spacing:0.108000px;}
.ws37{word-spacing:0.120000px;}
.ws1d9{word-spacing:0.162000px;}
.ws35{word-spacing:0.180000px;}
.ws51{word-spacing:0.240000px;}
.ws22{word-spacing:0.270000px;}
.ws3e{word-spacing:0.300000px;}
.ws79{word-spacing:0.324000px;}
.ws73{word-spacing:0.360000px;}
.ws1cb{word-spacing:0.378000px;}
.wsf7{word-spacing:0.420000px;}
.ws1de{word-spacing:0.432000px;}
.ws5f{word-spacing:0.480000px;}
.ws1ab{word-spacing:0.486000px;}
.ws10c{word-spacing:0.540000px;}
.ws1b1{word-spacing:0.594000px;}
.ws6d{word-spacing:0.600000px;}
.ws152{word-spacing:0.648000px;}
.ws65{word-spacing:0.660000px;}
.ws153{word-spacing:0.676140px;}
.wsc{word-spacing:0.691200px;}
.ws1c9{word-spacing:0.702000px;}
.wsa7{word-spacing:0.720000px;}
.ws1a5{word-spacing:0.756000px;}
.ws13c{word-spacing:0.762780px;}
.ws9d{word-spacing:0.780000px;}
.ws1f2{word-spacing:0.810000px;}
.ws10b{word-spacing:0.840000px;}
.ws72{word-spacing:0.900000px;}
.ws1a1{word-spacing:0.918000px;}
.ws142{word-spacing:0.926064px;}
.wsc9{word-spacing:0.960000px;}
.ws8c{word-spacing:1.020000px;}
.ws1b8{word-spacing:1.026000px;}
.ws40{word-spacing:1.080000px;}
.ws78{word-spacing:1.134000px;}
.ws156{word-spacing:1.140000px;}
.ws1c6{word-spacing:1.188000px;}
.ws8e{word-spacing:1.200000px;}
.ws154{word-spacing:1.242000px;}
.ws52{word-spacing:1.260000px;}
.ws120{word-spacing:1.317086px;}
.ws66{word-spacing:1.320000px;}
.ws17f{word-spacing:1.380000px;}
.ws2c{word-spacing:1.440000px;}
.ws13{word-spacing:1.458000px;}
.wsad{word-spacing:1.500000px;}
.ws1b5{word-spacing:1.512000px;}
.ws9a{word-spacing:1.560000px;}
.ws1a9{word-spacing:1.566000px;}
.ws6c{word-spacing:1.620000px;}
.ws24{word-spacing:1.674000px;}
.ws42{word-spacing:1.680000px;}
.ws168{word-spacing:1.728000px;}
.wsfa{word-spacing:1.740000px;}
.ws17c{word-spacing:1.782000px;}
.ws91{word-spacing:1.800000px;}
.ws1e5{word-spacing:1.836000px;}
.ws3c{word-spacing:1.860000px;}
.wsa9{word-spacing:1.920000px;}
.ws64{word-spacing:1.980000px;}
.ws50{word-spacing:2.040000px;}
.ws1ee{word-spacing:2.052000px;}
.wsb2{word-spacing:2.160000px;}
.ws169{word-spacing:2.214000px;}
.wsbe{word-spacing:2.220000px;}
.ws1b7{word-spacing:2.268000px;}
.ws6f{word-spacing:2.280000px;}
.ws1ae{word-spacing:2.322000px;}
.ws5d{word-spacing:2.340000px;}
.ws1ac{word-spacing:2.376000px;}
.ws5c{word-spacing:2.400000px;}
.wscd{word-spacing:2.460000px;}
.ws1dc{word-spacing:2.484000px;}
.wscc{word-spacing:2.520000px;}
.ws1db{word-spacing:2.538000px;}
.wsc6{word-spacing:2.580000px;}
.ws1b9{word-spacing:2.592000px;}
.ws36{word-spacing:2.640000px;}
.ws16{word-spacing:2.646000px;}
.ws15{word-spacing:2.700000px;}
.ws109{word-spacing:2.760000px;}
.ws1a0{word-spacing:2.808000px;}
.ws11c{word-spacing:2.820000px;}
.ws1e7{word-spacing:2.862000px;}
.ws103{word-spacing:2.880000px;}
.ws48{word-spacing:2.940000px;}
.ws135{word-spacing:2.970000px;}
.wsc1{word-spacing:3.000000px;}
.ws134{word-spacing:3.024000px;}
.wsc0{word-spacing:3.060000px;}
.ws1eb{word-spacing:3.078000px;}
.ws2f{word-spacing:3.120000px;}
.ws88{word-spacing:3.180000px;}
.ws77{word-spacing:3.186000px;}
.ws76{word-spacing:3.240000px;}
.ws127{word-spacing:3.294000px;}
.wsc4{word-spacing:3.300000px;}
.ws1e3{word-spacing:3.348000px;}
.ws47{word-spacing:3.360000px;}
.ws19b{word-spacing:3.402000px;}
.ws59{word-spacing:3.420000px;}
.ws1b{word-spacing:3.456000px;}
.wsb1{word-spacing:3.480000px;}
.ws1a{word-spacing:3.510000px;}
.ws90{word-spacing:3.540000px;}
.ws1e4{word-spacing:3.564000px;}
.ws43{word-spacing:3.600000px;}
.ws12{word-spacing:3.618000px;}
.wsda{word-spacing:3.660000px;}
.wsdb{word-spacing:3.720000px;}
.ws133{word-spacing:3.726000px;}
.ws4b{word-spacing:3.780000px;}
.ws4a{word-spacing:3.840000px;}
.ws95{word-spacing:3.900000px;}
.ws1aa{word-spacing:3.942000px;}
.ws5e{word-spacing:3.960000px;}
.wsa3{word-spacing:4.020000px;}
.ws54{word-spacing:4.080000px;}
.ws17{word-spacing:4.104000px;}
.wsc3{word-spacing:4.140000px;}
.ws131{word-spacing:4.158000px;}
.wsf0{word-spacing:4.200000px;}
.ws130{word-spacing:4.212000px;}
.ws9b{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.ws1a6{word-spacing:4.374000px;}
.wseb{word-spacing:4.380000px;}
.ws7c{word-spacing:4.440000px;}
.ws2e{word-spacing:4.500000px;}
.ws126{word-spacing:4.536000px;}
.ws32{word-spacing:4.560000px;}
.ws125{word-spacing:4.590000px;}
.wsbd{word-spacing:4.620000px;}
.ws1a2{word-spacing:4.644000px;}
.wsbc{word-spacing:4.680000px;}
.ws80{word-spacing:4.740000px;}
.ws3b{word-spacing:4.800000px;}
.ws1dd{word-spacing:4.806000px;}
.wsb9{word-spacing:4.860000px;}
.ws63{word-spacing:4.920000px;}
.ws71{word-spacing:4.980000px;}
.ws1ca{word-spacing:5.022000px;}
.wsec{word-spacing:5.040000px;}
.wsf4{word-spacing:5.100000px;}
.ws4c{word-spacing:5.160000px;}
.ws1d6{word-spacing:5.184000px;}
.wsd7{word-spacing:5.220000px;}
.ws1bd{word-spacing:5.238000px;}
.ws105{word-spacing:5.280000px;}
.ws16a{word-spacing:5.292000px;}
.ws7f{word-spacing:5.340000px;}
.wse5{word-spacing:5.400000px;}
.ws5b{word-spacing:5.460000px;}
.ws1d{word-spacing:5.508000px;}
.ws4e{word-spacing:5.520000px;}
.ws19{word-spacing:5.562000px;}
.ws6e{word-spacing:5.580000px;}
.ws1f1{word-spacing:5.616000px;}
.ws53{word-spacing:5.640000px;}
.ws1f0{word-spacing:5.670000px;}
.ws57{word-spacing:5.700000px;}
.ws1c{word-spacing:5.724000px;}
.ws92{word-spacing:5.760000px;}
.ws1be{word-spacing:5.778000px;}
.ws82{word-spacing:5.820000px;}
.ws11{word-spacing:5.832000px;}
.wsfb{word-spacing:5.880000px;}
.wsfd{word-spacing:5.940000px;}
.ws14{word-spacing:5.994000px;}
.ws3f{word-spacing:6.000000px;}
.ws150{word-spacing:6.048000px;}
.wsa1{word-spacing:6.060000px;}
.ws151{word-spacing:6.102000px;}
.wsa2{word-spacing:6.120000px;}
.ws14f{word-spacing:6.156000px;}
.ws55{word-spacing:6.180000px;}
.wsf{word-spacing:6.210000px;}
.wsaf{word-spacing:6.240000px;}
.ws69{word-spacing:6.300000px;}
.ws10{word-spacing:6.318000px;}
.ws56{word-spacing:6.360000px;}
.ws49{word-spacing:6.420000px;}
.ws13b{word-spacing:6.426000px;}
.wsa6{word-spacing:6.480000px;}
.ws13a{word-spacing:6.534000px;}
.wsa5{word-spacing:6.540000px;}
.ws1b0{word-spacing:6.588000px;}
.wsc7{word-spacing:6.600000px;}
.ws38{word-spacing:6.660000px;}
.ws1da{word-spacing:6.696000px;}
.ws39{word-spacing:6.720000px;}
.ws18{word-spacing:6.750000px;}
.ws177{word-spacing:6.780000px;}
.ws1b3{word-spacing:6.804000px;}
.ws10a{word-spacing:6.840000px;}
.ws19a{word-spacing:6.858000px;}
.ws7d{word-spacing:6.960000px;}
.wsb4{word-spacing:7.020000px;}
.ws1ad{word-spacing:7.074000px;}
.wsb3{word-spacing:7.080000px;}
.ws84{word-spacing:7.140000px;}
.ws1bf{word-spacing:7.182000px;}
.ws83{word-spacing:7.200000px;}
.ws44{word-spacing:7.260000px;}
.ws45{word-spacing:7.320000px;}
.ws8a{word-spacing:7.380000px;}
.ws1cc{word-spacing:7.398000px;}
.wse6{word-spacing:7.440000px;}
.ws182{word-spacing:7.500000px;}
.ws93{word-spacing:7.560000px;}
.ws3d{word-spacing:7.620000px;}
.ws97{word-spacing:7.680000px;}
.wsbb{word-spacing:7.740000px;}
.wsba{word-spacing:7.800000px;}
.wse{word-spacing:7.830000px;}
.ws1a8{word-spacing:7.884000px;}
.wsbf{word-spacing:7.920000px;}
.ws9f{word-spacing:7.980000px;}
.ws1a7{word-spacing:7.992000px;}
.ws9e{word-spacing:8.040000px;}
.ws189{word-spacing:8.100000px;}
.ws60{word-spacing:8.160000px;}
.wsfc{word-spacing:8.220000px;}
.wsf2{word-spacing:8.280000px;}
.ws165{word-spacing:8.340000px;}
.wsf1{word-spacing:8.400000px;}
.ws19d{word-spacing:8.424000px;}
.wsed{word-spacing:8.460000px;}
.ws136{word-spacing:8.520000px;}
.ws18a{word-spacing:8.580000px;}
.ws179{word-spacing:8.586000px;}
.ws17a{word-spacing:8.694000px;}
.ws193{word-spacing:8.700000px;}
.ws178{word-spacing:8.748000px;}
.wsa0{word-spacing:8.760000px;}
.wsd4{word-spacing:8.820000px;}
.ws18c{word-spacing:8.880000px;}
.ws7a{word-spacing:8.940000px;}
.ws132{word-spacing:8.964000px;}
.ws145{word-spacing:9.300000px;}
.ws1d3{word-spacing:9.396000px;}
.ws1ec{word-spacing:9.450000px;}
.wsee{word-spacing:9.480000px;}
.ws1c5{word-spacing:9.504000px;}
.ws30{word-spacing:9.540000px;}
.ws1ed{word-spacing:9.558000px;}
.ws18d{word-spacing:9.600000px;}
.ws1f3{word-spacing:9.828000px;}
.ws18f{word-spacing:9.840000px;}
.ws1d2{word-spacing:9.882000px;}
.ws157{word-spacing:10.020000px;}
.wsea{word-spacing:10.080000px;}
.wsd8{word-spacing:10.200000px;}
.ws1f4{word-spacing:10.260000px;}
.wsd9{word-spacing:10.320000px;}
.ws128{word-spacing:10.380000px;}
.wse7{word-spacing:10.440000px;}
.ws13d{word-spacing:10.500000px;}
.ws13e{word-spacing:10.620000px;}
.ws11d{word-spacing:10.680000px;}
.wscb{word-spacing:10.740000px;}
.wsca{word-spacing:10.860000px;}
.ws5a{word-spacing:11.040000px;}
.wsdf{word-spacing:11.160000px;}
.wsff{word-spacing:11.220000px;}
.ws19c{word-spacing:11.232000px;}
.wse0{word-spacing:11.280000px;}
.ws18e{word-spacing:11.460000px;}
.wsdd{word-spacing:12.120000px;}
.wsde{word-spacing:12.240000px;}
.ws31{word-spacing:12.420000px;}
.ws1d7{word-spacing:12.528000px;}
.ws96{word-spacing:12.540000px;}
.ws1cd{word-spacing:12.690000px;}
.ws11e{word-spacing:12.720000px;}
.ws1ce{word-spacing:12.798000px;}
.wsf5{word-spacing:13.500000px;}
.ws16d{word-spacing:13.620000px;}
.wse8{word-spacing:13.800000px;}
.ws192{word-spacing:13.860000px;}
.wse9{word-spacing:13.920000px;}
.ws181{word-spacing:14.100000px;}
.ws180{word-spacing:14.160000px;}
.ws2b{word-spacing:14.880000px;}
.ws102{word-spacing:15.840000px;}
.ws1cf{word-spacing:15.876000px;}
.wsb5{word-spacing:16.140000px;}
.wsb6{word-spacing:16.260000px;}
.ws19f{word-spacing:18.360000px;}
.ws1d8{word-spacing:19.764000px;}
.ws99{word-spacing:19.920000px;}
.ws1f5{word-spacing:24.786000px;}
.ws19e{word-spacing:25.002000px;}
.wse4{word-spacing:28.740000px;}
.ws114{word-spacing:34.512962px;}
.ws16c{word-spacing:35.040000px;}
.ws1d0{word-spacing:51.138000px;}
.ws1d1{word-spacing:52.704000px;}
.ws115{word-spacing:61.433770px;}
.ws159{word-spacing:104.275800px;}
.ws113{word-spacing:129.554208px;}
.ws14d{word-spacing:162.274800px;}
.ws14e{word-spacing:186.570000px;}
.ws112{word-spacing:234.694852px;}
.ws122{word-spacing:236.876475px;}
.ws140{word-spacing:241.610098px;}
.ws15a{word-spacing:267.572400px;}
.ws138{word-spacing:271.816653px;}
.ws123{word-spacing:277.760347px;}
.ws147{word-spacing:278.919600px;}
.ws116{word-spacing:279.382996px;}
.ws15e{word-spacing:283.947000px;}
.ws15c{word-spacing:293.353800px;}
.ws160{word-spacing:333.728400px;}
.ws149{word-spacing:345.774000px;}
.ws15b{word-spacing:361.891200px;}
.ws15f{word-spacing:364.674600px;}
.ws164{word-spacing:369.900000px;}
.ws15d{word-spacing:394.330800px;}
.ws161{word-spacing:414.459600px;}
.ws148{word-spacing:519.676800px;}
.ws14a{word-spacing:519.700200px;}
.ws12c{word-spacing:531.995400px;}
.ws12d{word-spacing:590.525400px;}
.ws12e{word-spacing:772.776000px;}
.ws12f{word-spacing:833.121600px;}
.ws117{word-spacing:1339.355226px;}
._9{margin-left:-10.249800px;}
._0{margin-left:-9.067800px;}
._6{margin-left:-6.947436px;}
._8{margin-left:-5.743800px;}
._2{margin-left:-4.641000px;}
._c{margin-left:-3.541764px;}
._5{margin-left:-2.509200px;}
._1{margin-left:-1.499400px;}
._4{width:1.386600px;}
._3{width:2.550000px;}
._a{width:4.050000px;}
._10{width:5.352000px;}
._b{width:6.570000px;}
._d{width:7.779000px;}
._11{width:9.312000px;}
._12{width:10.644000px;}
._f{width:11.921400px;}
._e{width:13.062000px;}
._14{width:16.955400px;}
._13{width:22.653000px;}
._68{width:34.981800px;}
._7{width:36.624000px;}
._6f{width:43.040400px;}
._6e{width:44.079000px;}
._15{width:48.438000px;}
._2a{width:71.207400px;}
._31{width:72.775200px;}
._6c{width:76.440000px;}
._6d{width:79.200000px;}
._6a{width:81.840000px;}
._6b{width:85.020000px;}
._69{width:87.480000px;}
._29{width:98.372400px;}
._2b{width:102.709800px;}
._2e{width:105.357600px;}
._32{width:117.800400px;}
._2d{width:134.199600px;}
._34{width:140.806200px;}
._2f{width:151.483800px;}
._38{width:156.266400px;}
._33{width:164.293200px;}
._3b{width:193.422600px;}
._3c{width:200.899800px;}
._3a{width:203.090400px;}
._30{width:214.783800px;}
._2c{width:221.040000px;}
._37{width:237.894600px;}
._36{width:242.723400px;}
._28{width:246.144000px;}
._16{width:251.710378px;}
._5b{width:253.000200px;}
._45{width:255.929400px;}
._57{width:259.461989px;}
._58{width:261.383789px;}
._5c{width:264.497400px;}
._35{width:268.183200px;}
._3e{width:269.428800px;}
._4b{width:277.902000px;}
._17{width:278.965071px;}
._21{width:280.875211px;}
._22{width:282.317015px;}
._42{width:284.196600px;}
._3f{width:286.023000px;}
._4d{width:287.112600px;}
._4e{width:292.084200px;}
._20{width:293.555883px;}
._59{width:296.400000px;}
._40{width:298.420200px;}
._55{width:300.653189px;}
._63{width:303.874800px;}
._67{width:307.367789px;}
._27{width:310.350000px;}
._53{width:313.297589px;}
._23{width:316.203600px;}
._43{width:321.406200px;}
._5f{width:324.195989px;}
._47{width:331.144585px;}
._5a{width:335.635796px;}
._3d{width:340.819200px;}
._24{width:344.357400px;}
._61{width:345.491185px;}
._49{width:346.984800px;}
._4c{width:348.365400px;}
._52{width:349.626985px;}
._50{width:351.032189px;}
._46{width:362.740800px;}
._39{width:377.822400px;}
._41{width:380.649600px;}
._56{width:386.636400px;}
._64{width:396.312600px;}
._54{width:399.336000px;}
._44{width:406.038600px;}
._60{width:410.229600px;}
._66{width:416.563200px;}
._48{width:417.594600px;}
._4a{width:429.972600px;}
._51{width:436.721400px;}
._4f{width:438.322329px;}
._5d{width:512.803200px;}
._26{width:531.604200px;}
._25{width:545.080800px;}
._65{width:550.051200px;}
._5e{width:554.958600px;}
._19{width:568.577400px;}
._62{width:600.487800px;}
._18{width:784.656600px;}
._1a{width:1087.322400px;}
._1b{width:1175.213400px;}
._1f{width:1229.261400px;}
._1e{width:1233.725400px;}
._1c{width:1236.890400px;}
._1d{width:1246.013400px;}
.fc6{color:transparent;}
.fc5{color:rgb(70,70,72);}
.fc4{color:rgb(177,33,35);}
.fc3{color:rgb(17,15,13);}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.363600px;}
.fsc{font-size:29.851800px;}
.fs20{font-size:31.482000px;}
.fs14{font-size:33.408000px;}
.fs15{font-size:33.415887px;}
.fs1d{font-size:33.807000px;}
.fs1e{font-size:33.815543px;}
.fsa{font-size:34.826400px;}
.fs17{font-size:34.960800px;}
.fs9{font-size:34.980000px;}
.fs11{font-size:36.959400px;}
.fsd{font-size:37.314600px;}
.fse{font-size:37.459200px;}
.fs18{font-size:38.139000px;}
.fs3{font-size:38.478000px;}
.fs12{font-size:40.319400px;}
.fs4{font-size:42.000000px;}
.fs1a{font-size:42.444600px;}
.fs16{font-size:42.519600px;}
.fs1f{font-size:43.027200px;}
.fs5{font-size:43.200000px;}
.fs1b{font-size:46.303200px;}
.fs10{font-size:47.038800px;}
.fs19{font-size:47.673600px;}
.fs0{font-size:48.000000px;}
.fs13{font-size:50.398800px;}
.fs6{font-size:54.000000px;}
.fs1c{font-size:57.879000px;}
.fs7{font-size:60.000000px;}
.fsf{font-size:60.020400px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.056650px;}
.yfa{bottom:2.057250px;}
.yc8{bottom:2.057400px;}
.yf7{bottom:2.057700px;}
.ycf{bottom:2.057850px;}
.yc4{bottom:2.058000px;}
.yca{bottom:2.058150px;}
.yc6{bottom:2.058300px;}
.yd4{bottom:2.058450px;}
.yd1{bottom:2.058600px;}
.yf3{bottom:2.058900px;}
.y162{bottom:2.628300px;}
.y160{bottom:2.628600px;}
.y164{bottom:2.629050px;}
.y12c{bottom:2.778450px;}
.y135{bottom:2.778750px;}
.y132{bottom:2.778900px;}
.y130{bottom:2.779200px;}
.y12e{bottom:2.779650px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.036150px;}
.y173{bottom:87.657000px;}
.y6d{bottom:113.078700px;}
.y9e{bottom:113.078850px;}
.yd{bottom:117.875550px;}
.y1a2{bottom:118.379550px;}
.y1cc{bottom:120.500700px;}
.yc{bottom:132.275550px;}
.y6c{bottom:134.078700px;}
.y9d{bottom:134.078850px;}
.y1cb{bottom:140.300700px;}
.y1a1{bottom:140.985900px;}
.yb{bottom:146.675550px;}
.y6b{bottom:155.078700px;}
.y9c{bottom:155.078850px;}
.y1ca{bottom:160.100700px;}
.y1d7{bottom:160.937100px;}
.ya{bottom:161.075550px;}
.y1a0{bottom:163.592100px;}
.y6a{bottom:176.078700px;}
.y9b{bottom:176.078850px;}
.y1c9{bottom:179.900700px;}
.y19f{bottom:186.498450px;}
.y1d6{bottom:190.441050px;}
.y19e{bottom:193.998450px;}
.y69{bottom:197.078700px;}
.y9a{bottom:197.078850px;}
.y38{bottom:199.392600px;}
.y1c8{bottom:199.700700px;}
.yaa{bottom:210.513600px;}
.y1d3{bottom:214.166250px;}
.y29{bottom:215.827950px;}
.y37{bottom:217.392600px;}
.y68{bottom:218.078700px;}
.y99{bottom:218.078850px;}
.y15b{bottom:226.811250px;}
.y19d{bottom:234.106350px;}
.y36{bottom:235.392600px;}
.y28{bottom:235.627950px;}
.y67{bottom:239.078700px;}
.y98{bottom:239.078850px;}
.ya9{bottom:242.811000px;}
.y15a{bottom:249.417600px;}
.y35{bottom:253.392600px;}
.y19c{bottom:253.906350px;}
.y66{bottom:260.078700px;}
.y97{bottom:260.078850px;}
.y34{bottom:271.392600px;}
.y159{bottom:272.023800px;}
.y27{bottom:276.687750px;}
.y65{bottom:281.078700px;}
.y96{bottom:281.078850px;}
.y33{bottom:289.392600px;}
.y158{bottom:294.630150px;}
.y26{bottom:296.487750px;}
.y64{bottom:302.078700px;}
.y95{bottom:302.078850px;}
.y32{bottom:307.392600px;}
.y18d{bottom:311.045400px;}
.y25{bottom:316.287750px;}
.y157{bottom:317.236500px;}
.y1c7{bottom:318.273450px;}
.y63{bottom:323.078700px;}
.y94{bottom:323.078850px;}
.y31{bottom:325.392600px;}
.y18c{bottom:333.651750px;}
.y24{bottom:336.087750px;}
.y156{bottom:339.842700px;}
.y1c6{bottom:340.879650px;}
.y30{bottom:343.392600px;}
.y62{bottom:344.078700px;}
.y93{bottom:344.078850px;}
.y23{bottom:355.887750px;}
.y18b{bottom:356.258100px;}
.y187{bottom:358.440900px;}
.y2f{bottom:361.392600px;}
.y155{bottom:362.749050px;}
.y1c5{bottom:363.486000px;}
.y61{bottom:365.078700px;}
.y92{bottom:365.078850px;}
.y22{bottom:375.687750px;}
.y18a{bottom:378.864300px;}
.y2e{bottom:379.392600px;}
.y60{bottom:386.078700px;}
.y91{bottom:386.078850px;}
.y1c4{bottom:386.092200px;}
.y154{bottom:395.356950px;}
.y21{bottom:395.487750px;}
.y5f{bottom:407.078700px;}
.y90{bottom:407.078850px;}
.y1c3{bottom:408.698550px;}
.y189{bottom:411.472200px;}
.y2d{bottom:414.400500px;}
.y153{bottom:415.156950px;}
.y20{bottom:415.287750px;}
.ya6{bottom:420.513600px;}
.y5e{bottom:428.078700px;}
.y8f{bottom:428.078850px;}
.y188{bottom:431.272200px;}
.y1c2{bottom:431.304900px;}
.y2c{bottom:432.400500px;}
.y1f{bottom:435.087750px;}
.ya4{bottom:442.441050px;}
.y5d{bottom:449.078700px;}
.y8e{bottom:449.078850px;}
.y2b{bottom:450.400500px;}
.ya5{bottom:452.811150px;}
.y1c1{bottom:453.911250px;}
.y1e{bottom:454.887750px;}
.y2a{bottom:468.400500px;}
.y5c{bottom:470.078700px;}
.y8d{bottom:470.078850px;}
.y152{bottom:474.408300px;}
.y1d{bottom:474.687750px;}
.y1c0{bottom:476.517450px;}
.y190{bottom:490.532700px;}
.y5b{bottom:491.078700px;}
.y8c{bottom:491.078850px;}
.y1c{bottom:494.487750px;}
.y151{bottom:497.014650px;}
.y1bf{bottom:499.123800px;}
.y18f{bottom:510.332700px;}
.y5a{bottom:512.078700px;}
.y8b{bottom:512.078850px;}
.y1be{bottom:514.123800px;}
.y1b{bottom:514.287750px;}
.y150{bottom:519.620850px;}
.y18e{bottom:530.132700px;}
.y59{bottom:533.078700px;}
.y8a{bottom:533.078850px;}
.y1a{bottom:534.087750px;}
.y1bd{bottom:536.730000px;}
.y1df{bottom:547.440900px;}
.y1bc{bottom:551.730000px;}
.y14f{bottom:552.228900px;}
.y19{bottom:553.887750px;}
.y58{bottom:554.078700px;}
.y89{bottom:554.078850px;}
.y197{bottom:558.069300px;}
.y1d5{bottom:568.441050px;}
.y195{bottom:570.026068px;}
.y196{bottom:571.873208px;}
.y14e{bottom:572.028900px;}
.y18{bottom:573.687750px;}
.y1bb{bottom:574.336350px;}
.y57{bottom:575.078700px;}
.y88{bottom:575.078850px;}
.y194{bottom:577.085850px;}
.y104{bottom:590.881500px;}
.y17{bottom:593.487750px;}
.y56{bottom:596.078700px;}
.y87{bottom:596.078850px;}
.y1ba{bottom:596.942700px;}
.y103{bottom:610.681500px;}
.y16{bottom:613.287750px;}
.y55{bottom:617.078700px;}
.y86{bottom:617.078850px;}
.y15e{bottom:617.348100px;}
.y1b9{bottom:619.548900px;}
.y1d2{bottom:623.489250px;}
.y102{bottom:630.481500px;}
.y15{bottom:633.087750px;}
.y14d{bottom:635.696400px;}
.y15d{bottom:637.148100px;}
.y54{bottom:638.078700px;}
.y85{bottom:638.078850px;}
.y1b8{bottom:642.155250px;}
.y1d1{bottom:643.289250px;}
.y1de{bottom:643.529250px;}
.ya3{bottom:649.512300px;}
.ya7{bottom:652.441050px;}
.y14{bottom:652.887750px;}
.y14c{bottom:655.496400px;}
.y13e{bottom:656.905350px;}
.y15c{bottom:656.948100px;}
.y53{bottom:659.078700px;}
.y84{bottom:659.078850px;}
.y1d0{bottom:663.089100px;}
.y1b7{bottom:664.761600px;}
.ya2{bottom:669.312300px;}
.y13d{bottom:670.999650px;}
.y13{bottom:672.687750px;}
.y14b{bottom:675.296400px;}
.y191{bottom:679.790700px;}
.y52{bottom:680.078700px;}
.y83{bottom:680.078850px;}
.y136{bottom:680.609400px;}
.y1cf{bottom:682.889250px;}
.y16c{bottom:683.140350px;}
.y1b6{bottom:687.367800px;}
.ya1{bottom:689.112300px;}
.y12{bottom:692.487750px;}
.y186{bottom:695.763000px;}
.y16b{bottom:696.472500px;}
.y11d{bottom:700.206795px;}
.y51{bottom:701.078700px;}
.y82{bottom:701.078850px;}
.y12d{bottom:702.441000px;}
.y1ce{bottom:702.689100px;}
.y147{bottom:703.143150px;}
.ya0{bottom:708.912300px;}
.y1b5{bottom:709.974150px;}
.y11{bottom:712.287750px;}
.y145{bottom:714.957150px;}
.y185{bottom:715.563000px;}
.y146{bottom:716.782459px;}
.y50{bottom:722.078700px;}
.y81{bottom:722.078850px;}
.y1cd{bottom:722.489250px;}
.y133{bottom:726.876000px;}
.y1dd{bottom:727.529250px;}
.y9f{bottom:728.712300px;}
.y161{bottom:731.458500px;}
.y10{bottom:732.087750px;}
.y1b4{bottom:732.580500px;}
.y184{bottom:735.363000px;}
.y101{bottom:742.232550px;}
.y4f{bottom:743.078700px;}
.y80{bottom:743.078850px;}
.y123{bottom:744.211592px;}
.y137{bottom:754.424142px;}
.y183{bottom:755.163000px;}
.y1b3{bottom:755.186700px;}
.y121{bottom:760.416459px;}
.y100{bottom:762.032550px;}
.y198{bottom:762.978900px;}
.yf{bottom:763.185300px;}
.y4e{bottom:764.078700px;}
.y7f{bottom:764.078850px;}
.y1b2{bottom:777.793050px;}
.y19b{bottom:780.027452px;}
.y11e{bottom:784.382728px;}
.y4d{bottom:785.078700px;}
.y7e{bottom:785.078850px;}
.y17e{bottom:785.524500px;}
.ydc{bottom:788.524050px;}
.y19a{bottom:793.305151px;}
.y126{bottom:794.578387px;}
.y192{bottom:798.884309px;}
.ydb{bottom:798.958950px;}
.y1b1{bottom:800.399250px;}
.y122{bottom:801.669487px;}
.y17d{bottom:801.711600px;}
.y4c{bottom:806.078700px;}
.y7d{bottom:806.078850px;}
.y199{bottom:806.582850px;}
.y11f{bottom:808.231399px;}
.y129{bottom:810.806773px;}
.y124{bottom:812.100340px;}
.y120{bottom:812.582488px;}
.yf8{bottom:813.873000px;}
.y172{bottom:816.510000px;}
.y1e2{bottom:819.513600px;}
.yff{bottom:819.646350px;}
.y168{bottom:819.955350px;}
.yac{bottom:820.601931px;}
.y1b0{bottom:823.005600px;}
.yd2{bottom:823.326000px;}
.yb1{bottom:823.980092px;}
.y4b{bottom:827.078700px;}
.y7c{bottom:827.078850px;}
.y138{bottom:828.238883px;}
.ycd{bottom:833.886000px;}
.yce{bottom:835.404000px;}
.y179{bottom:839.535450px;}
.y134{bottom:840.484500px;}
.y9{bottom:842.466750px;}
.y1af{bottom:845.611950px;}
.y4a{bottom:848.078700px;}
.y7b{bottom:848.078850px;}
.y142{bottom:848.354100px;}
.yd5{bottom:850.509750px;}
.y166{bottom:850.968000px;}
.yf1{bottom:851.628000px;}
.y1e1{bottom:851.811000px;}
.y11c{bottom:852.130359px;}
.y106{bottom:857.622139px;}
.yab{bottom:859.476900px;}
.y8{bottom:860.466750px;}
.yae{bottom:860.957022px;}
.y13f{bottom:864.641100px;}
.y127{bottom:866.771186px;}
.y1ae{bottom:868.218150px;}
.y125{bottom:868.382265px;}
.y49{bottom:869.078700px;}
.y7a{bottom:869.078850px;}
.y1dc{bottom:874.529250px;}
.y105{bottom:878.366250px;}
.yfb{bottom:878.419800px;}
.y7{bottom:878.466750px;}
.y16d{bottom:879.642900px;}
.ye1{bottom:882.421109px;}
.y1d4{bottom:883.441050px;}
.yb9{bottom:889.575616px;}
.y116{bottom:889.679081px;}
.y48{bottom:890.078700px;}
.y79{bottom:890.078850px;}
.y110{bottom:890.102431px;}
.y1ad{bottom:890.824650px;}
.y12a{bottom:893.971372px;}
.y141{bottom:894.633144px;}
.ybb{bottom:895.722476px;}
.y128{bottom:898.334221px;}
.ye7{bottom:900.704969px;}
.y139{bottom:902.043545px;}
.y171{bottom:904.167000px;}
.yd6{bottom:904.328700px;}
.yb8{bottom:905.134310px;}
.y170{bottom:905.545620px;}
.yb6{bottom:907.189068px;}
.y174{bottom:909.115500px;}
.y47{bottom:911.078700px;}
.y78{bottom:911.078850px;}
.y177{bottom:911.396897px;}
.y11a{bottom:912.598737px;}
.yec{bottom:913.381778px;}
.y1ac{bottom:913.430850px;}
.y6{bottom:913.474800px;}
.y17a{bottom:915.738941px;}
.ye8{bottom:916.141771px;}
.yb2{bottom:917.819827px;}
.y193{bottom:917.986370px;}
.y140{bottom:918.441750px;}
.y16f{bottom:919.275660px;}
.yd0{bottom:920.946000px;}
.yd3{bottom:921.220500px;}
.y107{bottom:921.724264px;}
.y14a{bottom:929.041308px;}
.yb4{bottom:929.251592px;}
.y17f{bottom:931.051950px;}
.y119{bottom:931.720009px;}
.y165{bottom:931.728000px;}
.y46{bottom:932.078700px;}
.y77{bottom:932.078850px;}
.y148{bottom:932.952000px;}
.y16e{bottom:933.005700px;}
.ybc{bottom:935.607410px;}
.y1ab{bottom:936.037200px;}
.y169{bottom:936.660690px;}
.yc2{bottom:938.254217px;}
.y10b{bottom:940.092915px;}
.ye9{bottom:940.154573px;}
.y10e{bottom:940.633861px;}
.y149{bottom:942.162300px;}
.ydd{bottom:943.626900px;}
.yfe{bottom:943.627650px;}
.y10a{bottom:946.419634px;}
.ye2{bottom:948.835054px;}
.yee{bottom:949.305210px;}
.yba{bottom:950.269325px;}
.y5{bottom:950.282550px;}
.y10d{bottom:950.453211px;}
.y45{bottom:953.078700px;}
.y76{bottom:953.078850px;}
.y111{bottom:953.734167px;}
.yf2{bottom:953.944500px;}
.y108{bottom:954.157516px;}
.y182{bottom:954.859596px;}
.yde{bottom:954.964500px;}
.yf0{bottom:957.506827px;}
.yd7{bottom:958.151495px;}
.y1aa{bottom:958.643400px;}
.ye6{bottom:961.903660px;}
.y167{bottom:965.719500px;}
.yb0{bottom:969.502204px;}
.y113{bottom:970.303585px;}
.y112{bottom:970.327104px;}
.y117{bottom:970.468220px;}
.ycc{bottom:971.439000px;}
.y11b{bottom:971.479555px;}
.y181{bottom:971.528748px;}
.y44{bottom:974.078700px;}
.y75{bottom:974.078850px;}
.yfc{bottom:974.766485px;}
.ye0{bottom:975.285704px;}
.yaf{bottom:975.527171px;}
.y13a{bottom:975.858286px;}
.y10f{bottom:976.547985px;}
.yad{bottom:977.477450px;}
.y143{bottom:978.461556px;}
.yb7{bottom:979.819525px;}
.y1a9{bottom:981.249750px;}
.yeb{bottom:982.721141px;}
.y4{bottom:983.282550px;}
.y163{bottom:983.461500px;}
.ycb{bottom:986.514000px;}
.y180{bottom:988.197900px;}
.y178{bottom:988.741570px;}
.y17b{bottom:991.930857px;}
.yef{bottom:992.437706px;}
.ye3{bottom:992.794677px;}
.ye5{bottom:993.700163px;}
.y43{bottom:995.078700px;}
.y74{bottom:995.078850px;}
.ybf{bottom:995.482699px;}
.y118{bottom:997.209778px;}
.y1db{bottom:1000.529250px;}
.y131{bottom:1001.316000px;}
.y10c{bottom:1003.560016px;}
.y1a8{bottom:1003.856100px;}
.yed{bottom:1007.752616px;}
.y176{bottom:1008.563198px;}
.yd8{bottom:1011.974291px;}
.y42{bottom:1016.078700px;}
.y73{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y12f{bottom:1017.813000px;}
.yc3{bottom:1022.578500px;}
.y115{bottom:1022.740087px;}
.yea{bottom:1023.537682px;}
.y1a7{bottom:1026.462300px;}
.ya8{bottom:1030.441050px;}
.y114{bottom:1032.171366px;}
.y175{bottom:1034.783349px;}
.y41{bottom:1037.078700px;}
.y72{bottom:1037.078850px;}
.ye4{bottom:1039.714544px;}
.yf4{bottom:1041.361500px;}
.yb3{bottom:1041.967236px;}
.yc9{bottom:1042.168500px;}
.yf9{bottom:1046.361000px;}
.y1a6{bottom:1049.068650px;}
.y2{bottom:1049.282550px;}
.y13b{bottom:1049.673028px;}
.yc0{bottom:1052.597995px;}
.y16a{bottom:1053.366030px;}
.ydf{bottom:1053.888889px;}
.yc5{bottom:1056.391500px;}
.ybd{bottom:1056.785869px;}
.y40{bottom:1058.078700px;}
.y71{bottom:1058.078850px;}
.y1da{bottom:1063.529250px;}
.yd9{bottom:1065.789623px;}
.y17c{bottom:1068.134348px;}
.yfd{bottom:1071.113169px;}
.y1a5{bottom:1071.675000px;}
.yc7{bottom:1073.109000px;}
.y3f{bottom:1079.078700px;}
.y70{bottom:1079.078850px;}
.y1a4{bottom:1079.175000px;}
.yb5{bottom:1082.226554px;}
.y109{bottom:1093.215969px;}
.ybe{bottom:1094.346142px;}
.y1d9{bottom:1100.078700px;}
.y6f{bottom:1100.078850px;}
.y12b{bottom:1101.106500px;}
.y144{bottom:1108.569012px;}
.ye{bottom:1109.815500px;}
.y3e{bottom:1111.570800px;}
.y15f{bottom:1119.006000px;}
.y1a3{bottom:1119.282900px;}
.yda{bottom:1119.612419px;}
.y1e0{bottom:1121.078700px;}
.y6e{bottom:1121.078850px;}
.y13c{bottom:1123.487769px;}
.yc1{bottom:1125.202332px;}
.y1d8{bottom:1125.451650px;}
.yf6{bottom:1129.236000px;}
.y3a{bottom:1155.615300px;}
.y39{bottom:1175.115300px;}
.y3d{bottom:1178.691750px;}
.h15{height:7.933500px;}
.h13{height:7.935000px;}
.h28{height:10.135500px;}
.h26{height:10.137000px;}
.h1d{height:10.716000px;}
.h14{height:20.175311px;}
.h16{height:22.009872px;}
.h21{height:24.631875px;}
.h22{height:24.637690px;}
.h2f{height:24.926060px;}
.h30{height:24.932359px;}
.h12{height:25.677668px;}
.h27{height:25.776762px;}
.h1e{height:27.250339px;}
.h17{height:27.512229px;}
.h18{height:27.618844px;}
.h29{height:28.120063px;}
.h1f{height:29.727683px;}
.h2b{height:31.294603px;}
.h23{height:31.349900px;}
.h31{height:31.724156px;}
.h2d{height:34.139566px;}
.h6{height:34.446094px;}
.h1c{height:34.681928px;}
.h2a{height:35.149969px;}
.h20{height:37.159271px;}
.h2{height:38.039062px;}
.h24{height:38.226562px;}
.hd{height:38.273438px;}
.h5{height:38.531250px;}
.h2e{height:42.674458px;}
.hc{height:42.793945px;}
.h7{height:43.004883px;}
.hb{height:43.057617px;}
.ha{height:43.875000px;}
.h1b{height:44.253322px;}
.h25{height:45.398438px;}
.h8{height:45.615234px;}
.h10{height:48.750000px;}
.h19{height:49.046182px;}
.h11{height:50.176758px;}
.h9{height:51.073242px;}
.h1a{height:52.319864px;}
.he{height:54.738281px;}
.hf{height:56.748047px;}
.h4{height:62.422852px;}
.h32{height:68.226562px;}
.h3{height:81.231445px;}
.h33{height:98.226563px;}
.h2c{height:318.363000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:34.779000px;}
.w9{width:36.922500px;}
.w6{width:37.413000px;}
.w4{width:38.229000px;}
.we{width:38.230500px;}
.w8{width:40.374000px;}
.wa{width:43.471500px;}
.w18{width:44.262000px;}
.w3{width:46.579500px;}
.w12{width:46.792500px;}
.w19{width:47.613000px;}
.wb{width:48.646500px;}
.w17{width:48.654000px;}
.wc{width:49.990500px;}
.w13{width:50.335500px;}
.w11{width:51.435000px;}
.w7{width:52.290000px;}
.w16{width:59.281500px;}
.w2{width:59.556000px;}
.wd{width:59.557500px;}
.w10{width:62.671500px;}
.w1a{width:66.550500px;}
.w14{width:70.354500px;}
.w15{width:75.798000px;}
.wf{width:80.131500px;}
.w1b{width:347.901000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x90{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x2d{left:129.340200px;}
.x2a{left:136.000650px;}
.x8d{left:153.667350px;}
.xd{left:155.780250px;}
.xf{left:169.100772px;}
.x91{left:174.019950px;}
.x29{left:194.013000px;}
.x2b{left:199.724400px;}
.x15{left:208.616573px;}
.x19{left:210.932805px;}
.xe{left:221.683620px;}
.x16{left:227.137692px;}
.x12{left:230.939809px;}
.x1e{left:233.422111px;}
.x1b{left:238.159462px;}
.x18{left:240.204739px;}
.x14{left:249.146271px;}
.x1c{left:259.713535px;}
.x28{left:262.444500px;}
.x2c{left:264.162150px;}
.x22{left:281.082000px;}
.x25{left:289.933500px;}
.x11{left:291.415329px;}
.x1a{left:292.420486px;}
.x23{left:294.060000px;}
.x27{left:295.384500px;}
.x4{left:300.189000px;}
.x24{left:303.768000px;}
.x10{left:312.226459px;}
.x21{left:314.008500px;}
.xb{left:317.196900px;}
.x86{left:321.314700px;}
.x1f{left:322.811205px;}
.x20{left:326.884278px;}
.x87{left:328.063391px;}
.x94{left:334.204800px;}
.x13{left:335.528632px;}
.x26{left:336.783000px;}
.x83{left:346.018800px;}
.x71{left:349.345200px;}
.x82{left:350.650500px;}
.x6d{left:352.419300px;}
.x6e{left:358.295853px;}
.x80{left:360.712200px;}
.x7d{left:363.620100px;}
.x8c{left:366.343200px;}
.x76{left:368.624700px;}
.x73{left:371.532450px;}
.x8e{left:373.083900px;}
.x74{left:376.410018px;}
.x1d{left:378.217234px;}
.x4a{left:380.007814px;}
.x7b{left:384.541500px;}
.x7e{left:387.131400px;}
.x7a{left:393.145500px;}
.x3{left:396.050700px;}
.x49{left:403.691850px;}
.x5b{left:410.500716px;}
.x63{left:418.944181px;}
.x8a{left:422.001600px;}
.x78{left:423.165000px;}
.x6f{left:425.355150px;}
.x5c{left:427.105413px;}
.x89{left:428.704800px;}
.x17{left:430.319355px;}
.x7c{left:431.634000px;}
.x52{left:433.102860px;}
.x53{left:438.288887px;}
.x51{left:446.744112px;}
.x5a{left:452.906194px;}
.x57{left:457.257283px;}
.x79{left:458.395500px;}
.x4f{left:466.030020px;}
.x70{left:475.065450px;}
.x48{left:478.662750px;}
.x84{left:480.932289px;}
.x55{left:482.928709px;}
.x7f{left:484.027950px;}
.x45{left:485.323500px;}
.x64{left:488.632163px;}
.x85{left:490.132156px;}
.x4e{left:492.442306px;}
.x54{left:495.241114px;}
.x50{left:497.028589px;}
.x5e{left:500.991608px;}
.x62{left:502.508609px;}
.x61{left:503.661060px;}
.x2e{left:505.102500px;}
.x4b{left:506.165876px;}
.x58{left:507.812234px;}
.x4c{left:508.941165px;}
.x5f{left:510.411128px;}
.x8b{left:512.928150px;}
.x60{left:532.942713px;}
.x4d{left:535.906157px;}
.x6c{left:542.692500px;}
.x69{left:547.950000px;}
.x66{left:559.402038px;}
.x59{left:564.752701px;}
.x38{left:565.927639px;}
.x46{left:566.990550px;}
.x8f{left:569.754900px;}
.x75{left:570.939090px;}
.x2f{left:572.002287px;}
.x67{left:583.744617px;}
.x37{left:586.826175px;}
.x56{left:595.410239px;}
.x34{left:597.078781px;}
.x6a{left:598.962000px;}
.x36{left:602.515372px;}
.x5d{left:603.783146px;}
.x3a{left:605.120041px;}
.x6b{left:606.421500px;}
.x68{left:608.804537px;}
.x81{left:610.555500px;}
.x47{left:613.484400px;}
.x32{left:615.302724px;}
.x65{left:619.447066px;}
.x30{left:624.148110px;}
.x33{left:637.757068px;}
.x31{left:642.852780px;}
.x9{left:648.686550px;}
.x39{left:651.025148px;}
.x8{left:668.350500px;}
.x3c{left:670.464019px;}
.x44{left:678.819000px;}
.x3f{left:680.244639px;}
.x3d{left:681.957777px;}
.x41{left:696.487500px;}
.x92{left:697.752000px;}
.x40{left:705.178500px;}
.x77{left:708.983850px;}
.x43{left:710.821500px;}
.x72{left:720.524850px;}
.x93{left:728.115300px;}
.x42{left:735.550500px;}
.x88{left:744.052950px;}
.x3e{left:746.445186px;}
.x35{left:770.735035px;}
.x3b{left:779.615383px;}
.x1{left:801.339150px;}
@media print{
.v7{vertical-align:-14.673523pt;}
.v4{vertical-align:-9.472781pt;}
.v5{vertical-align:-7.863027pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:20.772013pt;}
.v6{vertical-align:23.681952pt;}
.v8{vertical-align:26.666667pt;}
.ls8{letter-spacing:-5.653333pt;}
.ls37{letter-spacing:-5.088000pt;}
.ls2b{letter-spacing:-1.578667pt;}
.ls3b{letter-spacing:-0.864000pt;}
.ls32{letter-spacing:-0.853333pt;}
.ls23{letter-spacing:-0.823168pt;}
.ls1f{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.678027pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.624000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls24{letter-spacing:-0.601013pt;}
.ls2a{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls3a{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls3c{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.001600pt;}
.ls6{letter-spacing:0.002133pt;}
.ls0{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.013867pt;}
.ls1a{letter-spacing:0.015467pt;}
.ls1b{letter-spacing:0.016533pt;}
.ls1c{letter-spacing:0.017067pt;}
.ls29{letter-spacing:0.018667pt;}
.ls2{letter-spacing:0.022933pt;}
.lsf{letter-spacing:0.083733pt;}
.lse{letter-spacing:0.106667pt;}
.ls39{letter-spacing:0.215467pt;}
.ls25{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.268267pt;}
.ls26{letter-spacing:0.268800pt;}
.ls27{letter-spacing:0.269333pt;}
.ls13{letter-spacing:0.279840pt;}
.ls9{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.548800pt;}
.ls30{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:1.529600pt;}
.ls34{letter-spacing:3.692267pt;}
.ls33{letter-spacing:4.505067pt;}
.ls2e{letter-spacing:4.700800pt;}
.ls31{letter-spacing:7.688533pt;}
.ls35{letter-spacing:12.501333pt;}
.ls2f{letter-spacing:31.123200pt;}
.ls1d{letter-spacing:131.194918pt;}
.ls1e{letter-spacing:249.759462pt;}
.ls21{letter-spacing:270.803851pt;}
.ws172{word-spacing:-53.333333pt;}
.ws173{word-spacing:-52.746667pt;}
.ws0{word-spacing:-22.032000pt;}
.ws27{word-spacing:-15.936000pt;}
.ws195{word-spacing:-14.608000pt;}
.ws16e{word-spacing:-13.973333pt;}
.ws170{word-spacing:-13.920000pt;}
.ws16f{word-spacing:-13.866667pt;}
.wsd2{word-spacing:-13.706667pt;}
.wsd1{word-spacing:-13.546667pt;}
.ws158{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.280000pt;}
.ws87{word-spacing:-13.226667pt;}
.wsb8{word-spacing:-13.173333pt;}
.ws28{word-spacing:-13.120000pt;}
.ws29{word-spacing:-13.066667pt;}
.ws9c{word-spacing:-13.013333pt;}
.ws2a{word-spacing:-12.960000pt;}
.ws86{word-spacing:-12.853333pt;}
.ws174{word-spacing:-12.800000pt;}
.wsd0{word-spacing:-12.746667pt;}
.ws101{word-spacing:-12.693333pt;}
.ws106{word-spacing:-12.640000pt;}
.wse3{word-spacing:-12.586667pt;}
.wsf3{word-spacing:-12.480000pt;}
.wse2{word-spacing:-12.426667pt;}
.ws171{word-spacing:-12.320000pt;}
.ws188{word-spacing:-12.160000pt;}
.ws75{word-spacing:-12.144000pt;}
.ws166{word-spacing:-11.952000pt;}
.ws196{word-spacing:-11.904000pt;}
.ws1e1{word-spacing:-11.808000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws197{word-spacing:-11.424000pt;}
.ws1bb{word-spacing:-11.280000pt;}
.ws118{word-spacing:-11.184000pt;}
.ws1ba{word-spacing:-11.136000pt;}
.ws1e0{word-spacing:-11.040000pt;}
.ws1a4{word-spacing:-10.992000pt;}
.ws1df{word-spacing:-10.896000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.704000pt;}
.ws163{word-spacing:-10.581333pt;}
.ws6{word-spacing:-10.464000pt;}
.ws162{word-spacing:-10.453333pt;}
.ws183{word-spacing:-10.293333pt;}
.ws124{word-spacing:-9.963372pt;}
.ws2{word-spacing:-9.685333pt;}
.ws25{word-spacing:-9.600000pt;}
.ws26{word-spacing:-9.514667pt;}
.ws9{word-spacing:-9.301333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws186{word-spacing:-8.373333pt;}
.ws3{word-spacing:-8.371200pt;}
.ws14b{word-spacing:-8.356196pt;}
.ws14c{word-spacing:-8.354085pt;}
.wsd3{word-spacing:-7.990987pt;}
.ws184{word-spacing:-7.840000pt;}
.ws10f{word-spacing:-7.711147pt;}
.ws1a3{word-spacing:-6.940032pt;}
.ws185{word-spacing:-6.720000pt;}
.ws187{word-spacing:-6.613333pt;}
.ws175{word-spacing:-4.693333pt;}
.ws3a{word-spacing:-4.480000pt;}
.ws194{word-spacing:-4.160000pt;}
.wsd5{word-spacing:-4.106667pt;}
.ws190{word-spacing:-4.000000pt;}
.ws191{word-spacing:-3.946667pt;}
.ws108{word-spacing:-3.520000pt;}
.ws1e6{word-spacing:-3.408000pt;}
.ws8b{word-spacing:-3.200000pt;}
.ws110{word-spacing:-3.146667pt;}
.ws1c4{word-spacing:-3.024000pt;}
.wsf8{word-spacing:-2.933333pt;}
.ws1d5{word-spacing:-2.928000pt;}
.wsf9{word-spacing:-2.880000pt;}
.wsf6{word-spacing:-2.826667pt;}
.ws198{word-spacing:-2.784000pt;}
.ws18b{word-spacing:-2.773333pt;}
.ws10e{word-spacing:-2.720000pt;}
.wsef{word-spacing:-2.666667pt;}
.wsce{word-spacing:-2.613333pt;}
.ws17d{word-spacing:-2.560000pt;}
.ws6a{word-spacing:-2.506667pt;}
.wsc8{word-spacing:-2.453333pt;}
.ws67{word-spacing:-2.400000pt;}
.ws1af{word-spacing:-2.352000pt;}
.ws4f{word-spacing:-2.346667pt;}
.ws119{word-spacing:-2.304000pt;}
.wsb0{word-spacing:-2.293333pt;}
.ws11a{word-spacing:-2.256000pt;}
.wsab{word-spacing:-2.240000pt;}
.ws1b2{word-spacing:-2.208000pt;}
.wsd6{word-spacing:-2.186667pt;}
.ws146{word-spacing:-2.133333pt;}
.ws144{word-spacing:-2.112000pt;}
.ws2d{word-spacing:-2.080000pt;}
.ws1b6{word-spacing:-2.064000pt;}
.wsfe{word-spacing:-2.026667pt;}
.ws199{word-spacing:-2.016000pt;}
.wscf{word-spacing:-1.973333pt;}
.ws167{word-spacing:-1.968000pt;}
.wsae{word-spacing:-1.920000pt;}
.ws11b{word-spacing:-1.872000pt;}
.ws70{word-spacing:-1.866667pt;}
.ws1c8{word-spacing:-1.824000pt;}
.ws74{word-spacing:-1.813333pt;}
.ws1c7{word-spacing:-1.776000pt;}
.ws4d{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.680000pt;}
.ws85{word-spacing:-1.653333pt;}
.ws104{word-spacing:-1.600000pt;}
.ws1c3{word-spacing:-1.584000pt;}
.ws8d{word-spacing:-1.546667pt;}
.ws33{word-spacing:-1.493333pt;}
.ws11f{word-spacing:-1.440000pt;}
.ws143{word-spacing:-1.392000pt;}
.wsdc{word-spacing:-1.386667pt;}
.ws1c0{word-spacing:-1.344000pt;}
.wsa8{word-spacing:-1.333333pt;}
.ws1b4{word-spacing:-1.296000pt;}
.wsac{word-spacing:-1.280000pt;}
.ws155{word-spacing:-1.237333pt;}
.ws34{word-spacing:-1.226667pt;}
.ws20{word-spacing:-1.200000pt;}
.ws8f{word-spacing:-1.173333pt;}
.ws21{word-spacing:-1.152000pt;}
.ws81{word-spacing:-1.120000pt;}
.ws23{word-spacing:-1.104000pt;}
.ws10d{word-spacing:-1.066667pt;}
.ws1f{word-spacing:-1.056000pt;}
.wsb7{word-spacing:-1.013333pt;}
.ws1e2{word-spacing:-1.008000pt;}
.ws107{word-spacing:-0.960000pt;}
.ws16b{word-spacing:-0.912000pt;}
.ws68{word-spacing:-0.906667pt;}
.ws1bc{word-spacing:-0.864000pt;}
.ws89{word-spacing:-0.853333pt;}
.ws1e9{word-spacing:-0.816000pt;}
.wsa4{word-spacing:-0.800000pt;}
.ws46{word-spacing:-0.746667pt;}
.ws61{word-spacing:-0.693333pt;}
.ws17e{word-spacing:-0.640000pt;}
.ws17b{word-spacing:-0.624000pt;}
.wse1{word-spacing:-0.586667pt;}
.ws58{word-spacing:-0.533333pt;}
.ws41{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.432000pt;}
.ws100{word-spacing:-0.426667pt;}
.ws1c2{word-spacing:-0.384000pt;}
.ws7e{word-spacing:-0.373333pt;}
.ws176{word-spacing:-0.320000pt;}
.ws1e8{word-spacing:-0.288000pt;}
.ws6b{word-spacing:-0.266667pt;}
.ws1d4{word-spacing:-0.240000pt;}
.ws94{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.192000pt;}
.wsc5{word-spacing:-0.160000pt;}
.ws1c1{word-spacing:-0.144000pt;}
.wsc2{word-spacing:-0.106667pt;}
.ws98{word-spacing:-0.053333pt;}
.ws1ef{word-spacing:-0.048000pt;}
.ws141{word-spacing:-0.041158pt;}
.ws12a{word-spacing:-0.037795pt;}
.ws13f{word-spacing:-0.037729pt;}
.ws139{word-spacing:-0.033901pt;}
.ws121{word-spacing:-0.032853pt;}
.ws137{word-spacing:-0.031076pt;}
.ws129{word-spacing:-0.029703pt;}
.ws12b{word-spacing:-0.029696pt;}
.ws111{word-spacing:-0.024323pt;}
.wsa{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.053333pt;}
.ws1ea{word-spacing:0.096000pt;}
.ws37{word-spacing:0.106667pt;}
.ws1d9{word-spacing:0.144000pt;}
.ws35{word-spacing:0.160000pt;}
.ws51{word-spacing:0.213333pt;}
.ws22{word-spacing:0.240000pt;}
.ws3e{word-spacing:0.266667pt;}
.ws79{word-spacing:0.288000pt;}
.ws73{word-spacing:0.320000pt;}
.ws1cb{word-spacing:0.336000pt;}
.wsf7{word-spacing:0.373333pt;}
.ws1de{word-spacing:0.384000pt;}
.ws5f{word-spacing:0.426667pt;}
.ws1ab{word-spacing:0.432000pt;}
.ws10c{word-spacing:0.480000pt;}
.ws1b1{word-spacing:0.528000pt;}
.ws6d{word-spacing:0.533333pt;}
.ws152{word-spacing:0.576000pt;}
.ws65{word-spacing:0.586667pt;}
.ws153{word-spacing:0.601013pt;}
.wsc{word-spacing:0.614400pt;}
.ws1c9{word-spacing:0.624000pt;}
.wsa7{word-spacing:0.640000pt;}
.ws1a5{word-spacing:0.672000pt;}
.ws13c{word-spacing:0.678027pt;}
.ws9d{word-spacing:0.693333pt;}
.ws1f2{word-spacing:0.720000pt;}
.ws10b{word-spacing:0.746667pt;}
.ws72{word-spacing:0.800000pt;}
.ws1a1{word-spacing:0.816000pt;}
.ws142{word-spacing:0.823168pt;}
.wsc9{word-spacing:0.853333pt;}
.ws8c{word-spacing:0.906667pt;}
.ws1b8{word-spacing:0.912000pt;}
.ws40{word-spacing:0.960000pt;}
.ws78{word-spacing:1.008000pt;}
.ws156{word-spacing:1.013333pt;}
.ws1c6{word-spacing:1.056000pt;}
.ws8e{word-spacing:1.066667pt;}
.ws154{word-spacing:1.104000pt;}
.ws52{word-spacing:1.120000pt;}
.ws120{word-spacing:1.170743pt;}
.ws66{word-spacing:1.173333pt;}
.ws17f{word-spacing:1.226667pt;}
.ws2c{word-spacing:1.280000pt;}
.ws13{word-spacing:1.296000pt;}
.wsad{word-spacing:1.333333pt;}
.ws1b5{word-spacing:1.344000pt;}
.ws9a{word-spacing:1.386667pt;}
.ws1a9{word-spacing:1.392000pt;}
.ws6c{word-spacing:1.440000pt;}
.ws24{word-spacing:1.488000pt;}
.ws42{word-spacing:1.493333pt;}
.ws168{word-spacing:1.536000pt;}
.wsfa{word-spacing:1.546667pt;}
.ws17c{word-spacing:1.584000pt;}
.ws91{word-spacing:1.600000pt;}
.ws1e5{word-spacing:1.632000pt;}
.ws3c{word-spacing:1.653333pt;}
.wsa9{word-spacing:1.706667pt;}
.ws64{word-spacing:1.760000pt;}
.ws50{word-spacing:1.813333pt;}
.ws1ee{word-spacing:1.824000pt;}
.wsb2{word-spacing:1.920000pt;}
.ws169{word-spacing:1.968000pt;}
.wsbe{word-spacing:1.973333pt;}
.ws1b7{word-spacing:2.016000pt;}
.ws6f{word-spacing:2.026667pt;}
.ws1ae{word-spacing:2.064000pt;}
.ws5d{word-spacing:2.080000pt;}
.ws1ac{word-spacing:2.112000pt;}
.ws5c{word-spacing:2.133333pt;}
.wscd{word-spacing:2.186667pt;}
.ws1dc{word-spacing:2.208000pt;}
.wscc{word-spacing:2.240000pt;}
.ws1db{word-spacing:2.256000pt;}
.wsc6{word-spacing:2.293333pt;}
.ws1b9{word-spacing:2.304000pt;}
.ws36{word-spacing:2.346667pt;}
.ws16{word-spacing:2.352000pt;}
.ws15{word-spacing:2.400000pt;}
.ws109{word-spacing:2.453333pt;}
.ws1a0{word-spacing:2.496000pt;}
.ws11c{word-spacing:2.506667pt;}
.ws1e7{word-spacing:2.544000pt;}
.ws103{word-spacing:2.560000pt;}
.ws48{word-spacing:2.613333pt;}
.ws135{word-spacing:2.640000pt;}
.wsc1{word-spacing:2.666667pt;}
.ws134{word-spacing:2.688000pt;}
.wsc0{word-spacing:2.720000pt;}
.ws1eb{word-spacing:2.736000pt;}
.ws2f{word-spacing:2.773333pt;}
.ws88{word-spacing:2.826667pt;}
.ws77{word-spacing:2.832000pt;}
.ws76{word-spacing:2.880000pt;}
.ws127{word-spacing:2.928000pt;}
.wsc4{word-spacing:2.933333pt;}
.ws1e3{word-spacing:2.976000pt;}
.ws47{word-spacing:2.986667pt;}
.ws19b{word-spacing:3.024000pt;}
.ws59{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.072000pt;}
.wsb1{word-spacing:3.093333pt;}
.ws1a{word-spacing:3.120000pt;}
.ws90{word-spacing:3.146667pt;}
.ws1e4{word-spacing:3.168000pt;}
.ws43{word-spacing:3.200000pt;}
.ws12{word-spacing:3.216000pt;}
.wsda{word-spacing:3.253333pt;}
.wsdb{word-spacing:3.306667pt;}
.ws133{word-spacing:3.312000pt;}
.ws4b{word-spacing:3.360000pt;}
.ws4a{word-spacing:3.413333pt;}
.ws95{word-spacing:3.466667pt;}
.ws1aa{word-spacing:3.504000pt;}
.ws5e{word-spacing:3.520000pt;}
.wsa3{word-spacing:3.573333pt;}
.ws54{word-spacing:3.626667pt;}
.ws17{word-spacing:3.648000pt;}
.wsc3{word-spacing:3.680000pt;}
.ws131{word-spacing:3.696000pt;}
.wsf0{word-spacing:3.733333pt;}
.ws130{word-spacing:3.744000pt;}
.ws9b{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.ws1a6{word-spacing:3.888000pt;}
.wseb{word-spacing:3.893333pt;}
.ws7c{word-spacing:3.946667pt;}
.ws2e{word-spacing:4.000000pt;}
.ws126{word-spacing:4.032000pt;}
.ws32{word-spacing:4.053333pt;}
.ws125{word-spacing:4.080000pt;}
.wsbd{word-spacing:4.106667pt;}
.ws1a2{word-spacing:4.128000pt;}
.wsbc{word-spacing:4.160000pt;}
.ws80{word-spacing:4.213333pt;}
.ws3b{word-spacing:4.266667pt;}
.ws1dd{word-spacing:4.272000pt;}
.wsb9{word-spacing:4.320000pt;}
.ws63{word-spacing:4.373333pt;}
.ws71{word-spacing:4.426667pt;}
.ws1ca{word-spacing:4.464000pt;}
.wsec{word-spacing:4.480000pt;}
.wsf4{word-spacing:4.533333pt;}
.ws4c{word-spacing:4.586667pt;}
.ws1d6{word-spacing:4.608000pt;}
.wsd7{word-spacing:4.640000pt;}
.ws1bd{word-spacing:4.656000pt;}
.ws105{word-spacing:4.693333pt;}
.ws16a{word-spacing:4.704000pt;}
.ws7f{word-spacing:4.746667pt;}
.wse5{word-spacing:4.800000pt;}
.ws5b{word-spacing:4.853333pt;}
.ws1d{word-spacing:4.896000pt;}
.ws4e{word-spacing:4.906667pt;}
.ws19{word-spacing:4.944000pt;}
.ws6e{word-spacing:4.960000pt;}
.ws1f1{word-spacing:4.992000pt;}
.ws53{word-spacing:5.013333pt;}
.ws1f0{word-spacing:5.040000pt;}
.ws57{word-spacing:5.066667pt;}
.ws1c{word-spacing:5.088000pt;}
.ws92{word-spacing:5.120000pt;}
.ws1be{word-spacing:5.136000pt;}
.ws82{word-spacing:5.173333pt;}
.ws11{word-spacing:5.184000pt;}
.wsfb{word-spacing:5.226667pt;}
.wsfd{word-spacing:5.280000pt;}
.ws14{word-spacing:5.328000pt;}
.ws3f{word-spacing:5.333333pt;}
.ws150{word-spacing:5.376000pt;}
.wsa1{word-spacing:5.386667pt;}
.ws151{word-spacing:5.424000pt;}
.wsa2{word-spacing:5.440000pt;}
.ws14f{word-spacing:5.472000pt;}
.ws55{word-spacing:5.493333pt;}
.wsf{word-spacing:5.520000pt;}
.wsaf{word-spacing:5.546667pt;}
.ws69{word-spacing:5.600000pt;}
.ws10{word-spacing:5.616000pt;}
.ws56{word-spacing:5.653333pt;}
.ws49{word-spacing:5.706667pt;}
.ws13b{word-spacing:5.712000pt;}
.wsa6{word-spacing:5.760000pt;}
.ws13a{word-spacing:5.808000pt;}
.wsa5{word-spacing:5.813333pt;}
.ws1b0{word-spacing:5.856000pt;}
.wsc7{word-spacing:5.866667pt;}
.ws38{word-spacing:5.920000pt;}
.ws1da{word-spacing:5.952000pt;}
.ws39{word-spacing:5.973333pt;}
.ws18{word-spacing:6.000000pt;}
.ws177{word-spacing:6.026667pt;}
.ws1b3{word-spacing:6.048000pt;}
.ws10a{word-spacing:6.080000pt;}
.ws19a{word-spacing:6.096000pt;}
.ws7d{word-spacing:6.186667pt;}
.wsb4{word-spacing:6.240000pt;}
.ws1ad{word-spacing:6.288000pt;}
.wsb3{word-spacing:6.293333pt;}
.ws84{word-spacing:6.346667pt;}
.ws1bf{word-spacing:6.384000pt;}
.ws83{word-spacing:6.400000pt;}
.ws44{word-spacing:6.453333pt;}
.ws45{word-spacing:6.506667pt;}
.ws8a{word-spacing:6.560000pt;}
.ws1cc{word-spacing:6.576000pt;}
.wse6{word-spacing:6.613333pt;}
.ws182{word-spacing:6.666667pt;}
.ws93{word-spacing:6.720000pt;}
.ws3d{word-spacing:6.773333pt;}
.ws97{word-spacing:6.826667pt;}
.wsbb{word-spacing:6.880000pt;}
.wsba{word-spacing:6.933333pt;}
.wse{word-spacing:6.960000pt;}
.ws1a8{word-spacing:7.008000pt;}
.wsbf{word-spacing:7.040000pt;}
.ws9f{word-spacing:7.093333pt;}
.ws1a7{word-spacing:7.104000pt;}
.ws9e{word-spacing:7.146667pt;}
.ws189{word-spacing:7.200000pt;}
.ws60{word-spacing:7.253333pt;}
.wsfc{word-spacing:7.306667pt;}
.wsf2{word-spacing:7.360000pt;}
.ws165{word-spacing:7.413333pt;}
.wsf1{word-spacing:7.466667pt;}
.ws19d{word-spacing:7.488000pt;}
.wsed{word-spacing:7.520000pt;}
.ws136{word-spacing:7.573333pt;}
.ws18a{word-spacing:7.626667pt;}
.ws179{word-spacing:7.632000pt;}
.ws17a{word-spacing:7.728000pt;}
.ws193{word-spacing:7.733333pt;}
.ws178{word-spacing:7.776000pt;}
.wsa0{word-spacing:7.786667pt;}
.wsd4{word-spacing:7.840000pt;}
.ws18c{word-spacing:7.893333pt;}
.ws7a{word-spacing:7.946667pt;}
.ws132{word-spacing:7.968000pt;}
.ws145{word-spacing:8.266667pt;}
.ws1d3{word-spacing:8.352000pt;}
.ws1ec{word-spacing:8.400000pt;}
.wsee{word-spacing:8.426667pt;}
.ws1c5{word-spacing:8.448000pt;}
.ws30{word-spacing:8.480000pt;}
.ws1ed{word-spacing:8.496000pt;}
.ws18d{word-spacing:8.533333pt;}
.ws1f3{word-spacing:8.736000pt;}
.ws18f{word-spacing:8.746667pt;}
.ws1d2{word-spacing:8.784000pt;}
.ws157{word-spacing:8.906667pt;}
.wsea{word-spacing:8.960000pt;}
.wsd8{word-spacing:9.066667pt;}
.ws1f4{word-spacing:9.120000pt;}
.wsd9{word-spacing:9.173333pt;}
.ws128{word-spacing:9.226667pt;}
.wse7{word-spacing:9.280000pt;}
.ws13d{word-spacing:9.333333pt;}
.ws13e{word-spacing:9.440000pt;}
.ws11d{word-spacing:9.493333pt;}
.wscb{word-spacing:9.546667pt;}
.wsca{word-spacing:9.653333pt;}
.ws5a{word-spacing:9.813333pt;}
.wsdf{word-spacing:9.920000pt;}
.wsff{word-spacing:9.973333pt;}
.ws19c{word-spacing:9.984000pt;}
.wse0{word-spacing:10.026667pt;}
.ws18e{word-spacing:10.186667pt;}
.wsdd{word-spacing:10.773333pt;}
.wsde{word-spacing:10.880000pt;}
.ws31{word-spacing:11.040000pt;}
.ws1d7{word-spacing:11.136000pt;}
.ws96{word-spacing:11.146667pt;}
.ws1cd{word-spacing:11.280000pt;}
.ws11e{word-spacing:11.306667pt;}
.ws1ce{word-spacing:11.376000pt;}
.wsf5{word-spacing:12.000000pt;}
.ws16d{word-spacing:12.106667pt;}
.wse8{word-spacing:12.266667pt;}
.ws192{word-spacing:12.320000pt;}
.wse9{word-spacing:12.373333pt;}
.ws181{word-spacing:12.533333pt;}
.ws180{word-spacing:12.586667pt;}
.ws2b{word-spacing:13.226667pt;}
.ws102{word-spacing:14.080000pt;}
.ws1cf{word-spacing:14.112000pt;}
.wsb5{word-spacing:14.346667pt;}
.wsb6{word-spacing:14.453333pt;}
.ws19f{word-spacing:16.320000pt;}
.ws1d8{word-spacing:17.568000pt;}
.ws99{word-spacing:17.706667pt;}
.ws1f5{word-spacing:22.032000pt;}
.ws19e{word-spacing:22.224000pt;}
.wse4{word-spacing:25.546667pt;}
.ws114{word-spacing:30.678189pt;}
.ws16c{word-spacing:31.146667pt;}
.ws1d0{word-spacing:45.456000pt;}
.ws1d1{word-spacing:46.848000pt;}
.ws115{word-spacing:54.607795pt;}
.ws159{word-spacing:92.689600pt;}
.ws113{word-spacing:115.159296pt;}
.ws14d{word-spacing:144.244267pt;}
.ws14e{word-spacing:165.840000pt;}
.ws112{word-spacing:208.617646pt;}
.ws122{word-spacing:210.556867pt;}
.ws140{word-spacing:214.764531pt;}
.ws15a{word-spacing:237.842133pt;}
.ws138{word-spacing:241.614803pt;}
.ws123{word-spacing:246.898086pt;}
.ws147{word-spacing:247.928533pt;}
.ws116{word-spacing:248.340441pt;}
.ws15e{word-spacing:252.397333pt;}
.ws15c{word-spacing:260.758933pt;}
.ws160{word-spacing:296.647467pt;}
.ws149{word-spacing:307.354667pt;}
.ws15b{word-spacing:321.681067pt;}
.ws15f{word-spacing:324.155200pt;}
.ws164{word-spacing:328.800000pt;}
.ws15d{word-spacing:350.516267pt;}
.ws161{word-spacing:368.408533pt;}
.ws148{word-spacing:461.934933pt;}
.ws14a{word-spacing:461.955733pt;}
.ws12c{word-spacing:472.884800pt;}
.ws12d{word-spacing:524.911467pt;}
.ws12e{word-spacing:686.912000pt;}
.ws12f{word-spacing:740.552533pt;}
.ws117{word-spacing:1190.537979pt;}
._9{margin-left:-9.110933pt;}
._0{margin-left:-8.060267pt;}
._6{margin-left:-6.175499pt;}
._8{margin-left:-5.105600pt;}
._2{margin-left:-4.125333pt;}
._c{margin-left:-3.148235pt;}
._5{margin-left:-2.230400pt;}
._1{margin-left:-1.332800pt;}
._4{width:1.232533pt;}
._3{width:2.266667pt;}
._a{width:3.600000pt;}
._10{width:4.757333pt;}
._b{width:5.840000pt;}
._d{width:6.914667pt;}
._11{width:8.277333pt;}
._12{width:9.461333pt;}
._f{width:10.596800pt;}
._e{width:11.610667pt;}
._14{width:15.071467pt;}
._13{width:20.136000pt;}
._68{width:31.094933pt;}
._7{width:32.554667pt;}
._6f{width:38.258133pt;}
._6e{width:39.181333pt;}
._15{width:43.056000pt;}
._2a{width:63.295467pt;}
._31{width:64.689067pt;}
._6c{width:67.946667pt;}
._6d{width:70.400000pt;}
._6a{width:72.746667pt;}
._6b{width:75.573333pt;}
._69{width:77.760000pt;}
._29{width:87.442133pt;}
._2b{width:91.297600pt;}
._2e{width:93.651200pt;}
._32{width:104.711467pt;}
._2d{width:119.288533pt;}
._34{width:125.161067pt;}
._2f{width:134.652267pt;}
._38{width:138.903467pt;}
._33{width:146.038400pt;}
._3b{width:171.931200pt;}
._3c{width:178.577600pt;}
._3a{width:180.524800pt;}
._30{width:190.918933pt;}
._2c{width:196.480000pt;}
._37{width:211.461867pt;}
._36{width:215.754133pt;}
._28{width:218.794667pt;}
._16{width:223.742558pt;}
._5b{width:224.889067pt;}
._45{width:227.492800pt;}
._57{width:230.632879pt;}
._58{width:232.341146pt;}
._5c{width:235.108800pt;}
._35{width:238.385067pt;}
._3e{width:239.492267pt;}
._4b{width:247.024000pt;}
._17{width:247.968952pt;}
._21{width:249.666854pt;}
._22{width:250.948458pt;}
._42{width:252.619200pt;}
._3f{width:254.242667pt;}
._4d{width:255.211200pt;}
._4e{width:259.630400pt;}
._20{width:260.938563pt;}
._59{width:263.466667pt;}
._40{width:265.262400pt;}
._55{width:267.247279pt;}
._63{width:270.110933pt;}
._67{width:273.215812pt;}
._27{width:275.866667pt;}
._53{width:278.486746pt;}
._23{width:281.069867pt;}
._43{width:285.694400pt;}
._5f{width:288.174212pt;}
._47{width:294.350742pt;}
._5a{width:298.342930pt;}
._3d{width:302.950400pt;}
._24{width:306.095467pt;}
._61{width:307.103275pt;}
._49{width:308.430933pt;}
._4c{width:309.658133pt;}
._52{width:310.779542pt;}
._50{width:312.028612pt;}
._46{width:322.436267pt;}
._39{width:335.842133pt;}
._41{width:338.355200pt;}
._56{width:343.676800pt;}
._64{width:352.277867pt;}
._54{width:354.965333pt;}
._44{width:360.923200pt;}
._60{width:364.648533pt;}
._66{width:370.278400pt;}
._48{width:371.195200pt;}
._4a{width:382.197867pt;}
._51{width:388.196800pt;}
._4f{width:389.619848pt;}
._5d{width:455.825067pt;}
._26{width:472.537067pt;}
._25{width:484.516267pt;}
._65{width:488.934400pt;}
._5e{width:493.296533pt;}
._19{width:505.402133pt;}
._62{width:533.766933pt;}
._18{width:697.472533pt;}
._1a{width:966.508800pt;}
._1b{width:1044.634133pt;}
._1f{width:1092.676800pt;}
._1e{width:1096.644800pt;}
._1c{width:1099.458133pt;}
._1d{width:1107.567467pt;}
.fsb{font-size:24.323200pt;}
.fsc{font-size:26.534933pt;}
.fs20{font-size:27.984000pt;}
.fs14{font-size:29.696000pt;}
.fs15{font-size:29.703010pt;}
.fs1d{font-size:30.050667pt;}
.fs1e{font-size:30.058261pt;}
.fsa{font-size:30.956800pt;}
.fs17{font-size:31.076267pt;}
.fs9{font-size:31.093333pt;}
.fs11{font-size:32.852800pt;}
.fsd{font-size:33.168533pt;}
.fse{font-size:33.297067pt;}
.fs18{font-size:33.901333pt;}
.fs3{font-size:34.202667pt;}
.fs12{font-size:35.839467pt;}
.fs4{font-size:37.333333pt;}
.fs1a{font-size:37.728533pt;}
.fs16{font-size:37.795200pt;}
.fs1f{font-size:38.246400pt;}
.fs5{font-size:38.400000pt;}
.fs1b{font-size:41.158400pt;}
.fs10{font-size:41.812267pt;}
.fs19{font-size:42.376533pt;}
.fs0{font-size:42.666667pt;}
.fs13{font-size:44.798933pt;}
.fs6{font-size:48.000000pt;}
.fs1c{font-size:51.448000pt;}
.fs7{font-size:53.333333pt;}
.fsf{font-size:53.351467pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:1.828133pt;}
.yfa{bottom:1.828667pt;}
.yc8{bottom:1.828800pt;}
.yf7{bottom:1.829067pt;}
.ycf{bottom:1.829200pt;}
.yc4{bottom:1.829333pt;}
.yca{bottom:1.829467pt;}
.yc6{bottom:1.829600pt;}
.yd4{bottom:1.829733pt;}
.yd1{bottom:1.829867pt;}
.yf3{bottom:1.830133pt;}
.y162{bottom:2.336267pt;}
.y160{bottom:2.336533pt;}
.y164{bottom:2.336933pt;}
.y12c{bottom:2.469733pt;}
.y135{bottom:2.470000pt;}
.y132{bottom:2.470133pt;}
.y130{bottom:2.470400pt;}
.y12e{bottom:2.470800pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.698800pt;}
.y173{bottom:77.917333pt;}
.y6d{bottom:100.514400pt;}
.y9e{bottom:100.514533pt;}
.yd{bottom:104.778267pt;}
.y1a2{bottom:105.226267pt;}
.y1cc{bottom:107.111733pt;}
.yc{bottom:117.578267pt;}
.y6c{bottom:119.181067pt;}
.y9d{bottom:119.181200pt;}
.y1cb{bottom:124.711733pt;}
.y1a1{bottom:125.320800pt;}
.yb{bottom:130.378267pt;}
.y6b{bottom:137.847733pt;}
.y9c{bottom:137.847867pt;}
.y1ca{bottom:142.311733pt;}
.y1d7{bottom:143.055200pt;}
.ya{bottom:143.178267pt;}
.y1a0{bottom:145.415200pt;}
.y6a{bottom:156.514400pt;}
.y9b{bottom:156.514533pt;}
.y1c9{bottom:159.911733pt;}
.y19f{bottom:165.776400pt;}
.y1d6{bottom:169.280933pt;}
.y19e{bottom:172.443067pt;}
.y69{bottom:175.181067pt;}
.y9a{bottom:175.181200pt;}
.y38{bottom:177.237867pt;}
.y1c8{bottom:177.511733pt;}
.yaa{bottom:187.123200pt;}
.y1d3{bottom:190.370000pt;}
.y29{bottom:191.847067pt;}
.y37{bottom:193.237867pt;}
.y68{bottom:193.847733pt;}
.y99{bottom:193.847867pt;}
.y15b{bottom:201.610000pt;}
.y19d{bottom:208.094533pt;}
.y36{bottom:209.237867pt;}
.y28{bottom:209.447067pt;}
.y67{bottom:212.514400pt;}
.y98{bottom:212.514533pt;}
.ya9{bottom:215.832000pt;}
.y15a{bottom:221.704533pt;}
.y35{bottom:225.237867pt;}
.y19c{bottom:225.694533pt;}
.y66{bottom:231.181067pt;}
.y97{bottom:231.181200pt;}
.y34{bottom:241.237867pt;}
.y159{bottom:241.798933pt;}
.y27{bottom:245.944667pt;}
.y65{bottom:249.847733pt;}
.y96{bottom:249.847867pt;}
.y33{bottom:257.237867pt;}
.y158{bottom:261.893467pt;}
.y26{bottom:263.544667pt;}
.y64{bottom:268.514400pt;}
.y95{bottom:268.514533pt;}
.y32{bottom:273.237867pt;}
.y18d{bottom:276.484800pt;}
.y25{bottom:281.144667pt;}
.y157{bottom:281.988000pt;}
.y1c7{bottom:282.909733pt;}
.y63{bottom:287.181067pt;}
.y94{bottom:287.181200pt;}
.y31{bottom:289.237867pt;}
.y18c{bottom:296.579333pt;}
.y24{bottom:298.744667pt;}
.y156{bottom:302.082400pt;}
.y1c6{bottom:303.004133pt;}
.y30{bottom:305.237867pt;}
.y62{bottom:305.847733pt;}
.y93{bottom:305.847867pt;}
.y23{bottom:316.344667pt;}
.y18b{bottom:316.673867pt;}
.y187{bottom:318.614133pt;}
.y2f{bottom:321.237867pt;}
.y155{bottom:322.443600pt;}
.y1c5{bottom:323.098667pt;}
.y61{bottom:324.514400pt;}
.y92{bottom:324.514533pt;}
.y22{bottom:333.944667pt;}
.y18a{bottom:336.768267pt;}
.y2e{bottom:337.237867pt;}
.y60{bottom:343.181067pt;}
.y91{bottom:343.181200pt;}
.y1c4{bottom:343.193067pt;}
.y154{bottom:351.428400pt;}
.y21{bottom:351.544667pt;}
.y5f{bottom:361.847733pt;}
.y90{bottom:361.847867pt;}
.y1c3{bottom:363.287600pt;}
.y189{bottom:365.753067pt;}
.y2d{bottom:368.356000pt;}
.y153{bottom:369.028400pt;}
.y20{bottom:369.144667pt;}
.ya6{bottom:373.789867pt;}
.y5e{bottom:380.514400pt;}
.y8f{bottom:380.514533pt;}
.y188{bottom:383.353067pt;}
.y1c2{bottom:383.382133pt;}
.y2c{bottom:384.356000pt;}
.y1f{bottom:386.744667pt;}
.ya4{bottom:393.280933pt;}
.y5d{bottom:399.181067pt;}
.y8e{bottom:399.181200pt;}
.y2b{bottom:400.356000pt;}
.ya5{bottom:402.498800pt;}
.y1c1{bottom:403.476667pt;}
.y1e{bottom:404.344667pt;}
.y2a{bottom:416.356000pt;}
.y5c{bottom:417.847733pt;}
.y8d{bottom:417.847867pt;}
.y152{bottom:421.696267pt;}
.y1d{bottom:421.944667pt;}
.y1c0{bottom:423.571067pt;}
.y190{bottom:436.029067pt;}
.y5b{bottom:436.514400pt;}
.y8c{bottom:436.514533pt;}
.y1c{bottom:439.544667pt;}
.y151{bottom:441.790800pt;}
.y1bf{bottom:443.665600pt;}
.y18f{bottom:453.629067pt;}
.y5a{bottom:455.181067pt;}
.y8b{bottom:455.181200pt;}
.y1be{bottom:456.998933pt;}
.y1b{bottom:457.144667pt;}
.y150{bottom:461.885200pt;}
.y18e{bottom:471.229067pt;}
.y59{bottom:473.847733pt;}
.y8a{bottom:473.847867pt;}
.y1a{bottom:474.744667pt;}
.y1bd{bottom:477.093333pt;}
.y1df{bottom:486.614133pt;}
.y1bc{bottom:490.426667pt;}
.y14f{bottom:490.870133pt;}
.y19{bottom:492.344667pt;}
.y58{bottom:492.514400pt;}
.y89{bottom:492.514533pt;}
.y197{bottom:496.061600pt;}
.y1d5{bottom:505.280933pt;}
.y195{bottom:506.689838pt;}
.y196{bottom:508.331741pt;}
.y14e{bottom:508.470133pt;}
.y18{bottom:509.944667pt;}
.y1bb{bottom:510.521200pt;}
.y57{bottom:511.181067pt;}
.y88{bottom:511.181200pt;}
.y194{bottom:512.965200pt;}
.y104{bottom:525.228000pt;}
.y17{bottom:527.544667pt;}
.y56{bottom:529.847733pt;}
.y87{bottom:529.847867pt;}
.y1ba{bottom:530.615733pt;}
.y103{bottom:542.828000pt;}
.y16{bottom:545.144667pt;}
.y55{bottom:548.514400pt;}
.y86{bottom:548.514533pt;}
.y15e{bottom:548.753867pt;}
.y1b9{bottom:550.710133pt;}
.y1d2{bottom:554.212667pt;}
.y102{bottom:560.428000pt;}
.y15{bottom:562.744667pt;}
.y14d{bottom:565.063467pt;}
.y15d{bottom:566.353867pt;}
.y54{bottom:567.181067pt;}
.y85{bottom:567.181200pt;}
.y1b8{bottom:570.804667pt;}
.y1d1{bottom:571.812667pt;}
.y1de{bottom:572.026000pt;}
.ya3{bottom:577.344267pt;}
.ya7{bottom:579.947600pt;}
.y14{bottom:580.344667pt;}
.y14c{bottom:582.663467pt;}
.y13e{bottom:583.915867pt;}
.y15c{bottom:583.953867pt;}
.y53{bottom:585.847733pt;}
.y84{bottom:585.847867pt;}
.y1d0{bottom:589.412533pt;}
.y1b7{bottom:590.899200pt;}
.ya2{bottom:594.944267pt;}
.y13d{bottom:596.444133pt;}
.y13{bottom:597.944667pt;}
.y14b{bottom:600.263467pt;}
.y191{bottom:604.258400pt;}
.y52{bottom:604.514400pt;}
.y83{bottom:604.514533pt;}
.y136{bottom:604.986133pt;}
.y1cf{bottom:607.012667pt;}
.y16c{bottom:607.235867pt;}
.y1b6{bottom:610.993600pt;}
.ya1{bottom:612.544267pt;}
.y12{bottom:615.544667pt;}
.y186{bottom:618.456000pt;}
.y16b{bottom:619.086667pt;}
.y11d{bottom:622.406040pt;}
.y51{bottom:623.181067pt;}
.y82{bottom:623.181200pt;}
.y12d{bottom:624.392000pt;}
.y1ce{bottom:624.612533pt;}
.y147{bottom:625.016133pt;}
.ya0{bottom:630.144267pt;}
.y1b5{bottom:631.088133pt;}
.y11{bottom:633.144667pt;}
.y145{bottom:635.517467pt;}
.y185{bottom:636.056000pt;}
.y146{bottom:637.139964pt;}
.y50{bottom:641.847733pt;}
.y81{bottom:641.847867pt;}
.y1cd{bottom:642.212667pt;}
.y133{bottom:646.112000pt;}
.y1dd{bottom:646.692667pt;}
.y9f{bottom:647.744267pt;}
.y161{bottom:650.185333pt;}
.y10{bottom:650.744667pt;}
.y1b4{bottom:651.182667pt;}
.y184{bottom:653.656000pt;}
.y101{bottom:659.762267pt;}
.y4f{bottom:660.514400pt;}
.y80{bottom:660.514533pt;}
.y123{bottom:661.521415pt;}
.y137{bottom:670.599237pt;}
.y183{bottom:671.256000pt;}
.y1b3{bottom:671.277067pt;}
.y121{bottom:675.925741pt;}
.y100{bottom:677.362267pt;}
.y198{bottom:678.203467pt;}
.yf{bottom:678.386933pt;}
.y4e{bottom:679.181067pt;}
.y7f{bottom:679.181200pt;}
.y1b2{bottom:691.371600pt;}
.y19b{bottom:693.357735pt;}
.y11e{bottom:697.229091pt;}
.y4d{bottom:697.847733pt;}
.y7e{bottom:697.847867pt;}
.y17e{bottom:698.244000pt;}
.ydc{bottom:700.910267pt;}
.y19a{bottom:705.160134pt;}
.y126{bottom:706.291900pt;}
.y192{bottom:710.119386pt;}
.ydb{bottom:710.185733pt;}
.y1b1{bottom:711.466000pt;}
.y122{bottom:712.595099pt;}
.y17d{bottom:712.632533pt;}
.y4c{bottom:716.514400pt;}
.y7d{bottom:716.514533pt;}
.y199{bottom:716.962533pt;}
.y11f{bottom:718.427910pt;}
.y129{bottom:720.717132pt;}
.y124{bottom:721.866969pt;}
.y120{bottom:722.295545pt;}
.yf8{bottom:723.442667pt;}
.y172{bottom:725.786667pt;}
.y1e2{bottom:728.456533pt;}
.yff{bottom:728.574533pt;}
.y168{bottom:728.849200pt;}
.yac{bottom:729.423939pt;}
.y1b0{bottom:731.560533pt;}
.yd2{bottom:731.845333pt;}
.yb1{bottom:732.426748pt;}
.y4b{bottom:735.181067pt;}
.y7c{bottom:735.181200pt;}
.y138{bottom:736.212341pt;}
.ycd{bottom:741.232000pt;}
.yce{bottom:742.581333pt;}
.y179{bottom:746.253733pt;}
.y134{bottom:747.097333pt;}
.y9{bottom:748.859333pt;}
.y1af{bottom:751.655067pt;}
.y4a{bottom:753.847733pt;}
.y7b{bottom:753.847867pt;}
.y142{bottom:754.092533pt;}
.yd5{bottom:756.008667pt;}
.y166{bottom:756.416000pt;}
.yf1{bottom:757.002667pt;}
.y1e1{bottom:757.165333pt;}
.y11c{bottom:757.449208pt;}
.y106{bottom:762.330790pt;}
.yab{bottom:763.979467pt;}
.y8{bottom:764.859333pt;}
.yae{bottom:765.295131pt;}
.y13f{bottom:768.569867pt;}
.y127{bottom:770.463276pt;}
.y1ae{bottom:771.749467pt;}
.y125{bottom:771.895346pt;}
.y49{bottom:772.514400pt;}
.y7a{bottom:772.514533pt;}
.y1dc{bottom:777.359333pt;}
.y105{bottom:780.770000pt;}
.yfb{bottom:780.817600pt;}
.y7{bottom:780.859333pt;}
.y16d{bottom:781.904800pt;}
.ye1{bottom:784.374319pt;}
.y1d4{bottom:785.280933pt;}
.yb9{bottom:790.733881pt;}
.y116{bottom:790.825850pt;}
.y48{bottom:791.181067pt;}
.y79{bottom:791.181200pt;}
.y110{bottom:791.202161pt;}
.y1ad{bottom:791.844133pt;}
.y12a{bottom:794.641219pt;}
.y141{bottom:795.229462pt;}
.ybb{bottom:796.197756pt;}
.y128{bottom:798.519307pt;}
.ye7{bottom:800.626639pt;}
.y139{bottom:801.816484pt;}
.y171{bottom:803.704000pt;}
.yd6{bottom:803.847733pt;}
.yb8{bottom:804.563831pt;}
.y170{bottom:804.929440pt;}
.yb6{bottom:806.390283pt;}
.y174{bottom:808.102667pt;}
.y47{bottom:809.847733pt;}
.y78{bottom:809.847867pt;}
.y177{bottom:810.130575pt;}
.y11a{bottom:811.198877pt;}
.yec{bottom:811.894914pt;}
.y1ac{bottom:811.938533pt;}
.y6{bottom:811.977600pt;}
.y17a{bottom:813.990170pt;}
.ye8{bottom:814.348241pt;}
.yb2{bottom:815.839846pt;}
.y193{bottom:815.987885pt;}
.y140{bottom:816.392667pt;}
.y16f{bottom:817.133920pt;}
.yd0{bottom:818.618667pt;}
.yd3{bottom:818.862667pt;}
.y107{bottom:819.310457pt;}
.y14a{bottom:825.814496pt;}
.yb4{bottom:826.001415pt;}
.y17f{bottom:827.601733pt;}
.y119{bottom:828.195563pt;}
.y165{bottom:828.202667pt;}
.y46{bottom:828.514400pt;}
.y77{bottom:828.514533pt;}
.y148{bottom:829.290667pt;}
.y16e{bottom:829.338400pt;}
.ybc{bottom:831.651031pt;}
.y1ab{bottom:832.033067pt;}
.y169{bottom:832.587280pt;}
.yc2{bottom:834.003748pt;}
.y10b{bottom:835.638147pt;}
.ye9{bottom:835.692954pt;}
.y10e{bottom:836.118988pt;}
.y149{bottom:837.477600pt;}
.ydd{bottom:838.779467pt;}
.yfe{bottom:838.780133pt;}
.y10a{bottom:841.261897pt;}
.ye2{bottom:843.408937pt;}
.yee{bottom:843.826853pt;}
.yba{bottom:844.683844pt;}
.y5{bottom:844.695600pt;}
.y10d{bottom:844.847299pt;}
.y45{bottom:847.181067pt;}
.y76{bottom:847.181200pt;}
.y111{bottom:847.763704pt;}
.yf2{bottom:847.950667pt;}
.y108{bottom:848.140015pt;}
.y182{bottom:848.764085pt;}
.yde{bottom:848.857333pt;}
.yf0{bottom:851.117180pt;}
.yd7{bottom:851.690218pt;}
.y1aa{bottom:852.127467pt;}
.ye6{bottom:855.025476pt;}
.y167{bottom:858.417333pt;}
.yb0{bottom:861.779737pt;}
.y113{bottom:862.492075pt;}
.y112{bottom:862.512981pt;}
.y117{bottom:862.638418pt;}
.ycc{bottom:863.501333pt;}
.y11b{bottom:863.537382pt;}
.y181{bottom:863.581109pt;}
.y44{bottom:865.847733pt;}
.y75{bottom:865.847867pt;}
.yfc{bottom:866.459097pt;}
.ye0{bottom:866.920626pt;}
.yaf{bottom:867.135263pt;}
.y13a{bottom:867.429588pt;}
.y10f{bottom:868.042654pt;}
.yad{bottom:868.868844pt;}
.y143{bottom:869.743605pt;}
.yb7{bottom:870.950689pt;}
.y1a9{bottom:872.222000pt;}
.yeb{bottom:873.529903pt;}
.y4{bottom:874.028933pt;}
.y163{bottom:874.188000pt;}
.ycb{bottom:876.901333pt;}
.y180{bottom:878.398133pt;}
.y178{bottom:878.881395pt;}
.y17b{bottom:881.716317pt;}
.yef{bottom:882.166850pt;}
.ye3{bottom:882.484157pt;}
.ye5{bottom:883.289034pt;}
.y43{bottom:884.514400pt;}
.y74{bottom:884.514533pt;}
.ybf{bottom:884.873510pt;}
.y118{bottom:886.408692pt;}
.y1db{bottom:889.359333pt;}
.y131{bottom:890.058667pt;}
.y10c{bottom:892.053348pt;}
.y1a8{bottom:892.316533pt;}
.yed{bottom:895.780103pt;}
.y176{bottom:896.500620pt;}
.yd8{bottom:899.532703pt;}
.y42{bottom:903.181067pt;}
.y73{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y12f{bottom:904.722667pt;}
.yc3{bottom:908.958667pt;}
.y115{bottom:909.102299pt;}
.yea{bottom:909.811273pt;}
.y1a7{bottom:912.410933pt;}
.ya8{bottom:915.947600pt;}
.y114{bottom:917.485659pt;}
.y175{bottom:919.807422pt;}
.y41{bottom:921.847733pt;}
.y72{bottom:921.847867pt;}
.ye4{bottom:924.190706pt;}
.yf4{bottom:925.654667pt;}
.yb3{bottom:926.193099pt;}
.yc9{bottom:926.372000pt;}
.yf9{bottom:930.098667pt;}
.y1a6{bottom:932.505467pt;}
.y2{bottom:932.695600pt;}
.y13b{bottom:933.042691pt;}
.yc0{bottom:935.642662pt;}
.y16a{bottom:936.325360pt;}
.ydf{bottom:936.790124pt;}
.yc5{bottom:939.014667pt;}
.ybd{bottom:939.365217pt;}
.y40{bottom:940.514400pt;}
.y71{bottom:940.514533pt;}
.y1da{bottom:945.359333pt;}
.yd9{bottom:947.368554pt;}
.y17c{bottom:949.452754pt;}
.yfd{bottom:952.100595pt;}
.y1a5{bottom:952.600000pt;}
.yc7{bottom:953.874667pt;}
.y3f{bottom:959.181067pt;}
.y70{bottom:959.181200pt;}
.y1a4{bottom:959.266667pt;}
.yb5{bottom:961.979159pt;}
.y109{bottom:971.747528pt;}
.ybe{bottom:972.752126pt;}
.y1d9{bottom:977.847733pt;}
.y6f{bottom:977.847867pt;}
.y12b{bottom:978.761333pt;}
.y144{bottom:985.394677pt;}
.ye{bottom:986.502667pt;}
.y3e{bottom:988.062933pt;}
.y15f{bottom:994.672000pt;}
.y1a3{bottom:994.918133pt;}
.yda{bottom:995.211039pt;}
.y1e0{bottom:996.514400pt;}
.y6e{bottom:996.514533pt;}
.y13c{bottom:998.655795pt;}
.yc1{bottom:1000.179851pt;}
.y1d8{bottom:1000.401467pt;}
.yf6{bottom:1003.765333pt;}
.y3a{bottom:1027.213600pt;}
.y39{bottom:1044.546933pt;}
.y3d{bottom:1047.726000pt;}
.h15{height:7.052000pt;}
.h13{height:7.053333pt;}
.h28{height:9.009333pt;}
.h26{height:9.010667pt;}
.h1d{height:9.525333pt;}
.h14{height:17.933609pt;}
.h16{height:19.564331pt;}
.h21{height:21.895000pt;}
.h22{height:21.900169pt;}
.h2f{height:22.156497pt;}
.h30{height:22.162097pt;}
.h12{height:22.824594pt;}
.h27{height:22.912677pt;}
.h1e{height:24.222523pt;}
.h17{height:24.455315pt;}
.h18{height:24.550083pt;}
.h29{height:24.995612pt;}
.h1f{height:26.424607pt;}
.h2b{height:27.817424pt;}
.h23{height:27.866578pt;}
.h31{height:28.199250pt;}
.h2d{height:30.346281pt;}
.h6{height:30.618750pt;}
.h1c{height:30.828380pt;}
.h2a{height:31.244417pt;}
.h20{height:33.030464pt;}
.h2{height:33.812500pt;}
.h24{height:33.979167pt;}
.hd{height:34.020833pt;}
.h5{height:34.250000pt;}
.h2e{height:37.932852pt;}
.hc{height:38.039062pt;}
.h7{height:38.226562pt;}
.hb{height:38.273438pt;}
.ha{height:39.000000pt;}
.h1b{height:39.336286pt;}
.h25{height:40.354167pt;}
.h8{height:40.546875pt;}
.h10{height:43.333333pt;}
.h19{height:43.596607pt;}
.h11{height:44.601562pt;}
.h9{height:45.398438pt;}
.h1a{height:46.506546pt;}
.he{height:48.656250pt;}
.hf{height:50.442708pt;}
.h4{height:55.486979pt;}
.h32{height:60.645833pt;}
.h3{height:72.205729pt;}
.h33{height:87.312500pt;}
.h2c{height:282.989333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:30.914667pt;}
.w9{width:32.820000pt;}
.w6{width:33.256000pt;}
.w4{width:33.981333pt;}
.we{width:33.982667pt;}
.w8{width:35.888000pt;}
.wa{width:38.641333pt;}
.w18{width:39.344000pt;}
.w3{width:41.404000pt;}
.w12{width:41.593333pt;}
.w19{width:42.322667pt;}
.wb{width:43.241333pt;}
.w17{width:43.248000pt;}
.wc{width:44.436000pt;}
.w13{width:44.742667pt;}
.w11{width:45.720000pt;}
.w7{width:46.480000pt;}
.w16{width:52.694667pt;}
.w2{width:52.938667pt;}
.wd{width:52.940000pt;}
.w10{width:55.708000pt;}
.w1a{width:59.156000pt;}
.w14{width:62.537333pt;}
.w15{width:67.376000pt;}
.wf{width:71.228000pt;}
.w1b{width:309.245333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x90{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x2d{left:114.969067pt;}
.x2a{left:120.889467pt;}
.x8d{left:136.593200pt;}
.xd{left:138.471333pt;}
.xf{left:150.311797pt;}
.x91{left:154.684400pt;}
.x29{left:172.456000pt;}
.x2b{left:177.532800pt;}
.x15{left:185.436953pt;}
.x19{left:187.495827pt;}
.xe{left:197.052107pt;}
.x16{left:201.900171pt;}
.x12{left:205.279831pt;}
.x1e{left:207.486321pt;}
.x1b{left:211.697300pt;}
.x18{left:213.515324pt;}
.x14{left:221.463352pt;}
.x1c{left:230.856476pt;}
.x28{left:233.284000pt;}
.x2c{left:234.810800pt;}
.x22{left:249.850667pt;}
.x25{left:257.718667pt;}
.x11{left:259.035848pt;}
.x1a{left:259.929321pt;}
.x23{left:261.386667pt;}
.x27{left:262.564000pt;}
.x4{left:266.834667pt;}
.x24{left:270.016000pt;}
.x10{left:277.534631pt;}
.x21{left:279.118667pt;}
.xb{left:281.952800pt;}
.x86{left:285.613067pt;}
.x1f{left:286.943293pt;}
.x20{left:290.563803pt;}
.x87{left:291.611903pt;}
.x94{left:297.070933pt;}
.x13{left:298.247673pt;}
.x26{left:299.362667pt;}
.x83{left:307.572267pt;}
.x71{left:310.529067pt;}
.x82{left:311.689333pt;}
.x6d{left:313.261600pt;}
.x6e{left:318.485202pt;}
.x80{left:320.633067pt;}
.x7d{left:323.217867pt;}
.x8c{left:325.638400pt;}
.x76{left:327.666400pt;}
.x73{left:330.251067pt;}
.x8e{left:331.630133pt;}
.x74{left:334.586683pt;}
.x1d{left:336.193097pt;}
.x4a{left:337.784724pt;}
.x7b{left:341.814667pt;}
.x7e{left:344.116800pt;}
.x7a{left:349.462667pt;}
.x3{left:352.045067pt;}
.x49{left:358.837200pt;}
.x5b{left:364.889526pt;}
.x63{left:372.394827pt;}
.x8a{left:375.112533pt;}
.x78{left:376.146667pt;}
.x6f{left:378.093467pt;}
.x5c{left:379.649256pt;}
.x89{left:381.070933pt;}
.x17{left:382.506093pt;}
.x7c{left:383.674667pt;}
.x52{left:384.980320pt;}
.x53{left:389.590122pt;}
.x51{left:397.105877pt;}
.x5a{left:402.583284pt;}
.x57{left:406.450919pt;}
.x79{left:407.462667pt;}
.x4f{left:414.248906pt;}
.x70{left:422.280400pt;}
.x48{left:425.478000pt;}
.x84{left:427.495368pt;}
.x55{left:429.269963pt;}
.x7f{left:430.247067pt;}
.x45{left:431.398667pt;}
.x64{left:434.339701pt;}
.x85{left:435.673027pt;}
.x4e{left:437.726494pt;}
.x54{left:440.214324pt;}
.x50{left:441.803190pt;}
.x5e{left:445.325874pt;}
.x62{left:446.674319pt;}
.x61{left:447.698720pt;}
.x2e{left:448.980000pt;}
.x4b{left:449.925223pt;}
.x58{left:451.388652pt;}
.x4c{left:452.392147pt;}
.x5f{left:453.698780pt;}
.x8b{left:455.936133pt;}
.x60{left:473.726856pt;}
.x4d{left:476.361029pt;}
.x6c{left:482.393333pt;}
.x69{left:487.066667pt;}
.x66{left:497.246256pt;}
.x59{left:502.002401pt;}
.x38{left:503.046791pt;}
.x46{left:503.991600pt;}
.x8f{left:506.448800pt;}
.x75{left:507.501413pt;}
.x2f{left:508.446477pt;}
.x67{left:518.884104pt;}
.x37{left:521.623267pt;}
.x56{left:529.253546pt;}
.x34{left:530.736695pt;}
.x6a{left:532.410667pt;}
.x36{left:535.569220pt;}
.x5d{left:536.696129pt;}
.x3a{left:537.884481pt;}
.x6b{left:539.041333pt;}
.x68{left:541.159589pt;}
.x81{left:542.716000pt;}
.x47{left:545.319467pt;}
.x32{left:546.935755pt;}
.x65{left:550.619614pt;}
.x30{left:554.798320pt;}
.x33{left:566.895172pt;}
.x31{left:571.424693pt;}
.x9{left:576.610267pt;}
.x39{left:578.689020pt;}
.x8{left:594.089333pt;}
.x3c{left:595.968017pt;}
.x44{left:603.394667pt;}
.x3f{left:604.661901pt;}
.x3d{left:606.184691pt;}
.x41{left:619.100000pt;}
.x92{left:620.224000pt;}
.x40{left:626.825333pt;}
.x77{left:630.207867pt;}
.x43{left:631.841333pt;}
.x72{left:640.466533pt;}
.x93{left:647.213600pt;}
.x42{left:653.822667pt;}
.x88{left:661.380400pt;}
.x3e{left:663.506832pt;}
.x35{left:685.097809pt;}
.x3b{left:692.991452pt;}
.x1{left:712.301467pt;}
}




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