
    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_08181c53684eb399c90a3a66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-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_db3ca6ac9997c5062abcadab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-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_77ffd72d94275a5e83201e8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.860840;font-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_54947a4cc0e60e93a994e840.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.687500;font-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_35cfe3362247c910dbd0788c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-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_dd1ed636187ca90190f6e127.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-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_e3571c236d08c6c1c8aa21f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-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_ba5ba9b5757794e33c133a9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-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_43f25e266d6aa5988a3f1337.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.046387;font-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_688322d2093e87a1aa98da79.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-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_5d38a3c097fdd303daee8636.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-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_ef81b23b2bfaf001bcfb18e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;font-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_9ab0d81f9d763c15dfc4798a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-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_cf59f4695142c19dac4c66e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;font-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_a0d550df0e506b3fa634e208.woff2')format("woff");}.fff{font-family:fff;line-height:0.709473;font-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_324970c64d87d4bd8345a718.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.142090;font-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_e23e91835dbe45fe8361f5db.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3945344c0ee7dfaddee72efd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908691;font-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_f1090009c169dc54b8ada1bf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cd5493077eff89505603a44c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.687500;font-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_2b44d434f978e4db11d645b9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.709473;font-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_ffcd945908e65d6e3e4b7f19.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.882324;font-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_87c693997a42d8511b84b46f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.677246;font-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_b4cf2f0d694d0fde5237e417.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-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_cafb176eceb0a2647e643f4c.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.842285;font-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_f9e5016ffb93437c803ed41e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.709473;font-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_9045f27cb488ab90afcf2100.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.033691;font-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_e31551e24d1cbfb2bf22295a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.905762;font-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_fb7776497d915e4dc9462380.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.704590;font-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_1964bce52a16eb345f7365b7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.905762;font-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_f32fa79a95532eb1de191b30.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;font-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_67a358f50a929eb1900d14f8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-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_7ab850721c534faee1c238b0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.709473;font-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_a64f40a9b5ad079b355a61d4.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910156;font-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_cb1b33b50f864f45d383a3c4.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938477;font-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_d930fccc2f4dbf3f46db3df9.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_ff8f778c3792970d108b51db.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.910156;font-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_2b3dd858870df49454f62d62.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938477;font-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_86198b098e7d5a215260231b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_1a8157ef0d88b86a7712bd4d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.910156;font-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_76633dacc1cc557b4b3fdc7e.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_a4c09d1c88a418b0220e33fb.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-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_2c7caa74ba980a1e314f60f1.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.891602;font-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_f66312e099f49ae703d59f7c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.908203;font-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_5c81815112bdfa8ac63a6f05.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.709473;font-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_c5ec0ad598c9d12bf07f7e17.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-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_2c7caa74ba980a1e314f60f1.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.891602;font-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_f66312e099f49ae703d59f7c.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.908203;font-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_5c81815112bdfa8ac63a6f05.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.709473;font-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_524678d8438a80b58b3a663c.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.926758;font-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_86198b098e7d5a215260231b.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_1a8157ef0d88b86a7712bd4d.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910156;font-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_5e05ed6f78ffea8dddef0c11.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_d930fccc2f4dbf3f46db3df9.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_ff8f778c3792970d108b51db.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_e53ad4d2f48dcd3b5e612b1c.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_849736453e68d7a9d81bda92.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_5766ca8337803b81b4c42a16.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_294bdc7d7a27f3cd049180c9.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.908203;font-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:ff3c;src:url('chunks/assets/font_a9f2c8afe3e215514473e089.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.730957;font-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:ff3d;src:url('chunks/assets/font_849736453e68d7a9d81bda92.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.677246;font-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:ff3e;src:url('chunks/assets/font_95f23a9d46bedd2fe1a692bc.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.692383;font-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:ff3f;src:url('chunks/assets/font_14da663577e4a2f366b0c983.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910156;font-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:ff40;src:url('chunks/assets/font_399a1224c3b4d8526f3ad5e9.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m19{transform:matrix(0.000000,-0.236828,0.237211,0.078935,0,0);-ms-transform:matrix(0.000000,-0.236828,0.237211,0.078935,0,0);-webkit-transform:matrix(0.000000,-0.236828,0.237211,0.078935,0,0);}
.m1c{transform:matrix(0.000000,-0.237045,0.237187,0.079007,0,0);-ms-transform:matrix(0.000000,-0.237045,0.237187,0.079007,0,0);-webkit-transform:matrix(0.000000,-0.237045,0.237187,0.079007,0,0);}
.m15{transform:matrix(0.000000,-0.249438,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249438,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249438,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.249596,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249596,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249596,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249679,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249706,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249706,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249706,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249786,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249786,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249786,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249811,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.250033,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250033,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250033,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250405,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250405,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250405,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185165,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.236828,0.000000,-0.078935,0.237212,0,0);-ms-transform:matrix(0.236828,0.000000,-0.078935,0.237212,0,0);-webkit-transform:matrix(0.236828,0.000000,-0.078935,0.237212,0,0);}
.m4{transform:matrix(0.237283,0.000000,-0.079086,0.237161,0,0);-ms-transform:matrix(0.237283,0.000000,-0.079086,0.237161,0,0);-webkit-transform:matrix(0.237283,0.000000,-0.079086,0.237161,0,0);}
.m13{transform:matrix(0.237334,0.000000,-0.079104,0.237155,0,0);-ms-transform:matrix(0.237334,0.000000,-0.079104,0.237155,0,0);-webkit-transform:matrix(0.237334,0.000000,-0.079104,0.237155,0,0);}
.m2{transform:matrix(0.238158,0.000000,-0.079378,0.237064,0,0);-ms-transform:matrix(0.238158,0.000000,-0.079378,0.237064,0,0);-webkit-transform:matrix(0.238158,0.000000,-0.079378,0.237064,0,0);}
.m6{transform:matrix(0.245907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245907,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250404,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);}
.vf{vertical-align:-61.224372px;}
.vd{vertical-align:-53.408976px;}
.ve{vertical-align:-41.610420px;}
.va{vertical-align:-38.524540px;}
.v8{vertical-align:-36.186092px;}
.v2{vertical-align:-21.600000px;}
.v5{vertical-align:-12.960000px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-1.360589px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.960000px;}
.v1{vertical-align:24.480000px;}
.vc{vertical-align:28.391822px;}
.v4{vertical-align:33.120000px;}
.vb{vertical-align:39.641412px;}
.v9{vertical-align:46.392750px;}
.lsbe{letter-spacing:-0.907317px;}
.lsbf{letter-spacing:-0.882113px;}
.ls10e{letter-spacing:-0.741834px;}
.ls108{letter-spacing:-0.570850px;}
.ls22{letter-spacing:-0.508896px;}
.ls127{letter-spacing:-0.474359px;}
.ls21{letter-spacing:-0.448704px;}
.lsf7{letter-spacing:-0.417312px;}
.ls20{letter-spacing:-0.410400px;}
.ls107{letter-spacing:-0.407582px;}
.ls11f{letter-spacing:-0.394087px;}
.ls1f{letter-spacing:-0.393984px;}
.ls10a{letter-spacing:-0.393807px;}
.lsf8{letter-spacing:-0.381024px;}
.ls12c{letter-spacing:-0.377568px;}
.ls1e{letter-spacing:-0.361152px;}
.ls15{letter-spacing:-0.338688px;}
.ls12b{letter-spacing:-0.328320px;}
.ls1d{letter-spacing:-0.320544px;}
.ls2c{letter-spacing:-0.318000px;}
.ls112{letter-spacing:-0.303783px;}
.ls122{letter-spacing:-0.303150px;}
.ls19{letter-spacing:-0.302400px;}
.ls11b{letter-spacing:-0.300989px;}
.ls115{letter-spacing:-0.300358px;}
.ls2b{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.260064px;}
.ls17{letter-spacing:-0.241920px;}
.ls12e{letter-spacing:-0.240768px;}
.ls2e{letter-spacing:-0.240000px;}
.ls93{letter-spacing:-0.238464px;}
.ls1a{letter-spacing:-0.223776px;}
.ls30{letter-spacing:-0.222000px;}
.ls12d{letter-spacing:-0.207936px;}
.ls26{letter-spacing:-0.205344px;}
.ls2a{letter-spacing:-0.198720px;}
.ls12f{letter-spacing:-0.180576px;}
.lsf9{letter-spacing:-0.175392px;}
.lsbc{letter-spacing:-0.165600px;}
.ls23{letter-spacing:-0.158976px;}
.ls16{letter-spacing:-0.157248px;}
.ls2d{letter-spacing:-0.156000px;}
.ls44{letter-spacing:-0.145728px;}
.ls1b{letter-spacing:-0.145152px;}
.ls31{letter-spacing:-0.144000px;}
.lsde{letter-spacing:-0.139104px;}
.ls27{letter-spacing:-0.125856px;}
.lsf6{letter-spacing:-0.120960px;}
.ls2f{letter-spacing:-0.120000px;}
.ls24{letter-spacing:-0.119232px;}
.ls10d{letter-spacing:-0.112595px;}
.ls11a{letter-spacing:-0.110642px;}
.ls125{letter-spacing:-0.109480px;}
.ls120{letter-spacing:-0.095408px;}
.ls104{letter-spacing:-0.094068px;}
.ls111{letter-spacing:-0.093036px;}
.ls114{letter-spacing:-0.091987px;}
.ls11e{letter-spacing:-0.090954px;}
.ls109{letter-spacing:-0.090889px;}
.ls28{letter-spacing:-0.086112px;}
.ls25{letter-spacing:-0.079488px;}
.ls29{letter-spacing:-0.059616px;}
.ls10{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls121{letter-spacing:0.022017px;}
.ls126{letter-spacing:0.025265px;}
.lscb{letter-spacing:0.038880px;}
.ls110{letter-spacing:0.038918px;}
.ls10f{letter-spacing:0.039361px;}
.ls116{letter-spacing:0.043672px;}
.lsad{letter-spacing:0.044064px;}
.ls59{letter-spacing:0.051264px;}
.ls5a{letter-spacing:0.051840px;}
.ls18{letter-spacing:0.058320px;}
.lsbd{letter-spacing:0.058464px;}
.ls1{letter-spacing:0.077760px;}
.ls117{letter-spacing:0.084100px;}
.ls113{letter-spacing:0.085059px;}
.ls102{letter-spacing:0.087865px;}
.ls11c{letter-spacing:0.095151px;}
.ls100{letter-spacing:0.098507px;}
.lsa4{letter-spacing:0.100224px;}
.ls119{letter-spacing:0.107076px;}
.ls124{letter-spacing:0.114917px;}
.ls0{letter-spacing:0.116640px;}
.ls4{letter-spacing:0.119400px;}
.ls78{letter-spacing:0.119520px;}
.ls3f{letter-spacing:0.119952px;}
.ls9b{letter-spacing:0.120096px;}
.ls7e{letter-spacing:0.120960px;}
.ls72{letter-spacing:0.121104px;}
.ls10c{letter-spacing:0.136153px;}
.lsdd{letter-spacing:0.141984px;}
.ls12{letter-spacing:0.147744px;}
.ls77{letter-spacing:0.159840px;}
.lsce{letter-spacing:0.162720px;}
.lscf{letter-spacing:0.164160px;}
.ls84{letter-spacing:0.179568px;}
.lsf{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.186624px;}
.lsc4{letter-spacing:0.200016px;}
.ls7d{letter-spacing:0.200160px;}
.ls79{letter-spacing:0.200304px;}
.ls11{letter-spacing:0.217728px;}
.ls14{letter-spacing:0.237600px;}
.ls5{letter-spacing:0.239400px;}
.ls95{letter-spacing:0.240192px;}
.ls2{letter-spacing:0.242352px;}
.ls3{letter-spacing:0.254904px;}
.ls103{letter-spacing:0.275616px;}
.ls128{letter-spacing:0.283968px;}
.lsf4{letter-spacing:0.335664px;}
.lsff{letter-spacing:0.412598px;}
.lsb{letter-spacing:0.463680px;}
.ls105{letter-spacing:0.526309px;}
.lsf5{letter-spacing:0.547200px;}
.lsfe{letter-spacing:0.581710px;}
.ls99{letter-spacing:0.652320px;}
.ls9a{letter-spacing:0.653760px;}
.lsfd{letter-spacing:0.716789px;}
.ls89{letter-spacing:0.731520px;}
.ls88{letter-spacing:0.733968px;}
.ls35{letter-spacing:0.792000px;}
.ls34{letter-spacing:0.793440px;}
.lsd8{letter-spacing:0.846576px;}
.lsd9{letter-spacing:0.848160px;}
.lsef{letter-spacing:0.856800px;}
.lsd0{letter-spacing:0.878400px;}
.ls106{letter-spacing:0.932766px;}
.lse7{letter-spacing:0.940320px;}
.ls12a{letter-spacing:0.951840px;}
.ls7b{letter-spacing:1.067040px;}
.ls7a{letter-spacing:1.068480px;}
.lsc9{letter-spacing:1.110240px;}
.lsca{letter-spacing:1.111680px;}
.lsb6{letter-spacing:1.212480px;}
.lse9{letter-spacing:1.244160px;}
.lsea{letter-spacing:1.245600px;}
.ls57{letter-spacing:1.255392px;}
.ls58{letter-spacing:1.256976px;}
.lsa1{letter-spacing:1.258416px;}
.lsa2{letter-spacing:1.258560px;}
.ls86{letter-spacing:1.363680px;}
.ls85{letter-spacing:1.363968px;}
.lsb0{letter-spacing:1.625760px;}
.lse1{letter-spacing:1.650240px;}
.lse{letter-spacing:1.656000px;}
.lsc7{letter-spacing:1.715328px;}
.ls3b{letter-spacing:1.733040px;}
.ls4a{letter-spacing:1.762560px;}
.ls49{letter-spacing:1.763856px;}
.ls51{letter-spacing:1.765440px;}
.ls73{letter-spacing:1.784160px;}
.ls6e{letter-spacing:1.913040px;}
.lsb8{letter-spacing:1.932480px;}
.lsb9{letter-spacing:1.933920px;}
.lsf3{letter-spacing:1.968480px;}
.lsf1{letter-spacing:1.968768px;}
.lsf0{letter-spacing:1.968912px;}
.lsf2{letter-spacing:1.971360px;}
.ls87{letter-spacing:1.991520px;}
.ls63{letter-spacing:2.028960px;}
.ls64{letter-spacing:2.030400px;}
.ls7c{letter-spacing:2.063952px;}
.ls98{letter-spacing:2.076480px;}
.ls45{letter-spacing:2.434464px;}
.ls46{letter-spacing:2.434752px;}
.ls5b{letter-spacing:2.535840px;}
.lsc8{letter-spacing:2.541600px;}
.ls6b{letter-spacing:2.613600px;}
.ls9c{letter-spacing:2.641104px;}
.ls9d{letter-spacing:2.641248px;}
.lsd5{letter-spacing:2.692800px;}
.lsd6{letter-spacing:2.694240px;}
.ls6f{letter-spacing:2.760480px;}
.ls8{letter-spacing:2.848320px;}
.ls7{letter-spacing:2.927808px;}
.ls56{letter-spacing:2.944800px;}
.ls55{letter-spacing:2.946240px;}
.ls9{letter-spacing:3.204000px;}
.ls74{letter-spacing:3.244752px;}
.ls37{letter-spacing:3.312000px;}
.ls53{letter-spacing:3.324960px;}
.ls52{letter-spacing:3.325392px;}
.ls8e{letter-spacing:3.357504px;}
.ls4f{letter-spacing:3.444480px;}
.ls50{letter-spacing:3.445920px;}
.ls4b{letter-spacing:3.448224px;}
.ls4c{letter-spacing:3.448800px;}
.lscd{letter-spacing:3.486240px;}
.lsc{letter-spacing:3.576960px;}
.ls3d{letter-spacing:3.581280px;}
.ls3c{letter-spacing:3.581568px;}
.ls3e{letter-spacing:3.582720px;}
.lsd{letter-spacing:3.643200px;}
.lsa9{letter-spacing:3.841920px;}
.ls6c{letter-spacing:3.919968px;}
.ls6d{letter-spacing:3.921264px;}
.ls33{letter-spacing:3.975840px;}
.ls32{letter-spacing:3.978432px;}
.ls65{letter-spacing:4.010688px;}
.ls66{letter-spacing:4.010832px;}
.ls67{letter-spacing:4.011840px;}
.lsed{letter-spacing:4.165920px;}
.lsec{letter-spacing:4.166064px;}
.lsee{letter-spacing:4.167360px;}
.lsac{letter-spacing:4.177440px;}
.lsab{letter-spacing:4.177728px;}
.ls94{letter-spacing:4.213440px;}
.lse5{letter-spacing:4.226400px;}
.lse4{letter-spacing:4.227840px;}
.ls8a{letter-spacing:4.302720px;}
.lsb2{letter-spacing:4.316832px;}
.lsb1{letter-spacing:4.316976px;}
.lsb7{letter-spacing:4.327200px;}
.lsfa{letter-spacing:4.331808px;}
.lsfb{letter-spacing:4.332960px;}
.ls9f{letter-spacing:4.381488px;}
.lsa0{letter-spacing:4.383360px;}
.ls62{letter-spacing:4.488480px;}
.ls129{letter-spacing:4.623552px;}
.lsc2{letter-spacing:4.659840px;}
.lsc1{letter-spacing:4.661136px;}
.lsbb{letter-spacing:4.746240px;}
.ls4e{letter-spacing:4.930560px;}
.ls4d{letter-spacing:4.930848px;}
.lsd2{letter-spacing:4.942080px;}
.lsd1{letter-spacing:4.942512px;}
.ls38{letter-spacing:5.572224px;}
.ls80{letter-spacing:6.657120px;}
.ls69{letter-spacing:7.251840px;}
.ls40{letter-spacing:7.325712px;}
.ls41{letter-spacing:7.325856px;}
.lsaa{letter-spacing:7.523568px;}
.lse2{letter-spacing:8.425872px;}
.lse3{letter-spacing:8.426880px;}
.ls3a{letter-spacing:8.474400px;}
.ls39{letter-spacing:8.475840px;}
.ls91{letter-spacing:8.579520px;}
.ls90{letter-spacing:8.580960px;}
.ls47{letter-spacing:8.711424px;}
.ls48{letter-spacing:8.712000px;}
.lscc{letter-spacing:9.004320px;}
.lsa{letter-spacing:9.074880px;}
.ls7f{letter-spacing:9.177120px;}
.ls36{letter-spacing:9.262080px;}
.ls5e{letter-spacing:10.037232px;}
.ls5f{letter-spacing:10.038240px;}
.lsd3{letter-spacing:10.038528px;}
.lsd4{letter-spacing:10.039680px;}
.ls8b{letter-spacing:10.171872px;}
.ls8c{letter-spacing:10.173456px;}
.ls8d{letter-spacing:10.173600px;}
.ls9e{letter-spacing:10.287648px;}
.ls92{letter-spacing:10.529280px;}
.ls83{letter-spacing:10.745280px;}
.ls60{letter-spacing:10.942560px;}
.ls54{letter-spacing:11.455200px;}
.lsae{letter-spacing:11.751840px;}
.ls6a{letter-spacing:11.931840px;}
.ls70{letter-spacing:12.481920px;}
.ls71{letter-spacing:12.483360px;}
.lsc5{letter-spacing:12.945600px;}
.ls81{letter-spacing:13.312656px;}
.ls82{letter-spacing:13.314240px;}
.ls8f{letter-spacing:13.524480px;}
.lsd7{letter-spacing:14.058144px;}
.lse6{letter-spacing:14.178240px;}
.lsaf{letter-spacing:14.225184px;}
.lsc0{letter-spacing:14.340645px;}
.ls75{letter-spacing:15.340320px;}
.ls76{letter-spacing:15.341760px;}
.lsb4{letter-spacing:15.509808px;}
.lsb3{letter-spacing:15.509952px;}
.lsb5{letter-spacing:15.510240px;}
.lsc6{letter-spacing:15.845184px;}
.ls5d{letter-spacing:16.441920px;}
.ls5c{letter-spacing:16.443360px;}
.lseb{letter-spacing:16.663680px;}
.ls43{letter-spacing:17.343360px;}
.ls42{letter-spacing:17.343792px;}
.ls61{letter-spacing:18.218304px;}
.ls68{letter-spacing:18.504000px;}
.lsc3{letter-spacing:20.878560px;}
.lsba{letter-spacing:21.094560px;}
.lse8{letter-spacing:21.796848px;}
.ls96{letter-spacing:25.924896px;}
.ls97{letter-spacing:25.925760px;}
.lsa3{letter-spacing:81.384826px;}
.lsa6{letter-spacing:82.665114px;}
.lse0{letter-spacing:95.886877px;}
.lsa5{letter-spacing:112.021783px;}
.lsdf{letter-spacing:114.245854px;}
.ls11d{letter-spacing:144.384541px;}
.lsa8{letter-spacing:188.375421px;}
.lsdc{letter-spacing:207.225588px;}
.lsdb{letter-spacing:232.143961px;}
.ls101{letter-spacing:244.788208px;}
.lsda{letter-spacing:245.885710px;}
.lsfc{letter-spacing:257.685088px;}
.lsa7{letter-spacing:332.314451px;}
.ls10b{letter-spacing:340.871493px;}
.ls118{letter-spacing:372.021033px;}
.ls123{letter-spacing:1224.935435px;}
.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;}
}
.ws33{word-spacing:-245.946785px;}
.ws2c{word-spacing:-188.444626px;}
.ws62{word-spacing:-34.504543px;}
.ws64{word-spacing:-34.448809px;}
.ws65{word-spacing:-28.425314px;}
.ws43{word-spacing:-28.026255px;}
.ws4d{word-spacing:-27.718532px;}
.ws55{word-spacing:-27.406001px;}
.ws5f{word-spacing:-27.098300px;}
.ws46{word-spacing:-26.877195px;}
.ws3b{word-spacing:-21.155616px;}
.ws63{word-spacing:-20.770586px;}
.ws59{word-spacing:-20.086754px;}
.ws0{word-spacing:-19.657728px;}
.ws6{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws4b{word-spacing:-16.975394px;}
.ws4f{word-spacing:-16.890334px;}
.ws53{word-spacing:-16.783994px;}
.ws57{word-spacing:-16.699894px;}
.wsf{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.480512px;}
.ws27{word-spacing:-16.473888px;}
.ws13{word-spacing:-16.440768px;}
.ws29{word-spacing:-16.434144px;}
.ws24{word-spacing:-16.414272px;}
.wse{word-spacing:-16.401024px;}
.ws12{word-spacing:-16.361280px;}
.ws10{word-spacing:-16.354656px;}
.ws15{word-spacing:-15.120000px;}
.ws17{word-spacing:-14.976000px;}
.ws36{word-spacing:-14.962752px;}
.ws16{word-spacing:-14.898000px;}
.ws8{word-spacing:-14.896224px;}
.ws18{word-spacing:-14.880000px;}
.ws37{word-spacing:-14.878080px;}
.ws9{word-spacing:-14.859936px;}
.ws14{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.817600px;}
.ws39{word-spacing:-14.799456px;}
.ws38{word-spacing:-14.781312px;}
.ws3a{word-spacing:-14.702688px;}
.ws4a{word-spacing:-13.717469px;}
.wsa{word-spacing:-13.680000px;}
.ws52{word-spacing:-13.562802px;}
.ws6b{word-spacing:-13.439232px;}
.wsd{word-spacing:-13.318848px;}
.ws6a{word-spacing:-13.302432px;}
.wsb{word-spacing:-13.286016px;}
.wsc{word-spacing:-13.231296px;}
.ws2{word-spacing:-12.122352px;}
.ws3{word-spacing:-12.117600px;}
.ws5{word-spacing:-11.880000px;}
.ws5a{word-spacing:-11.652575px;}
.ws28{word-spacing:-10.619568px;}
.ws25{word-spacing:-10.561104px;}
.ws2a{word-spacing:-10.540224px;}
.ws2f{word-spacing:-10.498464px;}
.ws26{word-spacing:-10.440000px;}
.ws3f{word-spacing:-8.282441px;}
.ws40{word-spacing:-8.227040px;}
.ws23{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.162618px;}
.ws5c{word-spacing:-0.159798px;}
.ws68{word-spacing:-0.158120px;}
.ws42{word-spacing:-0.135861px;}
.ws4e{word-spacing:-0.134152px;}
.ws56{word-spacing:-0.132954px;}
.ws60{word-spacing:-0.131362px;}
.ws45{word-spacing:-0.131269px;}
.ws21{word-spacing:-0.120000px;}
.ws67{word-spacing:-0.095240px;}
.ws2d{word-spacing:-0.066240px;}
.ws3d{word-spacing:-0.062185px;}
.ws20{word-spacing:-0.060000px;}
.ws41{word-spacing:-0.051865px;}
.ws34{word-spacing:-0.035375px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:0.024000px;}
.ws1d{word-spacing:0.060000px;}
.ws69{word-spacing:0.092736px;}
.ws1c{word-spacing:0.120000px;}
.ws1f{word-spacing:0.126000px;}
.ws1b{word-spacing:0.240000px;}
.ws19{word-spacing:0.300000px;}
.ws22{word-spacing:0.342000px;}
.ws1a{word-spacing:0.360000px;}
.ws5d{word-spacing:15.517292px;}
.ws5b{word-spacing:17.302941px;}
.ws2e{word-spacing:20.358720px;}
.ws35{word-spacing:32.980200px;}
.ws61{word-spacing:103.295329px;}
.ws32{word-spacing:129.491061px;}
.ws3e{word-spacing:129.727841px;}
.ws50{word-spacing:140.582131px;}
.ws44{word-spacing:186.724540px;}
.ws66{word-spacing:187.689760px;}
.ws3c{word-spacing:197.051446px;}
.ws5e{word-spacing:207.481279px;}
.ws47{word-spacing:221.000379px;}
.ws31{word-spacing:248.188923px;}
.ws58{word-spacing:254.130590px;}
.ws30{word-spacing:257.371587px;}
.ws49{word-spacing:342.092678px;}
.ws2b{word-spacing:378.480962px;}
.ws4c{word-spacing:446.565350px;}
.ws54{word-spacing:477.342009px;}
.ws51{word-spacing:1240.452045px;}
._22{margin-left:-239.167522px;}
._19{margin-left:-93.841687px;}
._1a{margin-left:-30.726924px;}
._1c{margin-left:-14.105664px;}
._1e{margin-left:-6.407280px;}
._10{margin-left:-5.097456px;}
._c{margin-left:-3.815424px;}
._2{margin-left:-2.437632px;}
._0{margin-left:-1.073088px;}
._1{width:1.118160px;}
._3{width:3.020544px;}
._8{width:4.305600px;}
._9{width:5.497920px;}
._a{width:6.611040px;}
._d{width:7.805952px;}
._4{width:9.061632px;}
._5{width:10.227456px;}
._6{width:11.250144px;}
._17{width:12.288240px;}
._e{width:13.299552px;}
._b{width:15.235200px;}
._f{width:17.870976px;}
._7{width:19.805760px;}
._14{width:21.130560px;}
._13{width:22.720320px;}
._15{width:25.701120px;}
._16{width:26.986176px;}
._11{width:33.933744px;}
._12{width:35.135712px;}
._24{width:86.237115px;}
._23{width:115.430699px;}
._2a{width:124.626494px;}
._21{width:130.978252px;}
._20{width:163.894254px;}
._29{width:178.538108px;}
._1d{width:194.853024px;}
._18{width:196.825536px;}
._28{width:199.381443px;}
._27{width:207.236121px;}
._26{width:218.417142px;}
._25{width:384.280400px;}
._1b{width:411.816672px;}
._1f{width:1013.750208px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:26.381184px;}
.fs17{font-size:27.700471px;}
.fs16{font-size:34.296147px;}
.fsf{font-size:35.374946px;}
.fsb{font-size:36.350923px;}
.fs15{font-size:37.310467px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:40.051435px;}
.fs7{font-size:41.760000px;}
.fs3b{font-size:42.998433px;}
.fs33{font-size:43.671537px;}
.fs2{font-size:47.520000px;}
.fs34{font-size:48.647067px;}
.fs2c{font-size:49.201824px;}
.fs19{font-size:51.820346px;}
.fs18{font-size:51.864665px;}
.fs5{font-size:54.720000px;}
.fs20{font-size:59.354910px;}
.fs40{font-size:59.397106px;}
.fs32{font-size:60.071560px;}
.fs4{font-size:60.480000px;}
.fs2b{font-size:60.756599px;}
.fs10{font-size:61.074444px;}
.fs1b{font-size:61.431101px;}
.fs14{font-size:62.184871px;}
.fs45{font-size:62.305804px;}
.fsc{font-size:63.008104px;}
.fs6{font-size:66.240000px;}
.fs3c{font-size:66.269906px;}
.fsd{font-size:66.419132px;}
.fs26{font-size:67.439484px;}
.fs9{font-size:69.204784px;}
.fs1f{font-size:69.914815px;}
.fs3f{font-size:69.964518px;}
.fs31{font-size:70.758965px;}
.fs4c{font-size:71.495712px;}
.fs2a{font-size:71.565880px;}
.fs0{font-size:72.000000px;}
.fs3a{font-size:72.254509px;}
.fs13{font-size:72.360384px;}
.fsa{font-size:72.981260px;}
.fs44{font-size:73.390706px;}
.fs25{font-size:73.529708px;}
.fs1{font-size:77.760000px;}
.fse{font-size:79.971043px;}
.fs48{font-size:83.082343px;}
.fs12{font-size:83.520000px;}
.fs4b{font-size:84.215602px;}
.fs39{font-size:85.109398px;}
.fs24{font-size:86.611469px;}
.fs11{font-size:91.614710px;}
.fs4f{font-size:95.239876px;}
.fs23{font-size:96.680558px;}
.fs41{font-size:97.475899px;}
.fs35{font-size:98.582738px;}
.fs2d{font-size:99.706948px;}
.fs1e{font-size:100.813866px;}
.fs4a{font-size:102.249330px;}
.fs38{font-size:126.653394px;}
.fs30{font-size:128.067331px;}
.fs22{font-size:131.269051px;}
.fs42{font-size:131.344867px;}
.fs43{font-size:131.362371px;}
.fs21{font-size:131.423367px;}
.fs46{font-size:131.545384px;}
.fs29{font-size:132.480000px;}
.fs37{font-size:132.853990px;}
.fs36{font-size:132.954291px;}
.fs2e{font-size:134.151560px;}
.fs2f{font-size:134.369020px;}
.fs1d{font-size:135.860747px;}
.fs1c{font-size:135.976941px;}
.fs49{font-size:137.795234px;}
.fs47{font-size:138.018172px;}
.fs4d{font-size:150.809862px;}
.fs50{font-size:158.119595px;}
.fs4e{font-size:158.214526px;}
.fs3e{font-size:159.797747px;}
.fs3d{font-size:160.157604px;}
.fs28{font-size:162.617971px;}
.fs27{font-size:162.826840px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.514871px;}
.y9e{bottom:3.635001px;}
.y86{bottom:3.891950px;}
.y247{bottom:4.140000px;}
.ybe{bottom:4.270766px;}
.y245{bottom:4.500000px;}
.y2{bottom:4.860000px;}
.y83{bottom:5.873342px;}
.y24b{bottom:6.420000px;}
.y233{bottom:6.840000px;}
.yc7{bottom:6.954077px;}
.y246{bottom:7.740000px;}
.y258{bottom:8.640000px;}
.y235{bottom:8.700000px;}
.yc4{bottom:8.730467px;}
.y254{bottom:9.540000px;}
.y251{bottom:9.840000px;}
.y25a{bottom:11.100000px;}
.y9b{bottom:11.965408px;}
.y253{bottom:12.300000px;}
.y1f1{bottom:12.708344px;}
.y163{bottom:13.245387px;}
.y7f{bottom:13.621752px;}
.y152{bottom:13.850236px;}
.y249{bottom:13.980000px;}
.y24c{bottom:14.040000px;}
.y175{bottom:14.209765px;}
.y1ab{bottom:14.280802px;}
.y85{bottom:14.754261px;}
.y81{bottom:14.930993px;}
.yc8{bottom:15.268611px;}
.y200{bottom:15.910776px;}
.y220{bottom:15.954857px;}
.y9f{bottom:16.055566px;}
.y231{bottom:16.200000px;}
.y19d{bottom:16.260844px;}
.y25d{bottom:16.380000px;}
.yc6{bottom:16.553555px;}
.yc1{bottom:16.780400px;}
.y80{bottom:19.389198px;}
.ybd{bottom:19.653255px;}
.ybf{bottom:20.749417px;}
.y24a{bottom:21.900000px;}
.y9c{bottom:22.339903px;}
.y1c5{bottom:22.773723px;}
.y232{bottom:25.920000px;}
.ya0{bottom:26.089150px;}
.y9d{bottom:26.429298px;}
.y84{bottom:28.941271px;}
.yc5{bottom:29.290339px;}
.y82{bottom:30.286713px;}
.yc3{bottom:30.462622px;}
.y25c{bottom:31.860000px;}
.y24f{bottom:32.220000px;}
.yc0{bottom:38.210350px;}
.y256{bottom:41.880000px;}
.y243{bottom:44.640000px;}
.y1e5{bottom:46.460870px;}
.y1a3{bottom:46.988433px;}
.y192{bottom:47.524276px;}
.y157{bottom:48.884700px;}
.y13c{bottom:50.594806px;}
.y24e{bottom:51.300000px;}
.y1f3{bottom:51.315213px;}
.y1{bottom:52.500000px;}
.y22{bottom:57.360000px;}
.y216{bottom:58.884044px;}
.y1b9{bottom:59.508992px;}
.y16a{bottom:60.559248px;}
.y158{bottom:64.224359px;}
.y1e6{bottom:68.872033px;}
.y14c{bottom:77.259508px;}
.y193{bottom:88.526422px;}
.y147{bottom:89.319446px;}
.y1f4{bottom:91.164813px;}
.y161{bottom:93.721024px;}
.y1a4{bottom:96.463517px;}
.y1e7{bottom:97.475899px;}
.y13d{bottom:102.275102px;}
.y201{bottom:105.403962px;}
.y14d{bottom:107.410301px;}
.y1c3{bottom:107.440280px;}
.y159{bottom:107.648833px;}
.y217{bottom:108.010401px;}
.ycb{bottom:111.000000px;}
.y16b{bottom:111.083211px;}
.y99{bottom:111.720000px;}
.y160{bottom:111.882549px;}
.ybb{bottom:114.600000px;}
.y106{bottom:116.760000px;}
.y18c{bottom:117.840000px;}
.y20e{bottom:118.920000px;}
.y14b{bottom:120.035756px;}
.y6c{bottom:120.720000px;}
.y194{bottom:122.304487px;}
.y1e8{bottom:125.945820px;}
.y1c2{bottom:127.220809px;}
.y7d{bottom:129.360000px;}
.y22f{bottom:129.720000px;}
.y1f5{bottom:130.440843px;}
.y214{bottom:132.600000px;}
.y3d{bottom:132.960000px;}
.y1ba{bottom:132.983992px;}
.y1b7{bottom:139.080000px;}
.y168{bottom:139.440000px;}
.y13a{bottom:139.800000px;}
.y172{bottom:140.348631px;}
.y1a5{bottom:141.841194px;}
.y13e{bottom:142.128878px;}
.y105{bottom:142.680000px;}
.y1aa{bottom:143.637521px;}
.y55{bottom:143.760000px;}
.y148{bottom:143.777987px;}
.y121{bottom:144.120000px;}
.y19c{bottom:145.275523px;}
.y1c1{bottom:146.947769px;}
.yca{bottom:149.160000px;}
.y98{bottom:149.520000px;}
.y15a{bottom:151.071473px;}
.yba{bottom:152.400000px;}
.y1e9{bottom:154.549686px;}
.y14a{bottom:154.566460px;}
.y20d{bottom:155.280000px;}
.y195{bottom:156.084429px;}
.y162{bottom:157.263444px;}
.y6b{bottom:158.520000px;}
.y18b{bottom:161.760000px;}
.y1a8{bottom:162.018329px;}
.y171{bottom:162.904174px;}
.y151{bottom:162.952433px;}
.y7c{bottom:167.160000px;}
.y21e{bottom:167.773477px;}
.y22e{bottom:167.880000px;}
.y218{bottom:169.034600px;}
.y19a{bottom:169.269455px;}
.y1f6{bottom:169.907421px;}
.y213{bottom:170.760000px;}
.y3c{bottom:171.120000px;}
.y16c{bottom:173.843499px;}
.y241{bottom:174.000000px;}
.y1ec{bottom:175.593868px;}
.y167{bottom:176.160000px;}
.y104{bottom:179.400000px;}
.y1fe{bottom:179.558015px;}
.y1f0{bottom:179.648941px;}
.y1a7{bottom:180.445529px;}
.y120{bottom:180.480000px;}
.y54{bottom:181.920000px;}
.y13f{bottom:181.937109px;}
.y1ea{bottom:182.973735px;}
.y1b6{bottom:183.360000px;}
.y139{bottom:183.720000px;}
.y146{bottom:186.506791px;}
.y1a6{bottom:187.222582px;}
.y97{bottom:187.680000px;}
.y199{bottom:187.912425px;}
.y21f{bottom:189.649868px;}
.y196{bottom:189.901909px;}
.yb9{bottom:190.560000px;}
.y1c4{bottom:191.441683px;}
.y20c{bottom:192.000000px;}
.y145{bottom:192.541504px;}
.y15b{bottom:194.505115px;}
.ye5{bottom:195.240000px;}
.y18a{bottom:195.960000px;}
.y6a{bottom:196.320000px;}
.y1ff{bottom:198.632084px;}
.y18d{bottom:199.904700px;}
.y1ee{bottom:200.643581px;}
.y1ac{bottom:200.806379px;}
.y1bb{bottom:201.526137px;}
.y149{bottom:201.669482px;}
.y174{bottom:203.558666px;}
.y19e{bottom:203.790762px;}
.y7b{bottom:204.960000px;}
.y14e{bottom:205.540808px;}
.y198{bottom:206.493457px;}
.y3b{bottom:208.920000px;}
.y1f7{bottom:209.372075px;}
.y1eb{bottom:211.616134px;}
.y22d{bottom:211.800000px;}
.y166{bottom:213.240000px;}
.y103{bottom:216.480000px;}
.y11f{bottom:217.200000px;}
.y240{bottom:217.920000px;}
.y53{bottom:219.720000px;}
.y140{bottom:221.974963px;}
.y155{bottom:222.506322px;}
.y197{bottom:223.685605px;}
.y1dd{bottom:224.760000px;}
.y1b5{bottom:225.480000px;}
.y1df{bottom:225.744671px;}
.y138{bottom:225.840000px;}
.y156{bottom:226.304250px;}
.y189{bottom:227.280000px;}
.y96{bottom:227.640000px;}
.yb8{bottom:228.360000px;}
.y154{bottom:228.522058px;}
.y20b{bottom:228.720000px;}
.y219{bottom:230.049963px;}
.ye4{bottom:232.320000px;}
.y69{bottom:234.480000px;}
.yc9{bottom:235.920000px;}
.y16d{bottom:236.594701px;}
.y15c{bottom:238.107445px;}
.y1c0{bottom:242.134032px;}
.y7a{bottom:243.120000px;}
.y18e{bottom:243.730598px;}
.y3a{bottom:246.720000px;}
.y212{bottom:247.080000px;}
.y1e{bottom:248.580480px;}
.y1f8{bottom:248.655804px;}
.y1bf{bottom:249.231987px;}
.y1a0{bottom:251.894075px;}
.y102{bottom:253.200000px;}
.y11e{bottom:253.920000px;}
.y1e0{bottom:254.350373px;}
.y165{bottom:257.160000px;}
.y52{bottom:257.520000px;}
.ye3{bottom:258.240000px;}
.y188{bottom:258.960000px;}
.y23f{bottom:260.400000px;}
.y141{bottom:261.788888px;}
.y137{bottom:262.560000px;}
.y1b4{bottom:263.640000px;}
.y1f2{bottom:264.935100px;}
.y20a{bottom:265.800000px;}
.yb7{bottom:266.520000px;}
.y1dc{bottom:266.880000px;}
.y1bc{bottom:270.057121px;}
.y68{bottom:272.280000px;}
.y176{bottom:275.959007px;}
.y95{bottom:277.680000px;}
.y101{bottom:279.120000px;}
.y79{bottom:280.920000px;}
.y15d{bottom:281.526418px;}
.y1e1{bottom:282.827632px;}
.y18f{bottom:283.839353px;}
.y39{bottom:284.880000px;}
.y211{bottom:285.240000px;}
.y1f9{bottom:288.112759px;}
.y11d{bottom:290.640000px;}
.y21a{bottom:291.074162px;}
.y187{bottom:293.520000px;}
.ye2{bottom:294.960000px;}
.y51{bottom:295.680000px;}
.y23e{bottom:298.560000px;}
.y136{bottom:299.280000px;}
.y16e{bottom:299.354989px;}
.y142{bottom:301.602812px;}
.y1b3{bottom:301.800000px;}
.y1a1{bottom:302.981772px;}
.yb6{bottom:304.320000px;}
.y1db{bottom:305.040000px;}
.y209{bottom:309.720000px;}
.y67{bottom:310.440000px;}
.y1e2{bottom:311.433334px;}
.y1ed{bottom:314.607667px;}
.y100{bottom:315.480000px;}
.y1fd{bottom:315.732627px;}
.y94{bottom:316.200000px;}
.ye1{bottom:321.240000px;}
.y38{bottom:322.680000px;}
.y210{bottom:323.040000px;}
.y190{bottom:323.948107px;}
.y15e{bottom:324.945391px;}
.y1d{bottom:327.058320px;}
.y11c{bottom:327.360000px;}
.y1fa{bottom:327.588961px;}
.y7e{bottom:327.964500px;}
.y50{bottom:333.480000px;}
.y150{bottom:334.148513px;}
.y1fc{bottom:334.806697px;}
.y135{bottom:336.000000px;}
.y23d{bottom:336.720000px;}
.y1bd{bottom:338.670691px;}
.y164{bottom:339.247249px;}
.y1e3{bottom:339.855548px;}
.y1b2{bottom:339.960000px;}
.yff{bottom:341.400000px;}
.y143{bottom:341.454690px;}
.yb5{bottom:342.120000px;}
.y1da{bottom:343.200000px;}
.y1c7{bottom:343.603547px;}
.y78{bottom:348.960000px;}
.y1c6{bottom:350.679182px;}
.y208{bottom:351.840000px;}
.y21b{bottom:352.098360px;}
.y1ef{bottom:352.240954px;}
.y14f{bottom:352.954804px;}
.y1a2{bottom:354.255039px;}
.y93{bottom:354.720000px;}
.y153{bottom:355.156146px;}
.y1c{bottom:355.491840px;}
.ye0{bottom:357.240000px;}
.y66{bottom:359.040000px;}
.y37{bottom:360.840000px;}
.y16f{bottom:362.115276px;}
.y1a9{bottom:363.013990px;}
.y191{bottom:364.075631px;}
.y11b{bottom:364.080000px;}
.y19b{bottom:364.263318px;}
.y1fb{bottom:367.045916px;}
.y20f{bottom:367.320000px;}
.y15f{bottom:368.364364px;}
.y1e4{bottom:368.461249px;}
.y4f{bottom:371.640000px;}
.y134{bottom:372.720000px;}
.y23c{bottom:374.520000px;}
.y1b1{bottom:378.120000px;}
.yfe{bottom:378.480000px;}
.yb4{bottom:380.280000px;}
.y21d{bottom:380.788347px;}
.y144{bottom:381.249638px;}
.y1d9{bottom:381.360000px;}
.y77{bottom:382.440000px;}
.ydf{bottom:383.880000px;}
.y1b{bottom:383.925360px;}
.y207{bottom:388.560000px;}
.y186{bottom:391.080000px;}
.y92{bottom:393.240000px;}
.y36{bottom:398.640000px;}
.y22c{bottom:400.440000px;}
.y11a{bottom:400.800000px;}
.yfd{bottom:404.400000px;}
.y1be{bottom:407.418186px;}
.y65{bottom:407.640000px;}
.y133{bottom:409.080000px;}
.y4e{bottom:409.440000px;}
.y1a{bottom:412.358880px;}
.y23b{bottom:412.680000px;}
.y21c{bottom:413.122558px;}
.y1b0{bottom:416.280000px;}
.yb3{bottom:418.080000px;}
.y1d8{bottom:419.520000px;}
.y76{bottom:420.240000px;}
.yde{bottom:420.960000px;}
.y170{bottom:424.875564px;}
.y206{bottom:427.080000px;}
.y91{bottom:431.040000px;}
.y173{bottom:432.712082px;}
.y35{bottom:436.440000px;}
.y22b{bottom:437.160000px;}
.y119{bottom:437.520000px;}
.y185{bottom:439.680000px;}
.y19{bottom:440.792400px;}
.yfc{bottom:441.480000px;}
.y132{bottom:445.800000px;}
.ydd{bottom:446.880000px;}
.y4d{bottom:447.240000px;}
.y23a{bottom:450.840000px;}
.y1af{bottom:454.440000px;}
.yb2{bottom:456.240000px;}
.y64{bottom:456.600000px;}
.y1d7{bottom:457.680000px;}
.y75{bottom:458.040000px;}
.y25b{bottom:466.500000px;}
.y205{bottom:468.480000px;}
.y90{bottom:468.840000px;}
.y18{bottom:469.225920px;}
.y118{bottom:473.880000px;}
.y34{bottom:474.600000px;}
.yfb{bottom:478.200000px;}
.y131{bottom:482.520000px;}
.ydc{bottom:483.960000px;}
.y4c{bottom:485.400000px;}
.y184{bottom:488.640000px;}
.y1ae{bottom:492.240000px;}
.yb1{bottom:494.040000px;}
.y63{bottom:494.400000px;}
.y1d6{bottom:495.840000px;}
.y74{bottom:496.200000px;}
.y17{bottom:497.659440px;}
.yfa{bottom:504.120000px;}
.y8f{bottom:507.000000px;}
.y204{bottom:509.880000px;}
.y117{bottom:510.600000px;}
.y33{bottom:512.400000px;}
.y130{bottom:519.240000px;}
.ydb{bottom:520.320000px;}
.y255{bottom:522.000000px;}
.y4b{bottom:523.200000px;}
.y16{bottom:526.092960px;}
.y1ad{bottom:527.880000px;}
.y1b8{bottom:528.201150px;}
.yb0{bottom:531.840000px;}
.y62{bottom:532.560000px;}
.y1d5{bottom:533.640000px;}
.y73{bottom:534.000000px;}
.y183{bottom:537.240000px;}
.yf9{bottom:540.480000px;}
.y8e{bottom:544.800000px;}
.yda{bottom:546.240000px;}
.y116{bottom:547.320000px;}
.y32{bottom:550.560000px;}
.y203{bottom:551.280000px;}
.y259{bottom:553.500000px;}
.y15{bottom:554.526480px;}
.y12f{bottom:555.960000px;}
.y4a{bottom:561.360000px;}
.yf8{bottom:566.400000px;}
.yaf{bottom:570.000000px;}
.y61{bottom:570.360000px;}
.y1d4{bottom:571.800000px;}
.y72{bottom:572.160000px;}
.y115{bottom:573.240000px;}
.y14{bottom:582.959280px;}
.y8d{bottom:582.960000px;}
.y22a{bottom:584.040000px;}
.y182{bottom:586.200000px;}
.y257{bottom:588.000000px;}
.y31{bottom:588.360000px;}
.y169{bottom:589.652100px;}
.y12e{bottom:592.680000px;}
.y49{bottom:599.160000px;}
.yf7{bottom:603.840000px;}
.y215{bottom:606.152250px;}
.yae{bottom:607.800000px;}
.y60{bottom:608.160000px;}
.yd9{bottom:608.880000px;}
.y71{bottom:609.960000px;}
.y13{bottom:611.392800px;}
.y24d{bottom:619.500000px;}
.y8c{bottom:620.760000px;}
.y30{bottom:626.160000px;}
.y19f{bottom:628.504350px;}
.yf6{bottom:629.400000px;}
.y202{bottom:630.120000px;}
.y181{bottom:634.800000px;}
.y48{bottom:636.960000px;}
.yd8{bottom:645.600000px;}
.yad{bottom:645.960000px;}
.y13b{bottom:646.204350px;}
.y5f{bottom:646.320000px;}
.y114{bottom:646.680000px;}
.y70{bottom:647.760000px;}
.y1d3{bottom:648.120000px;}
.y252{bottom:649.500000px;}
.y12{bottom:650.640000px;}
.y229{bottom:657.480000px;}
.y8b{bottom:658.560000px;}
.y2f{bottom:664.320000px;}
.y12d{bottom:665.760000px;}
.yf5{bottom:666.120000px;}
.yd7{bottom:671.520000px;}
.y47{bottom:675.120000px;}
.y113{bottom:683.400000px;}
.yac{bottom:683.760000px;}
.y250{bottom:684.000000px;}
.y5e{bottom:684.120000px;}
.y6f{bottom:685.920000px;}
.y1d2{bottom:686.280000px;}
.yf4{bottom:692.040000px;}
.y228{bottom:693.840000px;}
.y236{bottom:694.500000px;}
.y8a{bottom:696.720000px;}
.y12c{bottom:702.480000px;}
.yd6{bottom:708.240000px;}
.y112{bottom:708.960000px;}
.y2e{bottom:712.920000px;}
.y242{bottom:714.000000px;}
.y1de{bottom:714.675000px;}
.y234{bottom:721.500000px;}
.yab{bottom:721.560000px;}
.y5d{bottom:722.280000px;}
.y6e{bottom:723.720000px;}
.y1d1{bottom:725.880000px;}
.yf3{bottom:729.120000px;}
.y227{bottom:730.560000px;}
.y180{bottom:732.360000px;}
.yd5{bottom:733.800000px;}
.y89{bottom:734.520000px;}
.y12b{bottom:739.200000px;}
.y111{bottom:745.680000px;}
.y230{bottom:750.000000px;}
.y2d{bottom:751.080000px;}
.y248{bottom:751.500000px;}
.yf2{bottom:755.400000px;}
.yaa{bottom:759.720000px;}
.y5c{bottom:760.080000px;}
.y6d{bottom:761.880000px;}
.y1d0{bottom:767.280000px;}
.yd4{bottom:771.240000px;}
.y110{bottom:771.600000px;}
.y88{bottom:772.680000px;}
.y11{bottom:774.480720px;}
.y12a{bottom:775.920000px;}
.y17f{bottom:777.720000px;}
.y2c{bottom:788.880000px;}
.y244{bottom:790.500000px;}
.yf1{bottom:792.120000px;}
.yd3{bottom:797.160000px;}
.ya9{bottom:797.520000px;}
.y5b{bottom:798.240000px;}
.y9a{bottom:799.525800px;}
.y46{bottom:799.680000px;}
.y10{bottom:800.760000px;}
.y226{bottom:804.000000px;}
.y10f{bottom:808.320000px;}
.y1cf{bottom:808.680000px;}
.y17e{bottom:809.400000px;}
.y129{bottom:812.640000px;}
.y87{bottom:815.520000px;}
.yf0{bottom:818.040000px;}
.y2b{bottom:827.040000px;}
.yd2{bottom:833.880000px;}
.y10e{bottom:834.240000px;}
.ya8{bottom:835.680000px;}
.y5a{bottom:836.040000px;}
.y239{bottom:836.760000px;}
.y45{bottom:837.840000px;}
.y17d{bottom:840.720000px;}
.y128{bottom:849.360000px;}
.y1ce{bottom:850.080000px;}
.yef{bottom:854.760000px;}
.y2a{bottom:864.840000px;}
.y10d{bottom:870.960000px;}
.yd1{bottom:871.320000px;}
.y17c{bottom:872.400000px;}
.ya7{bottom:873.480000px;}
.y59{bottom:873.840000px;}
.y238{bottom:874.920000px;}
.y44{bottom:875.640000px;}
.y225{bottom:877.440000px;}
.yf{bottom:878.160000px;}
.y127{bottom:886.080000px;}
.yee{bottom:891.480000px;}
.ye{bottom:895.440000px;}
.y29{bottom:902.640000px;}
.y17b{bottom:903.720000px;}
.yd{bottom:907.317840px;}
.y10c{bottom:907.680000px;}
.ya6{bottom:911.280000px;}
.y58{bottom:912.000000px;}
.y237{bottom:913.080000px;}
.y43{bottom:913.440000px;}
.y224{bottom:914.160000px;}
.yed{bottom:917.400000px;}
.yd0{bottom:918.840000px;}
.y126{bottom:922.800000px;}
.yc{bottom:930.000000px;}
.y1cd{bottom:932.880000px;}
.y17a{bottom:935.400000px;}
.y28{bottom:940.800000px;}
.y10b{bottom:944.400000px;}
.yb{bottom:947.280000px;}
.ya5{bottom:949.440000px;}
.y57{bottom:949.800000px;}
.y223{bottom:951.240000px;}
.y42{bottom:951.600000px;}
.yec{bottom:954.480000px;}
.y125{bottom:959.160000px;}
.ya{bottom:959.160720px;}
.y179{bottom:966.720000px;}
.ycf{bottom:967.440000px;}
.y1cc{bottom:974.280000px;}
.y27{bottom:978.600000px;}
.y10a{bottom:980.760000px;}
.y9{bottom:981.480000px;}
.ya4{bottom:987.240000px;}
.y222{bottom:989.040000px;}
.y41{bottom:989.400000px;}
.yeb{bottom:991.560000px;}
.y124{bottom:995.880000px;}
.y178{bottom:998.400000px;}
.y8{bottom:998.760000px;}
.y56{bottom:1005.960000px;}
.y1cb{bottom:1015.680000px;}
.yce{bottom:1016.040000px;}
.y26{bottom:1016.760000px;}
.yea{bottom:1017.480000px;}
.ya3{bottom:1025.400000px;}
.y221{bottom:1027.200000px;}
.y40{bottom:1027.560000px;}
.y177{bottom:1029.720000px;}
.y123{bottom:1032.600000px;}
.y7{bottom:1042.680000px;}
.y109{bottom:1043.400000px;}
.ye9{bottom:1054.200000px;}
.y25{bottom:1054.560000px;}
.y1ca{bottom:1057.080000px;}
.ya2{bottom:1063.200000px;}
.y6{bottom:1063.920000px;}
.y3f{bottom:1065.360000px;}
.y122{bottom:1069.320000px;}
.ye8{bottom:1080.120000px;}
.y5{bottom:1084.440000px;}
.y24{bottom:1092.360000px;}
.y1c9{bottom:1098.480000px;}
.y3e{bottom:1103.160000px;}
.ycd{bottom:1103.520000px;}
.y108{bottom:1106.040000px;}
.ybc{bottom:1108.499850px;}
.y4{bottom:1116.113520px;}
.ye7{bottom:1117.200000px;}
.ya1{bottom:1129.440000px;}
.y3{bottom:1138.800000px;}
.y1c8{bottom:1139.880000px;}
.y23{bottom:1141.320000px;}
.ycc{bottom:1141.680000px;}
.y107{bottom:1142.760000px;}
.ye6{bottom:1143.120000px;}
.y21{bottom:1189.560000px;}
.y20{bottom:1206.840000px;}
.y1f{bottom:1224.120000px;}
.h2e{height:19.206224px;}
.h2b{height:20.166701px;}
.h1{height:22.500000px;}
.h1c{height:23.905725px;}
.h70{height:24.000000px;}
.h1e{height:24.562096px;}
.h16{height:24.565272px;}
.h2a{height:24.968533px;}
.h17{height:25.239752px;}
.h29{height:25.905998px;}
.h5{height:26.274375px;}
.hd{height:27.066009px;}
.hf{height:27.809151px;}
.h6e{height:28.500000px;}
.h78{height:30.000000px;}
.h74{height:31.500000px;}
.h77{height:34.500000px;}
.h2d{height:35.980729px;}
.h75{height:36.000000px;}
.h2c{height:36.011501px;}
.h71{height:37.500000px;}
.h7{height:37.994062px;}
.h72{height:39.000000px;}
.h1d{height:41.272964px;}
.h24{height:41.550469px;}
.h6{height:42.022969px;}
.h1f{height:42.406181px;}
.h1a{height:42.671993px;}
.h15{height:42.825000px;}
.h36{height:43.211997px;}
.h5b{height:43.242717px;}
.h4b{height:43.733738px;}
.h18{height:43.748791px;}
.h43{height:44.232465px;}
.h19{height:44.268611px;}
.h2f{height:44.723522px;}
.h8{height:44.860781px;}
.h6c{height:45.000000px;}
.h61{height:45.360329px;}
.h22{height:45.507656px;}
.h23{height:45.669375px;}
.h6d{height:45.992813px;}
.h14{height:46.283906px;}
.he{height:46.767295px;}
.h10{height:48.051368px;}
.hc{height:48.225000px;}
.h54{height:48.246304px;}
.h3d{height:49.097788px;}
.h2{height:49.992188px;}
.h35{height:50.899897px;}
.h5a{height:50.936082px;}
.h68{height:51.387543px;}
.h49{height:51.514461px;}
.h42{height:52.101918px;}
.h27{height:52.680338px;}
.h3{height:52.700625px;}
.h60{height:53.430441px;}
.h3c{height:53.531638px;}
.h9{height:55.016719px;}
.ha{height:55.019599px;}
.h1b{height:55.526769px;}
.hb{height:56.355469px;}
.h20{height:56.571396px;}
.h79{height:57.000000px;}
.h4{height:57.474844px;}
.h25{height:57.990938px;}
.h28{height:59.609301px;}
.h33{height:59.685210px;}
.h67{height:60.529964px;}
.h51{height:61.961969px;}
.h3b{height:63.055517px;}
.h12{height:64.102283px;}
.h11{height:67.600318px;}
.h39{height:70.386090px;}
.h57{height:70.766882px;}
.h52{height:70.945447px;}
.h5c{height:70.965120px;}
.h32{height:73.395251px;}
.h65{height:74.440308px;}
.h58{height:80.905798px;}
.h53{height:80.995081px;}
.h21{height:84.859915px;}
.h4e{height:87.940003px;}
.h40{height:88.298438px;}
.h46{height:88.921751px;}
.h62{height:89.088598px;}
.h4d{height:89.780236px;}
.h4a{height:90.126488px;}
.h45{height:90.804064px;}
.h38{height:91.144819px;}
.h5d{height:91.197461px;}
.h5e{height:91.209615px;}
.h37{height:91.251967px;}
.h4f{height:92.245300px;}
.h4c{height:92.314942px;}
.h44{height:93.146249px;}
.h47{height:93.297240px;}
.h31{height:94.332999px;}
.h30{height:94.413677px;}
.h76{height:94.500000px;}
.h64{height:95.676183px;}
.h63{height:95.830977px;}
.h73{height:96.000000px;}
.h6f{height:100.500000px;}
.h69{height:102.135390px;}
.h6b{height:109.788117px;}
.h6a{height:109.854031px;}
.h56{height:110.953318px;}
.h55{height:111.203180px;}
.h3f{height:112.911501px;}
.h3e{height:113.056527px;}
.h34{height:422.400000px;}
.h59{height:422.700000px;}
.h48{height:427.500000px;}
.h41{height:432.375000px;}
.h26{height:437.175000px;}
.h5f{height:443.400000px;}
.h66{height:508.800000px;}
.h50{height:514.118850px;}
.h3a{height:523.275000px;}
.h13{height:1245.000000px;}
.h0{height:1263.000000px;}
.w1{width:10.500000px;}
.w6{width:19.500000px;}
.w13{width:43.500000px;}
.w18{width:55.500000px;}
.w15{width:75.000000px;}
.w14{width:76.500000px;}
.w10{width:82.500000px;}
.w11{width:102.000000px;}
.w4{width:103.275000px;}
.w12{width:108.000000px;}
.w19{width:129.000000px;}
.w1b{width:150.000000px;}
.w1a{width:162.000000px;}
.w2{width:205.125000px;}
.w5{width:253.350000px;}
.w16{width:256.500000px;}
.w17{width:310.500000px;}
.wd{width:501.900000px;}
.w8{width:502.200000px;}
.wb{width:508.050000px;}
.wa{width:512.625000px;}
.w7{width:519.600000px;}
.we{width:527.400000px;}
.wf{width:604.575000px;}
.wc{width:612.000000px;}
.w9{width:622.200000px;}
.w1c{width:639.000000px;}
.w3{width:874.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:1.080000px;}
.x18{left:2.879138px;}
.x25{left:4.015807px;}
.x9c{left:5.342268px;}
.x26{left:6.781425px;}
.x88{left:9.513360px;}
.x90{left:10.815324px;}
.x32{left:11.970406px;}
.x8d{left:13.911840px;}
.x9a{left:15.872304px;}
.x1d{left:18.000000px;}
.x24{left:19.435017px;}
.x94{left:20.456544px;}
.x1c{left:24.027659px;}
.x99{left:25.036752px;}
.x8c{left:28.107720px;}
.x93{left:29.235120px;}
.x8f{left:30.374880px;}
.x92{left:31.777560px;}
.x7d{left:32.836217px;}
.x29{left:35.118855px;}
.x60{left:37.493555px;}
.x7e{left:38.574221px;}
.x49{left:39.737982px;}
.x89{left:42.232680px;}
.x91{left:43.447680px;}
.x97{left:45.025296px;}
.x9d{left:46.547640px;}
.x43{left:49.365525px;}
.x5d{left:50.657242px;}
.x9b{left:52.042320px;}
.x16{left:54.205059px;}
.x27{left:56.411149px;}
.x2c{left:58.253431px;}
.x78{left:59.297092px;}
.x5c{left:60.564205px;}
.x84{left:61.664151px;}
.x1b{left:63.731072px;}
.x23{left:65.540342px;}
.x50{left:67.412386px;}
.x15{left:70.875939px;}
.x2e{left:73.643418px;}
.x28{left:75.049536px;}
.x3b{left:76.383516px;}
.x12{left:78.480000px;}
.x96{left:79.916748px;}
.x81{left:81.852017px;}
.x7c{left:86.851408px;}
.x82{left:88.875229px;}
.x4f{left:91.466144px;}
.x19{left:95.260126px;}
.x3a{left:96.516430px;}
.x17{left:97.818819px;}
.x64{left:101.331405px;}
.x6c{left:103.738245px;}
.x47{left:105.269765px;}
.x1f{left:109.439928px;}
.x79{left:112.448173px;}
.x4d{left:114.825105px;}
.x7b{left:120.553570px;}
.x7a{left:121.966236px;}
.x57{left:126.314928px;}
.x10{left:127.440000px;}
.x3{left:130.064550px;}
.x4e{left:135.900550px;}
.x5{left:140.468550px;}
.x8{left:142.042950px;}
.x9{left:143.101350px;}
.x56{left:144.318240px;}
.x58{left:145.335564px;}
.xc{left:147.041700px;}
.xe{left:151.831800px;}
.xf{left:155.552400px;}
.x6{left:161.915700px;}
.x59{left:168.518196px;}
.x2f{left:172.528991px;}
.x2d{left:173.936658px;}
.x1a{left:176.617112px;}
.x35{left:181.753699px;}
.x77{left:183.299850px;}
.x5b{left:189.525150px;}
.x34{left:190.559102px;}
.x36{left:192.895229px;}
.x3f{left:195.726111px;}
.x31{left:197.852012px;}
.x33{left:200.188139px;}
.x2a{left:202.750128px;}
.xb{left:206.408250px;}
.x3d{left:211.471569px;}
.x69{left:216.947707px;}
.x75{left:218.022948px;}
.x65{left:219.269096px;}
.x30{left:222.051895px;}
.x74{left:223.814232px;}
.x5f{left:230.256783px;}
.x63{left:232.261786px;}
.x4a{left:236.882212px;}
.x73{left:238.095324px;}
.x66{left:245.900068px;}
.x44{left:252.402163px;}
.x5a{left:253.762200px;}
.x72{left:255.000744px;}
.x11{left:256.127760px;}
.x46{left:260.265395px;}
.x67{left:262.502640px;}
.x76{left:270.989856px;}
.x61{left:272.268153px;}
.x70{left:274.445956px;}
.x40{left:277.055486px;}
.x68{left:278.232370px;}
.x48{left:279.434364px;}
.x85{left:280.729567px;}
.x87{left:286.500000px;}
.x62{left:288.120793px;}
.x53{left:296.305184px;}
.x14{left:304.105650px;}
.x2b{left:305.980200px;}
.x42{left:307.425797px;}
.x3e{left:313.788557px;}
.x41{left:318.214000px;}
.x6d{left:343.370637px;}
.x6e{left:355.428541px;}
.x22{left:370.950150px;}
.xa{left:374.885370px;}
.x6f{left:378.023130px;}
.x98{left:382.500000px;}
.x4b{left:385.080453px;}
.x5e{left:387.115469px;}
.x7{left:402.873900px;}
.x45{left:405.203382px;}
.x83{left:407.005939px;}
.x4{left:408.153750px;}
.x52{left:411.433895px;}
.x3c{left:416.333465px;}
.x54{left:420.167483px;}
.x51{left:425.262077px;}
.xd{left:429.266040px;}
.x37{left:436.500000px;}
.x1{left:441.000000px;}
.x71{left:446.339880px;}
.x55{left:451.702440px;}
.x95{left:456.000000px;}
.x8a{left:493.500000px;}
.x13{left:509.170680px;}
.x8b{left:535.500000px;}
.x20{left:565.517520px;}
.x8e{left:610.500000px;}
.x39{left:617.271480px;}
.x21{left:646.970760px;}
.x80{left:660.343680px;}
.x4c{left:669.333240px;}
.x1e{left:670.695120px;}
.x86{left:701.686080px;}
.x38{left:721.476000px;}
.x6b{left:739.440000px;}
.x6a{left:765.239760px;}
.x7f{left:766.440000px;}
@media print{
.vf{vertical-align:-54.421664pt;}
.vd{vertical-align:-47.474646pt;}
.ve{vertical-align:-36.987040pt;}
.va{vertical-align:-34.244035pt;}
.v8{vertical-align:-32.165415pt;}
.v2{vertical-align:-19.200000pt;}
.v5{vertical-align:-11.520000pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.209413pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.520000pt;}
.v1{vertical-align:21.760000pt;}
.vc{vertical-align:25.237175pt;}
.v4{vertical-align:29.440000pt;}
.vb{vertical-align:35.236811pt;}
.v9{vertical-align:41.238000pt;}
.lsbe{letter-spacing:-0.806504pt;}
.lsbf{letter-spacing:-0.784101pt;}
.ls10e{letter-spacing:-0.659408pt;}
.ls108{letter-spacing:-0.507422pt;}
.ls22{letter-spacing:-0.452352pt;}
.ls127{letter-spacing:-0.421652pt;}
.ls21{letter-spacing:-0.398848pt;}
.lsf7{letter-spacing:-0.370944pt;}
.ls20{letter-spacing:-0.364800pt;}
.ls107{letter-spacing:-0.362295pt;}
.ls11f{letter-spacing:-0.350300pt;}
.ls1f{letter-spacing:-0.350208pt;}
.ls10a{letter-spacing:-0.350051pt;}
.lsf8{letter-spacing:-0.338688pt;}
.ls12c{letter-spacing:-0.335616pt;}
.ls1e{letter-spacing:-0.321024pt;}
.ls15{letter-spacing:-0.301056pt;}
.ls12b{letter-spacing:-0.291840pt;}
.ls1d{letter-spacing:-0.284928pt;}
.ls2c{letter-spacing:-0.282667pt;}
.ls112{letter-spacing:-0.270029pt;}
.ls122{letter-spacing:-0.269466pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls11b{letter-spacing:-0.267546pt;}
.ls115{letter-spacing:-0.266985pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.231168pt;}
.ls17{letter-spacing:-0.215040pt;}
.ls12e{letter-spacing:-0.214016pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls93{letter-spacing:-0.211968pt;}
.ls1a{letter-spacing:-0.198912pt;}
.ls30{letter-spacing:-0.197333pt;}
.ls12d{letter-spacing:-0.184832pt;}
.ls26{letter-spacing:-0.182528pt;}
.ls2a{letter-spacing:-0.176640pt;}
.ls12f{letter-spacing:-0.160512pt;}
.lsf9{letter-spacing:-0.155904pt;}
.lsbc{letter-spacing:-0.147200pt;}
.ls23{letter-spacing:-0.141312pt;}
.ls16{letter-spacing:-0.139776pt;}
.ls2d{letter-spacing:-0.138667pt;}
.ls44{letter-spacing:-0.129536pt;}
.ls1b{letter-spacing:-0.129024pt;}
.ls31{letter-spacing:-0.128000pt;}
.lsde{letter-spacing:-0.123648pt;}
.ls27{letter-spacing:-0.111872pt;}
.lsf6{letter-spacing:-0.107520pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls24{letter-spacing:-0.105984pt;}
.ls10d{letter-spacing:-0.100084pt;}
.ls11a{letter-spacing:-0.098349pt;}
.ls125{letter-spacing:-0.097316pt;}
.ls120{letter-spacing:-0.084807pt;}
.ls104{letter-spacing:-0.083616pt;}
.ls111{letter-spacing:-0.082698pt;}
.ls114{letter-spacing:-0.081766pt;}
.ls11e{letter-spacing:-0.080848pt;}
.ls109{letter-spacing:-0.080790pt;}
.ls28{letter-spacing:-0.076544pt;}
.ls25{letter-spacing:-0.070656pt;}
.ls29{letter-spacing:-0.052992pt;}
.ls10{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls121{letter-spacing:0.019571pt;}
.ls126{letter-spacing:0.022457pt;}
.lscb{letter-spacing:0.034560pt;}
.ls110{letter-spacing:0.034593pt;}
.ls10f{letter-spacing:0.034988pt;}
.ls116{letter-spacing:0.038819pt;}
.lsad{letter-spacing:0.039168pt;}
.ls59{letter-spacing:0.045568pt;}
.ls5a{letter-spacing:0.046080pt;}
.ls18{letter-spacing:0.051840pt;}
.lsbd{letter-spacing:0.051968pt;}
.ls1{letter-spacing:0.069120pt;}
.ls117{letter-spacing:0.074756pt;}
.ls113{letter-spacing:0.075608pt;}
.ls102{letter-spacing:0.078102pt;}
.ls11c{letter-spacing:0.084579pt;}
.ls100{letter-spacing:0.087562pt;}
.lsa4{letter-spacing:0.089088pt;}
.ls119{letter-spacing:0.095179pt;}
.ls124{letter-spacing:0.102149pt;}
.ls0{letter-spacing:0.103680pt;}
.ls4{letter-spacing:0.106133pt;}
.ls78{letter-spacing:0.106240pt;}
.ls3f{letter-spacing:0.106624pt;}
.ls9b{letter-spacing:0.106752pt;}
.ls7e{letter-spacing:0.107520pt;}
.ls72{letter-spacing:0.107648pt;}
.ls10c{letter-spacing:0.121025pt;}
.lsdd{letter-spacing:0.126208pt;}
.ls12{letter-spacing:0.131328pt;}
.ls77{letter-spacing:0.142080pt;}
.lsce{letter-spacing:0.144640pt;}
.lscf{letter-spacing:0.145920pt;}
.ls84{letter-spacing:0.159616pt;}
.lsf{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.165888pt;}
.lsc4{letter-spacing:0.177792pt;}
.ls7d{letter-spacing:0.177920pt;}
.ls79{letter-spacing:0.178048pt;}
.ls11{letter-spacing:0.193536pt;}
.ls14{letter-spacing:0.211200pt;}
.ls5{letter-spacing:0.212800pt;}
.ls95{letter-spacing:0.213504pt;}
.ls2{letter-spacing:0.215424pt;}
.ls3{letter-spacing:0.226581pt;}
.ls103{letter-spacing:0.244992pt;}
.ls128{letter-spacing:0.252416pt;}
.lsf4{letter-spacing:0.298368pt;}
.lsff{letter-spacing:0.366754pt;}
.lsb{letter-spacing:0.412160pt;}
.ls105{letter-spacing:0.467830pt;}
.lsf5{letter-spacing:0.486400pt;}
.lsfe{letter-spacing:0.517075pt;}
.ls99{letter-spacing:0.579840pt;}
.ls9a{letter-spacing:0.581120pt;}
.lsfd{letter-spacing:0.637146pt;}
.ls89{letter-spacing:0.650240pt;}
.ls88{letter-spacing:0.652416pt;}
.ls35{letter-spacing:0.704000pt;}
.ls34{letter-spacing:0.705280pt;}
.lsd8{letter-spacing:0.752512pt;}
.lsd9{letter-spacing:0.753920pt;}
.lsef{letter-spacing:0.761600pt;}
.lsd0{letter-spacing:0.780800pt;}
.ls106{letter-spacing:0.829126pt;}
.lse7{letter-spacing:0.835840pt;}
.ls12a{letter-spacing:0.846080pt;}
.ls7b{letter-spacing:0.948480pt;}
.ls7a{letter-spacing:0.949760pt;}
.lsc9{letter-spacing:0.986880pt;}
.lsca{letter-spacing:0.988160pt;}
.lsb6{letter-spacing:1.077760pt;}
.lse9{letter-spacing:1.105920pt;}
.lsea{letter-spacing:1.107200pt;}
.ls57{letter-spacing:1.115904pt;}
.ls58{letter-spacing:1.117312pt;}
.lsa1{letter-spacing:1.118592pt;}
.lsa2{letter-spacing:1.118720pt;}
.ls86{letter-spacing:1.212160pt;}
.ls85{letter-spacing:1.212416pt;}
.lsb0{letter-spacing:1.445120pt;}
.lse1{letter-spacing:1.466880pt;}
.lse{letter-spacing:1.472000pt;}
.lsc7{letter-spacing:1.524736pt;}
.ls3b{letter-spacing:1.540480pt;}
.ls4a{letter-spacing:1.566720pt;}
.ls49{letter-spacing:1.567872pt;}
.ls51{letter-spacing:1.569280pt;}
.ls73{letter-spacing:1.585920pt;}
.ls6e{letter-spacing:1.700480pt;}
.lsb8{letter-spacing:1.717760pt;}
.lsb9{letter-spacing:1.719040pt;}
.lsf3{letter-spacing:1.749760pt;}
.lsf1{letter-spacing:1.750016pt;}
.lsf0{letter-spacing:1.750144pt;}
.lsf2{letter-spacing:1.752320pt;}
.ls87{letter-spacing:1.770240pt;}
.ls63{letter-spacing:1.803520pt;}
.ls64{letter-spacing:1.804800pt;}
.ls7c{letter-spacing:1.834624pt;}
.ls98{letter-spacing:1.845760pt;}
.ls45{letter-spacing:2.163968pt;}
.ls46{letter-spacing:2.164224pt;}
.ls5b{letter-spacing:2.254080pt;}
.lsc8{letter-spacing:2.259200pt;}
.ls6b{letter-spacing:2.323200pt;}
.ls9c{letter-spacing:2.347648pt;}
.ls9d{letter-spacing:2.347776pt;}
.lsd5{letter-spacing:2.393600pt;}
.lsd6{letter-spacing:2.394880pt;}
.ls6f{letter-spacing:2.453760pt;}
.ls8{letter-spacing:2.531840pt;}
.ls7{letter-spacing:2.602496pt;}
.ls56{letter-spacing:2.617600pt;}
.ls55{letter-spacing:2.618880pt;}
.ls9{letter-spacing:2.848000pt;}
.ls74{letter-spacing:2.884224pt;}
.ls37{letter-spacing:2.944000pt;}
.ls53{letter-spacing:2.955520pt;}
.ls52{letter-spacing:2.955904pt;}
.ls8e{letter-spacing:2.984448pt;}
.ls4f{letter-spacing:3.061760pt;}
.ls50{letter-spacing:3.063040pt;}
.ls4b{letter-spacing:3.065088pt;}
.ls4c{letter-spacing:3.065600pt;}
.lscd{letter-spacing:3.098880pt;}
.lsc{letter-spacing:3.179520pt;}
.ls3d{letter-spacing:3.183360pt;}
.ls3c{letter-spacing:3.183616pt;}
.ls3e{letter-spacing:3.184640pt;}
.lsd{letter-spacing:3.238400pt;}
.lsa9{letter-spacing:3.415040pt;}
.ls6c{letter-spacing:3.484416pt;}
.ls6d{letter-spacing:3.485568pt;}
.ls33{letter-spacing:3.534080pt;}
.ls32{letter-spacing:3.536384pt;}
.ls65{letter-spacing:3.565056pt;}
.ls66{letter-spacing:3.565184pt;}
.ls67{letter-spacing:3.566080pt;}
.lsed{letter-spacing:3.703040pt;}
.lsec{letter-spacing:3.703168pt;}
.lsee{letter-spacing:3.704320pt;}
.lsac{letter-spacing:3.713280pt;}
.lsab{letter-spacing:3.713536pt;}
.ls94{letter-spacing:3.745280pt;}
.lse5{letter-spacing:3.756800pt;}
.lse4{letter-spacing:3.758080pt;}
.ls8a{letter-spacing:3.824640pt;}
.lsb2{letter-spacing:3.837184pt;}
.lsb1{letter-spacing:3.837312pt;}
.lsb7{letter-spacing:3.846400pt;}
.lsfa{letter-spacing:3.850496pt;}
.lsfb{letter-spacing:3.851520pt;}
.ls9f{letter-spacing:3.894656pt;}
.lsa0{letter-spacing:3.896320pt;}
.ls62{letter-spacing:3.989760pt;}
.ls129{letter-spacing:4.109824pt;}
.lsc2{letter-spacing:4.142080pt;}
.lsc1{letter-spacing:4.143232pt;}
.lsbb{letter-spacing:4.218880pt;}
.ls4e{letter-spacing:4.382720pt;}
.ls4d{letter-spacing:4.382976pt;}
.lsd2{letter-spacing:4.392960pt;}
.lsd1{letter-spacing:4.393344pt;}
.ls38{letter-spacing:4.953088pt;}
.ls80{letter-spacing:5.917440pt;}
.ls69{letter-spacing:6.446080pt;}
.ls40{letter-spacing:6.511744pt;}
.ls41{letter-spacing:6.511872pt;}
.lsaa{letter-spacing:6.687616pt;}
.lse2{letter-spacing:7.489664pt;}
.lse3{letter-spacing:7.490560pt;}
.ls3a{letter-spacing:7.532800pt;}
.ls39{letter-spacing:7.534080pt;}
.ls91{letter-spacing:7.626240pt;}
.ls90{letter-spacing:7.627520pt;}
.ls47{letter-spacing:7.743488pt;}
.ls48{letter-spacing:7.744000pt;}
.lscc{letter-spacing:8.003840pt;}
.lsa{letter-spacing:8.066560pt;}
.ls7f{letter-spacing:8.157440pt;}
.ls36{letter-spacing:8.232960pt;}
.ls5e{letter-spacing:8.921984pt;}
.ls5f{letter-spacing:8.922880pt;}
.lsd3{letter-spacing:8.923136pt;}
.lsd4{letter-spacing:8.924160pt;}
.ls8b{letter-spacing:9.041664pt;}
.ls8c{letter-spacing:9.043072pt;}
.ls8d{letter-spacing:9.043200pt;}
.ls9e{letter-spacing:9.144576pt;}
.ls92{letter-spacing:9.359360pt;}
.ls83{letter-spacing:9.551360pt;}
.ls60{letter-spacing:9.726720pt;}
.ls54{letter-spacing:10.182400pt;}
.lsae{letter-spacing:10.446080pt;}
.ls6a{letter-spacing:10.606080pt;}
.ls70{letter-spacing:11.095040pt;}
.ls71{letter-spacing:11.096320pt;}
.lsc5{letter-spacing:11.507200pt;}
.ls81{letter-spacing:11.833472pt;}
.ls82{letter-spacing:11.834880pt;}
.ls8f{letter-spacing:12.021760pt;}
.lsd7{letter-spacing:12.496128pt;}
.lse6{letter-spacing:12.602880pt;}
.lsaf{letter-spacing:12.644608pt;}
.lsc0{letter-spacing:12.747240pt;}
.ls75{letter-spacing:13.635840pt;}
.ls76{letter-spacing:13.637120pt;}
.lsb4{letter-spacing:13.786496pt;}
.lsb3{letter-spacing:13.786624pt;}
.lsb5{letter-spacing:13.786880pt;}
.lsc6{letter-spacing:14.084608pt;}
.ls5d{letter-spacing:14.615040pt;}
.ls5c{letter-spacing:14.616320pt;}
.lseb{letter-spacing:14.812160pt;}
.ls43{letter-spacing:15.416320pt;}
.ls42{letter-spacing:15.416704pt;}
.ls61{letter-spacing:16.194048pt;}
.ls68{letter-spacing:16.448000pt;}
.lsc3{letter-spacing:18.558720pt;}
.lsba{letter-spacing:18.750720pt;}
.lse8{letter-spacing:19.374976pt;}
.ls96{letter-spacing:23.044352pt;}
.ls97{letter-spacing:23.045120pt;}
.lsa3{letter-spacing:72.342067pt;}
.lsa6{letter-spacing:73.480101pt;}
.lse0{letter-spacing:85.232779pt;}
.lsa5{letter-spacing:99.574919pt;}
.lsdf{letter-spacing:101.551871pt;}
.ls11d{letter-spacing:128.341814pt;}
.lsa8{letter-spacing:167.444819pt;}
.lsdc{letter-spacing:184.200522pt;}
.lsdb{letter-spacing:206.350187pt;}
.ls101{letter-spacing:217.589519pt;}
.lsda{letter-spacing:218.565076pt;}
.lsfc{letter-spacing:229.053412pt;}
.lsa7{letter-spacing:295.390623pt;}
.ls10b{letter-spacing:302.996882pt;}
.ls118{letter-spacing:330.685363pt;}
.ls123{letter-spacing:1088.831498pt;}
.ws33{word-spacing:-218.619364pt;}
.ws2c{word-spacing:-167.506334pt;}
.ws62{word-spacing:-30.670705pt;}
.ws64{word-spacing:-30.621163pt;}
.ws65{word-spacing:-25.266946pt;}
.ws43{word-spacing:-24.912227pt;}
.ws4d{word-spacing:-24.638695pt;}
.ws55{word-spacing:-24.360890pt;}
.ws5f{word-spacing:-24.087378pt;}
.ws46{word-spacing:-23.890840pt;}
.ws3b{word-spacing:-18.804992pt;}
.ws63{word-spacing:-18.462743pt;}
.ws59{word-spacing:-17.854892pt;}
.ws0{word-spacing:-17.473536pt;}
.ws6{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws4b{word-spacing:-15.089239pt;}
.ws4f{word-spacing:-15.013631pt;}
.ws53{word-spacing:-14.919106pt;}
.ws57{word-spacing:-14.844350pt;}
.wsf{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.649344pt;}
.ws27{word-spacing:-14.643456pt;}
.ws13{word-spacing:-14.614016pt;}
.ws29{word-spacing:-14.608128pt;}
.ws24{word-spacing:-14.590464pt;}
.wse{word-spacing:-14.578688pt;}
.ws12{word-spacing:-14.543360pt;}
.ws10{word-spacing:-14.537472pt;}
.ws15{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.312000pt;}
.ws36{word-spacing:-13.300224pt;}
.ws16{word-spacing:-13.242667pt;}
.ws8{word-spacing:-13.241088pt;}
.ws18{word-spacing:-13.226667pt;}
.ws37{word-spacing:-13.224960pt;}
.ws9{word-spacing:-13.208832pt;}
.ws14{word-spacing:-13.173333pt;}
.ws7{word-spacing:-13.171200pt;}
.ws39{word-spacing:-13.155072pt;}
.ws38{word-spacing:-13.138944pt;}
.ws3a{word-spacing:-13.069056pt;}
.ws4a{word-spacing:-12.193305pt;}
.wsa{word-spacing:-12.160000pt;}
.ws52{word-spacing:-12.055824pt;}
.ws6b{word-spacing:-11.945984pt;}
.wsd{word-spacing:-11.838976pt;}
.ws6a{word-spacing:-11.824384pt;}
.wsb{word-spacing:-11.809792pt;}
.wsc{word-spacing:-11.761152pt;}
.ws2{word-spacing:-10.775424pt;}
.ws3{word-spacing:-10.771200pt;}
.ws5{word-spacing:-10.560000pt;}
.ws5a{word-spacing:-10.357845pt;}
.ws28{word-spacing:-9.439616pt;}
.ws25{word-spacing:-9.387648pt;}
.ws2a{word-spacing:-9.369088pt;}
.ws2f{word-spacing:-9.331968pt;}
.ws26{word-spacing:-9.280000pt;}
.ws3f{word-spacing:-7.362170pt;}
.ws40{word-spacing:-7.312924pt;}
.ws23{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.144549pt;}
.ws5c{word-spacing:-0.142042pt;}
.ws68{word-spacing:-0.140551pt;}
.ws42{word-spacing:-0.120765pt;}
.ws4e{word-spacing:-0.119246pt;}
.ws56{word-spacing:-0.118182pt;}
.ws60{word-spacing:-0.116767pt;}
.ws45{word-spacing:-0.116684pt;}
.ws21{word-spacing:-0.106667pt;}
.ws67{word-spacing:-0.084658pt;}
.ws2d{word-spacing:-0.058880pt;}
.ws3d{word-spacing:-0.055275pt;}
.ws20{word-spacing:-0.053333pt;}
.ws41{word-spacing:-0.046102pt;}
.ws34{word-spacing:-0.031444pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.021333pt;}
.ws1d{word-spacing:0.053333pt;}
.ws69{word-spacing:0.082432pt;}
.ws1c{word-spacing:0.106667pt;}
.ws1f{word-spacing:0.112000pt;}
.ws1b{word-spacing:0.213333pt;}
.ws19{word-spacing:0.266667pt;}
.ws22{word-spacing:0.304000pt;}
.ws1a{word-spacing:0.320000pt;}
.ws5d{word-spacing:13.793148pt;}
.ws5b{word-spacing:15.380392pt;}
.ws2e{word-spacing:18.096640pt;}
.ws35{word-spacing:29.315733pt;}
.ws61{word-spacing:91.818070pt;}
.ws32{word-spacing:115.103165pt;}
.ws3e{word-spacing:115.313636pt;}
.ws50{word-spacing:124.961894pt;}
.ws44{word-spacing:165.977369pt;}
.ws66{word-spacing:166.835343pt;}
.ws3c{word-spacing:175.156841pt;}
.ws5e{word-spacing:184.427804pt;}
.ws47{word-spacing:196.444782pt;}
.ws31{word-spacing:220.612376pt;}
.ws58{word-spacing:225.893857pt;}
.ws30{word-spacing:228.774744pt;}
.ws49{word-spacing:304.082381pt;}
.ws2b{word-spacing:336.427522pt;}
.ws4c{word-spacing:396.946978pt;}
.ws54{word-spacing:424.304008pt;}
.ws51{word-spacing:1102.624040pt;}
._22{margin-left:-212.593353pt;}
._19{margin-left:-83.414833pt;}
._1a{margin-left:-27.312821pt;}
._1c{margin-left:-12.538368pt;}
._1e{margin-left:-5.695360pt;}
._10{margin-left:-4.531072pt;}
._c{margin-left:-3.391488pt;}
._2{margin-left:-2.166784pt;}
._0{margin-left:-0.953856pt;}
._1{width:0.993920pt;}
._3{width:2.684928pt;}
._8{width:3.827200pt;}
._9{width:4.887040pt;}
._a{width:5.876480pt;}
._d{width:6.938624pt;}
._4{width:8.054784pt;}
._5{width:9.091072pt;}
._6{width:10.000128pt;}
._17{width:10.922880pt;}
._e{width:11.821824pt;}
._b{width:13.542400pt;}
._f{width:15.885312pt;}
._7{width:17.605120pt;}
._14{width:18.782720pt;}
._13{width:20.195840pt;}
._15{width:22.845440pt;}
._16{width:23.987712pt;}
._11{width:30.163328pt;}
._12{width:31.231744pt;}
._24{width:76.655213pt;}
._23{width:102.605065pt;}
._2a{width:110.779105pt;}
._21{width:116.425113pt;}
._20{width:145.683781pt;}
._29{width:158.700541pt;}
._1d{width:173.202688pt;}
._18{width:174.956032pt;}
._28{width:177.227949pt;}
._27{width:184.209885pt;}
._26{width:194.148571pt;}
._25{width:341.582578pt;}
._1b{width:366.059264pt;}
._1f{width:901.111296pt;}
.fs1a{font-size:23.449942pt;}
.fs17{font-size:24.622641pt;}
.fs16{font-size:30.485464pt;}
.fsf{font-size:31.444397pt;}
.fsb{font-size:32.311932pt;}
.fs15{font-size:33.164860pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:35.601275pt;}
.fs7{font-size:37.120000pt;}
.fs3b{font-size:38.220829pt;}
.fs33{font-size:38.819144pt;}
.fs2{font-size:42.240000pt;}
.fs34{font-size:43.241837pt;}
.fs2c{font-size:43.734955pt;}
.fs19{font-size:46.062530pt;}
.fs18{font-size:46.101925pt;}
.fs5{font-size:48.640000pt;}
.fs20{font-size:52.759920pt;}
.fs40{font-size:52.797427pt;}
.fs32{font-size:53.396942pt;}
.fs4{font-size:53.760000pt;}
.fs2b{font-size:54.005866pt;}
.fs10{font-size:54.288394pt;}
.fs1b{font-size:54.605423pt;}
.fs14{font-size:55.275441pt;}
.fs45{font-size:55.382937pt;}
.fsc{font-size:56.007204pt;}
.fs6{font-size:58.880000pt;}
.fs3c{font-size:58.906583pt;}
.fsd{font-size:59.039228pt;}
.fs26{font-size:59.946208pt;}
.fs9{font-size:61.515363pt;}
.fs1f{font-size:62.146502pt;}
.fs3f{font-size:62.190682pt;}
.fs31{font-size:62.896857pt;}
.fs4c{font-size:63.551744pt;}
.fs2a{font-size:63.614116pt;}
.fs0{font-size:64.000000pt;}
.fs3a{font-size:64.226230pt;}
.fs13{font-size:64.320342pt;}
.fsa{font-size:64.872231pt;}
.fs44{font-size:65.236183pt;}
.fs25{font-size:65.359740pt;}
.fs1{font-size:69.120000pt;}
.fse{font-size:71.085372pt;}
.fs48{font-size:73.850972pt;}
.fs12{font-size:74.240000pt;}
.fs4b{font-size:74.858313pt;}
.fs39{font-size:75.652798pt;}
.fs24{font-size:76.987972pt;}
.fs11{font-size:81.435298pt;}
.fs4f{font-size:84.657667pt;}
.fs23{font-size:85.938274pt;}
.fs41{font-size:86.645244pt;}
.fs35{font-size:87.629100pt;}
.fs2d{font-size:88.628398pt;}
.fs1e{font-size:89.612326pt;}
.fs4a{font-size:90.888293pt;}
.fs38{font-size:112.580794pt;}
.fs30{font-size:113.837628pt;}
.fs22{font-size:116.683601pt;}
.fs42{font-size:116.750993pt;}
.fs43{font-size:116.766552pt;}
.fs21{font-size:116.820771pt;}
.fs46{font-size:116.929231pt;}
.fs29{font-size:117.760000pt;}
.fs37{font-size:118.092436pt;}
.fs36{font-size:118.181592pt;}
.fs2e{font-size:119.245831pt;}
.fs2f{font-size:119.439129pt;}
.fs1d{font-size:120.765108pt;}
.fs1c{font-size:120.868392pt;}
.fs49{font-size:122.484653pt;}
.fs47{font-size:122.682819pt;}
.fs4d{font-size:134.053211pt;}
.fs50{font-size:140.550751pt;}
.fs4e{font-size:140.635134pt;}
.fs3e{font-size:142.042442pt;}
.fs3d{font-size:142.362315pt;}
.fs28{font-size:144.549307pt;}
.fs27{font-size:144.734969pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:3.124330pt;}
.y9e{bottom:3.231112pt;}
.y86{bottom:3.459511pt;}
.y247{bottom:3.680000pt;}
.ybe{bottom:3.796236pt;}
.y245{bottom:4.000000pt;}
.y2{bottom:4.320000pt;}
.y83{bottom:5.220748pt;}
.y24b{bottom:5.706667pt;}
.y233{bottom:6.080000pt;}
.yc7{bottom:6.181401pt;}
.y246{bottom:6.880000pt;}
.y258{bottom:7.680000pt;}
.y235{bottom:7.733333pt;}
.yc4{bottom:7.760415pt;}
.y254{bottom:8.480000pt;}
.y251{bottom:8.746667pt;}
.y25a{bottom:9.866667pt;}
.y9b{bottom:10.635918pt;}
.y253{bottom:10.933333pt;}
.y1f1{bottom:11.296306pt;}
.y163{bottom:11.773677pt;}
.y7f{bottom:12.108224pt;}
.y152{bottom:12.311321pt;}
.y249{bottom:12.426667pt;}
.y24c{bottom:12.480000pt;}
.y175{bottom:12.630902pt;}
.y1ab{bottom:12.694046pt;}
.y85{bottom:13.114899pt;}
.y81{bottom:13.271994pt;}
.yc8{bottom:13.572099pt;}
.y200{bottom:14.142912pt;}
.y220{bottom:14.182095pt;}
.y9f{bottom:14.271614pt;}
.y231{bottom:14.400000pt;}
.y19d{bottom:14.454083pt;}
.y25d{bottom:14.560000pt;}
.yc6{bottom:14.714271pt;}
.yc1{bottom:14.915911pt;}
.y80{bottom:17.234842pt;}
.ybd{bottom:17.469560pt;}
.ybf{bottom:18.443926pt;}
.y24a{bottom:19.466667pt;}
.y9c{bottom:19.857691pt;}
.y1c5{bottom:20.243310pt;}
.y232{bottom:23.040000pt;}
.ya0{bottom:23.190356pt;}
.y9d{bottom:23.492709pt;}
.y84{bottom:25.725574pt;}
.yc5{bottom:26.035857pt;}
.y82{bottom:26.921523pt;}
.yc3{bottom:27.077886pt;}
.y25c{bottom:28.320000pt;}
.y24f{bottom:28.640000pt;}
.yc0{bottom:33.964755pt;}
.y256{bottom:37.226667pt;}
.y243{bottom:39.680000pt;}
.y1e5{bottom:41.298551pt;}
.y1a3{bottom:41.767496pt;}
.y192{bottom:42.243801pt;}
.y157{bottom:43.453066pt;}
.y13c{bottom:44.973161pt;}
.y24e{bottom:45.600000pt;}
.y1f3{bottom:45.613523pt;}
.y1{bottom:46.666667pt;}
.y22{bottom:50.986667pt;}
.y216{bottom:52.341373pt;}
.y1b9{bottom:52.896881pt;}
.y16a{bottom:53.830443pt;}
.y158{bottom:57.088319pt;}
.y1e6{bottom:61.219585pt;}
.y14c{bottom:68.675119pt;}
.y193{bottom:78.690153pt;}
.y147{bottom:79.395063pt;}
.y1f4{bottom:81.035389pt;}
.y161{bottom:83.307577pt;}
.y1a4{bottom:85.745349pt;}
.y1e7{bottom:86.645244pt;}
.y13d{bottom:90.911202pt;}
.y201{bottom:93.692410pt;}
.y14d{bottom:95.475823pt;}
.y1c3{bottom:95.502471pt;}
.y159{bottom:95.687851pt;}
.y217{bottom:96.009246pt;}
.ycb{bottom:98.666667pt;}
.y16b{bottom:98.740632pt;}
.y99{bottom:99.306667pt;}
.y160{bottom:99.451155pt;}
.ybb{bottom:101.866667pt;}
.y106{bottom:103.786667pt;}
.y18c{bottom:104.746667pt;}
.y20e{bottom:105.706667pt;}
.y14b{bottom:106.698450pt;}
.y6c{bottom:107.306667pt;}
.y194{bottom:108.715100pt;}
.y1e8{bottom:111.951840pt;}
.y1c2{bottom:113.085164pt;}
.y7d{bottom:114.986667pt;}
.y22f{bottom:115.306667pt;}
.y1f5{bottom:115.947416pt;}
.y214{bottom:117.866667pt;}
.y3d{bottom:118.186667pt;}
.y1ba{bottom:118.207993pt;}
.y1b7{bottom:123.626667pt;}
.y168{bottom:123.946667pt;}
.y13a{bottom:124.266667pt;}
.y172{bottom:124.754338pt;}
.y1a5{bottom:126.081061pt;}
.y13e{bottom:126.336781pt;}
.y105{bottom:126.826667pt;}
.y1aa{bottom:127.677797pt;}
.y55{bottom:127.786667pt;}
.y148{bottom:127.802655pt;}
.y121{bottom:128.106667pt;}
.y19c{bottom:129.133799pt;}
.y1c1{bottom:130.620239pt;}
.yca{bottom:132.586667pt;}
.y98{bottom:132.906667pt;}
.y15a{bottom:134.285754pt;}
.yba{bottom:135.466667pt;}
.y1e9{bottom:137.377499pt;}
.y14a{bottom:137.392409pt;}
.y20d{bottom:138.026667pt;}
.y195{bottom:138.741715pt;}
.y162{bottom:139.789728pt;}
.y6b{bottom:140.906667pt;}
.y18b{bottom:143.786667pt;}
.y1a8{bottom:144.016292pt;}
.y171{bottom:144.803710pt;}
.y151{bottom:144.846608pt;}
.y7c{bottom:148.586667pt;}
.y21e{bottom:149.131980pt;}
.y22e{bottom:149.226667pt;}
.y218{bottom:150.252977pt;}
.y19a{bottom:150.461738pt;}
.y1f6{bottom:151.028819pt;}
.y213{bottom:151.786667pt;}
.y3c{bottom:152.106667pt;}
.y16c{bottom:154.527554pt;}
.y241{bottom:154.666667pt;}
.y1ec{bottom:156.083438pt;}
.y167{bottom:156.586667pt;}
.y104{bottom:159.466667pt;}
.y1fe{bottom:159.607124pt;}
.y1f0{bottom:159.687948pt;}
.y1a7{bottom:160.396026pt;}
.y120{bottom:160.426667pt;}
.y54{bottom:161.706667pt;}
.y13f{bottom:161.721875pt;}
.y1ea{bottom:162.643320pt;}
.y1b6{bottom:162.986667pt;}
.y139{bottom:163.306667pt;}
.y146{bottom:165.783815pt;}
.y1a6{bottom:166.420073pt;}
.y97{bottom:166.826667pt;}
.y199{bottom:167.033266pt;}
.y21f{bottom:168.577660pt;}
.y196{bottom:168.801697pt;}
.yb9{bottom:169.386667pt;}
.y1c4{bottom:170.170385pt;}
.y20c{bottom:170.666667pt;}
.y145{bottom:171.148004pt;}
.y15b{bottom:172.893435pt;}
.ye5{bottom:173.546667pt;}
.y18a{bottom:174.186667pt;}
.y6a{bottom:174.506667pt;}
.y1ff{bottom:176.561853pt;}
.y18d{bottom:177.693067pt;}
.y1ee{bottom:178.349850pt;}
.y1ac{bottom:178.494559pt;}
.y1bb{bottom:179.134344pt;}
.y149{bottom:179.261762pt;}
.y174{bottom:180.941037pt;}
.y19e{bottom:181.147344pt;}
.y7b{bottom:182.186667pt;}
.y14e{bottom:182.702940pt;}
.y198{bottom:183.549740pt;}
.y3b{bottom:185.706667pt;}
.y1f7{bottom:186.108511pt;}
.y1eb{bottom:188.103230pt;}
.y22d{bottom:188.266667pt;}
.y166{bottom:189.546667pt;}
.y103{bottom:192.426667pt;}
.y11f{bottom:193.066667pt;}
.y240{bottom:193.706667pt;}
.y53{bottom:195.306667pt;}
.y140{bottom:197.311078pt;}
.y155{bottom:197.783397pt;}
.y197{bottom:198.831649pt;}
.y1dd{bottom:199.786667pt;}
.y1b5{bottom:200.426667pt;}
.y1df{bottom:200.661930pt;}
.y138{bottom:200.746667pt;}
.y156{bottom:201.159333pt;}
.y189{bottom:202.026667pt;}
.y96{bottom:202.346667pt;}
.yb8{bottom:202.986667pt;}
.y154{bottom:203.130718pt;}
.y20b{bottom:203.306667pt;}
.y219{bottom:204.488856pt;}
.ye4{bottom:206.506667pt;}
.y69{bottom:208.426667pt;}
.yc9{bottom:209.706667pt;}
.y16d{bottom:210.306401pt;}
.y15c{bottom:211.651062pt;}
.y1c0{bottom:215.230250pt;}
.y7a{bottom:216.106667pt;}
.y18e{bottom:216.649420pt;}
.y3a{bottom:219.306667pt;}
.y212{bottom:219.626667pt;}
.y1e{bottom:220.960427pt;}
.y1f8{bottom:221.027381pt;}
.y1bf{bottom:221.539544pt;}
.y1a0{bottom:223.905845pt;}
.y102{bottom:225.066667pt;}
.y11e{bottom:225.706667pt;}
.y1e0{bottom:226.089220pt;}
.y165{bottom:228.586667pt;}
.y52{bottom:228.906667pt;}
.ye3{bottom:229.546667pt;}
.y188{bottom:230.186667pt;}
.y23f{bottom:231.466667pt;}
.y141{bottom:232.701233pt;}
.y137{bottom:233.386667pt;}
.y1b4{bottom:234.346667pt;}
.y1f2{bottom:235.497867pt;}
.y20a{bottom:236.266667pt;}
.yb7{bottom:236.906667pt;}
.y1dc{bottom:237.226667pt;}
.y1bc{bottom:240.050774pt;}
.y68{bottom:242.026667pt;}
.y176{bottom:245.296895pt;}
.y95{bottom:246.826667pt;}
.y101{bottom:248.106667pt;}
.y79{bottom:249.706667pt;}
.y15d{bottom:250.245705pt;}
.y1e1{bottom:251.402340pt;}
.y18f{bottom:252.301647pt;}
.y39{bottom:253.226667pt;}
.y211{bottom:253.546667pt;}
.y1f9{bottom:256.100230pt;}
.y11d{bottom:258.346667pt;}
.y21a{bottom:258.732588pt;}
.y187{bottom:260.906667pt;}
.ye2{bottom:262.186667pt;}
.y51{bottom:262.826667pt;}
.y23e{bottom:265.386667pt;}
.y136{bottom:266.026667pt;}
.y16e{bottom:266.093323pt;}
.y142{bottom:268.091388pt;}
.y1b3{bottom:268.266667pt;}
.y1a1{bottom:269.317130pt;}
.yb6{bottom:270.506667pt;}
.y1db{bottom:271.146667pt;}
.y209{bottom:275.306667pt;}
.y67{bottom:275.946667pt;}
.y1e2{bottom:276.829630pt;}
.y1ed{bottom:279.651260pt;}
.y100{bottom:280.426667pt;}
.y1fd{bottom:280.651224pt;}
.y94{bottom:281.066667pt;}
.ye1{bottom:285.546667pt;}
.y38{bottom:286.826667pt;}
.y210{bottom:287.146667pt;}
.y190{bottom:287.953873pt;}
.y15e{bottom:288.840348pt;}
.y1d{bottom:290.718507pt;}
.y11c{bottom:290.986667pt;}
.y1fa{bottom:291.190187pt;}
.y7e{bottom:291.524000pt;}
.y50{bottom:296.426667pt;}
.y150{bottom:297.020900pt;}
.y1fc{bottom:297.605952pt;}
.y135{bottom:298.666667pt;}
.y23d{bottom:299.306667pt;}
.y1bd{bottom:301.040615pt;}
.y164{bottom:301.553110pt;}
.y1e3{bottom:302.093820pt;}
.y1b2{bottom:302.186667pt;}
.yff{bottom:303.466667pt;}
.y143{bottom:303.515280pt;}
.yb5{bottom:304.106667pt;}
.y1da{bottom:305.066667pt;}
.y1c7{bottom:305.425375pt;}
.y78{bottom:310.186667pt;}
.y1c6{bottom:311.714829pt;}
.y208{bottom:312.746667pt;}
.y21b{bottom:312.976320pt;}
.y1ef{bottom:313.103070pt;}
.y14f{bottom:313.737603pt;}
.y1a2{bottom:314.893368pt;}
.y93{bottom:315.306667pt;}
.y153{bottom:315.694352pt;}
.y1c{bottom:315.992747pt;}
.ye0{bottom:317.546667pt;}
.y66{bottom:319.146667pt;}
.y37{bottom:320.746667pt;}
.y16f{bottom:321.880246pt;}
.y1a9{bottom:322.679102pt;}
.y191{bottom:323.622783pt;}
.y11b{bottom:323.626667pt;}
.y19b{bottom:323.789616pt;}
.y1fb{bottom:326.263036pt;}
.y20f{bottom:326.506667pt;}
.y15f{bottom:327.434991pt;}
.y1e4{bottom:327.521110pt;}
.y4f{bottom:330.346667pt;}
.y134{bottom:331.306667pt;}
.y23c{bottom:332.906667pt;}
.y1b1{bottom:336.106667pt;}
.yfe{bottom:336.426667pt;}
.yb4{bottom:338.026667pt;}
.y21d{bottom:338.478530pt;}
.y144{bottom:338.888567pt;}
.y1d9{bottom:338.986667pt;}
.y77{bottom:339.946667pt;}
.ydf{bottom:341.226667pt;}
.y1b{bottom:341.266987pt;}
.y207{bottom:345.386667pt;}
.y186{bottom:347.626667pt;}
.y92{bottom:349.546667pt;}
.y36{bottom:354.346667pt;}
.y22c{bottom:355.946667pt;}
.y11a{bottom:356.266667pt;}
.yfd{bottom:359.466667pt;}
.y1be{bottom:362.149498pt;}
.y65{bottom:362.346667pt;}
.y133{bottom:363.626667pt;}
.y4e{bottom:363.946667pt;}
.y1a{bottom:366.541227pt;}
.y23b{bottom:366.826667pt;}
.y21c{bottom:367.220052pt;}
.y1b0{bottom:370.026667pt;}
.yb3{bottom:371.626667pt;}
.y1d8{bottom:372.906667pt;}
.y76{bottom:373.546667pt;}
.yde{bottom:374.186667pt;}
.y170{bottom:377.667168pt;}
.y206{bottom:379.626667pt;}
.y91{bottom:383.146667pt;}
.y173{bottom:384.632962pt;}
.y35{bottom:387.946667pt;}
.y22b{bottom:388.586667pt;}
.y119{bottom:388.906667pt;}
.y185{bottom:390.826667pt;}
.y19{bottom:391.815467pt;}
.yfc{bottom:392.426667pt;}
.y132{bottom:396.266667pt;}
.ydd{bottom:397.226667pt;}
.y4d{bottom:397.546667pt;}
.y23a{bottom:400.746667pt;}
.y1af{bottom:403.946667pt;}
.yb2{bottom:405.546667pt;}
.y64{bottom:405.866667pt;}
.y1d7{bottom:406.826667pt;}
.y75{bottom:407.146667pt;}
.y25b{bottom:414.666667pt;}
.y205{bottom:416.426667pt;}
.y90{bottom:416.746667pt;}
.y18{bottom:417.089707pt;}
.y118{bottom:421.226667pt;}
.y34{bottom:421.866667pt;}
.yfb{bottom:425.066667pt;}
.y131{bottom:428.906667pt;}
.ydc{bottom:430.186667pt;}
.y4c{bottom:431.466667pt;}
.y184{bottom:434.346667pt;}
.y1ae{bottom:437.546667pt;}
.yb1{bottom:439.146667pt;}
.y63{bottom:439.466667pt;}
.y1d6{bottom:440.746667pt;}
.y74{bottom:441.066667pt;}
.y17{bottom:442.363947pt;}
.yfa{bottom:448.106667pt;}
.y8f{bottom:450.666667pt;}
.y204{bottom:453.226667pt;}
.y117{bottom:453.866667pt;}
.y33{bottom:455.466667pt;}
.y130{bottom:461.546667pt;}
.ydb{bottom:462.506667pt;}
.y255{bottom:464.000000pt;}
.y4b{bottom:465.066667pt;}
.y16{bottom:467.638187pt;}
.y1ad{bottom:469.226667pt;}
.y1b8{bottom:469.512133pt;}
.yb0{bottom:472.746667pt;}
.y62{bottom:473.386667pt;}
.y1d5{bottom:474.346667pt;}
.y73{bottom:474.666667pt;}
.y183{bottom:477.546667pt;}
.yf9{bottom:480.426667pt;}
.y8e{bottom:484.266667pt;}
.yda{bottom:485.546667pt;}
.y116{bottom:486.506667pt;}
.y32{bottom:489.386667pt;}
.y203{bottom:490.026667pt;}
.y259{bottom:492.000000pt;}
.y15{bottom:492.912427pt;}
.y12f{bottom:494.186667pt;}
.y4a{bottom:498.986667pt;}
.yf8{bottom:503.466667pt;}
.yaf{bottom:506.666667pt;}
.y61{bottom:506.986667pt;}
.y1d4{bottom:508.266667pt;}
.y72{bottom:508.586667pt;}
.y115{bottom:509.546667pt;}
.y14{bottom:518.186027pt;}
.y8d{bottom:518.186667pt;}
.y22a{bottom:519.146667pt;}
.y182{bottom:521.066667pt;}
.y257{bottom:522.666667pt;}
.y31{bottom:522.986667pt;}
.y169{bottom:524.135200pt;}
.y12e{bottom:526.826667pt;}
.y49{bottom:532.586667pt;}
.yf7{bottom:536.746667pt;}
.y215{bottom:538.802000pt;}
.yae{bottom:540.266667pt;}
.y60{bottom:540.586667pt;}
.yd9{bottom:541.226667pt;}
.y71{bottom:542.186667pt;}
.y13{bottom:543.460267pt;}
.y24d{bottom:550.666667pt;}
.y8c{bottom:551.786667pt;}
.y30{bottom:556.586667pt;}
.y19f{bottom:558.670533pt;}
.yf6{bottom:559.466667pt;}
.y202{bottom:560.106667pt;}
.y181{bottom:564.266667pt;}
.y48{bottom:566.186667pt;}
.yd8{bottom:573.866667pt;}
.yad{bottom:574.186667pt;}
.y13b{bottom:574.403867pt;}
.y5f{bottom:574.506667pt;}
.y114{bottom:574.826667pt;}
.y70{bottom:575.786667pt;}
.y1d3{bottom:576.106667pt;}
.y252{bottom:577.333333pt;}
.y12{bottom:578.346667pt;}
.y229{bottom:584.426667pt;}
.y8b{bottom:585.386667pt;}
.y2f{bottom:590.506667pt;}
.y12d{bottom:591.786667pt;}
.yf5{bottom:592.106667pt;}
.yd7{bottom:596.906667pt;}
.y47{bottom:600.106667pt;}
.y113{bottom:607.466667pt;}
.yac{bottom:607.786667pt;}
.y250{bottom:608.000000pt;}
.y5e{bottom:608.106667pt;}
.y6f{bottom:609.706667pt;}
.y1d2{bottom:610.026667pt;}
.yf4{bottom:615.146667pt;}
.y228{bottom:616.746667pt;}
.y236{bottom:617.333333pt;}
.y8a{bottom:619.306667pt;}
.y12c{bottom:624.426667pt;}
.yd6{bottom:629.546667pt;}
.y112{bottom:630.186667pt;}
.y2e{bottom:633.706667pt;}
.y242{bottom:634.666667pt;}
.y1de{bottom:635.266667pt;}
.y234{bottom:641.333333pt;}
.yab{bottom:641.386667pt;}
.y5d{bottom:642.026667pt;}
.y6e{bottom:643.306667pt;}
.y1d1{bottom:645.226667pt;}
.yf3{bottom:648.106667pt;}
.y227{bottom:649.386667pt;}
.y180{bottom:650.986667pt;}
.yd5{bottom:652.266667pt;}
.y89{bottom:652.906667pt;}
.y12b{bottom:657.066667pt;}
.y111{bottom:662.826667pt;}
.y230{bottom:666.666667pt;}
.y2d{bottom:667.626667pt;}
.y248{bottom:668.000000pt;}
.yf2{bottom:671.466667pt;}
.yaa{bottom:675.306667pt;}
.y5c{bottom:675.626667pt;}
.y6d{bottom:677.226667pt;}
.y1d0{bottom:682.026667pt;}
.yd4{bottom:685.546667pt;}
.y110{bottom:685.866667pt;}
.y88{bottom:686.826667pt;}
.y11{bottom:688.427307pt;}
.y12a{bottom:689.706667pt;}
.y17f{bottom:691.306667pt;}
.y2c{bottom:701.226667pt;}
.y244{bottom:702.666667pt;}
.yf1{bottom:704.106667pt;}
.yd3{bottom:708.586667pt;}
.ya9{bottom:708.906667pt;}
.y5b{bottom:709.546667pt;}
.y9a{bottom:710.689600pt;}
.y46{bottom:710.826667pt;}
.y10{bottom:711.786667pt;}
.y226{bottom:714.666667pt;}
.y10f{bottom:718.506667pt;}
.y1cf{bottom:718.826667pt;}
.y17e{bottom:719.466667pt;}
.y129{bottom:722.346667pt;}
.y87{bottom:724.906667pt;}
.yf0{bottom:727.146667pt;}
.y2b{bottom:735.146667pt;}
.yd2{bottom:741.226667pt;}
.y10e{bottom:741.546667pt;}
.ya8{bottom:742.826667pt;}
.y5a{bottom:743.146667pt;}
.y239{bottom:743.786667pt;}
.y45{bottom:744.746667pt;}
.y17d{bottom:747.306667pt;}
.y128{bottom:754.986667pt;}
.y1ce{bottom:755.626667pt;}
.yef{bottom:759.786667pt;}
.y2a{bottom:768.746667pt;}
.y10d{bottom:774.186667pt;}
.yd1{bottom:774.506667pt;}
.y17c{bottom:775.466667pt;}
.ya7{bottom:776.426667pt;}
.y59{bottom:776.746667pt;}
.y238{bottom:777.706667pt;}
.y44{bottom:778.346667pt;}
.y225{bottom:779.946667pt;}
.yf{bottom:780.586667pt;}
.y127{bottom:787.626667pt;}
.yee{bottom:792.426667pt;}
.ye{bottom:795.946667pt;}
.y29{bottom:802.346667pt;}
.y17b{bottom:803.306667pt;}
.yd{bottom:806.504747pt;}
.y10c{bottom:806.826667pt;}
.ya6{bottom:810.026667pt;}
.y58{bottom:810.666667pt;}
.y237{bottom:811.626667pt;}
.y43{bottom:811.946667pt;}
.y224{bottom:812.586667pt;}
.yed{bottom:815.466667pt;}
.yd0{bottom:816.746667pt;}
.y126{bottom:820.266667pt;}
.yc{bottom:826.666667pt;}
.y1cd{bottom:829.226667pt;}
.y17a{bottom:831.466667pt;}
.y28{bottom:836.266667pt;}
.y10b{bottom:839.466667pt;}
.yb{bottom:842.026667pt;}
.ya5{bottom:843.946667pt;}
.y57{bottom:844.266667pt;}
.y223{bottom:845.546667pt;}
.y42{bottom:845.866667pt;}
.yec{bottom:848.426667pt;}
.y125{bottom:852.586667pt;}
.ya{bottom:852.587307pt;}
.y179{bottom:859.306667pt;}
.ycf{bottom:859.946667pt;}
.y1cc{bottom:866.026667pt;}
.y27{bottom:869.866667pt;}
.y10a{bottom:871.786667pt;}
.y9{bottom:872.426667pt;}
.ya4{bottom:877.546667pt;}
.y222{bottom:879.146667pt;}
.y41{bottom:879.466667pt;}
.yeb{bottom:881.386667pt;}
.y124{bottom:885.226667pt;}
.y178{bottom:887.466667pt;}
.y8{bottom:887.786667pt;}
.y56{bottom:894.186667pt;}
.y1cb{bottom:902.826667pt;}
.yce{bottom:903.146667pt;}
.y26{bottom:903.786667pt;}
.yea{bottom:904.426667pt;}
.ya3{bottom:911.466667pt;}
.y221{bottom:913.066667pt;}
.y40{bottom:913.386667pt;}
.y177{bottom:915.306667pt;}
.y123{bottom:917.866667pt;}
.y7{bottom:926.826667pt;}
.y109{bottom:927.466667pt;}
.ye9{bottom:937.066667pt;}
.y25{bottom:937.386667pt;}
.y1ca{bottom:939.626667pt;}
.ya2{bottom:945.066667pt;}
.y6{bottom:945.706667pt;}
.y3f{bottom:946.986667pt;}
.y122{bottom:950.506667pt;}
.ye8{bottom:960.106667pt;}
.y5{bottom:963.946667pt;}
.y24{bottom:970.986667pt;}
.y1c9{bottom:976.426667pt;}
.y3e{bottom:980.586667pt;}
.ycd{bottom:980.906667pt;}
.y108{bottom:983.146667pt;}
.ybc{bottom:985.333200pt;}
.y4{bottom:992.100907pt;}
.ye7{bottom:993.066667pt;}
.ya1{bottom:1003.946667pt;}
.y3{bottom:1012.266667pt;}
.y1c8{bottom:1013.226667pt;}
.y23{bottom:1014.506667pt;}
.ycc{bottom:1014.826667pt;}
.y107{bottom:1015.786667pt;}
.ye6{bottom:1016.106667pt;}
.y21{bottom:1057.386667pt;}
.y20{bottom:1072.746667pt;}
.y1f{bottom:1088.106667pt;}
.h2e{height:17.072199pt;}
.h2b{height:17.925956pt;}
.h1{height:20.000000pt;}
.h1c{height:21.249534pt;}
.h70{height:21.333333pt;}
.h1e{height:21.832975pt;}
.h16{height:21.835798pt;}
.h2a{height:22.194251pt;}
.h17{height:22.435336pt;}
.h29{height:23.027554pt;}
.h5{height:23.355000pt;}
.hd{height:24.058674pt;}
.hf{height:24.719245pt;}
.h6e{height:25.333333pt;}
.h78{height:26.666667pt;}
.h74{height:28.000000pt;}
.h77{height:30.666667pt;}
.h2d{height:31.982870pt;}
.h75{height:32.000000pt;}
.h2c{height:32.010223pt;}
.h71{height:33.333333pt;}
.h7{height:33.772500pt;}
.h72{height:34.666667pt;}
.h1d{height:36.687079pt;}
.h24{height:36.933750pt;}
.h6{height:37.353750pt;}
.h1f{height:37.694383pt;}
.h1a{height:37.930660pt;}
.h15{height:38.066667pt;}
.h36{height:38.410664pt;}
.h5b{height:38.437971pt;}
.h4b{height:38.874434pt;}
.h18{height:38.887814pt;}
.h43{height:39.317747pt;}
.h19{height:39.349876pt;}
.h2f{height:39.754241pt;}
.h8{height:39.876250pt;}
.h6c{height:40.000000pt;}
.h61{height:40.320292pt;}
.h22{height:40.451250pt;}
.h23{height:40.595000pt;}
.h6d{height:40.882500pt;}
.h14{height:41.141250pt;}
.he{height:41.570929pt;}
.h10{height:42.712327pt;}
.hc{height:42.866667pt;}
.h54{height:42.885603pt;}
.h3d{height:43.642479pt;}
.h2{height:44.437500pt;}
.h35{height:45.244353pt;}
.h5a{height:45.276517pt;}
.h68{height:45.677816pt;}
.h49{height:45.790632pt;}
.h42{height:46.312816pt;}
.h27{height:46.826967pt;}
.h3{height:46.845000pt;}
.h60{height:47.493725pt;}
.h3c{height:47.583678pt;}
.h9{height:48.903750pt;}
.ha{height:48.906310pt;}
.h1b{height:49.357128pt;}
.hb{height:50.093750pt;}
.h20{height:50.285686pt;}
.h79{height:50.666667pt;}
.h4{height:51.088750pt;}
.h25{height:51.547500pt;}
.h28{height:52.986046pt;}
.h33{height:53.053520pt;}
.h67{height:53.804413pt;}
.h51{height:55.077306pt;}
.h3b{height:56.049349pt;}
.h12{height:56.979807pt;}
.h11{height:60.089171pt;}
.h39{height:62.565413pt;}
.h57{height:62.903895pt;}
.h52{height:63.062620pt;}
.h5c{height:63.080107pt;}
.h32{height:65.240223pt;}
.h65{height:66.169163pt;}
.h58{height:71.916265pt;}
.h53{height:71.995627pt;}
.h21{height:75.431036pt;}
.h4e{height:78.168891pt;}
.h40{height:78.487500pt;}
.h46{height:79.041556pt;}
.h62{height:79.189865pt;}
.h4d{height:79.804654pt;}
.h4a{height:80.112434pt;}
.h45{height:80.714724pt;}
.h38{height:81.017617pt;}
.h5d{height:81.064410pt;}
.h5e{height:81.075213pt;}
.h37{height:81.112860pt;}
.h4f{height:81.995822pt;}
.h4c{height:82.057726pt;}
.h44{height:82.796666pt;}
.h47{height:82.930880pt;}
.h31{height:83.851555pt;}
.h30{height:83.923268pt;}
.h76{height:84.000000pt;}
.h64{height:85.045496pt;}
.h63{height:85.183090pt;}
.h73{height:85.333333pt;}
.h6f{height:89.333333pt;}
.h69{height:90.787013pt;}
.h6b{height:97.589437pt;}
.h6a{height:97.648028pt;}
.h56{height:98.625172pt;}
.h55{height:98.847271pt;}
.h3f{height:100.365779pt;}
.h3e{height:100.494690pt;}
.h34{height:375.466667pt;}
.h59{height:375.733333pt;}
.h48{height:380.000000pt;}
.h41{height:384.333333pt;}
.h26{height:388.600000pt;}
.h5f{height:394.133333pt;}
.h66{height:452.266667pt;}
.h50{height:456.994533pt;}
.h3a{height:465.133333pt;}
.h13{height:1106.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:9.333333pt;}
.w6{width:17.333333pt;}
.w13{width:38.666667pt;}
.w18{width:49.333333pt;}
.w15{width:66.666667pt;}
.w14{width:68.000000pt;}
.w10{width:73.333333pt;}
.w11{width:90.666667pt;}
.w4{width:91.800000pt;}
.w12{width:96.000000pt;}
.w19{width:114.666667pt;}
.w1b{width:133.333333pt;}
.w1a{width:144.000000pt;}
.w2{width:182.333333pt;}
.w5{width:225.200000pt;}
.w16{width:228.000000pt;}
.w17{width:276.000000pt;}
.wd{width:446.133333pt;}
.w8{width:446.400000pt;}
.wb{width:451.600000pt;}
.wa{width:455.666667pt;}
.w7{width:461.866667pt;}
.we{width:468.800000pt;}
.wf{width:537.400000pt;}
.wc{width:544.000000pt;}
.w9{width:553.066667pt;}
.w1c{width:568.000000pt;}
.w3{width:777.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:0.960000pt;}
.x18{left:2.559234pt;}
.x25{left:3.569606pt;}
.x9c{left:4.748683pt;}
.x26{left:6.027933pt;}
.x88{left:8.456320pt;}
.x90{left:9.613621pt;}
.x32{left:10.640361pt;}
.x8d{left:12.366080pt;}
.x9a{left:14.108715pt;}
.x1d{left:16.000000pt;}
.x24{left:17.275571pt;}
.x94{left:18.183595pt;}
.x1c{left:21.357919pt;}
.x99{left:22.254891pt;}
.x8c{left:24.984640pt;}
.x93{left:25.986773pt;}
.x8f{left:26.999893pt;}
.x92{left:28.246720pt;}
.x7d{left:29.187748pt;}
.x29{left:31.216760pt;}
.x60{left:33.327604pt;}
.x7e{left:34.288196pt;}
.x49{left:35.322651pt;}
.x89{left:37.540160pt;}
.x91{left:38.620160pt;}
.x97{left:40.022485pt;}
.x9d{left:41.375680pt;}
.x43{left:43.880467pt;}
.x5d{left:45.028659pt;}
.x9b{left:46.259840pt;}
.x16{left:48.182275pt;}
.x27{left:50.143243pt;}
.x2c{left:51.780827pt;}
.x78{left:52.708527pt;}
.x5c{left:53.834849pt;}
.x84{left:54.812579pt;}
.x1b{left:56.649841pt;}
.x23{left:58.258081pt;}
.x50{left:59.922121pt;}
.x15{left:63.000835pt;}
.x2e{left:65.460816pt;}
.x28{left:66.710699pt;}
.x3b{left:67.896458pt;}
.x12{left:69.760000pt;}
.x96{left:71.037109pt;}
.x81{left:72.757348pt;}
.x7c{left:77.201251pt;}
.x82{left:79.000203pt;}
.x4f{left:81.303239pt;}
.x19{left:84.675667pt;}
.x3a{left:85.792382pt;}
.x17{left:86.950061pt;}
.x64{left:90.072360pt;}
.x6c{left:92.211773pt;}
.x47{left:93.573124pt;}
.x1f{left:97.279936pt;}
.x79{left:99.953931pt;}
.x4d{left:102.066760pt;}
.x7b{left:107.158729pt;}
.x7a{left:108.414432pt;}
.x57{left:112.279936pt;}
.x10{left:113.280000pt;}
.x3{left:115.612933pt;}
.x4e{left:120.800489pt;}
.x5{left:124.860933pt;}
.x8{left:126.260400pt;}
.x9{left:127.201200pt;}
.x56{left:128.282880pt;}
.x58{left:129.187168pt;}
.xc{left:130.703733pt;}
.xe{left:134.961600pt;}
.xf{left:138.268800pt;}
.x6{left:143.925067pt;}
.x59{left:149.793952pt;}
.x2f{left:153.359103pt;}
.x2d{left:154.610362pt;}
.x1a{left:156.992989pt;}
.x35{left:161.558844pt;}
.x77{left:162.933200pt;}
.x5b{left:168.466800pt;}
.x34{left:169.385868pt;}
.x36{left:171.462426pt;}
.x3f{left:173.978765pt;}
.x31{left:175.868455pt;}
.x33{left:177.945013pt;}
.x2a{left:180.222336pt;}
.xb{left:183.474000pt;}
.x3d{left:187.974728pt;}
.x69{left:192.842406pt;}
.x75{left:193.798176pt;}
.x65{left:194.905863pt;}
.x30{left:197.379462pt;}
.x74{left:198.945984pt;}
.x5f{left:204.672696pt;}
.x63{left:206.454921pt;}
.x4a{left:210.561966pt;}
.x73{left:211.640288pt;}
.x66{left:218.577838pt;}
.x44{left:224.357478pt;}
.x5a{left:225.566400pt;}
.x72{left:226.667328pt;}
.x11{left:227.669120pt;}
.x46{left:231.347018pt;}
.x67{left:233.335680pt;}
.x76{left:240.879872pt;}
.x61{left:242.016136pt;}
.x70{left:243.951961pt;}
.x40{left:246.271543pt;}
.x68{left:247.317662pt;}
.x48{left:248.386101pt;}
.x85{left:249.537393pt;}
.x87{left:254.666667pt;}
.x62{left:256.107371pt;}
.x53{left:263.382386pt;}
.x14{left:270.316133pt;}
.x2b{left:271.982400pt;}
.x42{left:273.267375pt;}
.x3e{left:278.923162pt;}
.x41{left:282.856888pt;}
.x6d{left:305.218344pt;}
.x6e{left:315.936481pt;}
.x22{left:329.733467pt;}
.xa{left:333.231440pt;}
.x6f{left:336.020560pt;}
.x98{left:340.000000pt;}
.x4b{left:342.293736pt;}
.x5e{left:344.102639pt;}
.x7{left:358.110133pt;}
.x45{left:360.180784pt;}
.x83{left:361.783057pt;}
.x4{left:362.803333pt;}
.x52{left:365.719018pt;}
.x3c{left:370.074191pt;}
.x54{left:373.482207pt;}
.x51{left:378.010735pt;}
.xd{left:381.569813pt;}
.x37{left:388.000000pt;}
.x1{left:392.000000pt;}
.x71{left:396.746560pt;}
.x55{left:401.513280pt;}
.x95{left:405.333333pt;}
.x8a{left:438.666667pt;}
.x13{left:452.596160pt;}
.x8b{left:476.000000pt;}
.x20{left:502.682240pt;}
.x8e{left:542.666667pt;}
.x39{left:548.685760pt;}
.x21{left:575.085120pt;}
.x80{left:586.972160pt;}
.x4c{left:594.962880pt;}
.x1e{left:596.173440pt;}
.x86{left:623.720960pt;}
.x38{left:641.312000pt;}
.x6b{left:657.280000pt;}
.x6a{left:680.213120pt;}
.x7f{left:681.280000pt;}
}




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