
    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_aa3d4670ee66a9d428541656.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;font-style:normal;font-weight: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_ec290b74a927632170033737.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;font-style:normal;font-weight: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_f763ac62d9247e5eb7c30ea9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.718000;font-style:normal;font-weight: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_66ab37c633e4952654970f64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;font-style:normal;font-weight: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_5a94d607df7f8eae078bb456.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight: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_aaadbe472954d4a2531d54ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight: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_b730bc9224e38c951e7ab7c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.015137;font-style:normal;font-weight: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_674b02c21bdafab338fc336f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012207;font-style:normal;font-weight: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_5a94d607df7f8eae078bb456.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;font-style:normal;font-weight: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_66ab37c633e4952654970f64.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;font-style:normal;font-weight: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_04bf4c24c7c899ce5f727b2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_32bd245e6dc36904203d8b42.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;font-style:normal;font-weight: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_b01caab040bf3b970a12d333.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844727;font-style:normal;font-weight: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_5e0e29a2c76050f3bdd58d09.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854004;font-style:normal;font-weight: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_5fb0073b3c79c9cbab933108.woff2')format("woff");}.fff{font-family:fff;line-height:0.752000;font-style:normal;font-weight: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_358cfa32559946ad419460e7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;font-style:normal;font-weight: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_542719a1f8c200b5ee909f21.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005371;font-style:normal;font-weight: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_984545cccfb96f5a30ec3452.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;font-style:normal;font-weight: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_1beb4f717c3ebffa5908323d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861328;font-style:normal;font-weight: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_efc4545b185387a24fca8206.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.888672;font-style:normal;font-weight: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_970c3d0de495494c41edadfe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.858398;font-style:normal;font-weight: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_bb24dd01f4e186c1c4254d0d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.888672;font-style:normal;font-weight: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_42cfff8cbe4c7ee11fecf21b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.923340;font-style:normal;font-weight: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_7acb5ca314ddf471854fa34c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.871094;font-style:normal;font-weight: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_00daf801b618b0403a917785.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5794f3cfc29ad406f613626a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.861816;font-style:normal;font-weight: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_f022981cd13e2f3218f0b8b9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_138e8200ef6c54f717236fc3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.861328;font-style:normal;font-weight: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_031f7331c5d8ef1759596cf5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.854004;font-style:normal;font-weight: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_a91981292a9a5e70d8e780b9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.895508;font-style:normal;font-weight: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_ea853900c29eaa8004aed90a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_63232598e6a501788e7d0e00.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.858398;font-style:normal;font-weight: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_010f191da135c43aa782dd70.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.005371;font-style:normal;font-weight: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_781fc191ff5db4482a619e60.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.871094;font-style:normal;font-weight: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_dca7348d184128fdd9b48ab6.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_81a8f249aa485235227ff1a4.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.871094;font-style:normal;font-weight: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_662f5433fb1ae5deb5fe48f2.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_c8bb9dd3be6fd03bb57071e9.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.857910;font-style:normal;font-weight: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_8d5a23af90881b5c3d4ba40b.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_280a5aa5f9b819d2f6260575.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_39a0082d5616843d0c28b9e9.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.857910;font-style:normal;font-weight: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_c95091cff62dde0e2932c0db.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_4711f9b411153ef0b6e24046.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.857910;font-style:normal;font-weight: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_46593c5891ef3f8bbbf290bb.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_4130767844ca19830224cbae.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_8963b2ba866d0ed5002afce4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_280a5aa5f9b819d2f6260575.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_f6dea6d21ca1078726f046b7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_871cd210f2be10c2189189a5.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_d8933ad76fe8f0b6c4dddb96.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_c204b0ce3ba970a6743a6f85.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_05ab083fed0c6d828d7bfb5e.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_1c0acc2e1f54de12cbbfa42f.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.582400px;}
.v1{vertical-align:27.972000px;}
.ls33{letter-spacing:-3.432000px;}
.ls12{letter-spacing:-2.956800px;}
.ls0{letter-spacing:-2.640000px;}
.ls93{letter-spacing:-2.587200px;}
.ls55{letter-spacing:-2.534400px;}
.ls18{letter-spacing:-2.442000px;}
.ls92{letter-spacing:-2.428800px;}
.ls63{letter-spacing:-2.383800px;}
.ls38{letter-spacing:-2.376000px;}
.ls4a{letter-spacing:-2.323200px;}
.ls67{letter-spacing:-2.268000px;}
.ls65{letter-spacing:-2.244000px;}
.ls58{letter-spacing:-2.217600px;}
.ls17{letter-spacing:-2.178000px;}
.ls8e{letter-spacing:-2.059200px;}
.lsf{letter-spacing:-2.006400px;}
.ls3f{letter-spacing:-1.953600px;}
.ls24{letter-spacing:-1.900800px;}
.ls3d{letter-spacing:-1.848000px;}
.lse{letter-spacing:-1.795200px;}
.ls72{letter-spacing:-1.764000px;}
.ls10{letter-spacing:-1.742400px;}
.ls6e{letter-spacing:-1.636800px;}
.ls66{letter-spacing:-1.620000px;}
.ls6b{letter-spacing:-1.602900px;}
.ls25{letter-spacing:-1.584000px;}
.ls80{letter-spacing:-1.561800px;}
.ls96{letter-spacing:-1.531200px;}
.ls3e{letter-spacing:-1.478400px;}
.ls70{letter-spacing:-1.470000px;}
.ls90{letter-spacing:-1.397400px;}
.ls74{letter-spacing:-1.344000px;}
.lsb{letter-spacing:-1.320000px;}
.ls6f{letter-spacing:-1.275000px;}
.ls6c{letter-spacing:-1.214400px;}
.ls3b{letter-spacing:-1.161600px;}
.ls86{letter-spacing:-1.134000px;}
.ls85{letter-spacing:-1.108800px;}
.ls73{letter-spacing:-1.071000px;}
.ls6a{letter-spacing:-1.068600px;}
.ls13{letter-spacing:-1.056000px;}
.ls60{letter-spacing:-1.003200px;}
.ls94{letter-spacing:-0.969000px;}
.ls7d{letter-spacing:-0.966000px;}
.ls97{letter-spacing:-0.950400px;}
.ls8f{letter-spacing:-0.924000px;}
.ls7e{letter-spacing:-0.897600px;}
.ls4e{letter-spacing:-0.844800px;}
.ls61{letter-spacing:-0.822000px;}
.ls77{letter-spacing:-0.816000px;}
.ls3c{letter-spacing:-0.792000px;}
.ls5a{letter-spacing:-0.780900px;}
.ls41{letter-spacing:-0.739200px;}
.ls88{letter-spacing:-0.686400px;}
.ls5d{letter-spacing:-0.684000px;}
.ls5f{letter-spacing:-0.672000px;}
.ls14{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.633600px;}
.ls71{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.594000px;}
.ls98{letter-spacing:-0.580800px;}
.ls4f{letter-spacing:-0.576000px;}
.ls79{letter-spacing:-0.561000px;}
.ls16{letter-spacing:-0.528000px;}
.ls40{letter-spacing:-0.422400px;}
.ls68{letter-spacing:-0.420000px;}
.ls78{letter-spacing:-0.408000px;}
.ls87{letter-spacing:-0.336000px;}
.ls52{letter-spacing:-0.316800px;}
.ls69{letter-spacing:-0.264000px;}
.ls64{letter-spacing:-0.255000px;}
.ls37{letter-spacing:-0.252000px;}
.ls59{letter-spacing:-0.211200px;}
.ls27{letter-spacing:-0.158400px;}
.ls49{letter-spacing:-0.105600px;}
.ls1d{letter-spacing:-0.084000px;}
.ls1e{letter-spacing:-0.052800px;}
.ls2{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.012000px;}
.ls21{letter-spacing:0.052800px;}
.ls1b{letter-spacing:0.104400px;}
.ls54{letter-spacing:0.105600px;}
.ls1c{letter-spacing:0.108000px;}
.ls42{letter-spacing:0.153000px;}
.ls7{letter-spacing:0.158400px;}
.ls57{letter-spacing:0.171000px;}
.ls4{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.210000px;}
.lsc{letter-spacing:0.211200px;}
.ls9a{letter-spacing:0.234000px;}
.ls6{letter-spacing:0.252000px;}
.ls4c{letter-spacing:0.264000px;}
.ls19{letter-spacing:0.310238px;}
.ls50{letter-spacing:0.336000px;}
.ls8d{letter-spacing:0.369600px;}
.ls29{letter-spacing:0.411000px;}
.ls11{letter-spacing:0.422400px;}
.ls99{letter-spacing:0.468000px;}
.ls76{letter-spacing:0.475200px;}
.ls51{letter-spacing:0.513000px;}
.ls9f{letter-spacing:0.514800px;}
.ls26{letter-spacing:0.528000px;}
.ls43{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.633600px;}
.ls5c{letter-spacing:0.714000px;}
.ls53{letter-spacing:0.739200px;}
.lsa0{letter-spacing:0.748800px;}
.ls5b{letter-spacing:0.765000px;}
.ls15{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.816000px;}
.ls46{letter-spacing:0.828000px;}
.ls34{letter-spacing:0.897600px;}
.ls3a{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.936000px;}
.ls89{letter-spacing:0.950400px;}
.ls39{letter-spacing:0.972000px;}
.ls9{letter-spacing:1.056000px;}
.ls4b{letter-spacing:1.108800px;}
.ls47{letter-spacing:1.116000px;}
.ls2c{letter-spacing:1.134000px;}
.ls6d{letter-spacing:1.161600px;}
.ls2b{letter-spacing:1.176000px;}
.ls56{letter-spacing:1.214400px;}
.ls44{letter-spacing:1.275000px;}
.ls9b{letter-spacing:1.310400px;}
.ls9c{letter-spacing:1.404000px;}
.ls31{letter-spacing:1.512000px;}
.ls1f{letter-spacing:1.636800px;}
.lsa1{letter-spacing:1.684800px;}
.ls75{letter-spacing:1.689600px;}
.ls1{letter-spacing:2.123208px;}
.ls4d{letter-spacing:2.270400px;}
.lsa{letter-spacing:2.323200px;}
.ls8a{letter-spacing:2.376000px;}
.ls20{letter-spacing:2.481600px;}
.ls95{letter-spacing:2.521800px;}
.ls32{letter-spacing:2.587200px;}
.ls91{letter-spacing:2.692800px;}
.ls9d{letter-spacing:2.714400px;}
.ls84{letter-spacing:2.745600px;}
.ls7a{letter-spacing:2.830800px;}
.ls7f{letter-spacing:2.835900px;}
.ls2f{letter-spacing:3.028200px;}
.ls30{letter-spacing:3.028800px;}
.ls35{letter-spacing:3.041400px;}
.ls8c{letter-spacing:3.326400px;}
.ls9e{letter-spacing:3.556800px;}
.ls81{letter-spacing:3.801600px;}
.ls36{letter-spacing:4.065600px;}
.ls7b{letter-spacing:4.386000px;}
.ls7c{letter-spacing:4.386600px;}
.ls82{letter-spacing:4.397700px;}
.ls62{letter-spacing:4.593600px;}
.ls8b{letter-spacing:4.699200px;}
.ls3{letter-spacing:5.308020px;}
.ls22{letter-spacing:5.544000px;}
.ls83{letter-spacing:5.808000px;}
.ls1a{letter-spacing:6.224400px;}
.ls28{letter-spacing:6.247200px;}
.ls2a{letter-spacing:8.184000px;}
.ls48{letter-spacing:205.086000px;}
.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;}
}
.ws4d{word-spacing:-84.000000px;}
.ws2e{word-spacing:-66.240000px;}
.ws5b{word-spacing:-61.325400px;}
.ws7d{word-spacing:-43.718400px;}
.ws31{word-spacing:-42.724800px;}
.ws5f{word-spacing:-40.474764px;}
.ws6b{word-spacing:-34.776000px;}
.ws59{word-spacing:-33.583680px;}
.ws7b{word-spacing:-30.447000px;}
.ws52{word-spacing:-30.006720px;}
.ws2a{word-spacing:-29.756400px;}
.wsa1{word-spacing:-28.681920px;}
.wsbc{word-spacing:-27.906900px;}
.ws4a{word-spacing:-26.550600px;}
.wsba{word-spacing:-26.345100px;}
.ws51{word-spacing:-23.509200px;}
.ws82{word-spacing:-22.728300px;}
.ws9f{word-spacing:-22.440600px;}
.wsbb{word-spacing:-21.947400px;}
.ws28{word-spacing:-21.756000px;}
.ws56{word-spacing:-21.744000px;}
.ws58{word-spacing:-21.528000px;}
.wsc9{word-spacing:-21.504000px;}
.ws2d{word-spacing:-20.700000px;}
.wsaf{word-spacing:-19.944000px;}
.wsc3{word-spacing:-19.800000px;}
.ws55{word-spacing:-19.026000px;}
.ws96{word-spacing:-18.972000px;}
.ws72{word-spacing:-18.900000px;}
.wsbf{word-spacing:-17.752320px;}
.ws48{word-spacing:-16.315200px;}
.ws57{word-spacing:-16.308000px;}
.wsca{word-spacing:-16.104000px;}
.ws7{word-spacing:-16.051200px;}
.wse9{word-spacing:-15.724800px;}
.wscd{word-spacing:-14.889600px;}
.wse8{word-spacing:-14.882400px;}
.wscb{word-spacing:-14.836800px;}
.ws81{word-spacing:-14.467200px;}
.wsb3{word-spacing:-14.203200px;}
.wse{word-spacing:-14.150400px;}
.wscc{word-spacing:-13.992000px;}
.wsb{word-spacing:-13.939200px;}
.ws29{word-spacing:-13.780800px;}
.ws6{word-spacing:-13.728000px;}
.wse7{word-spacing:-13.572000px;}
.wsec{word-spacing:-13.478400px;}
.ws9{word-spacing:-13.094400px;}
.wseb{word-spacing:-12.916800px;}
.wsea{word-spacing:-12.682800px;}
.wse6{word-spacing:-12.636000px;}
.ws8{word-spacing:-12.408000px;}
.ws71{word-spacing:-12.254400px;}
.wsd{word-spacing:-11.985600px;}
.wsa{word-spacing:-11.932800px;}
.wsc{word-spacing:-11.721600px;}
.ws94{word-spacing:-11.260800px;}
.ws2b{word-spacing:-11.097000px;}
.ws91{word-spacing:-11.062080px;}
.ws47{word-spacing:-10.872000px;}
.wsf{word-spacing:-10.771200px;}
.ws2c{word-spacing:-10.686000px;}
.ws61{word-spacing:-10.332000px;}
.ws49{word-spacing:-10.296000px;}
.ws62{word-spacing:-10.260000px;}
.ws8f{word-spacing:-10.248000px;}
.ws60{word-spacing:-10.188000px;}
.ws5a{word-spacing:-10.068480px;}
.wsdb{word-spacing:-9.996000px;}
.wsb9{word-spacing:-9.954000px;}
.ws90{word-spacing:-9.864000px;}
.wsbd{word-spacing:-9.617400px;}
.wsae{word-spacing:-9.450000px;}
.wsdc{word-spacing:-9.288600px;}
.wsa0{word-spacing:-9.083100px;}
.ws3{word-spacing:-8.910000px;}
.ws73{word-spacing:-8.784000px;}
.ws97{word-spacing:-8.712000px;}
.ws85{word-spacing:-8.676000px;}
.ws41{word-spacing:-8.184000px;}
.ws54{word-spacing:-6.491520px;}
.wsc6{word-spacing:-5.808000px;}
.ws39{word-spacing:-5.544000px;}
.wsdf{word-spacing:-4.910400px;}
.wsd2{word-spacing:-4.699200px;}
.ws9a{word-spacing:-4.593600px;}
.wsd8{word-spacing:-4.435200px;}
.ws4e{word-spacing:-4.065600px;}
.wsc5{word-spacing:-3.801600px;}
.wsd4{word-spacing:-3.326400px;}
.ws2{word-spacing:-3.184812px;}
.wsd5{word-spacing:-2.851200px;}
.wsc7{word-spacing:-2.745600px;}
.wse1{word-spacing:-2.692800px;}
.wse0{word-spacing:-2.640000px;}
.ws35{word-spacing:-2.481600px;}
.wsd0{word-spacing:-2.376000px;}
.ws79{word-spacing:-2.270400px;}
.ws15{word-spacing:-1.953600px;}
.wsb5{word-spacing:-1.689600px;}
.ws34{word-spacing:-1.636800px;}
.wsf3{word-spacing:-1.450800px;}
.ws17{word-spacing:-1.320000px;}
.ws19{word-spacing:-1.214400px;}
.wsab{word-spacing:-1.161600px;}
.ws8e{word-spacing:-1.116000px;}
.ws77{word-spacing:-1.108800px;}
.wsf2{word-spacing:-1.076400px;}
.wsa8{word-spacing:-1.056000px;}
.ws69{word-spacing:-1.008000px;}
.ws8b{word-spacing:-1.003200px;}
.ws42{word-spacing:-0.966000px;}
.ws16{word-spacing:-0.950400px;}
.ws43{word-spacing:-0.924000px;}
.ws14{word-spacing:-0.897600px;}
.ws68{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.792000px;}
.ws9b{word-spacing:-0.739200px;}
.ws40{word-spacing:-0.686400px;}
.ws46{word-spacing:-0.663000px;}
.ws3a{word-spacing:-0.633600px;}
.ws8c{word-spacing:-0.612000px;}
.ws8d{word-spacing:-0.561000px;}
.ws3e{word-spacing:-0.528000px;}
.ws67{word-spacing:-0.459000px;}
.wsd6{word-spacing:-0.369600px;}
.ws7f{word-spacing:-0.342000px;}
.ws13{word-spacing:-0.316800px;}
.ws78{word-spacing:-0.264000px;}
.ws12{word-spacing:-0.252000px;}
.wsf1{word-spacing:-0.234000px;}
.ws36{word-spacing:-0.211200px;}
.ws11{word-spacing:-0.210000px;}
.ws4{word-spacing:-0.198000px;}
.ws18{word-spacing:-0.158400px;}
.ws74{word-spacing:-0.153000px;}
.ws1e{word-spacing:-0.105600px;}
.ws7e{word-spacing:-0.084000px;}
.ws1b{word-spacing:-0.052800px;}
.ws1{word-spacing:0.000000px;}
.ws33{word-spacing:0.052800px;}
.ws75{word-spacing:0.105600px;}
.ws80{word-spacing:0.108000px;}
.ws3f{word-spacing:0.158400px;}
.ws10{word-spacing:0.210000px;}
.ws8a{word-spacing:0.211200px;}
.wsa9{word-spacing:0.264000px;}
.ws66{word-spacing:0.422400px;}
.ws4f{word-spacing:0.504000px;}
.ws25{word-spacing:0.528000px;}
.wsb7{word-spacing:0.561000px;}
.wsf0{word-spacing:0.580800px;}
.wsee{word-spacing:0.633600px;}
.ws44{word-spacing:0.648000px;}
.ws23{word-spacing:0.660000px;}
.wsa7{word-spacing:0.672000px;}
.wscf{word-spacing:0.686400px;}
.ws1c{word-spacing:0.739200px;}
.ws5{word-spacing:0.792000px;}
.ws7a{word-spacing:0.844800px;}
.wsc4{word-spacing:0.897600px;}
.wsef{word-spacing:0.950400px;}
.ws98{word-spacing:1.003200px;}
.ws22{word-spacing:1.056000px;}
.wsc8{word-spacing:1.108800px;}
.ws63{word-spacing:1.161600px;}
.wsaa{word-spacing:1.214400px;}
.ws45{word-spacing:1.275000px;}
.ws3c{word-spacing:1.320000px;}
.ws1a{word-spacing:1.425600px;}
.ws64{word-spacing:1.478400px;}
.ws9d{word-spacing:1.530000px;}
.wsed{word-spacing:1.531200px;}
.ws3d{word-spacing:1.584000px;}
.wsac{word-spacing:1.636800px;}
.ws32{word-spacing:1.742400px;}
.wsb1{word-spacing:1.764000px;}
.wsb8{word-spacing:1.836000px;}
.ws1f{word-spacing:1.848000px;}
.wsb0{word-spacing:1.887000px;}
.ws3b{word-spacing:1.900800px;}
.ws1d{word-spacing:1.953600px;}
.ws65{word-spacing:2.006400px;}
.wsd9{word-spacing:2.059200px;}
.wsb6{word-spacing:2.091000px;}
.ws26{word-spacing:2.178000px;}
.ws89{word-spacing:2.217600px;}
.wse4{word-spacing:2.244000px;}
.ws76{word-spacing:2.323200px;}
.wsb2{word-spacing:2.346000px;}
.ws50{word-spacing:2.376000px;}
.ws9c{word-spacing:2.383800px;}
.wse2{word-spacing:2.428800px;}
.ws27{word-spacing:2.442000px;}
.ws88{word-spacing:2.534400px;}
.wsad{word-spacing:2.550000px;}
.wse3{word-spacing:2.587200px;}
.wsda{word-spacing:2.640000px;}
.ws99{word-spacing:2.798400px;}
.ws20{word-spacing:3.062400px;}
.wsd3{word-spacing:3.168000px;}
.ws0{word-spacing:3.432000px;}
.ws9e{word-spacing:3.519000px;}
.wsd7{word-spacing:4.276800px;}
.wsdd{word-spacing:5.068800px;}
.ws38{word-spacing:5.332800px;}
.ws37{word-spacing:5.385600px;}
.wsd1{word-spacing:5.966400px;}
.wsde{word-spacing:7.444800px;}
.ws86{word-spacing:7.550400px;}
.ws87{word-spacing:8.078400px;}
.ws95{word-spacing:35.854800px;}
.ws53{word-spacing:101.479680px;}
.wsa3{word-spacing:101.877120px;}
.wsa4{word-spacing:102.804480px;}
.ws7c{word-spacing:121.484160px;}
.ws6c{word-spacing:122.113440px;}
.wsa2{word-spacing:136.388160px;}
.ws93{word-spacing:157.187520px;}
.wsc2{word-spacing:174.211200px;}
.ws6d{word-spacing:179.642880px;}
.ws5c{word-spacing:187.103795px;}
.wsa5{word-spacing:191.297400px;}
.ws84{word-spacing:191.963520px;}
.ws21{word-spacing:205.086000px;}
.wsce{word-spacing:206.220000px;}
.wsb4{word-spacing:206.430000px;}
.wsa6{word-spacing:207.354000px;}
.wsc1{word-spacing:208.788480px;}
.ws30{word-spacing:216.936000px;}
.ws5d{word-spacing:235.428211px;}
.ws5e{word-spacing:240.910701px;}
.ws6e{word-spacing:242.239680px;}
.ws2f{word-spacing:251.447040px;}
.wsbe{word-spacing:254.361600px;}
.wsc0{word-spacing:261.144576px;}
.ws92{word-spacing:264.343968px;}
.ws70{word-spacing:316.680192px;}
.ws6f{word-spacing:330.140160px;}
.ws83{word-spacing:401.394528px;}
.ws4b{word-spacing:422.240256px;}
.ws4c{word-spacing:915.655392px;}
.wse5{word-spacing:1637.626200px;}
.ws6a{word-spacing:1660.222200px;}
._21{margin-left:-2449.538400px;}
._35{margin-left:-206.505600px;}
._e{margin-left:-149.998800px;}
._f{margin-left:-66.011400px;}
._9{margin-left:-16.764000px;}
._1a{margin-left:-14.251050px;}
._1c{margin-left:-10.695600px;}
._5{margin-left:-9.143556px;}
._14{margin-left:-7.542825px;}
._16{margin-left:-6.055941px;}
._6{margin-left:-4.827808px;}
._3{margin-left:-3.078652px;}
._0{margin-left:-1.531200px;}
._1{width:1.742400px;}
._2{width:3.352800px;}
._4{width:4.681425px;}
._7{width:6.307575px;}
._a{width:7.443225px;}
._8{width:8.751600px;}
._12{width:10.144200px;}
._13{width:11.899800px;}
._11{width:13.302600px;}
._c{width:15.110400px;}
._b{width:16.219200px;}
._d{width:20.299200px;}
._34{width:21.933120px;}
._1b{width:26.059800px;}
._17{width:30.660000px;}
._30{width:32.719125px;}
._15{width:35.027827px;}
._20{width:42.508800px;}
._19{width:83.167200px;}
._1f{width:131.486400px;}
._1d{width:137.381760px;}
._2e{width:169.110720px;}
._2d{width:181.762560px;}
._25{width:191.963520px;}
._2f{width:203.621760px;}
._27{width:225.812160px;}
._1e{width:253.831680px;}
._29{width:272.246400px;}
._18{width:283.176000px;}
._31{width:286.925184px;}
._28{width:293.443200px;}
._22{width:315.368640px;}
._2a{width:408.369600px;}
._32{width:467.588160px;}
._23{width:481.034880px;}
._24{width:502.165440px;}
._26{width:611.878800px;}
._2b{width:621.115200px;}
._33{width:1866.442200px;}
._2c{width:1867.618200px;}
._10{width:1889.332200px;}
.fcb{color:rgb(128,0,0);}
.fca{color:rgb(159,48,57);}
.fc8{color:transparent;}
.fc6{color:rgb(126,101,24);}
.fc5{color:rgb(247,64,58);}
.fc4{color:rgb(42,161,168);}
.fc3{color:rgb(160,32,44);}
.fc9{color:rgb(69,105,108);}
.fc1{color:rgb(233,71,52);}
.fc7{color:rgb(89,89,89);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:22.219200px;}
.fsf{font-size:30.000000px;}
.fs7{font-size:30.782400px;}
.fs12{font-size:33.328800px;}
.fsb{font-size:34.800000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:41.100000px;}
.fs3{font-size:42.000000px;}
.fs17{font-size:46.800000px;}
.fsd{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fs16{font-size:50.400000px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:52.800000px;}
.fs15{font-size:54.000000px;}
.fs14{font-size:57.000000px;}
.fs10{font-size:61.325400px;}
.fs2{font-size:66.000000px;}
.fsc{font-size:66.240000px;}
.fs11{font-size:77.323200px;}
.fse{font-size:83.520000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:106.160400px;}
.fs0{font-size:264.000000px;}
.y1bc{bottom:-72.190800px;}
.y1bb{bottom:-64.682100px;}
.ye6{bottom:-64.201050px;}
.y1fa{bottom:-61.015050px;}
.ye5{bottom:-53.701050px;}
.ye4{bottom:-41.467950px;}
.y217{bottom:-40.875450px;}
.ye3{bottom:-30.967950px;}
.y27a{bottom:-29.388450px;}
.y88{bottom:-17.654250px;}
.y105{bottom:-11.832600px;}
.yf2{bottom:-10.216050px;}
.y0{bottom:0.000000px;}
.y146{bottom:2.943450px;}
.y13f{bottom:2.944500px;}
.yf6{bottom:4.332300px;}
.yf4{bottom:4.332600px;}
.yfc{bottom:4.332750px;}
.yfa{bottom:4.333050px;}
.yf8{bottom:4.333350px;}
.y126{bottom:4.647000px;}
.y119{bottom:4.659810px;}
.y1cd{bottom:4.659960px;}
.y17d{bottom:4.661010px;}
.ya4{bottom:4.666440px;}
.yd2{bottom:4.666890px;}
.y9b{bottom:4.672920px;}
.y113{bottom:4.679250px;}
.y98{bottom:4.679400px;}
.y211{bottom:4.679550px;}
.y151{bottom:4.679700px;}
.yca{bottom:4.679850px;}
.y80{bottom:4.680150px;}
.y23a{bottom:4.680300px;}
.y179{bottom:4.680450px;}
.y16f{bottom:4.680600px;}
.y12a{bottom:4.680750px;}
.y111{bottom:4.680900px;}
.y145{bottom:14.943450px;}
.y13e{bottom:14.944500px;}
.y125{bottom:25.893480px;}
.y118{bottom:25.906290px;}
.y1cc{bottom:25.906440px;}
.y17c{bottom:25.907490px;}
.ya3{bottom:25.912920px;}
.yd1{bottom:25.913370px;}
.y9a{bottom:25.919400px;}
.ye1{bottom:30.498000px;}
.y8{bottom:47.111700px;}
.y124{bottom:47.139960px;}
.y117{bottom:47.152770px;}
.y1cb{bottom:47.152920px;}
.y17b{bottom:47.153970px;}
.ya2{bottom:47.159400px;}
.yd0{bottom:47.159850px;}
.y123{bottom:68.386440px;}
.y116{bottom:68.399250px;}
.y1ca{bottom:68.399400px;}
.y17a{bottom:68.400450px;}
.y122{bottom:89.632920px;}
.y19b{bottom:97.334550px;}
.y96{bottom:97.334700px;}
.y77{bottom:97.370250px;}
.y1d{bottom:97.884900px;}
.y53{bottom:97.946700px;}
.y7b{bottom:103.474050px;}
.y10f{bottom:103.509450px;}
.y16d{bottom:103.959450px;}
.y121{bottom:110.879400px;}
.y76{bottom:111.620250px;}
.y16c{bottom:116.126400px;}
.y19a{bottom:116.834550px;}
.y95{bottom:116.834700px;}
.y1c{bottom:120.384900px;}
.y52{bottom:120.446700px;}
.y20d{bottom:121.469700px;}
.y16a{bottom:122.152500px;}
.y75{bottom:125.870250px;}
.y287{bottom:126.584700px;}
.y18b{bottom:126.715050px;}
.y20a{bottom:131.089500px;}
.y199{bottom:136.334550px;}
.y94{bottom:136.334700px;}
.y78{bottom:138.564450px;}
.y74{bottom:140.120400px;}
.y236{bottom:140.205000px;}
.y267{bottom:140.940000px;}
.y254{bottom:142.039500px;}
.y286{bottom:142.334700px;}
.y1b{bottom:142.884900px;}
.y51{bottom:142.946700px;}
.y169{bottom:148.197900px;}
.y161{bottom:148.860750px;}
.y18d{bottom:149.845050px;}
.y247{bottom:150.529500px;}
.y107{bottom:155.715450px;}
.y198{bottom:155.834550px;}
.y93{bottom:155.834700px;}
.y285{bottom:158.084700px;}
.y235{bottom:159.170250px;}
.y231{bottom:159.761250px;}
.y209{bottom:160.660950px;}
.y205{bottom:161.256450px;}
.y1a{bottom:165.384900px;}
.y50{bottom:165.446700px;}
.y7e{bottom:165.716550px;}
.y246{bottom:167.292900px;}
.y242{bottom:167.888550px;}
.y18c{bottom:169.345050px;}
.y18a{bottom:169.913850px;}
.y177{bottom:170.156100px;}
.y284{bottom:173.834700px;}
.y197{bottom:175.334550px;}
.y92{bottom:175.334700px;}
.y168{bottom:175.728900px;}
.y160{bottom:176.382750px;}
.y266{bottom:177.135000px;}
.y10d{bottom:177.565950px;}
.y25f{bottom:183.460800px;}
.y7d{bottom:185.216550px;}
.y28f{bottom:187.573200px;}
.y19{bottom:187.884900px;}
.y4f{bottom:187.946700px;}
.y265{bottom:189.136500px;}
.y283{bottom:189.584700px;}
.y188{bottom:193.165500px;}
.y189{bottom:193.176600px;}
.y196{bottom:194.834550px;}
.y91{bottom:194.834700px;}
.y249{bottom:194.902800px;}
.y10c{bottom:197.065950px;}
.y20c{bottom:200.609850px;}
.y176{bottom:201.564000px;}
.y1ba{bottom:203.060100px;}
.y167{bottom:203.259900px;}
.y28e{bottom:203.323200px;}
.y15f{bottom:203.904750px;}
.y234{bottom:204.446250px;}
.y7c{bottom:204.716550px;}
.y230{bottom:205.040250px;}
.y282{bottom:205.334700px;}
.y208{bottom:205.758450px;}
.y204{bottom:206.355450px;}
.y238{bottom:208.319100px;}
.y248{bottom:209.902800px;}
.y245{bottom:210.122400px;}
.y220{bottom:210.377700px;}
.y4e{bottom:210.446700px;}
.y241{bottom:210.719550px;}
.y1a7{bottom:213.322950px;}
.y195{bottom:214.334550px;}
.y73{bottom:214.334700px;}
.y20b{bottom:215.609850px;}
.y279{bottom:215.793750px;}
.y10b{bottom:216.565950px;}
.y264{bottom:217.087500px;}
.y25e{bottom:217.705800px;}
.y253{bottom:217.800150px;}
.y250{bottom:218.400150px;}
.y183{bottom:220.406250px;}
.y281{bottom:221.084700px;}
.y268{bottom:223.515750px;}
.y187{bottom:227.971950px;}
.y255{bottom:228.891750px;}
.y166{bottom:230.790900px;}
.y15e{bottom:231.426750px;}
.y237{bottom:232.319100px;}
.y18{bottom:232.884900px;}
.y4d{bottom:232.946700px;}
.y194{bottom:233.834550px;}
.y72{bottom:233.834700px;}
.y28d{bottom:237.073200px;}
.y6{bottom:237.824700px;}
.y186{bottom:239.973450px;}
.y87{bottom:242.224500px;}
.y175{bottom:243.649950px;}
.y173{bottom:244.250400px;}
.y181{bottom:248.153250px;}
.y233{bottom:249.722250px;}
.y22f{bottom:250.319250px;}
.y207{bottom:250.855950px;}
.y263{bottom:251.338500px;}
.y203{bottom:251.454450px;}
.y25d{bottom:251.950800px;}
.y280{bottom:252.584700px;}
.y244{bottom:252.951900px;}
.y193{bottom:253.334550px;}
.y71{bottom:253.334700px;}
.y240{bottom:253.550550px;}
.y17{bottom:255.384900px;}
.y4c{bottom:255.446700px;}
.y165{bottom:258.321900px;}
.y15d{bottom:258.948750px;}
.y86{bottom:259.184100px;}
.y16b{bottom:260.314200px;}
.ye2{bottom:264.716850px;}
.y252{bottom:267.129150px;}
.y24f{bottom:267.729150px;}
.y27f{bottom:268.334700px;}
.y28c{bottom:268.573200px;}
.y192{bottom:272.834550px;}
.y70{bottom:272.834700px;}
.yfe{bottom:272.835000px;}
.y102{bottom:275.792290px;}
.y16{bottom:277.884900px;}
.y27e{bottom:284.084700px;}
.y28b{bottom:284.323200px;}
.y262{bottom:285.589500px;}
.y164{bottom:285.852900px;}
.y25c{bottom:286.195800px;}
.y15c{bottom:286.470750px;}
.y191{bottom:292.334550px;}
.y6f{bottom:292.334700px;}
.y232{bottom:294.998250px;}
.y22e{bottom:295.598250px;}
.y243{bottom:295.781400px;}
.y206{bottom:295.953450px;}
.y23f{bottom:296.381550px;}
.y202{bottom:296.553450px;}
.y28a{bottom:300.073200px;}
.y4b{bottom:300.446700px;}
.y4{bottom:301.284150px;}
.y182{bottom:303.656250px;}
.yff{bottom:306.675600px;}
.yee{bottom:308.051850px;}
.y185{bottom:311.226450px;}
.y190{bottom:311.834550px;}
.yc6{bottom:311.834700px;}
.y163{bottom:313.383900px;}
.y15b{bottom:313.992750px;}
.y261{bottom:314.139000px;}
.y27d{bottom:315.584700px;}
.y289{bottom:315.823200px;}
.y251{bottom:316.458150px;}
.y24e{bottom:317.058150px;}
.y174{bottom:318.997950px;}
.y172{bottom:319.598400px;}
.y25b{bottom:320.440800px;}
.y15{bottom:322.884900px;}
.y4a{bottom:322.946700px;}
.y184{bottom:323.227950px;}
.y260{bottom:326.140500px;}
.y90{bottom:326.834700px;}
.y18f{bottom:331.334550px;}
.y6e{bottom:331.334700px;}
.y180{bottom:331.403250px;}
.y288{bottom:331.573200px;}
.y3{bottom:332.070750px;}
.y162{bottom:340.914900px;}
.yc4{bottom:341.143500px;}
.y15a{bottom:341.514750px;}
.y14{bottom:345.384900px;}
.y49{bottom:345.446700px;}
.y18e{bottom:350.834550px;}
.y6d{bottom:350.834700px;}
.y228{bottom:353.834700px;}
.y2{bottom:362.857200px;}
.y13{bottom:367.884900px;}
.y48{bottom:367.946700px;}
.y6c{bottom:370.334700px;}
.y14c{bottom:370.728900px;}
.y101{bottom:381.169624px;}
.y6b{bottom:389.834700px;}
.y47{bottom:390.446700px;}
.yd4{bottom:390.859350px;}
.y6a{bottom:409.334700px;}
.y12{bottom:412.884900px;}
.y85{bottom:418.079100px;}
.y1f9{bottom:419.785200px;}
.y69{bottom:428.834700px;}
.y11{bottom:435.384900px;}
.y46{bottom:435.446700px;}
.y68{bottom:448.334700px;}
.y45{bottom:457.946700px;}
.y84{bottom:462.008100px;}
.y67{bottom:467.834700px;}
.y20e{bottom:469.775250px;}
.y159{bottom:471.447000px;}
.y22d{bottom:473.293500px;}
.y103{bottom:475.398473px;}
.y201{bottom:476.509500px;}
.y20f{bottom:477.715050px;}
.y100{bottom:478.756350px;}
.y10{bottom:480.384900px;}
.y44{bottom:480.446700px;}
.y8f{bottom:487.334700px;}
.y23e{bottom:490.932000px;}
.y158{bottom:492.327000px;}
.y1{bottom:492.540750px;}
.yab{bottom:492.720900px;}
.y22c{bottom:494.173500px;}
.y17f{bottom:496.929000px;}
.y200{bottom:497.389500px;}
.y104{bottom:499.778491px;}
.yf{bottom:502.884900px;}
.y43{bottom:502.946700px;}
.y7a{bottom:506.834550px;}
.y66{bottom:506.834700px;}
.y216{bottom:506.835000px;}
.y23d{bottom:511.812000px;}
.y157{bottom:513.207000px;}
.y22b{bottom:515.053500px;}
.y24d{bottom:515.277000px;}
.y17e{bottom:517.809000px;}
.y1ff{bottom:518.269500px;}
.ye{bottom:525.384900px;}
.y79{bottom:526.334550px;}
.y65{bottom:526.334700px;}
.y23c{bottom:532.692000px;}
.y156{bottom:534.087000px;}
.y21f{bottom:535.301850px;}
.y25a{bottom:535.492500px;}
.y21b{bottom:535.897650px;}
.y22a{bottom:535.933500px;}
.y24c{bottom:536.155500px;}
.y178{bottom:538.689000px;}
.y1fe{bottom:539.149500px;}
.y64{bottom:545.834700px;}
.yd{bottom:547.884900px;}
.y42{bottom:547.946700px;}
.yc8{bottom:548.084700px;}
.y23b{bottom:553.572000px;}
.y155{bottom:554.967000px;}
.ya9{bottom:555.360900px;}
.y259{bottom:556.372500px;}
.y229{bottom:556.813500px;}
.y24b{bottom:557.035500px;}
.y5{bottom:559.905300px;}
.y1fd{bottom:560.029500px;}
.y8e{bottom:565.334550px;}
.y63{bottom:565.334700px;}
.y127{bottom:567.978900px;}
.yc{bottom:570.384900px;}
.y41{bottom:570.446700px;}
.y239{bottom:574.452000px;}
.y154{bottom:575.847000px;}
.y258{bottom:577.252500px;}
.y21e{bottom:580.525350px;}
.y21a{bottom:581.122650px;}
.y8d{bottom:584.834550px;}
.y62{bottom:584.834700px;}
.yb{bottom:592.884900px;}
.y40{bottom:592.946700px;}
.y153{bottom:596.727000px;}
.y257{bottom:598.132500px;}
.y24a{bottom:598.797000px;}
.y8c{bottom:604.334550px;}
.y61{bottom:604.334700px;}
.y171{bottom:613.017000px;}
.ya{bottom:615.384900px;}
.y3f{bottom:615.446700px;}
.y152{bottom:617.607000px;}
.yfd{bottom:617.839500px;}
.ya7{bottom:618.000900px;}
.y256{bottom:619.012500px;}
.y8b{bottom:623.834550px;}
.y60{bottom:623.834700px;}
.y21d{bottom:625.748850px;}
.y219{bottom:626.347650px;}
.y170{bottom:633.897000px;}
.yfb{bottom:637.170000px;}
.y1d2{bottom:637.325400px;}
.y3e{bottom:637.946700px;}
.y150{bottom:638.487000px;}
.y227{bottom:643.334550px;}
.y5f{bottom:643.334700px;}
.y9{bottom:650.640750px;}
.y16e{bottom:654.777000px;}
.yf9{bottom:656.500500px;}
.ya5{bottom:659.760900px;}
.y226{bottom:662.834550px;}
.y5e{bottom:662.834700px;}
.y1c4{bottom:668.974050px;}
.y21c{bottom:670.972350px;}
.y218{bottom:671.572650px;}
.yf7{bottom:675.831000px;}
.y225{bottom:682.334550px;}
.y5d{bottom:682.334700px;}
.y3d{bottom:682.946700px;}
.y1fc{bottom:683.542950px;}
.y10e{bottom:688.474050px;}
.yf5{bottom:695.163000px;}
.y83{bottom:699.121500px;}
.y224{bottom:701.834550px;}
.y5c{bottom:701.834700px;}
.y1ce{bottom:702.912000px;}
.y1fb{bottom:703.042950px;}
.y3c{bottom:705.446700px;}
.yc5{bottom:707.974050px;}
.yf3{bottom:714.493500px;}
.y14d{bottom:715.913850px;}
.y82{bottom:720.001500px;}
.y223{bottom:721.334550px;}
.y5b{bottom:721.334700px;}
.ya0{bottom:722.400900px;}
.y11a{bottom:722.821500px;}
.y89{bottom:723.564450px;}
.y3b{bottom:727.946700px;}
.y106{bottom:736.899750px;}
.y222{bottom:740.834550px;}
.y5a{bottom:740.834700px;}
.y81{bottom:740.881500px;}
.y1cf{bottom:741.725400px;}
.y1eb{bottom:741.952200px;}
.y1f8{bottom:746.805750px;}
.y14b{bottom:748.329450px;}
.y13a{bottom:748.928850px;}
.y3a{bottom:750.446700px;}
.y9d{bottom:751.216500px;}
.y1e1{bottom:752.887200px;}
.y10a{bottom:757.594200px;}
.y221{bottom:760.334550px;}
.y59{bottom:760.334700px;}
.y7f{bottom:761.761500px;}
.y9e{bottom:764.160900px;}
.yc3{bottom:770.412150px;}
.y39{bottom:772.946700px;}
.y14a{bottom:774.012450px;}
.y139{bottom:774.614850px;}
.y1ea{bottom:774.838200px;}
.y109{bottom:777.094200px;}
.y1f7{bottom:779.691750px;}
.y58{bottom:779.834700px;}
.yc2{bottom:782.413650px;}
.yb2{bottom:782.433300px;}
.y1e0{bottom:785.773200px;}
.yc1{bottom:794.415150px;}
.y38{bottom:795.446700px;}
.y108{bottom:796.594200px;}
.ye8{bottom:797.503650px;}
.y11b{bottom:797.658900px;}
.y57{bottom:799.334700px;}
.y149{bottom:799.695450px;}
.y138{bottom:800.300850px;}
.y1c1{bottom:805.474050px;}
.y1e9{bottom:807.724200px;}
.y1f6{bottom:812.577750px;}
.yc0{bottom:815.541150px;}
.y215{bottom:816.240000px;}
.ye7{bottom:817.003650px;}
.y37{bottom:817.946700px;}
.y1df{bottom:818.659200px;}
.y56{bottom:818.834700px;}
.yed{bottom:820.128000px;}
.y148{bottom:825.378450px;}
.y137{bottom:825.986850px;}
.ybf{bottom:827.542650px;}
.yb1{bottom:827.559300px;}
.y1be{bottom:831.887850px;}
.y27c{bottom:835.465050px;}
.y214{bottom:837.120000px;}
.y2a{bottom:838.334700px;}
.ybe{bottom:839.544150px;}
.yf0{bottom:840.398850px;}
.y1e8{bottom:840.610200px;}
.y1f5{bottom:845.463750px;}
.yd3{bottom:848.085000px;}
.y27b{bottom:848.215050px;}
.y1c0{bottom:850.790700px;}
.y147{bottom:851.061450px;}
.y1de{bottom:851.545200px;}
.y136{bottom:851.672850px;}
.y14f{bottom:857.834700px;}
.y213{bottom:858.000000px;}
.y36{bottom:862.946700px;}
.ybd{bottom:866.371650px;}
.y144{bottom:868.105500px;}
.y1bf{bottom:870.290700px;}
.y1bd{bottom:870.887850px;}
.yb0{bottom:872.685300px;}
.y1e7{bottom:873.496200px;}
.y1a6{bottom:876.067500px;}
.y29{bottom:877.334700px;}
.y135{bottom:877.358850px;}
.y1f4{bottom:878.349750px;}
.ybc{bottom:878.373150px;}
.y212{bottom:878.880000px;}
.ydc{bottom:879.239700px;}
.y278{bottom:881.994000px;}
.y1dd{bottom:884.431200px;}
.y35{bottom:885.446700px;}
.yd8{bottom:890.498700px;}
.ye0{bottom:890.575050px;}
.y28{bottom:896.834700px;}
.y210{bottom:899.760000px;}
.y1b9{bottom:901.098000px;}
.y143{bottom:902.449500px;}
.y134{bottom:903.044850px;}
.y1f3{bottom:905.534250px;}
.ybb{bottom:905.799150px;}
.y1e6{bottom:906.382200px;}
.y34{bottom:907.946700px;}
.y277{bottom:909.869100px;}
.y273{bottom:910.455600px;}
.y1a5{bottom:912.982800px;}
.y1a2{bottom:913.574100px;}
.y1b8{bottom:914.358150px;}
.y1b3{bottom:914.964450px;}
.y27{bottom:916.334700px;}
.y1dc{bottom:917.317200px;}
.y1f2{bottom:917.535750px;}
.yba{bottom:917.800650px;}
.yaf{bottom:917.811300px;}
.ydb{bottom:922.205700px;}
.ydf{bottom:927.241050px;}
.y142{bottom:928.132500px;}
.y133{bottom:928.730850px;}
.yb9{bottom:929.802150px;}
.y33{bottom:930.446700px;}
.yd7{bottom:933.464700px;}
.y26{bottom:935.834700px;}
.y1e5{bottom:939.268200px;}
.y1f1{bottom:944.121750px;}
.y1b7{bottom:947.758650px;}
.y1b2{bottom:948.363450px;}
.y1db{bottom:950.203200px;}
.y32{bottom:952.946700px;}
.y141{bottom:953.815500px;}
.y132{bottom:954.416850px;}
.y276{bottom:954.945600px;}
.y25{bottom:955.334700px;}
.y272{bottom:955.536600px;}
.yb8{bottom:956.629650px;}
.yae{bottom:962.937300px;}
.yda{bottom:965.171700px;}
.yb7{bottom:968.631150px;}
.yde{bottom:970.207050px;}
.y1f0{bottom:971.306250px;}
.y1e4{bottom:972.154200px;}
.y1a4{bottom:972.549300px;}
.y1a1{bottom:973.145100px;}
.y24{bottom:974.834700px;}
.yd6{bottom:976.430700px;}
.y140{bottom:979.498500px;}
.y131{bottom:980.102850px;}
.y1b6{bottom:981.159150px;}
.y1b1{bottom:981.762450px;}
.y1da{bottom:983.089200px;}
.y1ef{bottom:983.307750px;}
.y23{bottom:994.334700px;}
.y13d{bottom:996.541500px;}
.y31{bottom:997.946700px;}
.y275{bottom:1000.022100px;}
.y271{bottom:1000.617600px;}
.yb6{bottom:1001.758650px;}
.y1ee{bottom:1004.192250px;}
.y1e3{bottom:1005.040200px;}
.y130{bottom:1005.788850px;}
.yad{bottom:1008.063300px;}
.yd9{bottom:1008.137700px;}
.ydd{bottom:1013.173050px;}
.yb5{bottom:1013.760150px;}
.y22{bottom:1013.834700px;}
.y1b5{bottom:1014.559650px;}
.y1b0{bottom:1015.161450px;}
.y1d9{bottom:1015.975200px;}
.y1ed{bottom:1016.193750px;}
.yd5{bottom:1019.396700px;}
.y30{bottom:1020.446700px;}
.yf1{bottom:1023.737850px;}
.y13c{bottom:1030.877700px;}
.y12f{bottom:1031.474850px;}
.y1a3{bottom:1032.115800px;}
.y1a0{bottom:1032.716100px;}
.y21{bottom:1033.334700px;}
.y1e2{bottom:1037.926200px;}
.y1ec{bottom:1042.779750px;}
.y2f{bottom:1042.946700px;}
.y274{bottom:1045.098600px;}
.y270{bottom:1045.698600px;}
.yb4{bottom:1046.887650px;}
.y1b4{bottom:1047.960150px;}
.y1af{bottom:1048.560450px;}
.y1d8{bottom:1048.861200px;}
.y20{bottom:1052.834700px;}
.yac{bottom:1053.189300px;}
.yef{bottom:1054.004850px;}
.y13b{bottom:1056.560700px;}
.y12e{bottom:1057.160850px;}
.yb3{bottom:1058.889150px;}
.y2e{bottom:1065.446700px;}
.y55{bottom:1072.334700px;}
.y2d{bottom:1087.946700px;}
.y1f{bottom:1091.834700px;}
.y14e{bottom:1106.834700px;}
.y2c{bottom:1110.446700px;}
.y1c3{bottom:1111.334550px;}
.yc7{bottom:1111.334700px;}
.y8a{bottom:1113.584700px;}
.y1c2{bottom:1130.834550px;}
.y54{bottom:1130.834700px;}
.y1e{bottom:1131.113250px;}
.y2b{bottom:1132.946700px;}
.yec{bottom:1169.580000px;}
.y12d{bottom:1181.721000px;}
.yeb{bottom:1190.460000px;}
.y7{bottom:1197.611700px;}
.y1ae{bottom:1202.182500px;}
.y12c{bottom:1202.601000px;}
.yea{bottom:1211.340000px;}
.y1ad{bottom:1223.062500px;}
.y12b{bottom:1223.481000px;}
.y1d7{bottom:1231.158000px;}
.ye9{bottom:1232.220000px;}
.ycf{bottom:1234.264500px;}
.yaa{bottom:1239.258000px;}
.y1ac{bottom:1243.942500px;}
.y129{bottom:1244.359500px;}
.y19f{bottom:1248.735000px;}
.y1d6{bottom:1252.038000px;}
.y26f{bottom:1261.761000px;}
.y1ab{bottom:1264.822500px;}
.y128{bottom:1265.241000px;}
.y19e{bottom:1269.615000px;}
.y1d5{bottom:1272.918000px;}
.y26e{bottom:1282.641000px;}
.y1aa{bottom:1285.702500px;}
.y120{bottom:1286.121000px;}
.y19d{bottom:1290.495000px;}
.y1d4{bottom:1293.798000px;}
.yce{bottom:1296.904500px;}
.ya8{bottom:1301.898000px;}
.y26d{bottom:1303.521000px;}
.y1a9{bottom:1306.582500px;}
.y19c{bottom:1311.375000px;}
.y1d3{bottom:1314.678000px;}
.ycd{bottom:1317.784500px;}
.y26c{bottom:1324.401000px;}
.y1a8{bottom:1327.462500px;}
.y1d1{bottom:1335.558000px;}
.ycc{bottom:1338.664500px;}
.y26b{bottom:1345.281000px;}
.ycb{bottom:1359.544500px;}
.ya6{bottom:1364.538000px;}
.y26a{bottom:1366.161000px;}
.yc9{bottom:1380.424500px;}
.y269{bottom:1387.041000px;}
.ya1{bottom:1406.298000px;}
.y1d0{bottom:1419.078000px;}
.y11f{bottom:1432.281000px;}
.y1c9{bottom:1439.958000px;}
.y11e{bottom:1453.159500px;}
.y9f{bottom:1468.938000px;}
.y11d{bottom:1474.041000px;}
.y11c{bottom:1494.921000px;}
.y9c{bottom:1510.698000px;}
.y115{bottom:1515.801000px;}
.y1c8{bottom:1523.478000px;}
.y1c7{bottom:1544.358000px;}
.y99{bottom:1552.458000px;}
.y1c6{bottom:1565.238000px;}
.y1c5{bottom:1586.118000px;}
.y97{bottom:1594.218000px;}
.y114{bottom:1599.321000px;}
.y112{bottom:1620.201000px;}
.y110{bottom:1641.079500px;}
.h44{height:-555.415500px;}
.h45{height:-534.537000px;}
.h46{height:-513.657000px;}
.h19{height:-512.766000px;}
.h7b{height:-512.706000px;}
.h7c{height:-491.826000px;}
.h1b{height:-471.006000px;}
.h7d{height:-470.946000px;}
.h7e{height:-450.066000px;}
.h47{height:-430.137000px;}
.h1c{height:-429.246000px;}
.h49{height:-409.257000px;}
.h4a{height:-388.377000px;}
.h1e{height:-387.486000px;}
.h4b{height:-367.495500px;}
.h7f{height:-366.546000px;}
.h4c{height:-346.617000px;}
.h81{height:-345.666000px;}
.h1f{height:-324.846000px;}
.h25{height:-317.839500px;}
.hb1{height:-314.706000px;}
.h27{height:-296.959500px;}
.hb2{height:-293.826000px;}
.h61{height:-291.637500px;}
.h20{height:-283.086000px;}
.h28{height:-276.079500px;}
.hb3{height:-272.946000px;}
.h56{height:-272.496000px;}
.h11{height:-270.820500px;}
.h62{height:-270.757500px;}
.hab{height:-263.334000px;}
.h82{height:-262.146000px;}
.h29{height:-255.199500px;}
.hb4{height:-252.066000px;}
.h57{height:-251.616000px;}
.h71{height:-250.864500px;}
.ha0{height:-250.086000px;}
.h13{height:-249.940500px;}
.h63{height:-249.877500px;}
.ha6{height:-247.962000px;}
.hac{height:-242.454000px;}
.h83{height:-241.266000px;}
.h2a{height:-234.319500px;}
.h8a{height:-234.060000px;}
.h6b{height:-233.926500px;}
.hb5{height:-231.186000px;}
.h99{height:-230.844000px;}
.h58{height:-230.736000px;}
.h72{height:-229.984500px;}
.ha1{height:-229.206000px;}
.h14{height:-229.060500px;}
.had{height:-221.574000px;}
.h21{height:-220.446000px;}
.h84{height:-220.386000px;}
.h8b{height:-213.180000px;}
.h6d{height:-213.046500px;}
.hb6{height:-210.306000px;}
.h9a{height:-209.964000px;}
.h59{height:-209.856000px;}
.h73{height:-209.104500px;}
.ha2{height:-208.326000px;}
.h15{height:-208.180500px;}
.ha7{height:-206.200500px;}
.h91{height:-201.055500px;}
.hae{height:-200.694000px;}
.h4d{height:-200.457000px;}
.h85{height:-199.506000px;}
.h37{height:-192.429000px;}
.h8c{height:-192.300000px;}
.h6e{height:-192.166500px;}
.hb7{height:-189.426000px;}
.h9b{height:-189.084000px;}
.h5a{height:-188.976000px;}
.h74{height:-188.224500px;}
.ha3{height:-187.446000px;}
.ha8{height:-185.320500px;}
.h92{height:-180.175500px;}
.haf{height:-179.814000px;}
.h4e{height:-179.577000px;}
.h86{height:-178.626000px;}
.h39{height:-173.098500px;}
.h2b{height:-171.679500px;}
.h8d{height:-171.420000px;}
.h6f{height:-171.286500px;}
.h66{height:-168.355500px;}
.h9c{height:-168.204000px;}
.h5b{height:-168.096000px;}
.h75{height:-167.344500px;}
.ha4{height:-166.566000px;}
.ha9{height:-164.442000px;}
.h30{height:-162.861000px;}
.h93{height:-159.295500px;}
.h4f{height:-158.695500px;}
.h22{height:-157.806000px;}
.h87{height:-157.746000px;}
.h3a{height:-153.766500px;}
.h8e{height:-150.540000px;}
.h68{height:-147.475500px;}
.h9d{height:-147.324000px;}
.h5c{height:-147.216000px;}
.h76{height:-146.464500px;}
.h31{height:-141.981000px;}
.h94{height:-138.415500px;}
.h50{height:-137.817000px;}
.h3b{height:-134.436000px;}
.h69{height:-126.595500px;}
.h5d{height:-126.336000px;}
.h77{height:-125.584500px;}
.h32{height:-121.101000px;}
.h95{height:-117.535500px;}
.h51{height:-116.937000px;}
.h3c{height:-115.105500px;}
.h5e{height:-105.456000px;}
.h33{height:-100.221000px;}
.h52{height:-96.057000px;}
.h3d{height:-95.775000px;}
.h7a{height:-53.290500px;}
.h96{height:-26.115000px;}
.h41{height:-3.280500px;}
.h42{height:16.881384px;}
.h36{height:22.792969px;}
.h23{height:24.609375px;}
.h2d{height:24.943359px;}
.h40{height:25.322077px;}
.h53{height:25.687500px;}
.h16{height:26.103516px;}
.h18{height:26.604000px;}
.hf{height:26.626758px;}
.h10{height:27.351562px;}
.hd{height:27.544922px;}
.h88{height:27.580078px;}
.h60{height:28.710938px;}
.h2e{height:29.100586px;}
.h64{height:30.454102px;}
.h43{height:31.910156px;}
.h5{height:32.135742px;}
.h89{height:32.176758px;}
.h98{height:32.648438px;}
.h2f{height:33.257812px;}
.hbc{height:36.036914px;}
.hba{height:36.128320px;}
.hbb{height:36.265430px;}
.hb9{height:36.914062px;}
.h79{height:37.415039px;}
.h90{height:38.292188px;}
.h55{height:38.748047px;}
.he{height:39.021973px;}
.ha{height:40.657031px;}
.h8{height:40.760156px;}
.h9{height:40.914844px;}
.hc{height:41.285449px;}
.h38{height:41.712052px;}
.h54{height:43.612793px;}
.h12{height:44.149219px;}
.h6c{height:45.054844px;}
.h1a{height:45.281250px;}
.h26{height:45.895781px;}
.h67{height:47.545312px;}
.h4{height:50.821289px;}
.h7{height:51.143555px;}
.h3f{height:52.593368px;}
.h35{height:57.093750px;}
.h9f{height:57.134766px;}
.h24{height:57.421875px;}
.h6{height:64.271484px;}
.hb{height:65.442275px;}
.h3{height:81.227220px;}
.h65{height:161.575500px;}
.ha5{height:173.836500px;}
.h78{height:175.500000px;}
.h6a{height:177.168000px;}
.h9e{height:185.764500px;}
.hb8{height:190.341000px;}
.h97{height:191.869500px;}
.h8f{height:194.880000px;}
.h70{height:201.381000px;}
.h2{height:201.996094px;}
.haa{height:208.795500px;}
.h2c{height:214.500000px;}
.hb0{height:214.738500px;}
.h5f{height:243.838500px;}
.h17{height:248.716500px;}
.h3e{height:249.229500px;}
.h34{height:249.231000px;}
.h1d{height:330.235500px;}
.h48{height:362.842500px;}
.h80{height:370.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:-108.184500px;}
.w1f{width:-44.598000px;}
.wa{width:-25.744500px;}
.w30{width:-1.554000px;}
.w17{width:2.170500px;}
.w1d{width:51.826500px;}
.wc{width:68.235000px;}
.w28{width:73.644000px;}
.w10{width:74.616000px;}
.w2b{width:80.998500px;}
.w2{width:81.000000px;}
.w1a{width:96.120000px;}
.we{width:102.834000px;}
.wf{width:104.481000px;}
.w25{width:127.216500px;}
.w12{width:151.008000px;}
.w11{width:204.474000px;}
.w4{width:231.120000px;}
.wb{width:231.685500px;}
.w3{width:245.196000px;}
.wd{width:258.109500px;}
.w6{width:334.440000px;}
.w21{width:350.320500px;}
.w20{width:350.583000px;}
.w31{width:350.787000px;}
.w2a{width:354.804000px;}
.w29{width:355.066500px;}
.w35{width:358.920000px;}
.w2f{width:359.640000px;}
.w2e{width:359.916000px;}
.w1c{width:360.000000px;}
.w1b{width:360.277500px;}
.w23{width:360.360000px;}
.w24{width:361.080000px;}
.w22{width:361.416000px;}
.w33{width:361.440000px;}
.w34{width:362.286000px;}
.w32{width:363.532500px;}
.w9{width:363.544500px;}
.w1e{width:383.386500px;}
.w15{width:448.870500px;}
.w19{width:472.986000px;}
.w18{width:475.156500px;}
.w2d{width:487.080000px;}
.w37{width:488.394000px;}
.w36{width:489.114000px;}
.w16{width:491.400000px;}
.w13{width:491.487000px;}
.w14{width:491.488500px;}
.w27{width:496.936500px;}
.w26{width:497.157000px;}
.w7{width:501.840000px;}
.w5{width:509.385000px;}
.w2c{width:509.760000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2b{left:-187.024200px;}
.x8c{left:-123.438150px;}
.x2c{left:-104.584200px;}
.xc6{left:-80.394000px;}
.x2e{left:-77.584200px;}
.x80{left:-42.133800px;}
.x8d{left:-40.998150px;}
.x2d{left:-22.144200px;}
.x9d{left:-17.863950px;}
.x8e{left:-13.998150px;}
.x44{left:-4.756950px;}
.x0{left:0.000000px;}
.x39{left:1.028400px;}
.xe{left:2.159550px;}
.x6b{left:5.771100px;}
.x64{left:12.315000px;}
.x42{left:17.176500px;}
.xc7{left:29.046000px;}
.x4e{left:31.978050px;}
.x4c{left:35.795100px;}
.x6c{left:41.411100px;}
.x63{left:43.374150px;}
.x4d{left:44.778300px;}
.xb8{left:48.471750px;}
.x3a{left:50.986350px;}
.x9c{left:52.221600px;}
.x55{left:55.723500px;}
.x7c{left:58.113000px;}
.x7{left:59.527500px;}
.x12{left:62.458500px;}
.x8{left:63.779550px;}
.x69{left:65.905500px;}
.x7d{left:67.246500px;}
.x7e{left:69.525000px;}
.x23{left:70.744200px;}
.x43{left:73.446000px;}
.xc9{left:75.103200px;}
.x9{left:76.414650px;}
.xa{left:80.750250px;}
.x11{left:82.027500px;}
.x4{left:83.976300px;}
.x3{left:85.039350px;}
.xac{left:87.307650px;}
.x1{left:89.291400px;}
.x4a{left:90.388079px;}
.x2{left:91.509900px;}
.x45{left:96.563550px;}
.x50{left:98.458200px;}
.x1f{left:100.312200px;}
.x5{left:102.010050px;}
.x21{left:103.472700px;}
.x46{left:104.562450px;}
.xd{left:106.381800px;}
.x20{left:108.407700px;}
.x38{left:111.239250px;}
.xb2{left:112.884600px;}
.x24{left:114.319200px;}
.x37{left:115.512750px;}
.xaf{left:117.180150px;}
.x56{left:120.239700px;}
.x25{left:122.530200px;}
.x49{left:124.958377px;}
.xae{left:126.084150px;}
.x8a{left:127.300350px;}
.xb0{left:129.118650px;}
.x22{left:131.087700px;}
.x67{left:135.378750px;}
.x26{left:137.870700px;}
.xd6{left:140.044650px;}
.x91{left:141.840000px;}
.xb1{left:143.734650px;}
.x60{left:145.359900px;}
.xca{left:149.194200px;}
.x1e{left:150.680700px;}
.xb9{left:154.947000px;}
.x27{left:156.424200px;}
.xa1{left:157.816050px;}
.x61{left:160.835100px;}
.x4b{left:164.178043px;}
.xa0{left:166.455900px;}
.x1d{left:167.459700px;}
.x1c{left:171.061200px;}
.xd2{left:174.959850px;}
.x62{left:176.847600px;}
.x4f{left:179.313000px;}
.xcd{left:181.731000px;}
.x68{left:182.733750px;}
.x66{left:189.411750px;}
.x65{left:191.196750px;}
.x9e{left:192.436500px;}
.x3e{left:194.040300px;}
.x8b{left:195.857250px;}
.xf{left:197.929500px;}
.xad{left:200.130150px;}
.x3d{left:202.680450px;}
.xc8{left:205.229400px;}
.x32{left:209.787750px;}
.xd0{left:211.186500px;}
.x9f{left:213.255900px;}
.x36{left:217.464750px;}
.x33{left:228.120750px;}
.x53{left:234.060450px;}
.x5d{left:235.834800px;}
.x2f{left:237.966750px;}
.x5c{left:240.928800px;}
.x5a{left:246.940800px;}
.x58{left:252.493800px;}
.x47{left:254.307450px;}
.x31{left:258.774750px;}
.x5f{left:260.377800px;}
.xa7{left:271.194600px;}
.x10{left:274.060500px;}
.xab{left:276.612600px;}
.xa2{left:279.033600px;}
.x8f{left:281.325000px;}
.xa4{left:285.018600px;}
.xa3{left:287.322600px;}
.xa5{left:292.848600px;}
.x59{left:294.172800px;}
.x48{left:296.693351px;}
.x15{left:299.511450px;}
.xce{left:302.698500px;}
.xa8{left:306.987600px;}
.x35{left:310.173750px;}
.x1b{left:311.202450px;}
.xaa{left:318.534600px;}
.x28{left:323.416350px;}
.x5b{left:326.131800px;}
.xd1{left:329.458500px;}
.x6a{left:332.716500px;}
.x7a{left:334.887000px;}
.xa9{left:336.318600px;}
.x29{left:339.070800px;}
.xb{left:340.157400px;}
.xba{left:342.406500px;}
.x75{left:345.469500px;}
.xd7{left:347.506350px;}
.x16{left:349.821450px;}
.xc0{left:351.706350px;}
.xc{left:356.659500px;}
.xbf{left:359.749350px;}
.x17{left:360.801450px;}
.x34{left:361.995750px;}
.x79{left:363.277500px;}
.x77{left:370.113000px;}
.x76{left:371.383500px;}
.x73{left:373.305000px;}
.x74{left:376.728000px;}
.x14{left:380.159250px;}
.x1a{left:382.959450px;}
.xb7{left:386.062800px;}
.xd5{left:387.220650px;}
.x13{left:388.799250px;}
.x90{left:395.103000px;}
.x78{left:396.258000px;}
.xcf{left:404.038500px;}
.x30{left:411.252750px;}
.x6{left:414.646650px;}
.x7f{left:442.204500px;}
.x89{left:443.508450px;}
.xd8{left:444.826800px;}
.x7b{left:446.456700px;}
.x87{left:448.170450px;}
.x5e{left:449.665800px;}
.xc1{left:452.208000px;}
.xc5{left:454.006500px;}
.x88{left:458.092950px;}
.x86{left:461.473950px;}
.x51{left:467.716500px;}
.x2a{left:469.842450px;}
.x6d{left:472.733550px;}
.x9b{left:477.015150px;}
.x72{left:478.394550px;}
.x52{left:488.976300px;}
.x81{left:495.471000px;}
.xb3{left:497.624250px;}
.x71{left:499.607550px;}
.x3b{left:506.409000px;}
.x6f{left:507.617550px;}
.x41{left:510.060900px;}
.x9a{left:511.528650px;}
.x57{left:513.556800px;}
.x19{left:516.528450px;}
.xa6{left:525.669600px;}
.x18{left:531.054450px;}
.x6e{left:536.480550px;}
.xb4{left:543.704250px;}
.x83{left:564.500850px;}
.x84{left:566.390850px;}
.x93{left:570.884850px;}
.x94{left:572.360850px;}
.x92{left:581.612850px;}
.xb6{left:583.646250px;}
.xbc{left:585.886200px;}
.x3c{left:588.849000px;}
.x82{left:593.031000px;}
.x54{left:599.794200px;}
.x95{left:637.763850px;}
.xcc{left:648.673950px;}
.x3f{left:649.974900px;}
.xb5{left:665.123250px;}
.xbe{left:678.982200px;}
.x97{left:689.792850px;}
.x98{left:691.268850px;}
.x40{left:696.882900px;}
.x96{left:700.520850px;}
.xd3{left:719.137500px;}
.xc3{left:734.395500px;}
.xbb{left:744.118800px;}
.xbd{left:749.740200px;}
.x99{left:756.671850px;}
.xc4{left:762.601500px;}
.xc2{left:764.986500px;}
.x85{left:774.560850px;}
.x70{left:777.383550px;}
.xd4{left:787.618500px;}
.xcb{left:799.459950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.628800pt;}
.v1{vertical-align:24.864000pt;}
.ls33{letter-spacing:-3.050667pt;}
.ls12{letter-spacing:-2.628267pt;}
.ls0{letter-spacing:-2.346667pt;}
.ls93{letter-spacing:-2.299733pt;}
.ls55{letter-spacing:-2.252800pt;}
.ls18{letter-spacing:-2.170667pt;}
.ls92{letter-spacing:-2.158933pt;}
.ls63{letter-spacing:-2.118933pt;}
.ls38{letter-spacing:-2.112000pt;}
.ls4a{letter-spacing:-2.065067pt;}
.ls67{letter-spacing:-2.016000pt;}
.ls65{letter-spacing:-1.994667pt;}
.ls58{letter-spacing:-1.971200pt;}
.ls17{letter-spacing:-1.936000pt;}
.ls8e{letter-spacing:-1.830400pt;}
.lsf{letter-spacing:-1.783467pt;}
.ls3f{letter-spacing:-1.736533pt;}
.ls24{letter-spacing:-1.689600pt;}
.ls3d{letter-spacing:-1.642667pt;}
.lse{letter-spacing:-1.595733pt;}
.ls72{letter-spacing:-1.568000pt;}
.ls10{letter-spacing:-1.548800pt;}
.ls6e{letter-spacing:-1.454933pt;}
.ls66{letter-spacing:-1.440000pt;}
.ls6b{letter-spacing:-1.424800pt;}
.ls25{letter-spacing:-1.408000pt;}
.ls80{letter-spacing:-1.388267pt;}
.ls96{letter-spacing:-1.361067pt;}
.ls3e{letter-spacing:-1.314133pt;}
.ls70{letter-spacing:-1.306667pt;}
.ls90{letter-spacing:-1.242133pt;}
.ls74{letter-spacing:-1.194667pt;}
.lsb{letter-spacing:-1.173333pt;}
.ls6f{letter-spacing:-1.133333pt;}
.ls6c{letter-spacing:-1.079467pt;}
.ls3b{letter-spacing:-1.032533pt;}
.ls86{letter-spacing:-1.008000pt;}
.ls85{letter-spacing:-0.985600pt;}
.ls73{letter-spacing:-0.952000pt;}
.ls6a{letter-spacing:-0.949867pt;}
.ls13{letter-spacing:-0.938667pt;}
.ls60{letter-spacing:-0.891733pt;}
.ls94{letter-spacing:-0.861333pt;}
.ls7d{letter-spacing:-0.858667pt;}
.ls97{letter-spacing:-0.844800pt;}
.ls8f{letter-spacing:-0.821333pt;}
.ls7e{letter-spacing:-0.797867pt;}
.ls4e{letter-spacing:-0.750933pt;}
.ls61{letter-spacing:-0.730667pt;}
.ls77{letter-spacing:-0.725333pt;}
.ls3c{letter-spacing:-0.704000pt;}
.ls5a{letter-spacing:-0.694133pt;}
.ls41{letter-spacing:-0.657067pt;}
.ls88{letter-spacing:-0.610133pt;}
.ls5d{letter-spacing:-0.608000pt;}
.ls5f{letter-spacing:-0.597333pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.563200pt;}
.ls71{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.528000pt;}
.ls98{letter-spacing:-0.516267pt;}
.ls4f{letter-spacing:-0.512000pt;}
.ls79{letter-spacing:-0.498667pt;}
.ls16{letter-spacing:-0.469333pt;}
.ls40{letter-spacing:-0.375467pt;}
.ls68{letter-spacing:-0.373333pt;}
.ls78{letter-spacing:-0.362667pt;}
.ls87{letter-spacing:-0.298667pt;}
.ls52{letter-spacing:-0.281600pt;}
.ls69{letter-spacing:-0.234667pt;}
.ls64{letter-spacing:-0.226667pt;}
.ls37{letter-spacing:-0.224000pt;}
.ls59{letter-spacing:-0.187733pt;}
.ls27{letter-spacing:-0.140800pt;}
.ls49{letter-spacing:-0.093867pt;}
.ls1d{letter-spacing:-0.074667pt;}
.ls1e{letter-spacing:-0.046933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.010667pt;}
.ls21{letter-spacing:0.046933pt;}
.ls1b{letter-spacing:0.092800pt;}
.ls54{letter-spacing:0.093867pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls42{letter-spacing:0.136000pt;}
.ls7{letter-spacing:0.140800pt;}
.ls57{letter-spacing:0.152000pt;}
.ls4{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.186667pt;}
.lsc{letter-spacing:0.187733pt;}
.ls9a{letter-spacing:0.208000pt;}
.ls6{letter-spacing:0.224000pt;}
.ls4c{letter-spacing:0.234667pt;}
.ls19{letter-spacing:0.275767pt;}
.ls50{letter-spacing:0.298667pt;}
.ls8d{letter-spacing:0.328533pt;}
.ls29{letter-spacing:0.365333pt;}
.ls11{letter-spacing:0.375467pt;}
.ls99{letter-spacing:0.416000pt;}
.ls76{letter-spacing:0.422400pt;}
.ls51{letter-spacing:0.456000pt;}
.ls9f{letter-spacing:0.457600pt;}
.ls26{letter-spacing:0.469333pt;}
.ls43{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.563200pt;}
.ls5c{letter-spacing:0.634667pt;}
.ls53{letter-spacing:0.657067pt;}
.lsa0{letter-spacing:0.665600pt;}
.ls5b{letter-spacing:0.680000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.725333pt;}
.ls46{letter-spacing:0.736000pt;}
.ls34{letter-spacing:0.797867pt;}
.ls3a{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.832000pt;}
.ls89{letter-spacing:0.844800pt;}
.ls39{letter-spacing:0.864000pt;}
.ls9{letter-spacing:0.938667pt;}
.ls4b{letter-spacing:0.985600pt;}
.ls47{letter-spacing:0.992000pt;}
.ls2c{letter-spacing:1.008000pt;}
.ls6d{letter-spacing:1.032533pt;}
.ls2b{letter-spacing:1.045333pt;}
.ls56{letter-spacing:1.079467pt;}
.ls44{letter-spacing:1.133333pt;}
.ls9b{letter-spacing:1.164800pt;}
.ls9c{letter-spacing:1.248000pt;}
.ls31{letter-spacing:1.344000pt;}
.ls1f{letter-spacing:1.454933pt;}
.lsa1{letter-spacing:1.497600pt;}
.ls75{letter-spacing:1.501867pt;}
.ls1{letter-spacing:1.887296pt;}
.ls4d{letter-spacing:2.018133pt;}
.lsa{letter-spacing:2.065067pt;}
.ls8a{letter-spacing:2.112000pt;}
.ls20{letter-spacing:2.205867pt;}
.ls95{letter-spacing:2.241600pt;}
.ls32{letter-spacing:2.299733pt;}
.ls91{letter-spacing:2.393600pt;}
.ls9d{letter-spacing:2.412800pt;}
.ls84{letter-spacing:2.440533pt;}
.ls7a{letter-spacing:2.516267pt;}
.ls7f{letter-spacing:2.520800pt;}
.ls2f{letter-spacing:2.691733pt;}
.ls30{letter-spacing:2.692267pt;}
.ls35{letter-spacing:2.703467pt;}
.ls8c{letter-spacing:2.956800pt;}
.ls9e{letter-spacing:3.161600pt;}
.ls81{letter-spacing:3.379200pt;}
.ls36{letter-spacing:3.613867pt;}
.ls7b{letter-spacing:3.898667pt;}
.ls7c{letter-spacing:3.899200pt;}
.ls82{letter-spacing:3.909067pt;}
.ls62{letter-spacing:4.083200pt;}
.ls8b{letter-spacing:4.177067pt;}
.ls3{letter-spacing:4.718240pt;}
.ls22{letter-spacing:4.928000pt;}
.ls83{letter-spacing:5.162667pt;}
.ls1a{letter-spacing:5.532800pt;}
.ls28{letter-spacing:5.553067pt;}
.ls2a{letter-spacing:7.274667pt;}
.ls48{letter-spacing:182.298667pt;}
.ws4d{word-spacing:-74.666667pt;}
.ws2e{word-spacing:-58.880000pt;}
.ws5b{word-spacing:-54.511467pt;}
.ws7d{word-spacing:-38.860800pt;}
.ws31{word-spacing:-37.977600pt;}
.ws5f{word-spacing:-35.977568pt;}
.ws6b{word-spacing:-30.912000pt;}
.ws59{word-spacing:-29.852160pt;}
.ws7b{word-spacing:-27.064000pt;}
.ws52{word-spacing:-26.672640pt;}
.ws2a{word-spacing:-26.450133pt;}
.wsa1{word-spacing:-25.495040pt;}
.wsbc{word-spacing:-24.806133pt;}
.ws4a{word-spacing:-23.600533pt;}
.wsba{word-spacing:-23.417867pt;}
.ws51{word-spacing:-20.897067pt;}
.ws82{word-spacing:-20.202933pt;}
.ws9f{word-spacing:-19.947200pt;}
.wsbb{word-spacing:-19.508800pt;}
.ws28{word-spacing:-19.338667pt;}
.ws56{word-spacing:-19.328000pt;}
.ws58{word-spacing:-19.136000pt;}
.wsc9{word-spacing:-19.114667pt;}
.ws2d{word-spacing:-18.400000pt;}
.wsaf{word-spacing:-17.728000pt;}
.wsc3{word-spacing:-17.600000pt;}
.ws55{word-spacing:-16.912000pt;}
.ws96{word-spacing:-16.864000pt;}
.ws72{word-spacing:-16.800000pt;}
.wsbf{word-spacing:-15.779840pt;}
.ws48{word-spacing:-14.502400pt;}
.ws57{word-spacing:-14.496000pt;}
.wsca{word-spacing:-14.314667pt;}
.ws7{word-spacing:-14.267733pt;}
.wse9{word-spacing:-13.977600pt;}
.wscd{word-spacing:-13.235200pt;}
.wse8{word-spacing:-13.228800pt;}
.wscb{word-spacing:-13.188267pt;}
.ws81{word-spacing:-12.859733pt;}
.wsb3{word-spacing:-12.625067pt;}
.wse{word-spacing:-12.578133pt;}
.wscc{word-spacing:-12.437333pt;}
.wsb{word-spacing:-12.390400pt;}
.ws29{word-spacing:-12.249600pt;}
.ws6{word-spacing:-12.202667pt;}
.wse7{word-spacing:-12.064000pt;}
.wsec{word-spacing:-11.980800pt;}
.ws9{word-spacing:-11.639467pt;}
.wseb{word-spacing:-11.481600pt;}
.wsea{word-spacing:-11.273600pt;}
.wse6{word-spacing:-11.232000pt;}
.ws8{word-spacing:-11.029333pt;}
.ws71{word-spacing:-10.892800pt;}
.wsd{word-spacing:-10.653867pt;}
.wsa{word-spacing:-10.606933pt;}
.wsc{word-spacing:-10.419200pt;}
.ws94{word-spacing:-10.009600pt;}
.ws2b{word-spacing:-9.864000pt;}
.ws91{word-spacing:-9.832960pt;}
.ws47{word-spacing:-9.664000pt;}
.wsf{word-spacing:-9.574400pt;}
.ws2c{word-spacing:-9.498667pt;}
.ws61{word-spacing:-9.184000pt;}
.ws49{word-spacing:-9.152000pt;}
.ws62{word-spacing:-9.120000pt;}
.ws8f{word-spacing:-9.109333pt;}
.ws60{word-spacing:-9.056000pt;}
.ws5a{word-spacing:-8.949760pt;}
.wsdb{word-spacing:-8.885333pt;}
.wsb9{word-spacing:-8.848000pt;}
.ws90{word-spacing:-8.768000pt;}
.wsbd{word-spacing:-8.548800pt;}
.wsae{word-spacing:-8.400000pt;}
.wsdc{word-spacing:-8.256533pt;}
.wsa0{word-spacing:-8.073867pt;}
.ws3{word-spacing:-7.920000pt;}
.ws73{word-spacing:-7.808000pt;}
.ws97{word-spacing:-7.744000pt;}
.ws85{word-spacing:-7.712000pt;}
.ws41{word-spacing:-7.274667pt;}
.ws54{word-spacing:-5.770240pt;}
.wsc6{word-spacing:-5.162667pt;}
.ws39{word-spacing:-4.928000pt;}
.wsdf{word-spacing:-4.364800pt;}
.wsd2{word-spacing:-4.177067pt;}
.ws9a{word-spacing:-4.083200pt;}
.wsd8{word-spacing:-3.942400pt;}
.ws4e{word-spacing:-3.613867pt;}
.wsc5{word-spacing:-3.379200pt;}
.wsd4{word-spacing:-2.956800pt;}
.ws2{word-spacing:-2.830944pt;}
.wsd5{word-spacing:-2.534400pt;}
.wsc7{word-spacing:-2.440533pt;}
.wse1{word-spacing:-2.393600pt;}
.wse0{word-spacing:-2.346667pt;}
.ws35{word-spacing:-2.205867pt;}
.wsd0{word-spacing:-2.112000pt;}
.ws79{word-spacing:-2.018133pt;}
.ws15{word-spacing:-1.736533pt;}
.wsb5{word-spacing:-1.501867pt;}
.ws34{word-spacing:-1.454933pt;}
.wsf3{word-spacing:-1.289600pt;}
.ws17{word-spacing:-1.173333pt;}
.ws19{word-spacing:-1.079467pt;}
.wsab{word-spacing:-1.032533pt;}
.ws8e{word-spacing:-0.992000pt;}
.ws77{word-spacing:-0.985600pt;}
.wsf2{word-spacing:-0.956800pt;}
.wsa8{word-spacing:-0.938667pt;}
.ws69{word-spacing:-0.896000pt;}
.ws8b{word-spacing:-0.891733pt;}
.ws42{word-spacing:-0.858667pt;}
.ws16{word-spacing:-0.844800pt;}
.ws43{word-spacing:-0.821333pt;}
.ws14{word-spacing:-0.797867pt;}
.ws68{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.704000pt;}
.ws9b{word-spacing:-0.657067pt;}
.ws40{word-spacing:-0.610133pt;}
.ws46{word-spacing:-0.589333pt;}
.ws3a{word-spacing:-0.563200pt;}
.ws8c{word-spacing:-0.544000pt;}
.ws8d{word-spacing:-0.498667pt;}
.ws3e{word-spacing:-0.469333pt;}
.ws67{word-spacing:-0.408000pt;}
.wsd6{word-spacing:-0.328533pt;}
.ws7f{word-spacing:-0.304000pt;}
.ws13{word-spacing:-0.281600pt;}
.ws78{word-spacing:-0.234667pt;}
.ws12{word-spacing:-0.224000pt;}
.wsf1{word-spacing:-0.208000pt;}
.ws36{word-spacing:-0.187733pt;}
.ws11{word-spacing:-0.186667pt;}
.ws4{word-spacing:-0.176000pt;}
.ws18{word-spacing:-0.140800pt;}
.ws74{word-spacing:-0.136000pt;}
.ws1e{word-spacing:-0.093867pt;}
.ws7e{word-spacing:-0.074667pt;}
.ws1b{word-spacing:-0.046933pt;}
.ws1{word-spacing:0.000000pt;}
.ws33{word-spacing:0.046933pt;}
.ws75{word-spacing:0.093867pt;}
.ws80{word-spacing:0.096000pt;}
.ws3f{word-spacing:0.140800pt;}
.ws10{word-spacing:0.186667pt;}
.ws8a{word-spacing:0.187733pt;}
.wsa9{word-spacing:0.234667pt;}
.ws66{word-spacing:0.375467pt;}
.ws4f{word-spacing:0.448000pt;}
.ws25{word-spacing:0.469333pt;}
.wsb7{word-spacing:0.498667pt;}
.wsf0{word-spacing:0.516267pt;}
.wsee{word-spacing:0.563200pt;}
.ws44{word-spacing:0.576000pt;}
.ws23{word-spacing:0.586667pt;}
.wsa7{word-spacing:0.597333pt;}
.wscf{word-spacing:0.610133pt;}
.ws1c{word-spacing:0.657067pt;}
.ws5{word-spacing:0.704000pt;}
.ws7a{word-spacing:0.750933pt;}
.wsc4{word-spacing:0.797867pt;}
.wsef{word-spacing:0.844800pt;}
.ws98{word-spacing:0.891733pt;}
.ws22{word-spacing:0.938667pt;}
.wsc8{word-spacing:0.985600pt;}
.ws63{word-spacing:1.032533pt;}
.wsaa{word-spacing:1.079467pt;}
.ws45{word-spacing:1.133333pt;}
.ws3c{word-spacing:1.173333pt;}
.ws1a{word-spacing:1.267200pt;}
.ws64{word-spacing:1.314133pt;}
.ws9d{word-spacing:1.360000pt;}
.wsed{word-spacing:1.361067pt;}
.ws3d{word-spacing:1.408000pt;}
.wsac{word-spacing:1.454933pt;}
.ws32{word-spacing:1.548800pt;}
.wsb1{word-spacing:1.568000pt;}
.wsb8{word-spacing:1.632000pt;}
.ws1f{word-spacing:1.642667pt;}
.wsb0{word-spacing:1.677333pt;}
.ws3b{word-spacing:1.689600pt;}
.ws1d{word-spacing:1.736533pt;}
.ws65{word-spacing:1.783467pt;}
.wsd9{word-spacing:1.830400pt;}
.wsb6{word-spacing:1.858667pt;}
.ws26{word-spacing:1.936000pt;}
.ws89{word-spacing:1.971200pt;}
.wse4{word-spacing:1.994667pt;}
.ws76{word-spacing:2.065067pt;}
.wsb2{word-spacing:2.085333pt;}
.ws50{word-spacing:2.112000pt;}
.ws9c{word-spacing:2.118933pt;}
.wse2{word-spacing:2.158933pt;}
.ws27{word-spacing:2.170667pt;}
.ws88{word-spacing:2.252800pt;}
.wsad{word-spacing:2.266667pt;}
.wse3{word-spacing:2.299733pt;}
.wsda{word-spacing:2.346667pt;}
.ws99{word-spacing:2.487467pt;}
.ws20{word-spacing:2.722133pt;}
.wsd3{word-spacing:2.816000pt;}
.ws0{word-spacing:3.050667pt;}
.ws9e{word-spacing:3.128000pt;}
.wsd7{word-spacing:3.801600pt;}
.wsdd{word-spacing:4.505600pt;}
.ws38{word-spacing:4.740267pt;}
.ws37{word-spacing:4.787200pt;}
.wsd1{word-spacing:5.303467pt;}
.wsde{word-spacing:6.617600pt;}
.ws86{word-spacing:6.711467pt;}
.ws87{word-spacing:7.180800pt;}
.ws95{word-spacing:31.870933pt;}
.ws53{word-spacing:90.204160pt;}
.wsa3{word-spacing:90.557440pt;}
.wsa4{word-spacing:91.381760pt;}
.ws7c{word-spacing:107.985920pt;}
.ws6c{word-spacing:108.545280pt;}
.wsa2{word-spacing:121.233920pt;}
.ws93{word-spacing:139.722240pt;}
.wsc2{word-spacing:154.854400pt;}
.ws6d{word-spacing:159.682560pt;}
.ws5c{word-spacing:166.314485pt;}
.wsa5{word-spacing:170.042133pt;}
.ws84{word-spacing:170.634240pt;}
.ws21{word-spacing:182.298667pt;}
.wsce{word-spacing:183.306667pt;}
.wsb4{word-spacing:183.493333pt;}
.wsa6{word-spacing:184.314667pt;}
.wsc1{word-spacing:185.589760pt;}
.ws30{word-spacing:192.832000pt;}
.ws5d{word-spacing:209.269521pt;}
.ws5e{word-spacing:214.142846pt;}
.ws6e{word-spacing:215.324160pt;}
.ws2f{word-spacing:223.508480pt;}
.wsbe{word-spacing:226.099200pt;}
.wsc0{word-spacing:232.128512pt;}
.ws92{word-spacing:234.972416pt;}
.ws70{word-spacing:281.493504pt;}
.ws6f{word-spacing:293.457920pt;}
.ws83{word-spacing:356.795136pt;}
.ws4b{word-spacing:375.324672pt;}
.ws4c{word-spacing:813.915904pt;}
.wse5{word-spacing:1455.667733pt;}
.ws6a{word-spacing:1475.753067pt;}
._21{margin-left:-2177.367467pt;}
._35{margin-left:-183.560533pt;}
._e{margin-left:-133.332267pt;}
._f{margin-left:-58.676800pt;}
._9{margin-left:-14.901333pt;}
._1a{margin-left:-12.667600pt;}
._1c{margin-left:-9.507200pt;}
._5{margin-left:-8.127605pt;}
._14{margin-left:-6.704733pt;}
._16{margin-left:-5.383059pt;}
._6{margin-left:-4.291385pt;}
._3{margin-left:-2.736579pt;}
._0{margin-left:-1.361067pt;}
._1{width:1.548800pt;}
._2{width:2.980267pt;}
._4{width:4.161267pt;}
._7{width:5.606733pt;}
._a{width:6.616200pt;}
._8{width:7.779200pt;}
._12{width:9.017067pt;}
._13{width:10.577600pt;}
._11{width:11.824533pt;}
._c{width:13.431467pt;}
._b{width:14.417067pt;}
._d{width:18.043733pt;}
._34{width:19.496107pt;}
._1b{width:23.164267pt;}
._17{width:27.253333pt;}
._30{width:29.083667pt;}
._15{width:31.135846pt;}
._20{width:37.785600pt;}
._19{width:73.926400pt;}
._1f{width:116.876800pt;}
._1d{width:122.117120pt;}
._2e{width:150.320640pt;}
._2d{width:161.566720pt;}
._25{width:170.634240pt;}
._2f{width:180.997120pt;}
._27{width:200.721920pt;}
._1e{width:225.628160pt;}
._29{width:241.996800pt;}
._18{width:251.712000pt;}
._31{width:255.044608pt;}
._28{width:260.838400pt;}
._22{width:280.327680pt;}
._2a{width:362.995200pt;}
._32{width:415.633920pt;}
._23{width:427.586560pt;}
._24{width:446.369280pt;}
._26{width:543.892267pt;}
._2b{width:552.102400pt;}
._33{width:1659.059733pt;}
._2c{width:1660.105067pt;}
._10{width:1679.406400pt;}
.fs13{font-size:19.750400pt;}
.fsf{font-size:26.666667pt;}
.fs7{font-size:27.362133pt;}
.fs12{font-size:29.625600pt;}
.fsb{font-size:30.933333pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:36.533333pt;}
.fs3{font-size:37.333333pt;}
.fs17{font-size:41.600000pt;}
.fsd{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fs16{font-size:44.800000pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:46.933333pt;}
.fs15{font-size:48.000000pt;}
.fs14{font-size:50.666667pt;}
.fs10{font-size:54.511467pt;}
.fs2{font-size:58.666667pt;}
.fsc{font-size:58.880000pt;}
.fs11{font-size:68.731733pt;}
.fse{font-size:74.240000pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:94.364800pt;}
.fs0{font-size:234.666667pt;}
.y1bc{bottom:-64.169600pt;}
.y1bb{bottom:-57.495200pt;}
.ye6{bottom:-57.067600pt;}
.y1fa{bottom:-54.235600pt;}
.ye5{bottom:-47.734267pt;}
.ye4{bottom:-36.860400pt;}
.y217{bottom:-36.333733pt;}
.ye3{bottom:-27.527067pt;}
.y27a{bottom:-26.123067pt;}
.y88{bottom:-15.692667pt;}
.y105{bottom:-10.517867pt;}
.yf2{bottom:-9.080933pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:2.616400pt;}
.y13f{bottom:2.617333pt;}
.yf6{bottom:3.850933pt;}
.yf4{bottom:3.851200pt;}
.yfc{bottom:3.851333pt;}
.yfa{bottom:3.851600pt;}
.yf8{bottom:3.851867pt;}
.y126{bottom:4.130667pt;}
.y119{bottom:4.142053pt;}
.y1cd{bottom:4.142187pt;}
.y17d{bottom:4.143120pt;}
.ya4{bottom:4.147947pt;}
.yd2{bottom:4.148347pt;}
.y9b{bottom:4.153707pt;}
.y113{bottom:4.159333pt;}
.y98{bottom:4.159467pt;}
.y211{bottom:4.159600pt;}
.y151{bottom:4.159733pt;}
.yca{bottom:4.159867pt;}
.y80{bottom:4.160133pt;}
.y23a{bottom:4.160267pt;}
.y179{bottom:4.160400pt;}
.y16f{bottom:4.160533pt;}
.y12a{bottom:4.160667pt;}
.y111{bottom:4.160800pt;}
.y145{bottom:13.283067pt;}
.y13e{bottom:13.284000pt;}
.y125{bottom:23.016427pt;}
.y118{bottom:23.027813pt;}
.y1cc{bottom:23.027947pt;}
.y17c{bottom:23.028880pt;}
.ya3{bottom:23.033707pt;}
.yd1{bottom:23.034107pt;}
.y9a{bottom:23.039467pt;}
.ye1{bottom:27.109333pt;}
.y8{bottom:41.877067pt;}
.y124{bottom:41.902187pt;}
.y117{bottom:41.913573pt;}
.y1cb{bottom:41.913707pt;}
.y17b{bottom:41.914640pt;}
.ya2{bottom:41.919467pt;}
.yd0{bottom:41.919867pt;}
.y123{bottom:60.787947pt;}
.y116{bottom:60.799333pt;}
.y1ca{bottom:60.799467pt;}
.y17a{bottom:60.800400pt;}
.y122{bottom:79.673707pt;}
.y19b{bottom:86.519600pt;}
.y96{bottom:86.519733pt;}
.y77{bottom:86.551333pt;}
.y1d{bottom:87.008800pt;}
.y53{bottom:87.063733pt;}
.y7b{bottom:91.976933pt;}
.y10f{bottom:92.008400pt;}
.y16d{bottom:92.408400pt;}
.y121{bottom:98.559467pt;}
.y76{bottom:99.218000pt;}
.y16c{bottom:103.223467pt;}
.y19a{bottom:103.852933pt;}
.y95{bottom:103.853067pt;}
.y1c{bottom:107.008800pt;}
.y52{bottom:107.063733pt;}
.y20d{bottom:107.973067pt;}
.y16a{bottom:108.580000pt;}
.y75{bottom:111.884667pt;}
.y287{bottom:112.519733pt;}
.y18b{bottom:112.635600pt;}
.y20a{bottom:116.524000pt;}
.y199{bottom:121.186267pt;}
.y94{bottom:121.186400pt;}
.y78{bottom:123.168400pt;}
.y74{bottom:124.551467pt;}
.y236{bottom:124.626667pt;}
.y267{bottom:125.280000pt;}
.y254{bottom:126.257333pt;}
.y286{bottom:126.519733pt;}
.y1b{bottom:127.008800pt;}
.y51{bottom:127.063733pt;}
.y169{bottom:131.731467pt;}
.y161{bottom:132.320667pt;}
.y18d{bottom:133.195600pt;}
.y247{bottom:133.804000pt;}
.y107{bottom:138.413733pt;}
.y198{bottom:138.519600pt;}
.y93{bottom:138.519733pt;}
.y285{bottom:140.519733pt;}
.y235{bottom:141.484667pt;}
.y231{bottom:142.010000pt;}
.y209{bottom:142.809733pt;}
.y205{bottom:143.339067pt;}
.y1a{bottom:147.008800pt;}
.y50{bottom:147.063733pt;}
.y7e{bottom:147.303600pt;}
.y246{bottom:148.704800pt;}
.y242{bottom:149.234267pt;}
.y18c{bottom:150.528933pt;}
.y18a{bottom:151.034533pt;}
.y177{bottom:151.249867pt;}
.y284{bottom:154.519733pt;}
.y197{bottom:155.852933pt;}
.y92{bottom:155.853067pt;}
.y168{bottom:156.203467pt;}
.y160{bottom:156.784667pt;}
.y266{bottom:157.453333pt;}
.y10d{bottom:157.836400pt;}
.y25f{bottom:163.076267pt;}
.y7d{bottom:164.636933pt;}
.y28f{bottom:166.731733pt;}
.y19{bottom:167.008800pt;}
.y4f{bottom:167.063733pt;}
.y265{bottom:168.121333pt;}
.y283{bottom:168.519733pt;}
.y188{bottom:171.702667pt;}
.y189{bottom:171.712533pt;}
.y196{bottom:173.186267pt;}
.y91{bottom:173.186400pt;}
.y249{bottom:173.246933pt;}
.y10c{bottom:175.169733pt;}
.y20c{bottom:178.319867pt;}
.y176{bottom:179.168000pt;}
.y1ba{bottom:180.497867pt;}
.y167{bottom:180.675467pt;}
.y28e{bottom:180.731733pt;}
.y15f{bottom:181.248667pt;}
.y234{bottom:181.730000pt;}
.y7c{bottom:181.970267pt;}
.y230{bottom:182.258000pt;}
.y282{bottom:182.519733pt;}
.y208{bottom:182.896400pt;}
.y204{bottom:183.427067pt;}
.y238{bottom:185.172533pt;}
.y248{bottom:186.580267pt;}
.y245{bottom:186.775467pt;}
.y220{bottom:187.002400pt;}
.y4e{bottom:187.063733pt;}
.y241{bottom:187.306267pt;}
.y1a7{bottom:189.620400pt;}
.y195{bottom:190.519600pt;}
.y73{bottom:190.519733pt;}
.y20b{bottom:191.653200pt;}
.y279{bottom:191.816667pt;}
.y10b{bottom:192.503067pt;}
.y264{bottom:192.966667pt;}
.y25e{bottom:193.516267pt;}
.y253{bottom:193.600133pt;}
.y250{bottom:194.133467pt;}
.y183{bottom:195.916667pt;}
.y281{bottom:196.519733pt;}
.y268{bottom:198.680667pt;}
.y187{bottom:202.641733pt;}
.y255{bottom:203.459333pt;}
.y166{bottom:205.147467pt;}
.y15e{bottom:205.712667pt;}
.y237{bottom:206.505867pt;}
.y18{bottom:207.008800pt;}
.y4d{bottom:207.063733pt;}
.y194{bottom:207.852933pt;}
.y72{bottom:207.853067pt;}
.y28d{bottom:210.731733pt;}
.y6{bottom:211.399733pt;}
.y186{bottom:213.309733pt;}
.y87{bottom:215.310667pt;}
.y175{bottom:216.577733pt;}
.y173{bottom:217.111467pt;}
.y181{bottom:220.580667pt;}
.y233{bottom:221.975333pt;}
.y22f{bottom:222.506000pt;}
.y207{bottom:222.983067pt;}
.y263{bottom:223.412000pt;}
.y203{bottom:223.515067pt;}
.y25d{bottom:223.956267pt;}
.y280{bottom:224.519733pt;}
.y244{bottom:224.846133pt;}
.y193{bottom:225.186267pt;}
.y71{bottom:225.186400pt;}
.y240{bottom:225.378267pt;}
.y17{bottom:227.008800pt;}
.y4c{bottom:227.063733pt;}
.y165{bottom:229.619467pt;}
.y15d{bottom:230.176667pt;}
.y86{bottom:230.385867pt;}
.y16b{bottom:231.390400pt;}
.ye2{bottom:235.303867pt;}
.y252{bottom:237.448133pt;}
.y24f{bottom:237.981467pt;}
.y27f{bottom:238.519733pt;}
.y28c{bottom:238.731733pt;}
.y192{bottom:242.519600pt;}
.y70{bottom:242.519733pt;}
.yfe{bottom:242.520000pt;}
.y102{bottom:245.148702pt;}
.y16{bottom:247.008800pt;}
.y27e{bottom:252.519733pt;}
.y28b{bottom:252.731733pt;}
.y262{bottom:253.857333pt;}
.y164{bottom:254.091467pt;}
.y25c{bottom:254.396267pt;}
.y15c{bottom:254.640667pt;}
.y191{bottom:259.852933pt;}
.y6f{bottom:259.853067pt;}
.y232{bottom:262.220667pt;}
.y22e{bottom:262.754000pt;}
.y243{bottom:262.916800pt;}
.y206{bottom:263.069733pt;}
.y23f{bottom:263.450267pt;}
.y202{bottom:263.603067pt;}
.y28a{bottom:266.731733pt;}
.y4b{bottom:267.063733pt;}
.y4{bottom:267.808133pt;}
.y182{bottom:269.916667pt;}
.yff{bottom:272.600533pt;}
.yee{bottom:273.823867pt;}
.y185{bottom:276.645733pt;}
.y190{bottom:277.186267pt;}
.yc6{bottom:277.186400pt;}
.y163{bottom:278.563467pt;}
.y15b{bottom:279.104667pt;}
.y261{bottom:279.234667pt;}
.y27d{bottom:280.519733pt;}
.y289{bottom:280.731733pt;}
.y251{bottom:281.296133pt;}
.y24e{bottom:281.829467pt;}
.y174{bottom:283.553733pt;}
.y172{bottom:284.087467pt;}
.y25b{bottom:284.836267pt;}
.y15{bottom:287.008800pt;}
.y4a{bottom:287.063733pt;}
.y184{bottom:287.313733pt;}
.y260{bottom:289.902667pt;}
.y90{bottom:290.519733pt;}
.y18f{bottom:294.519600pt;}
.y6e{bottom:294.519733pt;}
.y180{bottom:294.580667pt;}
.y288{bottom:294.731733pt;}
.y3{bottom:295.174000pt;}
.y162{bottom:303.035467pt;}
.yc4{bottom:303.238667pt;}
.y15a{bottom:303.568667pt;}
.y14{bottom:307.008800pt;}
.y49{bottom:307.063733pt;}
.y18e{bottom:311.852933pt;}
.y6d{bottom:311.853067pt;}
.y228{bottom:314.519733pt;}
.y2{bottom:322.539733pt;}
.y13{bottom:327.008800pt;}
.y48{bottom:327.063733pt;}
.y6c{bottom:329.186400pt;}
.y14c{bottom:329.536800pt;}
.y101{bottom:338.817443pt;}
.y6b{bottom:346.519733pt;}
.y47{bottom:347.063733pt;}
.yd4{bottom:347.430533pt;}
.y6a{bottom:363.853067pt;}
.y12{bottom:367.008800pt;}
.y85{bottom:371.625867pt;}
.y1f9{bottom:373.142400pt;}
.y69{bottom:381.186400pt;}
.y11{bottom:387.008800pt;}
.y46{bottom:387.063733pt;}
.y68{bottom:398.519733pt;}
.y45{bottom:407.063733pt;}
.y84{bottom:410.673867pt;}
.y67{bottom:415.853067pt;}
.y20e{bottom:417.578000pt;}
.y159{bottom:419.064000pt;}
.y22d{bottom:420.705333pt;}
.y103{bottom:422.576421pt;}
.y201{bottom:423.564000pt;}
.y20f{bottom:424.635600pt;}
.y100{bottom:425.561200pt;}
.y10{bottom:427.008800pt;}
.y44{bottom:427.063733pt;}
.y8f{bottom:433.186400pt;}
.y23e{bottom:436.384000pt;}
.y158{bottom:437.624000pt;}
.y1{bottom:437.814000pt;}
.yab{bottom:437.974133pt;}
.y22c{bottom:439.265333pt;}
.y17f{bottom:441.714667pt;}
.y200{bottom:442.124000pt;}
.y104{bottom:444.247547pt;}
.yf{bottom:447.008800pt;}
.y43{bottom:447.063733pt;}
.y7a{bottom:450.519600pt;}
.y66{bottom:450.519733pt;}
.y216{bottom:450.520000pt;}
.y23d{bottom:454.944000pt;}
.y157{bottom:456.184000pt;}
.y22b{bottom:457.825333pt;}
.y24d{bottom:458.024000pt;}
.y17e{bottom:460.274667pt;}
.y1ff{bottom:460.684000pt;}
.ye{bottom:467.008800pt;}
.y79{bottom:467.852933pt;}
.y65{bottom:467.853067pt;}
.y23c{bottom:473.504000pt;}
.y156{bottom:474.744000pt;}
.y21f{bottom:475.823867pt;}
.y25a{bottom:475.993333pt;}
.y21b{bottom:476.353467pt;}
.y22a{bottom:476.385333pt;}
.y24c{bottom:476.582667pt;}
.y178{bottom:478.834667pt;}
.y1fe{bottom:479.244000pt;}
.y64{bottom:485.186400pt;}
.yd{bottom:487.008800pt;}
.y42{bottom:487.063733pt;}
.yc8{bottom:487.186400pt;}
.y23b{bottom:492.064000pt;}
.y155{bottom:493.304000pt;}
.ya9{bottom:493.654133pt;}
.y259{bottom:494.553333pt;}
.y229{bottom:494.945333pt;}
.y24b{bottom:495.142667pt;}
.y5{bottom:497.693600pt;}
.y1fd{bottom:497.804000pt;}
.y8e{bottom:502.519600pt;}
.y63{bottom:502.519733pt;}
.y127{bottom:504.870133pt;}
.yc{bottom:507.008800pt;}
.y41{bottom:507.063733pt;}
.y239{bottom:510.624000pt;}
.y154{bottom:511.864000pt;}
.y258{bottom:513.113333pt;}
.y21e{bottom:516.022533pt;}
.y21a{bottom:516.553467pt;}
.y8d{bottom:519.852933pt;}
.y62{bottom:519.853067pt;}
.yb{bottom:527.008800pt;}
.y40{bottom:527.063733pt;}
.y153{bottom:530.424000pt;}
.y257{bottom:531.673333pt;}
.y24a{bottom:532.264000pt;}
.y8c{bottom:537.186267pt;}
.y61{bottom:537.186400pt;}
.y171{bottom:544.904000pt;}
.ya{bottom:547.008800pt;}
.y3f{bottom:547.063733pt;}
.y152{bottom:548.984000pt;}
.yfd{bottom:549.190667pt;}
.ya7{bottom:549.334133pt;}
.y256{bottom:550.233333pt;}
.y8b{bottom:554.519600pt;}
.y60{bottom:554.519733pt;}
.y21d{bottom:556.221200pt;}
.y219{bottom:556.753467pt;}
.y170{bottom:563.464000pt;}
.yfb{bottom:566.373333pt;}
.y1d2{bottom:566.511467pt;}
.y3e{bottom:567.063733pt;}
.y150{bottom:567.544000pt;}
.y227{bottom:571.852933pt;}
.y5f{bottom:571.853067pt;}
.y9{bottom:578.347333pt;}
.y16e{bottom:582.024000pt;}
.yf9{bottom:583.556000pt;}
.ya5{bottom:586.454133pt;}
.y226{bottom:589.186267pt;}
.y5e{bottom:589.186400pt;}
.y1c4{bottom:594.643600pt;}
.y21c{bottom:596.419867pt;}
.y218{bottom:596.953467pt;}
.yf7{bottom:600.738667pt;}
.y225{bottom:606.519600pt;}
.y5d{bottom:606.519733pt;}
.y3d{bottom:607.063733pt;}
.y1fc{bottom:607.593733pt;}
.y10e{bottom:611.976933pt;}
.yf5{bottom:617.922667pt;}
.y83{bottom:621.441333pt;}
.y224{bottom:623.852933pt;}
.y5c{bottom:623.853067pt;}
.y1ce{bottom:624.810667pt;}
.y1fb{bottom:624.927067pt;}
.y3c{bottom:627.063733pt;}
.yc5{bottom:629.310267pt;}
.yf3{bottom:635.105333pt;}
.y14d{bottom:636.367867pt;}
.y82{bottom:640.001333pt;}
.y223{bottom:641.186267pt;}
.y5b{bottom:641.186400pt;}
.ya0{bottom:642.134133pt;}
.y11a{bottom:642.508000pt;}
.y89{bottom:643.168400pt;}
.y3b{bottom:647.063733pt;}
.y106{bottom:655.022000pt;}
.y222{bottom:658.519600pt;}
.y5a{bottom:658.519733pt;}
.y81{bottom:658.561333pt;}
.y1cf{bottom:659.311467pt;}
.y1eb{bottom:659.513067pt;}
.y1f8{bottom:663.827333pt;}
.y14b{bottom:665.181733pt;}
.y13a{bottom:665.714533pt;}
.y3a{bottom:667.063733pt;}
.y9d{bottom:667.748000pt;}
.y1e1{bottom:669.233067pt;}
.y10a{bottom:673.417067pt;}
.y221{bottom:675.852933pt;}
.y59{bottom:675.853067pt;}
.y7f{bottom:677.121333pt;}
.y9e{bottom:679.254133pt;}
.yc3{bottom:684.810800pt;}
.y39{bottom:687.063733pt;}
.y14a{bottom:688.011067pt;}
.y139{bottom:688.546533pt;}
.y1ea{bottom:688.745067pt;}
.y109{bottom:690.750400pt;}
.y1f7{bottom:693.059333pt;}
.y58{bottom:693.186400pt;}
.yc2{bottom:695.478800pt;}
.yb2{bottom:695.496267pt;}
.y1e0{bottom:698.465067pt;}
.yc1{bottom:706.146800pt;}
.y38{bottom:707.063733pt;}
.y108{bottom:708.083733pt;}
.ye8{bottom:708.892133pt;}
.y11b{bottom:709.030133pt;}
.y57{bottom:710.519733pt;}
.y149{bottom:710.840400pt;}
.y138{bottom:711.378533pt;}
.y1c1{bottom:715.976933pt;}
.y1e9{bottom:717.977067pt;}
.y1f6{bottom:722.291333pt;}
.yc0{bottom:724.925467pt;}
.y215{bottom:725.546667pt;}
.ye7{bottom:726.225467pt;}
.y37{bottom:727.063733pt;}
.y1df{bottom:727.697067pt;}
.y56{bottom:727.853067pt;}
.yed{bottom:729.002667pt;}
.y148{bottom:733.669733pt;}
.y137{bottom:734.210533pt;}
.ybf{bottom:735.593467pt;}
.yb1{bottom:735.608267pt;}
.y1be{bottom:739.455867pt;}
.y27c{bottom:742.635600pt;}
.y214{bottom:744.106667pt;}
.y2a{bottom:745.186400pt;}
.ybe{bottom:746.261467pt;}
.yf0{bottom:747.021200pt;}
.y1e8{bottom:747.209067pt;}
.y1f5{bottom:751.523333pt;}
.yd3{bottom:753.853333pt;}
.y27b{bottom:753.968933pt;}
.y1c0{bottom:756.258400pt;}
.y147{bottom:756.499067pt;}
.y1de{bottom:756.929067pt;}
.y136{bottom:757.042533pt;}
.y14f{bottom:762.519733pt;}
.y213{bottom:762.666667pt;}
.y36{bottom:767.063733pt;}
.ybd{bottom:770.108133pt;}
.y144{bottom:771.649333pt;}
.y1bf{bottom:773.591733pt;}
.y1bd{bottom:774.122533pt;}
.yb0{bottom:775.720267pt;}
.y1e7{bottom:776.441067pt;}
.y1a6{bottom:778.726667pt;}
.y29{bottom:779.853067pt;}
.y135{bottom:779.874533pt;}
.y1f4{bottom:780.755333pt;}
.ybc{bottom:780.776133pt;}
.y212{bottom:781.226667pt;}
.ydc{bottom:781.546400pt;}
.y278{bottom:783.994667pt;}
.y1dd{bottom:786.161067pt;}
.y35{bottom:787.063733pt;}
.yd8{bottom:791.554400pt;}
.ye0{bottom:791.622267pt;}
.y28{bottom:797.186400pt;}
.y210{bottom:799.786667pt;}
.y1b9{bottom:800.976000pt;}
.y143{bottom:802.177333pt;}
.y134{bottom:802.706533pt;}
.y1f3{bottom:804.919333pt;}
.ybb{bottom:805.154800pt;}
.y1e6{bottom:805.673067pt;}
.y34{bottom:807.063733pt;}
.y277{bottom:808.772533pt;}
.y273{bottom:809.293867pt;}
.y1a5{bottom:811.540267pt;}
.y1a2{bottom:812.065867pt;}
.y1b8{bottom:812.762800pt;}
.y1b3{bottom:813.301733pt;}
.y27{bottom:814.519733pt;}
.y1dc{bottom:815.393067pt;}
.y1f2{bottom:815.587333pt;}
.yba{bottom:815.822800pt;}
.yaf{bottom:815.832267pt;}
.ydb{bottom:819.738400pt;}
.ydf{bottom:824.214267pt;}
.y142{bottom:825.006667pt;}
.y133{bottom:825.538533pt;}
.yb9{bottom:826.490800pt;}
.y33{bottom:827.063733pt;}
.yd7{bottom:829.746400pt;}
.y26{bottom:831.853067pt;}
.y1e5{bottom:834.905067pt;}
.y1f1{bottom:839.219333pt;}
.y1b7{bottom:842.452133pt;}
.y1b2{bottom:842.989733pt;}
.y1db{bottom:844.625067pt;}
.y32{bottom:847.063733pt;}
.y141{bottom:847.836000pt;}
.y132{bottom:848.370533pt;}
.y276{bottom:848.840533pt;}
.y25{bottom:849.186400pt;}
.y272{bottom:849.365867pt;}
.yb8{bottom:850.337467pt;}
.yae{bottom:855.944267pt;}
.yda{bottom:857.930400pt;}
.yb7{bottom:861.005467pt;}
.yde{bottom:862.406267pt;}
.y1f0{bottom:863.383333pt;}
.y1e4{bottom:864.137067pt;}
.y1a4{bottom:864.488267pt;}
.y1a1{bottom:865.017867pt;}
.y24{bottom:866.519733pt;}
.yd6{bottom:867.938400pt;}
.y140{bottom:870.665333pt;}
.y131{bottom:871.202533pt;}
.y1b6{bottom:872.141467pt;}
.y1b1{bottom:872.677733pt;}
.y1da{bottom:873.857067pt;}
.y1ef{bottom:874.051333pt;}
.y23{bottom:883.853067pt;}
.y13d{bottom:885.814667pt;}
.y31{bottom:887.063733pt;}
.y275{bottom:888.908533pt;}
.y271{bottom:889.437867pt;}
.yb6{bottom:890.452133pt;}
.y1ee{bottom:892.615333pt;}
.y1e3{bottom:893.369067pt;}
.y130{bottom:894.034533pt;}
.yad{bottom:896.056267pt;}
.yd9{bottom:896.122400pt;}
.ydd{bottom:900.598267pt;}
.yb5{bottom:901.120133pt;}
.y22{bottom:901.186400pt;}
.y1b5{bottom:901.830800pt;}
.y1b0{bottom:902.365733pt;}
.y1d9{bottom:903.089067pt;}
.y1ed{bottom:903.283333pt;}
.yd5{bottom:906.130400pt;}
.y30{bottom:907.063733pt;}
.yf1{bottom:909.989200pt;}
.y13c{bottom:916.335733pt;}
.y12f{bottom:916.866533pt;}
.y1a3{bottom:917.436267pt;}
.y1a0{bottom:917.969867pt;}
.y21{bottom:918.519733pt;}
.y1e2{bottom:922.601067pt;}
.y1ec{bottom:926.915333pt;}
.y2f{bottom:927.063733pt;}
.y274{bottom:928.976533pt;}
.y270{bottom:929.509867pt;}
.yb4{bottom:930.566800pt;}
.y1b4{bottom:931.520133pt;}
.y1af{bottom:932.053733pt;}
.y1d8{bottom:932.321067pt;}
.y20{bottom:935.853067pt;}
.yac{bottom:936.168267pt;}
.yef{bottom:936.893200pt;}
.y13b{bottom:939.165067pt;}
.y12e{bottom:939.698533pt;}
.yb3{bottom:941.234800pt;}
.y2e{bottom:947.063733pt;}
.y55{bottom:953.186400pt;}
.y2d{bottom:967.063733pt;}
.y1f{bottom:970.519733pt;}
.y14e{bottom:983.853067pt;}
.y2c{bottom:987.063733pt;}
.y1c3{bottom:987.852933pt;}
.yc7{bottom:987.853067pt;}
.y8a{bottom:989.853067pt;}
.y1c2{bottom:1005.186267pt;}
.y54{bottom:1005.186400pt;}
.y1e{bottom:1005.434000pt;}
.y2b{bottom:1007.063733pt;}
.yec{bottom:1039.626667pt;}
.y12d{bottom:1050.418667pt;}
.yeb{bottom:1058.186667pt;}
.y7{bottom:1064.543733pt;}
.y1ae{bottom:1068.606667pt;}
.y12c{bottom:1068.978667pt;}
.yea{bottom:1076.746667pt;}
.y1ad{bottom:1087.166667pt;}
.y12b{bottom:1087.538667pt;}
.y1d7{bottom:1094.362667pt;}
.ye9{bottom:1095.306667pt;}
.ycf{bottom:1097.124000pt;}
.yaa{bottom:1101.562667pt;}
.y1ac{bottom:1105.726667pt;}
.y129{bottom:1106.097333pt;}
.y19f{bottom:1109.986667pt;}
.y1d6{bottom:1112.922667pt;}
.y26f{bottom:1121.565333pt;}
.y1ab{bottom:1124.286667pt;}
.y128{bottom:1124.658667pt;}
.y19e{bottom:1128.546667pt;}
.y1d5{bottom:1131.482667pt;}
.y26e{bottom:1140.125333pt;}
.y1aa{bottom:1142.846667pt;}
.y120{bottom:1143.218667pt;}
.y19d{bottom:1147.106667pt;}
.y1d4{bottom:1150.042667pt;}
.yce{bottom:1152.804000pt;}
.ya8{bottom:1157.242667pt;}
.y26d{bottom:1158.685333pt;}
.y1a9{bottom:1161.406667pt;}
.y19c{bottom:1165.666667pt;}
.y1d3{bottom:1168.602667pt;}
.ycd{bottom:1171.364000pt;}
.y26c{bottom:1177.245333pt;}
.y1a8{bottom:1179.966667pt;}
.y1d1{bottom:1187.162667pt;}
.ycc{bottom:1189.924000pt;}
.y26b{bottom:1195.805333pt;}
.ycb{bottom:1208.484000pt;}
.ya6{bottom:1212.922667pt;}
.y26a{bottom:1214.365333pt;}
.yc9{bottom:1227.044000pt;}
.y269{bottom:1232.925333pt;}
.ya1{bottom:1250.042667pt;}
.y1d0{bottom:1261.402667pt;}
.y11f{bottom:1273.138667pt;}
.y1c9{bottom:1279.962667pt;}
.y11e{bottom:1291.697333pt;}
.y9f{bottom:1305.722667pt;}
.y11d{bottom:1310.258667pt;}
.y11c{bottom:1328.818667pt;}
.y9c{bottom:1342.842667pt;}
.y115{bottom:1347.378667pt;}
.y1c8{bottom:1354.202667pt;}
.y1c7{bottom:1372.762667pt;}
.y99{bottom:1379.962667pt;}
.y1c6{bottom:1391.322667pt;}
.y1c5{bottom:1409.882667pt;}
.y97{bottom:1417.082667pt;}
.y114{bottom:1421.618667pt;}
.y112{bottom:1440.178667pt;}
.y110{bottom:1458.737333pt;}
.h44{height:-493.702667pt;}
.h45{height:-475.144000pt;}
.h46{height:-456.584000pt;}
.h19{height:-455.792000pt;}
.h7b{height:-455.738667pt;}
.h7c{height:-437.178667pt;}
.h1b{height:-418.672000pt;}
.h7d{height:-418.618667pt;}
.h7e{height:-400.058667pt;}
.h47{height:-382.344000pt;}
.h1c{height:-381.552000pt;}
.h49{height:-363.784000pt;}
.h4a{height:-345.224000pt;}
.h1e{height:-344.432000pt;}
.h4b{height:-326.662667pt;}
.h7f{height:-325.818667pt;}
.h4c{height:-308.104000pt;}
.h81{height:-307.258667pt;}
.h1f{height:-288.752000pt;}
.h25{height:-282.524000pt;}
.hb1{height:-279.738667pt;}
.h27{height:-263.964000pt;}
.hb2{height:-261.178667pt;}
.h61{height:-259.233333pt;}
.h20{height:-251.632000pt;}
.h28{height:-245.404000pt;}
.hb3{height:-242.618667pt;}
.h56{height:-242.218667pt;}
.h11{height:-240.729333pt;}
.h62{height:-240.673333pt;}
.hab{height:-234.074667pt;}
.h82{height:-233.018667pt;}
.h29{height:-226.844000pt;}
.hb4{height:-224.058667pt;}
.h57{height:-223.658667pt;}
.h71{height:-222.990667pt;}
.ha0{height:-222.298667pt;}
.h13{height:-222.169333pt;}
.h63{height:-222.113333pt;}
.ha6{height:-220.410667pt;}
.hac{height:-215.514667pt;}
.h83{height:-214.458667pt;}
.h2a{height:-208.284000pt;}
.h8a{height:-208.053333pt;}
.h6b{height:-207.934667pt;}
.hb5{height:-205.498667pt;}
.h99{height:-205.194667pt;}
.h58{height:-205.098667pt;}
.h72{height:-204.430667pt;}
.ha1{height:-203.738667pt;}
.h14{height:-203.609333pt;}
.had{height:-196.954667pt;}
.h21{height:-195.952000pt;}
.h84{height:-195.898667pt;}
.h8b{height:-189.493333pt;}
.h6d{height:-189.374667pt;}
.hb6{height:-186.938667pt;}
.h9a{height:-186.634667pt;}
.h59{height:-186.538667pt;}
.h73{height:-185.870667pt;}
.ha2{height:-185.178667pt;}
.h15{height:-185.049333pt;}
.ha7{height:-183.289333pt;}
.h91{height:-178.716000pt;}
.hae{height:-178.394667pt;}
.h4d{height:-178.184000pt;}
.h85{height:-177.338667pt;}
.h37{height:-171.048000pt;}
.h8c{height:-170.933333pt;}
.h6e{height:-170.814667pt;}
.hb7{height:-168.378667pt;}
.h9b{height:-168.074667pt;}
.h5a{height:-167.978667pt;}
.h74{height:-167.310667pt;}
.ha3{height:-166.618667pt;}
.ha8{height:-164.729333pt;}
.h92{height:-160.156000pt;}
.haf{height:-159.834667pt;}
.h4e{height:-159.624000pt;}
.h86{height:-158.778667pt;}
.h39{height:-153.865333pt;}
.h2b{height:-152.604000pt;}
.h8d{height:-152.373333pt;}
.h6f{height:-152.254667pt;}
.h66{height:-149.649333pt;}
.h9c{height:-149.514667pt;}
.h5b{height:-149.418667pt;}
.h75{height:-148.750667pt;}
.ha4{height:-148.058667pt;}
.ha9{height:-146.170667pt;}
.h30{height:-144.765333pt;}
.h93{height:-141.596000pt;}
.h4f{height:-141.062667pt;}
.h22{height:-140.272000pt;}
.h87{height:-140.218667pt;}
.h3a{height:-136.681333pt;}
.h8e{height:-133.813333pt;}
.h68{height:-131.089333pt;}
.h9d{height:-130.954667pt;}
.h5c{height:-130.858667pt;}
.h76{height:-130.190667pt;}
.h31{height:-126.205333pt;}
.h94{height:-123.036000pt;}
.h50{height:-122.504000pt;}
.h3b{height:-119.498667pt;}
.h69{height:-112.529333pt;}
.h5d{height:-112.298667pt;}
.h77{height:-111.630667pt;}
.h32{height:-107.645333pt;}
.h95{height:-104.476000pt;}
.h51{height:-103.944000pt;}
.h3c{height:-102.316000pt;}
.h5e{height:-93.738667pt;}
.h33{height:-89.085333pt;}
.h52{height:-85.384000pt;}
.h3d{height:-85.133333pt;}
.h7a{height:-47.369333pt;}
.h96{height:-23.213333pt;}
.h41{height:-2.916000pt;}
.h42{height:15.005675pt;}
.h36{height:20.260417pt;}
.h23{height:21.875000pt;}
.h2d{height:22.171875pt;}
.h40{height:22.508512pt;}
.h53{height:22.833333pt;}
.h16{height:23.203125pt;}
.h18{height:23.648000pt;}
.hf{height:23.668229pt;}
.h10{height:24.312500pt;}
.hd{height:24.484375pt;}
.h88{height:24.515625pt;}
.h60{height:25.520833pt;}
.h2e{height:25.867188pt;}
.h64{height:27.070312pt;}
.h43{height:28.364583pt;}
.h5{height:28.565104pt;}
.h89{height:28.601562pt;}
.h98{height:29.020833pt;}
.h2f{height:29.562500pt;}
.hbc{height:32.032812pt;}
.hba{height:32.114062pt;}
.hbb{height:32.235937pt;}
.hb9{height:32.812500pt;}
.h79{height:33.257812pt;}
.h90{height:34.037500pt;}
.h55{height:34.442708pt;}
.he{height:34.686198pt;}
.ha{height:36.139583pt;}
.h8{height:36.231250pt;}
.h9{height:36.368750pt;}
.hc{height:36.698177pt;}
.h38{height:37.077379pt;}
.h54{height:38.766927pt;}
.h12{height:39.243750pt;}
.h6c{height:40.048750pt;}
.h1a{height:40.250000pt;}
.h26{height:40.796250pt;}
.h67{height:42.262500pt;}
.h4{height:45.174479pt;}
.h7{height:45.460938pt;}
.h3f{height:46.749660pt;}
.h35{height:50.750000pt;}
.h9f{height:50.786458pt;}
.h24{height:51.041667pt;}
.h6{height:57.130208pt;}
.hb{height:58.170911pt;}
.h3{height:72.201973pt;}
.h65{height:143.622667pt;}
.ha5{height:154.521333pt;}
.h78{height:156.000000pt;}
.h6a{height:157.482667pt;}
.h9e{height:165.124000pt;}
.hb8{height:169.192000pt;}
.h97{height:170.550667pt;}
.h8f{height:173.226667pt;}
.h70{height:179.005333pt;}
.h2{height:179.552083pt;}
.haa{height:185.596000pt;}
.h2c{height:190.666667pt;}
.hb0{height:190.878667pt;}
.h5f{height:216.745333pt;}
.h17{height:221.081333pt;}
.h3e{height:221.537333pt;}
.h34{height:221.538667pt;}
.h1d{height:293.542667pt;}
.h48{height:322.526667pt;}
.h80{height:329.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:-96.164000pt;}
.w1f{width:-39.642667pt;}
.wa{width:-22.884000pt;}
.w30{width:-1.381333pt;}
.w17{width:1.929333pt;}
.w1d{width:46.068000pt;}
.wc{width:60.653333pt;}
.w28{width:65.461333pt;}
.w10{width:66.325333pt;}
.w2b{width:71.998667pt;}
.w2{width:72.000000pt;}
.w1a{width:85.440000pt;}
.we{width:91.408000pt;}
.wf{width:92.872000pt;}
.w25{width:113.081333pt;}
.w12{width:134.229333pt;}
.w11{width:181.754667pt;}
.w4{width:205.440000pt;}
.wb{width:205.942667pt;}
.w3{width:217.952000pt;}
.wd{width:229.430667pt;}
.w6{width:297.280000pt;}
.w21{width:311.396000pt;}
.w20{width:311.629333pt;}
.w31{width:311.810667pt;}
.w2a{width:315.381333pt;}
.w29{width:315.614667pt;}
.w35{width:319.040000pt;}
.w2f{width:319.680000pt;}
.w2e{width:319.925333pt;}
.w1c{width:320.000000pt;}
.w1b{width:320.246667pt;}
.w23{width:320.320000pt;}
.w24{width:320.960000pt;}
.w22{width:321.258667pt;}
.w33{width:321.280000pt;}
.w34{width:322.032000pt;}
.w32{width:323.140000pt;}
.w9{width:323.150667pt;}
.w1e{width:340.788000pt;}
.w15{width:398.996000pt;}
.w19{width:420.432000pt;}
.w18{width:422.361333pt;}
.w2d{width:432.960000pt;}
.w37{width:434.128000pt;}
.w36{width:434.768000pt;}
.w16{width:436.800000pt;}
.w13{width:436.877333pt;}
.w14{width:436.878667pt;}
.w27{width:441.721333pt;}
.w26{width:441.917333pt;}
.w7{width:446.080000pt;}
.w5{width:452.786667pt;}
.w2c{width:453.120000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2b{left:-166.243733pt;}
.x8c{left:-109.722800pt;}
.x2c{left:-92.963733pt;}
.xc6{left:-71.461333pt;}
.x2e{left:-68.963733pt;}
.x80{left:-37.452267pt;}
.x8d{left:-36.442800pt;}
.x2d{left:-19.683733pt;}
.x9d{left:-15.879067pt;}
.x8e{left:-12.442800pt;}
.x44{left:-4.228400pt;}
.x0{left:0.000000pt;}
.x39{left:0.914133pt;}
.xe{left:1.919600pt;}
.x6b{left:5.129867pt;}
.x64{left:10.946667pt;}
.x42{left:15.268000pt;}
.xc7{left:25.818667pt;}
.x4e{left:28.424933pt;}
.x4c{left:31.817867pt;}
.x6c{left:36.809867pt;}
.x63{left:38.554800pt;}
.x4d{left:39.802933pt;}
.xb8{left:43.086000pt;}
.x3a{left:45.321200pt;}
.x9c{left:46.419200pt;}
.x55{left:49.532000pt;}
.x7c{left:51.656000pt;}
.x7{left:52.913333pt;}
.x12{left:55.518667pt;}
.x8{left:56.692933pt;}
.x69{left:58.582667pt;}
.x7d{left:59.774667pt;}
.x7e{left:61.800000pt;}
.x23{left:62.883733pt;}
.x43{left:65.285333pt;}
.xc9{left:66.758400pt;}
.x9{left:67.924133pt;}
.xa{left:71.778000pt;}
.x11{left:72.913333pt;}
.x4{left:74.645600pt;}
.x3{left:75.590533pt;}
.xac{left:77.606800pt;}
.x1{left:79.370133pt;}
.x4a{left:80.344959pt;}
.x2{left:81.342133pt;}
.x45{left:85.834267pt;}
.x50{left:87.518400pt;}
.x1f{left:89.166400pt;}
.x5{left:90.675600pt;}
.x21{left:91.975733pt;}
.x46{left:92.944400pt;}
.xd{left:94.561600pt;}
.x20{left:96.362400pt;}
.x38{left:98.879333pt;}
.xb2{left:100.341867pt;}
.x24{left:101.617067pt;}
.x37{left:102.678000pt;}
.xaf{left:104.160133pt;}
.x56{left:106.879733pt;}
.x25{left:108.915733pt;}
.x49{left:111.074113pt;}
.xae{left:112.074800pt;}
.x8a{left:113.155867pt;}
.xb0{left:114.772133pt;}
.x22{left:116.522400pt;}
.x67{left:120.336667pt;}
.x26{left:122.551733pt;}
.xd6{left:124.484133pt;}
.x91{left:126.080000pt;}
.xb1{left:127.764133pt;}
.x60{left:129.208800pt;}
.xca{left:132.617067pt;}
.x1e{left:133.938400pt;}
.xb9{left:137.730667pt;}
.x27{left:139.043733pt;}
.xa1{left:140.280933pt;}
.x61{left:142.964533pt;}
.x4b{left:145.936038pt;}
.xa0{left:147.960800pt;}
.x1d{left:148.853067pt;}
.x1c{left:152.054400pt;}
.xd2{left:155.519867pt;}
.x62{left:157.197867pt;}
.x4f{left:159.389333pt;}
.xcd{left:161.538667pt;}
.x68{left:162.430000pt;}
.x66{left:168.366000pt;}
.x65{left:169.952667pt;}
.x9e{left:171.054667pt;}
.x3e{left:172.480267pt;}
.x8b{left:174.095333pt;}
.xf{left:175.937333pt;}
.xad{left:177.893467pt;}
.x3d{left:180.160400pt;}
.xc8{left:182.426133pt;}
.x32{left:186.478000pt;}
.xd0{left:187.721333pt;}
.x9f{left:189.560800pt;}
.x36{left:193.302000pt;}
.x33{left:202.774000pt;}
.x53{left:208.053733pt;}
.x5d{left:209.630933pt;}
.x2f{left:211.526000pt;}
.x5c{left:214.158933pt;}
.x5a{left:219.502933pt;}
.x58{left:224.438933pt;}
.x47{left:226.051067pt;}
.x31{left:230.022000pt;}
.x5f{left:231.446933pt;}
.xa7{left:241.061867pt;}
.x10{left:243.609333pt;}
.xab{left:245.877867pt;}
.xa2{left:248.029867pt;}
.x8f{left:250.066667pt;}
.xa4{left:253.349867pt;}
.xa3{left:255.397867pt;}
.xa5{left:260.309867pt;}
.x59{left:261.486933pt;}
.x48{left:263.727423pt;}
.x15{left:266.232400pt;}
.xce{left:269.065333pt;}
.xa8{left:272.877867pt;}
.x35{left:275.710000pt;}
.x1b{left:276.624400pt;}
.xaa{left:283.141867pt;}
.x28{left:287.481200pt;}
.x5b{left:289.894933pt;}
.xd1{left:292.852000pt;}
.x6a{left:295.748000pt;}
.x7a{left:297.677333pt;}
.xa9{left:298.949867pt;}
.x29{left:301.396267pt;}
.xb{left:302.362133pt;}
.xba{left:304.361333pt;}
.x75{left:307.084000pt;}
.xd7{left:308.894533pt;}
.x16{left:310.952400pt;}
.xc0{left:312.627867pt;}
.xc{left:317.030667pt;}
.xbf{left:319.777200pt;}
.x17{left:320.712400pt;}
.x34{left:321.774000pt;}
.x79{left:322.913333pt;}
.x77{left:328.989333pt;}
.x76{left:330.118667pt;}
.x73{left:331.826667pt;}
.x74{left:334.869333pt;}
.x14{left:337.919333pt;}
.x1a{left:340.408400pt;}
.xb7{left:343.166933pt;}
.xd5{left:344.196133pt;}
.x13{left:345.599333pt;}
.x90{left:351.202667pt;}
.x78{left:352.229333pt;}
.xcf{left:359.145333pt;}
.x30{left:365.558000pt;}
.x6{left:368.574800pt;}
.x7f{left:393.070667pt;}
.x89{left:394.229733pt;}
.xd8{left:395.401600pt;}
.x7b{left:396.850400pt;}
.x87{left:398.373733pt;}
.x5e{left:399.702933pt;}
.xc1{left:401.962667pt;}
.xc5{left:403.561333pt;}
.x88{left:407.193733pt;}
.x86{left:410.199067pt;}
.x51{left:415.748000pt;}
.x2a{left:417.637733pt;}
.x6d{left:420.207600pt;}
.x9b{left:424.013467pt;}
.x72{left:425.239600pt;}
.x52{left:434.645600pt;}
.x81{left:440.418667pt;}
.xb3{left:442.332667pt;}
.x71{left:444.095600pt;}
.x3b{left:450.141333pt;}
.x6f{left:451.215600pt;}
.x41{left:453.387467pt;}
.x9a{left:454.692133pt;}
.x57{left:456.494933pt;}
.x19{left:459.136400pt;}
.xa6{left:467.261867pt;}
.x18{left:472.048400pt;}
.x6e{left:476.871600pt;}
.xb4{left:483.292667pt;}
.x83{left:501.778533pt;}
.x84{left:503.458533pt;}
.x93{left:507.453200pt;}
.x94{left:508.765200pt;}
.x92{left:516.989200pt;}
.xb6{left:518.796667pt;}
.xbc{left:520.787733pt;}
.x3c{left:523.421333pt;}
.x82{left:527.138667pt;}
.x54{left:533.150400pt;}
.x95{left:566.901200pt;}
.xcc{left:576.599067pt;}
.x3f{left:577.755467pt;}
.xb5{left:591.220667pt;}
.xbe{left:603.539733pt;}
.x97{left:613.149200pt;}
.x98{left:614.461200pt;}
.x40{left:619.451467pt;}
.x96{left:622.685200pt;}
.xd3{left:639.233333pt;}
.xc3{left:652.796000pt;}
.xbb{left:661.438933pt;}
.xbd{left:666.435733pt;}
.x99{left:672.597200pt;}
.xc4{left:677.868000pt;}
.xc2{left:679.988000pt;}
.x85{left:688.498533pt;}
.x70{left:691.007600pt;}
.xd4{left:700.105333pt;}
.xcb{left:710.631067pt;}
}




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