
    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_bb37c5aa6f7e6baa9609a0ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174316;font-style:normal;font-weight: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_40576bf09bf0c63d67d7052f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;font-style:normal;font-weight: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_863725e670fc8b70d4ea996b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.173828;font-style:normal;font-weight: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_1594162998e85f3342687ff3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.640000;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.174316;font-style:normal;font-weight: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_75dae6e6cf5f674afe7c9f17.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight: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_4ddff6b205017c81720af5b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.004395;font-style:normal;font-weight: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_fb3fef09e09529bdb80efe5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995117;font-style:normal;font-weight: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_fde6e274a04ac6d2c3640528.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.fff{font-family:fff;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.174316;font-style:normal;font-weight: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_645f7cc5ea86ad4998daf4a9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.174316;font-style:normal;font-weight: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_63530b84a40b731afec45b68.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b55380e0ddd42741563515dd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.845000;font-style:normal;font-weight: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_7e970b5944ac34bcb3798df3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;font-style:normal;font-weight: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_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_f8cd1d8ac99a5805feca8b8d.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.174316;font-style:normal;font-weight: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_03eb3827838d4bfc9542a4bc.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.006348;font-style:normal;font-weight: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_25fc8d1d62a68a939016024b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.173340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_be6b7fc82cb174a17d6faefe.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.388000;font-style:normal;font-weight: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_bd082a83040b336ea7475e31.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.695312;font-style:normal;font-weight: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_4dd6363841a090b88a334fa4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-10.830000px;}
.v5{vertical-align:-6.666000px;}
.vc{vertical-align:-2.046000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.652000px;}
.va{vertical-align:13.212000px;}
.vd{vertical-align:16.794000px;}
.v3{vertical-align:19.530000px;}
.ve{vertical-align:20.604000px;}
.v1{vertical-align:21.702000px;}
.vb{vertical-align:22.782000px;}
.v6{vertical-align:23.910000px;}
.v8{vertical-align:28.392000px;}
.vf{vertical-align:30.504000px;}
.v7{vertical-align:35.520000px;}
.v10{vertical-align:49.344000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000479px;}
.ls13{letter-spacing:0.001133px;}
.ls27{letter-spacing:0.002100px;}
.ls1b{letter-spacing:0.003010px;}
.ls21{letter-spacing:0.003821px;}
.ls6{letter-spacing:0.004200px;}
.ls12{letter-spacing:0.004800px;}
.ls1a{letter-spacing:0.005498px;}
.lse{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.012422px;}
.ls15{letter-spacing:0.014580px;}
.ls2f{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.027000px;}
.ls29{letter-spacing:0.048697px;}
.ls2b{letter-spacing:0.075751px;}
.ls17{letter-spacing:0.111780px;}
.ls30{letter-spacing:0.124200px;}
.ls32{letter-spacing:0.124448px;}
.ls1c{letter-spacing:0.131220px;}
.ls34{letter-spacing:0.138276px;}
.ls10{letter-spacing:0.140400px;}
.lsa{letter-spacing:0.150300px;}
.ls11{letter-spacing:0.151200px;}
.ls2a{letter-spacing:0.151502px;}
.ls18{letter-spacing:2.988600px;}
.ls8{letter-spacing:10.360200px;}
.ls4{letter-spacing:11.954850px;}
.ls19{letter-spacing:12.466200px;}
.ls3b{letter-spacing:13.034400px;}
.ls31{letter-spacing:13.102200px;}
.ls38{letter-spacing:13.448400px;}
.ls39{letter-spacing:13.454400px;}
.ls14{letter-spacing:13.618200px;}
.ls9{letter-spacing:15.286200px;}
.ls3a{letter-spacing:17.180400px;}
.ls3c{letter-spacing:19.502400px;}
.ls7{letter-spacing:22.372200px;}
.ls1e{letter-spacing:23.656200px;}
.ls0{letter-spacing:57.415200px;}
.ls1{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls37{letter-spacing:92.438700px;}
.ls36{letter-spacing:94.292700px;}
.ls22{letter-spacing:186.935740px;}
.ls26{letter-spacing:302.345740px;}
.ls20{letter-spacing:316.781740px;}
.ls23{letter-spacing:354.275740px;}
.ls25{letter-spacing:384.953740px;}
.ls1f{letter-spacing:395.537740px;}
.ls24{letter-spacing:478.041821px;}
.lsc{letter-spacing:521.583084px;}
.lsb{letter-spacing:668.883096px;}
.ls28{letter-spacing:892.782000px;}
.lsf{letter-spacing:915.321567px;}
.ls33{letter-spacing:981.475834px;}
.ls2c{letter-spacing:982.205955px;}
.ls16{letter-spacing:1013.635620px;}
.ls2d{letter-spacing:1040.118061px;}
.ls35{letter-spacing:1090.528704px;}
.ls2e{letter-spacing:1228.447575px;}
.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;}
}
.wsef{word-spacing:-54.108000px;}
.ws25{word-spacing:-29.887800px;}
.ws6{word-spacing:-26.899200px;}
.ws28{word-spacing:-23.910300px;}
.ws9{word-spacing:-22.714800px;}
.ws4{word-spacing:-20.921400px;}
.ws83{word-spacing:-19.439155px;}
.ws24{word-spacing:-19.307519px;}
.ws1c{word-spacing:-19.247743px;}
.wsbb{word-spacing:-19.187968px;}
.ws78{word-spacing:-19.128192px;}
.ws77{word-spacing:-19.068416px;}
.wsd2{word-spacing:-19.008641px;}
.wsd1{word-spacing:-19.005528px;}
.ws107{word-spacing:-18.983400px;}
.ws106{word-spacing:-18.963528px;}
.ws9f{word-spacing:-18.889090px;}
.ws50{word-spacing:-18.829314px;}
.ws5c{word-spacing:-18.769538px;}
.wsd5{word-spacing:-18.649987px;}
.wsf6{word-spacing:-18.590212px;}
.wscc{word-spacing:-18.530436px;}
.wsf4{word-spacing:-18.470660px;}
.ws118{word-spacing:-18.446611px;}
.ws98{word-spacing:-18.390605px;}
.ws120{word-spacing:-18.351109px;}
.wsa8{word-spacing:-18.291334px;}
.ws40{word-spacing:-18.231558px;}
.wsa1{word-spacing:-18.171782px;}
.wsa2{word-spacing:-18.161400px;}
.ws1d{word-spacing:-18.112007px;}
.ws17{word-spacing:-18.052231px;}
.ws96{word-spacing:-17.932800px;}
.ws4e{word-spacing:-17.932680px;}
.wsb7{word-spacing:-17.900563px;}
.wsaf{word-spacing:-17.872904px;}
.ws7b{word-spacing:-17.813129px;}
.ws42{word-spacing:-17.753353px;}
.ws6f{word-spacing:-17.693578px;}
.wsff{word-spacing:-17.669539px;}
.ws56{word-spacing:-17.633802px;}
.ws21{word-spacing:-17.514251px;}
.wse1{word-spacing:-17.462390px;}
.wsb9{word-spacing:-17.454475px;}
.ws93{word-spacing:-17.394700px;}
.ws171{word-spacing:-17.376883px;}
.wsa9{word-spacing:-17.334924px;}
.wsee{word-spacing:-17.275148px;}
.ws121{word-spacing:-17.155597px;}
.ws9a{word-spacing:-17.107891px;}
.ws7f{word-spacing:-17.095822px;}
.ws64{word-spacing:-17.036046px;}
.ws34{word-spacing:-17.025686px;}
.wsad{word-spacing:-17.025552px;}
.wsae{word-spacing:-17.020886px;}
.wse0{word-spacing:-16.976270px;}
.ws5b{word-spacing:-16.916495px;}
.wsf1{word-spacing:-16.900483px;}
.ws19{word-spacing:-16.856719px;}
.ws102{word-spacing:-16.819114px;}
.ws2e{word-spacing:-16.796944px;}
.ws23{word-spacing:-16.737168px;}
.ws99{word-spacing:-16.677504px;}
.ws74{word-spacing:-16.677392px;}
.ws10a{word-spacing:-16.617617px;}
.ws57{word-spacing:-16.498066px;}
.wsdd{word-spacing:-16.438290px;}
.ws148{word-spacing:-16.408512px;}
.ws4d{word-spacing:-16.378514px;}
.ws14b{word-spacing:-16.354714px;}
.ws59{word-spacing:-16.318739px;}
.ws69{word-spacing:-16.258963px;}
.wsde{word-spacing:-16.139412px;}
.ws8d{word-spacing:-16.079636px;}
.wsb8{word-spacing:-16.031923px;}
.ws16{word-spacing:-16.019861px;}
.ws6c{word-spacing:-15.960085px;}
.ws72{word-spacing:-15.900310px;}
.ws4f{word-spacing:-15.840534px;}
.ws71{word-spacing:-15.780758px;}
.ws132{word-spacing:-15.762931px;}
.wsf5{word-spacing:-15.720983px;}
.ws14d{word-spacing:-15.655334px;}
.ws58{word-spacing:-15.601432px;}
.wsf3{word-spacing:-15.541656px;}
.ws26{word-spacing:-15.481880px;}
.ws47{word-spacing:-15.439469px;}
.ws53{word-spacing:-15.422105px;}
.ws101{word-spacing:-15.332544px;}
.wscd{word-spacing:-15.302554px;}
.ws100{word-spacing:-15.278746px;}
.ws8f{word-spacing:-15.242778px;}
.wsc{word-spacing:-15.183002px;}
.ws8{word-spacing:-15.003676px;}
.ws7{word-spacing:-14.943900px;}
.wsb5{word-spacing:-14.939400px;}
.wsb4{word-spacing:-14.925528px;}
.ws127{word-spacing:-14.902157px;}
.ws15{word-spacing:-14.884124px;}
.ws8b{word-spacing:-14.824349px;}
.ws41{word-spacing:-14.764573px;}
.wse2{word-spacing:-14.740762px;}
.ws97{word-spacing:-14.704798px;}
.ws143{word-spacing:-14.686963px;}
.ws45{word-spacing:-14.645022px;}
.ws46{word-spacing:-14.585246px;}
.ws170{word-spacing:-14.579366px;}
.ws16f{word-spacing:-14.525568px;}
.ws94{word-spacing:-14.525471px;}
.ws5a{word-spacing:-14.465695px;}
.ws1b{word-spacing:-14.405920px;}
.ws16d{word-spacing:-14.364173px;}
.ws90{word-spacing:-14.346144px;}
.ws12e{word-spacing:-14.310374px;}
.ws82{word-spacing:-14.286368px;}
.ws12f{word-spacing:-14.256576px;}
.wsfc{word-spacing:-14.249400px;}
.wse{word-spacing:-14.226593px;}
.wsfb{word-spacing:-14.192018px;}
.ws7c{word-spacing:-14.166817px;}
.ws80{word-spacing:-14.107042px;}
.ws9e{word-spacing:-14.047266px;}
.ws12d{word-spacing:-14.041382px;}
.ws153{word-spacing:-13.987584px;}
.ws3b{word-spacing:-13.987490px;}
.ws9d{word-spacing:-13.927715px;}
.ws38{word-spacing:-13.879987px;}
.ws81{word-spacing:-13.867939px;}
.ws152{word-spacing:-13.826189px;}
.ws66{word-spacing:-13.808164px;}
.ws36{word-spacing:-13.775453px;}
.ws108{word-spacing:-13.688612px;}
.ws109{word-spacing:-13.673400px;}
.ws160{word-spacing:-13.664794px;}
.ws76{word-spacing:-13.628837px;}
.wsf7{word-spacing:-13.569061px;}
.ws70{word-spacing:-13.509286px;}
.ws39{word-spacing:-13.503398px;}
.ws149{word-spacing:-13.467158px;}
.ws15f{word-spacing:-13.464854px;}
.ws13d{word-spacing:-13.459958px;}
.ws35{word-spacing:-13.449600px;}
.ws12{word-spacing:-13.449510px;}
.ws14e{word-spacing:-13.426925px;}
.ws15a{word-spacing:-13.423104px;}
.ws13b{word-spacing:-13.416182px;}
.ws141{word-spacing:-13.413446px;}
.ws137{word-spacing:-13.413389px;}
.ws13a{word-spacing:-13.411488px;}
.ws16a{word-spacing:-13.407888px;}
.wsf2{word-spacing:-13.395802px;}
.ws55{word-spacing:-13.389734px;}
.ws68{word-spacing:-13.329959px;}
.wscb{word-spacing:-13.288205px;}
.wsd6{word-spacing:-13.270183px;}
.ws73{word-spacing:-13.210408px;}
.wsaa{word-spacing:-13.151400px;}
.ws43{word-spacing:-13.150632px;}
.ws157{word-spacing:-13.126810px;}
.ws2c{word-spacing:-13.090856px;}
.ws44{word-spacing:-13.031081px;}
.ws122{word-spacing:-13.019213px;}
.ws51{word-spacing:-12.971305px;}
.ws48{word-spacing:-12.911616px;}
.ws65{word-spacing:-12.911530px;}
.ws123{word-spacing:-12.857818px;}
.ws32{word-spacing:-12.851754px;}
.ws16b{word-spacing:-12.804019px;}
.wsb6{word-spacing:-12.732203px;}
.ws89{word-spacing:-12.672427px;}
.wsd{word-spacing:-12.612652px;}
.ws1{word-spacing:-12.594683px;}
.ws3{word-spacing:-12.561089px;}
.ws60{word-spacing:-12.552876px;}
.ws0{word-spacing:-12.552840px;}
.ws131{word-spacing:-12.535027px;}
.ws31{word-spacing:-12.493100px;}
.ws125{word-spacing:-12.481229px;}
.ws52{word-spacing:-12.433325px;}
.ws37{word-spacing:-12.373632px;}
.ws14{word-spacing:-12.313774px;}
.ws166{word-spacing:-12.266035px;}
.ws2b{word-spacing:-12.253998px;}
.ws13{word-spacing:-12.194222px;}
.ws10c{word-spacing:-12.184637px;}
.ws139{word-spacing:-12.158438px;}
.wsa0{word-spacing:-12.134447px;}
.ws4c{word-spacing:-12.014896px;}
.ws29{word-spacing:-12.002971px;}
.ws1f{word-spacing:-11.979110px;}
.ws27{word-spacing:-11.964388px;}
.wsa{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.955120px;}
.ws10e{word-spacing:-11.889446px;}
.ws10d{word-spacing:-11.835648px;}
.ws22{word-spacing:-11.835569px;}
.ws133{word-spacing:-11.620454px;}
.ws85{word-spacing:-11.596466px;}
.ws13c{word-spacing:-11.566656px;}
.ws67{word-spacing:-11.536691px;}
.ws12a{word-spacing:-11.512858px;}
.ws91{word-spacing:-11.476915px;}
.ws2f{word-spacing:-11.417140px;}
.ws145{word-spacing:-11.405261px;}
.ws8e{word-spacing:-11.357364px;}
.ws126{word-spacing:-11.351462px;}
.ws173{word-spacing:-11.297664px;}
.ws117{word-spacing:-11.297588px;}
.ws154{word-spacing:-11.243866px;}
.ws8a{word-spacing:-11.237813px;}
.ws115{word-spacing:-11.178037px;}
.ws3c{word-spacing:-11.118262px;}
.ws150{word-spacing:-11.082470px;}
.ws3d{word-spacing:-11.058486px;}
.wsfe{word-spacing:-11.028672px;}
.ws88{word-spacing:-10.998710px;}
.ws2d{word-spacing:-10.938935px;}
.ws54{word-spacing:-10.879159px;}
.ws1a{word-spacing:-10.819384px;}
.ws12b{word-spacing:-10.813478px;}
.ws113{word-spacing:-10.775400px;}
.ws168{word-spacing:-10.759680px;}
.ws103{word-spacing:-10.759608px;}
.ws112{word-spacing:-10.755528px;}
.ws158{word-spacing:-10.705882px;}
.ws9b{word-spacing:-10.699832px;}
.ws16c{word-spacing:-10.652083px;}
.wsf{word-spacing:-10.640057px;}
.ws3e{word-spacing:-10.580281px;}
.wsb1{word-spacing:-10.553400px;}
.ws155{word-spacing:-10.544486px;}
.wsb0{word-spacing:-10.533528px;}
.ws62{word-spacing:-10.520506px;}
.wsc7{word-spacing:-10.490688px;}
.ws61{word-spacing:-10.460730px;}
.wsc8{word-spacing:-10.436890px;}
.ws84{word-spacing:-10.400954px;}
.ws4b{word-spacing:-10.329293px;}
.ws33{word-spacing:-10.281403px;}
.ws15b{word-spacing:-10.275494px;}
.ws14c{word-spacing:-10.221696px;}
.ws92{word-spacing:-10.221628px;}
.ws129{word-spacing:-10.167898px;}
.wsdc{word-spacing:-10.161852px;}
.ws14f{word-spacing:-10.114099px;}
.wsda{word-spacing:-10.060301px;}
.ws86{word-spacing:-10.042301px;}
.ws172{word-spacing:-10.006502px;}
.ws6b{word-spacing:-9.982525px;}
.ws140{word-spacing:-9.845107px;}
.ws5e{word-spacing:-9.803198px;}
.ws13e{word-spacing:-9.791309px;}
.ws13f{word-spacing:-9.757306px;}
.ws5d{word-spacing:-9.743423px;}
.wsd9{word-spacing:-9.737510px;}
.ws12c{word-spacing:-9.683712px;}
.wsdf{word-spacing:-9.683647px;}
.ws11f{word-spacing:-9.564096px;}
.ws138{word-spacing:-9.522317px;}
.ws10{word-spacing:-9.504320px;}
.wsfd{word-spacing:-9.468518px;}
.ws75{word-spacing:-9.444545px;}
.ws3a{word-spacing:-9.384769px;}
.ws124{word-spacing:-9.360922px;}
.wsf8{word-spacing:-9.324994px;}
.ws79{word-spacing:-9.265218px;}
.wsc5{word-spacing:-9.253325px;}
.wsc6{word-spacing:-9.199526px;}
.ws63{word-spacing:-9.145667px;}
.wsd3{word-spacing:-9.085891px;}
.ws5{word-spacing:-9.060448px;}
.ws87{word-spacing:-9.026116px;}
.ws167{word-spacing:-9.012614px;}
.ws144{word-spacing:-8.984333px;}
.ws147{word-spacing:-8.968733px;}
.ws14a{word-spacing:-8.966467px;}
.ws7e{word-spacing:-8.966340px;}
.wsd4{word-spacing:-8.906564px;}
.ws6a{word-spacing:-8.846789px;}
.wsf9{word-spacing:-8.787013px;}
.wsfa{word-spacing:-8.753400px;}
.ws104{word-spacing:-8.727238px;}
.ws15d{word-spacing:-8.715341px;}
.ws15c{word-spacing:-8.661542px;}
.ws163{word-spacing:-8.607744px;}
.ws18{word-spacing:-8.607686px;}
.ws95{word-spacing:-8.488135px;}
.ws7d{word-spacing:-8.428360px;}
.ws119{word-spacing:-8.368584px;}
.ws8c{word-spacing:-8.249033px;}
.ws169{word-spacing:-8.231155px;}
.ws7a{word-spacing:-8.129482px;}
.ws4a{word-spacing:-8.069760px;}
.ws116{word-spacing:-8.069706px;}
.ws159{word-spacing:-8.015962px;}
.wsb{word-spacing:-7.986040px;}
.ws151{word-spacing:-7.962163px;}
.wsd7{word-spacing:-7.908365px;}
.wsd0{word-spacing:-7.890379px;}
.wsd8{word-spacing:-7.854566px;}
.ws5f{word-spacing:-7.830604px;}
.ws130{word-spacing:-7.812451px;}
.ws6d{word-spacing:-7.770828px;}
.ws6e{word-spacing:-7.711052px;}
.ws134{word-spacing:-7.639373px;}
.ws135{word-spacing:-7.585574px;}
.ws30{word-spacing:-7.531726px;}
.ws11d{word-spacing:-7.471950px;}
.ws165{word-spacing:-7.424179px;}
.ws3f{word-spacing:-7.412174px;}
.ws162{word-spacing:-7.370381px;}
.wsa4{word-spacing:-7.316582px;}
.wsba{word-spacing:-7.274940px;}
.wsb2{word-spacing:-7.232848px;}
.wsed{word-spacing:-6.933970px;}
.ws142{word-spacing:-6.724800px;}
.ws20{word-spacing:-6.694867px;}
.wsdb{word-spacing:-6.265114px;}
.ws9c{word-spacing:-6.216662px;}
.ws11b{word-spacing:-6.097111px;}
.ws11e{word-spacing:-5.977560px;}
.ws161{word-spacing:-5.756429px;}
.wsb3{word-spacing:-5.618906px;}
.wsa6{word-spacing:-5.379840px;}
.ws114{word-spacing:-5.379804px;}
.wsa7{word-spacing:-5.326042px;}
.ws11a{word-spacing:-5.260253px;}
.wsbc{word-spacing:-4.346940px;}
.wsc1{word-spacing:-3.593983px;}
.wsbe{word-spacing:-3.588795px;}
.ws11c{word-spacing:-3.586536px;}
.wsac{word-spacing:-2.851315px;}
.ws128{word-spacing:-2.484374px;}
.ws1e{word-spacing:-1.630220px;}
.ws49{word-spacing:-1.344960px;}
.ws156{word-spacing:-0.215194px;}
.wsa3{word-spacing:-0.060120px;}
.ws10b{word-spacing:-0.054108px;}
.wsa5{word-spacing:-0.054000px;}
.ws16e{word-spacing:-0.053798px;}
.wsab{word-spacing:-0.048600px;}
.ws2a{word-spacing:0.000000px;}
.ws146{word-spacing:0.860774px;}
.ws15e{word-spacing:4.411469px;}
.ws164{word-spacing:5.541235px;}
.wsc9{word-spacing:7.908365px;}
.wsca{word-spacing:7.962163px;}
.wse6{word-spacing:11.919734px;}
.wse8{word-spacing:11.920934px;}
.wse3{word-spacing:11.923334px;}
.ws2{word-spacing:14.658841px;}
.ws111{word-spacing:15.601536px;}
.ws10f{word-spacing:15.655334px;}
.ws110{word-spacing:15.709133px;}
.wsbd{word-spacing:75.024140px;}
.wsf0{word-spacing:105.443863px;}
.wsce{word-spacing:180.512467px;}
.ws136{word-spacing:185.548997px;}
.wsc3{word-spacing:221.688300px;}
.wsc4{word-spacing:242.609700px;}
.wscf{word-spacing:366.716400px;}
.wse5{word-spacing:383.365350px;}
.wsec{word-spacing:424.960462px;}
.wse9{word-spacing:436.914562px;}
.wsea{word-spacing:441.402562px;}
.wseb{word-spacing:448.870462px;}
.wse7{word-spacing:453.352462px;}
.wse4{word-spacing:473.067110px;}
.ws105{word-spacing:510.500170px;}
.wsc2{word-spacing:517.255506px;}
.wsbf{word-spacing:1034.791060px;}
.wsc0{word-spacing:1079.811706px;}
._d{margin-left:-6.575308px;}
._1c{margin-left:-4.828516px;}
._5{margin-left:-3.347442px;}
._3{margin-left:-1.829146px;}
._4{width:2.732287px;}
._18{width:9.121769px;}
._14{width:10.384272px;}
._0{width:11.841512px;}
._13{width:13.395802px;}
._e{width:14.441797px;}
._52{width:15.470113px;}
._c{width:16.557841px;}
._16{width:18.052231px;}
._b{width:19.164070px;}
._8{width:20.323704px;}
._19{width:21.339889px;}
._15{width:22.449732px;}
._1{width:23.753483px;}
._a{width:24.866650px;}
._6{width:26.779469px;}
._9{width:28.668390px;}
._11{width:30.491024px;}
._1d{width:31.621292px;}
._7{width:32.757029px;}
._1a{width:33.892765px;}
._2{width:35.829734px;}
._1b{width:37.276076px;}
._1f{width:38.318155px;}
._43{width:39.451896px;}
._1e{width:40.587632px;}
._12{width:42.201574px;}
._27{width:44.032048px;}
._17{width:46.183075px;}
._3e{width:52.209649px;}
._51{width:53.924466px;}
._3d{width:60.201789px;}
._50{width:61.848000px;}
._48{width:71.713267px;}
._30{width:74.062550px;}
._3c{width:79.854605px;}
._39{width:88.399161px;}
._47{width:91.833869px;}
._29{width:98.193114px;}
._23{width:101.729078px;}
._3a{width:108.072328px;}
._28{width:120.202427px;}
._22{width:122.068570px;}
._3b{width:124.570994px;}
._44{width:129.492749px;}
._45{width:141.382195px;}
._46{width:144.394906px;}
._4e{width:151.496294px;}
._4f{width:159.189466px;}
._49{width:166.506432px;}
._4a{width:169.519142px;}
._21{width:183.087821px;}
._37{width:205.585976px;}
._4c{width:207.877402px;}
._2c{width:214.307524px;}
._4d{width:226.760640px;}
._4b{width:231.010714px;}
._2d{width:232.145700px;}
._2e{width:243.302758px;}
._2f{width:253.067700px;}
._38{width:254.807784px;}
._35{width:305.781600px;}
._33{width:319.234800px;}
._31{width:332.686800px;}
._34{width:336.962400px;}
._32{width:350.409600px;}
._36{width:356.429732px;}
._24{width:417.130013px;}
._26{width:472.150800px;}
._25{width:533.078400px;}
._40{width:602.819770px;}
._42{width:606.714739px;}
._41{width:621.513600px;}
._3f{width:630.452554px;}
._2b{width:895.200300px;}
._2a{width:1018.786765px;}
._f{width:1773.626521px;}
._20{width:2493.686700px;}
._10{width:2517.596700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:48.096000px;}
.fsc{font-size:48.600000px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:54.108000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.669937px;}
.yc5{bottom:2.725487px;}
.y62{bottom:3.584084px;}
.y13a{bottom:4.484994px;}
.y5d{bottom:4.594614px;}
.y1ac{bottom:5.116896px;}
.y1b7{bottom:5.238396px;}
.y1bb{bottom:5.639346px;}
.y153{bottom:5.650020px;}
.y155{bottom:5.716296px;}
.y118{bottom:6.589768px;}
.y108{bottom:6.720495px;}
.y1d9{bottom:6.880116px;}
.y1c0{bottom:6.961530px;}
.y1d5{bottom:7.783478px;}
.y10d{bottom:8.326917px;}
.y1b6{bottom:17.955370px;}
.y107{bottom:26.970414px;}
.y3f{bottom:45.921000px;}
.y57{bottom:99.720000px;}
.y15{bottom:100.351500px;}
.y28a{bottom:105.961500px;}
.yf1{bottom:110.053500px;}
.y3e{bottom:110.340000px;}
.y1f5{bottom:111.945000px;}
.y1ae{bottom:112.522794px;}
.y84{bottom:114.946500px;}
.yab{bottom:116.407500px;}
.y1b4{bottom:116.674500px;}
.y14{bottom:118.239000px;}
.y56{bottom:120.612000px;}
.y1d7{bottom:121.050000px;}
.ye1{bottom:121.309500px;}
.y13c{bottom:121.518000px;}
.y1c2{bottom:122.871000px;}
.y20c{bottom:123.438000px;}
.y289{bottom:125.112000px;}
.y1b0{bottom:125.320689px;}
.y258{bottom:126.561000px;}
.y1b1{bottom:129.614159px;}
.yf0{bottom:130.945500px;}
.y1b9{bottom:131.062500px;}
.y3d{bottom:131.230500px;}
.y1f4{bottom:132.835500px;}
.y83{bottom:135.838500px;}
.y1b3{bottom:135.906000px;}
.y13{bottom:136.128000px;}
.yaa{bottom:137.299500px;}
.y60{bottom:138.715500px;}
.y1d6{bottom:140.283000px;}
.y13b{bottom:140.751000px;}
.y55{bottom:141.502500px;}
.y1c1{bottom:142.104000px;}
.ye0{bottom:142.201500px;}
.y228{bottom:144.130500px;}
.y288{bottom:144.262500px;}
.y20b{bottom:144.328500px;}
.y257{bottom:145.711500px;}
.y1b8{bottom:150.294000px;}
.yef{bottom:151.837500px;}
.y3c{bottom:152.122500px;}
.y105{bottom:153.058500px;}
.y1f3{bottom:153.727500px;}
.y12{bottom:154.015500px;}
.y14d{bottom:155.809500px;}
.y128{bottom:156.640500px;}
.y82{bottom:156.729000px;}
.y152{bottom:157.768030px;}
.y5f{bottom:157.948500px;}
.ya9{bottom:158.190000px;}
.y1ab{bottom:158.988000px;}
.y54{bottom:162.394500px;}
.y1d4{bottom:162.790050px;}
.ydf{bottom:163.093500px;}
.y287{bottom:163.413000px;}
.y139{bottom:163.440150px;}
.y227{bottom:163.630500px;}
.y256{bottom:164.862000px;}
.y20a{bottom:165.220500px;}
.y1be{bottom:168.856500px;}
.y11{bottom:171.903000px;}
.yee{bottom:172.728000px;}
.y3b{bottom:173.014500px;}
.y1b5{bottom:173.057100px;}
.y184{bottom:173.218500px;}
.y104{bottom:173.949000px;}
.y1f2{bottom:174.619500px;}
.y14c{bottom:175.042500px;}
.y18f{bottom:176.140500px;}
.y5e{bottom:177.181500px;}
.y81{bottom:177.621000px;}
.ya8{bottom:179.082000px;}
.y116{bottom:179.791500px;}
.y286{bottom:182.563500px;}
.y226{bottom:183.129000px;}
.y53{bottom:183.286500px;}
.yde{bottom:183.984000px;}
.y255{bottom:184.012500px;}
.y209{bottom:186.112500px;}
.y158{bottom:187.606500px;}
.y10{bottom:189.792000px;}
.yed{bottom:193.620000px;}
.y3a{bottom:193.905000px;}
.y183{bottom:194.110500px;}
.y14b{bottom:194.275500px;}
.y103{bottom:194.841000px;}
.y18e{bottom:195.373500px;}
.y1f1{bottom:195.511500px;}
.y80{bottom:198.513000px;}
.ya7{bottom:199.974000px;}
.y115{bottom:200.683500px;}
.y5c{bottom:200.914500px;}
.y285{bottom:201.714000px;}
.y225{bottom:202.627500px;}
.y254{bottom:203.163000px;}
.y52{bottom:204.177000px;}
.ydd{bottom:204.876000px;}
.y157{bottom:206.839500px;}
.y208{bottom:207.003000px;}
.yf{bottom:207.679500px;}
.y18d{bottom:214.606500px;}
.y39{bottom:214.797000px;}
.y182{bottom:215.002500px;}
.y102{bottom:215.733000px;}
.y1f0{bottom:216.402000px;}
.y7f{bottom:219.403500px;}
.ya6{bottom:220.864500px;}
.y114{bottom:221.575500px;}
.y224{bottom:222.126000px;}
.y253{bottom:222.313500px;}
.y51{bottom:225.069000px;}
.ye{bottom:225.567000px;}
.ydc{bottom:225.768000px;}
.y156{bottom:226.072500px;}
.y207{bottom:227.895000px;}
.yec{bottom:229.248000px;}
.y18c{bottom:233.839500px;}
.y38{bottom:235.689000px;}
.y181{bottom:235.893000px;}
.y101{bottom:236.625000px;}
.y1ef{bottom:237.294000px;}
.y284{bottom:240.015000px;}
.y7e{bottom:240.295500px;}
.y252{bottom:241.464000px;}
.y223{bottom:241.624500px;}
.ya5{bottom:241.756500px;}
.y113{bottom:242.466000px;}
.y1bf{bottom:244.381980px;}
.y50{bottom:245.961000px;}
.ydb{bottom:246.658500px;}
.yeb{bottom:248.481000px;}
.y154{bottom:248.509050px;}
.y206{bottom:248.787000px;}
.y1af{bottom:252.166073px;}
.yd{bottom:252.421500px;}
.y10c{bottom:254.026917px;}
.y37{bottom:256.579500px;}
.y180{bottom:256.785000px;}
.y100{bottom:257.515500px;}
.y1ee{bottom:258.186000px;}
.y283{bottom:259.165500px;}
.y251{bottom:260.614500px;}
.yc3{bottom:261.123000px;}
.y7d{bottom:261.187500px;}
.ya4{bottom:262.648500px;}
.y112{bottom:263.358000px;}
.y1ad{bottom:267.475932px;}
.yda{bottom:267.550500px;}
.yea{bottom:267.714000px;}
.y205{bottom:269.677500px;}
.yc{bottom:270.310500px;}
.y17f{bottom:277.677000px;}
.y282{bottom:278.316000px;}
.yff{bottom:278.407500px;}
.y222{bottom:279.057000px;}
.y1ed{bottom:279.076500px;}
.y250{bottom:279.765000px;}
.y4f{bottom:281.037000px;}
.y36{bottom:281.955000px;}
.yc2{bottom:282.015000px;}
.y7c{bottom:282.078000px;}
.ya3{bottom:283.539000px;}
.y111{bottom:284.250000px;}
.y1b2{bottom:287.806928px;}
.yb{bottom:288.198000px;}
.yd9{bottom:288.442500px;}
.y204{bottom:295.053000px;}
.y281{bottom:297.468000px;}
.y17e{bottom:298.569000px;}
.y24f{bottom:298.915500px;}
.yfe{bottom:299.299500px;}
.y221{bottom:299.947500px;}
.y1ec{bottom:299.968500px;}
.y4e{bottom:300.270000px;}
.yc1{bottom:302.907000px;}
.y7b{bottom:302.970000px;}
.ya2{bottom:304.431000px;}
.ya{bottom:306.085500px;}
.yd8{bottom:309.334500px;}
.y110{bottom:309.624000px;}
.y151{bottom:309.805577px;}
.y280{bottom:316.618500px;}
.y24e{bottom:318.066000px;}
.y17d{bottom:319.459500px;}
.y4d{bottom:319.503000px;}
.yfd{bottom:320.190000px;}
.y220{bottom:320.839500px;}
.y1eb{bottom:320.860500px;}
.yc0{bottom:323.797500px;}
.y7a{bottom:323.862000px;}
.y9{bottom:323.974500px;}
.ya1{bottom:325.323000px;}
.yd7{bottom:330.225000px;}
.y203{bottom:333.877500px;}
.y27f{bottom:335.769000px;}
.y24d{bottom:337.218000px;}
.y17c{bottom:340.351500px;}
.yfc{bottom:341.082000px;}
.y21f{bottom:341.731500px;}
.y1ea{bottom:341.751000px;}
.y8{bottom:341.862000px;}
.ybf{bottom:344.689500px;}
.y79{bottom:344.752500px;}
.ya0{bottom:346.213500px;}
.y10f{bottom:350.736000px;}
.yd6{bottom:351.117000px;}
.y202{bottom:354.769500px;}
.y27e{bottom:354.919500px;}
.y7{bottom:359.749500px;}
.y24c{bottom:360.850500px;}
.y35{bottom:361.155000px;}
.yfb{bottom:361.974000px;}
.y21e{bottom:362.622000px;}
.y1e9{bottom:362.643000px;}
.ybe{bottom:365.581500px;}
.y78{bottom:365.644500px;}
.y9f{bottom:367.105500px;}
.y10e{bottom:369.969000px;}
.yd5{bottom:372.009000px;}
.y27d{bottom:374.070000px;}
.y201{bottom:375.660000px;}
.y6{bottom:377.638500px;}
.y34{bottom:382.047000px;}
.yfa{bottom:382.864500px;}
.y21d{bottom:383.514000px;}
.y1e8{bottom:383.535000px;}
.ybd{bottom:386.473500px;}
.y77{bottom:386.536500px;}
.y17b{bottom:387.951000px;}
.y9e{bottom:387.997500px;}
.yd4{bottom:392.899500px;}
.y10b{bottom:392.955000px;}
.y27c{bottom:393.220500px;}
.y200{bottom:396.552000px;}
.y14e{bottom:399.677535px;}
.y24b{bottom:400.752000px;}
.y5{bottom:401.503500px;}
.yf9{bottom:403.756500px;}
.y21c{bottom:404.406000px;}
.y1e7{bottom:404.425500px;}
.ybc{bottom:407.364000px;}
.y76{bottom:407.428500px;}
.y9d{bottom:408.889500px;}
.y17a{bottom:411.669000px;}
.y27b{bottom:412.371000px;}
.yd3{bottom:413.791500px;}
.y1ff{bottom:417.444000px;}
.y4{bottom:419.391000px;}
.y24a{bottom:420.250500px;}
.y33{bottom:420.871500px;}
.yf8{bottom:424.648500px;}
.y21b{bottom:425.296500px;}
.y1e6{bottom:425.317500px;}
.ybb{bottom:428.256000px;}
.y75{bottom:428.319000px;}
.y9c{bottom:429.780000px;}
.y27a{bottom:431.521500px;}
.yd2{bottom:434.683500px;}
.y179{bottom:435.385500px;}
.y3{bottom:437.280000px;}
.y1fe{bottom:438.334500px;}
.y249{bottom:439.749000px;}
.y32{bottom:441.762000px;}
.yf7{bottom:445.539000px;}
.y28d{bottom:445.942500px;}
.y21a{bottom:446.188500px;}
.y1e5{bottom:446.209500px;}
.yba{bottom:449.148000px;}
.y74{bottom:449.211000px;}
.y9b{bottom:450.672000px;}
.y2{bottom:455.167500px;}
.yd1{bottom:455.574000px;}
.y178{bottom:459.102000px;}
.y1fd{bottom:459.226500px;}
.y248{bottom:459.247500px;}
.y150{bottom:461.842172px;}
.y31{bottom:462.654000px;}
.y28c{bottom:465.093000px;}
.yf6{bottom:466.431000px;}
.y219{bottom:467.080500px;}
.y1e4{bottom:467.101500px;}
.y279{bottom:469.822500px;}
.y138{bottom:469.831500px;}
.yb9{bottom:470.038500px;}
.y73{bottom:470.103000px;}
.y9a{bottom:471.564000px;}
.yd0{bottom:476.466000px;}
.y247{bottom:478.746000px;}
.y1{bottom:479.032500px;}
.y1fc{bottom:480.118500px;}
.y177{bottom:482.820000px;}
.y30{bottom:483.546000px;}
.y28b{bottom:484.243500px;}
.yf5{bottom:487.323000px;}
.y218{bottom:487.972500px;}
.y1e3{bottom:487.992000px;}
.y278{bottom:488.973000px;}
.y137{bottom:490.723500px;}
.yb8{bottom:490.930500px;}
.y72{bottom:490.993500px;}
.y99{bottom:492.454500px;}
.y5b{bottom:492.841500px;}
.ycf{bottom:497.358000px;}
.y246{bottom:498.246000px;}
.y1fb{bottom:501.009000px;}
.y2f{bottom:504.436500px;}
.y176{bottom:506.536500px;}
.y1aa{bottom:507.141000px;}
.y277{bottom:508.123500px;}
.yf4{bottom:508.215000px;}
.y217{bottom:508.863000px;}
.y1e2{bottom:508.884000px;}
.y136{bottom:511.615500px;}
.yb7{bottom:511.822500px;}
.y71{bottom:511.885500px;}
.y5a{bottom:512.074500px;}
.y98{bottom:513.346500px;}
.y245{bottom:517.744500px;}
.yce{bottom:518.248500px;}
.y1fa{bottom:521.901000px;}
.y2e{bottom:525.328500px;}
.y276{bottom:527.274000px;}
.y1a9{bottom:528.031500px;}
.y216{bottom:529.755000px;}
.y1e1{bottom:529.776000px;}
.y175{bottom:530.254500px;}
.y135{bottom:532.506000px;}
.yb6{bottom:532.713000px;}
.y70{bottom:532.777500px;}
.yf3{bottom:533.589000px;}
.y97{bottom:534.238500px;}
.y58{bottom:534.908100px;}
.y244{bottom:537.243000px;}
.y127{bottom:538.677000px;}
.ycd{bottom:539.140500px;}
.y1f9{bottom:542.793000px;}
.y2d{bottom:546.220500px;}
.y275{bottom:546.424500px;}
.y1a8{bottom:548.923500px;}
.y215{bottom:550.647000px;}
.y1e0{bottom:550.666500px;}
.y134{bottom:553.398000px;}
.yb5{bottom:553.605000px;}
.y6f{bottom:553.668000px;}
.y174{bottom:553.971000px;}
.y96{bottom:555.129000px;}
.y243{bottom:556.741500px;}
.y126{bottom:559.569000px;}
.ycc{bottom:560.032500px;}
.y1f8{bottom:563.683500px;}
.y274{bottom:565.575000px;}
.yf2{bottom:565.735500px;}
.y2c{bottom:567.112500px;}
.y1d3{bottom:567.480000px;}
.y1a7{bottom:569.815500px;}
.y214{bottom:571.537500px;}
.y1df{bottom:571.558500px;}
.y133{bottom:574.290000px;}
.yb4{bottom:574.497000px;}
.y6e{bottom:574.560000px;}
.y95{bottom:576.021000px;}
.y242{bottom:576.240000px;}
.y173{bottom:577.689000px;}
.y125{bottom:580.461000px;}
.ycb{bottom:580.924500px;}
.y273{bottom:584.725500px;}
.y2b{bottom:588.003000px;}
.y1d2{bottom:588.372000px;}
.y1a6{bottom:590.706000px;}
.y213{bottom:592.429500px;}
.y1de{bottom:592.450500px;}
.y132{bottom:595.182000px;}
.yb3{bottom:595.387500px;}
.y6d{bottom:595.452000px;}
.y241{bottom:595.738500px;}
.y94{bottom:596.913000px;}
.y1f7{bottom:599.311500px;}
.y124{bottom:601.351500px;}
.y172{bottom:601.405500px;}
.yca{bottom:601.815000px;}
.y272{bottom:603.876000px;}
.y2a{bottom:608.895000px;}
.y1d1{bottom:609.264000px;}
.y1a5{bottom:611.598000px;}
.y212{bottom:613.321500px;}
.y1dd{bottom:613.341000px;}
.y14f{bottom:613.960172px;}
.y240{bottom:615.238500px;}
.y131{bottom:616.072500px;}
.yb2{bottom:616.279500px;}
.y6c{bottom:616.342500px;}
.y14a{bottom:616.566000px;}
.y93{bottom:617.803500px;}
.y1f6{bottom:618.544500px;}
.y123{bottom:622.243500px;}
.yc9{bottom:622.707000px;}
.y271{bottom:623.026500px;}
.y171{bottom:625.122000px;}
.y29{bottom:629.787000px;}
.y1d0{bottom:630.154500px;}
.y1a4{bottom:632.490000px;}
.y211{bottom:634.212000px;}
.y1dc{bottom:634.233000px;}
.y23f{bottom:634.737000px;}
.y130{bottom:636.964500px;}
.yb1{bottom:637.171500px;}
.y6b{bottom:637.234500px;}
.y149{bottom:637.458000px;}
.y92{bottom:638.695500px;}
.y270{bottom:642.177000px;}
.y122{bottom:643.135500px;}
.yc8{bottom:643.599000px;}
.y170{bottom:648.840000px;}
.y28{bottom:650.677500px;}
.y4c{bottom:650.688000px;}
.y1cf{bottom:651.046500px;}
.y18b{bottom:652.432500px;}
.y1a3{bottom:653.380500px;}
.y23e{bottom:654.235500px;}
.y210{bottom:655.104000px;}
.y1bd{bottom:656.790000px;}
.y12f{bottom:657.856500px;}
.yb0{bottom:658.063500px;}
.y6a{bottom:658.126500px;}
.y148{bottom:658.350000px;}
.y91{bottom:659.587500px;}
.y26f{bottom:661.327500px;}
.y121{bottom:664.026000px;}
.yc7{bottom:664.489500px;}
.y1db{bottom:669.861000px;}
.y27{bottom:671.569500px;}
.y1ce{bottom:671.938500px;}
.y16f{bottom:672.556500px;}
.y18a{bottom:673.323000px;}
.y23d{bottom:673.734000px;}
.y1a2{bottom:674.272500px;}
.y16d{bottom:674.739000px;}
.y20f{bottom:675.996000px;}
.y1bc{bottom:676.023000px;}
.y12e{bottom:678.747000px;}
.yaf{bottom:678.954000px;}
.y69{bottom:679.018500px;}
.y147{bottom:679.240500px;}
.y90{bottom:680.479500px;}
.y16c{bottom:682.297500px;}
.y120{bottom:684.918000px;}
.y1da{bottom:689.094000px;}
.y26{bottom:692.461500px;}
.y1cd{bottom:692.829000px;}
.y23c{bottom:693.232500px;}
.y189{bottom:694.215000px;}
.y16e{bottom:696.274500px;}
.y20e{bottom:696.886500px;}
.y26e{bottom:699.630000px;}
.y12d{bottom:699.639000px;}
.y1a1{bottom:699.648000px;}
.yae{bottom:699.846000px;}
.y68{bottom:699.909000px;}
.yc6{bottom:700.117500px;}
.y8f{bottom:701.370000px;}
.y1ba{bottom:701.947200px;}
.y11f{bottom:705.810000px;}
.y1d8{bottom:712.181400px;}
.y23b{bottom:712.731000px;}
.y25{bottom:713.352000px;}
.y1cc{bottom:713.721000px;}
.y188{bottom:715.107000px;}
.y20d{bottom:717.778500px;}
.y26d{bottom:718.780500px;}
.y12c{bottom:720.531000px;}
.yad{bottom:720.738000px;}
.y67{bottom:720.801000px;}
.y8e{bottom:722.262000px;}
.yc4{bottom:723.720000px;}
.y146{bottom:725.644500px;}
.y16b{bottom:727.894500px;}
.y11e{bottom:731.184000px;}
.y23a{bottom:732.229500px;}
.y24{bottom:734.244000px;}
.y1cb{bottom:734.613000px;}
.y187{bottom:735.997500px;}
.y26c{bottom:737.931000px;}
.y12b{bottom:741.421500px;}
.y66{bottom:741.693000px;}
.y8d{bottom:743.154000px;}
.y145{bottom:745.029000px;}
.yac{bottom:746.112000px;}
.y1a0{bottom:747.760500px;}
.y19f{bottom:754.006500px;}
.y23{bottom:755.136000px;}
.y1ca{bottom:755.503500px;}
.y16a{bottom:756.021000px;}
.y186{bottom:756.889500px;}
.y26b{bottom:757.081500px;}
.y239{bottom:757.906500px;}
.y65{bottom:762.583500px;}
.y8c{bottom:764.044500px;}
.y144{bottom:764.412000px;}
.y12a{bottom:766.797000px;}
.y19d{bottom:770.722500px;}
.y19e{bottom:772.213500px;}
.y22{bottom:776.026500px;}
.y26a{bottom:776.232000px;}
.y1c9{bottom:776.395500px;}
.y169{bottom:776.913000px;}
.y238{bottom:781.888500px;}
.y143{bottom:783.571500px;}
.y11d{bottom:784.269000px;}
.y8b{bottom:784.936500px;}
.y185{bottom:791.527500px;}
.y269{bottom:795.382500px;}
.y142{bottom:795.526500px;}
.y19c{bottom:796.555500px;}
.y21{bottom:796.918500px;}
.y1c8{bottom:797.287500px;}
.y168{bottom:797.805000px;}
.y64{bottom:798.211500px;}
.y19b{bottom:802.249500px;}
.y129{bottom:802.425000px;}
.y8a{bottom:805.828500px;}
.y11c{bottom:808.092000px;}
.y268{bottom:814.533000px;}
.y141{bottom:814.909500px;}
.y63{bottom:817.444500px;}
.y1c7{bottom:818.179500px;}
.y167{bottom:818.695500px;}
.y237{bottom:820.711500px;}
.y19a{bottom:821.005500px;}
.y199{bottom:825.642000px;}
.y89{bottom:826.719000px;}
.y20{bottom:826.776000px;}
.y267{bottom:833.683500px;}
.y140{bottom:834.292500px;}
.y166{bottom:839.587500px;}
.y11b{bottom:839.895000px;}
.y236{bottom:840.211500px;}
.y61{bottom:840.519000px;}
.y198{bottom:843.447000px;}
.y88{bottom:847.611000px;}
.y197{bottom:849.142500px;}
.y266{bottom:852.834000px;}
.y13f{bottom:853.677000px;}
.y165{bottom:860.479500px;}
.y1c6{bottom:865.779000px;}
.y1f{bottom:866.796000px;}
.y196{bottom:868.009500px;}
.y87{bottom:868.503000px;}
.y235{bottom:868.675500px;}
.y11a{bottom:869.589000px;}
.y265{bottom:871.984500px;}
.y195{bottom:873.705000px;}
.y164{bottom:881.370000px;}
.y13e{bottom:882.159000px;}
.y1e{bottom:882.936000px;}
.y234{bottom:888.175500px;}
.y119{bottom:888.820500px;}
.y86{bottom:889.393500px;}
.y1c5{bottom:889.495500px;}
.y264{bottom:891.135000px;}
.y194{bottom:892.570500px;}
.y193{bottom:898.381500px;}
.y163{bottom:902.262000px;}
.y1d{bottom:903.415500px;}
.y233{bottom:907.674000px;}
.y85{bottom:910.285500px;}
.y117{bottom:912.053250px;}
.y1c4{bottom:913.213500px;}
.y1c{bottom:915.214500px;}
.y10a{bottom:920.971500px;}
.y192{bottom:921.477000px;}
.y162{bottom:923.154000px;}
.ye9{bottom:926.112000px;}
.y232{bottom:927.172500px;}
.y191{bottom:928.575000px;}
.y263{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.y1b{bottom:935.694000px;}
.y109{bottom:940.204500px;}
.y161{bottom:944.046000px;}
.y1c3{bottom:944.833500px;}
.y231{bottom:946.671000px;}
.ye8{bottom:947.004000px;}
.y262{bottom:948.586500px;}
.y13d{bottom:952.068000px;}
.y4a{bottom:952.069500px;}
.y106{bottom:962.802000px;}
.y160{bottom:964.936500px;}
.y190{bottom:965.725500px;}
.y230{bottom:966.169500px;}
.y261{bottom:967.737000px;}
.ye7{bottom:967.896000px;}
.y49{bottom:972.960000px;}
.y1a{bottom:980.371500px;}
.y15f{bottom:985.828500px;}
.y260{bottom:986.887500px;}
.ye6{bottom:988.786500px;}
.y48{bottom:993.852000px;}
.y22f{bottom:994.635000px;}
.y19{bottom:1001.262000px;}
.y25f{bottom:1006.038000px;}
.y15e{bottom:1006.720500px;}
.ye5{bottom:1009.678500px;}
.y22e{bottom:1014.133500px;}
.y47{bottom:1014.744000px;}
.y25e{bottom:1025.188500px;}
.y15d{bottom:1027.611000px;}
.ye4{bottom:1030.570500px;}
.y46{bottom:1035.634500px;}
.y18{bottom:1040.086500px;}
.y22d{bottom:1042.599000px;}
.y25d{bottom:1044.339000px;}
.y15c{bottom:1048.503000px;}
.ye3{bottom:1055.944500px;}
.y45{bottom:1056.526500px;}
.y22c{bottom:1062.097500px;}
.y25c{bottom:1063.491000px;}
.y15b{bottom:1069.395000px;}
.y17{bottom:1071.424500px;}
.y44{bottom:1077.418500px;}
.ye2{bottom:1080.376500px;}
.y22b{bottom:1081.596000px;}
.y25b{bottom:1082.641500px;}
.y15a{bottom:1090.285500px;}
.y43{bottom:1098.309000px;}
.y22a{bottom:1101.094500px;}
.y25a{bottom:1101.792000px;}
.y16{bottom:1102.761000px;}
.y159{bottom:1115.661000px;}
.y42{bottom:1119.201000px;}
.y229{bottom:1120.594500px;}
.y259{bottom:1120.942500px;}
.y41{bottom:1140.093000px;}
.y40{bottom:1193.890500px;}
.h1a{height:30.810030px;}
.h7{height:32.030363px;}
.h2{height:37.368399px;}
.h15{height:39.287109px;}
.h1f{height:39.613275px;}
.h8{height:42.706971px;}
.h25{height:42.832426px;}
.hd{height:42.952922px;}
.h17{height:43.403027px;}
.h9{height:44.014455px;}
.h29{height:44.878426px;}
.h27{height:46.642426px;}
.h23{height:47.080426px;}
.h21{height:47.536426px;}
.hb{height:48.045544px;}
.h2f{height:48.225586px;}
.hf{height:48.322037px;}
.h18{height:49.614030px;}
.ha{height:52.817700px;}
.h3{height:53.383580px;}
.h11{height:53.691152px;}
.h6{height:55.147092px;}
.h5{height:55.153092px;}
.h26{height:61.252971px;}
.h1b{height:61.278399px;}
.h20{height:63.603653px;}
.h24{height:65.488971px;}
.h2a{height:65.710971px;}
.h22{height:65.950971px;}
.h1e{height:75.133275px;}
.h28{height:75.382426px;}
.h4{height:79.226550px;}
.h1d{height:148.574250px;}
.h13{height:192.403500px;}
.h16{height:243.788400px;}
.he{height:268.035750px;}
.h19{height:283.024800px;}
.h2c{height:296.103600px;}
.h10{height:315.163500px;}
.h2b{height:325.177200px;}
.h30{height:381.141450px;}
.h12{height:432.490500px;}
.h31{height:443.514600px;}
.h2d{height:453.600000px;}
.hc{height:456.609600px;}
.h2e{height:464.071500px;}
.h14{height:516.826500px;}
.h1c{height:756.475065px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:344.552400px;}
.w10{width:402.348600px;}
.w4{width:467.346000px;}
.w11{width:467.347500px;}
.w9{width:478.683000px;}
.wc{width:488.944350px;}
.w3{width:490.121550px;}
.w7{width:492.477000px;}
.w6{width:496.411500px;}
.wb{width:500.131800px;}
.wa{width:503.794350px;}
.w5{width:512.019000px;}
.wd{width:514.256850px;}
.w8{width:532.043100px;}
.we{width:646.819830px;}
.wf{width:702.980700px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:29.785834px;}
.x1{left:53.574000px;}
.x38{left:57.572741px;}
.x39{left:82.537278px;}
.x3a{left:85.848000px;}
.xb{left:95.614392px;}
.xc{left:116.615980px;}
.x2d{left:119.048410px;}
.xf{left:120.271493px;}
.x34{left:123.178170px;}
.x35{left:130.052797px;}
.x2f{left:175.261954px;}
.x32{left:230.099382px;}
.xd{left:241.266902px;}
.x18{left:243.000007px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xe{left:250.814850px;}
.xa{left:256.263009px;}
.x33{left:258.266249px;}
.x24{left:260.643000px;}
.x13{left:262.180500px;}
.x17{left:265.396500px;}
.x12{left:267.735000px;}
.x14{left:268.798500px;}
.x3{left:269.914500px;}
.x10{left:271.692000px;}
.x16{left:273.027000px;}
.x15{left:279.405000px;}
.x5{left:281.479500px;}
.x29{left:286.507500px;}
.x22{left:288.997500px;}
.x1d{left:290.998500px;}
.x1c{left:294.360000px;}
.x20{left:303.756000px;}
.x1e{left:306.876000px;}
.x27{left:309.027000px;}
.x37{left:322.579500px;}
.x2e{left:333.454808px;}
.x6{left:340.517824px;}
.x36{left:344.315707px;}
.x19{left:386.395500px;}
.x30{left:388.696370px;}
.x2b{left:451.212000px;}
.x8{left:464.612978px;}
.x11{left:474.155392px;}
.x1b{left:481.966500px;}
.x7{left:487.148830px;}
.x25{left:492.828000px;}
.x23{left:496.938000px;}
.x21{left:501.865500px;}
.x26{left:503.850000px;}
.x9{left:509.214928px;}
.x28{left:523.837500px;}
.x2a{left:525.705000px;}
.x2c{left:531.682500px;}
.x1a{left:532.948500px;}
.x1f{left:621.936000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-9.626667pt;}
.v5{vertical-align:-5.925333pt;}
.vc{vertical-align:-1.818667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.357333pt;}
.va{vertical-align:11.744000pt;}
.vd{vertical-align:14.928000pt;}
.v3{vertical-align:17.360000pt;}
.ve{vertical-align:18.314667pt;}
.v1{vertical-align:19.290667pt;}
.vb{vertical-align:20.250667pt;}
.v6{vertical-align:21.253333pt;}
.v8{vertical-align:25.237333pt;}
.vf{vertical-align:27.114667pt;}
.v7{vertical-align:31.573333pt;}
.v10{vertical-align:43.861333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000426pt;}
.ls13{letter-spacing:0.001007pt;}
.ls27{letter-spacing:0.001867pt;}
.ls1b{letter-spacing:0.002675pt;}
.ls21{letter-spacing:0.003396pt;}
.ls6{letter-spacing:0.003733pt;}
.ls12{letter-spacing:0.004267pt;}
.ls1a{letter-spacing:0.004887pt;}
.lse{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.011042pt;}
.ls15{letter-spacing:0.012960pt;}
.ls2f{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.024000pt;}
.ls29{letter-spacing:0.043286pt;}
.ls2b{letter-spacing:0.067334pt;}
.ls17{letter-spacing:0.099360pt;}
.ls30{letter-spacing:0.110400pt;}
.ls32{letter-spacing:0.110621pt;}
.ls1c{letter-spacing:0.116640pt;}
.ls34{letter-spacing:0.122912pt;}
.ls10{letter-spacing:0.124800pt;}
.lsa{letter-spacing:0.133600pt;}
.ls11{letter-spacing:0.134400pt;}
.ls2a{letter-spacing:0.134669pt;}
.ls18{letter-spacing:2.656533pt;}
.ls8{letter-spacing:9.209067pt;}
.ls4{letter-spacing:10.626533pt;}
.ls19{letter-spacing:11.081067pt;}
.ls3b{letter-spacing:11.586133pt;}
.ls31{letter-spacing:11.646400pt;}
.ls38{letter-spacing:11.954133pt;}
.ls39{letter-spacing:11.959467pt;}
.ls14{letter-spacing:12.105067pt;}
.ls9{letter-spacing:13.587733pt;}
.ls3a{letter-spacing:15.271467pt;}
.ls3c{letter-spacing:17.335467pt;}
.ls7{letter-spacing:19.886400pt;}
.ls1e{letter-spacing:21.027733pt;}
.ls0{letter-spacing:51.035733pt;}
.ls1{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls37{letter-spacing:82.167733pt;}
.ls36{letter-spacing:83.815733pt;}
.ls22{letter-spacing:166.165102pt;}
.ls26{letter-spacing:268.751769pt;}
.ls20{letter-spacing:281.583769pt;}
.ls23{letter-spacing:314.911769pt;}
.ls25{letter-spacing:342.181102pt;}
.ls1f{letter-spacing:351.589102pt;}
.ls24{letter-spacing:424.926063pt;}
.lsc{letter-spacing:463.629408pt;}
.lsb{letter-spacing:594.562752pt;}
.ls28{letter-spacing:793.584000pt;}
.lsf{letter-spacing:813.619171pt;}
.ls33{letter-spacing:872.422963pt;}
.ls2c{letter-spacing:873.071960pt;}
.ls16{letter-spacing:901.009440pt;}
.ls2d{letter-spacing:924.549387pt;}
.ls35{letter-spacing:969.358848pt;}
.ls2e{letter-spacing:1091.953400pt;}
.wsef{word-spacing:-48.096000pt;}
.ws25{word-spacing:-26.566933pt;}
.ws6{word-spacing:-23.910400pt;}
.ws28{word-spacing:-21.253600pt;}
.ws9{word-spacing:-20.190933pt;}
.ws4{word-spacing:-18.596800pt;}
.ws83{word-spacing:-17.279249pt;}
.ws24{word-spacing:-17.162239pt;}
.ws1c{word-spacing:-17.109105pt;}
.wsbb{word-spacing:-17.055971pt;}
.ws78{word-spacing:-17.002837pt;}
.ws77{word-spacing:-16.949703pt;}
.wsd2{word-spacing:-16.896570pt;}
.wsd1{word-spacing:-16.893803pt;}
.ws107{word-spacing:-16.874133pt;}
.ws106{word-spacing:-16.856469pt;}
.ws9f{word-spacing:-16.790302pt;}
.ws50{word-spacing:-16.737168pt;}
.ws5c{word-spacing:-16.684034pt;}
.wsd5{word-spacing:-16.577766pt;}
.wsf6{word-spacing:-16.524633pt;}
.wscc{word-spacing:-16.471499pt;}
.wsf4{word-spacing:-16.418365pt;}
.ws118{word-spacing:-16.396988pt;}
.ws98{word-spacing:-16.347204pt;}
.ws120{word-spacing:-16.312097pt;}
.wsa8{word-spacing:-16.258963pt;}
.ws40{word-spacing:-16.205829pt;}
.wsa1{word-spacing:-16.152695pt;}
.wsa2{word-spacing:-16.143467pt;}
.ws1d{word-spacing:-16.099562pt;}
.ws17{word-spacing:-16.046428pt;}
.ws96{word-spacing:-15.940267pt;}
.ws4e{word-spacing:-15.940160pt;}
.wsb7{word-spacing:-15.911612pt;}
.wsaf{word-spacing:-15.887026pt;}
.ws7b{word-spacing:-15.833892pt;}
.ws42{word-spacing:-15.780758pt;}
.ws6f{word-spacing:-15.727625pt;}
.wsff{word-spacing:-15.706257pt;}
.ws56{word-spacing:-15.674491pt;}
.ws21{word-spacing:-15.568223pt;}
.wse1{word-spacing:-15.522125pt;}
.wsb9{word-spacing:-15.515089pt;}
.ws93{word-spacing:-15.461955pt;}
.ws171{word-spacing:-15.446118pt;}
.wsa9{word-spacing:-15.408821pt;}
.wsee{word-spacing:-15.355687pt;}
.ws121{word-spacing:-15.249420pt;}
.ws9a{word-spacing:-15.207014pt;}
.ws7f{word-spacing:-15.196286pt;}
.ws64{word-spacing:-15.143152pt;}
.ws34{word-spacing:-15.133943pt;}
.wsad{word-spacing:-15.133824pt;}
.wsae{word-spacing:-15.129677pt;}
.wse0{word-spacing:-15.090018pt;}
.ws5b{word-spacing:-15.036884pt;}
.wsf1{word-spacing:-15.022652pt;}
.ws19{word-spacing:-14.983750pt;}
.ws102{word-spacing:-14.950323pt;}
.ws2e{word-spacing:-14.930617pt;}
.ws23{word-spacing:-14.877483pt;}
.ws99{word-spacing:-14.824448pt;}
.ws74{word-spacing:-14.824349pt;}
.ws10a{word-spacing:-14.771215pt;}
.ws57{word-spacing:-14.664947pt;}
.wsdd{word-spacing:-14.611813pt;}
.ws148{word-spacing:-14.585344pt;}
.ws4d{word-spacing:-14.558679pt;}
.ws14b{word-spacing:-14.537523pt;}
.ws59{word-spacing:-14.505546pt;}
.ws69{word-spacing:-14.452412pt;}
.wsde{word-spacing:-14.346144pt;}
.ws8d{word-spacing:-14.293010pt;}
.wsb8{word-spacing:-14.250598pt;}
.ws16{word-spacing:-14.239876pt;}
.ws6c{word-spacing:-14.186742pt;}
.ws72{word-spacing:-14.133609pt;}
.ws4f{word-spacing:-14.080475pt;}
.ws71{word-spacing:-14.027341pt;}
.ws132{word-spacing:-14.011494pt;}
.wsf5{word-spacing:-13.974207pt;}
.ws14d{word-spacing:-13.915853pt;}
.ws58{word-spacing:-13.867939pt;}
.wsf3{word-spacing:-13.814805pt;}
.ws26{word-spacing:-13.761671pt;}
.ws47{word-spacing:-13.723972pt;}
.ws53{word-spacing:-13.708538pt;}
.ws101{word-spacing:-13.628928pt;}
.wscd{word-spacing:-13.602270pt;}
.ws100{word-spacing:-13.581107pt;}
.ws8f{word-spacing:-13.549136pt;}
.wsc{word-spacing:-13.496002pt;}
.ws8{word-spacing:-13.336601pt;}
.ws7{word-spacing:-13.283467pt;}
.wsb5{word-spacing:-13.279467pt;}
.wsb4{word-spacing:-13.267136pt;}
.ws127{word-spacing:-13.246362pt;}
.ws15{word-spacing:-13.230333pt;}
.ws8b{word-spacing:-13.177199pt;}
.ws41{word-spacing:-13.124065pt;}
.wse2{word-spacing:-13.102899pt;}
.ws97{word-spacing:-13.070931pt;}
.ws143{word-spacing:-13.055078pt;}
.ws45{word-spacing:-13.017797pt;}
.ws46{word-spacing:-12.964663pt;}
.ws170{word-spacing:-12.959437pt;}
.ws16f{word-spacing:-12.911616pt;}
.ws94{word-spacing:-12.911530pt;}
.ws5a{word-spacing:-12.858396pt;}
.ws1b{word-spacing:-12.805262pt;}
.ws16d{word-spacing:-12.768154pt;}
.ws90{word-spacing:-12.752128pt;}
.ws12e{word-spacing:-12.720333pt;}
.ws82{word-spacing:-12.698994pt;}
.ws12f{word-spacing:-12.672512pt;}
.wsfc{word-spacing:-12.666133pt;}
.wse{word-spacing:-12.645860pt;}
.wsfb{word-spacing:-12.615127pt;}
.ws7c{word-spacing:-12.592726pt;}
.ws80{word-spacing:-12.539593pt;}
.ws9e{word-spacing:-12.486459pt;}
.ws12d{word-spacing:-12.481229pt;}
.ws153{word-spacing:-12.433408pt;}
.ws3b{word-spacing:-12.433325pt;}
.ws9d{word-spacing:-12.380191pt;}
.ws38{word-spacing:-12.337766pt;}
.ws81{word-spacing:-12.327057pt;}
.ws152{word-spacing:-12.289946pt;}
.ws66{word-spacing:-12.273923pt;}
.ws36{word-spacing:-12.244847pt;}
.ws108{word-spacing:-12.167655pt;}
.ws109{word-spacing:-12.154133pt;}
.ws160{word-spacing:-12.146483pt;}
.ws76{word-spacing:-12.114522pt;}
.wsf7{word-spacing:-12.061388pt;}
.ws70{word-spacing:-12.008254pt;}
.ws39{word-spacing:-12.003021pt;}
.ws149{word-spacing:-11.970807pt;}
.ws15f{word-spacing:-11.968759pt;}
.ws13d{word-spacing:-11.964407pt;}
.ws35{word-spacing:-11.955200pt;}
.ws12{word-spacing:-11.955120pt;}
.ws14e{word-spacing:-11.935044pt;}
.ws15a{word-spacing:-11.931648pt;}
.ws13b{word-spacing:-11.925495pt;}
.ws141{word-spacing:-11.923063pt;}
.ws137{word-spacing:-11.923012pt;}
.ws13a{word-spacing:-11.921323pt;}
.ws16a{word-spacing:-11.918123pt;}
.wsf2{word-spacing:-11.907379pt;}
.ws55{word-spacing:-11.901986pt;}
.ws68{word-spacing:-11.848852pt;}
.wscb{word-spacing:-11.811738pt;}
.wsd6{word-spacing:-11.795718pt;}
.ws73{word-spacing:-11.742585pt;}
.wsaa{word-spacing:-11.690133pt;}
.ws43{word-spacing:-11.689451pt;}
.ws157{word-spacing:-11.668275pt;}
.ws2c{word-spacing:-11.636317pt;}
.ws44{word-spacing:-11.583183pt;}
.ws122{word-spacing:-11.572634pt;}
.ws51{word-spacing:-11.530049pt;}
.ws48{word-spacing:-11.476992pt;}
.ws65{word-spacing:-11.476915pt;}
.ws123{word-spacing:-11.429171pt;}
.ws32{word-spacing:-11.423781pt;}
.ws16b{word-spacing:-11.381350pt;}
.wsb6{word-spacing:-11.317514pt;}
.ws89{word-spacing:-11.264380pt;}
.wsd{word-spacing:-11.211246pt;}
.ws1{word-spacing:-11.195274pt;}
.ws3{word-spacing:-11.165412pt;}
.ws60{word-spacing:-11.158112pt;}
.ws0{word-spacing:-11.158080pt;}
.ws131{word-spacing:-11.142246pt;}
.ws31{word-spacing:-11.104978pt;}
.ws125{word-spacing:-11.094426pt;}
.ws52{word-spacing:-11.051844pt;}
.ws37{word-spacing:-10.998784pt;}
.ws14{word-spacing:-10.945577pt;}
.ws166{word-spacing:-10.903142pt;}
.ws2b{word-spacing:-10.892443pt;}
.ws13{word-spacing:-10.839309pt;}
.ws10c{word-spacing:-10.830788pt;}
.ws139{word-spacing:-10.807501pt;}
.wsa0{word-spacing:-10.786175pt;}
.ws4c{word-spacing:-10.679907pt;}
.ws29{word-spacing:-10.669307pt;}
.ws1f{word-spacing:-10.648098pt;}
.ws27{word-spacing:-10.635011pt;}
.wsa{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.626773pt;}
.ws10e{word-spacing:-10.568397pt;}
.ws10d{word-spacing:-10.520576pt;}
.ws22{word-spacing:-10.520506pt;}
.ws133{word-spacing:-10.329293pt;}
.ws85{word-spacing:-10.307970pt;}
.ws13c{word-spacing:-10.281472pt;}
.ws67{word-spacing:-10.254836pt;}
.ws12a{word-spacing:-10.233651pt;}
.ws91{word-spacing:-10.201702pt;}
.ws2f{word-spacing:-10.148569pt;}
.ws145{word-spacing:-10.138010pt;}
.ws8e{word-spacing:-10.095435pt;}
.ws126{word-spacing:-10.090189pt;}
.ws173{word-spacing:-10.042368pt;}
.ws117{word-spacing:-10.042301pt;}
.ws154{word-spacing:-9.994547pt;}
.ws8a{word-spacing:-9.989167pt;}
.ws115{word-spacing:-9.936033pt;}
.ws3c{word-spacing:-9.882899pt;}
.ws150{word-spacing:-9.851085pt;}
.ws3d{word-spacing:-9.829765pt;}
.wsfe{word-spacing:-9.803264pt;}
.ws88{word-spacing:-9.776631pt;}
.ws2d{word-spacing:-9.723498pt;}
.ws54{word-spacing:-9.670364pt;}
.ws1a{word-spacing:-9.617230pt;}
.ws12b{word-spacing:-9.611981pt;}
.ws113{word-spacing:-9.578133pt;}
.ws168{word-spacing:-9.564160pt;}
.ws103{word-spacing:-9.564096pt;}
.ws112{word-spacing:-9.560469pt;}
.ws158{word-spacing:-9.516339pt;}
.ws9b{word-spacing:-9.510962pt;}
.ws16c{word-spacing:-9.468518pt;}
.wsf{word-spacing:-9.457828pt;}
.ws3e{word-spacing:-9.404694pt;}
.wsb1{word-spacing:-9.380800pt;}
.ws155{word-spacing:-9.372877pt;}
.wsb0{word-spacing:-9.363136pt;}
.ws62{word-spacing:-9.351561pt;}
.wsc7{word-spacing:-9.325056pt;}
.ws61{word-spacing:-9.298427pt;}
.wsc8{word-spacing:-9.277235pt;}
.ws84{word-spacing:-9.245293pt;}
.ws4b{word-spacing:-9.181594pt;}
.ws33{word-spacing:-9.139025pt;}
.ws15b{word-spacing:-9.133773pt;}
.ws14c{word-spacing:-9.085952pt;}
.ws92{word-spacing:-9.085891pt;}
.ws129{word-spacing:-9.038131pt;}
.wsdc{word-spacing:-9.032757pt;}
.ws14f{word-spacing:-8.990310pt;}
.wsda{word-spacing:-8.942490pt;}
.ws86{word-spacing:-8.926490pt;}
.ws172{word-spacing:-8.894669pt;}
.ws6b{word-spacing:-8.873356pt;}
.ws140{word-spacing:-8.751206pt;}
.ws5e{word-spacing:-8.713954pt;}
.ws13e{word-spacing:-8.703386pt;}
.ws13f{word-spacing:-8.673161pt;}
.ws5d{word-spacing:-8.660820pt;}
.wsd9{word-spacing:-8.655565pt;}
.ws12c{word-spacing:-8.607744pt;}
.wsdf{word-spacing:-8.607686pt;}
.ws11f{word-spacing:-8.501419pt;}
.ws138{word-spacing:-8.464282pt;}
.ws10{word-spacing:-8.448285pt;}
.wsfd{word-spacing:-8.416461pt;}
.ws75{word-spacing:-8.395151pt;}
.ws3a{word-spacing:-8.342017pt;}
.ws124{word-spacing:-8.320819pt;}
.wsf8{word-spacing:-8.288883pt;}
.ws79{word-spacing:-8.235749pt;}
.wsc5{word-spacing:-8.225178pt;}
.wsc6{word-spacing:-8.177357pt;}
.ws63{word-spacing:-8.129482pt;}
.wsd3{word-spacing:-8.076348pt;}
.ws5{word-spacing:-8.053731pt;}
.ws87{word-spacing:-8.023214pt;}
.ws167{word-spacing:-8.011213pt;}
.ws144{word-spacing:-7.986074pt;}
.ws147{word-spacing:-7.972207pt;}
.ws14a{word-spacing:-7.970193pt;}
.ws7e{word-spacing:-7.970080pt;}
.wsd4{word-spacing:-7.916946pt;}
.ws6a{word-spacing:-7.863812pt;}
.wsf9{word-spacing:-7.810678pt;}
.wsfa{word-spacing:-7.780800pt;}
.ws104{word-spacing:-7.757545pt;}
.ws15d{word-spacing:-7.746970pt;}
.ws15c{word-spacing:-7.699149pt;}
.ws163{word-spacing:-7.651328pt;}
.ws18{word-spacing:-7.651277pt;}
.ws95{word-spacing:-7.545009pt;}
.ws7d{word-spacing:-7.491875pt;}
.ws119{word-spacing:-7.438741pt;}
.ws8c{word-spacing:-7.332474pt;}
.ws169{word-spacing:-7.316582pt;}
.ws7a{word-spacing:-7.226206pt;}
.ws4a{word-spacing:-7.173120pt;}
.ws116{word-spacing:-7.173072pt;}
.ws159{word-spacing:-7.125299pt;}
.wsb{word-spacing:-7.098702pt;}
.ws151{word-spacing:-7.077478pt;}
.wsd7{word-spacing:-7.029658pt;}
.wsd0{word-spacing:-7.013670pt;}
.wsd8{word-spacing:-6.981837pt;}
.ws5f{word-spacing:-6.960537pt;}
.ws130{word-spacing:-6.944401pt;}
.ws6d{word-spacing:-6.907403pt;}
.ws6e{word-spacing:-6.854269pt;}
.ws134{word-spacing:-6.790554pt;}
.ws135{word-spacing:-6.742733pt;}
.ws30{word-spacing:-6.694867pt;}
.ws11d{word-spacing:-6.641733pt;}
.ws165{word-spacing:-6.599270pt;}
.ws3f{word-spacing:-6.588599pt;}
.ws162{word-spacing:-6.551450pt;}
.wsa4{word-spacing:-6.503629pt;}
.wsba{word-spacing:-6.466613pt;}
.wsb2{word-spacing:-6.429198pt;}
.wsed{word-spacing:-6.163529pt;}
.ws142{word-spacing:-5.977600pt;}
.ws20{word-spacing:-5.950993pt;}
.wsdb{word-spacing:-5.568990pt;}
.ws9c{word-spacing:-5.525922pt;}
.ws11b{word-spacing:-5.419654pt;}
.ws11e{word-spacing:-5.313387pt;}
.ws161{word-spacing:-5.116826pt;}
.wsb3{word-spacing:-4.994583pt;}
.wsa6{word-spacing:-4.782080pt;}
.ws114{word-spacing:-4.782048pt;}
.wsa7{word-spacing:-4.734259pt;}
.ws11a{word-spacing:-4.675780pt;}
.wsbc{word-spacing:-3.863947pt;}
.wsc1{word-spacing:-3.194652pt;}
.wsbe{word-spacing:-3.190040pt;}
.ws11c{word-spacing:-3.188032pt;}
.wsac{word-spacing:-2.534502pt;}
.ws128{word-spacing:-2.208333pt;}
.ws1e{word-spacing:-1.449085pt;}
.ws49{word-spacing:-1.195520pt;}
.ws156{word-spacing:-0.191283pt;}
.wsa3{word-spacing:-0.053440pt;}
.ws10b{word-spacing:-0.048096pt;}
.wsa5{word-spacing:-0.048000pt;}
.ws16e{word-spacing:-0.047821pt;}
.wsab{word-spacing:-0.043200pt;}
.ws2a{word-spacing:0.000000pt;}
.ws146{word-spacing:0.765133pt;}
.ws15e{word-spacing:3.921306pt;}
.ws164{word-spacing:4.925542pt;}
.wsc9{word-spacing:7.029658pt;}
.wsca{word-spacing:7.077478pt;}
.wse6{word-spacing:10.595319pt;}
.wse8{word-spacing:10.596386pt;}
.wse3{word-spacing:10.598519pt;}
.ws2{word-spacing:13.030081pt;}
.ws111{word-spacing:13.868032pt;}
.ws10f{word-spacing:13.915853pt;}
.ws110{word-spacing:13.963674pt;}
.wsbd{word-spacing:66.688125pt;}
.wsf0{word-spacing:93.727878pt;}
.wsce{word-spacing:160.455526pt;}
.ws136{word-spacing:164.932442pt;}
.wsc3{word-spacing:197.056267pt;}
.wsc4{word-spacing:215.653067pt;}
.wscf{word-spacing:325.970133pt;}
.wse5{word-spacing:340.769200pt;}
.wsec{word-spacing:377.742633pt;}
.wse9{word-spacing:388.368500pt;}
.wsea{word-spacing:392.357833pt;}
.wseb{word-spacing:398.995966pt;}
.wse7{word-spacing:402.979966pt;}
.wse4{word-spacing:420.504098pt;}
.ws105{word-spacing:453.777929pt;}
.wsc2{word-spacing:459.782672pt;}
.wsbf{word-spacing:919.814275pt;}
.wsc0{word-spacing:959.832627pt;}
._d{margin-left:-5.844718pt;}
._1c{margin-left:-4.292014pt;}
._5{margin-left:-2.975504pt;}
._3{margin-left:-1.625907pt;}
._4{width:2.428700pt;}
._18{width:8.108239pt;}
._14{width:9.230464pt;}
._0{width:10.525789pt;}
._13{width:11.907379pt;}
._e{width:12.837153pt;}
._52{width:13.751212pt;}
._c{width:14.718081pt;}
._16{width:16.046428pt;}
._b{width:17.034729pt;}
._8{width:18.065515pt;}
._19{width:18.968790pt;}
._15{width:19.955317pt;}
._1{width:21.114207pt;}
._a{width:22.103689pt;}
._6{width:23.803972pt;}
._9{width:25.483013pt;}
._11{width:27.103133pt;}
._1d{width:28.107815pt;}
._7{width:29.117359pt;}
._1a{width:30.126902pt;}
._2{width:31.848653pt;}
._1b{width:33.134290pt;}
._1f{width:34.060582pt;}
._43{width:35.068352pt;}
._1e{width:36.077895pt;}
._12{width:37.512510pt;}
._27{width:39.139598pt;}
._17{width:41.051622pt;}
._3e{width:46.408577pt;}
._51{width:47.932859pt;}
._3d{width:53.512701pt;}
._50{width:54.976000pt;}
._48{width:63.745126pt;}
._30{width:65.833378pt;}
._3c{width:70.981871pt;}
._39{width:78.577032pt;}
._47{width:81.630106pt;}
._29{width:87.282768pt;}
._23{width:90.425847pt;}
._3a{width:96.064292pt;}
._28{width:106.846602pt;}
._22{width:108.505395pt;}
._3b{width:110.729772pt;}
._44{width:115.104666pt;}
._45{width:125.673062pt;}
._46{width:128.351027pt;}
._4e{width:134.663373pt;}
._4f{width:141.501747pt;}
._49{width:148.005717pt;}
._4a{width:150.683682pt;}
._21{width:162.744730pt;}
._37{width:182.743090pt;}
._4c{width:184.779913pt;}
._2c{width:190.495577pt;}
._4d{width:201.565013pt;}
._4b{width:205.342857pt;}
._2d{width:206.351733pt;}
._2e{width:216.269118pt;}
._2f{width:224.949067pt;}
._38{width:226.495808pt;}
._35{width:271.805867pt;}
._33{width:283.764267pt;}
._31{width:295.721600pt;}
._34{width:299.522133pt;}
._32{width:311.475200pt;}
._36{width:316.826428pt;}
._24{width:370.782234pt;}
._26{width:419.689600pt;}
._25{width:473.847467pt;}
._40{width:535.839795pt;}
._42{width:539.301990pt;}
._41{width:552.456533pt;}
._3f{width:560.402270pt;}
._2b{width:795.733600pt;}
._2a{width:905.588236pt;}
._f{width:1576.556907pt;}
._20{width:2216.610400pt;}
._10{width:2237.863733pt;}
.fsd{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:42.752000pt;}
.fsc{font-size:43.200000pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:48.096000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.373277pt;}
.yc5{bottom:2.422655pt;}
.y62{bottom:3.185853pt;}
.y13a{bottom:3.986661pt;}
.y5d{bottom:4.084101pt;}
.y1ac{bottom:4.548352pt;}
.y1b7{bottom:4.656352pt;}
.y1bb{bottom:5.012752pt;}
.y153{bottom:5.022240pt;}
.y155{bottom:5.081152pt;}
.y118{bottom:5.857572pt;}
.y108{bottom:5.973773pt;}
.y1d9{bottom:6.115659pt;}
.y1c0{bottom:6.188026pt;}
.y1d5{bottom:6.918647pt;}
.y10d{bottom:7.401704pt;}
.y1b6{bottom:15.960329pt;}
.y107{bottom:23.973701pt;}
.y3f{bottom:40.818667pt;}
.y57{bottom:88.640000pt;}
.y15{bottom:89.201333pt;}
.y28a{bottom:94.188000pt;}
.yf1{bottom:97.825333pt;}
.y3e{bottom:98.080000pt;}
.y1f5{bottom:99.506667pt;}
.y1ae{bottom:100.020261pt;}
.y84{bottom:102.174667pt;}
.yab{bottom:103.473333pt;}
.y1b4{bottom:103.710667pt;}
.y14{bottom:105.101333pt;}
.y56{bottom:107.210667pt;}
.y1d7{bottom:107.600000pt;}
.ye1{bottom:107.830667pt;}
.y13c{bottom:108.016000pt;}
.y1c2{bottom:109.218667pt;}
.y20c{bottom:109.722667pt;}
.y289{bottom:111.210667pt;}
.y1b0{bottom:111.396168pt;}
.y258{bottom:112.498667pt;}
.y1b1{bottom:115.212585pt;}
.yf0{bottom:116.396000pt;}
.y1b9{bottom:116.500000pt;}
.y3d{bottom:116.649333pt;}
.y1f4{bottom:118.076000pt;}
.y83{bottom:120.745333pt;}
.y1b3{bottom:120.805333pt;}
.y13{bottom:121.002667pt;}
.yaa{bottom:122.044000pt;}
.y60{bottom:123.302667pt;}
.y1d6{bottom:124.696000pt;}
.y13b{bottom:125.112000pt;}
.y55{bottom:125.780000pt;}
.y1c1{bottom:126.314667pt;}
.ye0{bottom:126.401333pt;}
.y228{bottom:128.116000pt;}
.y288{bottom:128.233333pt;}
.y20b{bottom:128.292000pt;}
.y257{bottom:129.521333pt;}
.y1b8{bottom:133.594667pt;}
.yef{bottom:134.966667pt;}
.y3c{bottom:135.220000pt;}
.y105{bottom:136.052000pt;}
.y1f3{bottom:136.646667pt;}
.y12{bottom:136.902667pt;}
.y14d{bottom:138.497333pt;}
.y128{bottom:139.236000pt;}
.y82{bottom:139.314667pt;}
.y152{bottom:140.238249pt;}
.y5f{bottom:140.398667pt;}
.ya9{bottom:140.613333pt;}
.y1ab{bottom:141.322667pt;}
.y54{bottom:144.350667pt;}
.y1d4{bottom:144.702267pt;}
.ydf{bottom:144.972000pt;}
.y287{bottom:145.256000pt;}
.y139{bottom:145.280133pt;}
.y227{bottom:145.449333pt;}
.y256{bottom:146.544000pt;}
.y20a{bottom:146.862667pt;}
.y1be{bottom:150.094667pt;}
.y11{bottom:152.802667pt;}
.yee{bottom:153.536000pt;}
.y3b{bottom:153.790667pt;}
.y1b5{bottom:153.828533pt;}
.y184{bottom:153.972000pt;}
.y104{bottom:154.621333pt;}
.y1f2{bottom:155.217333pt;}
.y14c{bottom:155.593333pt;}
.y18f{bottom:156.569333pt;}
.y5e{bottom:157.494667pt;}
.y81{bottom:157.885333pt;}
.ya8{bottom:159.184000pt;}
.y116{bottom:159.814667pt;}
.y286{bottom:162.278667pt;}
.y226{bottom:162.781333pt;}
.y53{bottom:162.921333pt;}
.yde{bottom:163.541333pt;}
.y255{bottom:163.566667pt;}
.y209{bottom:165.433333pt;}
.y158{bottom:166.761333pt;}
.y10{bottom:168.704000pt;}
.yed{bottom:172.106667pt;}
.y3a{bottom:172.360000pt;}
.y183{bottom:172.542667pt;}
.y14b{bottom:172.689333pt;}
.y103{bottom:173.192000pt;}
.y18e{bottom:173.665333pt;}
.y1f1{bottom:173.788000pt;}
.y80{bottom:176.456000pt;}
.ya7{bottom:177.754667pt;}
.y115{bottom:178.385333pt;}
.y5c{bottom:178.590667pt;}
.y285{bottom:179.301333pt;}
.y225{bottom:180.113333pt;}
.y254{bottom:180.589333pt;}
.y52{bottom:181.490667pt;}
.ydd{bottom:182.112000pt;}
.y157{bottom:183.857333pt;}
.y208{bottom:184.002667pt;}
.yf{bottom:184.604000pt;}
.y18d{bottom:190.761333pt;}
.y39{bottom:190.930667pt;}
.y182{bottom:191.113333pt;}
.y102{bottom:191.762667pt;}
.y1f0{bottom:192.357333pt;}
.y7f{bottom:195.025333pt;}
.ya6{bottom:196.324000pt;}
.y114{bottom:196.956000pt;}
.y224{bottom:197.445333pt;}
.y253{bottom:197.612000pt;}
.y51{bottom:200.061333pt;}
.ye{bottom:200.504000pt;}
.ydc{bottom:200.682667pt;}
.y156{bottom:200.953333pt;}
.y207{bottom:202.573333pt;}
.yec{bottom:203.776000pt;}
.y18c{bottom:207.857333pt;}
.y38{bottom:209.501333pt;}
.y181{bottom:209.682667pt;}
.y101{bottom:210.333333pt;}
.y1ef{bottom:210.928000pt;}
.y284{bottom:213.346667pt;}
.y7e{bottom:213.596000pt;}
.y252{bottom:214.634667pt;}
.y223{bottom:214.777333pt;}
.ya5{bottom:214.894667pt;}
.y113{bottom:215.525333pt;}
.y1bf{bottom:217.228426pt;}
.y50{bottom:218.632000pt;}
.ydb{bottom:219.252000pt;}
.yeb{bottom:220.872000pt;}
.y154{bottom:220.896933pt;}
.y206{bottom:221.144000pt;}
.y1af{bottom:224.147621pt;}
.yd{bottom:224.374667pt;}
.y10c{bottom:225.801704pt;}
.y37{bottom:228.070667pt;}
.y180{bottom:228.253333pt;}
.y100{bottom:228.902667pt;}
.y1ee{bottom:229.498667pt;}
.y283{bottom:230.369333pt;}
.y251{bottom:231.657333pt;}
.yc3{bottom:232.109333pt;}
.y7d{bottom:232.166667pt;}
.ya4{bottom:233.465333pt;}
.y112{bottom:234.096000pt;}
.y1ad{bottom:237.756384pt;}
.yda{bottom:237.822667pt;}
.yea{bottom:237.968000pt;}
.y205{bottom:239.713333pt;}
.yc{bottom:240.276000pt;}
.y17f{bottom:246.824000pt;}
.y282{bottom:247.392000pt;}
.yff{bottom:247.473333pt;}
.y222{bottom:248.050667pt;}
.y1ed{bottom:248.068000pt;}
.y250{bottom:248.680000pt;}
.y4f{bottom:249.810667pt;}
.y36{bottom:250.626667pt;}
.yc2{bottom:250.680000pt;}
.y7c{bottom:250.736000pt;}
.ya3{bottom:252.034667pt;}
.y111{bottom:252.666667pt;}
.y1b2{bottom:255.828381pt;}
.yb{bottom:256.176000pt;}
.yd9{bottom:256.393333pt;}
.y204{bottom:262.269333pt;}
.y281{bottom:264.416000pt;}
.y17e{bottom:265.394667pt;}
.y24f{bottom:265.702667pt;}
.yfe{bottom:266.044000pt;}
.y221{bottom:266.620000pt;}
.y1ec{bottom:266.638667pt;}
.y4e{bottom:266.906667pt;}
.yc1{bottom:269.250667pt;}
.y7b{bottom:269.306667pt;}
.ya2{bottom:270.605333pt;}
.ya{bottom:272.076000pt;}
.yd8{bottom:274.964000pt;}
.y110{bottom:275.221333pt;}
.y151{bottom:275.382735pt;}
.y280{bottom:281.438667pt;}
.y24e{bottom:282.725333pt;}
.y17d{bottom:283.964000pt;}
.y4d{bottom:284.002667pt;}
.yfd{bottom:284.613333pt;}
.y220{bottom:285.190667pt;}
.y1eb{bottom:285.209333pt;}
.yc0{bottom:287.820000pt;}
.y7a{bottom:287.877333pt;}
.y9{bottom:287.977333pt;}
.ya1{bottom:289.176000pt;}
.yd7{bottom:293.533333pt;}
.y203{bottom:296.780000pt;}
.y27f{bottom:298.461333pt;}
.y24d{bottom:299.749333pt;}
.y17c{bottom:302.534667pt;}
.yfc{bottom:303.184000pt;}
.y21f{bottom:303.761333pt;}
.y1ea{bottom:303.778667pt;}
.y8{bottom:303.877333pt;}
.ybf{bottom:306.390667pt;}
.y79{bottom:306.446667pt;}
.ya0{bottom:307.745333pt;}
.y10f{bottom:311.765333pt;}
.yd6{bottom:312.104000pt;}
.y202{bottom:315.350667pt;}
.y27e{bottom:315.484000pt;}
.y7{bottom:319.777333pt;}
.y24c{bottom:320.756000pt;}
.y35{bottom:321.026667pt;}
.yfb{bottom:321.754667pt;}
.y21e{bottom:322.330667pt;}
.y1e9{bottom:322.349333pt;}
.ybe{bottom:324.961333pt;}
.y78{bottom:325.017333pt;}
.y9f{bottom:326.316000pt;}
.y10e{bottom:328.861333pt;}
.yd5{bottom:330.674667pt;}
.y27d{bottom:332.506667pt;}
.y201{bottom:333.920000pt;}
.y6{bottom:335.678667pt;}
.y34{bottom:339.597333pt;}
.yfa{bottom:340.324000pt;}
.y21d{bottom:340.901333pt;}
.y1e8{bottom:340.920000pt;}
.ybd{bottom:343.532000pt;}
.y77{bottom:343.588000pt;}
.y17b{bottom:344.845333pt;}
.y9e{bottom:344.886667pt;}
.yd4{bottom:349.244000pt;}
.y10b{bottom:349.293333pt;}
.y27c{bottom:349.529333pt;}
.y200{bottom:352.490667pt;}
.y14e{bottom:355.268920pt;}
.y24b{bottom:356.224000pt;}
.y5{bottom:356.892000pt;}
.yf9{bottom:358.894667pt;}
.y21c{bottom:359.472000pt;}
.y1e7{bottom:359.489333pt;}
.ybc{bottom:362.101333pt;}
.y76{bottom:362.158667pt;}
.y9d{bottom:363.457333pt;}
.y17a{bottom:365.928000pt;}
.y27b{bottom:366.552000pt;}
.yd3{bottom:367.814667pt;}
.y1ff{bottom:371.061333pt;}
.y4{bottom:372.792000pt;}
.y24a{bottom:373.556000pt;}
.y33{bottom:374.108000pt;}
.yf8{bottom:377.465333pt;}
.y21b{bottom:378.041333pt;}
.y1e6{bottom:378.060000pt;}
.ybb{bottom:380.672000pt;}
.y75{bottom:380.728000pt;}
.y9c{bottom:382.026667pt;}
.y27a{bottom:383.574667pt;}
.yd2{bottom:386.385333pt;}
.y179{bottom:387.009333pt;}
.y3{bottom:388.693333pt;}
.y1fe{bottom:389.630667pt;}
.y249{bottom:390.888000pt;}
.y32{bottom:392.677333pt;}
.yf7{bottom:396.034667pt;}
.y28d{bottom:396.393333pt;}
.y21a{bottom:396.612000pt;}
.y1e5{bottom:396.630667pt;}
.yba{bottom:399.242667pt;}
.y74{bottom:399.298667pt;}
.y9b{bottom:400.597333pt;}
.y2{bottom:404.593333pt;}
.yd1{bottom:404.954667pt;}
.y178{bottom:408.090667pt;}
.y1fd{bottom:408.201333pt;}
.y248{bottom:408.220000pt;}
.y150{bottom:410.526375pt;}
.y31{bottom:411.248000pt;}
.y28c{bottom:413.416000pt;}
.yf6{bottom:414.605333pt;}
.y219{bottom:415.182667pt;}
.y1e4{bottom:415.201333pt;}
.y279{bottom:417.620000pt;}
.y138{bottom:417.628000pt;}
.yb9{bottom:417.812000pt;}
.y73{bottom:417.869333pt;}
.y9a{bottom:419.168000pt;}
.yd0{bottom:423.525333pt;}
.y247{bottom:425.552000pt;}
.y1{bottom:425.806667pt;}
.y1fc{bottom:426.772000pt;}
.y177{bottom:429.173333pt;}
.y30{bottom:429.818667pt;}
.y28b{bottom:430.438667pt;}
.yf5{bottom:433.176000pt;}
.y218{bottom:433.753333pt;}
.y1e3{bottom:433.770667pt;}
.y278{bottom:434.642667pt;}
.y137{bottom:436.198667pt;}
.yb8{bottom:436.382667pt;}
.y72{bottom:436.438667pt;}
.y99{bottom:437.737333pt;}
.y5b{bottom:438.081333pt;}
.ycf{bottom:442.096000pt;}
.y246{bottom:442.885333pt;}
.y1fb{bottom:445.341333pt;}
.y2f{bottom:448.388000pt;}
.y176{bottom:450.254667pt;}
.y1aa{bottom:450.792000pt;}
.y277{bottom:451.665333pt;}
.yf4{bottom:451.746667pt;}
.y217{bottom:452.322667pt;}
.y1e2{bottom:452.341333pt;}
.y136{bottom:454.769333pt;}
.yb7{bottom:454.953333pt;}
.y71{bottom:455.009333pt;}
.y5a{bottom:455.177333pt;}
.y98{bottom:456.308000pt;}
.y245{bottom:460.217333pt;}
.yce{bottom:460.665333pt;}
.y1fa{bottom:463.912000pt;}
.y2e{bottom:466.958667pt;}
.y276{bottom:468.688000pt;}
.y1a9{bottom:469.361333pt;}
.y216{bottom:470.893333pt;}
.y1e1{bottom:470.912000pt;}
.y175{bottom:471.337333pt;}
.y135{bottom:473.338667pt;}
.yb6{bottom:473.522667pt;}
.y70{bottom:473.580000pt;}
.yf3{bottom:474.301333pt;}
.y97{bottom:474.878667pt;}
.y58{bottom:475.473867pt;}
.y244{bottom:477.549333pt;}
.y127{bottom:478.824000pt;}
.ycd{bottom:479.236000pt;}
.y1f9{bottom:482.482667pt;}
.y2d{bottom:485.529333pt;}
.y275{bottom:485.710667pt;}
.y1a8{bottom:487.932000pt;}
.y215{bottom:489.464000pt;}
.y1e0{bottom:489.481333pt;}
.y134{bottom:491.909333pt;}
.yb5{bottom:492.093333pt;}
.y6f{bottom:492.149333pt;}
.y174{bottom:492.418667pt;}
.y96{bottom:493.448000pt;}
.y243{bottom:494.881333pt;}
.y126{bottom:497.394667pt;}
.ycc{bottom:497.806667pt;}
.y1f8{bottom:501.052000pt;}
.y274{bottom:502.733333pt;}
.yf2{bottom:502.876000pt;}
.y2c{bottom:504.100000pt;}
.y1d3{bottom:504.426667pt;}
.y1a7{bottom:506.502667pt;}
.y214{bottom:508.033333pt;}
.y1df{bottom:508.052000pt;}
.y133{bottom:510.480000pt;}
.yb4{bottom:510.664000pt;}
.y6e{bottom:510.720000pt;}
.y95{bottom:512.018667pt;}
.y242{bottom:512.213333pt;}
.y173{bottom:513.501333pt;}
.y125{bottom:515.965333pt;}
.ycb{bottom:516.377333pt;}
.y273{bottom:519.756000pt;}
.y2b{bottom:522.669333pt;}
.y1d2{bottom:522.997333pt;}
.y1a6{bottom:525.072000pt;}
.y213{bottom:526.604000pt;}
.y1de{bottom:526.622667pt;}
.y132{bottom:529.050667pt;}
.yb3{bottom:529.233333pt;}
.y6d{bottom:529.290667pt;}
.y241{bottom:529.545333pt;}
.y94{bottom:530.589333pt;}
.y1f7{bottom:532.721333pt;}
.y124{bottom:534.534667pt;}
.y172{bottom:534.582667pt;}
.yca{bottom:534.946667pt;}
.y272{bottom:536.778667pt;}
.y2a{bottom:541.240000pt;}
.y1d1{bottom:541.568000pt;}
.y1a5{bottom:543.642667pt;}
.y212{bottom:545.174667pt;}
.y1dd{bottom:545.192000pt;}
.y14f{bottom:545.742375pt;}
.y240{bottom:546.878667pt;}
.y131{bottom:547.620000pt;}
.yb2{bottom:547.804000pt;}
.y6c{bottom:547.860000pt;}
.y14a{bottom:548.058667pt;}
.y93{bottom:549.158667pt;}
.y1f6{bottom:549.817333pt;}
.y123{bottom:553.105333pt;}
.yc9{bottom:553.517333pt;}
.y271{bottom:553.801333pt;}
.y171{bottom:555.664000pt;}
.y29{bottom:559.810667pt;}
.y1d0{bottom:560.137333pt;}
.y1a4{bottom:562.213333pt;}
.y211{bottom:563.744000pt;}
.y1dc{bottom:563.762667pt;}
.y23f{bottom:564.210667pt;}
.y130{bottom:566.190667pt;}
.yb1{bottom:566.374667pt;}
.y6b{bottom:566.430667pt;}
.y149{bottom:566.629333pt;}
.y92{bottom:567.729333pt;}
.y270{bottom:570.824000pt;}
.y122{bottom:571.676000pt;}
.yc8{bottom:572.088000pt;}
.y170{bottom:576.746667pt;}
.y28{bottom:578.380000pt;}
.y4c{bottom:578.389333pt;}
.y1cf{bottom:578.708000pt;}
.y18b{bottom:579.940000pt;}
.y1a3{bottom:580.782667pt;}
.y23e{bottom:581.542667pt;}
.y210{bottom:582.314667pt;}
.y1bd{bottom:583.813333pt;}
.y12f{bottom:584.761333pt;}
.yb0{bottom:584.945333pt;}
.y6a{bottom:585.001333pt;}
.y148{bottom:585.200000pt;}
.y91{bottom:586.300000pt;}
.y26f{bottom:587.846667pt;}
.y121{bottom:590.245333pt;}
.yc7{bottom:590.657333pt;}
.y1db{bottom:595.432000pt;}
.y27{bottom:596.950667pt;}
.y1ce{bottom:597.278667pt;}
.y16f{bottom:597.828000pt;}
.y18a{bottom:598.509333pt;}
.y23d{bottom:598.874667pt;}
.y1a2{bottom:599.353333pt;}
.y16d{bottom:599.768000pt;}
.y20f{bottom:600.885333pt;}
.y1bc{bottom:600.909333pt;}
.y12e{bottom:603.330667pt;}
.yaf{bottom:603.514667pt;}
.y69{bottom:603.572000pt;}
.y147{bottom:603.769333pt;}
.y90{bottom:604.870667pt;}
.y16c{bottom:606.486667pt;}
.y120{bottom:608.816000pt;}
.y1da{bottom:612.528000pt;}
.y26{bottom:615.521333pt;}
.y1cd{bottom:615.848000pt;}
.y23c{bottom:616.206667pt;}
.y189{bottom:617.080000pt;}
.y16e{bottom:618.910667pt;}
.y20e{bottom:619.454667pt;}
.y26e{bottom:621.893333pt;}
.y12d{bottom:621.901333pt;}
.y1a1{bottom:621.909333pt;}
.yae{bottom:622.085333pt;}
.y68{bottom:622.141333pt;}
.yc6{bottom:622.326667pt;}
.y8f{bottom:623.440000pt;}
.y1ba{bottom:623.953067pt;}
.y11f{bottom:627.386667pt;}
.y1d8{bottom:633.050133pt;}
.y23b{bottom:633.538667pt;}
.y25{bottom:634.090667pt;}
.y1cc{bottom:634.418667pt;}
.y188{bottom:635.650667pt;}
.y20d{bottom:638.025333pt;}
.y26d{bottom:638.916000pt;}
.y12c{bottom:640.472000pt;}
.yad{bottom:640.656000pt;}
.y67{bottom:640.712000pt;}
.y8e{bottom:642.010667pt;}
.yc4{bottom:643.306667pt;}
.y146{bottom:645.017333pt;}
.y16b{bottom:647.017333pt;}
.y11e{bottom:649.941333pt;}
.y23a{bottom:650.870667pt;}
.y24{bottom:652.661333pt;}
.y1cb{bottom:652.989333pt;}
.y187{bottom:654.220000pt;}
.y26c{bottom:655.938667pt;}
.y12b{bottom:659.041333pt;}
.y66{bottom:659.282667pt;}
.y8d{bottom:660.581333pt;}
.y145{bottom:662.248000pt;}
.yac{bottom:663.210667pt;}
.y1a0{bottom:664.676000pt;}
.y19f{bottom:670.228000pt;}
.y23{bottom:671.232000pt;}
.y1ca{bottom:671.558667pt;}
.y16a{bottom:672.018667pt;}
.y186{bottom:672.790667pt;}
.y26b{bottom:672.961333pt;}
.y239{bottom:673.694667pt;}
.y65{bottom:677.852000pt;}
.y8c{bottom:679.150667pt;}
.y144{bottom:679.477333pt;}
.y12a{bottom:681.597333pt;}
.y19d{bottom:685.086667pt;}
.y19e{bottom:686.412000pt;}
.y22{bottom:689.801333pt;}
.y26a{bottom:689.984000pt;}
.y1c9{bottom:690.129333pt;}
.y169{bottom:690.589333pt;}
.y238{bottom:695.012000pt;}
.y143{bottom:696.508000pt;}
.y11d{bottom:697.128000pt;}
.y8b{bottom:697.721333pt;}
.y185{bottom:703.580000pt;}
.y269{bottom:707.006667pt;}
.y142{bottom:707.134667pt;}
.y19c{bottom:708.049333pt;}
.y21{bottom:708.372000pt;}
.y1c8{bottom:708.700000pt;}
.y168{bottom:709.160000pt;}
.y64{bottom:709.521333pt;}
.y19b{bottom:713.110667pt;}
.y129{bottom:713.266667pt;}
.y8a{bottom:716.292000pt;}
.y11c{bottom:718.304000pt;}
.y268{bottom:724.029333pt;}
.y141{bottom:724.364000pt;}
.y63{bottom:726.617333pt;}
.y1c7{bottom:727.270667pt;}
.y167{bottom:727.729333pt;}
.y237{bottom:729.521333pt;}
.y19a{bottom:729.782667pt;}
.y199{bottom:733.904000pt;}
.y89{bottom:734.861333pt;}
.y20{bottom:734.912000pt;}
.y267{bottom:741.052000pt;}
.y140{bottom:741.593333pt;}
.y166{bottom:746.300000pt;}
.y11b{bottom:746.573333pt;}
.y236{bottom:746.854667pt;}
.y61{bottom:747.128000pt;}
.y198{bottom:749.730667pt;}
.y88{bottom:753.432000pt;}
.y197{bottom:754.793333pt;}
.y266{bottom:758.074667pt;}
.y13f{bottom:758.824000pt;}
.y165{bottom:764.870667pt;}
.y1c6{bottom:769.581333pt;}
.y1f{bottom:770.485333pt;}
.y196{bottom:771.564000pt;}
.y87{bottom:772.002667pt;}
.y235{bottom:772.156000pt;}
.y11a{bottom:772.968000pt;}
.y265{bottom:775.097333pt;}
.y195{bottom:776.626667pt;}
.y164{bottom:783.440000pt;}
.y13e{bottom:784.141333pt;}
.y1e{bottom:784.832000pt;}
.y234{bottom:789.489333pt;}
.y119{bottom:790.062667pt;}
.y86{bottom:790.572000pt;}
.y1c5{bottom:790.662667pt;}
.y264{bottom:792.120000pt;}
.y194{bottom:793.396000pt;}
.y193{bottom:798.561333pt;}
.y163{bottom:802.010667pt;}
.y1d{bottom:803.036000pt;}
.y233{bottom:806.821333pt;}
.y85{bottom:809.142667pt;}
.y117{bottom:810.714000pt;}
.y1c4{bottom:811.745333pt;}
.y1c{bottom:813.524000pt;}
.y10a{bottom:818.641333pt;}
.y192{bottom:819.090667pt;}
.y162{bottom:820.581333pt;}
.ye9{bottom:823.210667pt;}
.y232{bottom:824.153333pt;}
.y191{bottom:825.400000pt;}
.y263{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.y1b{bottom:831.728000pt;}
.y109{bottom:835.737333pt;}
.y161{bottom:839.152000pt;}
.y1c3{bottom:839.852000pt;}
.y231{bottom:841.485333pt;}
.ye8{bottom:841.781333pt;}
.y262{bottom:843.188000pt;}
.y13d{bottom:846.282667pt;}
.y4a{bottom:846.284000pt;}
.y106{bottom:855.824000pt;}
.y160{bottom:857.721333pt;}
.y190{bottom:858.422667pt;}
.y230{bottom:858.817333pt;}
.y261{bottom:860.210667pt;}
.ye7{bottom:860.352000pt;}
.y49{bottom:864.853333pt;}
.y1a{bottom:871.441333pt;}
.y15f{bottom:876.292000pt;}
.y260{bottom:877.233333pt;}
.ye6{bottom:878.921333pt;}
.y48{bottom:883.424000pt;}
.y22f{bottom:884.120000pt;}
.y19{bottom:890.010667pt;}
.y25f{bottom:894.256000pt;}
.y15e{bottom:894.862667pt;}
.ye5{bottom:897.492000pt;}
.y22e{bottom:901.452000pt;}
.y47{bottom:901.994667pt;}
.y25e{bottom:911.278667pt;}
.y15d{bottom:913.432000pt;}
.ye4{bottom:916.062667pt;}
.y46{bottom:920.564000pt;}
.y18{bottom:924.521333pt;}
.y22d{bottom:926.754667pt;}
.y25d{bottom:928.301333pt;}
.y15c{bottom:932.002667pt;}
.ye3{bottom:938.617333pt;}
.y45{bottom:939.134667pt;}
.y22c{bottom:944.086667pt;}
.y25c{bottom:945.325333pt;}
.y15b{bottom:950.573333pt;}
.y17{bottom:952.377333pt;}
.y44{bottom:957.705333pt;}
.ye2{bottom:960.334667pt;}
.y22b{bottom:961.418667pt;}
.y25b{bottom:962.348000pt;}
.y15a{bottom:969.142667pt;}
.y43{bottom:976.274667pt;}
.y22a{bottom:978.750667pt;}
.y25a{bottom:979.370667pt;}
.y16{bottom:980.232000pt;}
.y159{bottom:991.698667pt;}
.y42{bottom:994.845333pt;}
.y229{bottom:996.084000pt;}
.y259{bottom:996.393333pt;}
.y41{bottom:1013.416000pt;}
.y40{bottom:1061.236000pt;}
.h1a{height:27.386694pt;}
.h7{height:28.471433pt;}
.h2{height:33.216355pt;}
.h15{height:34.921875pt;}
.h1f{height:35.211800pt;}
.h8{height:37.961752pt;}
.h25{height:38.073267pt;}
.hd{height:38.180375pt;}
.h17{height:38.580469pt;}
.h9{height:39.123960pt;}
.h29{height:39.891934pt;}
.h27{height:41.459934pt;}
.h23{height:41.849267pt;}
.h21{height:42.254601pt;}
.hb{height:42.707150pt;}
.h2f{height:42.867188pt;}
.hf{height:42.952922pt;}
.h18{height:44.101360pt;}
.ha{height:46.949067pt;}
.h3{height:47.452071pt;}
.h11{height:47.725469pt;}
.h6{height:49.019637pt;}
.h5{height:49.024971pt;}
.h26{height:54.447086pt;}
.h1b{height:54.469688pt;}
.h20{height:56.536580pt;}
.h24{height:58.212419pt;}
.h2a{height:58.409752pt;}
.h22{height:58.623086pt;}
.h1e{height:66.785133pt;}
.h28{height:67.006601pt;}
.h4{height:70.423600pt;}
.h1d{height:132.066000pt;}
.h13{height:171.025333pt;}
.h16{height:216.700800pt;}
.he{height:238.254000pt;}
.h19{height:251.577600pt;}
.h2c{height:263.203200pt;}
.h10{height:280.145333pt;}
.h2b{height:289.046400pt;}
.h30{height:338.792400pt;}
.h12{height:384.436000pt;}
.h31{height:394.235200pt;}
.h2d{height:403.200000pt;}
.hc{height:405.875200pt;}
.h2e{height:412.508000pt;}
.h14{height:459.401333pt;}
.h1c{height:672.422280pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:306.268800pt;}
.w10{width:357.643200pt;}
.w4{width:415.418667pt;}
.w11{width:415.420000pt;}
.w9{width:425.496000pt;}
.wc{width:434.617200pt;}
.w3{width:435.663600pt;}
.w7{width:437.757333pt;}
.w6{width:441.254667pt;}
.wb{width:444.561600pt;}
.wa{width:447.817200pt;}
.w5{width:455.128000pt;}
.wd{width:457.117200pt;}
.w8{width:472.927200pt;}
.we{width:574.950960pt;}
.wf{width:624.871733pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:26.476297pt;}
.x1{left:47.621333pt;}
.x38{left:51.175770pt;}
.x39{left:73.366469pt;}
.x3a{left:76.309333pt;}
.xb{left:84.990570pt;}
.xc{left:103.658649pt;}
.x2d{left:105.820809pt;}
.xf{left:106.907994pt;}
.x34{left:109.491707pt;}
.x35{left:115.602486pt;}
.x2f{left:155.788403pt;}
.x32{left:204.532784pt;}
.xd{left:214.459468pt;}
.x18{left:216.000006pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xe{left:222.946533pt;}
.xa{left:227.789341pt;}
.x33{left:229.569999pt;}
.x24{left:231.682667pt;}
.x13{left:233.049333pt;}
.x17{left:235.908000pt;}
.x12{left:237.986667pt;}
.x14{left:238.932000pt;}
.x3{left:239.924000pt;}
.x10{left:241.504000pt;}
.x16{left:242.690667pt;}
.x15{left:248.360000pt;}
.x5{left:250.204000pt;}
.x29{left:254.673333pt;}
.x22{left:256.886667pt;}
.x1d{left:258.665333pt;}
.x1c{left:261.653333pt;}
.x20{left:270.005333pt;}
.x1e{left:272.778667pt;}
.x27{left:274.690667pt;}
.x37{left:286.737333pt;}
.x2e{left:296.404274pt;}
.x6{left:302.682510pt;}
.x36{left:306.058407pt;}
.x19{left:343.462667pt;}
.x30{left:345.507885pt;}
.x2b{left:401.077333pt;}
.x8{left:412.989314pt;}
.x11{left:421.471460pt;}
.x1b{left:428.414667pt;}
.x7{left:433.021182pt;}
.x25{left:438.069333pt;}
.x23{left:441.722667pt;}
.x21{left:446.102667pt;}
.x26{left:447.866667pt;}
.x9{left:452.635491pt;}
.x28{left:465.633333pt;}
.x2a{left:467.293333pt;}
.x2c{left:472.606667pt;}
.x1a{left:473.732000pt;}
.x1f{left:552.832000pt;}
}




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