
    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_17b5c9257eda2d412d6a301d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight: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_9c4d31dc2b12cbe42c5e8bb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight: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_0af716d4b17de2b48026d6b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;font-style:normal;font-weight: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_e2cbc5a48102b8b47fe47069.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914000;font-style:normal;font-weight: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_18ac3b529affdaa4c49bd680.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight: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_972d9ddc7da0545098ba760b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191000;font-style:normal;font-weight: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_c4ad0ea3cdb4ce9a24f79e79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;font-style:normal;font-weight: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_9a662923305c7e938fa07069.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight: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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight: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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;font-style:normal;font-weight: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_52521e14869355c48b53979a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight: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_f84a78a7810ae66c571d0a06.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_640bf1dbc5f511a48ec6945c.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_519f2a4cd4f22a98f5912cf5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.883000;font-style:normal;font-weight: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_9c51f295c384fb741ec12b15.woff2')format("woff");}.fff{font-family:fff;line-height:0.699000;font-style:normal;font-weight: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_b0b72d5250a458ea35d73ccc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight: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_ec299be3dd03ea9c96f9cfec.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200195;font-style:normal;font-weight: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_5f03a4d8377d01b3a2d8016d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.211426;font-style:normal;font-weight: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_9066b608869535a0378ad0c7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7723eabd1c09c338185d70db.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.948242;font-style:normal;font-weight: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_c1af053d5f5459594458fd87.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.909180;font-style:normal;font-weight: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_fe8e594110c762bbf4763903.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014160;font-style:normal;font-weight: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_3356484fac56050bb7227d60.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.200195;font-style:normal;font-weight: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_f2aacab8bcf25244af8580b6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.211426;font-style:normal;font-weight: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_29bb92bd22e1748145119257.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.708008;font-style:normal;font-weight: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_425d14e3903d06558c2e13f0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.850586;font-style:normal;font-weight: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_a3a0315b086b9705ed0f8b81.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;font-style:normal;font-weight: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_7b90f73e8bfcd703a7d8ae5a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.200195;font-style:normal;font-weight: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_b0d5e98089305337c3e0c53f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.211426;font-style:normal;font-weight: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_a3a0315b086b9705ed0f8b81.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;font-style:normal;font-weight: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_1515d7324282f61070a0aef3.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.200195;font-style:normal;font-weight: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_86d5ae7db7a20d126a1150cc.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.211426;font-style:normal;font-weight: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_9066b608869535a0378ad0c7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_c926e0ef49e0af9ab6d0d6f4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.014160;font-style:normal;font-weight: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_fb78d74e868802036ed32875.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.200195;font-style:normal;font-weight: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_62d641c73a93b62284a7a971.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.211426;font-style:normal;font-weight: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_29bb92bd22e1748145119257.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.708008;font-style:normal;font-weight: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_30321289b91ce1298f4bf2fc.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_ea25fb41c025a11907efb430.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000488;font-style:normal;font-weight: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_b19c50511a3e11d046ffe10e.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.200195;font-style:normal;font-weight: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_ade369b6d2c9ede5b47154e7.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.211426;font-style:normal;font-weight: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_9066b608869535a0378ad0c7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_01c9a13f57b8fd00d8a441f6.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.259000;font-style:normal;font-weight: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_e17c40485a7c386d34090f62.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.703000;font-style:normal;font-weight: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_d75b8c64e0c4a01401d33d19.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m12{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.530000px;}
.v1{vertical-align:-16.140000px;}
.v9{vertical-align:-13.542000px;}
.v5{vertical-align:-11.184000px;}
.v8{vertical-align:-4.020000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.190000px;}
.v3{vertical-align:13.386000px;}
.vd{vertical-align:14.399986px;}
.va{vertical-align:15.510000px;}
.v2{vertical-align:21.702000px;}
.vf{vertical-align:32.874000px;}
.vb{vertical-align:37.800000px;}
.vc{vertical-align:40.322484px;}
.v7{vertical-align:45.630000px;}
.ve{vertical-align:48.978000px;}
.ls59{letter-spacing:-0.361008px;}
.lsa6{letter-spacing:-0.312624px;}
.ls9a{letter-spacing:-0.282564px;}
.ls53{letter-spacing:-0.270540px;}
.lsa5{letter-spacing:-0.234468px;}
.ls61{letter-spacing:-0.216432px;}
.lsa4{letter-spacing:-0.174348px;}
.ls63{letter-spacing:-0.156312px;}
.ls4e{letter-spacing:-0.150300px;}
.ls5e{letter-spacing:-0.138276px;}
.ls5f{letter-spacing:-0.126252px;}
.ls85{letter-spacing:-0.126000px;}
.ls50{letter-spacing:-0.114228px;}
.ls55{letter-spacing:-0.113400px;}
.ls97{letter-spacing:-0.108216px;}
.ls48{letter-spacing:-0.090972px;}
.ls51{letter-spacing:-0.090180px;}
.ls56{letter-spacing:-0.086112px;}
.ls5d{letter-spacing:-0.084168px;}
.ls99{letter-spacing:-0.072144px;}
.ls4d{letter-spacing:-0.066132px;}
.ls86{letter-spacing:-0.064800px;}
.ls8d{letter-spacing:-0.059400px;}
.ls4c{letter-spacing:-0.054108px;}
.lsa7{letter-spacing:-0.048096px;}
.ls4a{letter-spacing:-0.042084px;}
.ls5c{letter-spacing:-0.036072px;}
.ls96{letter-spacing:-0.030060px;}
.ls87{letter-spacing:-0.027000px;}
.ls4b{letter-spacing:-0.024048px;}
.ls8e{letter-spacing:-0.021600px;}
.ls49{letter-spacing:-0.018036px;}
.ls84{letter-spacing:-0.018000px;}
.ls88{letter-spacing:-0.016200px;}
.ls52{letter-spacing:-0.012024px;}
.ls89{letter-spacing:-0.010800px;}
.ls5a{letter-spacing:-0.006012px;}
.ls54{letter-spacing:-0.005400px;}
.ls12{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.000300px;}
.lsc5{letter-spacing:0.000335px;}
.lsbb{letter-spacing:0.000589px;}
.lsb3{letter-spacing:0.000600px;}
.lsbe{letter-spacing:0.000676px;}
.ls14{letter-spacing:0.000838px;}
.ls1c{letter-spacing:0.000860px;}
.lsaa{letter-spacing:0.001029px;}
.lsb9{letter-spacing:0.001036px;}
.lsaf{letter-spacing:0.001123px;}
.ls15{letter-spacing:0.001127px;}
.ls73{letter-spacing:0.001200px;}
.lse{letter-spacing:0.001518px;}
.lsa{letter-spacing:0.001574px;}
.lsc2{letter-spacing:0.001635px;}
.lsa8{letter-spacing:0.001773px;}
.ls1a{letter-spacing:0.001875px;}
.ls1e{letter-spacing:0.002083px;}
.ls69{letter-spacing:0.002100px;}
.lsd{letter-spacing:0.002401px;}
.ls95{letter-spacing:0.002829px;}
.lsb4{letter-spacing:0.003167px;}
.lsc{letter-spacing:0.003226px;}
.lsab{letter-spacing:0.003337px;}
.ls91{letter-spacing:0.003394px;}
.ls11{letter-spacing:0.003488px;}
.lsb{letter-spacing:0.003494px;}
.lsad{letter-spacing:0.003562px;}
.ls1f{letter-spacing:0.003598px;}
.ls6b{letter-spacing:0.003835px;}
.ls23{letter-spacing:0.003859px;}
.ls17{letter-spacing:0.004403px;}
.ls94{letter-spacing:0.004471px;}
.lsac{letter-spacing:0.004646px;}
.lsb8{letter-spacing:0.004800px;}
.ls76{letter-spacing:0.005369px;}
.ls3b{letter-spacing:0.005400px;}
.ls6a{letter-spacing:0.005705px;}
.ls93{letter-spacing:0.006012px;}
.lsa0{letter-spacing:0.010800px;}
.ls43{letter-spacing:0.012024px;}
.ls57{letter-spacing:0.016200px;}
.ls35{letter-spacing:0.018036px;}
.ls3c{letter-spacing:0.021600px;}
.ls45{letter-spacing:0.024048px;}
.ls46{letter-spacing:0.027000px;}
.ls36{letter-spacing:0.030060px;}
.ls40{letter-spacing:0.032400px;}
.ls31{letter-spacing:0.033516px;}
.ls92{letter-spacing:0.036072px;}
.ls77{letter-spacing:0.042000px;}
.ls34{letter-spacing:0.042084px;}
.ls2f{letter-spacing:0.043092px;}
.ls3d{letter-spacing:0.043200px;}
.ls37{letter-spacing:0.048096px;}
.ls9f{letter-spacing:0.048600px;}
.ls7f{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.054108px;}
.ls7a{letter-spacing:0.059400px;}
.ls33{letter-spacing:0.060120px;}
.ls3f{letter-spacing:0.064800px;}
.ls42{letter-spacing:0.066132px;}
.ls83{letter-spacing:0.072000px;}
.ls41{letter-spacing:0.072144px;}
.ls3e{letter-spacing:0.075600px;}
.lsa2{letter-spacing:0.078156px;}
.lsa3{letter-spacing:0.084168px;}
.ls5b{letter-spacing:0.090180px;}
.ls60{letter-spacing:0.096192px;}
.ls8b{letter-spacing:0.102204px;}
.ls78{letter-spacing:0.108000px;}
.ls62{letter-spacing:0.114228px;}
.ls98{letter-spacing:0.120240px;}
.ls47{letter-spacing:0.132264px;}
.ls39{letter-spacing:0.138276px;}
.ls38{letter-spacing:0.144288px;}
.ls79{letter-spacing:0.162000px;}
.ls8c{letter-spacing:0.162324px;}
.ls8a{letter-spacing:0.168336px;}
.ls32{letter-spacing:0.172368px;}
.ls58{letter-spacing:0.178200px;}
.ls44{letter-spacing:0.180360px;}
.ls30{letter-spacing:0.181944px;}
.ls6d{letter-spacing:0.391883px;}
.ls6f{letter-spacing:0.391887px;}
.ls70{letter-spacing:0.392022px;}
.ls6c{letter-spacing:0.392027px;}
.ls71{letter-spacing:0.392157px;}
.ls6e{letter-spacing:0.392161px;}
.lsae{letter-spacing:0.537859px;}
.ls9c{letter-spacing:0.954667px;}
.ls13{letter-spacing:1.275394px;}
.ls9{letter-spacing:1.861130px;}
.ls18{letter-spacing:2.988319px;}
.ls20{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls4f{letter-spacing:5.849676px;}
.ls9b{letter-spacing:6.142860px;}
.lsa1{letter-spacing:6.571116px;}
.ls10{letter-spacing:11.954850px;}
.lsc3{letter-spacing:13.222321px;}
.lsb5{letter-spacing:13.228233px;}
.lsc6{letter-spacing:13.445922px;}
.lsb0{letter-spacing:13.448400px;}
.ls64{letter-spacing:13.450090px;}
.ls65{letter-spacing:13.451510px;}
.lsb1{letter-spacing:13.454400px;}
.lsb2{letter-spacing:13.556448px;}
.lsbd{letter-spacing:13.614490px;}
.lsb7{letter-spacing:13.699336px;}
.ls90{letter-spacing:13.748388px;}
.ls2a{letter-spacing:14.762632px;}
.ls29{letter-spacing:14.763088px;}
.ls28{letter-spacing:14.765958px;}
.ls2c{letter-spacing:14.766192px;}
.ls2b{letter-spacing:14.769017px;}
.ls27{letter-spacing:14.910469px;}
.ls9d{letter-spacing:14.934613px;}
.ls2e{letter-spacing:14.941331px;}
.ls1b{letter-spacing:14.941580px;}
.ls6{letter-spacing:14.942725px;}
.ls2d{letter-spacing:14.943634px;}
.ls26{letter-spacing:14.943900px;}
.ls1{letter-spacing:14.944200px;}
.ls19{letter-spacing:14.946124px;}
.lsb6{letter-spacing:16.440600px;}
.lsbf{letter-spacing:16.979812px;}
.ls9e{letter-spacing:17.623200px;}
.ls75{letter-spacing:17.887200px;}
.lsf{letter-spacing:17.929200px;}
.ls5{letter-spacing:17.935200px;}
.ls16{letter-spacing:17.983200px;}
.lsc4{letter-spacing:18.824400px;}
.lsba{letter-spacing:18.830400px;}
.lsbc{letter-spacing:19.121829px;}
.ls72{letter-spacing:19.666172px;}
.ls1d{letter-spacing:20.144377px;}
.lsa9{letter-spacing:21.041011px;}
.lsc1{letter-spacing:21.468047px;}
.ls0{letter-spacing:29.883600px;}
.lsc0{letter-spacing:38.344518px;}
.ls4{letter-spacing:57.415200px;}
.ls7{letter-spacing:70.236600px;}
.ls8{letter-spacing:72.353510px;}
.ls82{letter-spacing:168.792600px;}
.ls21{letter-spacing:211.597133px;}
.ls81{letter-spacing:226.332600px;}
.ls80{letter-spacing:263.934600px;}
.ls8f{letter-spacing:270.684600px;}
.ls7d{letter-spacing:313.917000px;}
.ls7e{letter-spacing:313.917600px;}
.ls7c{letter-spacing:378.360600px;}
.ls25{letter-spacing:403.350600px;}
.ls7b{letter-spacing:421.561800px;}
.ls24{letter-spacing:460.884600px;}
.ls68{letter-spacing:489.744600px;}
.ls22{letter-spacing:536.610600px;}
.ls67{letter-spacing:547.278600px;}
.ls66{letter-spacing:584.886600px;}
.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;}
}
.ws4f{word-spacing:-60.120000px;}
.ws2{word-spacing:-26.899200px;}
.wse{word-spacing:-17.394700px;}
.ws6{word-spacing:-15.655334px;}
.ws51{word-spacing:-15.174288px;}
.wsaa{word-spacing:-15.168276px;}
.wsab{word-spacing:-15.132204px;}
.ws59{word-spacing:-15.042024px;}
.ws58{word-spacing:-15.030000px;}
.wsb{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.355754px;}
.ws94{word-spacing:-14.017050px;}
.ws27{word-spacing:-13.915795px;}
.ws54{word-spacing:-13.678200px;}
.ws55{word-spacing:-13.575600px;}
.ws56{word-spacing:-13.564800px;}
.ws57{word-spacing:-13.532400px;}
.ws52{word-spacing:-13.516200px;}
.ws46{word-spacing:-13.449600px;}
.ws9d{word-spacing:-13.220014px;}
.ws4e{word-spacing:-12.151944px;}
.ws25{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.ws93{word-spacing:-11.314913px;}
.ws50{word-spacing:-9.000000px;}
.ws95{word-spacing:-8.443980px;}
.ws53{word-spacing:-8.280000px;}
.ws1d{word-spacing:-4.244068px;}
.ws3c{word-spacing:-4.004965px;}
.ws173{word-spacing:-3.712090px;}
.wsed{word-spacing:-3.547080px;}
.wsc8{word-spacing:-3.466985px;}
.ws161{word-spacing:-3.389299px;}
.ws13a{word-spacing:-3.335501px;}
.ws6c{word-spacing:-3.288564px;}
.wsf{word-spacing:-3.287658px;}
.ws11a{word-spacing:-3.186360px;}
.ws11b{word-spacing:-3.138264px;}
.ws3d{word-spacing:-3.108331px;}
.ws13e{word-spacing:-3.066509px;}
.wsec{word-spacing:-3.042072px;}
.ws6d{word-spacing:-2.843676px;}
.ws6e{word-spacing:-2.699388px;}
.ws36{word-spacing:-2.689902px;}
.ws6b{word-spacing:-2.675340px;}
.ws136{word-spacing:-2.636122px;}
.ws15b{word-spacing:-2.582323px;}
.ws134{word-spacing:-2.510575px;}
.wsb1{word-spacing:-2.472000px;}
.wsb2{word-spacing:-2.412000px;}
.ws135{word-spacing:-2.313331px;}
.wsb3{word-spacing:-2.304000px;}
.ws23{word-spacing:-2.271473px;}
.wsd3{word-spacing:-2.164320px;}
.wsd4{word-spacing:-2.122236px;}
.wse7{word-spacing:-2.116224px;}
.wsda{word-spacing:-2.104200px;}
.ws10f{word-spacing:-2.092176px;}
.ws12d{word-spacing:-2.092146px;}
.ws110{word-spacing:-2.086164px;}
.wsd5{word-spacing:-2.044080px;}
.wse2{word-spacing:-1.998000px;}
.wse1{word-spacing:-1.981800px;}
.wse0{word-spacing:-1.960200px;}
.ws163{word-spacing:-1.936742px;}
.wsa{word-spacing:-1.908367px;}
.ws162{word-spacing:-1.882944px;}
.ws9c{word-spacing:-1.793268px;}
.wsd8{word-spacing:-1.779552px;}
.ws114{word-spacing:-1.647000px;}
.wsdb{word-spacing:-1.641276px;}
.ws116{word-spacing:-1.630800px;}
.ws115{word-spacing:-1.609200px;}
.ws63{word-spacing:-1.400796px;}
.wsd9{word-spacing:-1.394784px;}
.ws129{word-spacing:-1.374839px;}
.wsd7{word-spacing:-1.364724px;}
.wsd0{word-spacing:-1.346688px;}
.ws9{word-spacing:-1.322630px;}
.wsd1{word-spacing:-1.316628px;}
.ws64{word-spacing:-1.298592px;}
.ws65{word-spacing:-1.280556px;}
.wsc4{word-spacing:-1.255288px;}
.wsc6{word-spacing:-1.075961px;}
.wsb0{word-spacing:-1.062000px;}
.ws112{word-spacing:-0.979956px;}
.wsa3{word-spacing:-0.956410px;}
.ws37{word-spacing:-0.896634px;}
.ws4a{word-spacing:-0.836858px;}
.ws81{word-spacing:-0.811620px;}
.ws4b{word-spacing:-0.777083px;}
.ws111{word-spacing:-0.667332px;}
.ws7e{word-spacing:-0.655308px;}
.ws113{word-spacing:-0.643284px;}
.ws11e{word-spacing:-0.607212px;}
.ws101{word-spacing:-0.597756px;}
.ws11f{word-spacing:-0.583164px;}
.ws29{word-spacing:-0.537980px;}
.ws172{word-spacing:-0.484186px;}
.ws68{word-spacing:-0.414828px;}
.ws8e{word-spacing:-0.402804px;}
.ws79{word-spacing:-0.360720px;}
.ws43{word-spacing:-0.358654px;}
.ws120{word-spacing:-0.348696px;}
.ws7b{word-spacing:-0.342684px;}
.ws5c{word-spacing:-0.330660px;}
.ws11d{word-spacing:-0.318636px;}
.ws6a{word-spacing:-0.312624px;}
.wsc{word-spacing:-0.298878px;}
.ws89{word-spacing:-0.294588px;}
.ws60{word-spacing:-0.288576px;}
.ws7f{word-spacing:-0.282564px;}
.ws174{word-spacing:-0.268992px;}
.ws78{word-spacing:-0.264528px;}
.ws5e{word-spacing:-0.252504px;}
.ws1e{word-spacing:-0.239102px;}
.ws7a{word-spacing:-0.234468px;}
.ws142{word-spacing:-0.215194px;}
.ws69{word-spacing:-0.204408px;}
.ws7d{word-spacing:-0.186372px;}
.wsb5{word-spacing:-0.183600px;}
.ws13{word-spacing:-0.179327px;}
.ws8c{word-spacing:-0.178200px;}
.ws97{word-spacing:-0.161395px;}
.ws80{word-spacing:-0.132264px;}
.ws5a{word-spacing:-0.124488px;}
.ws2d{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.107597px;}
.ws104{word-spacing:-0.060120px;}
.ws1c{word-spacing:-0.059776px;}
.wsac{word-spacing:-0.053798px;}
.ws26{word-spacing:-0.047821px;}
.ws48{word-spacing:-0.041843px;}
.ws8f{word-spacing:-0.024048px;}
.ws88{word-spacing:-0.006012px;}
.ws3e{word-spacing:-0.000335px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:0.002734px;}
.ws4d{word-spacing:0.004009px;}
.ws107{word-spacing:0.006012px;}
.wsdf{word-spacing:0.030060px;}
.ws96{word-spacing:0.053798px;}
.ws2e{word-spacing:0.059776px;}
.ws61{word-spacing:0.060120px;}
.ws6f{word-spacing:0.102204px;}
.ws7{word-spacing:0.107597px;}
.ws117{word-spacing:0.108216px;}
.ws62{word-spacing:0.114228px;}
.wsb7{word-spacing:0.118800px;}
.ws33{word-spacing:0.119551px;}
.wsbf{word-spacing:0.124200px;}
.ws105{word-spacing:0.129600px;}
.ws5f{word-spacing:0.132264px;}
.ws74{word-spacing:0.135000px;}
.ws8d{word-spacing:0.151200px;}
.ws72{word-spacing:0.156600px;}
.ws138{word-spacing:0.161395px;}
.ws73{word-spacing:0.162000px;}
.wsf3{word-spacing:0.162324px;}
.ws106{word-spacing:0.167400px;}
.ws71{word-spacing:0.172800px;}
.ws8b{word-spacing:0.178200px;}
.wsd{word-spacing:0.179327px;}
.ws70{word-spacing:0.183600px;}
.wsb8{word-spacing:0.189000px;}
.wsc0{word-spacing:0.199800px;}
.wsb6{word-spacing:0.205200px;}
.ws127{word-spacing:0.215194px;}
.wsbe{word-spacing:0.237600px;}
.ws31{word-spacing:0.239102px;}
.wsb9{word-spacing:0.240480px;}
.wsb4{word-spacing:0.243000px;}
.ws146{word-spacing:0.268992px;}
.ws2c{word-spacing:0.298878px;}
.ws8a{word-spacing:0.306612px;}
.ws14d{word-spacing:0.322790px;}
.ws102{word-spacing:0.358654px;}
.ws168{word-spacing:0.376589px;}
.wseb{word-spacing:0.414828px;}
.ws167{word-spacing:0.430387px;}
.wse9{word-spacing:0.438876px;}
.ws139{word-spacing:0.484186px;}
.wsea{word-spacing:0.492984px;}
.wsa2{word-spacing:0.597756px;}
.ws159{word-spacing:0.645581px;}
.ws12a{word-spacing:0.657532px;}
.ws38{word-spacing:0.717307px;}
.wsa5{word-spacing:0.777083px;}
.ws144{word-spacing:0.968371px;}
.ws153{word-spacing:1.022170px;}
.wsa7{word-spacing:1.075961px;}
.ws152{word-spacing:1.075968px;}
.ws12{word-spacing:1.135736px;}
.wsf6{word-spacing:1.166328px;}
.ws1f{word-spacing:1.195512px;}
.ws148{word-spacing:1.237363px;}
.wsa4{word-spacing:1.255288px;}
.wsf7{word-spacing:1.388772px;}
.ws12f{word-spacing:1.494390px;}
.ws12e{word-spacing:1.554166px;}
.ws4c{word-spacing:1.613941px;}
.ws2b{word-spacing:1.673717px;}
.ws16b{word-spacing:1.721549px;}
.ws177{word-spacing:1.775347px;}
.ws12b{word-spacing:1.793268px;}
.ws160{word-spacing:1.829146px;}
.ws9f{word-spacing:1.912819px;}
.ws9e{word-spacing:1.972595px;}
.ws17{word-spacing:2.032370px;}
.ws22{word-spacing:2.092146px;}
.ws16a{word-spacing:2.151936px;}
.ws1a{word-spacing:2.211697px;}
.ws21{word-spacing:2.450800px;}
.ws20{word-spacing:2.510575px;}
.wsee{word-spacing:2.549088px;}
.wscf{word-spacing:2.573136px;}
.wsef{word-spacing:2.621232px;}
.ws12c{word-spacing:2.689902px;}
.ws158{word-spacing:2.797517px;}
.ws118{word-spacing:2.897784px;}
.wsf4{word-spacing:2.915820px;}
.wsf5{word-spacing:2.957904px;}
.wsce{word-spacing:2.975940px;}
.wsfe{word-spacing:2.987964px;}
.ws67{word-spacing:2.993976px;}
.ws128{word-spacing:3.048556px;}
.ws119{word-spacing:3.060108px;}
.ws66{word-spacing:3.120228px;}
.ws103{word-spacing:3.168107px;}
.ws14f{word-spacing:3.227904px;}
.wsc7{word-spacing:3.287658px;}
.wse6{word-spacing:3.300588px;}
.ws86{word-spacing:3.306600px;}
.wse5{word-spacing:3.324636px;}
.ws83{word-spacing:3.336660px;}
.ws87{word-spacing:3.342672px;}
.wsa1{word-spacing:3.347434px;}
.ws85{word-spacing:3.366720px;}
.wsa0{word-spacing:3.407209px;}
.ws84{word-spacing:3.456900px;}
.wsdc{word-spacing:3.691368px;}
.wsdd{word-spacing:3.709404px;}
.ws171{word-spacing:3.819686px;}
.ws14b{word-spacing:3.981082px;}
.wsc9{word-spacing:4.064741px;}
.ws41{word-spacing:4.184292px;}
.ws39{word-spacing:4.483170px;}
.ws9b{word-spacing:4.662497px;}
.ws9a{word-spacing:4.722272px;}
.ws132{word-spacing:4.782048px;}
.ws98{word-spacing:4.841824px;}
.ws99{word-spacing:4.901599px;}
.wsc5{word-spacing:4.961375px;}
.ws16f{word-spacing:5.100508px;}
.ws42{word-spacing:5.200477px;}
.ws14a{word-spacing:5.372880px;}
.ws151{word-spacing:5.373600px;}
.ws176{word-spacing:5.373629px;}
.ws166{word-spacing:5.377238px;}
.ws14c{word-spacing:5.377910px;}
.ws8{word-spacing:5.379840px;}
.ws15d{word-spacing:5.380003px;}
.ws178{word-spacing:5.381683px;}
.wsd6{word-spacing:5.446872px;}
.ws11c{word-spacing:5.458896px;}
.ws109{word-spacing:5.470920px;}
.ws2a{word-spacing:5.559131px;}
.ws11{word-spacing:5.798233px;}
.wsd2{word-spacing:5.831640px;}
.ws35{word-spacing:5.917784px;}
.ws13b{word-spacing:5.917824px;}
.ws14{word-spacing:5.971475px;}
.ws15{word-spacing:5.977560px;}
.ws122{word-spacing:6.097111px;}
.ws44{word-spacing:6.156887px;}
.wscd{word-spacing:6.168312px;}
.ws126{word-spacing:6.186816px;}
.ws16c{word-spacing:6.348211px;}
.ws30{word-spacing:6.395989px;}
.ws10c{word-spacing:6.432840px;}
.wsf8{word-spacing:6.474924px;}
.wsa6{word-spacing:6.515540px;}
.ws125{word-spacing:6.563405px;}
.ws10b{word-spacing:6.769512px;}
.ws10a{word-spacing:6.931836px;}
.wsde{word-spacing:6.937848px;}
.ws10e{word-spacing:7.016004px;}
.ws10d{word-spacing:7.106184px;}
.wsf9{word-spacing:7.214400px;}
.ws137{word-spacing:7.316582px;}
.ws133{word-spacing:7.412174px;}
.ws5d{word-spacing:7.605180px;}
.ws1b{word-spacing:7.711052px;}
.ws3a{word-spacing:7.890379px;}
.ws3b{word-spacing:7.950155px;}
.ws16e{word-spacing:8.015962px;}
.ws32{word-spacing:8.069706px;}
.ws2f{word-spacing:8.189257px;}
.ws165{word-spacing:8.231155px;}
.wsfa{word-spacing:8.278524px;}
.wsfd{word-spacing:8.326620px;}
.wsfb{word-spacing:8.344656px;}
.ws19{word-spacing:8.428360px;}
.wsfc{word-spacing:8.482932px;}
.ws18{word-spacing:8.488135px;}
.ws13f{word-spacing:8.715341px;}
.ws5b{word-spacing:9.097200px;}
.ws17a{word-spacing:9.307123px;}
.ws175{word-spacing:9.791309px;}
.ws156{word-spacing:10.006502px;}
.ws7c{word-spacing:10.106172px;}
.ws149{word-spacing:10.221696px;}
.wse4{word-spacing:10.905768px;}
.wse3{word-spacing:10.911780px;}
.ws10{word-spacing:11.476915px;}
.ws24{word-spacing:11.905687px;}
.ws170{word-spacing:13.126810px;}
.ws143{word-spacing:13.180608px;}
.ws154{word-spacing:13.288205px;}
.ws140{word-spacing:13.386701px;}
.ws14e{word-spacing:13.390608px;}
.ws150{word-spacing:13.393248px;}
.wsff{word-spacing:13.394736px;}
.ws13c{word-spacing:13.395802px;}
.ws100{word-spacing:13.436820px;}
.ws179{word-spacing:13.503398px;}
.ws17c{word-spacing:13.557197px;}
.ws15a{word-spacing:13.772390px;}
.ws124{word-spacing:13.808164px;}
.ws123{word-spacing:13.867939px;}
.ws82{word-spacing:14.074092px;}
.ws3f{word-spacing:14.645022px;}
.wsf1{word-spacing:14.729400px;}
.wsf2{word-spacing:14.843628px;}
.ws34{word-spacing:14.884124px;}
.ws121{word-spacing:14.943900px;}
.ws157{word-spacing:15.117350px;}
.wsf0{word-spacing:15.234408px;}
.ws169{word-spacing:16.139520px;}
.ws47{word-spacing:16.395108px;}
.wse8{word-spacing:16.941816px;}
.ws40{word-spacing:18.351109px;}
.wsca{word-spacing:18.709763px;}
.ws15c{word-spacing:18.769219px;}
.ws145{word-spacing:18.770074px;}
.ws141{word-spacing:18.770698px;}
.ws164{word-spacing:18.770976px;}
.ws155{word-spacing:18.773482px;}
.ws15e{word-spacing:18.773712px;}
.ws13d{word-spacing:18.775642px;}
.ws17b{word-spacing:18.829440px;}
.ws15f{word-spacing:19.044634px;}
.ws147{word-spacing:19.206029px;}
.ws16d{word-spacing:19.744013px;}
.ws16{word-spacing:20.204153px;}
.ws131{word-spacing:20.263928px;}
.ws130{word-spacing:20.323704px;}
.wscb{word-spacing:22.791492px;}
.wscc{word-spacing:22.809528px;}
.ws108{word-spacing:25.665228px;}
.wsc2{word-spacing:135.604176px;}
.wsad{word-spacing:178.126502px;}
.wsc1{word-spacing:186.618600px;}
.wsae{word-spacing:191.576102px;}
.wsaf{word-spacing:205.025702px;}
.ws92{word-spacing:242.738381px;}
.ws91{word-spacing:269.608800px;}
.wsbd{word-spacing:299.078964px;}
.wsbc{word-spacing:299.084976px;}
.wsc3{word-spacing:358.243546px;}
.wsbb{word-spacing:363.521592px;}
.ws45{word-spacing:368.386176px;}
.ws77{word-spacing:400.107600px;}
.wsba{word-spacing:406.363104px;}
.ws49{word-spacing:575.911872px;}
.ws76{word-spacing:620.789400px;}
.ws75{word-spacing:658.956600px;}
.ws90{word-spacing:759.123216px;}
.ws28{word-spacing:908.304476px;}
.wsa9{word-spacing:1239.614280px;}
.wsa8{word-spacing:1239.938928px;}
._30{margin-left:-497.679372px;}
._44{margin-left:-170.710740px;}
._2f{margin-left:-138.400884px;}
._46{margin-left:-127.893276px;}
._41{margin-left:-114.591428px;}
._4a{margin-left:-77.786988px;}
._4c{margin-left:-63.426600px;}
._28{margin-left:-30.958200px;}
._62{margin-left:-24.611270px;}
._3{margin-left:-23.252708px;}
._61{margin-left:-21.871698px;}
._8{margin-left:-20.344795px;}
._1{margin-left:-7.962163px;}
._9{margin-left:-6.939994px;}
._0{margin-left:-5.936746px;}
._6{margin-left:-3.997037px;}
._b{margin-left:-2.134972px;}
._7{margin-left:-1.000272px;}
._c{width:1.091170px;}
._38{width:2.263243px;}
._2{width:3.347467px;}
._37{width:4.715765px;}
._3a{width:5.803753px;}
._2a{width:6.804000px;}
._39{width:7.943995px;}
._10{width:9.265218px;}
._13{width:10.341179px;}
._21{width:12.322314px;}
._18{width:13.389734px;}
._60{width:14.445690px;}
._14{width:15.705929px;}
._5e{width:16.854601px;}
._a{width:17.858102px;}
._5{width:19.800778px;}
._d{width:21.280114px;}
._16{width:23.252708px;}
._e{width:24.926425px;}
._4{width:26.596550px;}
._11{width:28.360548px;}
._5d{width:29.529146px;}
._1a{width:33.295009px;}
._19{width:34.849175px;}
._3b{width:35.987959px;}
._63{width:38.358259px;}
._f{width:40.713208px;}
._17{width:45.608783px;}
._12{width:46.804295px;}
._4d{width:66.808430px;}
._53{width:108.548208px;}
._52{width:109.963930px;}
._54{width:119.916634px;}
._55{width:122.821747px;}
._4f{width:143.596800px;}
._56{width:159.727450px;}
._40{width:170.049420px;}
._31{width:179.579059px;}
._50{width:186.435000px;}
._3f{width:189.618480px;}
._3e{width:191.127492px;}
._3d{width:198.257724px;}
._4e{width:201.603600px;}
._5a{width:204.595250px;}
._1d{width:210.758554px;}
._59{width:218.475302px;}
._2b{width:219.933000px;}
._2c{width:227.880000px;}
._3c{width:234.576216px;}
._57{width:237.771580px;}
._36{width:243.926864px;}
._25{width:245.123472px;}
._58{width:252.099302px;}
._32{width:258.480134px;}
._26{width:273.381768px;}
._1c{width:282.710592px;}
._2e{width:290.944728px;}
._49{width:295.501824px;}
._48{width:299.932668px;}
._47{width:304.769928px;}
._45{width:306.208156px;}
._4b{width:310.140408px;}
._24{width:313.383600px;}
._42{width:337.718088px;}
._43{width:348.106824px;}
._2d{width:361.327212px;}
._22{width:380.348630px;}
._5b{width:392.484979px;}
._1b{width:400.260096px;}
._23{width:406.441800px;}
._51{width:430.126200px;}
._29{width:463.239216px;}
._5c{width:466.216934px;}
._33{width:498.209635px;}
._27{width:540.315216px;}
._35{width:585.181747px;}
._1f{width:610.106284px;}
._1e{width:648.199574px;}
._34{width:1530.225093px;}
._20{width:1627.886484px;}
._5f{width:2006.840700px;}
._15{width:2030.750700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(137,92,52);}
.fse{font-size:33.120000px;}
.fs13{font-size:33.775920px;}
.fsd{font-size:36.000000px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs10{font-size:45.259650px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs11{font-size:50.663700px;}
.fs6{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs12{font-size:56.068200px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs14{font-size:67.551750px;}
.fsf{font-size:72.000000px;}
.fs3{font-size:81.772800px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:147.405960px;}
.y176{bottom:-705.016483px;}
.y188{bottom:-670.996494px;}
.y187{bottom:-651.916470px;}
.y186{bottom:-633.016483px;}
.y185{bottom:-613.936527px;}
.y184{bottom:-594.856502px;}
.yd0{bottom:-593.701483px;}
.yf4{bottom:-576.061492px;}
.y183{bottom:-567.316525px;}
.yf3{bottom:-556.981467px;}
.yf2{bottom:-538.081481px;}
.y182{bottom:-532.036473px;}
.yf1{bottom:-519.001525px;}
.y181{bottom:-513.676533px;}
.yf0{bottom:-500.101470px;}
.y180{bottom:-487.576519px;}
.y143{bottom:-487.160550px;}
.yef{bottom:-480.841475px;}
.yee{bottom:-461.941489px;}
.yed{bottom:-442.861533px;}
.yec{bottom:-423.961478px;}
.y164{bottom:-411.830469px;}
.yeb{bottom:-404.881523px;}
.y163{bottom:-391.580388px;}
.yea{bottom:-385.801498px;}
.y162{bottom:-371.330469px;}
.ye9{bottom:-366.901511px;}
.y161{bottom:-351.080289px;}
.ye8{bottom:-347.821487px;}
.y160{bottom:-330.920469px;}
.ye7{bottom:-328.741530px;}
.y127{bottom:-311.108550px;}
.y15f{bottom:-310.670469px;}
.ye6{bottom:-309.661506px;}
.ye5{bottom:-290.761519px;}
.y15e{bottom:-290.420307px;}
.y125{bottom:-285.899550px;}
.y124{bottom:-273.668550px;}
.ye4{bottom:-271.861533px;}
.y15d{bottom:-270.170388px;}
.y126{bottom:-261.424050px;}
.ye3{bottom:-252.601470px;}
.y15c{bottom:-249.920469px;}
.ye2{bottom:-233.701483px;}
.y1a2{bottom:-232.556550px;}
.y15b{bottom:-229.670469px;}
.y123{bottom:-229.658550px;}
.ye1{bottom:-214.621527px;}
.y15a{bottom:-209.420058px;}
.y1b4{bottom:-196.286469px;}
.ye0{bottom:-195.721473px;}
.y122{bottom:-190.143780px;}
.y159{bottom:-189.260319px;}
.y17f{bottom:-187.516483px;}
.y9c{bottom:-177.866550px;}
.ydf{bottom:-176.461478px;}
.y1b3{bottom:-176.036307px;}
.y121{bottom:-169.983960px;}
.y158{bottom:-169.010076px;}
.y17e{bottom:-168.616498px;}
.yde{bottom:-157.561492px;}
.y1b2{bottom:-155.786388px;}
.y120{bottom:-149.738550px;}
.y17d{bottom:-149.536507px;}
.y157{bottom:-148.760157px;}
.ybd{bottom:-140.966400px;}
.ydd{bottom:-138.661506px;}
.y1b1{bottom:-135.536469px;}
.y17c{bottom:-130.456517px;}
.y11f{bottom:-129.488550px;}
.y156{bottom:-128.510238px;}
.ybc{bottom:-119.996550px;}
.yba{bottom:-119.635698px;}
.ydc{bottom:-119.581481px;}
.y1b0{bottom:-115.286253px;}
.y17b{bottom:-111.556496px;}
.yb9{bottom:-109.466400px;}
.y11e{bottom:-108.518550px;}
.y155{bottom:-108.260319px;}
.ydb{bottom:-100.501525px;}
.ybb{bottom:-99.025059px;}
.y17a{bottom:-92.476506px;}
.y154{bottom:-88.010400px;}
.y1af{bottom:-86.126550px;}
.yda{bottom:-81.421500px;}
.y11d{bottom:-78.283050px;}
.yb8{bottom:-68.696100px;}
.y179{bottom:-64.936493px;}
.y153{bottom:-50.300850px;}
.y1ae{bottom:-48.327000px;}
.yd9{bottom:-46.141517px;}
.y11c{bottom:-40.753050px;}
.yb7{bottom:-31.256550px;}
.y152{bottom:-30.770400px;}
.y178{bottom:-29.656510px;}
.y1ad{bottom:-28.796550px;}
.yd8{bottom:-27.781508px;}
.y11b{bottom:-21.218550px;}
.y151{bottom:-3.050550px;}
.yd7{bottom:-1.861499px;}
.y1ac{bottom:-1.166550px;}
.y177{bottom:-0.316490px;}
.y0{bottom:0.000000px;}
.yb6{bottom:3.213450px;}
.y17{bottom:3.425340px;}
.y11a{bottom:7.757280px;}
.y16{bottom:14.151273px;}
.y2{bottom:15.837920px;}
.y3c{bottom:63.780000px;}
.y111{bottom:108.612000px;}
.y3b{bottom:109.579500px;}
.y3a{bottom:112.377000px;}
.y12e{bottom:117.669000px;}
.y1dc{bottom:120.589500px;}
.y110{bottom:126.078000px;}
.y256{bottom:128.325000px;}
.y10f{bottom:128.875500px;}
.y39{bottom:129.844500px;}
.y1b6{bottom:129.870000px;}
.y38{bottom:132.642000px;}
.y12d{bottom:134.464500px;}
.y1db{bottom:140.853000px;}
.y7b{bottom:142.579500px;}
.y255{bottom:145.005000px;}
.y254{bottom:147.691500px;}
.y212{bottom:148.399500px;}
.y1b5{bottom:149.103000px;}
.y10e{bottom:149.139000px;}
.y37{bottom:150.108000px;}
.y12c{bottom:151.260000px;}
.y36{bottom:152.905500px;}
.y1da{bottom:158.320500px;}
.y1d9{bottom:161.118000px;}
.y7a{bottom:162.843000px;}
.y253{bottom:164.373000px;}
.y211{bottom:165.079500px;}
.y10d{bottom:166.606500px;}
.y252{bottom:167.059500px;}
.y210{bottom:167.766000px;}
.y12b{bottom:168.055500px;}
.y10c{bottom:169.404000px;}
.y173{bottom:169.654500px;}
.y1a0{bottom:171.532500px;}
.y35{bottom:173.169000px;}
.y1d8{bottom:181.381500px;}
.y79{bottom:183.108000px;}
.ybe{bottom:186.375000px;}
.y251{bottom:186.427500px;}
.y10b{bottom:186.870000px;}
.y20f{bottom:187.134000px;}
.y10a{bottom:189.667500px;}
.y172{bottom:189.918000px;}
.y12a{bottom:192.052500px;}
.y34{bottom:193.434000px;}
.y1d7{bottom:198.849000px;}
.y1d6{bottom:201.645000px;}
.y78{bottom:203.371500px;}
.y20e{bottom:203.814000px;}
.y250{bottom:205.794000px;}
.y20d{bottom:206.500500px;}
.y109{bottom:207.135000px;}
.y171{bottom:207.385500px;}
.y9a{bottom:208.803000px;}
.y108{bottom:209.932500px;}
.y170{bottom:210.183000px;}
.y33{bottom:210.900000px;}
.y32{bottom:213.697500px;}
.y1d5{bottom:221.910000px;}
.y77{bottom:223.635000px;}
.y129{bottom:223.672500px;}
.y24f{bottom:225.162000px;}
.y20c{bottom:225.868500px;}
.y16f{bottom:227.649000px;}
.y107{bottom:230.196000px;}
.y16e{bottom:230.446500px;}
.y31{bottom:231.165000px;}
.y30{bottom:233.962500px;}
.y24e{bottom:241.842000px;}
.y1d4{bottom:242.173500px;}
.y76{bottom:243.900000px;}
.y24d{bottom:244.528500px;}
.y20b{bottom:245.236500px;}
.y106{bottom:247.663500px;}
.y105{bottom:250.459500px;}
.y16d{bottom:250.711500px;}
.y128{bottom:251.217000px;}
.y2f{bottom:254.226000px;}
.y1d3{bottom:262.438500px;}
.y24c{bottom:263.896500px;}
.y75{bottom:264.163500px;}
.y20a{bottom:264.603000px;}
.y16c{bottom:268.177500px;}
.y104{bottom:270.724500px;}
.y16b{bottom:270.975000px;}
.y2e{bottom:271.693500px;}
.y114{bottom:273.646500px;}
.y2d{bottom:274.489500px;}
.y1d2{bottom:282.702000px;}
.y24b{bottom:283.264500px;}
.y209{bottom:283.971000px;}
.y262{bottom:290.454000px;}
.y102{bottom:290.988000px;}
.y16a{bottom:291.238500px;}
.y74{bottom:293.394000px;}
.y2c{bottom:294.754500px;}
.y103{bottom:296.413500px;}
.yd6{bottom:298.378507px;}
.y24a{bottom:299.944500px;}
.y249{bottom:302.631000px;}
.y1d1{bottom:302.965500px;}
.y208{bottom:303.337500px;}
.y101{bottom:308.455500px;}
.y261{bottom:309.820500px;}
.y100{bottom:311.253000px;}
.y169{bottom:311.503500px;}
.y2b{bottom:315.018000px;}
.yb5{bottom:315.603954px;}
.y150{bottom:316.090116px;}
.yd5{bottom:317.458498px;}
.y1ab{bottom:317.973531px;}
.y1d0{bottom:320.433000px;}
.y248{bottom:321.999000px;}
.y207{bottom:322.705500px;}
.y1cf{bottom:323.230500px;}
.y119{bottom:325.551600px;}
.y73{bottom:328.213500px;}
.y260{bottom:329.188500px;}
.yff{bottom:331.516500px;}
.y168{bottom:331.767000px;}
.y2a{bottom:335.283000px;}
.y175{bottom:335.563498px;}
.yb4{bottom:335.853873px;}
.y14f{bottom:336.249855px;}
.yd4{bottom:336.358501px;}
.y1aa{bottom:338.223531px;}
.y247{bottom:341.367000px;}
.y206{bottom:342.073500px;}
.y1ce{bottom:343.494000px;}
.y72{bottom:348.478500px;}
.yfe{bottom:351.780000px;}
.y167{bottom:352.032000px;}
.yd3{bottom:355.438508px;}
.y29{bottom:355.546500px;}
.yb3{bottom:356.103792px;}
.y14e{bottom:356.499774px;}
.y1a9{bottom:358.473531px;}
.y246{bottom:360.733500px;}
.y205{bottom:361.440000px;}
.y1cd{bottom:363.759000px;}
.y70{bottom:368.742000px;}
.yfd{bottom:372.045000px;}
.y71{bottom:374.166000px;}
.yd2{bottom:374.338494px;}
.y28{bottom:375.810000px;}
.yb2{bottom:376.263531px;}
.y14d{bottom:376.749693px;}
.y25f{bottom:377.413500px;}
.y1a8{bottom:378.723909px;}
.y245{bottom:380.101500px;}
.y204{bottom:380.808000px;}
.y1cc{bottom:381.225000px;}
.y1cb{bottom:384.022500px;}
.y6f{bottom:386.209500px;}
.y166{bottom:387.031500px;}
.y6e{bottom:389.005500px;}
.yfc{bottom:389.511000px;}
.yfb{bottom:392.308500px;}
.y27{bottom:396.075000px;}
.yb1{bottom:396.513612px;}
.y244{bottom:396.781500px;}
.y14c{bottom:396.999612px;}
.y1a7{bottom:398.973828px;}
.y243{bottom:399.468000px;}
.y203{bottom:400.174500px;}
.y202{bottom:400.176000px;}
.y242{bottom:402.696000px;}
.y1ca{bottom:404.286000px;}
.y165{bottom:406.264500px;}
.y6d{bottom:406.473000px;}
.y6c{bottom:409.270500px;}
.yd1{bottom:411.778502px;}
.yfa{bottom:412.573500px;}
.yb0{bottom:416.763531px;}
.y14b{bottom:417.249531px;}
.y241{bottom:418.836000px;}
.y1a6{bottom:419.133567px;}
.y26{bottom:425.305500px;}
.y201{bottom:428.509500px;}
.y141{bottom:428.694000px;}
.y6b{bottom:429.534000px;}
.yf9{bottom:432.837000px;}
.yaf{bottom:437.013450px;}
.y14a{bottom:437.500035px;}
.y240{bottom:438.204000px;}
.y1c9{bottom:439.287000px;}
.ycf{bottom:446.878498px;}
.y1a5{bottom:448.383450px;}
.y6a{bottom:449.799000px;}
.yf8{bottom:453.100500px;}
.y23f{bottom:454.884000px;}
.y23e{bottom:457.570500px;}
.y149{bottom:457.749954px;}
.y1c8{bottom:458.520000px;}
.y200{bottom:467.961000px;}
.y69{bottom:470.062500px;}
.yf7{bottom:473.365500px;}
.yae{bottom:476.343000px;}
.y23d{bottom:476.938500px;}
.y1c7{bottom:477.753000px;}
.y148{bottom:477.909693px;}
.y1a4{bottom:486.183450px;}
.y68{bottom:490.326000px;}
.y1ff{bottom:492.126000px;}
.y25e{bottom:493.618500px;}
.yad{bottom:494.523900px;}
.y23c{bottom:496.305000px;}
.y1c6{bottom:496.986000px;}
.y147{bottom:498.159612px;}
.y19f{bottom:500.970000px;}
.y25{bottom:501.721500px;}
.yf6{bottom:506.490000px;}
.y1fe{bottom:507.324000px;}
.y67{bottom:510.591000px;}
.yac{bottom:512.793450px;}
.y23b{bottom:515.673000px;}
.y1a3{bottom:517.323450px;}
.y146{bottom:518.409531px;}
.y19e{bottom:518.437500px;}
.y19d{bottom:521.233500px;}
.y1fd{bottom:522.522000px;}
.yf5{bottom:525.723000px;}
.y66{bottom:528.057000px;}
.y99{bottom:529.779000px;}
.y65{bottom:530.854500px;}
.yab{bottom:530.973450px;}
.y25d{bottom:532.353000px;}
.y23a{bottom:535.041000px;}
.y145{bottom:538.659450px;}
.y19c{bottom:538.701000px;}
.y24{bottom:539.917500px;}
.y1fc{bottom:540.148500px;}
.y19b{bottom:541.498500px;}
.yce{bottom:548.152500px;}
.yaa{bottom:549.963450px;}
.y98{bottom:550.042500px;}
.y64{bottom:551.119500px;}
.y239{bottom:551.721000px;}
.y238{bottom:554.407500px;}
.y23{bottom:557.385000px;}
.y237{bottom:557.635500px;}
.y19a{bottom:558.964500px;}
.ya9{bottom:559.413000px;}
.y22{bottom:560.182500px;}
.y199{bottom:561.762000px;}
.y1fb{bottom:564.313500px;}
.y97{bottom:570.306000px;}
.y63{bottom:571.383000px;}
.y236{bottom:573.775500px;}
.y21{bottom:577.648500px;}
.y1fa{bottom:579.511500px;}
.y20{bottom:580.446000px;}
.y144{bottom:581.049900px;}
.y198{bottom:582.027000px;}
.y25c{bottom:590.455500px;}
.y96{bottom:590.571000px;}
.y62{bottom:591.646500px;}
.y235{bottom:593.142000px;}
.y1f9{bottom:597.138000px;}
.ya8{bottom:597.573450px;}
.y1f{bottom:597.913500px;}
.y1e{bottom:600.711000px;}
.y197{bottom:602.290500px;}
.y95{bottom:608.037000px;}
.y234{bottom:609.822000px;}
.y94{bottom:610.834500px;}
.y1f8{bottom:612.336000px;}
.y233{bottom:612.510000px;}
.y142{bottom:619.929450px;}
.y61{bottom:620.877000px;}
.y1d{bottom:620.974500px;}
.y1f7{bottom:627.534000px;}
.y93{bottom:631.099500px;}
.y196{bottom:631.521000px;}
.y232{bottom:631.878000px;}
.ya7{bottom:635.553531px;}
.y1c{bottom:641.238000px;}
.y92{bottom:648.565500px;}
.y231{bottom:651.244500px;}
.y91{bottom:651.363000px;}
.y1f6{bottom:654.127500px;}
.y60{bottom:655.696500px;}
.ya6{bottom:655.803792px;}
.y1b{bottom:658.705500px;}
.y1a{bottom:661.503000px;}
.y195{bottom:666.340500px;}
.y230{bottom:670.612500px;}
.ya5{bottom:675.963531px;}
.y19{bottom:678.969000px;}
.y18{bottom:681.766500px;}
.y194{bottom:683.808000px;}
.y118{bottom:684.127950px;}
.y193{bottom:686.604000px;}
.y1f5{bottom:687.258000px;}
.y22f{bottom:687.292500px;}
.y22e{bottom:689.979000px;}
.y5f{bottom:690.516000px;}
.ya4{bottom:696.213531px;}
.y90{bottom:698.617500px;}
.y117{bottom:704.355450px;}
.y1f4{bottom:704.725500px;}
.y25b{bottom:706.659000px;}
.y192{bottom:706.869000px;}
.y1f3{bottom:707.523000px;}
.y22d{bottom:709.347000px;}
.y5e{bottom:710.781000px;}
.y8f{bottom:715.413000px;}
.ya3{bottom:716.463531px;}
.y15{bottom:717.199464px;}
.y14{bottom:717.966000px;}
.y191{bottom:724.335000px;}
.y116{bottom:724.582500px;}
.y1f2{bottom:724.990500px;}
.y190{bottom:727.132500px;}
.y1f1{bottom:727.786500px;}
.y5d{bottom:728.247000px;}
.y22c{bottom:728.715000px;}
.y5c{bottom:731.044500px;}
.y8e{bottom:732.208500px;}
.ya2{bottom:736.713567px;}
.y1f0{bottom:745.254000px;}
.y18e{bottom:747.397500px;}
.y1ef{bottom:748.051500px;}
.y22b{bottom:748.081500px;}
.y5b{bottom:748.512000px;}
.y8d{bottom:749.004000px;}
.y5a{bottom:751.308000px;}
.y18f{bottom:752.821500px;}
.y13{bottom:756.970500px;}
.y140{bottom:759.604500px;}
.y115{bottom:761.691450px;}
.y22a{bottom:764.761500px;}
.y18d{bottom:764.863500px;}
.y1ee{bottom:765.517500px;}
.ya1{bottom:765.964134px;}
.y229{bottom:767.449500px;}
.y18c{bottom:767.661000px;}
.y1ed{bottom:768.315000px;}
.y59{bottom:771.573000px;}
.y8c{bottom:773.649000px;}
.y12{bottom:775.128000px;}
.y13f{bottom:779.869500px;}
.y18b{bottom:785.128500px;}
.y1ec{bottom:785.782500px;}
.y8b{bottom:786.240000px;}
.y228{bottom:786.816000px;}
.y18a{bottom:787.924500px;}
.y1eb{bottom:788.578500px;}
.y58{bottom:789.039000px;}
.y57{bottom:791.836500px;}
.y11{bottom:798.168000px;}
.y13e{bottom:800.133000px;}
.y227{bottom:803.496000px;}
.ya0{bottom:804.213981px;}
.y226{bottom:806.184000px;}
.y1ea{bottom:808.843500px;}
.y56{bottom:809.304000px;}
.y10{bottom:811.441500px;}
.y55{bottom:812.101500px;}
.y13d{bottom:820.396500px;}
.y189{bottom:822.925500px;}
.y225{bottom:825.552000px;}
.y1e9{bottom:826.309500px;}
.y1e8{bottom:829.107000px;}
.y8a{bottom:829.266000px;}
.y54{bottom:832.365000px;}
.yf{bottom:834.481500px;}
.y13c{bottom:840.661500px;}
.y9f{bottom:842.463828px;}
.y1c5{bottom:843.663000px;}
.y224{bottom:844.918500px;}
.y174{bottom:845.355000px;}
.ye{bottom:847.756500px;}
.y1e7{bottom:849.372000px;}
.y53{bottom:849.832500px;}
.y52{bottom:852.628500px;}
.yd{bottom:852.639000px;}
.y13b{bottom:860.925000px;}
.ycd{bottom:861.106500px;}
.y1c4{bottom:861.129000px;}
.y223{bottom:861.598500px;}
.y9e{bottom:862.623567px;}
.y1c3{bottom:863.926500px;}
.y222{bottom:864.286500px;}
.yc{bottom:865.912500px;}
.y89{bottom:866.377500px;}
.y1e6{bottom:869.635500px;}
.y51{bottom:870.096000px;}
.y50{bottom:872.893500px;}
.y1a1{bottom:874.533450px;}
.y13a{bottom:878.392500px;}
.y139{bottom:881.190000px;}
.ycc{bottom:881.371500px;}
.y221{bottom:883.653000px;}
.y88{bottom:883.845000px;}
.y1c2{bottom:884.191500px;}
.y87{bottom:886.642500px;}
.yb{bottom:888.952500px;}
.y1e5{bottom:889.899000px;}
.y9d{bottom:891.873450px;}
.y4f{bottom:893.157000px;}
.ycb{bottom:898.837500px;}
.y25a{bottom:900.333000px;}
.y138{bottom:901.453500px;}
.yca{bottom:901.635000px;}
.y1c1{bottom:901.657500px;}
.ya{bottom:902.227500px;}
.y220{bottom:903.021000px;}
.y1c0{bottom:904.455000px;}
.y86{bottom:906.906000px;}
.y1e4{bottom:907.366500px;}
.y1e3{bottom:910.164000px;}
.y4e{bottom:910.624500px;}
.y4d{bottom:913.422000px;}
.y137{bottom:921.717000px;}
.yc8{bottom:921.900000px;}
.y21f{bottom:922.389000px;}
.y85{bottom:924.373500px;}
.y1bf{bottom:924.718500px;}
.y9{bottom:925.266000px;}
.y84{bottom:927.169500px;}
.yc9{bottom:927.324000px;}
.y9b{bottom:929.223450px;}
.y1e2{bottom:930.427500px;}
.y4c{bottom:933.685500px;}
.y259{bottom:939.069000px;}
.yc7{bottom:939.366000px;}
.y21e{bottom:941.755500px;}
.y136{bottom:941.982000px;}
.yc6{bottom:942.163500px;}
.y83{bottom:944.637000px;}
.y1be{bottom:944.983500px;}
.y82{bottom:947.434500px;}
.y8{bottom:947.508000px;}
.y1e1{bottom:947.895000px;}
.y1e0{bottom:950.692500px;}
.y4b{bottom:951.153000px;}
.y4a{bottom:953.949000px;}
.y21d{bottom:961.123500px;}
.y135{bottom:962.245500px;}
.y81{bottom:964.900500px;}
.y1bd{bottom:965.247000px;}
.y80{bottom:967.698000px;}
.y7{bottom:967.771500px;}
.y1df{bottom:970.956000px;}
.y113{bottom:971.416500px;}
.y49{bottom:974.214000px;}
.y21c{bottom:977.803500px;}
.y21b{bottom:980.490000px;}
.y134{bottom:982.510500px;}
.y1bc{bottom:985.512000px;}
.yc5{bottom:987.541500px;}
.y48{bottom:991.680000px;}
.y47{bottom:994.477500px;}
.y7f{bottom:996.928500px;}
.y258{bottom:997.170000px;}
.y21a{bottom:999.858000px;}
.y1de{bottom:1000.186500px;}
.yc4{bottom:1004.337000px;}
.y1bb{bottom:1005.775500px;}
.y6{bottom:1010.451000px;}
.y46{bottom:1014.742500px;}
.y219{bottom:1019.226000px;}
.yc3{bottom:1021.132500px;}
.y1ba{bottom:1023.243000px;}
.y1b9{bottom:1026.039000px;}
.y133{bottom:1029.406500px;}
.y7e{bottom:1031.748000px;}
.y45{bottom:1032.208500px;}
.y44{bottom:1035.006000px;}
.yc2{bottom:1037.928000px;}
.y218{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y132{bottom:1045.845000px;}
.y1b8{bottom:1046.304000px;}
.y43{bottom:1052.473500px;}
.y42{bottom:1055.269500px;}
.y257{bottom:1055.272500px;}
.y217{bottom:1057.960500px;}
.y112{bottom:1060.695000px;}
.yc1{bottom:1061.926500px;}
.y7d{bottom:1066.567500px;}
.y130{bottom:1069.485000px;}
.y4{bottom:1071.244500px;}
.yc0{bottom:1074.517500px;}
.y41{bottom:1075.534500px;}
.y216{bottom:1077.327000px;}
.y12f{bottom:1077.705000px;}
.y1b7{bottom:1084.035000px;}
.y131{bottom:1085.923500px;}
.y7c{bottom:1086.832500px;}
.y40{bottom:1093.000500px;}
.y215{bottom:1094.007000px;}
.y3f{bottom:1095.798000px;}
.y214{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y1dd{bottom:1113.265500px;}
.y213{bottom:1113.375000px;}
.y3e{bottom:1116.063000px;}
.ybf{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y3d{bottom:1168.366500px;}
.hd{height:25.508090px;}
.h16{height:27.439478px;}
.hf{height:33.112997px;}
.he{height:34.199443px;}
.h28{height:35.177628px;}
.h1c{height:35.991211px;}
.h14{height:36.104462px;}
.h35{height:37.927872px;}
.h9{height:37.993262px;}
.hb{height:38.412058px;}
.h32{height:41.092953px;}
.h25{height:41.245164px;}
.h12{height:41.250077px;}
.h27{height:42.099430px;}
.h1d{height:43.269961px;}
.h13{height:43.468925px;}
.h4{height:43.815515px;}
.h1b{height:44.536816px;}
.h2b{height:47.126147px;}
.h15{height:47.294462px;}
.ha{height:48.848947px;}
.hc{height:48.902746px;}
.h1f{height:50.229492px;}
.h21{height:50.231292px;}
.h2{height:50.930649px;}
.h29{height:52.153282px;}
.h19{height:53.545105px;}
.h11{height:54.276245px;}
.h10{height:54.336020px;}
.h1e{height:55.922168px;}
.h2d{height:55.923968px;}
.h34{height:61.760947px;}
.h2a{height:62.835002px;}
.h17{height:62.952077px;}
.h8{height:62.991506px;}
.h6{height:62.997506px;}
.h22{height:66.972656px;}
.h7{height:67.722020px;}
.h2f{height:81.776746px;}
.h20{height:88.029492px;}
.h24{height:94.526746px;}
.h18{height:94.532746px;}
.h23{height:96.244652px;}
.h5{height:97.805491px;}
.h2e{height:99.207492px;}
.h3{height:99.941241px;}
.h31{height:285.652500px;}
.h26{height:291.183000px;}
.h1a{height:298.417500px;}
.h33{height:307.180500px;}
.h30{height:307.263000px;}
.h2c{height:638.541000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.822293px;}
.w5{width:312.679500px;}
.w4{width:316.473000px;}
.w9{width:341.212500px;}
.w7{width:343.986000px;}
.w8{width:354.184500px;}
.w6{width:653.766450px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7b{left:-178.350000px;}
.xda{left:-162.183000px;}
.xf7{left:-158.308500px;}
.x9b{left:-156.517502px;}
.x7e{left:-153.059550px;}
.x82{left:-149.460450px;}
.x7c{left:-146.489406px;}
.x86{left:-140.280000px;}
.x81{left:-134.970000px;}
.xdb{left:-130.323000px;}
.x9d{left:-126.637506px;}
.x80{left:-125.340000px;}
.xe2{left:-120.343502px;}
.x9c{left:-116.737502px;}
.x8a{left:-109.410000px;}
.x7d{left:-99.690000px;}
.xe5{left:-90.463506px;}
.x85{left:-88.529100px;}
.x7f{left:-36.510000px;}
.xf8{left:-27.448500px;}
.xc4{left:-17.992050px;}
.xbb{left:-14.122050px;}
.x84{left:-7.980000px;}
.x0{left:0.000000px;}
.xe4{left:2.596496px;}
.xc0{left:21.157950px;}
.xc3{left:25.286880px;}
.xa{left:29.274117px;}
.xbd{left:31.147950px;}
.xc2{left:41.317950px;}
.xc1{left:52.027950px;}
.x2{left:57.551633px;}
.xbf{left:84.972450px;}
.xc5{left:104.857950px;}
.x10d{left:112.113000px;}
.x1{left:114.802500px;}
.x87{left:115.859757px;}
.xba{left:119.573550px;}
.x8{left:122.110500px;}
.x4{left:123.306000px;}
.xbc{left:142.927950px;}
.x5{left:146.170500px;}
.xd4{left:148.765500px;}
.x73{left:151.228500px;}
.x74{left:154.546500px;}
.x96{left:162.520500px;}
.x63{left:165.903000px;}
.x34{left:169.824000px;}
.x59{left:171.631500px;}
.x22{left:172.800000px;}
.x4d{left:174.126000px;}
.x128{left:175.506000px;}
.x45{left:178.158000px;}
.x23{left:180.273000px;}
.xd0{left:181.429500px;}
.x14{left:183.046500px;}
.x4e{left:184.266000px;}
.x24{left:187.894500px;}
.xb{left:188.952000px;}
.x16{left:191.292000px;}
.x15{left:193.231500px;}
.x25{left:195.366000px;}
.x107{left:197.425500px;}
.x17{left:198.763500px;}
.x6c{left:199.845000px;}
.x8e{left:203.148000px;}
.x9f{left:204.493500px;}
.x18{left:206.385000px;}
.x3b{left:207.595500px;}
.x6d{left:209.839500px;}
.xff{left:211.036500px;}
.x19{left:213.858000px;}
.xce{left:215.671500px;}
.x8d{left:217.533000px;}
.x97{left:220.539000px;}
.x3c{left:222.538500px;}
.x12f{left:224.580000px;}
.x8c{left:226.933500px;}
.xea{left:228.501000px;}
.x98{left:230.442000px;}
.x131{left:231.540000px;}
.xb4{left:233.001000px;}
.xd5{left:235.026000px;}
.xcf{left:237.096000px;}
.x113{left:241.408500px;}
.xd6{left:246.102000px;}
.xc{left:248.631000px;}
.x5a{left:250.302000px;}
.x132{left:251.667000px;}
.x10b{left:253.801500px;}
.x1c{left:256.578000px;}
.xd{left:258.786000px;}
.x1d{left:263.004000px;}
.x66{left:264.049500px;}
.x108{left:265.596000px;}
.x133{left:267.238500px;}
.xe1{left:269.365500px;}
.x11a{left:271.308000px;}
.xbe{left:272.716950px;}
.xf5{left:273.735000px;}
.x47{left:275.433000px;}
.x11b{left:278.032500px;}
.xae{left:280.020000px;}
.x2d{left:282.564000px;}
.xa8{left:283.935000px;}
.x48{left:285.733500px;}
.x7a{left:288.220500px;}
.x9a{left:290.118000px;}
.x2e{left:294.223500px;}
.x10c{left:295.639500px;}
.xb9{left:296.656500px;}
.xa9{left:298.879500px;}
.x100{left:300.579000px;}
.x89{left:302.430000px;}
.xc6{left:304.198950px;}
.xdf{left:307.794000px;}
.x88{left:312.150054px;}
.x10a{left:313.527000px;}
.x9e{left:314.902473px;}
.x83{left:316.380000px;}
.xc8{left:317.650500px;}
.xdd{left:321.055500px;}
.xc9{left:324.375000px;}
.x99{left:326.038500px;}
.xde{left:327.481500px;}
.x110{left:330.943500px;}
.xa2{left:332.694000px;}
.xc7{left:334.884450px;}
.xd7{left:337.393500px;}
.x5d{left:339.934500px;}
.x111{left:341.673000px;}
.xf9{left:343.261500px;}
.xfb{left:344.509500px;}
.xa3{left:347.638500px;}
.x101{left:349.174500px;}
.xe6{left:351.076473px;}
.xd8{left:352.336500px;}
.x5e{left:354.877500px;}
.xd9{left:356.083500px;}
.x78{left:357.202500px;}
.x1e{left:359.323500px;}
.x79{left:363.628500px;}
.xaf{left:364.668000px;}
.xd1{left:368.463000px;}
.x1f{left:369.468000px;}
.x2f{left:370.861500px;}
.x114{left:371.986500px;}
.x5f{left:373.617000px;}
.x30{left:377.287500px;}
.x115{left:378.711000px;}
.xb0{left:380.032500px;}
.xdc{left:386.722500px;}
.xeb{left:390.702000px;}
.x31{left:392.995500px;}
.xca{left:394.426500px;}
.x104{left:399.432000px;}
.x4f{left:401.175000px;}
.xcb{left:402.643500px;}
.xec{left:405.784500px;}
.x5c{left:408.558000px;}
.xe3{left:410.296489px;}
.x50{left:411.360000px;}
.x11e{left:417.654000px;}
.xed{left:420.727500px;}
.x92{left:422.281500px;}
.x3f{left:423.705000px;}
.x68{left:427.561500px;}
.x40{left:430.131000px;}
.xa0{left:435.321000px;}
.x69{left:439.125000px;}
.xef{left:440.241000px;}
.x93{left:443.722500px;}
.x75{left:444.819000px;}
.xf0{left:447.211500px;}
.x94{left:448.729500px;}
.x3{left:449.754000px;}
.x6e{left:450.756000px;}
.xfd{left:452.707500px;}
.x6f{left:457.180500px;}
.x1a{left:459.706500px;}
.x5b{left:462.753000px;}
.xfe{left:466.476000px;}
.x95{left:467.817000px;}
.x1b{left:471.906000px;}
.xb1{left:474.966000px;}
.x8f{left:476.029500px;}
.xfa{left:477.060000px;}
.x11c{left:479.472000px;}
.x109{left:481.101000px;}
.x90{left:482.455500px;}
.xcc{left:486.748500px;}
.xb2{left:489.910500px;}
.xf1{left:491.613000px;}
.xcd{left:492.720000px;}
.xb5{left:494.815500px;}
.xe0{left:496.471500px;}
.xf2{left:501.697500px;}
.xb6{left:505.548000px;}
.x35{left:506.869500px;}
.x20{left:509.910000px;}
.x129{left:515.166000px;}
.x21{left:516.336000px;}
.x127{left:517.713000px;}
.x70{left:519.295500px;}
.x4c{left:520.452000px;}
.x36{left:521.814000px;}
.xd2{left:523.356000px;}
.x12a{left:524.496000px;}
.x12{left:528.651000px;}
.x6a{left:529.867500px;}
.x13{left:535.077000px;}
.x26{left:536.124000px;}
.x46{left:537.418500px;}
.xf3{left:539.082000px;}
.x6b{left:541.431000px;}
.xfc{left:542.647500px;}
.xf4{left:545.508000px;}
.x6{left:546.588000px;}
.x116{left:548.662500px;}
.x8b{left:551.662500px;}
.x67{left:553.077000px;}
.x117{left:555.387000px;}
.x7{left:556.671000px;}
.x76{left:564.420000px;}
.x32{left:568.464000px;}
.x102{left:570.078000px;}
.x77{left:574.569000px;}
.xf6{left:578.241000px;}
.x4a{left:582.250500px;}
.x33{left:583.408500px;}
.x103{left:585.021000px;}
.x120{left:587.236500px;}
.x64{left:588.763500px;}
.x121{left:593.214000px;}
.x4b{left:594.544500px;}
.xe8{left:598.432500px;}
.xa1{left:600.801000px;}
.x65{left:603.708000px;}
.x71{left:605.502000px;}
.x60{left:607.915500px;}
.x12c{left:609.111000px;}
.x51{left:612.675000px;}
.x72{left:615.664500px;}
.x12b{left:617.194500px;}
.xe9{left:618.253500px;}
.x52{left:622.672500px;}
.xd3{left:624.828000px;}
.x61{left:626.655000px;}
.x130{left:628.188000px;}
.xee{left:631.563000px;}
.x91{left:633.636000px;}
.xe{left:637.270500px;}
.x2b{left:640.290000px;}
.x62{left:641.598000px;}
.x12d{left:642.873000px;}
.xf{left:647.449500px;}
.x2c{left:649.825500px;}
.x12e{left:652.162500px;}
.x105{left:653.695500px;}
.x124{left:655.552500px;}
.x37{left:659.427000px;}
.x10e{left:661.360500px;}
.x106{left:664.321500px;}
.x53{left:665.497500px;}
.x125{left:666.952500px;}
.x54{left:671.923500px;}
.x126{left:672.930000px;}
.x38{left:674.370000px;}
.x55{left:676.800000px;}
.x39{left:678.141000px;}
.xaa{left:683.794500px;}
.xb3{left:685.020000px;}
.x56{left:686.961000px;}
.x11d{left:689.346000px;}
.x3a{left:693.084000px;}
.xab{left:694.894500px;}
.xa4{left:697.198500px;}
.xb7{left:699.552000px;}
.x9{left:701.339982px;}
.x123{left:702.678000px;}
.xe7{left:703.876500px;}
.x57{left:706.468500px;}
.x41{left:708.975000px;}
.x119{left:710.821500px;}
.x58{left:712.894500px;}
.xb8{left:717.882000px;}
.x42{left:721.305000px;}
.x122{left:723.105000px;}
.x43{left:726.381000px;}
.x3d{left:728.044500px;}
.x112{left:729.600000px;}
.x3e{left:734.470500px;}
.x49{left:736.092000px;}
.x27{left:738.141000px;}
.x10{left:739.599000px;}
.x44{left:741.325500px;}
.x118{left:745.387500px;}
.xa6{left:747.078000px;}
.x11f{left:749.709000px;}
.x11{left:751.314000px;}
.x28{left:753.084000px;}
.x29{left:756.895500px;}
.x10f{left:758.574000px;}
.xa5{left:762.745500px;}
.xa7{left:764.829000px;}
.xac{left:769.741500px;}
.x2a{left:771.838500px;}
.xad{left:776.167500px;}
@media print{
.v4{vertical-align:-17.360000pt;}
.v1{vertical-align:-14.346667pt;}
.v9{vertical-align:-12.037333pt;}
.v5{vertical-align:-9.941333pt;}
.v8{vertical-align:-3.573333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.946667pt;}
.v3{vertical-align:11.898667pt;}
.vd{vertical-align:12.799988pt;}
.va{vertical-align:13.786667pt;}
.v2{vertical-align:19.290667pt;}
.vf{vertical-align:29.221333pt;}
.vb{vertical-align:33.600000pt;}
.vc{vertical-align:35.842208pt;}
.v7{vertical-align:40.560000pt;}
.ve{vertical-align:43.536000pt;}
.ls59{letter-spacing:-0.320896pt;}
.lsa6{letter-spacing:-0.277888pt;}
.ls9a{letter-spacing:-0.251168pt;}
.ls53{letter-spacing:-0.240480pt;}
.lsa5{letter-spacing:-0.208416pt;}
.ls61{letter-spacing:-0.192384pt;}
.lsa4{letter-spacing:-0.154976pt;}
.ls63{letter-spacing:-0.138944pt;}
.ls4e{letter-spacing:-0.133600pt;}
.ls5e{letter-spacing:-0.122912pt;}
.ls5f{letter-spacing:-0.112224pt;}
.ls85{letter-spacing:-0.112000pt;}
.ls50{letter-spacing:-0.101536pt;}
.ls55{letter-spacing:-0.100800pt;}
.ls97{letter-spacing:-0.096192pt;}
.ls48{letter-spacing:-0.080864pt;}
.ls51{letter-spacing:-0.080160pt;}
.ls56{letter-spacing:-0.076544pt;}
.ls5d{letter-spacing:-0.074816pt;}
.ls99{letter-spacing:-0.064128pt;}
.ls4d{letter-spacing:-0.058784pt;}
.ls86{letter-spacing:-0.057600pt;}
.ls8d{letter-spacing:-0.052800pt;}
.ls4c{letter-spacing:-0.048096pt;}
.lsa7{letter-spacing:-0.042752pt;}
.ls4a{letter-spacing:-0.037408pt;}
.ls5c{letter-spacing:-0.032064pt;}
.ls96{letter-spacing:-0.026720pt;}
.ls87{letter-spacing:-0.024000pt;}
.ls4b{letter-spacing:-0.021376pt;}
.ls8e{letter-spacing:-0.019200pt;}
.ls49{letter-spacing:-0.016032pt;}
.ls84{letter-spacing:-0.016000pt;}
.ls88{letter-spacing:-0.014400pt;}
.ls52{letter-spacing:-0.010688pt;}
.ls89{letter-spacing:-0.009600pt;}
.ls5a{letter-spacing:-0.005344pt;}
.ls54{letter-spacing:-0.004800pt;}
.ls12{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.000267pt;}
.lsc5{letter-spacing:0.000298pt;}
.lsbb{letter-spacing:0.000523pt;}
.lsb3{letter-spacing:0.000533pt;}
.lsbe{letter-spacing:0.000600pt;}
.ls14{letter-spacing:0.000745pt;}
.ls1c{letter-spacing:0.000765pt;}
.lsaa{letter-spacing:0.000915pt;}
.lsb9{letter-spacing:0.000921pt;}
.lsaf{letter-spacing:0.000998pt;}
.ls15{letter-spacing:0.001002pt;}
.ls73{letter-spacing:0.001067pt;}
.lse{letter-spacing:0.001349pt;}
.lsa{letter-spacing:0.001399pt;}
.lsc2{letter-spacing:0.001453pt;}
.lsa8{letter-spacing:0.001576pt;}
.ls1a{letter-spacing:0.001667pt;}
.ls1e{letter-spacing:0.001852pt;}
.ls69{letter-spacing:0.001867pt;}
.lsd{letter-spacing:0.002134pt;}
.ls95{letter-spacing:0.002514pt;}
.lsb4{letter-spacing:0.002815pt;}
.lsc{letter-spacing:0.002868pt;}
.lsab{letter-spacing:0.002966pt;}
.ls91{letter-spacing:0.003017pt;}
.ls11{letter-spacing:0.003100pt;}
.lsb{letter-spacing:0.003106pt;}
.lsad{letter-spacing:0.003166pt;}
.ls1f{letter-spacing:0.003198pt;}
.ls6b{letter-spacing:0.003409pt;}
.ls23{letter-spacing:0.003430pt;}
.ls17{letter-spacing:0.003914pt;}
.ls94{letter-spacing:0.003974pt;}
.lsac{letter-spacing:0.004130pt;}
.lsb8{letter-spacing:0.004267pt;}
.ls76{letter-spacing:0.004772pt;}
.ls3b{letter-spacing:0.004800pt;}
.ls6a{letter-spacing:0.005071pt;}
.ls93{letter-spacing:0.005344pt;}
.lsa0{letter-spacing:0.009600pt;}
.ls43{letter-spacing:0.010688pt;}
.ls57{letter-spacing:0.014400pt;}
.ls35{letter-spacing:0.016032pt;}
.ls3c{letter-spacing:0.019200pt;}
.ls45{letter-spacing:0.021376pt;}
.ls46{letter-spacing:0.024000pt;}
.ls36{letter-spacing:0.026720pt;}
.ls40{letter-spacing:0.028800pt;}
.ls31{letter-spacing:0.029792pt;}
.ls92{letter-spacing:0.032064pt;}
.ls77{letter-spacing:0.037333pt;}
.ls34{letter-spacing:0.037408pt;}
.ls2f{letter-spacing:0.038304pt;}
.ls3d{letter-spacing:0.038400pt;}
.ls37{letter-spacing:0.042752pt;}
.ls9f{letter-spacing:0.043200pt;}
.ls7f{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.048096pt;}
.ls7a{letter-spacing:0.052800pt;}
.ls33{letter-spacing:0.053440pt;}
.ls3f{letter-spacing:0.057600pt;}
.ls42{letter-spacing:0.058784pt;}
.ls83{letter-spacing:0.064000pt;}
.ls41{letter-spacing:0.064128pt;}
.ls3e{letter-spacing:0.067200pt;}
.lsa2{letter-spacing:0.069472pt;}
.lsa3{letter-spacing:0.074816pt;}
.ls5b{letter-spacing:0.080160pt;}
.ls60{letter-spacing:0.085504pt;}
.ls8b{letter-spacing:0.090848pt;}
.ls78{letter-spacing:0.096000pt;}
.ls62{letter-spacing:0.101536pt;}
.ls98{letter-spacing:0.106880pt;}
.ls47{letter-spacing:0.117568pt;}
.ls39{letter-spacing:0.122912pt;}
.ls38{letter-spacing:0.128256pt;}
.ls79{letter-spacing:0.144000pt;}
.ls8c{letter-spacing:0.144288pt;}
.ls8a{letter-spacing:0.149632pt;}
.ls32{letter-spacing:0.153216pt;}
.ls58{letter-spacing:0.158400pt;}
.ls44{letter-spacing:0.160320pt;}
.ls30{letter-spacing:0.161728pt;}
.ls6d{letter-spacing:0.348340pt;}
.ls6f{letter-spacing:0.348344pt;}
.ls70{letter-spacing:0.348464pt;}
.ls6c{letter-spacing:0.348468pt;}
.ls71{letter-spacing:0.348584pt;}
.ls6e{letter-spacing:0.348588pt;}
.lsae{letter-spacing:0.478097pt;}
.ls9c{letter-spacing:0.848593pt;}
.ls13{letter-spacing:1.133683pt;}
.ls9{letter-spacing:1.654338pt;}
.ls18{letter-spacing:2.656284pt;}
.ls20{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls4f{letter-spacing:5.199712pt;}
.ls9b{letter-spacing:5.460320pt;}
.lsa1{letter-spacing:5.840992pt;}
.ls10{letter-spacing:10.626533pt;}
.lsc3{letter-spacing:11.753174pt;}
.lsb5{letter-spacing:11.758429pt;}
.lsc6{letter-spacing:11.951931pt;}
.lsb0{letter-spacing:11.954133pt;}
.ls64{letter-spacing:11.955635pt;}
.ls65{letter-spacing:11.956898pt;}
.lsb1{letter-spacing:11.959467pt;}
.lsb2{letter-spacing:12.050176pt;}
.lsbd{letter-spacing:12.101768pt;}
.lsb7{letter-spacing:12.177188pt;}
.ls90{letter-spacing:12.220789pt;}
.ls2a{letter-spacing:13.122340pt;}
.ls29{letter-spacing:13.122745pt;}
.ls28{letter-spacing:13.125296pt;}
.ls2c{letter-spacing:13.125504pt;}
.ls2b{letter-spacing:13.128015pt;}
.ls27{letter-spacing:13.253750pt;}
.ls9d{letter-spacing:13.275212pt;}
.ls2e{letter-spacing:13.281183pt;}
.ls1b{letter-spacing:13.281404pt;}
.ls6{letter-spacing:13.282422pt;}
.ls2d{letter-spacing:13.283230pt;}
.ls26{letter-spacing:13.283467pt;}
.ls1{letter-spacing:13.283733pt;}
.ls19{letter-spacing:13.285443pt;}
.lsb6{letter-spacing:14.613867pt;}
.lsbf{letter-spacing:15.093166pt;}
.ls9e{letter-spacing:15.665067pt;}
.ls75{letter-spacing:15.899733pt;}
.lsf{letter-spacing:15.937067pt;}
.ls5{letter-spacing:15.942400pt;}
.ls16{letter-spacing:15.985067pt;}
.lsc4{letter-spacing:16.732800pt;}
.lsba{letter-spacing:16.738133pt;}
.lsbc{letter-spacing:16.997181pt;}
.ls72{letter-spacing:17.481042pt;}
.ls1d{letter-spacing:17.906113pt;}
.lsa9{letter-spacing:18.703121pt;}
.lsc1{letter-spacing:19.082708pt;}
.ls0{letter-spacing:26.563200pt;}
.lsc0{letter-spacing:34.084016pt;}
.ls4{letter-spacing:51.035733pt;}
.ls7{letter-spacing:62.432533pt;}
.ls8{letter-spacing:64.314231pt;}
.ls82{letter-spacing:150.037867pt;}
.ls21{letter-spacing:188.086340pt;}
.ls81{letter-spacing:201.184533pt;}
.ls80{letter-spacing:234.608533pt;}
.ls8f{letter-spacing:240.608533pt;}
.ls7d{letter-spacing:279.037333pt;}
.ls7e{letter-spacing:279.037867pt;}
.ls7c{letter-spacing:336.320533pt;}
.ls25{letter-spacing:358.533867pt;}
.ls7b{letter-spacing:374.721600pt;}
.ls24{letter-spacing:409.675200pt;}
.ls68{letter-spacing:435.328533pt;}
.ls22{letter-spacing:476.987200pt;}
.ls67{letter-spacing:486.469867pt;}
.ls66{letter-spacing:519.899200pt;}
.ws4f{word-spacing:-53.440000pt;}
.ws2{word-spacing:-23.910400pt;}
.wse{word-spacing:-15.461955pt;}
.ws6{word-spacing:-13.915853pt;}
.ws51{word-spacing:-13.488256pt;}
.wsaa{word-spacing:-13.482912pt;}
.wsab{word-spacing:-13.450848pt;}
.ws59{word-spacing:-13.370688pt;}
.ws58{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.283467pt;}
.ws3{word-spacing:-12.760670pt;}
.ws94{word-spacing:-12.459600pt;}
.ws27{word-spacing:-12.369595pt;}
.ws54{word-spacing:-12.158400pt;}
.ws55{word-spacing:-12.067200pt;}
.ws56{word-spacing:-12.057600pt;}
.ws57{word-spacing:-12.028800pt;}
.ws52{word-spacing:-12.014400pt;}
.ws46{word-spacing:-11.955200pt;}
.ws9d{word-spacing:-11.751123pt;}
.ws4e{word-spacing:-10.801728pt;}
.ws25{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.ws93{word-spacing:-10.057700pt;}
.ws50{word-spacing:-8.000000pt;}
.ws95{word-spacing:-7.505760pt;}
.ws53{word-spacing:-7.360000pt;}
.ws1d{word-spacing:-3.772505pt;}
.ws3c{word-spacing:-3.559969pt;}
.ws173{word-spacing:-3.299635pt;}
.wsed{word-spacing:-3.152960pt;}
.wsc8{word-spacing:-3.081764pt;}
.ws161{word-spacing:-3.012710pt;}
.ws13a{word-spacing:-2.964890pt;}
.ws6c{word-spacing:-2.923168pt;}
.wsf{word-spacing:-2.922363pt;}
.ws11a{word-spacing:-2.832320pt;}
.ws11b{word-spacing:-2.789568pt;}
.ws3d{word-spacing:-2.762961pt;}
.ws13e{word-spacing:-2.725786pt;}
.wsec{word-spacing:-2.704064pt;}
.ws6d{word-spacing:-2.527712pt;}
.ws6e{word-spacing:-2.399456pt;}
.ws36{word-spacing:-2.391024pt;}
.ws6b{word-spacing:-2.378080pt;}
.ws136{word-spacing:-2.343219pt;}
.ws15b{word-spacing:-2.295398pt;}
.ws134{word-spacing:-2.231622pt;}
.wsb1{word-spacing:-2.197333pt;}
.wsb2{word-spacing:-2.144000pt;}
.ws135{word-spacing:-2.056294pt;}
.wsb3{word-spacing:-2.048000pt;}
.ws23{word-spacing:-2.019087pt;}
.wsd3{word-spacing:-1.923840pt;}
.wsd4{word-spacing:-1.886432pt;}
.wse7{word-spacing:-1.881088pt;}
.wsda{word-spacing:-1.870400pt;}
.ws10f{word-spacing:-1.859712pt;}
.ws12d{word-spacing:-1.859685pt;}
.ws110{word-spacing:-1.854368pt;}
.wsd5{word-spacing:-1.816960pt;}
.wse2{word-spacing:-1.776000pt;}
.wse1{word-spacing:-1.761600pt;}
.wse0{word-spacing:-1.742400pt;}
.ws163{word-spacing:-1.721549pt;}
.wsa{word-spacing:-1.696326pt;}
.ws162{word-spacing:-1.673728pt;}
.ws9c{word-spacing:-1.594016pt;}
.wsd8{word-spacing:-1.581824pt;}
.ws114{word-spacing:-1.464000pt;}
.wsdb{word-spacing:-1.458912pt;}
.ws116{word-spacing:-1.449600pt;}
.ws115{word-spacing:-1.430400pt;}
.ws63{word-spacing:-1.245152pt;}
.wsd9{word-spacing:-1.239808pt;}
.ws129{word-spacing:-1.222079pt;}
.wsd7{word-spacing:-1.213088pt;}
.wsd0{word-spacing:-1.197056pt;}
.ws9{word-spacing:-1.175671pt;}
.wsd1{word-spacing:-1.170336pt;}
.ws64{word-spacing:-1.154304pt;}
.ws65{word-spacing:-1.138272pt;}
.wsc4{word-spacing:-1.115811pt;}
.wsc6{word-spacing:-0.956410pt;}
.wsb0{word-spacing:-0.944000pt;}
.ws112{word-spacing:-0.871072pt;}
.wsa3{word-spacing:-0.850142pt;}
.ws37{word-spacing:-0.797008pt;}
.ws4a{word-spacing:-0.743874pt;}
.ws81{word-spacing:-0.721440pt;}
.ws4b{word-spacing:-0.690740pt;}
.ws111{word-spacing:-0.593184pt;}
.ws7e{word-spacing:-0.582496pt;}
.ws113{word-spacing:-0.571808pt;}
.ws11e{word-spacing:-0.539744pt;}
.ws101{word-spacing:-0.531339pt;}
.ws11f{word-spacing:-0.518368pt;}
.ws29{word-spacing:-0.478205pt;}
.ws172{word-spacing:-0.430387pt;}
.ws68{word-spacing:-0.368736pt;}
.ws8e{word-spacing:-0.358048pt;}
.ws79{word-spacing:-0.320640pt;}
.ws43{word-spacing:-0.318803pt;}
.ws120{word-spacing:-0.309952pt;}
.ws7b{word-spacing:-0.304608pt;}
.ws5c{word-spacing:-0.293920pt;}
.ws11d{word-spacing:-0.283232pt;}
.ws6a{word-spacing:-0.277888pt;}
.wsc{word-spacing:-0.265669pt;}
.ws89{word-spacing:-0.261856pt;}
.ws60{word-spacing:-0.256512pt;}
.ws7f{word-spacing:-0.251168pt;}
.ws174{word-spacing:-0.239104pt;}
.ws78{word-spacing:-0.235136pt;}
.ws5e{word-spacing:-0.224448pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws7a{word-spacing:-0.208416pt;}
.ws142{word-spacing:-0.191283pt;}
.ws69{word-spacing:-0.181696pt;}
.ws7d{word-spacing:-0.165664pt;}
.wsb5{word-spacing:-0.163200pt;}
.ws13{word-spacing:-0.159402pt;}
.ws8c{word-spacing:-0.158400pt;}
.ws97{word-spacing:-0.143462pt;}
.ws80{word-spacing:-0.117568pt;}
.ws5a{word-spacing:-0.110656pt;}
.ws2d{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.095642pt;}
.ws104{word-spacing:-0.053440pt;}
.ws1c{word-spacing:-0.053134pt;}
.wsac{word-spacing:-0.047821pt;}
.ws26{word-spacing:-0.042507pt;}
.ws48{word-spacing:-0.037194pt;}
.ws8f{word-spacing:-0.021376pt;}
.ws88{word-spacing:-0.005344pt;}
.ws3e{word-spacing:-0.000298pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:0.002430pt;}
.ws4d{word-spacing:0.003564pt;}
.ws107{word-spacing:0.005344pt;}
.wsdf{word-spacing:0.026720pt;}
.ws96{word-spacing:0.047821pt;}
.ws2e{word-spacing:0.053134pt;}
.ws61{word-spacing:0.053440pt;}
.ws6f{word-spacing:0.090848pt;}
.ws7{word-spacing:0.095642pt;}
.ws117{word-spacing:0.096192pt;}
.ws62{word-spacing:0.101536pt;}
.wsb7{word-spacing:0.105600pt;}
.ws33{word-spacing:0.106268pt;}
.wsbf{word-spacing:0.110400pt;}
.ws105{word-spacing:0.115200pt;}
.ws5f{word-spacing:0.117568pt;}
.ws74{word-spacing:0.120000pt;}
.ws8d{word-spacing:0.134400pt;}
.ws72{word-spacing:0.139200pt;}
.ws138{word-spacing:0.143462pt;}
.ws73{word-spacing:0.144000pt;}
.wsf3{word-spacing:0.144288pt;}
.ws106{word-spacing:0.148800pt;}
.ws71{word-spacing:0.153600pt;}
.ws8b{word-spacing:0.158400pt;}
.wsd{word-spacing:0.159402pt;}
.ws70{word-spacing:0.163200pt;}
.wsb8{word-spacing:0.168000pt;}
.wsc0{word-spacing:0.177600pt;}
.wsb6{word-spacing:0.182400pt;}
.ws127{word-spacing:0.191283pt;}
.wsbe{word-spacing:0.211200pt;}
.ws31{word-spacing:0.212535pt;}
.wsb9{word-spacing:0.213760pt;}
.wsb4{word-spacing:0.216000pt;}
.ws146{word-spacing:0.239104pt;}
.ws2c{word-spacing:0.265669pt;}
.ws8a{word-spacing:0.272544pt;}
.ws14d{word-spacing:0.286925pt;}
.ws102{word-spacing:0.318803pt;}
.ws168{word-spacing:0.334746pt;}
.wseb{word-spacing:0.368736pt;}
.ws167{word-spacing:0.382566pt;}
.wse9{word-spacing:0.390112pt;}
.ws139{word-spacing:0.430387pt;}
.wsea{word-spacing:0.438208pt;}
.wsa2{word-spacing:0.531339pt;}
.ws159{word-spacing:0.573850pt;}
.ws12a{word-spacing:0.584473pt;}
.ws38{word-spacing:0.637606pt;}
.wsa5{word-spacing:0.690740pt;}
.ws144{word-spacing:0.860774pt;}
.ws153{word-spacing:0.908595pt;}
.wsa7{word-spacing:0.956410pt;}
.ws152{word-spacing:0.956416pt;}
.ws12{word-spacing:1.009543pt;}
.wsf6{word-spacing:1.036736pt;}
.ws1f{word-spacing:1.062677pt;}
.ws148{word-spacing:1.099878pt;}
.wsa4{word-spacing:1.115811pt;}
.wsf7{word-spacing:1.234464pt;}
.ws12f{word-spacing:1.328347pt;}
.ws12e{word-spacing:1.381481pt;}
.ws4c{word-spacing:1.434614pt;}
.ws2b{word-spacing:1.487748pt;}
.ws16b{word-spacing:1.530266pt;}
.ws177{word-spacing:1.578086pt;}
.ws12b{word-spacing:1.594016pt;}
.ws160{word-spacing:1.625907pt;}
.ws9f{word-spacing:1.700284pt;}
.ws9e{word-spacing:1.753418pt;}
.ws17{word-spacing:1.806551pt;}
.ws22{word-spacing:1.859685pt;}
.ws16a{word-spacing:1.912832pt;}
.ws1a{word-spacing:1.965953pt;}
.ws21{word-spacing:2.178489pt;}
.ws20{word-spacing:2.231622pt;}
.wsee{word-spacing:2.265856pt;}
.wscf{word-spacing:2.287232pt;}
.wsef{word-spacing:2.329984pt;}
.ws12c{word-spacing:2.391024pt;}
.ws158{word-spacing:2.486682pt;}
.ws118{word-spacing:2.575808pt;}
.wsf4{word-spacing:2.591840pt;}
.wsf5{word-spacing:2.629248pt;}
.wsce{word-spacing:2.645280pt;}
.wsfe{word-spacing:2.655968pt;}
.ws67{word-spacing:2.661312pt;}
.ws128{word-spacing:2.709827pt;}
.ws119{word-spacing:2.720096pt;}
.ws66{word-spacing:2.773536pt;}
.ws103{word-spacing:2.816095pt;}
.ws14f{word-spacing:2.869248pt;}
.wsc7{word-spacing:2.922363pt;}
.wse6{word-spacing:2.933856pt;}
.ws86{word-spacing:2.939200pt;}
.wse5{word-spacing:2.955232pt;}
.ws83{word-spacing:2.965920pt;}
.ws87{word-spacing:2.971264pt;}
.wsa1{word-spacing:2.975497pt;}
.ws85{word-spacing:2.992640pt;}
.wsa0{word-spacing:3.028630pt;}
.ws84{word-spacing:3.072800pt;}
.wsdc{word-spacing:3.281216pt;}
.wsdd{word-spacing:3.297248pt;}
.ws171{word-spacing:3.395277pt;}
.ws14b{word-spacing:3.538739pt;}
.wsc9{word-spacing:3.613103pt;}
.ws41{word-spacing:3.719371pt;}
.ws39{word-spacing:3.985040pt;}
.ws9b{word-spacing:4.144442pt;}
.ws9a{word-spacing:4.197575pt;}
.ws132{word-spacing:4.250709pt;}
.ws98{word-spacing:4.303843pt;}
.ws99{word-spacing:4.356977pt;}
.wsc5{word-spacing:4.410111pt;}
.ws16f{word-spacing:4.533785pt;}
.ws42{word-spacing:4.622646pt;}
.ws14a{word-spacing:4.775893pt;}
.ws151{word-spacing:4.776533pt;}
.ws176{word-spacing:4.776559pt;}
.ws166{word-spacing:4.779767pt;}
.ws14c{word-spacing:4.780365pt;}
.ws8{word-spacing:4.782080pt;}
.ws15d{word-spacing:4.782225pt;}
.ws178{word-spacing:4.783718pt;}
.wsd6{word-spacing:4.841664pt;}
.ws11c{word-spacing:4.852352pt;}
.ws109{word-spacing:4.863040pt;}
.ws2a{word-spacing:4.941450pt;}
.ws11{word-spacing:5.153985pt;}
.wsd2{word-spacing:5.183680pt;}
.ws35{word-spacing:5.260253pt;}
.ws13b{word-spacing:5.260288pt;}
.ws14{word-spacing:5.307978pt;}
.ws15{word-spacing:5.313387pt;}
.ws122{word-spacing:5.419654pt;}
.ws44{word-spacing:5.472788pt;}
.wscd{word-spacing:5.482944pt;}
.ws126{word-spacing:5.499392pt;}
.ws16c{word-spacing:5.642854pt;}
.ws30{word-spacing:5.685324pt;}
.ws10c{word-spacing:5.718080pt;}
.wsf8{word-spacing:5.755488pt;}
.wsa6{word-spacing:5.791591pt;}
.ws125{word-spacing:5.834138pt;}
.ws10b{word-spacing:6.017344pt;}
.ws10a{word-spacing:6.161632pt;}
.wsde{word-spacing:6.166976pt;}
.ws10e{word-spacing:6.236448pt;}
.ws10d{word-spacing:6.316608pt;}
.wsf9{word-spacing:6.412800pt;}
.ws137{word-spacing:6.503629pt;}
.ws133{word-spacing:6.588599pt;}
.ws5d{word-spacing:6.760160pt;}
.ws1b{word-spacing:6.854269pt;}
.ws3a{word-spacing:7.013670pt;}
.ws3b{word-spacing:7.066804pt;}
.ws16e{word-spacing:7.125299pt;}
.ws32{word-spacing:7.173072pt;}
.ws2f{word-spacing:7.279340pt;}
.ws165{word-spacing:7.316582pt;}
.wsfa{word-spacing:7.358688pt;}
.wsfd{word-spacing:7.401440pt;}
.wsfb{word-spacing:7.417472pt;}
.ws19{word-spacing:7.491875pt;}
.wsfc{word-spacing:7.540384pt;}
.ws18{word-spacing:7.545009pt;}
.ws13f{word-spacing:7.746970pt;}
.ws5b{word-spacing:8.086400pt;}
.ws17a{word-spacing:8.272998pt;}
.ws175{word-spacing:8.703386pt;}
.ws156{word-spacing:8.894669pt;}
.ws7c{word-spacing:8.983264pt;}
.ws149{word-spacing:9.085952pt;}
.wse4{word-spacing:9.694016pt;}
.wse3{word-spacing:9.699360pt;}
.ws10{word-spacing:10.201702pt;}
.ws24{word-spacing:10.582833pt;}
.ws170{word-spacing:11.668275pt;}
.ws143{word-spacing:11.716096pt;}
.ws154{word-spacing:11.811738pt;}
.ws140{word-spacing:11.899290pt;}
.ws14e{word-spacing:11.902763pt;}
.ws150{word-spacing:11.905109pt;}
.wsff{word-spacing:11.906432pt;}
.ws13c{word-spacing:11.907379pt;}
.ws100{word-spacing:11.943840pt;}
.ws179{word-spacing:12.003021pt;}
.ws17c{word-spacing:12.050842pt;}
.ws15a{word-spacing:12.242125pt;}
.ws124{word-spacing:12.273923pt;}
.ws123{word-spacing:12.327057pt;}
.ws82{word-spacing:12.510304pt;}
.ws3f{word-spacing:13.017797pt;}
.wsf1{word-spacing:13.092800pt;}
.wsf2{word-spacing:13.194336pt;}
.ws34{word-spacing:13.230333pt;}
.ws121{word-spacing:13.283467pt;}
.ws157{word-spacing:13.437645pt;}
.wsf0{word-spacing:13.541696pt;}
.ws169{word-spacing:14.346240pt;}
.ws47{word-spacing:14.573429pt;}
.wse8{word-spacing:15.059392pt;}
.ws40{word-spacing:16.312097pt;}
.wsca{word-spacing:16.630900pt;}
.ws15c{word-spacing:16.683750pt;}
.ws145{word-spacing:16.684510pt;}
.ws141{word-spacing:16.685065pt;}
.ws164{word-spacing:16.685312pt;}
.ws155{word-spacing:16.687539pt;}
.ws15e{word-spacing:16.687744pt;}
.ws13d{word-spacing:16.689459pt;}
.ws17b{word-spacing:16.737280pt;}
.ws15f{word-spacing:16.928563pt;}
.ws147{word-spacing:17.072026pt;}
.ws16d{word-spacing:17.550234pt;}
.ws16{word-spacing:17.959247pt;}
.ws131{word-spacing:18.012381pt;}
.ws130{word-spacing:18.065515pt;}
.wscb{word-spacing:20.259104pt;}
.wscc{word-spacing:20.275136pt;}
.ws108{word-spacing:22.813536pt;}
.wsc2{word-spacing:120.537045pt;}
.wsad{word-spacing:158.334669pt;}
.wsc1{word-spacing:165.883200pt;}
.wsae{word-spacing:170.289869pt;}
.wsaf{word-spacing:182.245069pt;}
.ws92{word-spacing:215.767450pt;}
.ws91{word-spacing:239.652267pt;}
.wsbd{word-spacing:265.847968pt;}
.wsbc{word-spacing:265.853312pt;}
.wsc3{word-spacing:318.438707pt;}
.wsbb{word-spacing:323.130304pt;}
.ws45{word-spacing:327.454379pt;}
.ws77{word-spacing:355.651200pt;}
.wsba{word-spacing:361.211648pt;}
.ws49{word-spacing:511.921664pt;}
.ws76{word-spacing:551.812800pt;}
.ws75{word-spacing:585.739200pt;}
.ws90{word-spacing:674.776192pt;}
.ws28{word-spacing:807.381757pt;}
.wsa9{word-spacing:1101.879360pt;}
.wsa8{word-spacing:1102.167936pt;}
._30{margin-left:-442.381664pt;}
._44{margin-left:-151.742880pt;}
._2f{margin-left:-123.023008pt;}
._46{margin-left:-113.682912pt;}
._41{margin-left:-101.859047pt;}
._4a{margin-left:-69.143989pt;}
._4c{margin-left:-56.379200pt;}
._28{margin-left:-27.518400pt;}
._62{margin-left:-21.876685pt;}
._3{margin-left:-20.669074pt;}
._61{margin-left:-19.441510pt;}
._8{margin-left:-18.084262pt;}
._1{margin-left:-7.077478pt;}
._9{margin-left:-6.168883pt;}
._0{margin-left:-5.277107pt;}
._6{margin-left:-3.552922pt;}
._b{margin-left:-1.897753pt;}
._7{margin-left:-0.889131pt;}
._c{width:0.969929pt;}
._38{width:2.011771pt;}
._2{width:2.975526pt;}
._37{width:4.191791pt;}
._3a{width:5.158892pt;}
._2a{width:6.048000pt;}
._39{width:7.061329pt;}
._10{width:8.235749pt;}
._13{width:9.192159pt;}
._21{width:10.953168pt;}
._18{width:11.901986pt;}
._60{width:12.840614pt;}
._14{width:13.960826pt;}
._5e{width:14.981867pt;}
._a{width:15.873869pt;}
._5{width:17.600691pt;}
._d{width:18.915657pt;}
._16{width:20.669074pt;}
._e{width:22.156822pt;}
._4{width:23.641378pt;}
._11{width:25.209376pt;}
._5d{width:26.248130pt;}
._1a{width:29.595564pt;}
._19{width:30.977044pt;}
._3b{width:31.989297pt;}
._63{width:34.096230pt;}
._f{width:36.189518pt;}
._17{width:40.541140pt;}
._12{width:41.603818pt;}
._4d{width:59.385271pt;}
._53{width:96.487296pt;}
._52{width:97.745715pt;}
._54{width:106.592563pt;}
._55{width:109.174886pt;}
._4f{width:127.641600pt;}
._56{width:141.979955pt;}
._40{width:151.155040pt;}
._31{width:159.625830pt;}
._50{width:165.720000pt;}
._3f{width:168.549760pt;}
._3e{width:169.891104pt;}
._3d{width:176.229088pt;}
._4e{width:179.203200pt;}
._5a{width:181.862444pt;}
._1d{width:187.340937pt;}
._59{width:194.200269pt;}
._2b{width:195.496000pt;}
._2c{width:202.560000pt;}
._3c{width:208.512192pt;}
._57{width:211.352516pt;}
._36{width:216.823879pt;}
._25{width:217.887531pt;}
._58{width:224.088269pt;}
._32{width:229.760119pt;}
._26{width:243.006016pt;}
._1c{width:251.298304pt;}
._2e{width:258.617536pt;}
._49{width:262.668288pt;}
._48{width:266.606816pt;}
._47{width:270.906603pt;}
._45{width:272.185028pt;}
._4b{width:275.680363pt;}
._24{width:278.563200pt;}
._42{width:300.193856pt;}
._43{width:309.428288pt;}
._2d{width:321.179744pt;}
._22{width:338.087671pt;}
._5b{width:348.875537pt;}
._1b{width:355.786752pt;}
._23{width:361.281600pt;}
._51{width:382.334400pt;}
._29{width:411.768192pt;}
._5c{width:414.415053pt;}
._33{width:442.853009pt;}
._27{width:480.280192pt;}
._35{width:520.161553pt;}
._1f{width:542.316697pt;}
._1e{width:576.177399pt;}
._34{width:1360.200083pt;}
._20{width:1447.010208pt;}
._5f{width:1783.858400pt;}
._15{width:1805.111733pt;}
.fse{font-size:29.440000pt;}
.fs13{font-size:30.023040pt;}
.fsd{font-size:32.000000pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs10{font-size:40.230800pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs11{font-size:45.034400pt;}
.fs6{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs12{font-size:49.838400pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs14{font-size:60.046000pt;}
.fsf{font-size:64.000000pt;}
.fs3{font-size:72.686933pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.027520pt;}
.y176{bottom:-626.681318pt;}
.y188{bottom:-596.441328pt;}
.y187{bottom:-579.481306pt;}
.y186{bottom:-562.681318pt;}
.y185{bottom:-545.721357pt;}
.y184{bottom:-528.761335pt;}
.yd0{bottom:-527.734652pt;}
.yf4{bottom:-512.054660pt;}
.y183{bottom:-504.281355pt;}
.yf3{bottom:-495.094638pt;}
.yf2{bottom:-478.294650pt;}
.y182{bottom:-472.921309pt;}
.yf1{bottom:-461.334689pt;}
.y181{bottom:-456.601362pt;}
.yf0{bottom:-444.534640pt;}
.y180{bottom:-433.401350pt;}
.y143{bottom:-433.031600pt;}
.yef{bottom:-427.414645pt;}
.yee{bottom:-410.614657pt;}
.yed{bottom:-393.654696pt;}
.yec{bottom:-376.854647pt;}
.y164{bottom:-366.071528pt;}
.yeb{bottom:-359.894687pt;}
.y163{bottom:-348.071456pt;}
.yea{bottom:-342.934665pt;}
.y162{bottom:-330.071528pt;}
.ye9{bottom:-326.134677pt;}
.y161{bottom:-312.071368pt;}
.ye8{bottom:-309.174655pt;}
.y160{bottom:-294.151528pt;}
.ye7{bottom:-292.214694pt;}
.y127{bottom:-276.540933pt;}
.y15f{bottom:-276.151528pt;}
.ye6{bottom:-275.254672pt;}
.ye5{bottom:-258.454684pt;}
.y15e{bottom:-258.151384pt;}
.y125{bottom:-254.132933pt;}
.y124{bottom:-243.260933pt;}
.ye4{bottom:-241.654696pt;}
.y15d{bottom:-240.151456pt;}
.y126{bottom:-232.376933pt;}
.ye3{bottom:-224.534640pt;}
.y15c{bottom:-222.151528pt;}
.ye2{bottom:-207.734652pt;}
.y1a2{bottom:-206.716933pt;}
.y15b{bottom:-204.151528pt;}
.y123{bottom:-204.140933pt;}
.ye1{bottom:-190.774691pt;}
.y15a{bottom:-186.151163pt;}
.y1b4{bottom:-174.476861pt;}
.ye0{bottom:-173.974643pt;}
.y122{bottom:-169.016693pt;}
.y159{bottom:-168.231395pt;}
.y17f{bottom:-166.681318pt;}
.y9c{bottom:-158.103600pt;}
.ydf{bottom:-156.854647pt;}
.y1b3{bottom:-156.476717pt;}
.y121{bottom:-151.096853pt;}
.y158{bottom:-150.231179pt;}
.y17e{bottom:-149.881331pt;}
.yde{bottom:-140.054660pt;}
.y1b2{bottom:-138.476789pt;}
.y120{bottom:-133.100933pt;}
.y17d{bottom:-132.921339pt;}
.y157{bottom:-132.231251pt;}
.ybd{bottom:-125.303467pt;}
.ydd{bottom:-123.254672pt;}
.y1b1{bottom:-120.476861pt;}
.y17c{bottom:-115.961348pt;}
.y11f{bottom:-115.100933pt;}
.y156{bottom:-114.231323pt;}
.ybc{bottom:-106.663600pt;}
.yba{bottom:-106.342843pt;}
.ydc{bottom:-106.294650pt;}
.y1b0{bottom:-102.476669pt;}
.y17b{bottom:-99.161329pt;}
.yb9{bottom:-97.303467pt;}
.y11e{bottom:-96.460933pt;}
.y155{bottom:-96.231395pt;}
.ydb{bottom:-89.334689pt;}
.ybb{bottom:-88.022275pt;}
.y17a{bottom:-82.201338pt;}
.y154{bottom:-78.231467pt;}
.y1af{bottom:-76.556933pt;}
.yda{bottom:-72.374667pt;}
.y11d{bottom:-69.584933pt;}
.yb8{bottom:-61.063200pt;}
.y179{bottom:-57.721327pt;}
.y153{bottom:-44.711867pt;}
.y1ae{bottom:-42.957333pt;}
.yd9{bottom:-41.014682pt;}
.y11c{bottom:-36.224933pt;}
.yb7{bottom:-27.783600pt;}
.y152{bottom:-27.351467pt;}
.y178{bottom:-26.361342pt;}
.y1ad{bottom:-25.596933pt;}
.yd8{bottom:-24.694674pt;}
.y11b{bottom:-18.860933pt;}
.y151{bottom:-2.711600pt;}
.yd7{bottom:-1.654666pt;}
.y1ac{bottom:-1.036933pt;}
.y177{bottom:-0.281324pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:2.856400pt;}
.y17{bottom:3.044747pt;}
.y11a{bottom:6.895360pt;}
.y16{bottom:12.578910pt;}
.y2{bottom:14.078151pt;}
.y3c{bottom:56.693333pt;}
.y111{bottom:96.544000pt;}
.y3b{bottom:97.404000pt;}
.y3a{bottom:99.890667pt;}
.y12e{bottom:104.594667pt;}
.y1dc{bottom:107.190667pt;}
.y110{bottom:112.069333pt;}
.y256{bottom:114.066667pt;}
.y10f{bottom:114.556000pt;}
.y39{bottom:115.417333pt;}
.y1b6{bottom:115.440000pt;}
.y38{bottom:117.904000pt;}
.y12d{bottom:119.524000pt;}
.y1db{bottom:125.202667pt;}
.y7b{bottom:126.737333pt;}
.y255{bottom:128.893333pt;}
.y254{bottom:131.281333pt;}
.y212{bottom:131.910667pt;}
.y1b5{bottom:132.536000pt;}
.y10e{bottom:132.568000pt;}
.y37{bottom:133.429333pt;}
.y12c{bottom:134.453333pt;}
.y36{bottom:135.916000pt;}
.y1da{bottom:140.729333pt;}
.y1d9{bottom:143.216000pt;}
.y7a{bottom:144.749333pt;}
.y253{bottom:146.109333pt;}
.y211{bottom:146.737333pt;}
.y10d{bottom:148.094667pt;}
.y252{bottom:148.497333pt;}
.y210{bottom:149.125333pt;}
.y12b{bottom:149.382667pt;}
.y10c{bottom:150.581333pt;}
.y173{bottom:150.804000pt;}
.y1a0{bottom:152.473333pt;}
.y35{bottom:153.928000pt;}
.y1d8{bottom:161.228000pt;}
.y79{bottom:162.762667pt;}
.ybe{bottom:165.666667pt;}
.y251{bottom:165.713333pt;}
.y10b{bottom:166.106667pt;}
.y20f{bottom:166.341333pt;}
.y10a{bottom:168.593333pt;}
.y172{bottom:168.816000pt;}
.y12a{bottom:170.713333pt;}
.y34{bottom:171.941333pt;}
.y1d7{bottom:176.754667pt;}
.y1d6{bottom:179.240000pt;}
.y78{bottom:180.774667pt;}
.y20e{bottom:181.168000pt;}
.y250{bottom:182.928000pt;}
.y20d{bottom:183.556000pt;}
.y109{bottom:184.120000pt;}
.y171{bottom:184.342667pt;}
.y9a{bottom:185.602667pt;}
.y108{bottom:186.606667pt;}
.y170{bottom:186.829333pt;}
.y33{bottom:187.466667pt;}
.y32{bottom:189.953333pt;}
.y1d5{bottom:197.253333pt;}
.y77{bottom:198.786667pt;}
.y129{bottom:198.820000pt;}
.y24f{bottom:200.144000pt;}
.y20c{bottom:200.772000pt;}
.y16f{bottom:202.354667pt;}
.y107{bottom:204.618667pt;}
.y16e{bottom:204.841333pt;}
.y31{bottom:205.480000pt;}
.y30{bottom:207.966667pt;}
.y24e{bottom:214.970667pt;}
.y1d4{bottom:215.265333pt;}
.y76{bottom:216.800000pt;}
.y24d{bottom:217.358667pt;}
.y20b{bottom:217.988000pt;}
.y106{bottom:220.145333pt;}
.y105{bottom:222.630667pt;}
.y16d{bottom:222.854667pt;}
.y128{bottom:223.304000pt;}
.y2f{bottom:225.978667pt;}
.y1d3{bottom:233.278667pt;}
.y24c{bottom:234.574667pt;}
.y75{bottom:234.812000pt;}
.y20a{bottom:235.202667pt;}
.y16c{bottom:238.380000pt;}
.y104{bottom:240.644000pt;}
.y16b{bottom:240.866667pt;}
.y2e{bottom:241.505333pt;}
.y114{bottom:243.241333pt;}
.y2d{bottom:243.990667pt;}
.y1d2{bottom:251.290667pt;}
.y24b{bottom:251.790667pt;}
.y209{bottom:252.418667pt;}
.y262{bottom:258.181333pt;}
.y102{bottom:258.656000pt;}
.y16a{bottom:258.878667pt;}
.y74{bottom:260.794667pt;}
.y2c{bottom:262.004000pt;}
.y103{bottom:263.478667pt;}
.yd6{bottom:265.225339pt;}
.y24a{bottom:266.617333pt;}
.y249{bottom:269.005333pt;}
.y1d1{bottom:269.302667pt;}
.y208{bottom:269.633333pt;}
.y101{bottom:274.182667pt;}
.y261{bottom:275.396000pt;}
.y100{bottom:276.669333pt;}
.y169{bottom:276.892000pt;}
.y2b{bottom:280.016000pt;}
.yb5{bottom:280.536848pt;}
.y150{bottom:280.968992pt;}
.yd5{bottom:282.185331pt;}
.y1ab{bottom:282.643139pt;}
.y1d0{bottom:284.829333pt;}
.y248{bottom:286.221333pt;}
.y207{bottom:286.849333pt;}
.y1cf{bottom:287.316000pt;}
.y119{bottom:289.379200pt;}
.y73{bottom:291.745333pt;}
.y260{bottom:292.612000pt;}
.yff{bottom:294.681333pt;}
.y168{bottom:294.904000pt;}
.y2a{bottom:298.029333pt;}
.y175{bottom:298.278665pt;}
.yb4{bottom:298.536776pt;}
.y14f{bottom:298.888760pt;}
.yd4{bottom:298.985334pt;}
.y1aa{bottom:300.643139pt;}
.y247{bottom:303.437333pt;}
.y206{bottom:304.065333pt;}
.y1ce{bottom:305.328000pt;}
.y72{bottom:309.758667pt;}
.yfe{bottom:312.693333pt;}
.y167{bottom:312.917333pt;}
.yd3{bottom:315.945340pt;}
.y29{bottom:316.041333pt;}
.yb3{bottom:316.536704pt;}
.y14e{bottom:316.888688pt;}
.y1a9{bottom:318.643139pt;}
.y246{bottom:320.652000pt;}
.y205{bottom:321.280000pt;}
.y1cd{bottom:323.341333pt;}
.y70{bottom:327.770667pt;}
.yfd{bottom:330.706667pt;}
.y71{bottom:332.592000pt;}
.yd2{bottom:332.745328pt;}
.y28{bottom:334.053333pt;}
.yb2{bottom:334.456472pt;}
.y14d{bottom:334.888616pt;}
.y25f{bottom:335.478667pt;}
.y1a8{bottom:336.643475pt;}
.y245{bottom:337.868000pt;}
.y204{bottom:338.496000pt;}
.y1cc{bottom:338.866667pt;}
.y1cb{bottom:341.353333pt;}
.y6f{bottom:343.297333pt;}
.y166{bottom:344.028000pt;}
.y6e{bottom:345.782667pt;}
.yfc{bottom:346.232000pt;}
.yfb{bottom:348.718667pt;}
.y27{bottom:352.066667pt;}
.yb1{bottom:352.456544pt;}
.y244{bottom:352.694667pt;}
.y14c{bottom:352.888544pt;}
.y1a7{bottom:354.643403pt;}
.y243{bottom:355.082667pt;}
.y203{bottom:355.710667pt;}
.y202{bottom:355.712000pt;}
.y242{bottom:357.952000pt;}
.y1ca{bottom:359.365333pt;}
.y165{bottom:361.124000pt;}
.y6d{bottom:361.309333pt;}
.y6c{bottom:363.796000pt;}
.yd1{bottom:366.025335pt;}
.yfa{bottom:366.732000pt;}
.yb0{bottom:370.456472pt;}
.y14b{bottom:370.888472pt;}
.y241{bottom:372.298667pt;}
.y1a6{bottom:372.563171pt;}
.y26{bottom:378.049333pt;}
.y201{bottom:380.897333pt;}
.y141{bottom:381.061333pt;}
.y6b{bottom:381.808000pt;}
.yf9{bottom:384.744000pt;}
.yaf{bottom:388.456400pt;}
.y14a{bottom:388.888920pt;}
.y240{bottom:389.514667pt;}
.y1c9{bottom:390.477333pt;}
.ycf{bottom:397.225331pt;}
.y1a5{bottom:398.563067pt;}
.y6a{bottom:399.821333pt;}
.yf8{bottom:402.756000pt;}
.y23f{bottom:404.341333pt;}
.y23e{bottom:406.729333pt;}
.y149{bottom:406.888848pt;}
.y1c8{bottom:407.573333pt;}
.y200{bottom:415.965333pt;}
.y69{bottom:417.833333pt;}
.yf7{bottom:420.769333pt;}
.yae{bottom:423.416000pt;}
.y23d{bottom:423.945333pt;}
.y1c7{bottom:424.669333pt;}
.y148{bottom:424.808616pt;}
.y1a4{bottom:432.163067pt;}
.y68{bottom:435.845333pt;}
.y1ff{bottom:437.445333pt;}
.y25e{bottom:438.772000pt;}
.yad{bottom:439.576800pt;}
.y23c{bottom:441.160000pt;}
.y1c6{bottom:441.765333pt;}
.y147{bottom:442.808544pt;}
.y19f{bottom:445.306667pt;}
.y25{bottom:445.974667pt;}
.yf6{bottom:450.213333pt;}
.y1fe{bottom:450.954667pt;}
.y67{bottom:453.858667pt;}
.yac{bottom:455.816400pt;}
.y23b{bottom:458.376000pt;}
.y1a3{bottom:459.843067pt;}
.y146{bottom:460.808472pt;}
.y19e{bottom:460.833333pt;}
.y19d{bottom:463.318667pt;}
.y1fd{bottom:464.464000pt;}
.yf5{bottom:467.309333pt;}
.y66{bottom:469.384000pt;}
.y99{bottom:470.914667pt;}
.y65{bottom:471.870667pt;}
.yab{bottom:471.976400pt;}
.y25d{bottom:473.202667pt;}
.y23a{bottom:475.592000pt;}
.y145{bottom:478.808400pt;}
.y19c{bottom:478.845333pt;}
.y24{bottom:479.926667pt;}
.y1fc{bottom:480.132000pt;}
.y19b{bottom:481.332000pt;}
.yce{bottom:487.246667pt;}
.yaa{bottom:488.856400pt;}
.y98{bottom:488.926667pt;}
.y64{bottom:489.884000pt;}
.y239{bottom:490.418667pt;}
.y238{bottom:492.806667pt;}
.y23{bottom:495.453333pt;}
.y237{bottom:495.676000pt;}
.y19a{bottom:496.857333pt;}
.ya9{bottom:497.256000pt;}
.y22{bottom:497.940000pt;}
.y199{bottom:499.344000pt;}
.y1fb{bottom:501.612000pt;}
.y97{bottom:506.938667pt;}
.y63{bottom:507.896000pt;}
.y236{bottom:510.022667pt;}
.y21{bottom:513.465333pt;}
.y1fa{bottom:515.121333pt;}
.y20{bottom:515.952000pt;}
.y144{bottom:516.488800pt;}
.y198{bottom:517.357333pt;}
.y25c{bottom:524.849333pt;}
.y96{bottom:524.952000pt;}
.y62{bottom:525.908000pt;}
.y235{bottom:527.237333pt;}
.y1f9{bottom:530.789333pt;}
.ya8{bottom:531.176400pt;}
.y1f{bottom:531.478667pt;}
.y1e{bottom:533.965333pt;}
.y197{bottom:535.369333pt;}
.y95{bottom:540.477333pt;}
.y234{bottom:542.064000pt;}
.y94{bottom:542.964000pt;}
.y1f8{bottom:544.298667pt;}
.y233{bottom:544.453333pt;}
.y142{bottom:551.048400pt;}
.y61{bottom:551.890667pt;}
.y1d{bottom:551.977333pt;}
.y1f7{bottom:557.808000pt;}
.y93{bottom:560.977333pt;}
.y196{bottom:561.352000pt;}
.y232{bottom:561.669333pt;}
.ya7{bottom:564.936472pt;}
.y1c{bottom:569.989333pt;}
.y92{bottom:576.502667pt;}
.y231{bottom:578.884000pt;}
.y91{bottom:578.989333pt;}
.y1f6{bottom:581.446667pt;}
.y60{bottom:582.841333pt;}
.ya6{bottom:582.936704pt;}
.y1b{bottom:585.516000pt;}
.y1a{bottom:588.002667pt;}
.y195{bottom:592.302667pt;}
.y230{bottom:596.100000pt;}
.ya5{bottom:600.856472pt;}
.y19{bottom:603.528000pt;}
.y18{bottom:606.014667pt;}
.y194{bottom:607.829333pt;}
.y118{bottom:608.113733pt;}
.y193{bottom:610.314667pt;}
.y1f5{bottom:610.896000pt;}
.y22f{bottom:610.926667pt;}
.y22e{bottom:613.314667pt;}
.y5f{bottom:613.792000pt;}
.ya4{bottom:618.856472pt;}
.y90{bottom:620.993333pt;}
.y117{bottom:626.093733pt;}
.y1f4{bottom:626.422667pt;}
.y25b{bottom:628.141333pt;}
.y192{bottom:628.328000pt;}
.y1f3{bottom:628.909333pt;}
.y22d{bottom:630.530667pt;}
.y5e{bottom:631.805333pt;}
.y8f{bottom:635.922667pt;}
.ya3{bottom:636.856472pt;}
.y15{bottom:637.510634pt;}
.y14{bottom:638.192000pt;}
.y191{bottom:643.853333pt;}
.y116{bottom:644.073333pt;}
.y1f2{bottom:644.436000pt;}
.y190{bottom:646.340000pt;}
.y1f1{bottom:646.921333pt;}
.y5d{bottom:647.330667pt;}
.y22c{bottom:647.746667pt;}
.y5c{bottom:649.817333pt;}
.y8e{bottom:650.852000pt;}
.ya2{bottom:654.856504pt;}
.y1f0{bottom:662.448000pt;}
.y18e{bottom:664.353333pt;}
.y1ef{bottom:664.934667pt;}
.y22b{bottom:664.961333pt;}
.y5b{bottom:665.344000pt;}
.y8d{bottom:665.781333pt;}
.y5a{bottom:667.829333pt;}
.y18f{bottom:669.174667pt;}
.y13{bottom:672.862667pt;}
.y140{bottom:675.204000pt;}
.y115{bottom:677.059067pt;}
.y22a{bottom:679.788000pt;}
.y18d{bottom:679.878667pt;}
.y1ee{bottom:680.460000pt;}
.ya1{bottom:680.857008pt;}
.y229{bottom:682.177333pt;}
.y18c{bottom:682.365333pt;}
.y1ed{bottom:682.946667pt;}
.y59{bottom:685.842667pt;}
.y8c{bottom:687.688000pt;}
.y12{bottom:689.002667pt;}
.y13f{bottom:693.217333pt;}
.y18b{bottom:697.892000pt;}
.y1ec{bottom:698.473333pt;}
.y8b{bottom:698.880000pt;}
.y228{bottom:699.392000pt;}
.y18a{bottom:700.377333pt;}
.y1eb{bottom:700.958667pt;}
.y58{bottom:701.368000pt;}
.y57{bottom:703.854667pt;}
.y11{bottom:709.482667pt;}
.y13e{bottom:711.229333pt;}
.y227{bottom:714.218667pt;}
.ya0{bottom:714.856872pt;}
.y226{bottom:716.608000pt;}
.y1ea{bottom:718.972000pt;}
.y56{bottom:719.381333pt;}
.y10{bottom:721.281333pt;}
.y55{bottom:721.868000pt;}
.y13d{bottom:729.241333pt;}
.y189{bottom:731.489333pt;}
.y225{bottom:733.824000pt;}
.y1e9{bottom:734.497333pt;}
.y1e8{bottom:736.984000pt;}
.y8a{bottom:737.125333pt;}
.y54{bottom:739.880000pt;}
.yf{bottom:741.761333pt;}
.y13c{bottom:747.254667pt;}
.y9f{bottom:748.856736pt;}
.y1c5{bottom:749.922667pt;}
.y224{bottom:751.038667pt;}
.y174{bottom:751.426667pt;}
.ye{bottom:753.561333pt;}
.y1e7{bottom:754.997333pt;}
.y53{bottom:755.406667pt;}
.y52{bottom:757.892000pt;}
.yd{bottom:757.901333pt;}
.y13b{bottom:765.266667pt;}
.ycd{bottom:765.428000pt;}
.y1c4{bottom:765.448000pt;}
.y223{bottom:765.865333pt;}
.y9e{bottom:766.776504pt;}
.y1c3{bottom:767.934667pt;}
.y222{bottom:768.254667pt;}
.yc{bottom:769.700000pt;}
.y89{bottom:770.113333pt;}
.y1e6{bottom:773.009333pt;}
.y51{bottom:773.418667pt;}
.y50{bottom:775.905333pt;}
.y1a1{bottom:777.363067pt;}
.y13a{bottom:780.793333pt;}
.y139{bottom:783.280000pt;}
.ycc{bottom:783.441333pt;}
.y221{bottom:785.469333pt;}
.y88{bottom:785.640000pt;}
.y1c2{bottom:785.948000pt;}
.y87{bottom:788.126667pt;}
.yb{bottom:790.180000pt;}
.y1e5{bottom:791.021333pt;}
.y9d{bottom:792.776400pt;}
.y4f{bottom:793.917333pt;}
.ycb{bottom:798.966667pt;}
.y25a{bottom:800.296000pt;}
.y138{bottom:801.292000pt;}
.yca{bottom:801.453333pt;}
.y1c1{bottom:801.473333pt;}
.ya{bottom:801.980000pt;}
.y220{bottom:802.685333pt;}
.y1c0{bottom:803.960000pt;}
.y86{bottom:806.138667pt;}
.y1e4{bottom:806.548000pt;}
.y1e3{bottom:809.034667pt;}
.y4e{bottom:809.444000pt;}
.y4d{bottom:811.930667pt;}
.y137{bottom:819.304000pt;}
.yc8{bottom:819.466667pt;}
.y21f{bottom:819.901333pt;}
.y85{bottom:821.665333pt;}
.y1bf{bottom:821.972000pt;}
.y9{bottom:822.458667pt;}
.y84{bottom:824.150667pt;}
.yc9{bottom:824.288000pt;}
.y9b{bottom:825.976400pt;}
.y1e2{bottom:827.046667pt;}
.y4c{bottom:829.942667pt;}
.y259{bottom:834.728000pt;}
.yc7{bottom:834.992000pt;}
.y21e{bottom:837.116000pt;}
.y136{bottom:837.317333pt;}
.yc6{bottom:837.478667pt;}
.y83{bottom:839.677333pt;}
.y1be{bottom:839.985333pt;}
.y82{bottom:842.164000pt;}
.y8{bottom:842.229333pt;}
.y1e1{bottom:842.573333pt;}
.y1e0{bottom:845.060000pt;}
.y4b{bottom:845.469333pt;}
.y4a{bottom:847.954667pt;}
.y21d{bottom:854.332000pt;}
.y135{bottom:855.329333pt;}
.y81{bottom:857.689333pt;}
.y1bd{bottom:857.997333pt;}
.y80{bottom:860.176000pt;}
.y7{bottom:860.241333pt;}
.y1df{bottom:863.072000pt;}
.y113{bottom:863.481333pt;}
.y49{bottom:865.968000pt;}
.y21c{bottom:869.158667pt;}
.y21b{bottom:871.546667pt;}
.y134{bottom:873.342667pt;}
.y1bc{bottom:876.010667pt;}
.yc5{bottom:877.814667pt;}
.y48{bottom:881.493333pt;}
.y47{bottom:883.980000pt;}
.y7f{bottom:886.158667pt;}
.y258{bottom:886.373333pt;}
.y21a{bottom:888.762667pt;}
.y1de{bottom:889.054667pt;}
.yc4{bottom:892.744000pt;}
.y1bb{bottom:894.022667pt;}
.y6{bottom:898.178667pt;}
.y46{bottom:901.993333pt;}
.y219{bottom:905.978667pt;}
.yc3{bottom:907.673333pt;}
.y1ba{bottom:909.549333pt;}
.y1b9{bottom:912.034667pt;}
.y133{bottom:915.028000pt;}
.y7e{bottom:917.109333pt;}
.y45{bottom:917.518667pt;}
.y44{bottom:920.005333pt;}
.yc2{bottom:922.602667pt;}
.y218{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y132{bottom:929.640000pt;}
.y1b8{bottom:930.048000pt;}
.y43{bottom:935.532000pt;}
.y42{bottom:938.017333pt;}
.y257{bottom:938.020000pt;}
.y217{bottom:940.409333pt;}
.y112{bottom:942.840000pt;}
.yc1{bottom:943.934667pt;}
.y7d{bottom:948.060000pt;}
.y130{bottom:950.653333pt;}
.y4{bottom:952.217333pt;}
.yc0{bottom:955.126667pt;}
.y41{bottom:956.030667pt;}
.y216{bottom:957.624000pt;}
.y12f{bottom:957.960000pt;}
.y1b7{bottom:963.586667pt;}
.y131{bottom:965.265333pt;}
.y7c{bottom:966.073333pt;}
.y40{bottom:971.556000pt;}
.y215{bottom:972.450667pt;}
.y3f{bottom:974.042667pt;}
.y214{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y1dd{bottom:989.569333pt;}
.y213{bottom:989.666667pt;}
.y3e{bottom:992.056000pt;}
.ybf{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y3d{bottom:1038.548000pt;}
.hd{height:22.673858pt;}
.h16{height:24.390647pt;}
.hf{height:29.433775pt;}
.he{height:30.399505pt;}
.h28{height:31.269002pt;}
.h1c{height:31.992188pt;}
.h14{height:32.092855pt;}
.h35{height:33.713664pt;}
.h9{height:33.771789pt;}
.hb{height:34.144051pt;}
.h32{height:36.527070pt;}
.h25{height:36.662368pt;}
.h12{height:36.666735pt;}
.h27{height:37.421716pt;}
.h1d{height:38.462187pt;}
.h13{height:38.639045pt;}
.h4{height:38.947124pt;}
.h1b{height:39.588281pt;}
.h2b{height:41.889908pt;}
.h15{height:42.039522pt;}
.ha{height:43.421286pt;}
.hc{height:43.469107pt;}
.h1f{height:44.648438pt;}
.h21{height:44.650037pt;}
.h2{height:45.271688pt;}
.h29{height:46.358473pt;}
.h19{height:47.595649pt;}
.h11{height:48.245551pt;}
.h10{height:48.298685pt;}
.h1e{height:49.708594pt;}
.h2d{height:49.710194pt;}
.h34{height:54.898620pt;}
.h2a{height:55.853335pt;}
.h17{height:55.957402pt;}
.h8{height:55.992450pt;}
.h6{height:55.997783pt;}
.h22{height:59.531250pt;}
.h7{height:60.197351pt;}
.h2f{height:72.690441pt;}
.h20{height:78.248437pt;}
.h24{height:84.023774pt;}
.h18{height:84.029107pt;}
.h23{height:85.550802pt;}
.h5{height:86.938214pt;}
.h2e{height:88.184438pt;}
.h3{height:88.836659pt;}
.h31{height:253.913333pt;}
.h26{height:258.829333pt;}
.h1a{height:265.260000pt;}
.h33{height:273.049333pt;}
.h30{height:273.122667pt;}
.h2c{height:567.592000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.730927pt;}
.w5{width:277.937333pt;}
.w4{width:281.309333pt;}
.w9{width:303.300000pt;}
.w7{width:305.765333pt;}
.w8{width:314.830667pt;}
.w6{width:581.125733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7b{left:-158.533333pt;}
.xda{left:-144.162667pt;}
.xf7{left:-140.718667pt;}
.x9b{left:-139.126669pt;}
.x7e{left:-136.052933pt;}
.x82{left:-132.853733pt;}
.x7c{left:-130.212805pt;}
.x86{left:-124.693333pt;}
.x81{left:-119.973333pt;}
.xdb{left:-115.842667pt;}
.x9d{left:-112.566672pt;}
.x80{left:-111.413333pt;}
.xe2{left:-106.972002pt;}
.x9c{left:-103.766669pt;}
.x8a{left:-97.253333pt;}
.x7d{left:-88.613333pt;}
.xe5{left:-80.412005pt;}
.x85{left:-78.692533pt;}
.x7f{left:-32.453333pt;}
.xf8{left:-24.398667pt;}
.xc4{left:-15.992933pt;}
.xbb{left:-12.552933pt;}
.x84{left:-7.093333pt;}
.x0{left:0.000000pt;}
.xe4{left:2.307996pt;}
.xc0{left:18.807067pt;}
.xc3{left:22.477227pt;}
.xa{left:26.021437pt;}
.xbd{left:27.687067pt;}
.xc2{left:36.727067pt;}
.xc1{left:46.247067pt;}
.x2{left:51.157007pt;}
.xbf{left:75.531067pt;}
.xc5{left:93.207067pt;}
.x10d{left:99.656000pt;}
.x1{left:102.046667pt;}
.x87{left:102.986451pt;}
.xba{left:106.287600pt;}
.x8{left:108.542667pt;}
.x4{left:109.605333pt;}
.xbc{left:127.047067pt;}
.x5{left:129.929333pt;}
.xd4{left:132.236000pt;}
.x73{left:134.425333pt;}
.x74{left:137.374667pt;}
.x96{left:144.462667pt;}
.x63{left:147.469333pt;}
.x34{left:150.954667pt;}
.x59{left:152.561333pt;}
.x22{left:153.600000pt;}
.x4d{left:154.778667pt;}
.x128{left:156.005333pt;}
.x45{left:158.362667pt;}
.x23{left:160.242667pt;}
.xd0{left:161.270667pt;}
.x14{left:162.708000pt;}
.x4e{left:163.792000pt;}
.x24{left:167.017333pt;}
.xb{left:167.957333pt;}
.x16{left:170.037333pt;}
.x15{left:171.761333pt;}
.x25{left:173.658667pt;}
.x107{left:175.489333pt;}
.x17{left:176.678667pt;}
.x6c{left:177.640000pt;}
.x8e{left:180.576000pt;}
.x9f{left:181.772000pt;}
.x18{left:183.453333pt;}
.x3b{left:184.529333pt;}
.x6d{left:186.524000pt;}
.xff{left:187.588000pt;}
.x19{left:190.096000pt;}
.xce{left:191.708000pt;}
.x8d{left:193.362667pt;}
.x97{left:196.034667pt;}
.x3c{left:197.812000pt;}
.x12f{left:199.626667pt;}
.x8c{left:201.718667pt;}
.xea{left:203.112000pt;}
.x98{left:204.837333pt;}
.x131{left:205.813333pt;}
.xb4{left:207.112000pt;}
.xd5{left:208.912000pt;}
.xcf{left:210.752000pt;}
.x113{left:214.585333pt;}
.xd6{left:218.757333pt;}
.xc{left:221.005333pt;}
.x5a{left:222.490667pt;}
.x132{left:223.704000pt;}
.x10b{left:225.601333pt;}
.x1c{left:228.069333pt;}
.xd{left:230.032000pt;}
.x1d{left:233.781333pt;}
.x66{left:234.710667pt;}
.x108{left:236.085333pt;}
.x133{left:237.545333pt;}
.xe1{left:239.436000pt;}
.x11a{left:241.162667pt;}
.xbe{left:242.415067pt;}
.xf5{left:243.320000pt;}
.x47{left:244.829333pt;}
.x11b{left:247.140000pt;}
.xae{left:248.906667pt;}
.x2d{left:251.168000pt;}
.xa8{left:252.386667pt;}
.x48{left:253.985333pt;}
.x7a{left:256.196000pt;}
.x9a{left:257.882667pt;}
.x2e{left:261.532000pt;}
.x10c{left:262.790667pt;}
.xb9{left:263.694667pt;}
.xa9{left:265.670667pt;}
.x100{left:267.181333pt;}
.x89{left:268.826667pt;}
.xc6{left:270.399067pt;}
.xdf{left:273.594667pt;}
.x88{left:277.466715pt;}
.x10a{left:278.690667pt;}
.x9e{left:279.913309pt;}
.x83{left:281.226667pt;}
.xc8{left:282.356000pt;}
.xdd{left:285.382667pt;}
.xc9{left:288.333333pt;}
.x99{left:289.812000pt;}
.xde{left:291.094667pt;}
.x110{left:294.172000pt;}
.xa2{left:295.728000pt;}
.xc7{left:297.675067pt;}
.xd7{left:299.905333pt;}
.x5d{left:302.164000pt;}
.x111{left:303.709333pt;}
.xf9{left:305.121333pt;}
.xfb{left:306.230667pt;}
.xa3{left:309.012000pt;}
.x101{left:310.377333pt;}
.xe6{left:312.067976pt;}
.xd8{left:313.188000pt;}
.x5e{left:315.446667pt;}
.xd9{left:316.518667pt;}
.x78{left:317.513333pt;}
.x1e{left:319.398667pt;}
.x79{left:323.225333pt;}
.xaf{left:324.149333pt;}
.xd1{left:327.522667pt;}
.x1f{left:328.416000pt;}
.x2f{left:329.654667pt;}
.x114{left:330.654667pt;}
.x5f{left:332.104000pt;}
.x30{left:335.366667pt;}
.x115{left:336.632000pt;}
.xb0{left:337.806667pt;}
.xdc{left:343.753333pt;}
.xeb{left:347.290667pt;}
.x31{left:349.329333pt;}
.xca{left:350.601333pt;}
.x104{left:355.050667pt;}
.x4f{left:356.600000pt;}
.xcb{left:357.905333pt;}
.xec{left:360.697333pt;}
.x5c{left:363.162667pt;}
.xe3{left:364.707990pt;}
.x50{left:365.653333pt;}
.x11e{left:371.248000pt;}
.xed{left:373.980000pt;}
.x92{left:375.361333pt;}
.x3f{left:376.626667pt;}
.x68{left:380.054667pt;}
.x40{left:382.338667pt;}
.xa0{left:386.952000pt;}
.x69{left:390.333333pt;}
.xef{left:391.325333pt;}
.x93{left:394.420000pt;}
.x75{left:395.394667pt;}
.xf0{left:397.521333pt;}
.x94{left:398.870667pt;}
.x3{left:399.781333pt;}
.x6e{left:400.672000pt;}
.xfd{left:402.406667pt;}
.x6f{left:406.382667pt;}
.x1a{left:408.628000pt;}
.x5b{left:411.336000pt;}
.xfe{left:414.645333pt;}
.x95{left:415.837333pt;}
.x1b{left:419.472000pt;}
.xb1{left:422.192000pt;}
.x8f{left:423.137333pt;}
.xfa{left:424.053333pt;}
.x11c{left:426.197333pt;}
.x109{left:427.645333pt;}
.x90{left:428.849333pt;}
.xcc{left:432.665333pt;}
.xb2{left:435.476000pt;}
.xf1{left:436.989333pt;}
.xcd{left:437.973333pt;}
.xb5{left:439.836000pt;}
.xe0{left:441.308000pt;}
.xf2{left:445.953333pt;}
.xb6{left:449.376000pt;}
.x35{left:450.550667pt;}
.x20{left:453.253333pt;}
.x129{left:457.925333pt;}
.x21{left:458.965333pt;}
.x127{left:460.189333pt;}
.x70{left:461.596000pt;}
.x4c{left:462.624000pt;}
.x36{left:463.834667pt;}
.xd2{left:465.205333pt;}
.x12a{left:466.218667pt;}
.x12{left:469.912000pt;}
.x6a{left:470.993333pt;}
.x13{left:475.624000pt;}
.x26{left:476.554667pt;}
.x46{left:477.705333pt;}
.xf3{left:479.184000pt;}
.x6b{left:481.272000pt;}
.xfc{left:482.353333pt;}
.xf4{left:484.896000pt;}
.x6{left:485.856000pt;}
.x116{left:487.700000pt;}
.x8b{left:490.366667pt;}
.x67{left:491.624000pt;}
.x117{left:493.677333pt;}
.x7{left:494.818667pt;}
.x76{left:501.706667pt;}
.x32{left:505.301333pt;}
.x102{left:506.736000pt;}
.x77{left:510.728000pt;}
.xf6{left:513.992000pt;}
.x4a{left:517.556000pt;}
.x33{left:518.585333pt;}
.x103{left:520.018667pt;}
.x120{left:521.988000pt;}
.x64{left:523.345333pt;}
.x121{left:527.301333pt;}
.x4b{left:528.484000pt;}
.xe8{left:531.940000pt;}
.xa1{left:534.045333pt;}
.x65{left:536.629333pt;}
.x71{left:538.224000pt;}
.x60{left:540.369333pt;}
.x12c{left:541.432000pt;}
.x51{left:544.600000pt;}
.x72{left:547.257333pt;}
.x12b{left:548.617333pt;}
.xe9{left:549.558667pt;}
.x52{left:553.486667pt;}
.xd3{left:555.402667pt;}
.x61{left:557.026667pt;}
.x130{left:558.389333pt;}
.xee{left:561.389333pt;}
.x91{left:563.232000pt;}
.xe{left:566.462667pt;}
.x2b{left:569.146667pt;}
.x62{left:570.309333pt;}
.x12d{left:571.442667pt;}
.xf{left:575.510667pt;}
.x2c{left:577.622667pt;}
.x12e{left:579.700000pt;}
.x105{left:581.062667pt;}
.x124{left:582.713333pt;}
.x37{left:586.157333pt;}
.x10e{left:587.876000pt;}
.x106{left:590.508000pt;}
.x53{left:591.553333pt;}
.x125{left:592.846667pt;}
.x54{left:597.265333pt;}
.x126{left:598.160000pt;}
.x38{left:599.440000pt;}
.x55{left:601.600000pt;}
.x39{left:602.792000pt;}
.xaa{left:607.817333pt;}
.xb3{left:608.906667pt;}
.x56{left:610.632000pt;}
.x11d{left:612.752000pt;}
.x3a{left:616.074667pt;}
.xab{left:617.684000pt;}
.xa4{left:619.732000pt;}
.xb7{left:621.824000pt;}
.x9{left:623.413317pt;}
.x123{left:624.602667pt;}
.xe7{left:625.668000pt;}
.x57{left:627.972000pt;}
.x41{left:630.200000pt;}
.x119{left:631.841333pt;}
.x58{left:633.684000pt;}
.xb8{left:638.117333pt;}
.x42{left:641.160000pt;}
.x122{left:642.760000pt;}
.x43{left:645.672000pt;}
.x3d{left:647.150667pt;}
.x112{left:648.533333pt;}
.x3e{left:652.862667pt;}
.x49{left:654.304000pt;}
.x27{left:656.125333pt;}
.x10{left:657.421333pt;}
.x44{left:658.956000pt;}
.x118{left:662.566667pt;}
.xa6{left:664.069333pt;}
.x11f{left:666.408000pt;}
.x11{left:667.834667pt;}
.x28{left:669.408000pt;}
.x29{left:672.796000pt;}
.x10f{left:674.288000pt;}
.xa5{left:677.996000pt;}
.xa7{left:679.848000pt;}
.xac{left:684.214667pt;}
.x2a{left:686.078667pt;}
.xad{left:689.926667pt;}
}




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