
    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_11ae125d0b54ebfc75094dc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;font-style:normal;font-weight: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_2fc798cfa18a4deed7e1753f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;font-style:normal;font-weight: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_e4935c11d60ba7dd4fdc9b09.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923000;font-style:normal;font-weight: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_26ee78ff026eef4876a2a46b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;font-style:normal;font-weight: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_a455c4c1cc66cc599ab6a41e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_04bb4c973296427b234f7538.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;font-style:normal;font-weight: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_60d4ca1ef13a41eb08e03ebc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.409000;font-style:normal;font-weight: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_74b7440c9742f5a702df9a44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.217000;font-style:normal;font-weight: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_5c027e6c7af6eb7a766538fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.250000;font-style:normal;font-weight: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_de132bbd3290296005f38ff5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e112ee872672e08665e622d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_da57114ef681952dbcad45c3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7c32e3b0ca3f56cb05c2cc40.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2aecea0cc21c7a0eb439f247.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.730000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ec2f0276640425aa7a3eea6d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6b63b623b51c1bf0a3c75b37.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5aba70dc9e38dfb23864ac1c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a70b670c3f5cb90388285551.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.130000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4ba1dff49fe4d5ba1b94c1b6.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9a9460228c1cefcaa145b6e9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e112ee872672e08665e622d9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e112ee872672e08665e622d9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_e112ee872672e08665e622d9.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_532d3bd3f309ef5b4e022a78.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_2ade7f85f494d6c3601fea87.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_e112ee872672e08665e622d9.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_0a21fa4a48304358f9ed352c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_7ae606997467ef6203ecf3ef.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.115000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_f1e3b074454aa98ce5dff815.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_de2d9f892ba5b9367dd2a539.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_f1e3b074454aa98ce5dff815.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_2fa95fcb7c33212015437022.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249642,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.871400px;}
.v2{vertical-align:-17.820600px;}
.v5{vertical-align:-8.046000px;}
.v6{vertical-align:-1.846309px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.877279px;}
.v1{vertical-align:23.868000px;}
.ls71{letter-spacing:-3.560832px;}
.ls7b{letter-spacing:-3.486648px;}
.ls7e{letter-spacing:-3.203374px;}
.ls6a{letter-spacing:-3.115728px;}
.ls7f{letter-spacing:-2.967360px;}
.ls75{letter-spacing:-2.687328px;}
.ls77{letter-spacing:-2.504096px;}
.ls6c{letter-spacing:-2.264467px;}
.ls61{letter-spacing:-2.087378px;}
.ls53{letter-spacing:-2.038348px;}
.ls65{letter-spacing:-2.026714px;}
.ls4e{letter-spacing:-2.026393px;}
.ls7d{letter-spacing:-1.973299px;}
.ls7c{letter-spacing:-1.926011px;}
.ls78{letter-spacing:-1.805279px;}
.ls76{letter-spacing:-1.747044px;}
.ls6e{letter-spacing:-1.724778px;}
.ls7a{letter-spacing:-1.717830px;}
.ls79{letter-spacing:-1.627420px;}
.ls67{letter-spacing:-1.626970px;}
.ls6d{letter-spacing:-1.609793px;}
.ls6b{letter-spacing:-1.585694px;}
.ls6f{letter-spacing:-1.573169px;}
.ls74{letter-spacing:-1.570853px;}
.ls52{letter-spacing:-1.500368px;}
.ls54{letter-spacing:-1.463304px;}
.ls73{letter-spacing:-1.428048px;}
.ls58{letter-spacing:-1.420278px;}
.ls70{letter-spacing:-1.410427px;}
.ls14{letter-spacing:-1.319843px;}
.ls68{letter-spacing:-1.152437px;}
.ls72{letter-spacing:-1.043220px;}
.ls60{letter-spacing:-1.011410px;}
.ls50{letter-spacing:-1.004230px;}
.ls66{letter-spacing:-1.001491px;}
.ls5f{letter-spacing:-0.968371px;}
.ls3f{letter-spacing:-0.771105px;}
.ls51{letter-spacing:-0.735240px;}
.ls69{letter-spacing:-0.724339px;}
.ls23{letter-spacing:-0.585801px;}
.ls25{letter-spacing:-0.263013px;}
.ls2f{letter-spacing:-0.179327px;}
.ls4d{letter-spacing:-0.083686px;}
.ls5b{letter-spacing:-0.080698px;}
.ls4c{letter-spacing:-0.077708px;}
.ls31{letter-spacing:-0.071731px;}
.ls29{letter-spacing:-0.065753px;}
.ls2b{letter-spacing:-0.059776px;}
.ls63{letter-spacing:-0.059178px;}
.ls27{letter-spacing:-0.053798px;}
.ls26{letter-spacing:-0.047820px;}
.ls3c{letter-spacing:-0.043038px;}
.ls20{letter-spacing:-0.041843px;}
.ls55{letter-spacing:-0.037659px;}
.ls13{letter-spacing:-0.035865px;}
.ls56{letter-spacing:-0.032279px;}
.ls1f{letter-spacing:-0.029888px;}
.ls1a{letter-spacing:-0.026899px;}
.ls1e{letter-spacing:-0.023910px;}
.ls12{letter-spacing:-0.021519px;}
.ls11{letter-spacing:-0.019128px;}
.ls1d{letter-spacing:-0.017933px;}
.ls17{letter-spacing:-0.016140px;}
.ls10{letter-spacing:-0.014346px;}
.ls1c{letter-spacing:-0.011955px;}
.ls19{letter-spacing:-0.010760px;}
.lsf{letter-spacing:-0.009564px;}
.ls21{letter-spacing:-0.005978px;}
.ls1b{letter-spacing:-0.005380px;}
.ls16{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005380px;}
.ls8{letter-spacing:0.005978px;}
.ls2{letter-spacing:0.010760px;}
.ls3e{letter-spacing:0.011273px;}
.ls9{letter-spacing:0.011955px;}
.ls15{letter-spacing:0.014346px;}
.ls18{letter-spacing:0.016140px;}
.lsa{letter-spacing:0.017933px;}
.ls1{letter-spacing:0.021519px;}
.lsd{letter-spacing:0.023910px;}
.ls49{letter-spacing:0.026899px;}
.ls38{letter-spacing:0.029888px;}
.ls4a{letter-spacing:0.032279px;}
.ls28{letter-spacing:0.035865px;}
.ls2d{letter-spacing:0.041843px;}
.ls34{letter-spacing:0.047820px;}
.ls5d{letter-spacing:0.053798px;}
.lsb{letter-spacing:0.059776px;}
.ls2a{letter-spacing:0.065753px;}
.ls6{letter-spacing:0.107597px;}
.ls5e{letter-spacing:0.365829px;}
.ls22{letter-spacing:0.633621px;}
.ls64{letter-spacing:0.839255px;}
.ls4f{letter-spacing:1.321041px;}
.lse{letter-spacing:2.972856px;}
.ls36{letter-spacing:2.973456px;}
.ls37{letter-spacing:2.980125px;}
.ls48{letter-spacing:2.980512px;}
.ls45{letter-spacing:3.027456px;}
.ls47{letter-spacing:4.373810px;}
.ls35{letter-spacing:4.662065px;}
.ls5{letter-spacing:7.065168px;}
.ls39{letter-spacing:8.948189px;}
.ls3a{letter-spacing:9.001868px;}
.ls59{letter-spacing:10.458409px;}
.ls5a{letter-spacing:10.469169px;}
.ls30{letter-spacing:10.873182px;}
.ls0{letter-spacing:11.013084px;}
.ls5c{letter-spacing:12.787880px;}
.ls57{letter-spacing:14.498669px;}
.ls46{letter-spacing:15.022125px;}
.ls3b{letter-spacing:15.231456px;}
.ls3{letter-spacing:17.291700px;}
.ls4{letter-spacing:17.345700px;}
.ls33{letter-spacing:18.213625px;}
.ls24{letter-spacing:18.811381px;}
.ls40{letter-spacing:19.767791px;}
.ls41{letter-spacing:20.415456px;}
.ls3d{letter-spacing:20.819841px;}
.ls62{letter-spacing:20.841500px;}
.ls42{letter-spacing:21.840187px;}
.ls4b{letter-spacing:22.474512px;}
.ls44{letter-spacing:24.000187px;}
.ls2c{letter-spacing:24.484086px;}
.ls43{letter-spacing:24.789456px;}
.ls2e{letter-spacing:33.103727px;}
.lsc{letter-spacing:36.074856px;}
.ls32{letter-spacing:2200.417544px;}
.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;}
}
.wsca{word-spacing:-51.676196px;}
.wsc8{word-spacing:-51.622517px;}
.ws60{word-spacing:-33.163503px;}
.ws61{word-spacing:-29.872125px;}
.ws99{word-spacing:-26.915693px;}
.ws54{word-spacing:-24.543861px;}
.ws18e{word-spacing:-22.101000px;}
.ws179{word-spacing:-20.895299px;}
.ws98{word-spacing:-20.879617px;}
.wsbf{word-spacing:-19.827567px;}
.ws37{word-spacing:-18.871157px;}
.ws119{word-spacing:-14.873692px;}
.ws31{word-spacing:-13.748388px;}
.ws199{word-spacing:-13.499932px;}
.ws19a{word-spacing:-13.278936px;}
.ws191{word-spacing:-13.130568px;}
.ws190{word-spacing:-13.015757px;}
.ws197{word-spacing:-12.759648px;}
.ws194{word-spacing:-12.753421px;}
.ws193{word-spacing:-12.685464px;}
.ws15d{word-spacing:-12.373632px;}
.ws196{word-spacing:-10.948142px;}
.ws65{word-spacing:-10.932957px;}
.ws198{word-spacing:-10.866101px;}
.ws13a{word-spacing:-10.522967px;}
.ws195{word-spacing:-10.249325px;}
.ws1a9{word-spacing:-8.560516px;}
.ws130{word-spacing:-5.159267px;}
.ws192{word-spacing:-2.162527px;}
.ws14f{word-spacing:-1.737688px;}
.ws3{word-spacing:-0.129116px;}
.ws88{word-spacing:-0.107596px;}
.ws152{word-spacing:-0.069938px;}
.wscb{word-spacing:-0.065753px;}
.ws15f{word-spacing:-0.064558px;}
.ws19{word-spacing:-0.059776px;}
.ws159{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.048419px;}
.ws42{word-spacing:-0.041843px;}
.ws53{word-spacing:-0.035865px;}
.ws11{word-spacing:-0.032279px;}
.ws6f{word-spacing:0.000000px;}
.ws19e{word-spacing:0.724339px;}
.ws10e{word-spacing:0.944454px;}
.ws172{word-spacing:0.957612px;}
.ws19c{word-spacing:1.001491px;}
.ws1a5{word-spacing:1.043220px;}
.ws136{word-spacing:1.366479px;}
.ws12a{word-spacing:1.391574px;}
.ws1a4{word-spacing:1.410427px;}
.ws1a6{word-spacing:1.428048px;}
.ws1a7{word-spacing:1.570853px;}
.ws1a3{word-spacing:1.573169px;}
.ws19f{word-spacing:1.585694px;}
.ws1a1{word-spacing:1.609793px;}
.ws19d{word-spacing:1.626970px;}
.ws1aa{word-spacing:1.627420px;}
.ws1ab{word-spacing:1.717830px;}
.ws1a2{word-spacing:1.724778px;}
.ws1ac{word-spacing:1.926011px;}
.ws1ad{word-spacing:1.973299px;}
.ws128{word-spacing:1.978572px;}
.ws19b{word-spacing:2.026714px;}
.ws176{word-spacing:2.033580px;}
.ws1a8{word-spacing:2.047488px;}
.ws1a0{word-spacing:2.264467px;}
.ws139{word-spacing:2.921253px;}
.ws147{word-spacing:9.608394px;}
.ws66{word-spacing:9.856996px;}
.ws13b{word-spacing:10.458409px;}
.wsb7{word-spacing:10.484640px;}
.wsdb{word-spacing:10.508550px;}
.wse3{word-spacing:10.657989px;}
.ws64{word-spacing:10.765586px;}
.ws3a{word-spacing:10.885137px;}
.ws1{word-spacing:10.912661px;}
.ws2{word-spacing:10.946135px;}
.ws0{word-spacing:10.955699px;}
.ws18a{word-spacing:11.098610px;}
.ws46{word-spacing:11.255745px;}
.ws149{word-spacing:11.335323px;}
.ws14a{word-spacing:11.378362px;}
.ws148{word-spacing:11.582796px;}
.ws24{word-spacing:11.680152px;}
.ws47{word-spacing:11.698085px;}
.wsc6{word-spacing:11.704062px;}
.ws25{word-spacing:11.710040px;}
.wsd4{word-spacing:11.769816px;}
.ws180{word-spacing:11.787229px;}
.wsd7{word-spacing:11.859479px;}
.ws11a{word-spacing:11.943165px;}
.ws118{word-spacing:11.967075px;}
.wse2{word-spacing:11.985008px;}
.ws11b{word-spacing:12.002940px;}
.ws11c{word-spacing:12.062716px;}
.ws76{word-spacing:12.098581px;}
.ws11d{word-spacing:12.110537px;}
.wsd{word-spacing:12.163818px;}
.ws17{word-spacing:12.164335px;}
.ws23{word-spacing:12.188245px;}
.wsec{word-spacing:12.194222px;}
.ws22{word-spacing:12.212155px;}
.wse{word-spacing:12.244516px;}
.wscc{word-spacing:12.253998px;}
.ws15e{word-spacing:12.266035px;}
.ws10{word-spacing:12.298314px;}
.ws14e{word-spacing:12.309074px;}
.ws12{word-spacing:12.319834px;}
.ws16c{word-spacing:12.325213px;}
.ws15c{word-spacing:12.330593px;}
.ws135{word-spacing:12.341353px;}
.ws134{word-spacing:12.346733px;}
.wsc{word-spacing:12.352113px;}
.ws140{word-spacing:12.357492px;}
.ws11f{word-spacing:12.367572px;}
.wsf{word-spacing:12.368252px;}
.ws12f{word-spacing:12.373632px;}
.ws138{word-spacing:12.384392px;}
.wsb{word-spacing:12.395151px;}
.ws17a{word-spacing:12.405911px;}
.ws137{word-spacing:12.416671px;}
.ws14b{word-spacing:12.438190px;}
.ws183{word-spacing:12.535027px;}
.ws182{word-spacing:12.545787px;}
.wsb4{word-spacing:12.576786px;}
.wsb5{word-spacing:12.606674px;}
.wsf3{word-spacing:12.612652px;}
.ws18b{word-spacing:12.723322px;}
.ws55{word-spacing:12.738180px;}
.ws155{word-spacing:12.766360px;}
.ws9d{word-spacing:12.786001px;}
.ws18c{word-spacing:12.857818px;}
.ws10b{word-spacing:13.007171px;}
.ws124{word-spacing:13.168565px;}
.ws169{word-spacing:13.218267px;}
.ws16b{word-spacing:13.298964px;}
.ws3b{word-spacing:13.323981px;}
.ws26{word-spacing:13.341914px;}
.ws48{word-spacing:13.425600px;}
.ws49{word-spacing:13.437555px;}
.ws132{word-spacing:13.498019px;}
.ws133{word-spacing:13.503398px;}
.wsc5{word-spacing:13.533196px;}
.ws131{word-spacing:13.546437px;}
.ws127{word-spacing:13.581016px;}
.ws3d{word-spacing:13.622859px;}
.ws18{word-spacing:13.628837px;}
.ws77{word-spacing:13.634814px;}
.ws1a{word-spacing:13.640792px;}
.wsc1{word-spacing:13.646769px;}
.ws129{word-spacing:13.664702px;}
.ws10c{word-spacing:13.670680px;}
.wsd3{word-spacing:13.676657px;}
.ws125{word-spacing:13.688612px;}
.ws93{word-spacing:13.694590px;}
.wsa0{word-spacing:13.700568px;}
.ws7b{word-spacing:13.712523px;}
.wsf9{word-spacing:13.724478px;}
.ws123{word-spacing:13.736433px;}
.ws11e{word-spacing:13.754366px;}
.wse7{word-spacing:13.778276px;}
.ws9f{word-spacing:13.784253px;}
.ws184{word-spacing:13.820809px;}
.ws122{word-spacing:13.826096px;}
.ws185{word-spacing:13.896127px;}
.ws16d{word-spacing:14.003724px;}
.ws20{word-spacing:14.053244px;}
.ws158{word-spacing:14.068282px;}
.ws28{word-spacing:14.071176px;}
.wsa{word-spacing:14.188313px;}
.ws9{word-spacing:14.195486px;}
.ws8{word-spacing:14.224178px;}
.ws6{word-spacing:14.252870px;}
.ws16{word-spacing:14.267216px;}
.ws78{word-spacing:14.324601px;}
.wsc7{word-spacing:14.352122px;}
.wsc9{word-spacing:14.405920px;}
.ws1c{word-spacing:14.609157px;}
.ws4a{word-spacing:14.621112px;}
.ws153{word-spacing:14.670824px;}
.ws151{word-spacing:14.697723px;}
.ws165{word-spacing:14.740762px;}
.wsea{word-spacing:14.764573px;}
.ws7a{word-spacing:14.931945px;}
.ws16a{word-spacing:15.122730px;}
.wsdc{word-spacing:15.242778px;}
.ws166{word-spacing:15.440141px;}
.wsd2{word-spacing:15.475903px;}
.ws167{word-spacing:15.493939px;}
.ws2b{word-spacing:15.523723px;}
.ws2c{word-spacing:15.541656px;}
.wsf5{word-spacing:15.559589px;}
.ws14c{word-spacing:15.623055px;}
.ws21{word-spacing:15.631319px;}
.ws14d{word-spacing:15.698373px;}
.wsf6{word-spacing:15.709028px;}
.ws160{word-spacing:15.730652px;}
.wsac{word-spacing:15.744893px;}
.ws14{word-spacing:15.913567px;}
.wsb9{word-spacing:16.372537px;}
.ws100{word-spacing:16.426335px;}
.ws154{word-spacing:16.505349px;}
.ws69{word-spacing:16.510021px;}
.ws6a{word-spacing:16.545886px;}
.wsd1{word-spacing:16.557841px;}
.ws126{word-spacing:16.677392px;}
.ws111{word-spacing:16.683370px;}
.ws10a{word-spacing:16.695325px;}
.wsad{word-spacing:16.790966px;}
.wsbe{word-spacing:16.880629px;}
.ws7{word-spacing:16.921249px;}
.wsa7{word-spacing:17.083866px;}
.ws187{word-spacing:17.150930px;}
.ws173{word-spacing:17.167069px;}
.ws174{word-spacing:17.177829px;}
.wsd6{word-spacing:17.239283px;}
.wse6{word-spacing:17.305036px;}
.ws34{word-spacing:17.322969px;}
.wsa8{word-spacing:17.328946px;}
.wsf7{word-spacing:17.340902px;}
.ws83{word-spacing:17.394700px;}
.wsf8{word-spacing:17.430565px;}
.wsa9{word-spacing:17.454475px;}
.ws1d{word-spacing:17.585982px;}
.ws9e{word-spacing:17.651735px;}
.ws164{word-spacing:17.705053px;}
.wsdd{word-spacing:17.717488px;}
.ws84{word-spacing:18.022343px;}
.ws58{word-spacing:18.046254px;}
.ws36{word-spacing:18.082119px;}
.ws59{word-spacing:18.159827px;}
.ws74{word-spacing:18.201670px;}
.ws121{word-spacing:18.207648px;}
.ws73{word-spacing:18.213625px;}
.wsb6{word-spacing:18.225580px;}
.ws33{word-spacing:18.249491px;}
.wse9{word-spacing:18.327199px;}
.ws7e{word-spacing:18.428817px;}
.wsa1{word-spacing:18.548369px;}
.wsed{word-spacing:18.626077px;}
.ws8a{word-spacing:18.661942px;}
.ws170{word-spacing:18.668045px;}
.ws38{word-spacing:18.685853px;}
.ws70{word-spacing:18.763561px;}
.ws13f{word-spacing:18.786401px;}
.ws102{word-spacing:18.799426px;}
.wsa2{word-spacing:18.829314px;}
.ws145{word-spacing:18.829440px;}
.ws13e{word-spacing:18.850959px;}
.ws146{word-spacing:18.893998px;}
.ws15a{word-spacing:18.947796px;}
.ws4e{word-spacing:18.978753px;}
.ws15b{word-spacing:19.001595px;}
.ws4f{word-spacing:19.020596px;}
.ws12b{word-spacing:19.130711px;}
.wsde{word-spacing:19.164057px;}
.ws35{word-spacing:19.181990px;}
.ws7d{word-spacing:19.205900px;}
.wsef{word-spacing:19.283609px;}
.ws150{word-spacing:19.302866px;}
.ws163{word-spacing:19.388943px;}
.ws162{word-spacing:19.410463px;}
.ws161{word-spacing:19.421222px;}
.ws12d{word-spacing:19.577238px;}
.ws12c{word-spacing:19.587997px;}
.ws12e{word-spacing:19.609517px;}
.wsc0{word-spacing:19.737903px;}
.ws16e{word-spacing:19.792431px;}
.ws13{word-spacing:19.835470px;}
.ws4d{word-spacing:19.899297px;}
.ws68{word-spacing:19.917230px;}
.ws80{word-spacing:19.947118px;}
.ws7f{word-spacing:20.000916px;}
.wsbc{word-spacing:20.216108px;}
.wsc2{word-spacing:20.335659px;}
.wsd5{word-spacing:20.431300px;}
.ws6b{word-spacing:20.467165px;}
.ws3c{word-spacing:20.485098px;}
.ws89{word-spacing:20.514986px;}
.wsf0{word-spacing:20.538896px;}
.wsf1{word-spacing:20.610627px;}
.ws109{word-spacing:20.652470px;}
.ws9a{word-spacing:20.742133px;}
.wsf4{word-spacing:20.777999px;}
.ws6e{word-spacing:20.783976px;}
.ws97{word-spacing:20.789954px;}
.ws5d{word-spacing:20.831797px;}
.wsb8{word-spacing:20.879617px;}
.ws178{word-spacing:20.884539px;}
.wsce{word-spacing:20.885595px;}
.ws94{word-spacing:20.909505px;}
.wse5{word-spacing:20.915482px;}
.wsd8{word-spacing:20.945370px;}
.ws95{word-spacing:20.975258px;}
.wsdf{word-spacing:21.017101px;}
.ws96{word-spacing:21.029056px;}
.ws79{word-spacing:21.094809px;}
.ws143{word-spacing:21.099732px;}
.ws144{word-spacing:21.132012px;}
.ws142{word-spacing:21.207329px;}
.ws106{word-spacing:21.231362px;}
.wscd{word-spacing:21.256203px;}
.ws4{word-spacing:21.304166px;}
.ws90{word-spacing:21.375755px;}
.wsc3{word-spacing:21.405642px;}
.ws5{word-spacing:21.476321px;}
.ws8f{word-spacing:21.513238px;}
.ws9c{word-spacing:21.620835px;}
.ws104{word-spacing:21.642009px;}
.ws112{word-spacing:21.656700px;}
.ws105{word-spacing:21.788206px;}
.ws115{word-spacing:21.937645px;}
.wsd0{word-spacing:21.967533px;}
.wsfc{word-spacing:21.991443px;}
.ws2f{word-spacing:22.027309px;}
.ws177{word-spacing:22.148801px;}
.ws141{word-spacing:22.218739px;}
.ws188{word-spacing:22.283297px;}
.ws189{word-spacing:22.294057px;}
.ws120{word-spacing:22.332164px;}
.ws3f{word-spacing:22.344119px;}
.ws3e{word-spacing:22.356074px;}
.ws40{word-spacing:22.421828px;}
.ws81{word-spacing:22.487581px;}
.ws29{word-spacing:22.756571px;}
.wsbb{word-spacing:22.786459px;}
.ws2a{word-spacing:22.816347px;}
.ws62{word-spacing:22.876122px;}
.ws63{word-spacing:22.911987px;}
.ws156{word-spacing:22.998816px;}
.ws157{word-spacing:23.041855px;}
.ws6c{word-spacing:23.163045px;}
.ws6d{word-spacing:23.300529px;}
.ws30{word-spacing:23.318462px;}
.wsb1{word-spacing:23.360304px;}
.wseb{word-spacing:23.432035px;}
.wsb0{word-spacing:23.551586px;}
.ws17e{word-spacing:23.703575px;}
.ws17f{word-spacing:23.735854px;}
.ws17d{word-spacing:23.741234px;}
.ws2e{word-spacing:23.886330px;}
.ws2d{word-spacing:23.892307px;}
.ws107{word-spacing:23.898285px;}
.ws186{word-spacing:24.230799px;}
.ws39{word-spacing:24.328669px;}
.ws7c{word-spacing:24.334647px;}
.ws50{word-spacing:24.358557px;}
.ws5e{word-spacing:24.394422px;}
.ws51{word-spacing:24.406377px;}
.ws52{word-spacing:24.448220px;}
.ws5a{word-spacing:24.466153px;}
.ws4c{word-spacing:24.484086px;}
.ws181{word-spacing:24.494412px;}
.ws17c{word-spacing:24.596628px;}
.ws17b{word-spacing:24.639667px;}
.ws108{word-spacing:24.729166px;}
.ws1e{word-spacing:24.765031px;}
.ws4b{word-spacing:24.860672px;}
.ws103{word-spacing:24.974246px;}
.wsbd{word-spacing:24.986201px;}
.ws5b{word-spacing:25.063909px;}
.ws82{word-spacing:25.123685px;}
.wscf{word-spacing:25.249213px;}
.ws171{word-spacing:25.769434px;}
.wsa3{word-spacing:25.960543px;}
.wsaf{word-spacing:26.056184px;}
.ws113{word-spacing:26.115960px;}
.wsfd{word-spacing:26.121937px;}
.ws85{word-spacing:26.127915px;}
.wsf2{word-spacing:26.175735px;}
.ws8b{word-spacing:26.313219px;}
.ws67{word-spacing:26.319197px;}
.ws18d{word-spacing:26.345076px;}
.wse0{word-spacing:26.528411px;}
.ws91{word-spacing:26.659918px;}
.ws10d{word-spacing:26.713716px;}
.wsa4{word-spacing:26.761536px;}
.ws8c{word-spacing:26.958796px;}
.ws9b{word-spacing:27.102257px;}
.ws175{word-spacing:27.114394px;}
.wsba{word-spacing:27.305494px;}
.ws56{word-spacing:27.317449px;}
.ws1b{word-spacing:27.454933px;}
.wsb3{word-spacing:27.472866px;}
.wsae{word-spacing:27.508731px;}
.ws5c{word-spacing:27.568507px;}
.ws13c{word-spacing:27.609339px;}
.wsa6{word-spacing:27.634260px;}
.wsa5{word-spacing:27.652193px;}
.ws168{word-spacing:27.975168px;}
.ws72{word-spacing:28.226038px;}
.wsfb{word-spacing:28.249949px;}
.wsd9{word-spacing:28.279836px;}
.ws1f{word-spacing:28.285814px;}
.ws71{word-spacing:28.363522px;}
.ws75{word-spacing:28.429275px;}
.ws13d{word-spacing:28.566950px;}
.ws32{word-spacing:28.913458px;}
.ws87{word-spacing:28.931390px;}
.wsda{word-spacing:29.074852px;}
.ws110{word-spacing:29.110717px;}
.ws8e{word-spacing:29.385685px;}
.wsfe{word-spacing:29.690541px;}
.ws45{word-spacing:29.947576px;}
.ws44{word-spacing:30.013329px;}
.ws57{word-spacing:30.174723px;}
.wsab{word-spacing:30.473601px;}
.ws16f{word-spacing:30.595150px;}
.ws10f{word-spacing:30.868120px;}
.wsb2{word-spacing:31.232751px;}
.ws114{word-spacing:31.453921px;}
.ws27{word-spacing:31.597382px;}
.wsfa{word-spacing:31.758776px;}
.ws116{word-spacing:32.117430px;}
.wsee{word-spacing:32.171228px;}
.ws117{word-spacing:32.183183px;}
.ws92{word-spacing:32.290779px;}
.wse4{word-spacing:32.446196px;}
.wse1{word-spacing:32.655410px;}
.wse8{word-spacing:32.703231px;}
.wsff{word-spacing:32.715186px;}
.ws5f{word-spacing:32.858647px;}
.ws43{word-spacing:33.109705px;}
.ws41{word-spacing:33.617797px;}
.ws101{word-spacing:34.364992px;}
.wsaa{word-spacing:36.235969px;}
.wsc4{word-spacing:36.439206px;}
.ws86{word-spacing:39.685021px;}
.ws8d{word-spacing:42.177663px;}
.ws18f{word-spacing:310.995893px;}
._d{margin-left:-33.147949px;}
._c{margin-left:-24.478108px;}
._e{margin-left:-22.876183px;}
._1f{margin-left:-21.834443px;}
._13{margin-left:-20.802907px;}
._9{margin-left:-18.835292px;}
._1d{margin-left:-16.247117px;}
._1c{margin-left:-14.477149px;}
._1e{margin-left:-13.345355px;}
._10{margin-left:-12.313774px;}
._f{margin-left:-10.634079px;}
._11{margin-left:-8.631597px;}
._5{margin-left:-6.818026px;}
._2{margin-left:-5.092894px;}
._b{margin-left:-4.003762px;}
._3{margin-left:-2.937393px;}
._0{margin-left:-1.621118px;}
._1{width:1.974991px;}
._4{width:3.297232px;}
._a{width:4.782051px;}
._6{width:8.217215px;}
._8{width:11.792020px;}
._7{width:13.325864px;}
._14{width:14.741863px;}
._17{width:15.884788px;}
._16{width:20.289038px;}
._12{width:21.932867px;}
._1b{width:23.929528px;}
._15{width:28.408947px;}
._1a{width:29.875845px;}
._19{width:35.430198px;}
._20{width:310.638872px;}
._21{width:315.117911px;}
._18{width:2201.046402px;}
.fc12{color:transparent;}
.fc10{color:rgb(224,245,253);}
.fc1{color:rgb(0,0,0);}
.fcf{color:rgb(254,243,169);}
.fce{color:rgb(0,148,70);}
.fc2{color:rgb(46,42,43);}
.fc3{color:rgb(255,255,255);}
.fc11{color:rgb(246,138,17);}
.fc7{color:rgb(57,53,54);}
.fc4{color:rgb(246,135,18);}
.fc8{color:rgb(201,234,250);}
.fca{color:rgb(43,67,160);}
.fc5{color:rgb(77,74,74);}
.fcd{color:rgb(240,239,239);}
.fc0{color:rgb(35,31,32);}
.fc6{color:rgb(254,230,76);}
.fc9{color:rgb(135,199,38);}
.fcb{color:rgb(242,241,62);}
.fcc{color:rgb(146,145,37);}
.fs18{font-size:9.273000px;}
.fs10{font-size:9.286200px;}
.fsb{font-size:10.200600px;}
.fse{font-size:27.819000px;}
.fs12{font-size:27.859200px;}
.fs3{font-size:35.865600px;}
.fs1c{font-size:37.092000px;}
.fs6{font-size:37.575000px;}
.fsd{font-size:41.728800px;}
.fs7{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs8{font-size:53.678400px;}
.fs4{font-size:53.798400px;}
.fs16{font-size:54.247200px;}
.fs9{font-size:56.188800px;}
.fs1d{font-size:57.261000px;}
.fs15{font-size:57.492600px;}
.fs1a{font-size:58.234800px;}
.fs5{font-size:59.775600px;}
.fs1b{font-size:60.274800px;}
.fs1f{font-size:61.665600px;}
.fs1e{font-size:62.129400px;}
.fsc{font-size:63.334800px;}
.fs19{font-size:63.984000px;}
.fs11{font-size:67.790400px;}
.fs14{font-size:68.620200px;}
.fs17{font-size:71.402400px;}
.fs2{font-size:71.730600px;}
.fs13{font-size:74.184000px;}
.fs20{font-size:76.270800px;}
.fsa{font-size:79.500000px;}
.fs1{font-size:107.596800px;}
.fsf{font-size:126.112800px;}
.y0{bottom:0.000000px;}
.y14e{bottom:9.608040px;}
.y154{bottom:9.856786px;}
.y144{bottom:9.857236px;}
.y149{bottom:9.857520px;}
.y15c{bottom:9.857550px;}
.y14d{bottom:12.393900px;}
.y153{bottom:12.639000px;}
.y143{bottom:12.639450px;}
.y148{bottom:12.917700px;}
.y150{bottom:20.733432px;}
.y158{bottom:20.929800px;}
.y15f{bottom:21.060450px;}
.y156{bottom:21.123150px;}
.y169{bottom:21.123300px;}
.y145{bottom:21.123600px;}
.y162{bottom:21.125824px;}
.y14b{bottom:26.135100px;}
.y164{bottom:34.057050px;}
.y15d{bottom:34.685400px;}
.y167{bottom:34.799550px;}
.y166{bottom:34.878300px;}
.y146{bottom:35.081250px;}
.y160{bottom:35.190300px;}
.y15a{bottom:35.496750px;}
.y161{bottom:35.728200px;}
.y157{bottom:35.777850px;}
.y163{bottom:35.828550px;}
.y155{bottom:36.909000px;}
.y165{bottom:36.909450px;}
.y168{bottom:37.261050px;}
.y14f{bottom:38.613150px;}
.y15e{bottom:38.911050px;}
.y14a{bottom:45.587250px;}
.y15b{bottom:48.469800px;}
.y151{bottom:55.004100px;}
.y152{bottom:75.000000px;}
.y2f{bottom:75.212833px;}
.y4e{bottom:75.307501px;}
.y88{bottom:77.229698px;}
.yf9{bottom:77.236824px;}
.yc3{bottom:77.545934px;}
.y13a{bottom:77.962601px;}
.y2e{bottom:92.263823px;}
.yf8{bottom:92.924437px;}
.y4d{bottom:93.114652px;}
.y139{bottom:93.663664px;}
.y87{bottom:94.280688px;}
.yc2{bottom:94.596924px;}
.yf7{bottom:108.625500px;}
.y2d{bottom:109.314813px;}
.y138{bottom:109.351277px;}
.y4c{bottom:110.906859px;}
.y86{bottom:111.331678px;}
.yc1{bottom:111.647914px;}
.y137{bottom:125.038891px;}
.y2c{bottom:126.365803px;}
.y85{bottom:128.382668px;}
.yc0{bottom:128.698904px;}
.y4b{bottom:128.699067px;}
.yf6{bottom:137.097000px;}
.y136{bottom:140.739954px;}
.y2b{bottom:143.416793px;}
.ybf{bottom:145.749894px;}
.y4a{bottom:146.506218px;}
.y84{bottom:148.429910px;}
.y135{bottom:156.427567px;}
.y2a{bottom:160.467783px;}
.ybe{bottom:162.814333px;}
.y83{bottom:165.480900px;}
.y49{bottom:166.540010px;}
.y134{bottom:172.115181px;}
.y29{bottom:177.518773px;}
.ybd{bottom:179.865323px;}
.y82{bottom:182.531889px;}
.y48{bottom:183.589680px;}
.yf5{bottom:186.392180px;}
.y133{bottom:187.802794px;}
.y28{bottom:194.569763px;}
.ybc{bottom:196.916313px;}
.y81{bottom:199.582879px;}
.y47{bottom:200.640670px;}
.yf4{bottom:203.443169px;}
.y132{bottom:203.503857px;}
.y27{bottom:211.620752px;}
.ybb{bottom:213.967303px;}
.y80{bottom:216.633869px;}
.y46{bottom:217.691660px;}
.y131{bottom:219.191471px;}
.yf3{bottom:220.494159px;}
.y26{bottom:228.671742px;}
.yba{bottom:231.018293px;}
.y7f{bottom:233.684859px;}
.y44{bottom:234.722528px;}
.y130{bottom:234.879084px;}
.yf2{bottom:237.545149px;}
.y45{bottom:239.710500px;}
.y25{bottom:245.722732px;}
.yb9{bottom:248.069283px;}
.y12f{bottom:250.580147px;}
.y7e{bottom:250.735849px;}
.y43{bottom:251.773517px;}
.y24{bottom:262.773722px;}
.yb8{bottom:265.120273px;}
.y12e{bottom:266.267760px;}
.y7d{bottom:267.786839px;}
.y42{bottom:268.837957px;}
.y142{bottom:273.606000px;}
.y23{bottom:279.824712px;}
.y12d{bottom:281.955374px;}
.yb7{bottom:282.171263px;}
.yf1{bottom:282.176601px;}
.y7c{bottom:284.837829px;}
.y41{bottom:285.888947px;}
.y22{bottom:296.875702px;}
.y12c{bottom:297.656437px;}
.yb6{bottom:299.222252px;}
.yf0{bottom:299.227591px;}
.y7b{bottom:301.888819px;}
.y40{bottom:302.939937px;}
.y12b{bottom:313.344050px;}
.y21{bottom:313.940141px;}
.yb5{bottom:316.273242px;}
.yef{bottom:316.278581px;}
.y3f{bottom:319.990927px;}
.y7a{bottom:321.922611px;}
.y12a{bottom:329.031664px;}
.y20{bottom:330.991131px;}
.yb4{bottom:333.324232px;}
.yee{bottom:333.329571px;}
.y3e{bottom:337.041916px;}
.y79{bottom:338.973601px;}
.y129{bottom:344.732727px;}
.y1f{bottom:348.042121px;}
.yb3{bottom:350.375222px;}
.yed{bottom:350.380561px;}
.y3d{bottom:354.834124px;}
.y78{bottom:356.024591px;}
.y128{bottom:360.420340px;}
.y1e{bottom:365.093111px;}
.yb2{bottom:367.426212px;}
.yec{bottom:367.431550px;}
.y3c{bottom:371.885114px;}
.y77{bottom:373.075581px;}
.y127{bottom:376.107954px;}
.y1d{bottom:382.144101px;}
.yb1{bottom:384.477202px;}
.yeb{bottom:384.482540px;}
.y3b{bottom:389.692265px;}
.y76{bottom:390.140020px;}
.y126{bottom:391.795567px;}
.y1c{bottom:399.195091px;}
.yb0{bottom:401.528192px;}
.yea{bottom:401.533530px;}
.y75{bottom:407.191010px;}
.y125{bottom:407.496630px;}
.y3a{bottom:408.227184px;}
.y1b{bottom:416.246081px;}
.yaf{bottom:418.579182px;}
.ye9{bottom:418.584520px;}
.y124{bottom:423.184244px;}
.y72{bottom:424.230852px;}
.y74{bottom:424.242000px;}
.y39{bottom:425.278174px;}
.y73{bottom:426.942000px;}
.y1a{bottom:433.297071px;}
.yae{bottom:435.630172px;}
.ye8{bottom:435.635510px;}
.y123{bottom:438.871857px;}
.y38{bottom:443.085325px;}
.y71{bottom:443.373988px;}
.y19{bottom:450.348061px;}
.ye7{bottom:452.678222px;}
.yad{bottom:452.681162px;}
.y122{bottom:454.572920px;}
.y37{bottom:460.136315px;}
.y70{bottom:463.407780px;}
.y18{bottom:467.399050px;}
.ye6{bottom:469.729212px;}
.yac{bottom:469.732151px;}
.y121{bottom:470.260534px;}
.y159{bottom:472.212000px;}
.y36{bottom:477.187305px;}
.y6f{bottom:480.458770px;}
.y17{bottom:484.450040px;}
.y120{bottom:485.948147px;}
.ye5{bottom:486.780202px;}
.yab{bottom:486.783141px;}
.y35{bottom:494.979512px;}
.y6e{bottom:497.509760px;}
.y16{bottom:501.501030px;}
.y11f{bottom:501.649210px;}
.ye4{bottom:503.831192px;}
.yaa{bottom:503.834131px;}
.y34{bottom:512.786664px;}
.y6d{bottom:514.560750px;}
.y11e{bottom:517.336824px;}
.y15{bottom:518.552020px;}
.ye3{bottom:520.882182px;}
.ya9{bottom:520.885121px;}
.y33{bottom:530.578871px;}
.y6c{bottom:531.611740px;}
.y11d{bottom:533.024437px;}
.y14{bottom:535.603010px;}
.ye2{bottom:537.933172px;}
.ya8{bottom:537.936111px;}
.y32{bottom:548.371078px;}
.y6b{bottom:548.662730px;}
.y11c{bottom:548.713534px;}
.y13{bottom:552.654000px;}
.ye1{bottom:554.984162px;}
.ya7{bottom:554.987101px;}
.y11b{bottom:564.401147px;}
.y141{bottom:564.622500px;}
.y31{bottom:565.422068px;}
.y6a{bottom:565.713720px;}
.ye0{bottom:572.048601px;}
.ya6{bottom:572.051540px;}
.y11a{bottom:580.088760px;}
.y30{bottom:582.473058px;}
.y12{bottom:582.489000px;}
.y69{bottom:582.764710px;}
.y140{bottom:588.472500px;}
.ydf{bottom:589.099591px;}
.ya5{bottom:589.102530px;}
.y119{bottom:595.776374px;}
.y68{bottom:599.815700px;}
.yde{bottom:606.150581px;}
.ya4{bottom:606.153520px;}
.y118{bottom:611.477437px;}
.y67{bottom:616.880139px;}
.ydd{bottom:623.201571px;}
.ya3{bottom:623.204510px;}
.y117{bottom:627.165050px;}
.y66{bottom:636.913931px;}
.ydc{bottom:640.252561px;}
.ya2{bottom:640.253690px;}
.y11{bottom:641.603925px;}
.y116{bottom:642.852664px;}
.y65{bottom:653.964921px;}
.y10{bottom:657.291538px;}
.ydb{bottom:657.303551px;}
.ya1{bottom:657.304680px;}
.y115{bottom:658.553727px;}
.y14c{bottom:670.818000px;}
.y64{bottom:671.015911px;}
.yf{bottom:672.992601px;}
.y114{bottom:674.241340px;}
.yda{bottom:674.354540px;}
.ya0{bottom:674.355670px;}
.y63{bottom:688.066901px;}
.y113{bottom:689.928954px;}
.yd9{bottom:691.405530px;}
.y9f{bottom:691.406660px;}
.ye{bottom:698.250950px;}
.y62{bottom:705.117891px;}
.y112{bottom:705.630017px;}
.yd8{bottom:708.456520px;}
.y9e{bottom:708.457010px;}
.y111{bottom:721.317630px;}
.y61{bottom:722.168881px;}
.y9d{bottom:725.485619px;}
.yd7{bottom:725.507510px;}
.yd{bottom:725.521359px;}
.y110{bottom:737.005244px;}
.y60{bottom:739.219871px;}
.y9c{bottom:742.536609px;}
.yd6{bottom:742.558010px;}
.y10f{bottom:752.706307px;}
.y5f{bottom:756.270861px;}
.yc{bottom:757.678500px;}
.y9b{bottom:759.587599px;}
.yd5{bottom:759.603271px;}
.y10e{bottom:768.393920px;}
.yb{bottom:773.244000px;}
.y5e{bottom:773.321850px;}
.y9a{bottom:776.638589px;}
.yd4{bottom:776.654261px;}
.y10d{bottom:784.081534px;}
.ya{bottom:788.796000px;}
.y5d{bottom:791.129002px;}
.y99{bottom:793.689579px;}
.yd3{bottom:793.705251px;}
.y10c{bottom:799.769147px;}
.y9{bottom:804.348150px;}
.y5c{bottom:808.922703px;}
.y98{bottom:810.740569px;}
.yd2{bottom:810.756241px;}
.y10b{bottom:815.470210px;}
.y5b{bottom:826.716405px;}
.y97{bottom:827.791559px;}
.yd1{bottom:827.807231px;}
.y8{bottom:829.917000px;}
.y10a{bottom:831.157824px;}
.y96{bottom:844.842549px;}
.yd0{bottom:844.858221px;}
.y5a{bottom:846.763647px;}
.y109{bottom:846.845437px;}
.y95{bottom:861.893539px;}
.ycf{bottom:861.909211px;}
.y108{bottom:862.540138px;}
.y59{bottom:864.557349px;}
.y147{bottom:869.424000px;}
.y107{bottom:878.227752px;}
.y94{bottom:878.944528px;}
.yce{bottom:878.960200px;}
.y58{bottom:882.364500px;}
.y106{bottom:893.915365px;}
.y93{bottom:895.995518px;}
.ycd{bottom:896.011190px;}
.y7{bottom:899.412975px;}
.y105{bottom:909.616428px;}
.y57{bottom:912.199650px;}
.y92{bottom:913.046508px;}
.ycc{bottom:913.062180px;}
.y104{bottom:925.304041px;}
.y6{bottom:929.303366px;}
.y91{bottom:930.097498px;}
.ycb{bottom:930.113170px;}
.y103{bottom:940.991655px;}
.y90{bottom:947.148488px;}
.yca{bottom:947.164160px;}
.y102{bottom:956.692718px;}
.y56{bottom:959.731993px;}
.y8f{bottom:964.199478px;}
.yc9{bottom:964.212174px;}
.y5{bottom:965.160000px;}
.y101{bottom:972.380331px;}
.y55{bottom:977.539144px;}
.y8e{bottom:981.263917px;}
.yc8{bottom:981.276614px;}
.yff{bottom:988.067945px;}
.y100{bottom:988.162092px;}
.y54{bottom:995.332846px;}
.y8d{bottom:998.314907px;}
.yc7{bottom:998.327603px;}
.y13f{bottom:1003.767597px;}
.yfe{bottom:1003.769008px;}
.y53{bottom:1013.138503px;}
.y8c{bottom:1015.365897px;}
.yc6{bottom:1015.378593px;}
.y13e{bottom:1019.455210px;}
.yfd{bottom:1019.456621px;}
.y52{bottom:1030.932204px;}
.y8b{bottom:1032.416887px;}
.yc5{bottom:1032.429583px;}
.y13d{bottom:1035.142824px;}
.yfc{bottom:1035.144235px;}
.y51{bottom:1048.725906px;}
.y8a{bottom:1049.467877px;}
.yc4{bottom:1049.480573px;}
.y13c{bottom:1050.830437px;}
.yfb{bottom:1050.831848px;}
.y89{bottom:1066.518867px;}
.y13b{bottom:1066.531500px;}
.y50{bottom:1066.531563px;}
.yfa{bottom:1066.532911px;}
.y4{bottom:1069.516083px;}
.y3{bottom:1083.717605px;}
.y2{bottom:1097.905977px;}
.y4f{bottom:1110.501000px;}
.y1{bottom:1112.107500px;}
.h1b{height:7.242426px;}
.h1e{height:7.344432px;}
.h29{height:8.160240px;}
.h21{height:8.171856px;}
.h1f{height:19.890585px;}
.h23{height:24.516096px;}
.h5{height:25.464576px;}
.ha{height:30.001288px;}
.h1d{height:30.086465px;}
.h2d{height:32.640960px;}
.h1{height:34.287370px;}
.h6{height:38.573453px;}
.h17{height:38.598900px;}
.h18{height:38.621318px;}
.h16{height:38.950042px;}
.h27{height:39.112231px;}
.h2e{height:41.285181px;}
.h26{height:41.452165px;}
.h2b{height:41.987291px;}
.h15{height:42.440676px;}
.h8{height:42.859105px;}
.h13{height:42.861065px;}
.hf{height:42.861665px;}
.h10{height:42.866344px;}
.h11{height:42.871009px;}
.h12{height:42.882020px;}
.he{height:42.948628px;}
.h9{height:43.289490px;}
.h30{height:44.460898px;}
.h2f{height:44.795297px;}
.hc{height:45.250891px;}
.h1c{height:45.664391px;}
.h2a{height:46.132464px;}
.h25{height:49.475164px;}
.hd{height:49.819288px;}
.hb{height:49.878566px;}
.h14{height:49.906399px;}
.h7{height:50.498342px;}
.h2c{height:53.041824px;}
.h24{height:53.486664px;}
.h31{height:54.991247px;}
.h19{height:55.650000px;}
.h4{height:57.533702px;}
.h22{height:59.655552px;}
.h28{height:62.834112px;}
.h3{height:75.748147px;}
.h2{height:76.393728px;}
.h20{height:94.954071px;}
.h1a{height:183.606000px;}
.h0{height:1188.000000px;}
.w2{width:138.000000px;}
.w1{width:900.000000px;}
.w0{width:900.075000px;}
.x0{left:0.000000px;}
.x20{left:8.575650px;}
.x1f{left:9.857100px;}
.x22{left:22.999950px;}
.x23{left:75.000000px;}
.x1{left:76.099500px;}
.x12{left:82.552500px;}
.x8{left:98.509372px;}
.x13{left:104.935324px;}
.x26{left:114.203550px;}
.x2{left:129.964500px;}
.xa{left:211.005000px;}
.x9{left:214.245000px;}
.x1e{left:228.000000px;}
.x10{left:303.196174px;}
.xd{left:315.940454px;}
.x11{left:324.404557px;}
.xe{left:330.464309px;}
.xc{left:332.977500px;}
.xb{left:336.244500px;}
.xf{left:339.887932px;}
.x1c{left:343.611150px;}
.x1d{left:355.774650px;}
.x21{left:381.000000px;}
.x5{left:462.994082px;}
.x14{left:469.450418px;}
.x4{left:485.403955px;}
.x15{left:491.833243px;}
.x24{left:534.000000px;}
.x19{left:536.640640px;}
.x6{left:582.766452px;}
.x16{left:591.814879px;}
.x17{left:599.158361px;}
.x3{left:626.387065px;}
.x1a{left:639.993731px;}
.x18{left:651.416782px;}
.x1b{left:656.153425px;}
.x25{left:687.000000px;}
.x7{left:788.616000px;}
@media print{
.v3{vertical-align:-17.663467pt;}
.v2{vertical-align:-15.840533pt;}
.v5{vertical-align:-7.152000pt;}
.v6{vertical-align:-1.641163pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.668692pt;}
.v1{vertical-align:21.216000pt;}
.ls71{letter-spacing:-3.165184pt;}
.ls7b{letter-spacing:-3.099243pt;}
.ls7e{letter-spacing:-2.847443pt;}
.ls6a{letter-spacing:-2.769536pt;}
.ls7f{letter-spacing:-2.637653pt;}
.ls75{letter-spacing:-2.388736pt;}
.ls77{letter-spacing:-2.225863pt;}
.ls6c{letter-spacing:-2.012859pt;}
.ls61{letter-spacing:-1.855447pt;}
.ls53{letter-spacing:-1.811865pt;}
.ls65{letter-spacing:-1.801523pt;}
.ls4e{letter-spacing:-1.801238pt;}
.ls7d{letter-spacing:-1.754044pt;}
.ls7c{letter-spacing:-1.712010pt;}
.ls78{letter-spacing:-1.604692pt;}
.ls76{letter-spacing:-1.552928pt;}
.ls6e{letter-spacing:-1.533136pt;}
.ls7a{letter-spacing:-1.526960pt;}
.ls79{letter-spacing:-1.446595pt;}
.ls67{letter-spacing:-1.446195pt;}
.ls6d{letter-spacing:-1.430927pt;}
.ls6b{letter-spacing:-1.409506pt;}
.ls6f{letter-spacing:-1.398372pt;}
.ls74{letter-spacing:-1.396314pt;}
.ls52{letter-spacing:-1.333660pt;}
.ls54{letter-spacing:-1.300715pt;}
.ls73{letter-spacing:-1.269376pt;}
.ls58{letter-spacing:-1.262469pt;}
.ls70{letter-spacing:-1.253713pt;}
.ls14{letter-spacing:-1.173194pt;}
.ls68{letter-spacing:-1.024388pt;}
.ls72{letter-spacing:-0.927307pt;}
.ls60{letter-spacing:-0.899031pt;}
.ls50{letter-spacing:-0.892649pt;}
.ls66{letter-spacing:-0.890214pt;}
.ls5f{letter-spacing:-0.860774pt;}
.ls3f{letter-spacing:-0.685427pt;}
.ls51{letter-spacing:-0.653547pt;}
.ls69{letter-spacing:-0.643857pt;}
.ls23{letter-spacing:-0.520712pt;}
.ls25{letter-spacing:-0.233789pt;}
.ls2f{letter-spacing:-0.159402pt;}
.ls4d{letter-spacing:-0.074387pt;}
.ls5b{letter-spacing:-0.071731pt;}
.ls4c{letter-spacing:-0.069074pt;}
.ls31{letter-spacing:-0.063761pt;}
.ls29{letter-spacing:-0.058447pt;}
.ls2b{letter-spacing:-0.053134pt;}
.ls63{letter-spacing:-0.052603pt;}
.ls27{letter-spacing:-0.047820pt;}
.ls26{letter-spacing:-0.042507pt;}
.ls3c{letter-spacing:-0.038256pt;}
.ls20{letter-spacing:-0.037194pt;}
.ls55{letter-spacing:-0.033475pt;}
.ls13{letter-spacing:-0.031880pt;}
.ls56{letter-spacing:-0.028692pt;}
.ls1f{letter-spacing:-0.026567pt;}
.ls1a{letter-spacing:-0.023910pt;}
.ls1e{letter-spacing:-0.021254pt;}
.ls12{letter-spacing:-0.019128pt;}
.ls11{letter-spacing:-0.017003pt;}
.ls1d{letter-spacing:-0.015940pt;}
.ls17{letter-spacing:-0.014346pt;}
.ls10{letter-spacing:-0.012752pt;}
.ls1c{letter-spacing:-0.010627pt;}
.ls19{letter-spacing:-0.009564pt;}
.lsf{letter-spacing:-0.008501pt;}
.ls21{letter-spacing:-0.005313pt;}
.ls1b{letter-spacing:-0.004782pt;}
.ls16{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004782pt;}
.ls8{letter-spacing:0.005313pt;}
.ls2{letter-spacing:0.009564pt;}
.ls3e{letter-spacing:0.010020pt;}
.ls9{letter-spacing:0.010627pt;}
.ls15{letter-spacing:0.012752pt;}
.ls18{letter-spacing:0.014346pt;}
.lsa{letter-spacing:0.015940pt;}
.ls1{letter-spacing:0.019128pt;}
.lsd{letter-spacing:0.021254pt;}
.ls49{letter-spacing:0.023910pt;}
.ls38{letter-spacing:0.026567pt;}
.ls4a{letter-spacing:0.028692pt;}
.ls28{letter-spacing:0.031880pt;}
.ls2d{letter-spacing:0.037194pt;}
.ls34{letter-spacing:0.042507pt;}
.ls5d{letter-spacing:0.047821pt;}
.lsb{letter-spacing:0.053134pt;}
.ls2a{letter-spacing:0.058447pt;}
.ls6{letter-spacing:0.095642pt;}
.ls5e{letter-spacing:0.325181pt;}
.ls22{letter-spacing:0.563219pt;}
.ls64{letter-spacing:0.746004pt;}
.ls4f{letter-spacing:1.174258pt;}
.lse{letter-spacing:2.642539pt;}
.ls36{letter-spacing:2.643072pt;}
.ls37{letter-spacing:2.649000pt;}
.ls48{letter-spacing:2.649344pt;}
.ls45{letter-spacing:2.691072pt;}
.ls47{letter-spacing:3.887831pt;}
.ls35{letter-spacing:4.144058pt;}
.ls5{letter-spacing:6.280149pt;}
.ls39{letter-spacing:7.953946pt;}
.ls3a{letter-spacing:8.001660pt;}
.ls59{letter-spacing:9.296364pt;}
.ls5a{letter-spacing:9.305928pt;}
.ls30{letter-spacing:9.665050pt;}
.ls0{letter-spacing:9.789408pt;}
.ls5c{letter-spacing:11.367004pt;}
.ls57{letter-spacing:12.887706pt;}
.ls46{letter-spacing:13.353000pt;}
.ls3b{letter-spacing:13.539072pt;}
.ls3{letter-spacing:15.370400pt;}
.ls4{letter-spacing:15.418400pt;}
.ls33{letter-spacing:16.189889pt;}
.ls24{letter-spacing:16.721228pt;}
.ls40{letter-spacing:17.571370pt;}
.ls41{letter-spacing:18.147072pt;}
.ls3d{letter-spacing:18.506526pt;}
.ls62{letter-spacing:18.525778pt;}
.ls42{letter-spacing:19.413500pt;}
.ls4b{letter-spacing:19.977344pt;}
.ls44{letter-spacing:21.333500pt;}
.ls2c{letter-spacing:21.763632pt;}
.ls43{letter-spacing:22.035072pt;}
.ls2e{letter-spacing:29.425535pt;}
.lsc{letter-spacing:32.066539pt;}
.ls32{letter-spacing:1955.926706pt;}
.wsca{word-spacing:-45.934396pt;}
.wsc8{word-spacing:-45.886682pt;}
.ws60{word-spacing:-29.478669pt;}
.ws61{word-spacing:-26.553000pt;}
.ws99{word-spacing:-23.925060pt;}
.ws54{word-spacing:-21.816766pt;}
.ws18e{word-spacing:-19.645333pt;}
.ws179{word-spacing:-18.573599pt;}
.ws98{word-spacing:-18.559660pt;}
.wsbf{word-spacing:-17.624504pt;}
.ws37{word-spacing:-16.774362pt;}
.ws119{word-spacing:-13.221060pt;}
.ws31{word-spacing:-12.220789pt;}
.ws199{word-spacing:-11.999939pt;}
.ws19a{word-spacing:-11.803499pt;}
.ws191{word-spacing:-11.671616pt;}
.ws190{word-spacing:-11.569562pt;}
.ws197{word-spacing:-11.341909pt;}
.ws194{word-spacing:-11.336374pt;}
.ws193{word-spacing:-11.275968pt;}
.ws15d{word-spacing:-10.998784pt;}
.ws196{word-spacing:-9.731682pt;}
.ws65{word-spacing:-9.718184pt;}
.ws198{word-spacing:-9.658757pt;}
.ws13a{word-spacing:-9.353748pt;}
.ws195{word-spacing:-9.110511pt;}
.ws1a9{word-spacing:-7.609347pt;}
.ws130{word-spacing:-4.586015pt;}
.ws192{word-spacing:-1.922246pt;}
.ws14f{word-spacing:-1.544612pt;}
.ws3{word-spacing:-0.114770pt;}
.ws88{word-spacing:-0.095641pt;}
.ws152{word-spacing:-0.062167pt;}
.wscb{word-spacing:-0.058447pt;}
.ws15f{word-spacing:-0.057385pt;}
.ws19{word-spacing:-0.053134pt;}
.ws159{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.043039pt;}
.ws42{word-spacing:-0.037194pt;}
.ws53{word-spacing:-0.031880pt;}
.ws11{word-spacing:-0.028692pt;}
.ws6f{word-spacing:0.000000pt;}
.ws19e{word-spacing:0.643857pt;}
.ws10e{word-spacing:0.839515pt;}
.ws172{word-spacing:0.851210pt;}
.ws19c{word-spacing:0.890214pt;}
.ws1a5{word-spacing:0.927307pt;}
.ws136{word-spacing:1.214648pt;}
.ws12a{word-spacing:1.236954pt;}
.ws1a4{word-spacing:1.253713pt;}
.ws1a6{word-spacing:1.269376pt;}
.ws1a7{word-spacing:1.396314pt;}
.ws1a3{word-spacing:1.398372pt;}
.ws19f{word-spacing:1.409506pt;}
.ws1a1{word-spacing:1.430927pt;}
.ws19d{word-spacing:1.446195pt;}
.ws1aa{word-spacing:1.446595pt;}
.ws1ab{word-spacing:1.526960pt;}
.ws1a2{word-spacing:1.533136pt;}
.ws1ac{word-spacing:1.712010pt;}
.ws1ad{word-spacing:1.754044pt;}
.ws128{word-spacing:1.758731pt;}
.ws19b{word-spacing:1.801523pt;}
.ws176{word-spacing:1.807626pt;}
.ws1a8{word-spacing:1.819989pt;}
.ws1a0{word-spacing:2.012859pt;}
.ws139{word-spacing:2.596669pt;}
.ws147{word-spacing:8.540795pt;}
.ws66{word-spacing:8.761775pt;}
.ws13b{word-spacing:9.296364pt;}
.wsb7{word-spacing:9.319680pt;}
.wsdb{word-spacing:9.340934pt;}
.wse3{word-spacing:9.473768pt;}
.ws64{word-spacing:9.569409pt;}
.ws3a{word-spacing:9.675677pt;}
.ws1{word-spacing:9.700143pt;}
.ws2{word-spacing:9.729898pt;}
.ws0{word-spacing:9.738400pt;}
.ws18a{word-spacing:9.865431pt;}
.ws46{word-spacing:10.005107pt;}
.ws149{word-spacing:10.075843pt;}
.ws14a{word-spacing:10.114099pt;}
.ws148{word-spacing:10.295818pt;}
.ws24{word-spacing:10.382358pt;}
.ws47{word-spacing:10.398298pt;}
.wsc6{word-spacing:10.403611pt;}
.ws25{word-spacing:10.408924pt;}
.wsd4{word-spacing:10.462058pt;}
.ws180{word-spacing:10.477537pt;}
.wsd7{word-spacing:10.541759pt;}
.ws11a{word-spacing:10.616147pt;}
.ws118{word-spacing:10.637400pt;}
.wse2{word-spacing:10.653340pt;}
.ws11b{word-spacing:10.669280pt;}
.ws11c{word-spacing:10.722414pt;}
.ws76{word-spacing:10.754295pt;}
.ws11d{word-spacing:10.764921pt;}
.wsd{word-spacing:10.812283pt;}
.ws17{word-spacing:10.812742pt;}
.ws23{word-spacing:10.833995pt;}
.wsec{word-spacing:10.839309pt;}
.ws22{word-spacing:10.855249pt;}
.wse{word-spacing:10.884014pt;}
.wscc{word-spacing:10.892443pt;}
.ws15e{word-spacing:10.903142pt;}
.ws10{word-spacing:10.931835pt;}
.ws14e{word-spacing:10.941399pt;}
.ws12{word-spacing:10.950963pt;}
.ws16c{word-spacing:10.955745pt;}
.ws15c{word-spacing:10.960527pt;}
.ws135{word-spacing:10.970092pt;}
.ws134{word-spacing:10.974874pt;}
.wsc{word-spacing:10.979656pt;}
.ws140{word-spacing:10.984438pt;}
.ws11f{word-spacing:10.993397pt;}
.wsf{word-spacing:10.994002pt;}
.ws12f{word-spacing:10.998784pt;}
.ws138{word-spacing:11.008348pt;}
.wsb{word-spacing:11.017912pt;}
.ws17a{word-spacing:11.027476pt;}
.ws137{word-spacing:11.037041pt;}
.ws14b{word-spacing:11.056169pt;}
.ws183{word-spacing:11.142246pt;}
.ws182{word-spacing:11.151811pt;}
.wsb4{word-spacing:11.179366pt;}
.wsb5{word-spacing:11.205932pt;}
.wsf3{word-spacing:11.211246pt;}
.ws18b{word-spacing:11.309619pt;}
.ws55{word-spacing:11.322827pt;}
.ws155{word-spacing:11.347876pt;}
.ws9d{word-spacing:11.365334pt;}
.ws18c{word-spacing:11.429171pt;}
.ws10b{word-spacing:11.561929pt;}
.ws124{word-spacing:11.705391pt;}
.ws169{word-spacing:11.749571pt;}
.ws16b{word-spacing:11.821302pt;}
.ws3b{word-spacing:11.843539pt;}
.ws26{word-spacing:11.859479pt;}
.ws48{word-spacing:11.933866pt;}
.ws49{word-spacing:11.944493pt;}
.ws132{word-spacing:11.998239pt;}
.ws133{word-spacing:12.003021pt;}
.wsc5{word-spacing:12.029507pt;}
.ws131{word-spacing:12.041277pt;}
.ws127{word-spacing:12.072015pt;}
.ws3d{word-spacing:12.109208pt;}
.ws18{word-spacing:12.114522pt;}
.ws77{word-spacing:12.119835pt;}
.ws1a{word-spacing:12.125148pt;}
.wsc1{word-spacing:12.130462pt;}
.ws129{word-spacing:12.146402pt;}
.ws10c{word-spacing:12.151715pt;}
.wsd3{word-spacing:12.157029pt;}
.ws125{word-spacing:12.167655pt;}
.ws93{word-spacing:12.172969pt;}
.wsa0{word-spacing:12.178282pt;}
.ws7b{word-spacing:12.188909pt;}
.wsf9{word-spacing:12.199536pt;}
.ws123{word-spacing:12.210163pt;}
.ws11e{word-spacing:12.226103pt;}
.wse7{word-spacing:12.247356pt;}
.ws9f{word-spacing:12.252670pt;}
.ws184{word-spacing:12.285164pt;}
.ws122{word-spacing:12.289863pt;}
.ws185{word-spacing:12.352113pt;}
.ws16d{word-spacing:12.447754pt;}
.ws20{word-spacing:12.491772pt;}
.ws158{word-spacing:12.505139pt;}
.ws28{word-spacing:12.507712pt;}
.wsa{word-spacing:12.611833pt;}
.ws9{word-spacing:12.618210pt;}
.ws8{word-spacing:12.643714pt;}
.ws6{word-spacing:12.669218pt;}
.ws16{word-spacing:12.681970pt;}
.ws78{word-spacing:12.732979pt;}
.wsc7{word-spacing:12.757441pt;}
.wsc9{word-spacing:12.805262pt;}
.ws1c{word-spacing:12.985917pt;}
.ws4a{word-spacing:12.996544pt;}
.ws153{word-spacing:13.040732pt;}
.ws151{word-spacing:13.064643pt;}
.ws165{word-spacing:13.102899pt;}
.wsea{word-spacing:13.124065pt;}
.ws7a{word-spacing:13.272840pt;}
.ws16a{word-spacing:13.442427pt;}
.wsdc{word-spacing:13.549136pt;}
.ws166{word-spacing:13.724570pt;}
.wsd2{word-spacing:13.756358pt;}
.ws167{word-spacing:13.772390pt;}
.ws2b{word-spacing:13.798865pt;}
.ws2c{word-spacing:13.814805pt;}
.wsf5{word-spacing:13.830745pt;}
.ws14c{word-spacing:13.887160pt;}
.ws21{word-spacing:13.894506pt;}
.ws14d{word-spacing:13.954109pt;}
.wsf6{word-spacing:13.963580pt;}
.ws160{word-spacing:13.982802pt;}
.wsac{word-spacing:13.995460pt;}
.ws14{word-spacing:14.145393pt;}
.wsb9{word-spacing:14.553366pt;}
.ws100{word-spacing:14.601187pt;}
.ws154{word-spacing:14.671421pt;}
.ws69{word-spacing:14.675574pt;}
.ws6a{word-spacing:14.707454pt;}
.wsd1{word-spacing:14.718081pt;}
.ws126{word-spacing:14.824349pt;}
.ws111{word-spacing:14.829662pt;}
.ws10a{word-spacing:14.840289pt;}
.wsad{word-spacing:14.925303pt;}
.wsbe{word-spacing:15.005004pt;}
.ws7{word-spacing:15.041110pt;}
.wsa7{word-spacing:15.185659pt;}
.ws187{word-spacing:15.245271pt;}
.ws173{word-spacing:15.259617pt;}
.ws174{word-spacing:15.269181pt;}
.wsd6{word-spacing:15.323807pt;}
.wse6{word-spacing:15.382254pt;}
.ws34{word-spacing:15.398195pt;}
.wsa8{word-spacing:15.403508pt;}
.wsf7{word-spacing:15.414135pt;}
.ws83{word-spacing:15.461955pt;}
.wsf8{word-spacing:15.493836pt;}
.wsa9{word-spacing:15.515089pt;}
.ws1d{word-spacing:15.631984pt;}
.ws9e{word-spacing:15.690431pt;}
.ws164{word-spacing:15.737825pt;}
.wsdd{word-spacing:15.748878pt;}
.ws84{word-spacing:16.019861pt;}
.ws58{word-spacing:16.041114pt;}
.ws36{word-spacing:16.072995pt;}
.ws59{word-spacing:16.142069pt;}
.ws74{word-spacing:16.179262pt;}
.ws121{word-spacing:16.184576pt;}
.ws73{word-spacing:16.189889pt;}
.wsb6{word-spacing:16.200516pt;}
.ws33{word-spacing:16.221769pt;}
.wse9{word-spacing:16.290844pt;}
.ws7e{word-spacing:16.381171pt;}
.wsa1{word-spacing:16.487439pt;}
.wsed{word-spacing:16.556513pt;}
.ws8a{word-spacing:16.588393pt;}
.ws170{word-spacing:16.593818pt;}
.ws38{word-spacing:16.609647pt;}
.ws70{word-spacing:16.678721pt;}
.ws13f{word-spacing:16.699023pt;}
.ws102{word-spacing:16.710601pt;}
.wsa2{word-spacing:16.737168pt;}
.ws145{word-spacing:16.737280pt;}
.ws13e{word-spacing:16.756408pt;}
.ws146{word-spacing:16.794665pt;}
.ws15a{word-spacing:16.842486pt;}
.ws4e{word-spacing:16.870003pt;}
.ws15b{word-spacing:16.890307pt;}
.ws4f{word-spacing:16.907196pt;}
.ws12b{word-spacing:17.005076pt;}
.wsde{word-spacing:17.034718pt;}
.ws35{word-spacing:17.050658pt;}
.ws7d{word-spacing:17.071911pt;}
.wsef{word-spacing:17.140985pt;}
.ws150{word-spacing:17.158103pt;}
.ws163{word-spacing:17.234616pt;}
.ws162{word-spacing:17.253745pt;}
.ws161{word-spacing:17.263309pt;}
.ws12d{word-spacing:17.401989pt;}
.ws12c{word-spacing:17.411553pt;}
.ws12e{word-spacing:17.430682pt;}
.wsc0{word-spacing:17.544803pt;}
.ws16e{word-spacing:17.593272pt;}
.ws13{word-spacing:17.631529pt;}
.ws4d{word-spacing:17.688264pt;}
.ws68{word-spacing:17.704204pt;}
.ws80{word-spacing:17.730771pt;}
.ws7f{word-spacing:17.778592pt;}
.wsbc{word-spacing:17.969874pt;}
.wsc2{word-spacing:18.076141pt;}
.wsd5{word-spacing:18.161156pt;}
.ws6b{word-spacing:18.193036pt;}
.ws3c{word-spacing:18.208976pt;}
.ws89{word-spacing:18.235543pt;}
.wsf0{word-spacing:18.256797pt;}
.wsf1{word-spacing:18.320557pt;}
.ws109{word-spacing:18.357751pt;}
.ws9a{word-spacing:18.437452pt;}
.wsf4{word-spacing:18.469332pt;}
.ws6e{word-spacing:18.474645pt;}
.ws97{word-spacing:18.479959pt;}
.ws5d{word-spacing:18.517153pt;}
.wsb8{word-spacing:18.559660pt;}
.ws178{word-spacing:18.564035pt;}
.wsce{word-spacing:18.564973pt;}
.ws94{word-spacing:18.586227pt;}
.wse5{word-spacing:18.591540pt;}
.wsd8{word-spacing:18.618107pt;}
.ws95{word-spacing:18.644674pt;}
.wsdf{word-spacing:18.681868pt;}
.ws96{word-spacing:18.692494pt;}
.ws79{word-spacing:18.750942pt;}
.ws143{word-spacing:18.755318pt;}
.ws144{word-spacing:18.784010pt;}
.ws142{word-spacing:18.850959pt;}
.ws106{word-spacing:18.872322pt;}
.wscd{word-spacing:18.894403pt;}
.ws4{word-spacing:18.937037pt;}
.ws90{word-spacing:19.000671pt;}
.wsc3{word-spacing:19.027238pt;}
.ws5{word-spacing:19.090063pt;}
.ws8f{word-spacing:19.122879pt;}
.ws9c{word-spacing:19.218520pt;}
.ws104{word-spacing:19.237341pt;}
.ws112{word-spacing:19.250400pt;}
.ws105{word-spacing:19.367294pt;}
.ws115{word-spacing:19.500129pt;}
.wsd0{word-spacing:19.526696pt;}
.wsfc{word-spacing:19.547950pt;}
.ws2f{word-spacing:19.579830pt;}
.ws177{word-spacing:19.687823pt;}
.ws141{word-spacing:19.749990pt;}
.ws188{word-spacing:19.807375pt;}
.ws189{word-spacing:19.816940pt;}
.ws120{word-spacing:19.850813pt;}
.ws3f{word-spacing:19.861439pt;}
.ws3e{word-spacing:19.872066pt;}
.ws40{word-spacing:19.930513pt;}
.ws81{word-spacing:19.988961pt;}
.ws29{word-spacing:20.228063pt;}
.wsbb{word-spacing:20.254630pt;}
.ws2a{word-spacing:20.281197pt;}
.ws62{word-spacing:20.334331pt;}
.ws63{word-spacing:20.366211pt;}
.ws156{word-spacing:20.443392pt;}
.ws157{word-spacing:20.481649pt;}
.ws6c{word-spacing:20.589373pt;}
.ws6d{word-spacing:20.711581pt;}
.ws30{word-spacing:20.727521pt;}
.wsb1{word-spacing:20.764715pt;}
.wseb{word-spacing:20.828476pt;}
.wsb0{word-spacing:20.934743pt;}
.ws17e{word-spacing:21.069844pt;}
.ws17f{word-spacing:21.098537pt;}
.ws17d{word-spacing:21.103319pt;}
.ws2e{word-spacing:21.232293pt;}
.ws2d{word-spacing:21.237607pt;}
.ws107{word-spacing:21.242920pt;}
.ws186{word-spacing:21.538488pt;}
.ws39{word-spacing:21.625484pt;}
.ws7c{word-spacing:21.630797pt;}
.ws50{word-spacing:21.652051pt;}
.ws5e{word-spacing:21.683931pt;}
.ws51{word-spacing:21.694558pt;}
.ws52{word-spacing:21.731751pt;}
.ws5a{word-spacing:21.747692pt;}
.ws4c{word-spacing:21.763632pt;}
.ws181{word-spacing:21.772810pt;}
.ws17c{word-spacing:21.863670pt;}
.ws17b{word-spacing:21.901926pt;}
.ws108{word-spacing:21.981481pt;}
.ws1e{word-spacing:22.013361pt;}
.ws4b{word-spacing:22.098375pt;}
.ws103{word-spacing:22.199329pt;}
.wsbd{word-spacing:22.209956pt;}
.ws5b{word-spacing:22.279030pt;}
.ws82{word-spacing:22.332164pt;}
.wscf{word-spacing:22.443745pt;}
.ws171{word-spacing:22.906163pt;}
.wsa3{word-spacing:23.076038pt;}
.wsaf{word-spacing:23.161052pt;}
.ws113{word-spacing:23.214186pt;}
.wsfd{word-spacing:23.219500pt;}
.ws85{word-spacing:23.224813pt;}
.wsf2{word-spacing:23.267320pt;}
.ws8b{word-spacing:23.389528pt;}
.ws67{word-spacing:23.394841pt;}
.ws18d{word-spacing:23.417846pt;}
.wse0{word-spacing:23.580810pt;}
.ws91{word-spacing:23.697705pt;}
.ws10d{word-spacing:23.745525pt;}
.wsa4{word-spacing:23.788032pt;}
.ws8c{word-spacing:23.963374pt;}
.ws9b{word-spacing:24.090895pt;}
.ws175{word-spacing:24.101683pt;}
.wsba{word-spacing:24.271550pt;}
.ws56{word-spacing:24.282177pt;}
.ws1b{word-spacing:24.404385pt;}
.wsb3{word-spacing:24.420325pt;}
.wsae{word-spacing:24.452205pt;}
.ws5c{word-spacing:24.505339pt;}
.ws13c{word-spacing:24.541635pt;}
.wsa6{word-spacing:24.563787pt;}
.wsa5{word-spacing:24.579727pt;}
.ws168{word-spacing:24.866816pt;}
.ws72{word-spacing:25.089812pt;}
.wsfb{word-spacing:25.111065pt;}
.wsd9{word-spacing:25.137632pt;}
.ws1f{word-spacing:25.142946pt;}
.ws71{word-spacing:25.212020pt;}
.ws75{word-spacing:25.270467pt;}
.ws13d{word-spacing:25.392845pt;}
.ws32{word-spacing:25.700851pt;}
.ws87{word-spacing:25.716791pt;}
.wsda{word-spacing:25.844313pt;}
.ws110{word-spacing:25.876193pt;}
.ws8e{word-spacing:26.120609pt;}
.wsfe{word-spacing:26.391592pt;}
.ws45{word-spacing:26.620067pt;}
.ws44{word-spacing:26.678514pt;}
.ws57{word-spacing:26.821976pt;}
.wsab{word-spacing:27.087645pt;}
.ws16f{word-spacing:27.195689pt;}
.ws10f{word-spacing:27.438329pt;}
.wsb2{word-spacing:27.762445pt;}
.ws114{word-spacing:27.959041pt;}
.ws27{word-spacing:28.086562pt;}
.wsfa{word-spacing:28.230023pt;}
.ws116{word-spacing:28.548827pt;}
.wsee{word-spacing:28.596647pt;}
.ws117{word-spacing:28.607274pt;}
.ws92{word-spacing:28.702915pt;}
.wse4{word-spacing:28.841063pt;}
.wse1{word-spacing:29.027031pt;}
.wse8{word-spacing:29.069538pt;}
.wsff{word-spacing:29.080165pt;}
.ws5f{word-spacing:29.207687pt;}
.ws43{word-spacing:29.430849pt;}
.ws41{word-spacing:29.882487pt;}
.ws101{word-spacing:30.546660pt;}
.wsaa{word-spacing:32.209750pt;}
.wsc4{word-spacing:32.390405pt;}
.ws86{word-spacing:35.275574pt;}
.ws8d{word-spacing:37.491256pt;}
.ws18f{word-spacing:276.440794pt;}
._d{margin-left:-29.464844pt;}
._c{margin-left:-21.758318pt;}
._e{margin-left:-20.334385pt;}
._1f{margin-left:-19.408393pt;}
._13{margin-left:-18.491473pt;}
._9{margin-left:-16.742481pt;}
._1d{margin-left:-14.441882pt;}
._1c{margin-left:-12.868577pt;}
._1e{margin-left:-11.862537pt;}
._10{margin-left:-10.945577pt;}
._f{margin-left:-9.452515pt;}
._11{margin-left:-7.672530pt;}
._5{margin-left:-6.060467pt;}
._2{margin-left:-4.527017pt;}
._b{margin-left:-3.558900pt;}
._3{margin-left:-2.611016pt;}
._0{margin-left:-1.440994pt;}
._1{width:1.755547pt;}
._4{width:2.930873pt;}
._a{width:4.250712pt;}
._6{width:7.304191pt;}
._8{width:10.481795pt;}
._7{width:11.845212pt;}
._14{width:13.103878pt;}
._17{width:14.119811pt;}
._16{width:18.034701pt;}
._12{width:19.495882pt;}
._1b{width:21.270692pt;}
._15{width:25.252397pt;}
._1a{width:26.556307pt;}
._19{width:31.493509pt;}
._20{width:276.123442pt;}
._21{width:280.104810pt;}
._18{width:1956.485691pt;}
.fs18{font-size:8.242667pt;}
.fs10{font-size:8.254400pt;}
.fsb{font-size:9.067200pt;}
.fse{font-size:24.728000pt;}
.fs12{font-size:24.763733pt;}
.fs3{font-size:31.880533pt;}
.fs1c{font-size:32.970667pt;}
.fs6{font-size:33.400000pt;}
.fsd{font-size:37.092267pt;}
.fs7{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs8{font-size:47.714133pt;}
.fs4{font-size:47.820800pt;}
.fs16{font-size:48.219733pt;}
.fs9{font-size:49.945600pt;}
.fs1d{font-size:50.898667pt;}
.fs15{font-size:51.104533pt;}
.fs1a{font-size:51.764267pt;}
.fs5{font-size:53.133867pt;}
.fs1b{font-size:53.577600pt;}
.fs1f{font-size:54.813867pt;}
.fs1e{font-size:55.226133pt;}
.fsc{font-size:56.297600pt;}
.fs19{font-size:56.874667pt;}
.fs11{font-size:60.258133pt;}
.fs14{font-size:60.995733pt;}
.fs17{font-size:63.468800pt;}
.fs2{font-size:63.760533pt;}
.fs13{font-size:65.941333pt;}
.fs20{font-size:67.796267pt;}
.fsa{font-size:70.666667pt;}
.fs1{font-size:95.641600pt;}
.fsf{font-size:112.100267pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:8.540480pt;}
.y154{bottom:8.761588pt;}
.y144{bottom:8.761988pt;}
.y149{bottom:8.762240pt;}
.y15c{bottom:8.762267pt;}
.y14d{bottom:11.016800pt;}
.y153{bottom:11.234667pt;}
.y143{bottom:11.235067pt;}
.y148{bottom:11.482400pt;}
.y150{bottom:18.429717pt;}
.y158{bottom:18.604267pt;}
.y15f{bottom:18.720400pt;}
.y156{bottom:18.776133pt;}
.y169{bottom:18.776267pt;}
.y145{bottom:18.776533pt;}
.y162{bottom:18.778510pt;}
.y14b{bottom:23.231200pt;}
.y164{bottom:30.272933pt;}
.y15d{bottom:30.831467pt;}
.y167{bottom:30.932933pt;}
.y166{bottom:31.002933pt;}
.y146{bottom:31.183333pt;}
.y160{bottom:31.280267pt;}
.y15a{bottom:31.552667pt;}
.y161{bottom:31.758400pt;}
.y157{bottom:31.802533pt;}
.y163{bottom:31.847600pt;}
.y155{bottom:32.808000pt;}
.y165{bottom:32.808400pt;}
.y168{bottom:33.120933pt;}
.y14f{bottom:34.322800pt;}
.y15e{bottom:34.587600pt;}
.y14a{bottom:40.522000pt;}
.y15b{bottom:43.084267pt;}
.y151{bottom:48.892533pt;}
.y152{bottom:66.666667pt;}
.y2f{bottom:66.855852pt;}
.y4e{bottom:66.940001pt;}
.y88{bottom:68.648621pt;}
.yf9{bottom:68.654954pt;}
.yc3{bottom:68.929719pt;}
.y13a{bottom:69.300090pt;}
.y2e{bottom:82.012287pt;}
.yf8{bottom:82.599500pt;}
.y4d{bottom:82.768579pt;}
.y139{bottom:83.256590pt;}
.y87{bottom:83.805056pt;}
.yc2{bottom:84.086155pt;}
.yf7{bottom:96.556000pt;}
.y2d{bottom:97.168723pt;}
.y138{bottom:97.201135pt;}
.y4c{bottom:98.583875pt;}
.y86{bottom:98.961491pt;}
.yc1{bottom:99.242590pt;}
.y137{bottom:111.145681pt;}
.y2c{bottom:112.325158pt;}
.y85{bottom:114.117927pt;}
.yc0{bottom:114.399026pt;}
.y4b{bottom:114.399170pt;}
.yf6{bottom:121.864000pt;}
.y136{bottom:125.102181pt;}
.y2b{bottom:127.481594pt;}
.ybf{bottom:129.555461pt;}
.y4a{bottom:130.227749pt;}
.y84{bottom:131.937697pt;}
.y135{bottom:139.046726pt;}
.y2a{bottom:142.638029pt;}
.ybe{bottom:144.723852pt;}
.y83{bottom:147.094133pt;}
.y49{bottom:148.035565pt;}
.y134{bottom:152.991272pt;}
.y29{bottom:157.794465pt;}
.ybd{bottom:159.880287pt;}
.y82{bottom:162.250568pt;}
.y48{bottom:163.190827pt;}
.yf5{bottom:165.681937pt;}
.y133{bottom:166.935817pt;}
.y28{bottom:172.950900pt;}
.ybc{bottom:175.036723pt;}
.y81{bottom:177.407004pt;}
.y47{bottom:178.347262pt;}
.yf4{bottom:180.838373pt;}
.y132{bottom:180.892317pt;}
.y27{bottom:188.107336pt;}
.ybb{bottom:190.193158pt;}
.y80{bottom:192.563439pt;}
.y46{bottom:193.503698pt;}
.y131{bottom:194.836863pt;}
.yf3{bottom:195.994808pt;}
.y26{bottom:203.263771pt;}
.yba{bottom:205.349594pt;}
.y7f{bottom:207.719875pt;}
.y44{bottom:208.642247pt;}
.y130{bottom:208.781408pt;}
.yf2{bottom:211.151244pt;}
.y45{bottom:213.076000pt;}
.y25{bottom:218.420206pt;}
.yb9{bottom:220.506029pt;}
.y12f{bottom:222.737908pt;}
.y7e{bottom:222.876310pt;}
.y43{bottom:223.798682pt;}
.y24{bottom:233.576642pt;}
.yb8{bottom:235.662465pt;}
.y12e{bottom:236.682454pt;}
.y7d{bottom:238.032746pt;}
.y42{bottom:238.967073pt;}
.y142{bottom:243.205333pt;}
.y23{bottom:248.733077pt;}
.y12d{bottom:250.626999pt;}
.yb7{bottom:250.818900pt;}
.yf1{bottom:250.823645pt;}
.y7c{bottom:253.189181pt;}
.y41{bottom:254.123508pt;}
.y22{bottom:263.889513pt;}
.y12c{bottom:264.583500pt;}
.yb6{bottom:265.975336pt;}
.yf0{bottom:265.980081pt;}
.y7b{bottom:268.345617pt;}
.y40{bottom:269.279944pt;}
.y12b{bottom:278.528045pt;}
.y21{bottom:279.057903pt;}
.yb5{bottom:281.131771pt;}
.yef{bottom:281.136516pt;}
.y3f{bottom:284.436379pt;}
.y7a{bottom:286.153432pt;}
.y12a{bottom:292.472590pt;}
.y20{bottom:294.214339pt;}
.yb4{bottom:296.288206pt;}
.yee{bottom:296.292952pt;}
.y3e{bottom:299.592815pt;}
.y79{bottom:301.309868pt;}
.y129{bottom:306.429091pt;}
.y1f{bottom:309.370774pt;}
.yb3{bottom:311.444642pt;}
.yed{bottom:311.449387pt;}
.y3d{bottom:315.408110pt;}
.y78{bottom:316.466303pt;}
.y128{bottom:320.373636pt;}
.y1e{bottom:324.527210pt;}
.yb2{bottom:326.601077pt;}
.yec{bottom:326.605823pt;}
.y3c{bottom:330.564545pt;}
.y77{bottom:331.622738pt;}
.y127{bottom:334.318181pt;}
.y1d{bottom:339.683645pt;}
.yb1{bottom:341.757513pt;}
.yeb{bottom:341.762258pt;}
.y3b{bottom:346.393124pt;}
.y76{bottom:346.791129pt;}
.y126{bottom:348.262726pt;}
.y1c{bottom:354.840081pt;}
.yb0{bottom:356.913948pt;}
.yea{bottom:356.918694pt;}
.y75{bottom:361.947565pt;}
.y125{bottom:362.219227pt;}
.y3a{bottom:362.868608pt;}
.y1b{bottom:369.996516pt;}
.yaf{bottom:372.070384pt;}
.ye9{bottom:372.075129pt;}
.y124{bottom:376.163772pt;}
.y72{bottom:377.094091pt;}
.y74{bottom:377.104000pt;}
.y39{bottom:378.025044pt;}
.y73{bottom:379.504000pt;}
.y1a{bottom:385.152952pt;}
.yae{bottom:387.226819pt;}
.ye8{bottom:387.231565pt;}
.y123{bottom:390.108317pt;}
.y38{bottom:393.853622pt;}
.y71{bottom:394.110212pt;}
.y19{bottom:400.309387pt;}
.ye7{bottom:402.380642pt;}
.yad{bottom:402.383255pt;}
.y122{bottom:404.064818pt;}
.y37{bottom:409.010058pt;}
.y70{bottom:411.918027pt;}
.y18{bottom:415.465823pt;}
.ye6{bottom:417.537077pt;}
.yac{bottom:417.539690pt;}
.y121{bottom:418.009363pt;}
.y159{bottom:419.744000pt;}
.y36{bottom:424.166493pt;}
.y6f{bottom:427.074462pt;}
.y17{bottom:430.622258pt;}
.y120{bottom:431.953908pt;}
.ye5{bottom:432.693513pt;}
.yab{bottom:432.696126pt;}
.y35{bottom:439.981789pt;}
.y6e{bottom:442.230898pt;}
.y16{bottom:445.778694pt;}
.y11f{bottom:445.910409pt;}
.ye4{bottom:447.849948pt;}
.yaa{bottom:447.852561pt;}
.y34{bottom:455.810368pt;}
.y6d{bottom:457.387333pt;}
.y11e{bottom:459.854954pt;}
.y15{bottom:460.935129pt;}
.ye3{bottom:463.006384pt;}
.ya9{bottom:463.008997pt;}
.y33{bottom:471.625663pt;}
.y6c{bottom:472.543769pt;}
.y11d{bottom:473.799500pt;}
.y14{bottom:476.091565pt;}
.ye2{bottom:478.162819pt;}
.ya8{bottom:478.165432pt;}
.y32{bottom:487.440958pt;}
.y6b{bottom:487.700204pt;}
.y11c{bottom:487.745363pt;}
.y13{bottom:491.248000pt;}
.ye1{bottom:493.319255pt;}
.ya7{bottom:493.321868pt;}
.y11b{bottom:501.689908pt;}
.y141{bottom:501.886667pt;}
.y31{bottom:502.597394pt;}
.y6a{bottom:502.856640pt;}
.ye0{bottom:508.487645pt;}
.ya6{bottom:508.490258pt;}
.y11a{bottom:515.634454pt;}
.y30{bottom:517.753829pt;}
.y12{bottom:517.768000pt;}
.y69{bottom:518.013075pt;}
.y140{bottom:523.086667pt;}
.ydf{bottom:523.644081pt;}
.ya5{bottom:523.646694pt;}
.y119{bottom:529.578999pt;}
.y68{bottom:533.169511pt;}
.yde{bottom:538.800516pt;}
.ya4{bottom:538.803129pt;}
.y118{bottom:543.535500pt;}
.y67{bottom:548.337901pt;}
.ydd{bottom:553.956952pt;}
.ya3{bottom:553.959565pt;}
.y117{bottom:557.480045pt;}
.y66{bottom:566.145717pt;}
.ydc{bottom:569.113387pt;}
.ya2{bottom:569.114391pt;}
.y11{bottom:570.314600pt;}
.y116{bottom:571.424590pt;}
.y65{bottom:581.302152pt;}
.y10{bottom:584.259145pt;}
.ydb{bottom:584.269823pt;}
.ya1{bottom:584.270827pt;}
.y115{bottom:585.381091pt;}
.y14c{bottom:596.282667pt;}
.y64{bottom:596.458588pt;}
.yf{bottom:598.215645pt;}
.y114{bottom:599.325636pt;}
.yda{bottom:599.426258pt;}
.ya0{bottom:599.427262pt;}
.y63{bottom:611.615023pt;}
.y113{bottom:613.270181pt;}
.yd9{bottom:614.582694pt;}
.y9f{bottom:614.583698pt;}
.ye{bottom:620.667511pt;}
.y62{bottom:626.771459pt;}
.y112{bottom:627.226682pt;}
.yd8{bottom:629.739129pt;}
.y9e{bottom:629.739565pt;}
.y111{bottom:641.171227pt;}
.y61{bottom:641.927894pt;}
.y9d{bottom:644.876106pt;}
.yd7{bottom:644.895565pt;}
.yd{bottom:644.907875pt;}
.y110{bottom:655.115772pt;}
.y60{bottom:657.084329pt;}
.y9c{bottom:660.032542pt;}
.yd6{bottom:660.051565pt;}
.y10f{bottom:669.072273pt;}
.y5f{bottom:672.240765pt;}
.yc{bottom:673.492000pt;}
.y9b{bottom:675.188977pt;}
.yd5{bottom:675.202908pt;}
.y10e{bottom:683.016818pt;}
.yb{bottom:687.328000pt;}
.y5e{bottom:687.397200pt;}
.y9a{bottom:690.345413pt;}
.yd4{bottom:690.359343pt;}
.y10d{bottom:696.961363pt;}
.ya{bottom:701.152000pt;}
.y5d{bottom:703.225779pt;}
.y99{bottom:705.501848pt;}
.yd3{bottom:705.515779pt;}
.y10c{bottom:710.905908pt;}
.y9{bottom:714.976133pt;}
.y5c{bottom:719.042403pt;}
.y98{bottom:720.658283pt;}
.yd2{bottom:720.672214pt;}
.y10b{bottom:724.862409pt;}
.y5b{bottom:734.859027pt;}
.y97{bottom:735.814719pt;}
.yd1{bottom:735.828650pt;}
.y8{bottom:737.704000pt;}
.y10a{bottom:738.806954pt;}
.y96{bottom:750.971154pt;}
.yd0{bottom:750.985085pt;}
.y5a{bottom:752.678797pt;}
.y109{bottom:752.751500pt;}
.y95{bottom:766.127590pt;}
.ycf{bottom:766.141521pt;}
.y108{bottom:766.702345pt;}
.y59{bottom:768.495421pt;}
.y147{bottom:772.821333pt;}
.y107{bottom:780.646890pt;}
.y94{bottom:781.284025pt;}
.yce{bottom:781.297956pt;}
.y58{bottom:784.324000pt;}
.y106{bottom:794.591436pt;}
.y93{bottom:796.440461pt;}
.ycd{bottom:796.454391pt;}
.y7{bottom:799.478200pt;}
.y105{bottom:808.547936pt;}
.y57{bottom:810.844133pt;}
.y92{bottom:811.596896pt;}
.ycc{bottom:811.610827pt;}
.y104{bottom:822.492481pt;}
.y6{bottom:826.047437pt;}
.y91{bottom:826.753332pt;}
.ycb{bottom:826.767262pt;}
.y103{bottom:836.437027pt;}
.y90{bottom:841.909767pt;}
.yca{bottom:841.923698pt;}
.y102{bottom:850.393527pt;}
.y56{bottom:853.095105pt;}
.y8f{bottom:857.066203pt;}
.yc9{bottom:857.077488pt;}
.y5{bottom:857.920000pt;}
.y101{bottom:864.338072pt;}
.y55{bottom:868.923684pt;}
.y8e{bottom:872.234593pt;}
.yc8{bottom:872.245879pt;}
.yff{bottom:878.282618pt;}
.y100{bottom:878.366304pt;}
.y54{bottom:884.740307pt;}
.y8d{bottom:887.391029pt;}
.yc7{bottom:887.402314pt;}
.y13f{bottom:892.237864pt;}
.yfe{bottom:892.239118pt;}
.y53{bottom:900.567558pt;}
.y8c{bottom:902.547464pt;}
.yc6{bottom:902.558750pt;}
.y13e{bottom:906.182409pt;}
.yfd{bottom:906.183663pt;}
.y52{bottom:916.384182pt;}
.y8b{bottom:917.703900pt;}
.yc5{bottom:917.715185pt;}
.y13d{bottom:920.126954pt;}
.yfc{bottom:920.128209pt;}
.y51{bottom:932.200805pt;}
.y8a{bottom:932.860335pt;}
.yc4{bottom:932.871621pt;}
.y13c{bottom:934.071500pt;}
.yfb{bottom:934.072754pt;}
.y89{bottom:948.016771pt;}
.y13b{bottom:948.028000pt;}
.y50{bottom:948.028056pt;}
.yfa{bottom:948.029254pt;}
.y4{bottom:950.680962pt;}
.y3{bottom:963.304538pt;}
.y2{bottom:975.916424pt;}
.y4f{bottom:987.112000pt;}
.y1{bottom:988.540000pt;}
.h1b{height:6.437712pt;}
.h1e{height:6.528384pt;}
.h29{height:7.253547pt;}
.h21{height:7.263872pt;}
.h1f{height:17.680520pt;}
.h23{height:21.792085pt;}
.h5{height:22.635179pt;}
.ha{height:26.667811pt;}
.h1d{height:26.743524pt;}
.h2d{height:29.014187pt;}
.h1{height:30.477662pt;}
.h6{height:34.287514pt;}
.h17{height:34.310134pt;}
.h18{height:34.330061pt;}
.h16{height:34.622259pt;}
.h27{height:34.766428pt;}
.h2e{height:36.697939pt;}
.h26{height:36.846369pt;}
.h2b{height:37.322036pt;}
.h15{height:37.725045pt;}
.h8{height:38.096982pt;}
.h13{height:38.098724pt;}
.hf{height:38.099258pt;}
.h10{height:38.103417pt;}
.h11{height:38.107563pt;}
.h12{height:38.117351pt;}
.he{height:38.176558pt;}
.h9{height:38.479546pt;}
.h30{height:39.520798pt;}
.h2f{height:39.818042pt;}
.hc{height:40.223014pt;}
.h1c{height:40.590570pt;}
.h2a{height:41.006635pt;}
.h25{height:43.977924pt;}
.hd{height:44.283811pt;}
.hb{height:44.336503pt;}
.h14{height:44.361243pt;}
.h7{height:44.887415pt;}
.h2c{height:47.148288pt;}
.h24{height:47.543701pt;}
.h31{height:48.881108pt;}
.h19{height:49.466667pt;}
.h4{height:51.141069pt;}
.h22{height:53.027157pt;}
.h28{height:55.852544pt;}
.h3{height:67.331686pt;}
.h2{height:67.905536pt;}
.h20{height:84.403619pt;}
.h1a{height:163.205333pt;}
.h0{height:1056.000000pt;}
.w2{width:122.666667pt;}
.w1{width:800.000000pt;}
.w0{width:800.066667pt;}
.x0{left:0.000000pt;}
.x20{left:7.622800pt;}
.x1f{left:8.761867pt;}
.x22{left:20.444400pt;}
.x23{left:66.666667pt;}
.x1{left:67.644000pt;}
.x12{left:73.380000pt;}
.x8{left:87.563887pt;}
.x13{left:93.275844pt;}
.x26{left:101.514267pt;}
.x2{left:115.524000pt;}
.xa{left:187.560000pt;}
.x9{left:190.440000pt;}
.x1e{left:202.666667pt;}
.x10{left:269.507711pt;}
.xd{left:280.835959pt;}
.x11{left:288.359607pt;}
.xe{left:293.746052pt;}
.xc{left:295.980000pt;}
.xb{left:298.884000pt;}
.xf{left:302.122606pt;}
.x1c{left:305.432133pt;}
.x1d{left:316.244133pt;}
.x21{left:338.666667pt;}
.x5{left:411.550295pt;}
.x14{left:417.289261pt;}
.x4{left:431.470182pt;}
.x15{left:437.185105pt;}
.x24{left:474.666667pt;}
.x19{left:477.013902pt;}
.x6{left:518.014624pt;}
.x16{left:526.057670pt;}
.x17{left:532.585210pt;}
.x3{left:556.788502pt;}
.x1a{left:568.883316pt;}
.x18{left:579.037139pt;}
.x1b{left:583.247489pt;}
.x25{left:610.666667pt;}
.x7{left:700.992000pt;}
}




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