
    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_2ff8ecd68060adda8c518d04.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight: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_3998d1e882dc7ecec23c714d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight: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_9329f917cc031e636c6c8174.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight: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_2b8f780565f72322b610d64e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight: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_d646c8e341a51d7821e81298.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight: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_ffd88c50f6c2bbfa9b544fea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight: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_985bd0a4df41c36e839cb1bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight: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_dcc05e8f3221aecbd71c051e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight: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_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.281250;font-style:normal;font-weight: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_ab41703f5a46fb4c44b44be2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight: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_c2429f1b1cfdecdd5a5f8bc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight: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_67145283075bfb2bc9764507.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight: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_bc01009414876897c32f9f4b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;font-style:normal;font-weight: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_abf4bc810b1751b1406ef51c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.364746;font-style:normal;font-weight: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_fc6dc91b1569e1b9cf20ec45.woff2')format("woff");}.fff{font-family:fff;line-height:1.364746;font-style:normal;font-weight: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_5046f07ac7c1ab64d455c9f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight: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_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.281250;font-style:normal;font-weight: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_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.281250;font-style:normal;font-weight: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_3364b9350b39bbd9eeeaefc3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight: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_55bfb0e00a18df58fc7385d8.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight: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_c2ad81e3d89a7bde8519feb7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.364746;font-style:normal;font-weight: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_0b92b14893ca5e0dd4fd0c96.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284180;font-style:normal;font-weight: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_6ec05bf82ab12d5ab2f12305.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.311035;font-style:normal;font-weight: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_ff1ac528ca72e84de48d1d47.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight: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_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.364746;font-style:normal;font-weight: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_364a25c19ee8dad89261dbd5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.281250;font-style:normal;font-weight: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_307ca3a88ec2898d1a4dcc1e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;font-style:normal;font-weight: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_dbd6db6f5e17161ef3e82b68.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284180;font-style:normal;font-weight: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_ee4c614c1e80d38935a5d5db.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight: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_f6e7fa1e02d10e75f06930e1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight: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_f24d0f3151978c52c6d45fbd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight: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_dfd537786e3974a68cfcb281.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight: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_034327c62124b38aac49d7e3.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.364746;font-style:normal;font-weight: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_fa4aba0cdd051c4abe04533e.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.311035;font-style:normal;font-weight: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_097dc875c550f020158a8001.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight: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_7336fb4600078e56e300b336.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight: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_1d81cf4803ecb83fa4d9030a.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.364746;font-style:normal;font-weight: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_83f34d61d7a558f47fb7a89d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight: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_bffd6a8bdd60b7ff59df21b8.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight: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_006d838174e7dce671509433.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.284180;font-style:normal;font-weight: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_d31754b214b33d0aa9ea66d6.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.432129;font-style:normal;font-weight: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_3eb27629a40a6cd414a80cf2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.364746;font-style:normal;font-weight: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_d7e0d5b9c3f71b56d0e88cb5.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight: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_f0dee056d3f7f468ce6794d6.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight: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_98e9c473a0b5c80fae6b6bbe.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.364746;font-style:normal;font-weight: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_f4940aa1da44051661f4a937.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.432129;font-style:normal;font-weight: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_d36417a2efc30ceb7ebef71c.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.311035;font-style:normal;font-weight: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_d31754b214b33d0aa9ea66d6.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2d{transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093434,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.101145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101145,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102713,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.108209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108209,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120370,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.125862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125862,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134058,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156780,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189024,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190476,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204819,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205224,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207031,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209184,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210084,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210317,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212687,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218254,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219697,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220149,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.221631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221631,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222656,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223404,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.225904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225904,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226636,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227612,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229592,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230159,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230469,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231343,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.231928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231928,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234615,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238281,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238806,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238971,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242308,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242424,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242537,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244526,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244898,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245968,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246154,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246212,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.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.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253906,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253968,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255319,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257576,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257692,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257812,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259146,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259434,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265873,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266129,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269531,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270161,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271277,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289683,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292683,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292929,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294444,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.297980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297980,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303571,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306122,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306701,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.308081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308081,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308673,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311688,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.313131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313131,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.315657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315657,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320370,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330357,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331522,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369565,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407143,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448529,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.513359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513359,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672043,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(1.913043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.913043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.913043,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-30.236400px;}
.v2{vertical-align:-17.276940px;}
.v1{vertical-align:-7.193850px;}
.v4{vertical-align:-4.324260px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-13.713375px;}
.ls28{letter-spacing:-13.007190px;}
.ls40{letter-spacing:-11.253585px;}
.lsb6{letter-spacing:-9.003750px;}
.ls71{letter-spacing:-8.246700px;}
.ls56{letter-spacing:-7.497735px;}
.ls33{letter-spacing:-6.894300px;}
.ls4f{letter-spacing:-6.747300px;}
.ls97{letter-spacing:-6.093750px;}
.lsb{letter-spacing:-5.447625px;}
.ls68{letter-spacing:-5.067600px;}
.ls76{letter-spacing:-4.694400px;}
.ls5c{letter-spacing:-4.499625px;}
.ls65{letter-spacing:-4.498200px;}
.ls27{letter-spacing:-3.828615px;}
.ls6d{letter-spacing:-3.788250px;}
.lsc5{letter-spacing:-3.786008px;}
.ls4e{letter-spacing:-3.747765px;}
.ls14{letter-spacing:-3.064950px;}
.lsb1{letter-spacing:-3.061275px;}
.lsc7{letter-spacing:-3.029400px;}
.ls7b{letter-spacing:-2.998800px;}
.ls8f{letter-spacing:-2.997638px;}
.ls12{letter-spacing:-2.794500px;}
.ls58{letter-spacing:-2.517818px;}
.ls9a{letter-spacing:-2.507325px;}
.ls9b{letter-spacing:-2.482500px;}
.ls2d{letter-spacing:-2.401200px;}
.ls11{letter-spacing:-2.300550px;}
.ls66{letter-spacing:-2.272500px;}
.lsc1{letter-spacing:-2.271308px;}
.ls50{letter-spacing:-2.248365px;}
.ls59{letter-spacing:-1.836765px;}
.ls1c{letter-spacing:-1.834028px;}
.ls9c{letter-spacing:-1.826550px;}
.ls2b{letter-spacing:-1.807200px;}
.lscb{letter-spacing:-1.744200px;}
.ls6b{letter-spacing:-1.713600px;}
.ls53{letter-spacing:-1.574100px;}
.ls6a{letter-spacing:-1.571310px;}
.ls26{letter-spacing:-1.528800px;}
.lsc2{letter-spacing:-1.514700px;}
.lsb0{letter-spacing:-1.502400px;}
.lsa7{letter-spacing:-1.501988px;}
.ls42{letter-spacing:-1.499400px;}
.ls10{letter-spacing:-1.484700px;}
.ls3e{letter-spacing:-1.277100px;}
.ls1a{letter-spacing:-1.234800px;}
.ls99{letter-spacing:-1.217700px;}
.ls2a{letter-spacing:-1.212015px;}
.ls29{letter-spacing:-1.188743px;}
.lsf{letter-spacing:-0.765135px;}
.ls5d{letter-spacing:-0.764400px;}
.ls31{letter-spacing:-0.763200px;}
.ls90{letter-spacing:-0.760013px;}
.ls67{letter-spacing:-0.757500px;}
.lsc6{letter-spacing:-0.756608px;}
.ls41{letter-spacing:-0.748965px;}
.ls89{letter-spacing:-0.727155px;}
.lsa8{letter-spacing:-0.691253px;}
.ls23{letter-spacing:-0.647325px;}
.ls3f{letter-spacing:-0.631125px;}
.ls13{letter-spacing:-0.546750px;}
.lsa4{letter-spacing:-0.511200px;}
.lsc{letter-spacing:0.000000px;}
.lsca{letter-spacing:0.601425px;}
.ls8b{letter-spacing:0.692385px;}
.ls55{letter-spacing:0.703553px;}
.ls98{letter-spacing:0.706800px;}
.lscd{letter-spacing:0.706988px;}
.ls52{letter-spacing:0.707850px;}
.ls63{letter-spacing:0.716138px;}
.ls86{letter-spacing:0.734400px;}
.ls8a{letter-spacing:0.736628px;}
.ls25{letter-spacing:0.739200px;}
.ls49{letter-spacing:0.748320px;}
.lsae{letter-spacing:0.748800px;}
.ls34{letter-spacing:0.748965px;}
.ls84{letter-spacing:0.750750px;}
.ls73{letter-spacing:0.752250px;}
.ls94{letter-spacing:0.752400px;}
.lsba{letter-spacing:0.756608px;}
.ls60{letter-spacing:0.757500px;}
.ls16{letter-spacing:0.760013px;}
.ls8c{letter-spacing:0.762300px;}
.ls30{letter-spacing:0.763200px;}
.ls8{letter-spacing:0.765135px;}
.ls6c{letter-spacing:0.771705px;}
.ls7a{letter-spacing:0.775125px;}
.ls1{letter-spacing:0.776100px;}
.ls83{letter-spacing:0.783398px;}
.ls37{letter-spacing:0.787050px;}
.ls69{letter-spacing:0.801120px;}
.lsb8{letter-spacing:0.815850px;}
.ls9d{letter-spacing:0.828548px;}
.ls77{letter-spacing:0.840000px;}
.ls96{letter-spacing:0.854250px;}
.ls91{letter-spacing:0.873600px;}
.ls8e{letter-spacing:0.879375px;}
.lsaf{letter-spacing:0.914550px;}
.ls4d{letter-spacing:0.915900px;}
.ls4c{letter-spacing:1.431675px;}
.ls22{letter-spacing:1.445250px;}
.ls5e{letter-spacing:1.455773px;}
.ls5a{letter-spacing:1.468800px;}
.lsc8{letter-spacing:1.469925px;}
.ls1e{letter-spacing:1.478880px;}
.ls3c{letter-spacing:1.498125px;}
.ls35{letter-spacing:1.499400px;}
.lsd1{letter-spacing:1.499850px;}
.lse{letter-spacing:1.500600px;}
.ls51{letter-spacing:1.500750px;}
.ls79{letter-spacing:1.501200px;}
.lsbe{letter-spacing:1.501988px;}
.ls64{letter-spacing:1.502400px;}
.lsbb{letter-spacing:1.514700px;}
.ls62{letter-spacing:1.515000px;}
.ls32{letter-spacing:1.525875px;}
.ls21{letter-spacing:1.526400px;}
.ls6{letter-spacing:1.528800px;}
.ls54{letter-spacing:1.549350px;}
.ls93{letter-spacing:1.550250px;}
.ls5{letter-spacing:1.553693px;}
.ls5b{letter-spacing:1.566000px;}
.lsa3{letter-spacing:1.566675px;}
.ls47{letter-spacing:1.574100px;}
.ls2f{letter-spacing:1.574880px;}
.lsce{letter-spacing:1.595025px;}
.lsb2{letter-spacing:1.596375px;}
.ls85{letter-spacing:1.598850px;}
.ls5f{letter-spacing:1.599488px;}
.lsb4{letter-spacing:1.623075px;}
.lsa6{letter-spacing:1.648703px;}
.ls70{letter-spacing:1.733625px;}
.ls87{letter-spacing:1.829603px;}
.ls36{letter-spacing:2.248365px;}
.ls15{letter-spacing:2.251515px;}
.lsa1{letter-spacing:2.251680px;}
.lsbd{letter-spacing:2.271308px;}
.ls61{letter-spacing:2.272500px;}
.ls7d{letter-spacing:2.286863px;}
.ls7{letter-spacing:2.300550px;}
.ls19{letter-spacing:2.301600px;}
.ls78{letter-spacing:2.306865px;}
.ls20{letter-spacing:2.323200px;}
.ls3{letter-spacing:2.326808px;}
.ls92{letter-spacing:2.343750px;}
.lsb3{letter-spacing:2.351175px;}
.ls82{letter-spacing:2.353245px;}
.ls39{letter-spacing:2.356695px;}
.ls4a{letter-spacing:2.361120px;}
.lsc0{letter-spacing:2.369318px;}
.lsb7{letter-spacing:2.401200px;}
.ls43{letter-spacing:2.414250px;}
.lsb9{letter-spacing:2.442825px;}
.ls8d{letter-spacing:2.455560px;}
.lsaa{letter-spacing:2.471798px;}
.lscc{letter-spacing:2.550000px;}
.ls48{letter-spacing:2.552700px;}
.ls45{letter-spacing:2.579850px;}
.lsab{letter-spacing:2.673878px;}
.lsad{letter-spacing:2.702700px;}
.ls4b{letter-spacing:2.753025px;}
.ls44{letter-spacing:2.778750px;}
.lsb5{letter-spacing:2.953125px;}
.lscf{letter-spacing:2.997638px;}
.ls3d{letter-spacing:2.998800px;}
.lsa0{letter-spacing:3.000000px;}
.lsbc{letter-spacing:3.029400px;}
.ls88{letter-spacing:3.046875px;}
.ls2e{letter-spacing:3.050400px;}
.ls9{letter-spacing:3.064950px;}
.ls2{letter-spacing:3.104400px;}
.lsac{letter-spacing:3.114450px;}
.ls80{letter-spacing:3.136050px;}
.lsc9{letter-spacing:3.151575px;}
.lsa5{letter-spacing:3.223500px;}
.lsbf{letter-spacing:3.225000px;}
.ls95{letter-spacing:3.253920px;}
.ls1f{letter-spacing:3.312000px;}
.lsa2{letter-spacing:3.334568px;}
.ls3a{letter-spacing:3.747765px;}
.ls81{letter-spacing:3.806888px;}
.lsa{letter-spacing:3.828615px;}
.ls0{letter-spacing:3.880500px;}
.ls2c{letter-spacing:3.906750px;}
.lsc3{letter-spacing:3.935925px;}
.ls3b{letter-spacing:4.498200px;}
.ls6f{letter-spacing:4.526400px;}
.ls6e{letter-spacing:4.584195px;}
.ls17{letter-spacing:4.593750px;}
.lsd0{letter-spacing:4.618080px;}
.lsd{letter-spacing:4.671525px;}
.ls46{letter-spacing:4.712400px;}
.lsc4{letter-spacing:4.725473px;}
.lsa9{letter-spacing:5.060175px;}
.ls7f{letter-spacing:5.247900px;}
.ls38{letter-spacing:5.499450px;}
.ls75{letter-spacing:5.997600px;}
.ls57{letter-spacing:6.747300px;}
.ls1b{letter-spacing:6.894300px;}
.ls74{letter-spacing:7.497735px;}
.ls4{letter-spacing:7.774433px;}
.ls7e{letter-spacing:8.246700px;}
.ls9e{letter-spacing:8.273775px;}
.ls18{letter-spacing:8.422365px;}
.ls72{letter-spacing:8.895525px;}
.ls1d{letter-spacing:12.587775px;}
.ls7c{letter-spacing:16.760250px;}
.ls9f{letter-spacing:17.250450px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._4f{margin-left:-266.841750px;}
._52{margin-left:-212.437605px;}
._1c{margin-left:-117.276600px;}
._37{margin-left:-115.159800px;}
._39{margin-left:-113.288197px;}
._1e{margin-left:-111.722280px;}
._50{margin-left:-109.811835px;}
._1d{margin-left:-102.268215px;}
._4b{margin-left:-101.010465px;}
._24{margin-left:-99.815018px;}
._9{margin-left:-97.975500px;}
._46{margin-left:-96.512902px;}
._25{margin-left:-95.241413px;}
._3e{margin-left:-93.159712px;}
._36{margin-left:-90.412350px;}
._1a{margin-left:-88.173128px;}
._3f{margin-left:-86.861288px;}
._40{margin-left:-84.385988px;}
._3b{margin-left:-81.285757px;}
._3a{margin-left:-73.972650px;}
._4a{margin-left:-71.598615px;}
._43{margin-left:-68.493915px;}
._48{margin-left:-66.672300px;}
._32{margin-left:-61.722720px;}
._12{margin-left:-55.589543px;}
._2d{margin-left:-54.064395px;}
._38{margin-left:-52.490902px;}
._23{margin-left:-51.384810px;}
._11{margin-left:-49.789477px;}
._22{margin-left:-47.907300px;}
._29{margin-left:-46.795297px;}
._18{margin-left:-44.990190px;}
._26{margin-left:-43.474995px;}
._2e{margin-left:-41.557418px;}
._2a{margin-left:-39.992085px;}
._1b{margin-left:-37.548232px;}
._1f{margin-left:-34.137270px;}
._30{margin-left:-33.001500px;}
._3c{margin-left:-30.858450px;}
._34{margin-left:-29.086155px;}
._49{margin-left:-24.742305px;}
._31{margin-left:-21.010957px;}
._55{margin-left:-18.242250px;}
._5{margin-left:-15.860797px;}
._4e{margin-left:-14.607623px;}
._35{margin-left:-12.839715px;}
._13{margin-left:-11.502750px;}
._28{margin-left:-10.065502px;}
._4{margin-left:-7.911742px;}
._7{margin-left:-6.084750px;}
._1{margin-left:-4.328250px;}
._6{margin-left:-2.693963px;}
._8{margin-left:-1.008472px;}
._a{width:1.111567px;}
._b{width:2.177122px;}
._c{width:3.269100px;}
._2{width:4.389443px;}
._3{width:5.884927px;}
._d{width:7.139055px;}
._e{width:8.239035px;}
._15{width:9.469297px;}
._f{width:10.987215px;}
._14{width:12.815557px;}
._3d{width:14.028202px;}
._16{width:15.196373px;}
._0{width:16.342875px;}
._10{width:17.704433px;}
._41{width:18.749850px;}
._17{width:21.528150px;}
._53{width:22.583438px;}
._2c{width:24.943402px;}
._33{width:27.546998px;}
._4d{width:34.395338px;}
._19{width:38.994637px;}
._45{width:41.424600px;}
._20{width:43.341480px;}
._27{width:45.511935px;}
._54{width:54.421065px;}
._2f{width:69.406785px;}
._51{width:72.861405px;}
._21{width:74.994697px;}
._4c{width:79.415670px;}
._2b{width:110.041575px;}
._44{width:377.651513px;}
._42{width:723.331305px;}
._47{width:812.998635px;}
.fc0{color:transparent;}
.fs2c{font-size:17.250000px;}
.fs19{font-size:21.000000px;}
.fs13{font-size:23.250000px;}
.fs18{font-size:24.750000px;}
.fs26{font-size:25.500000px;}
.fs37{font-size:26.250000px;}
.fs25{font-size:27.000000px;}
.fs31{font-size:29.250000px;}
.fs29{font-size:30.750000px;}
.fs27{font-size:33.750000px;}
.fs17{font-size:34.500000px;}
.fsb{font-size:35.250000px;}
.fs11{font-size:36.000000px;}
.fs2a{font-size:36.750000px;}
.fs1f{font-size:37.500000px;}
.fs3d{font-size:38.250000px;}
.fs39{font-size:39.000000px;}
.fs38{font-size:39.750000px;}
.fs3a{font-size:40.500000px;}
.fs3c{font-size:42.750000px;}
.fs1d{font-size:45.750000px;}
.fs1c{font-size:46.500000px;}
.fsf{font-size:47.250000px;}
.fsc{font-size:48.000000px;}
.fse{font-size:48.750000px;}
.fs20{font-size:49.500000px;}
.fs21{font-size:50.250000px;}
.fs28{font-size:51.000000px;}
.fs4{font-size:51.750000px;}
.fs22{font-size:53.250000px;}
.fs1b{font-size:54.000000px;}
.fs1e{font-size:55.500000px;}
.fsd{font-size:57.750000px;}
.fs3b{font-size:60.324660px;}
.fs3{font-size:61.500000px;}
.fs32{font-size:62.250000px;}
.fs23{font-size:63.750000px;}
.fs36{font-size:65.250000px;}
.fsa{font-size:66.000000px;}
.fs2b{font-size:67.500000px;}
.fs6{font-size:69.000000px;}
.fs12{font-size:69.750000px;}
.fs24{font-size:71.250000px;}
.fs1a{font-size:72.000000px;}
.fs9{font-size:72.750000px;}
.fs2{font-size:73.500000px;}
.fs8{font-size:74.250000px;}
.fs5{font-size:75.000000px;}
.fs34{font-size:75.750000px;}
.fs10{font-size:76.500000px;}
.fs35{font-size:80.250000px;}
.fs2f{font-size:84.000000px;}
.fs15{font-size:88.500000px;}
.fs2d{font-size:89.250000px;}
.fs30{font-size:96.750000px;}
.fs16{font-size:98.250000px;}
.fs1{font-size:99.750000px;}
.fs14{font-size:101.250000px;}
.fs7{font-size:102.750000px;}
.fs33{font-size:105.750000px;}
.fs2e{font-size:108.750000px;}
.fs0{font-size:149.250000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:78.118897px;}
.yb5{bottom:78.839929px;}
.y10b{bottom:79.920600px;}
.y10a{bottom:79.920675px;}
.y22{bottom:81.360038px;}
.y87{bottom:90.719565px;}
.y86{bottom:90.720229px;}
.ydb{bottom:99.000248px;}
.yb4{bottom:100.079591px;}
.y109{bottom:100.440038px;}
.y21{bottom:102.599700px;}
.y20{bottom:102.603491px;}
.y56{bottom:106.198867px;}
.y85{bottom:111.959891px;}
.y12d{bottom:118.440139px;}
.y12e{bottom:119.159850px;}
.yda{bottom:120.239910px;}
.yb3{bottom:120.960941px;}
.y107{bottom:121.679400px;}
.y108{bottom:121.679700px;}
.y1f{bottom:123.843154px;}
.y55{bottom:127.080218px;}
.y84{bottom:132.839404px;}
.y12c{bottom:139.679801px;}
.yd9{bottom:141.479389px;}
.yb2{bottom:141.840454px;}
.y106{bottom:142.560750px;}
.y1e{bottom:144.362516px;}
.y54{bottom:147.959914px;}
.ye7{bottom:148.679700px;}
.y83{bottom:153.719100px;}
.y12b{bottom:160.559314px;}
.yd8{bottom:162.359085px;}
.yb1{bottom:162.720150px;}
.y105{bottom:163.440135px;}
.ye6{bottom:164.519685px;}
.y1d{bottom:165.602179px;}
.y53{bottom:169.199393px;}
.y12a{bottom:181.439010px;}
.yd7{bottom:183.240435px;}
.yb0{bottom:183.599880px;}
.y104{bottom:183.959497px;}
.y1c{bottom:186.481875px;}
.y52{bottom:190.079089px;}
.y82{bottom:190.799565px;}
.y129{bottom:202.320360px;}
.yaf{bottom:204.479576px;}
.y103{bottom:205.199160px;}
.y1b{bottom:207.001238px;}
.y51{bottom:210.958785px;}
.yd6{bottom:220.319250px;}
.yd5{bottom:220.320427px;}
.y128{bottom:222.839722px;}
.yae{bottom:225.359273px;}
.y102{bottom:226.438822px;}
.ye5{bottom:228.239250px;}
.y1a{bottom:228.240900px;}
.y19{bottom:228.242516px;}
.y50{bottom:231.840135px;}
.y4f{bottom:241.918950px;}
.y126{bottom:244.078976px;}
.y127{bottom:244.079385px;}
.y81{bottom:244.080337px;}
.yad{bottom:246.240623px;}
.y101{bottom:246.599873px;}
.yab{bottom:247.680150px;}
.y18{bottom:249.122029px;}
.y4e{bottom:252.358635px;}
.y4d{bottom:254.519100px;}
.y80{bottom:264.599700px;}
.y125{bottom:264.960326px;}
.yac{bottom:267.480285px;}
.yff{bottom:267.838076px;}
.y100{bottom:267.839535px;}
.y17{bottom:270.001725px;}
.yd4{bottom:273.240428px;}
.y4c{bottom:273.598939px;}
.y124{bottom:285.839839px;}
.yfe{bottom:288.719426px;}
.y16{bottom:291.241387px;}
.yd3{bottom:294.120124px;}
.y4b{bottom:294.478635px;}
.y4a{bottom:294.479438px;}
.y7e{bottom:302.039385px;}
.ya8{bottom:304.560750px;}
.y123{bottom:306.719535px;}
.yfd{bottom:309.598939px;}
.y7f{bottom:309.600150px;}
.ye4{bottom:309.959385px;}
.yaa{bottom:309.961050px;}
.y15{bottom:311.760750px;}
.y14{bottom:311.761226px;}
.yd2{bottom:315.001474px;}
.y49{bottom:315.719100px;}
.y48{bottom:315.719887px;}
.y7d{bottom:316.439235px;}
.ya9{bottom:316.800135px;}
.ya7{bottom:325.081035px;}
.y122{bottom:327.598088px;}
.y7c{bottom:327.960000px;}
.yfc{bottom:330.478635px;}
.y13{bottom:332.640923px;}
.yd1{bottom:335.881170px;}
.y47{bottom:336.239250px;}
.ya6{bottom:342.361515px;}
.y121{bottom:348.479438px;}
.yfb{bottom:351.359985px;}
.y12{bottom:353.880585px;}
.y11{bottom:353.880742px;}
.y7b{bottom:354.959839px;}
.yd0{bottom:356.760866px;}
.ya5{bottom:357.120435px;}
.ye3{bottom:362.159850px;}
.y120{bottom:369.719100px;}
.y11f{bottom:369.719441px;}
.yfa{bottom:372.599647px;}
.y46{bottom:373.319850px;}
.ya4{bottom:374.040000px;}
.y10{bottom:374.760439px;}
.y7a{bottom:375.839535px;}
.ycf{bottom:378.000345px;}
.ye2{bottom:378.360900px;}
.y79{bottom:381.960000px;}
.ya3{bottom:385.920000px;}
.y11e{bottom:390.600791px;}
.yf9{bottom:393.480997px;}
.ye1{bottom:393.840135px;}
.yf{bottom:396.000101px;}
.y75{bottom:396.719100px;}
.y77{bottom:398.520315px;}
.y78{bottom:398.879565px;}
.yce{bottom:398.880041px;}
.ya2{bottom:399.240420px;}
.y9f{bottom:399.601320px;}
.y9e{bottom:401.039985px;}
.y45{bottom:402.478635px;}
.ya1{bottom:405.360900px;}
.y76{bottom:407.340135px;}
.y44{bottom:410.039385px;}
.ya0{bottom:410.041035px;}
.y11d{bottom:411.480487px;}
.yf8{bottom:414.360510px;}
.y74{bottom:415.439670px;}
.y43{bottom:415.798920px;}
.y9d{bottom:415.800570px;}
.ye{bottom:416.879797px;}
.y73{bottom:417.599287px;}
.ycd{bottom:420.119704px;}
.y9c{bottom:420.120135px;}
.ydf{bottom:420.840041px;}
.ye0{bottom:420.840135px;}
.y42{bottom:426.599670px;}
.y11c{bottom:432.720150px;}
.yf7{bottom:435.600172px;}
.yde{bottom:436.680135px;}
.yd{bottom:437.760964px;}
.y72{bottom:438.838950px;}
.ycc{bottom:441.000004px;}
.y9b{bottom:443.159820px;}
.y41{bottom:444.959385px;}
.y40{bottom:447.840135px;}
.yf6{bottom:456.479685px;}
.y71{bottom:457.920600px;}
.yc{bottom:459.000626px;}
.y70{bottom:459.720150px;}
.y9a{bottom:462.241515px;}
.y3f{bottom:467.279250px;}
.y3e{bottom:468.719565px;}
.y11b{bottom:469.798920px;}
.yf5{bottom:477.359381px;}
.yca{bottom:478.438489px;}
.ycb{bottom:478.439250px;}
.y99{bottom:478.440900px;}
.yb{bottom:480.240289px;}
.y6e{bottom:480.960570px;}
.y6f{bottom:482.760135px;}
.y3d{bottom:483.119385px;}
.y98{bottom:483.480285px;}
.y3b{bottom:489.599070px;}
.y3a{bottom:489.599873px;}
.y3c{bottom:491.039385px;}
.y6d{bottom:495.719565px;}
.y142{bottom:500.399820px;}
.ya{bottom:501.119985px;}
.y9{bottom:501.121545px;}
.y6a{bottom:501.840135px;}
.y96{bottom:504.000600px;}
.y97{bottom:504.361545px;}
.y6c{bottom:506.879520px;}
.y39{bottom:510.839535px;}
.y6b{bottom:513.359250px;}
.yf4{bottom:514.440315px;}
.yf3{bottom:514.440900px;}
.y95{bottom:519.840585px;}
.y141{bottom:520.919816px;}
.y8{bottom:521.640907px;}
.y11a{bottom:521.999400px;}
.y68{bottom:523.080274px;}
.y119{bottom:523.080465px;}
.yc9{bottom:531.718639px;}
.y37{bottom:531.719100px;}
.y69{bottom:533.879520px;}
.y38{bottom:534.238770px;}
.y94{bottom:541.440315px;}
.y140{bottom:542.160885px;}
.y7{bottom:542.880570px;}
.y6{bottom:542.881241px;}
.y67{bottom:543.959970px;}
.y117{bottom:543.960641px;}
.y118{bottom:545.039385px;}
.y36{bottom:550.798920px;}
.y35{bottom:552.598530px;}
.yc8{bottom:552.599989px;}
.y34{bottom:563.039985px;}
.y5{bottom:564.120904px;}
.y116{bottom:565.200304px;}
.y66{bottom:565.200435px;}
.yf2{bottom:567.360900px;}
.y13f{bottom:570.600720px;}
.y32{bottom:573.479378px;}
.yc7{bottom:573.479685px;}
.y33{bottom:573.838950px;}
.y93{bottom:577.441320px;}
.y13e{bottom:583.560285px;}
.y65{bottom:584.280435px;}
.y92{bottom:584.641335px;}
.y4{bottom:585.000600px;}
.y13d{bottom:585.359850px;}
.y64{bottom:585.360191px;}
.y115{bottom:586.080000px;}
.y31{bottom:594.359074px;}
.y91{bottom:594.361245px;}
.yc6{bottom:594.720150px;}
.yc5{bottom:594.720908px;}
.yf0{bottom:604.800210px;}
.yf1{bottom:604.800570px;}
.y13c{bottom:604.801035px;}
.y63{bottom:606.960187px;}
.y113{bottom:607.320154px;}
.y114{bottom:607.679670px;}
.y2f{bottom:615.237986px;}
.y30{bottom:615.238770px;}
.y90{bottom:615.240941px;}
.yc4{bottom:615.960570px;}
.yc3{bottom:615.960784px;}
.y13b{bottom:625.680135px;}
.y13a{bottom:625.680401px;}
.y62{bottom:628.199850px;}
.y61{bottom:628.200592px;}
.y2e{bottom:636.119336px;}
.y8f{bottom:636.120637px;}
.yc2{bottom:636.840480px;}
.y139{bottom:646.921470px;}
.y112{bottom:648.720150px;}
.y111{bottom:649.439992px;}
.y60{bottom:649.440255px;}
.y2d{bottom:657.358815px;}
.y8e{bottom:657.360300px;}
.y8d{bottom:657.361207px;}
.yc1{bottom:657.720176px;}
.yef{bottom:658.080360px;}
.y138{bottom:667.800570px;}
.y110{bottom:670.319689px;}
.y5e{bottom:670.319820px;}
.y8c{bottom:677.880570px;}
.y2c{bottom:678.240165px;}
.yc0{bottom:678.959839px;}
.yee{bottom:678.960056px;}
.y5f{bottom:679.680135px;}
.y137{bottom:688.679670px;}
.y10f{bottom:691.198073px;}
.y5c{bottom:691.199385px;}
.y136{bottom:695.159370px;}
.y5d{bottom:696.240420px;}
.y2b{bottom:699.119861px;}
.ybf{bottom:699.839535px;}
.yed{bottom:699.839753px;}
.ybe{bottom:699.840337px;}
.y135{bottom:709.199850px;}
.y134{bottom:710.999400px;}
.y5a{bottom:711.719520px;}
.y10e{bottom:712.079423px;}
.y5b{bottom:713.159820px;}
.y8b{bottom:714.961035px;}
.y2a{bottom:719.999558px;}
.yec{bottom:720.721103px;}
.ybd{bottom:721.080000px;}
.ydd{bottom:721.800105px;}
.y133{bottom:730.799653px;}
.y59{bottom:732.960772px;}
.y10d{bottom:733.319085px;}
.y3{bottom:738.360255px;}
.y29{bottom:741.239220px;}
.yeb{bottom:741.600615px;}
.ybb{bottom:741.960799px;}
.ybc{bottom:742.320285px;}
.y28{bottom:750.599670px;}
.y132{bottom:750.960570px;}
.y131{bottom:753.119385px;}
.y58{bottom:754.200435px;}
.y2{bottom:759.240371px;}
.y27{bottom:760.319235px;}
.yea{bottom:762.480311px;}
.yba{bottom:763.200461px;}
.y26{bottom:764.640150px;}
.y8a{bottom:768.961125px;}
.y130{bottom:772.919490px;}
.ye9{bottom:783.719974px;}
.yb9{bottom:784.080158px;}
.y89{bottom:789.480487px;}
.y10c{bottom:791.640105px;}
.y57{bottom:791.999355px;}
.y25{bottom:794.159820px;}
.y24{bottom:799.199340px;}
.y1{bottom:800.280390px;}
.ye8{bottom:804.599670px;}
.yb8{bottom:805.319820px;}
.y12f{bottom:810.000000px;}
.y88{bottom:810.720150px;}
.yb7{bottom:824.399865px;}
.y23{bottom:826.558590px;}
.yb6{bottom:849.600135px;}
.h39{height:16.921509px;}
.h45{height:17.991211px;}
.h20{height:20.600098px;}
.h18{height:23.431641px;}
.h2f{height:24.249023px;}
.h2d{height:24.459961px;}
.h1f{height:24.943359px;}
.h31{height:25.201172px;}
.h4d{height:27.377930px;}
.h30{height:28.160156px;}
.h40{height:28.907227px;}
.h34{height:30.164429px;}
.h49{height:30.389648px;}
.h10{height:34.595947px;}
.h32{height:35.200195px;}
.h1e{height:35.982422px;}
.h4e{height:36.764648px;}
.h16{height:37.546875px;}
.h28{height:37.792969px;}
.h35{height:38.329102px;}
.h4f{height:38.993042px;}
.h3b{height:39.111328px;}
.h56{height:39.893555px;}
.h51{height:40.025391px;}
.h50{height:40.675781px;}
.h54{height:41.458008px;}
.h53{height:42.249023px;}
.h1b{height:46.350220px;}
.h24{height:47.715820px;}
.h23{height:48.498047px;}
.h14{height:49.280273px;}
.h11{height:50.062500px;}
.h13{height:50.844727px;}
.h55{height:51.398438px;}
.h29{height:51.626953px;}
.h2a{height:52.409180px;}
.h2b{height:52.625977px;}
.h33{height:53.191406px;}
.h7{height:53.973633px;}
.h22{height:56.320312px;}
.h12{height:56.650269px;}
.h27{height:57.884766px;}
.h3c{height:59.381263px;}
.h2c{height:60.231445px;}
.h52{height:62.916735px;}
.h5{height:64.142578px;}
.h42{height:64.924805px;}
.h41{height:66.489258px;}
.hf{height:68.835938px;}
.h38{height:70.400391px;}
.h9{height:71.964844px;}
.h17{height:72.747070px;}
.h2e{height:74.311523px;}
.h21{height:75.093750px;}
.he{height:75.875977px;}
.h4{height:76.658203px;}
.h6{height:76.658938px;}
.h4b{height:76.664038px;}
.h1a{height:77.378503px;}
.hd{height:77.440430px;}
.h8{height:78.222656px;}
.h4a{height:79.004883px;}
.h15{height:79.787109px;}
.h4c{height:80.876953px;}
.h3e{height:87.609375px;}
.h1c{height:89.191406px;}
.h3a{height:89.947266px;}
.hc{height:100.793335px;}
.h3f{height:100.907227px;}
.h1d{height:102.471680px;}
.h46{height:103.736206px;}
.h3{height:104.036133px;}
.h19{height:105.600586px;}
.h3d{height:113.422852px;}
.h2{height:155.663086px;}
.h26{height:897.750000px;}
.h25{height:897.838500px;}
.h44{height:901.500000px;}
.h43{height:901.798500px;}
.h36{height:902.160000px;}
.h37{height:902.250000px;}
.h48{height:903.000000px;}
.h47{height:903.240000px;}
.ha{height:903.598500px;}
.hb{height:903.750000px;}
.h1{height:904.500000px;}
.h0{height:904.680000px;}
.w2{width:1151.998500px;}
.w3{width:1152.000000px;}
.w0{width:1157.758500px;}
.w1{width:1158.000000px;}
.x0{left:0.000000px;}
.x3c{left:44.639700px;}
.x3f{left:45.722089px;}
.xac{left:47.157698px;}
.x4{left:48.237540px;}
.x1{left:50.040000px;}
.x3e{left:62.279250px;}
.x33{left:63.358665px;}
.x13{left:64.798950px;}
.xe{left:66.237120px;}
.x3{left:67.318800px;}
.x40{left:70.199415px;}
.x3d{left:72.359850px;}
.x22{left:77.758500px;}
.x19{left:79.198785px;}
.x6e{left:81.000000px;}
.x9d{left:82.079400px;}
.x8e{left:83.158785px;}
.x99{left:84.599100px;}
.xcf{left:86.039400px;}
.xc6{left:87.838950px;}
.xbe{left:102.599700px;}
.x23{left:107.279850px;}
.x5{left:111.239850px;}
.x3b{left:114.118815px;}
.x34{left:124.558665px;}
.x71{left:129.238785px;}
.x1a{left:131.399250px;}
.x89{left:133.918950px;}
.x92{left:136.438665px;}
.x8f{left:138.958350px;}
.x24{left:140.398665px;}
.x72{left:146.878350px;}
.x5d{left:147.959400px;}
.x8a{left:149.038950px;}
.x94{left:150.479250px;}
.x9a{left:151.558665px;}
.x1b{left:152.639700px;}
.x35{left:153.719100px;}
.xc3{left:154.798515px;}
.x6d{left:155.879565px;}
.x93{left:158.040000px;}
.x41{left:159.478665px;}
.x8b{left:164.158785px;}
.xc8{left:165.599100px;}
.x70{left:167.759565px;}
.x87{left:168.838950px;}
.x36{left:169.918350px;}
.xc4{left:170.999400px;}
.x6{left:172.439715px;}
.x5e{left:176.038950px;}
.x8c{left:178.199415px;}
.xd0{left:179.639700px;}
.x9b{left:181.080000px;}
.xcc{left:182.159415px;}
.x88{left:183.958950px;}
.x95{left:190.799565px;}
.x37{left:191.878950px;}
.x25{left:199.439685px;}
.xcd{left:200.878350px;}
.x38{left:204.838515px;}
.x8d{left:206.639700px;}
.x1c{left:209.159385px;}
.xc5{left:213.839535px;}
.x9c{left:216.000000px;}
.x42{left:225.719535px;}
.xc9{left:228.239250px;}
.xd3{left:231.479235px;}
.x9e{left:234.359850px;}
.x73{left:235.439250px;}
.x90{left:237.238785px;}
.x1d{left:240.478635px;}
.xd4{left:241.559685px;}
.x43{left:245.519685px;}
.x96{left:248.398635px;}
.x81{left:252.358635px;}
.x39{left:256.318800px;}
.x1e{left:260.998950px;}
.xd5{left:269.279850px;}
.x82{left:270.718500px;}
.x44{left:281.878350px;}
.x97{left:285.838515px;}
.xce{left:288.719100px;}
.x91{left:299.519685px;}
.x54{left:303.838950px;}
.x3a{left:306.719535px;}
.xc7{left:309.959385px;}
.x55{left:319.319850px;}
.x98{left:322.559685px;}
.x7{left:328.319250px;}
.x45{left:348.839535px;}
.xb{left:366.838515px;}
.x18{left:373.679100px;}
.xc{left:381.958350px;}
.x8{left:389.519070px;}
.xd{left:396.719100px;}
.x9f{left:403.918950px;}
.x14{left:405.718500px;}
.x6a{left:406.799565px;}
.x67{left:407.877000px;}
.xa4{left:420.838530px;}
.xa0{left:422.281271px;}
.x1f{left:424.439250px;}
.x66{left:426.238770px;}
.xc2{left:427.679070px;}
.x15{left:433.438665px;}
.x6f{left:443.519070px;}
.x6b{left:464.759535px;}
.x7f{left:480.958920px;}
.xad{left:483.478635px;}
.xa9{left:485.279850px;}
.x74{left:490.678530px;}
.xaa{left:495.719565px;}
.xa5{left:498.959385px;}
.xae{left:501.838530px;}
.xab{left:506.518620px;}
.x2a{left:508.319820px;}
.xa1{left:509.758530px;}
.xa6{left:515.158770px;}
.x2b{left:520.918350px;}
.x6c{left:531.719100px;}
.x80{left:541.438620px;}
.x7d{left:549.719565px;}
.x7e{left:564.839535px;}
.x68{left:568.438620px;}
.x16{left:573.479685px;}
.x9{left:579.959385px;}
.x69{left:583.558635px;}
.x11{left:587.518620px;}
.xa2{left:617.399235px;}
.xa3{left:638.278800px;}
.xa{left:642.958920px;}
.x12{left:649.438620px;}
.x17{left:653.759535px;}
.x51{left:673.559685px;}
.xf{left:681.479685px;}
.x10{left:696.958920px;}
.xd1{left:714.598530px;}
.xca{left:720.359850px;}
.x26{left:737.999355px;}
.x2c{left:749.159370px;}
.xcb{left:751.319820px;}
.x2d{left:767.878320px;}
.xd2{left:776.518620px;}
.x2{left:783.000000px;}
.x27{left:799.199340px;}
.x5f{left:801.359805px;}
.xb2{left:802.798560px;}
.x78{left:804.238770px;}
.x4c{left:813.239865px;}
.x46{left:814.319280px;}
.x60{left:816.118740px;}
.x79{left:818.999355px;}
.xb3{left:821.159820px;}
.xb9{left:822.598575px;}
.x83{left:823.679715px;}
.x5a{left:849.239220px;}
.x61{left:861.839535px;}
.x56{left:863.639100px;}
.x47{left:864.718500px;}
.xba{left:867.958275px;}
.xb4{left:870.479640px;}
.xbf{left:872.638545px;}
.xbb{left:874.078770px;}
.xaf{left:875.878320px;}
.x62{left:879.838530px;}
.x57{left:881.639655px;}
.x7a{left:885.599670px;}
.x48{left:887.399235px;}
.xb5{left:888.478635px;}
.x84{left:890.279850px;}
.xb0{left:893.158815px;}
.x63{left:895.678530px;}
.x20{left:901.798920px;}
.x76{left:903.239220px;}
.x4d{left:904.679715px;}
.xbc{left:907.919490px;}
.x64{left:909.719055px;}
.x2e{left:912.958920px;}
.x7b{left:915.478635px;}
.x85{left:920.519715px;}
.xbd{left:921.599115px;}
.x2f{left:923.398590px;}
.xa8{left:929.159820px;}
.x49{left:930.239220px;}
.x65{left:938.159370px;}
.x5b{left:939.958920px;}
.xb6{left:941.399235px;}
.x7c{left:943.918950px;}
.x4e{left:947.878965px;}
.x86{left:948.958275px;}
.xb1{left:952.918305px;}
.x75{left:960.119940px;}
.x21{left:964.798560px;}
.xb7{left:966.599670px;}
.xc0{left:968.758575px;}
.x58{left:971.639100px;}
.x4a{left:973.799565px;}
.xb8{left:976.319190px;}
.x77{left:977.398590px;}
.xc1{left:978.479640px;}
.x4f{left:981.358605px;}
.xa7{left:986.038875px;}
.x5c{left:1001.878965px;}
.x50{left:1009.078770px;}
.x59{left:1027.799565px;}
.x4b{left:1041.119940px;}
.x30{left:1055.878965px;}
.x31{left:1070.998905px;}
.x32{left:1091.519070px;}
.x52{left:1134.359250px;}
.x53{left:1135.438665px;}
.x28{left:1136.878875px;}
.x29{left:1137.958275px;}
@media print{
.v3{vertical-align:-26.876800pt;}
.v2{vertical-align:-15.357280pt;}
.v1{vertical-align:-6.394533pt;}
.v4{vertical-align:-3.843787pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-12.189667pt;}
.ls28{letter-spacing:-11.561947pt;}
.ls40{letter-spacing:-10.003187pt;}
.lsb6{letter-spacing:-8.003333pt;}
.ls71{letter-spacing:-7.330400pt;}
.ls56{letter-spacing:-6.664653pt;}
.ls33{letter-spacing:-6.128267pt;}
.ls4f{letter-spacing:-5.997600pt;}
.ls97{letter-spacing:-5.416667pt;}
.lsb{letter-spacing:-4.842333pt;}
.ls68{letter-spacing:-4.504533pt;}
.ls76{letter-spacing:-4.172800pt;}
.ls5c{letter-spacing:-3.999667pt;}
.ls65{letter-spacing:-3.998400pt;}
.ls27{letter-spacing:-3.403213pt;}
.ls6d{letter-spacing:-3.367333pt;}
.lsc5{letter-spacing:-3.365340pt;}
.ls4e{letter-spacing:-3.331347pt;}
.ls14{letter-spacing:-2.724400pt;}
.lsb1{letter-spacing:-2.721133pt;}
.lsc7{letter-spacing:-2.692800pt;}
.ls7b{letter-spacing:-2.665600pt;}
.ls8f{letter-spacing:-2.664567pt;}
.ls12{letter-spacing:-2.484000pt;}
.ls58{letter-spacing:-2.238060pt;}
.ls9a{letter-spacing:-2.228733pt;}
.ls9b{letter-spacing:-2.206667pt;}
.ls2d{letter-spacing:-2.134400pt;}
.ls11{letter-spacing:-2.044933pt;}
.ls66{letter-spacing:-2.020000pt;}
.lsc1{letter-spacing:-2.018940pt;}
.ls50{letter-spacing:-1.998547pt;}
.ls59{letter-spacing:-1.632680pt;}
.ls1c{letter-spacing:-1.630247pt;}
.ls9c{letter-spacing:-1.623600pt;}
.ls2b{letter-spacing:-1.606400pt;}
.lscb{letter-spacing:-1.550400pt;}
.ls6b{letter-spacing:-1.523200pt;}
.ls53{letter-spacing:-1.399200pt;}
.ls6a{letter-spacing:-1.396720pt;}
.ls26{letter-spacing:-1.358933pt;}
.lsc2{letter-spacing:-1.346400pt;}
.lsb0{letter-spacing:-1.335467pt;}
.lsa7{letter-spacing:-1.335100pt;}
.ls42{letter-spacing:-1.332800pt;}
.ls10{letter-spacing:-1.319733pt;}
.ls3e{letter-spacing:-1.135200pt;}
.ls1a{letter-spacing:-1.097600pt;}
.ls99{letter-spacing:-1.082400pt;}
.ls2a{letter-spacing:-1.077347pt;}
.ls29{letter-spacing:-1.056660pt;}
.lsf{letter-spacing:-0.680120pt;}
.ls5d{letter-spacing:-0.679467pt;}
.ls31{letter-spacing:-0.678400pt;}
.ls90{letter-spacing:-0.675567pt;}
.ls67{letter-spacing:-0.673333pt;}
.lsc6{letter-spacing:-0.672540pt;}
.ls41{letter-spacing:-0.665747pt;}
.ls89{letter-spacing:-0.646360pt;}
.lsa8{letter-spacing:-0.614447pt;}
.ls23{letter-spacing:-0.575400pt;}
.ls3f{letter-spacing:-0.561000pt;}
.ls13{letter-spacing:-0.486000pt;}
.lsa4{letter-spacing:-0.454400pt;}
.lsc{letter-spacing:0.000000pt;}
.lsca{letter-spacing:0.534600pt;}
.ls8b{letter-spacing:0.615453pt;}
.ls55{letter-spacing:0.625380pt;}
.ls98{letter-spacing:0.628267pt;}
.lscd{letter-spacing:0.628433pt;}
.ls52{letter-spacing:0.629200pt;}
.ls63{letter-spacing:0.636567pt;}
.ls86{letter-spacing:0.652800pt;}
.ls8a{letter-spacing:0.654780pt;}
.ls25{letter-spacing:0.657067pt;}
.ls49{letter-spacing:0.665173pt;}
.lsae{letter-spacing:0.665600pt;}
.ls34{letter-spacing:0.665747pt;}
.ls84{letter-spacing:0.667333pt;}
.ls73{letter-spacing:0.668667pt;}
.ls94{letter-spacing:0.668800pt;}
.lsba{letter-spacing:0.672540pt;}
.ls60{letter-spacing:0.673333pt;}
.ls16{letter-spacing:0.675567pt;}
.ls8c{letter-spacing:0.677600pt;}
.ls30{letter-spacing:0.678400pt;}
.ls8{letter-spacing:0.680120pt;}
.ls6c{letter-spacing:0.685960pt;}
.ls7a{letter-spacing:0.689000pt;}
.ls1{letter-spacing:0.689867pt;}
.ls83{letter-spacing:0.696353pt;}
.ls37{letter-spacing:0.699600pt;}
.ls69{letter-spacing:0.712107pt;}
.lsb8{letter-spacing:0.725200pt;}
.ls9d{letter-spacing:0.736487pt;}
.ls77{letter-spacing:0.746667pt;}
.ls96{letter-spacing:0.759333pt;}
.ls91{letter-spacing:0.776533pt;}
.ls8e{letter-spacing:0.781667pt;}
.lsaf{letter-spacing:0.812933pt;}
.ls4d{letter-spacing:0.814133pt;}
.ls4c{letter-spacing:1.272600pt;}
.ls22{letter-spacing:1.284667pt;}
.ls5e{letter-spacing:1.294020pt;}
.ls5a{letter-spacing:1.305600pt;}
.lsc8{letter-spacing:1.306600pt;}
.ls1e{letter-spacing:1.314560pt;}
.ls3c{letter-spacing:1.331667pt;}
.ls35{letter-spacing:1.332800pt;}
.lsd1{letter-spacing:1.333200pt;}
.lse{letter-spacing:1.333867pt;}
.ls51{letter-spacing:1.334000pt;}
.ls79{letter-spacing:1.334400pt;}
.lsbe{letter-spacing:1.335100pt;}
.ls64{letter-spacing:1.335467pt;}
.lsbb{letter-spacing:1.346400pt;}
.ls62{letter-spacing:1.346667pt;}
.ls32{letter-spacing:1.356333pt;}
.ls21{letter-spacing:1.356800pt;}
.ls6{letter-spacing:1.358933pt;}
.ls54{letter-spacing:1.377200pt;}
.ls93{letter-spacing:1.378000pt;}
.ls5{letter-spacing:1.381060pt;}
.ls5b{letter-spacing:1.392000pt;}
.lsa3{letter-spacing:1.392600pt;}
.ls47{letter-spacing:1.399200pt;}
.ls2f{letter-spacing:1.399893pt;}
.lsce{letter-spacing:1.417800pt;}
.lsb2{letter-spacing:1.419000pt;}
.ls85{letter-spacing:1.421200pt;}
.ls5f{letter-spacing:1.421767pt;}
.lsb4{letter-spacing:1.442733pt;}
.lsa6{letter-spacing:1.465513pt;}
.ls70{letter-spacing:1.541000pt;}
.ls87{letter-spacing:1.626313pt;}
.ls36{letter-spacing:1.998547pt;}
.ls15{letter-spacing:2.001347pt;}
.lsa1{letter-spacing:2.001493pt;}
.lsbd{letter-spacing:2.018940pt;}
.ls61{letter-spacing:2.020000pt;}
.ls7d{letter-spacing:2.032767pt;}
.ls7{letter-spacing:2.044933pt;}
.ls19{letter-spacing:2.045867pt;}
.ls78{letter-spacing:2.050547pt;}
.ls20{letter-spacing:2.065067pt;}
.ls3{letter-spacing:2.068273pt;}
.ls92{letter-spacing:2.083333pt;}
.lsb3{letter-spacing:2.089933pt;}
.ls82{letter-spacing:2.091773pt;}
.ls39{letter-spacing:2.094840pt;}
.ls4a{letter-spacing:2.098773pt;}
.lsc0{letter-spacing:2.106060pt;}
.lsb7{letter-spacing:2.134400pt;}
.ls43{letter-spacing:2.146000pt;}
.lsb9{letter-spacing:2.171400pt;}
.ls8d{letter-spacing:2.182720pt;}
.lsaa{letter-spacing:2.197153pt;}
.lscc{letter-spacing:2.266667pt;}
.ls48{letter-spacing:2.269067pt;}
.ls45{letter-spacing:2.293200pt;}
.lsab{letter-spacing:2.376780pt;}
.lsad{letter-spacing:2.402400pt;}
.ls4b{letter-spacing:2.447133pt;}
.ls44{letter-spacing:2.470000pt;}
.lsb5{letter-spacing:2.625000pt;}
.lscf{letter-spacing:2.664567pt;}
.ls3d{letter-spacing:2.665600pt;}
.lsa0{letter-spacing:2.666667pt;}
.lsbc{letter-spacing:2.692800pt;}
.ls88{letter-spacing:2.708333pt;}
.ls2e{letter-spacing:2.711467pt;}
.ls9{letter-spacing:2.724400pt;}
.ls2{letter-spacing:2.759467pt;}
.lsac{letter-spacing:2.768400pt;}
.ls80{letter-spacing:2.787600pt;}
.lsc9{letter-spacing:2.801400pt;}
.lsa5{letter-spacing:2.865333pt;}
.lsbf{letter-spacing:2.866667pt;}
.ls95{letter-spacing:2.892373pt;}
.ls1f{letter-spacing:2.944000pt;}
.lsa2{letter-spacing:2.964060pt;}
.ls3a{letter-spacing:3.331347pt;}
.ls81{letter-spacing:3.383900pt;}
.lsa{letter-spacing:3.403213pt;}
.ls0{letter-spacing:3.449333pt;}
.ls2c{letter-spacing:3.472667pt;}
.lsc3{letter-spacing:3.498600pt;}
.ls3b{letter-spacing:3.998400pt;}
.ls6f{letter-spacing:4.023467pt;}
.ls6e{letter-spacing:4.074840pt;}
.ls17{letter-spacing:4.083333pt;}
.lsd0{letter-spacing:4.104960pt;}
.lsd{letter-spacing:4.152467pt;}
.ls46{letter-spacing:4.188800pt;}
.lsc4{letter-spacing:4.200420pt;}
.lsa9{letter-spacing:4.497933pt;}
.ls7f{letter-spacing:4.664800pt;}
.ls38{letter-spacing:4.888400pt;}
.ls75{letter-spacing:5.331200pt;}
.ls57{letter-spacing:5.997600pt;}
.ls1b{letter-spacing:6.128267pt;}
.ls74{letter-spacing:6.664653pt;}
.ls4{letter-spacing:6.910607pt;}
.ls7e{letter-spacing:7.330400pt;}
.ls9e{letter-spacing:7.354467pt;}
.ls18{letter-spacing:7.486547pt;}
.ls72{letter-spacing:7.907133pt;}
.ls1d{letter-spacing:11.189133pt;}
.ls7c{letter-spacing:14.898000pt;}
.ls9f{letter-spacing:15.333733pt;}
.ws0{word-spacing:0.000000pt;}
._4f{margin-left:-237.192667pt;}
._52{margin-left:-188.833427pt;}
._1c{margin-left:-104.245867pt;}
._37{margin-left:-102.364267pt;}
._39{margin-left:-100.700620pt;}
._1e{margin-left:-99.308693pt;}
._50{margin-left:-97.610520pt;}
._1d{margin-left:-90.905080pt;}
._4b{margin-left:-89.787080pt;}
._24{margin-left:-88.724460pt;}
._9{margin-left:-87.089333pt;}
._46{margin-left:-85.789247pt;}
._25{margin-left:-84.659033pt;}
._3e{margin-left:-82.808633pt;}
._36{margin-left:-80.366533pt;}
._1a{margin-left:-78.376113pt;}
._3f{margin-left:-77.210033pt;}
._40{margin-left:-75.009767pt;}
._3b{margin-left:-72.254007pt;}
._3a{margin-left:-65.753467pt;}
._4a{margin-left:-63.643213pt;}
._43{margin-left:-60.883480pt;}
._48{margin-left:-59.264267pt;}
._32{margin-left:-54.864640pt;}
._12{margin-left:-49.412927pt;}
._2d{margin-left:-48.057240pt;}
._38{margin-left:-46.658580pt;}
._23{margin-left:-45.675387pt;}
._11{margin-left:-44.257313pt;}
._22{margin-left:-42.584267pt;}
._29{margin-left:-41.595820pt;}
._18{margin-left:-39.991280pt;}
._26{margin-left:-38.644440pt;}
._2e{margin-left:-36.939927pt;}
._2a{margin-left:-35.548520pt;}
._1b{margin-left:-33.376207pt;}
._1f{margin-left:-30.344240pt;}
._30{margin-left:-29.334667pt;}
._3c{margin-left:-27.429733pt;}
._34{margin-left:-25.854360pt;}
._49{margin-left:-21.993160pt;}
._31{margin-left:-18.676407pt;}
._55{margin-left:-16.215333pt;}
._5{margin-left:-14.098487pt;}
._4e{margin-left:-12.984553pt;}
._35{margin-left:-11.413080pt;}
._13{margin-left:-10.224667pt;}
._28{margin-left:-8.947113pt;}
._4{margin-left:-7.032660pt;}
._7{margin-left:-5.408667pt;}
._1{margin-left:-3.847333pt;}
._6{margin-left:-2.394633pt;}
._8{margin-left:-0.896420pt;}
._a{width:0.988060pt;}
._b{width:1.935220pt;}
._c{width:2.905867pt;}
._2{width:3.901727pt;}
._3{width:5.231047pt;}
._d{width:6.345827pt;}
._e{width:7.323587pt;}
._15{width:8.417153pt;}
._f{width:9.766413pt;}
._14{width:11.391607pt;}
._3d{width:12.469513pt;}
._16{width:13.507887pt;}
._0{width:14.527000pt;}
._10{width:15.737273pt;}
._41{width:16.666533pt;}
._17{width:19.136133pt;}
._53{width:20.074167pt;}
._2c{width:22.171913pt;}
._33{width:24.486220pt;}
._4d{width:30.573633pt;}
._19{width:34.661900pt;}
._45{width:36.821867pt;}
._20{width:38.525760pt;}
._27{width:40.455053pt;}
._54{width:48.374280pt;}
._2f{width:61.694920pt;}
._51{width:64.765693pt;}
._21{width:66.661953pt;}
._4c{width:70.591707pt;}
._2b{width:97.814733pt;}
._44{width:335.690233pt;}
._42{width:642.961160pt;}
._47{width:722.665453pt;}
.fs2c{font-size:15.333333pt;}
.fs19{font-size:18.666667pt;}
.fs13{font-size:20.666667pt;}
.fs18{font-size:22.000000pt;}
.fs26{font-size:22.666667pt;}
.fs37{font-size:23.333333pt;}
.fs25{font-size:24.000000pt;}
.fs31{font-size:26.000000pt;}
.fs29{font-size:27.333333pt;}
.fs27{font-size:30.000000pt;}
.fs17{font-size:30.666667pt;}
.fsb{font-size:31.333333pt;}
.fs11{font-size:32.000000pt;}
.fs2a{font-size:32.666667pt;}
.fs1f{font-size:33.333333pt;}
.fs3d{font-size:34.000000pt;}
.fs39{font-size:34.666667pt;}
.fs38{font-size:35.333333pt;}
.fs3a{font-size:36.000000pt;}
.fs3c{font-size:38.000000pt;}
.fs1d{font-size:40.666667pt;}
.fs1c{font-size:41.333333pt;}
.fsf{font-size:42.000000pt;}
.fsc{font-size:42.666667pt;}
.fse{font-size:43.333333pt;}
.fs20{font-size:44.000000pt;}
.fs21{font-size:44.666667pt;}
.fs28{font-size:45.333333pt;}
.fs4{font-size:46.000000pt;}
.fs22{font-size:47.333333pt;}
.fs1b{font-size:48.000000pt;}
.fs1e{font-size:49.333333pt;}
.fsd{font-size:51.333333pt;}
.fs3b{font-size:53.621920pt;}
.fs3{font-size:54.666667pt;}
.fs32{font-size:55.333333pt;}
.fs23{font-size:56.666667pt;}
.fs36{font-size:58.000000pt;}
.fsa{font-size:58.666667pt;}
.fs2b{font-size:60.000000pt;}
.fs6{font-size:61.333333pt;}
.fs12{font-size:62.000000pt;}
.fs24{font-size:63.333333pt;}
.fs1a{font-size:64.000000pt;}
.fs9{font-size:64.666667pt;}
.fs2{font-size:65.333333pt;}
.fs8{font-size:66.000000pt;}
.fs5{font-size:66.666667pt;}
.fs34{font-size:67.333333pt;}
.fs10{font-size:68.000000pt;}
.fs35{font-size:71.333333pt;}
.fs2f{font-size:74.666667pt;}
.fs15{font-size:78.666667pt;}
.fs2d{font-size:79.333333pt;}
.fs30{font-size:86.000000pt;}
.fs16{font-size:87.333333pt;}
.fs1{font-size:88.666667pt;}
.fs14{font-size:90.000000pt;}
.fs7{font-size:91.333333pt;}
.fs33{font-size:94.000000pt;}
.fs2e{font-size:96.666667pt;}
.fs0{font-size:132.666667pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:69.439020pt;}
.yb5{bottom:70.079937pt;}
.y10b{bottom:71.040533pt;}
.y10a{bottom:71.040600pt;}
.y22{bottom:72.320033pt;}
.y87{bottom:80.639613pt;}
.y86{bottom:80.640203pt;}
.ydb{bottom:88.000220pt;}
.yb4{bottom:88.959637pt;}
.y109{bottom:89.280033pt;}
.y21{bottom:91.199733pt;}
.y20{bottom:91.203103pt;}
.y56{bottom:94.398993pt;}
.y85{bottom:99.519903pt;}
.y12d{bottom:105.280123pt;}
.y12e{bottom:105.919867pt;}
.yda{bottom:106.879920pt;}
.yb3{bottom:107.520837pt;}
.y107{bottom:108.159467pt;}
.y108{bottom:108.159733pt;}
.y1f{bottom:110.082803pt;}
.y55{bottom:112.960193pt;}
.y84{bottom:118.079470pt;}
.y12c{bottom:124.159823pt;}
.yd9{bottom:125.759457pt;}
.yb2{bottom:126.080403pt;}
.y106{bottom:126.720667pt;}
.y1e{bottom:128.322237pt;}
.y54{bottom:131.519923pt;}
.ye7{bottom:132.159733pt;}
.y83{bottom:136.639200pt;}
.y12b{bottom:142.719390pt;}
.yd8{bottom:144.319187pt;}
.yb1{bottom:144.640133pt;}
.y105{bottom:145.280120pt;}
.ye6{bottom:146.239720pt;}
.y1d{bottom:147.201937pt;}
.y53{bottom:150.399460pt;}
.y12a{bottom:161.279120pt;}
.yd7{bottom:162.880387pt;}
.yb0{bottom:163.199893pt;}
.y104{bottom:163.519553pt;}
.y1c{bottom:165.761667pt;}
.y52{bottom:168.959190pt;}
.y82{bottom:169.599613pt;}
.y129{bottom:179.840320pt;}
.yaf{bottom:181.759623pt;}
.y103{bottom:182.399253pt;}
.y1b{bottom:184.001100pt;}
.y51{bottom:187.518920pt;}
.yd6{bottom:195.839333pt;}
.yd5{bottom:195.840380pt;}
.y128{bottom:198.079753pt;}
.yae{bottom:200.319353pt;}
.y102{bottom:201.278953pt;}
.ye5{bottom:202.879333pt;}
.y1a{bottom:202.880800pt;}
.y19{bottom:202.882237pt;}
.y50{bottom:206.080120pt;}
.y4f{bottom:215.039067pt;}
.y126{bottom:216.959090pt;}
.y127{bottom:216.959453pt;}
.y81{bottom:216.960300pt;}
.yad{bottom:218.880553pt;}
.y101{bottom:219.199887pt;}
.yab{bottom:220.160133pt;}
.y18{bottom:221.441803pt;}
.y4e{bottom:224.318787pt;}
.y4d{bottom:226.239200pt;}
.y80{bottom:235.199733pt;}
.y125{bottom:235.520290pt;}
.yac{bottom:237.760253pt;}
.yff{bottom:238.078290pt;}
.y100{bottom:238.079587pt;}
.y17{bottom:240.001533pt;}
.yd4{bottom:242.880380pt;}
.y4c{bottom:243.199057pt;}
.y124{bottom:254.079857pt;}
.yfe{bottom:256.639490pt;}
.y16{bottom:258.881233pt;}
.yd3{bottom:261.440110pt;}
.y4b{bottom:261.758787pt;}
.y4a{bottom:261.759500pt;}
.y7e{bottom:268.479453pt;}
.ya8{bottom:270.720667pt;}
.y123{bottom:272.639587pt;}
.yfd{bottom:275.199057pt;}
.y7f{bottom:275.200133pt;}
.ye4{bottom:275.519453pt;}
.yaa{bottom:275.520933pt;}
.y15{bottom:277.120667pt;}
.y14{bottom:277.121090pt;}
.yd2{bottom:280.001310pt;}
.y49{bottom:280.639200pt;}
.y48{bottom:280.639900pt;}
.y7d{bottom:281.279320pt;}
.ya9{bottom:281.600120pt;}
.ya7{bottom:288.960920pt;}
.y122{bottom:291.198300pt;}
.y7c{bottom:291.520000pt;}
.yfc{bottom:293.758787pt;}
.y13{bottom:295.680820pt;}
.yd1{bottom:298.561040pt;}
.y47{bottom:298.879333pt;}
.ya6{bottom:304.321347pt;}
.y121{bottom:309.759500pt;}
.yfb{bottom:312.319987pt;}
.y12{bottom:314.560520pt;}
.y11{bottom:314.560660pt;}
.y7b{bottom:315.519857pt;}
.yd0{bottom:317.120770pt;}
.ya5{bottom:317.440387pt;}
.ye3{bottom:321.919867pt;}
.y120{bottom:328.639200pt;}
.y11f{bottom:328.639503pt;}
.yfa{bottom:331.199687pt;}
.y46{bottom:331.839867pt;}
.ya4{bottom:332.480000pt;}
.y10{bottom:333.120390pt;}
.y7a{bottom:334.079587pt;}
.ycf{bottom:336.000307pt;}
.ye2{bottom:336.320800pt;}
.y79{bottom:339.520000pt;}
.ya3{bottom:343.040000pt;}
.y11e{bottom:347.200703pt;}
.yf9{bottom:349.760887pt;}
.ye1{bottom:350.080120pt;}
.yf{bottom:352.000090pt;}
.y75{bottom:352.639200pt;}
.y77{bottom:354.240280pt;}
.y78{bottom:354.559613pt;}
.yce{bottom:354.560037pt;}
.ya2{bottom:354.880373pt;}
.y9f{bottom:355.201173pt;}
.y9e{bottom:356.479987pt;}
.y45{bottom:357.758787pt;}
.ya1{bottom:360.320800pt;}
.y76{bottom:362.080120pt;}
.y44{bottom:364.479453pt;}
.ya0{bottom:364.480920pt;}
.y11d{bottom:365.760433pt;}
.yf8{bottom:368.320453pt;}
.y74{bottom:369.279707pt;}
.y43{bottom:369.599040pt;}
.y9d{bottom:369.600507pt;}
.ye{bottom:370.559820pt;}
.y73{bottom:371.199367pt;}
.ycd{bottom:373.439737pt;}
.y9c{bottom:373.440120pt;}
.ydf{bottom:374.080037pt;}
.ye0{bottom:374.080120pt;}
.y42{bottom:379.199707pt;}
.y11c{bottom:384.640133pt;}
.yf7{bottom:387.200153pt;}
.yde{bottom:388.160120pt;}
.yd{bottom:389.120857pt;}
.y72{bottom:390.079067pt;}
.ycc{bottom:392.000003pt;}
.y9b{bottom:393.919840pt;}
.y41{bottom:395.519453pt;}
.y40{bottom:398.080120pt;}
.yf6{bottom:405.759720pt;}
.y71{bottom:407.040533pt;}
.yc{bottom:408.000557pt;}
.y70{bottom:408.640133pt;}
.y9a{bottom:410.881347pt;}
.y3f{bottom:415.359333pt;}
.y3e{bottom:416.639613pt;}
.y11b{bottom:417.599040pt;}
.yf5{bottom:424.319450pt;}
.yca{bottom:425.278657pt;}
.ycb{bottom:425.279333pt;}
.y99{bottom:425.280800pt;}
.yb{bottom:426.880257pt;}
.y6e{bottom:427.520507pt;}
.y6f{bottom:429.120120pt;}
.y3d{bottom:429.439453pt;}
.y98{bottom:429.760253pt;}
.y3b{bottom:435.199173pt;}
.y3a{bottom:435.199887pt;}
.y3c{bottom:436.479453pt;}
.y6d{bottom:440.639613pt;}
.y142{bottom:444.799840pt;}
.ya{bottom:445.439987pt;}
.y9{bottom:445.441373pt;}
.y6a{bottom:446.080120pt;}
.y96{bottom:448.000533pt;}
.y97{bottom:448.321373pt;}
.y6c{bottom:450.559573pt;}
.y39{bottom:454.079587pt;}
.y6b{bottom:456.319333pt;}
.yf4{bottom:457.280280pt;}
.yf3{bottom:457.280800pt;}
.y95{bottom:462.080520pt;}
.y141{bottom:463.039837pt;}
.y8{bottom:463.680807pt;}
.y11a{bottom:463.999467pt;}
.y68{bottom:464.960243pt;}
.y119{bottom:464.960413pt;}
.yc9{bottom:472.638790pt;}
.y37{bottom:472.639200pt;}
.y69{bottom:474.559573pt;}
.y38{bottom:474.878907pt;}
.y94{bottom:481.280280pt;}
.y140{bottom:481.920787pt;}
.y7{bottom:482.560507pt;}
.y6{bottom:482.561103pt;}
.y67{bottom:483.519973pt;}
.y117{bottom:483.520570pt;}
.y118{bottom:484.479453pt;}
.y36{bottom:489.599040pt;}
.y35{bottom:491.198693pt;}
.yc8{bottom:491.199990pt;}
.y34{bottom:500.479987pt;}
.y5{bottom:501.440803pt;}
.y116{bottom:502.400270pt;}
.y66{bottom:502.400387pt;}
.yf2{bottom:504.320800pt;}
.y13f{bottom:507.200640pt;}
.y32{bottom:509.759447pt;}
.yc7{bottom:509.759720pt;}
.y33{bottom:510.079067pt;}
.y93{bottom:513.281173pt;}
.y13e{bottom:518.720253pt;}
.y65{bottom:519.360387pt;}
.y92{bottom:519.681187pt;}
.y4{bottom:520.000533pt;}
.y13d{bottom:520.319867pt;}
.y64{bottom:520.320170pt;}
.y115{bottom:520.960000pt;}
.y31{bottom:528.319177pt;}
.y91{bottom:528.321107pt;}
.yc6{bottom:528.640133pt;}
.yc5{bottom:528.640807pt;}
.yf0{bottom:537.600187pt;}
.yf1{bottom:537.600507pt;}
.y13c{bottom:537.600920pt;}
.y63{bottom:539.520167pt;}
.y113{bottom:539.840137pt;}
.y114{bottom:540.159707pt;}
.y2f{bottom:546.878210pt;}
.y30{bottom:546.878907pt;}
.y90{bottom:546.880837pt;}
.yc4{bottom:547.520507pt;}
.yc3{bottom:547.520697pt;}
.y13b{bottom:556.160120pt;}
.y13a{bottom:556.160357pt;}
.y62{bottom:558.399867pt;}
.y61{bottom:558.400527pt;}
.y2e{bottom:565.439410pt;}
.y8f{bottom:565.440567pt;}
.yc2{bottom:566.080427pt;}
.y139{bottom:575.041307pt;}
.y112{bottom:576.640133pt;}
.y111{bottom:577.279993pt;}
.y60{bottom:577.280227pt;}
.y2d{bottom:584.318947pt;}
.y8e{bottom:584.320267pt;}
.y8d{bottom:584.321073pt;}
.yc1{bottom:584.640157pt;}
.yef{bottom:584.960320pt;}
.y138{bottom:593.600507pt;}
.y110{bottom:595.839723pt;}
.y5e{bottom:595.839840pt;}
.y8c{bottom:602.560507pt;}
.y2c{bottom:602.880147pt;}
.yc0{bottom:603.519857pt;}
.yee{bottom:603.520050pt;}
.y5f{bottom:604.160120pt;}
.y137{bottom:612.159707pt;}
.y10f{bottom:614.398287pt;}
.y5c{bottom:614.399453pt;}
.y136{bottom:617.919440pt;}
.y5d{bottom:618.880373pt;}
.y2b{bottom:621.439877pt;}
.ybf{bottom:622.079587pt;}
.yed{bottom:622.079780pt;}
.ybe{bottom:622.080300pt;}
.y135{bottom:630.399867pt;}
.y134{bottom:631.999467pt;}
.y5a{bottom:632.639573pt;}
.y10e{bottom:632.959487pt;}
.y5b{bottom:633.919840pt;}
.y8b{bottom:635.520920pt;}
.y2a{bottom:639.999607pt;}
.yec{bottom:640.640980pt;}
.ybd{bottom:640.960000pt;}
.ydd{bottom:641.600093pt;}
.y133{bottom:649.599692pt;}
.y59{bottom:651.520687pt;}
.y10d{bottom:651.839187pt;}
.y3{bottom:656.320227pt;}
.y29{bottom:658.879307pt;}
.yeb{bottom:659.200547pt;}
.ybb{bottom:659.520710pt;}
.ybc{bottom:659.840253pt;}
.y28{bottom:667.199707pt;}
.y132{bottom:667.520507pt;}
.y131{bottom:669.439453pt;}
.y58{bottom:670.400387pt;}
.y2{bottom:674.880330pt;}
.y27{bottom:675.839320pt;}
.yea{bottom:677.760277pt;}
.yba{bottom:678.400410pt;}
.y26{bottom:679.680133pt;}
.y8a{bottom:683.521000pt;}
.y130{bottom:687.039547pt;}
.ye9{bottom:696.639977pt;}
.yb9{bottom:696.960140pt;}
.y89{bottom:701.760433pt;}
.y10c{bottom:703.680093pt;}
.y57{bottom:703.999427pt;}
.y25{bottom:705.919840pt;}
.y24{bottom:710.399413pt;}
.y1{bottom:711.360347pt;}
.ye8{bottom:715.199707pt;}
.yb8{bottom:715.839840pt;}
.y12f{bottom:720.000000pt;}
.y88{bottom:720.640133pt;}
.yb7{bottom:732.799880pt;}
.y23{bottom:734.718747pt;}
.yb6{bottom:755.200120pt;}
.h39{height:15.041341pt;}
.h45{height:15.992187pt;}
.h20{height:18.311198pt;}
.h18{height:20.828125pt;}
.h2f{height:21.554687pt;}
.h2d{height:21.742187pt;}
.h1f{height:22.171875pt;}
.h31{height:22.401042pt;}
.h4d{height:24.335938pt;}
.h30{height:25.031250pt;}
.h40{height:25.695312pt;}
.h34{height:26.812826pt;}
.h49{height:27.013021pt;}
.h10{height:30.751953pt;}
.h32{height:31.289062pt;}
.h1e{height:31.984375pt;}
.h4e{height:32.679688pt;}
.h16{height:33.375000pt;}
.h28{height:33.593750pt;}
.h35{height:34.070312pt;}
.h4f{height:34.660482pt;}
.h3b{height:34.765625pt;}
.h56{height:35.460938pt;}
.h51{height:35.578125pt;}
.h50{height:36.156250pt;}
.h54{height:36.851562pt;}
.h53{height:37.554687pt;}
.h1b{height:41.200195pt;}
.h24{height:42.414062pt;}
.h23{height:43.109375pt;}
.h14{height:43.804688pt;}
.h11{height:44.500000pt;}
.h13{height:45.195312pt;}
.h55{height:45.687500pt;}
.h29{height:45.890625pt;}
.h2a{height:46.585938pt;}
.h2b{height:46.778646pt;}
.h33{height:47.281250pt;}
.h7{height:47.976562pt;}
.h22{height:50.062500pt;}
.h12{height:50.355794pt;}
.h27{height:51.453125pt;}
.h3c{height:52.783345pt;}
.h2c{height:53.539062pt;}
.h52{height:55.925987pt;}
.h5{height:57.015625pt;}
.h42{height:57.710938pt;}
.h41{height:59.101562pt;}
.hf{height:61.187500pt;}
.h38{height:62.578125pt;}
.h9{height:63.968750pt;}
.h17{height:64.664062pt;}
.h2e{height:66.054688pt;}
.h21{height:66.750000pt;}
.he{height:67.445312pt;}
.h4{height:68.140625pt;}
.h6{height:68.141278pt;}
.h4b{height:68.145812pt;}
.h1a{height:68.780892pt;}
.hd{height:68.835938pt;}
.h8{height:69.531250pt;}
.h4a{height:70.226562pt;}
.h15{height:70.921875pt;}
.h4c{height:71.890625pt;}
.h3e{height:77.875000pt;}
.h1c{height:79.281250pt;}
.h3a{height:79.953125pt;}
.hc{height:89.594076pt;}
.h3f{height:89.695312pt;}
.h1d{height:91.085938pt;}
.h46{height:92.209961pt;}
.h3{height:92.476562pt;}
.h19{height:93.867188pt;}
.h3d{height:100.820312pt;}
.h2{height:138.367188pt;}
.h26{height:798.000000pt;}
.h25{height:798.078667pt;}
.h44{height:801.333333pt;}
.h43{height:801.598667pt;}
.h36{height:801.920000pt;}
.h37{height:802.000000pt;}
.h48{height:802.666667pt;}
.h47{height:802.880000pt;}
.ha{height:803.198667pt;}
.hb{height:803.333333pt;}
.h1{height:804.000000pt;}
.h0{height:804.160000pt;}
.w2{width:1023.998667pt;}
.w3{width:1024.000000pt;}
.w0{width:1029.118667pt;}
.w1{width:1029.333333pt;}
.x0{left:0.000000pt;}
.x3c{left:39.679733pt;}
.x3f{left:40.641857pt;}
.xac{left:41.917953pt;}
.x4{left:42.877813pt;}
.x1{left:44.480000pt;}
.x3e{left:55.359333pt;}
.x33{left:56.318813pt;}
.x13{left:57.599067pt;}
.xe{left:58.877440pt;}
.x3{left:59.838933pt;}
.x40{left:62.399480pt;}
.x3d{left:64.319867pt;}
.x22{left:69.118667pt;}
.x19{left:70.398920pt;}
.x6e{left:72.000000pt;}
.x9d{left:72.959467pt;}
.x8e{left:73.918920pt;}
.x99{left:75.199200pt;}
.xcf{left:76.479467pt;}
.xc6{left:78.079067pt;}
.xbe{left:91.199733pt;}
.x23{left:95.359867pt;}
.x5{left:98.879867pt;}
.x3b{left:101.438947pt;}
.x34{left:110.718813pt;}
.x71{left:114.878920pt;}
.x1a{left:116.799333pt;}
.x89{left:119.039067pt;}
.x92{left:121.278813pt;}
.x8f{left:123.518533pt;}
.x24{left:124.798813pt;}
.x72{left:130.558533pt;}
.x5d{left:131.519467pt;}
.x8a{left:132.479067pt;}
.x94{left:133.759333pt;}
.x9a{left:134.718813pt;}
.x1b{left:135.679733pt;}
.x35{left:136.639200pt;}
.xc3{left:137.598680pt;}
.x6d{left:138.559613pt;}
.x93{left:140.480000pt;}
.x41{left:141.758813pt;}
.x8b{left:145.918920pt;}
.xc8{left:147.199200pt;}
.x70{left:149.119613pt;}
.x87{left:150.079067pt;}
.x36{left:151.038533pt;}
.xc4{left:151.999467pt;}
.x6{left:153.279747pt;}
.x5e{left:156.479067pt;}
.x8c{left:158.399480pt;}
.xd0{left:159.679733pt;}
.x9b{left:160.960000pt;}
.xcc{left:161.919480pt;}
.x88{left:163.519067pt;}
.x95{left:169.599613pt;}
.x37{left:170.559067pt;}
.x25{left:177.279720pt;}
.xcd{left:178.558533pt;}
.x38{left:182.078680pt;}
.x8d{left:183.679733pt;}
.x1c{left:185.919453pt;}
.xc5{left:190.079587pt;}
.x9c{left:192.000000pt;}
.x42{left:200.639587pt;}
.xc9{left:202.879333pt;}
.xd3{left:205.759320pt;}
.x9e{left:208.319867pt;}
.x73{left:209.279333pt;}
.x90{left:210.878920pt;}
.x1d{left:213.758787pt;}
.xd4{left:214.719720pt;}
.x43{left:218.239720pt;}
.x96{left:220.798787pt;}
.x81{left:224.318787pt;}
.x39{left:227.838933pt;}
.x1e{left:231.999067pt;}
.xd5{left:239.359867pt;}
.x82{left:240.638667pt;}
.x44{left:250.558533pt;}
.x97{left:254.078680pt;}
.xce{left:256.639200pt;}
.x91{left:266.239720pt;}
.x54{left:270.079067pt;}
.x3a{left:272.639587pt;}
.xc7{left:275.519453pt;}
.x55{left:283.839867pt;}
.x98{left:286.719720pt;}
.x7{left:291.839333pt;}
.x45{left:310.079587pt;}
.xb{left:326.078680pt;}
.x18{left:332.159200pt;}
.xc{left:339.518533pt;}
.x8{left:346.239173pt;}
.xd{left:352.639200pt;}
.x9f{left:359.039067pt;}
.x14{left:360.638667pt;}
.x6a{left:361.599613pt;}
.x67{left:362.557333pt;}
.xa4{left:374.078693pt;}
.xa0{left:375.361130pt;}
.x1f{left:377.279333pt;}
.x66{left:378.878907pt;}
.xc2{left:380.159173pt;}
.x15{left:385.278813pt;}
.x6f{left:394.239173pt;}
.x6b{left:413.119587pt;}
.x7f{left:427.519040pt;}
.xad{left:429.758787pt;}
.xa9{left:431.359867pt;}
.x74{left:436.158693pt;}
.xaa{left:440.639613pt;}
.xa5{left:443.519453pt;}
.xae{left:446.078693pt;}
.xab{left:450.238773pt;}
.x2a{left:451.839840pt;}
.xa1{left:453.118693pt;}
.xa6{left:457.918907pt;}
.x2b{left:463.038533pt;}
.x6c{left:472.639200pt;}
.x80{left:481.278773pt;}
.x7d{left:488.639613pt;}
.x7e{left:502.079587pt;}
.x68{left:505.278773pt;}
.x16{left:509.759720pt;}
.x9{left:515.519453pt;}
.x69{left:518.718787pt;}
.x11{left:522.238773pt;}
.xa2{left:548.799320pt;}
.xa3{left:567.358933pt;}
.xa{left:571.519040pt;}
.x12{left:577.278773pt;}
.x17{left:581.119587pt;}
.x51{left:598.719720pt;}
.xf{left:605.759720pt;}
.x10{left:619.519040pt;}
.xd1{left:635.198693pt;}
.xca{left:640.319867pt;}
.x26{left:655.999427pt;}
.x2c{left:665.919440pt;}
.xcb{left:667.839840pt;}
.x2d{left:682.558507pt;}
.xd2{left:690.238773pt;}
.x2{left:696.000000pt;}
.x27{left:710.399413pt;}
.x5f{left:712.319827pt;}
.xb2{left:713.598720pt;}
.x78{left:714.878907pt;}
.x4c{left:722.879880pt;}
.x46{left:723.839360pt;}
.x60{left:725.438880pt;}
.x79{left:727.999427pt;}
.xb3{left:729.919840pt;}
.xb9{left:731.198733pt;}
.x83{left:732.159747pt;}
.x5a{left:754.879307pt;}
.x61{left:766.079587pt;}
.x56{left:767.679200pt;}
.x47{left:768.638667pt;}
.xba{left:771.518467pt;}
.xb4{left:773.759680pt;}
.xbf{left:775.678707pt;}
.xbb{left:776.958907pt;}
.xaf{left:778.558507pt;}
.x62{left:782.078693pt;}
.x57{left:783.679693pt;}
.x7a{left:787.199707pt;}
.x48{left:788.799320pt;}
.xb5{left:789.758787pt;}
.x84{left:791.359867pt;}
.xb0{left:793.918947pt;}
.x63{left:796.158693pt;}
.x20{left:801.599040pt;}
.x76{left:802.879307pt;}
.x4d{left:804.159747pt;}
.xbc{left:807.039547pt;}
.x64{left:808.639160pt;}
.x2e{left:811.519040pt;}
.x7b{left:813.758787pt;}
.x85{left:818.239747pt;}
.xbd{left:819.199213pt;}
.x2f{left:820.798747pt;}
.xa8{left:825.919840pt;}
.x49{left:826.879307pt;}
.x65{left:833.919440pt;}
.x5b{left:835.519040pt;}
.xb6{left:836.799320pt;}
.x7c{left:839.039067pt;}
.x4e{left:842.559080pt;}
.x86{left:843.518467pt;}
.xb1{left:847.038493pt;}
.x75{left:853.439947pt;}
.x21{left:857.598720pt;}
.xb7{left:859.199707pt;}
.xc0{left:861.118733pt;}
.x58{left:863.679200pt;}
.x4a{left:865.599613pt;}
.xb8{left:867.839280pt;}
.x77{left:868.798747pt;}
.xc1{left:869.759680pt;}
.x4f{left:872.318760pt;}
.xa7{left:876.479000pt;}
.x5c{left:890.559080pt;}
.x50{left:896.958907pt;}
.x59{left:913.599613pt;}
.x4b{left:925.439947pt;}
.x30{left:938.559080pt;}
.x31{left:951.999027pt;}
.x32{left:970.239173pt;}
.x52{left:1008.319333pt;}
.x53{left:1009.278813pt;}
.x28{left:1010.559000pt;}
.x29{left:1011.518467pt;}
}




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