
    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_09e0d4877959074b8b87c3b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight: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_97698c9d6183a1600ee48d88.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight: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_d59cc8cfc61abc7e61bdc32b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4e702a4ed833f1c978a8fd4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;font-style:normal;font-weight: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_aab577105193cfe89696fc77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.525000;font-style:normal;font-weight: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_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight: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_4acf58ce8a1849db5826e8d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;font-style:normal;font-weight: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_3880b18eedaae0132112820f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;font-style:normal;font-weight: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_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4e702a4ed833f1c978a8fd4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904000;font-style:normal;font-weight: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_c372640d990a5888e900f66a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;font-style:normal;font-weight: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_4acf58ce8a1849db5826e8d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.704000;font-style:normal;font-weight: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_ff05300555fbfc76256d0ff9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight: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_304ae00fee2281f71e22574e.woff2')format("woff");}.fff{font-family:fff;line-height:0.773000;font-style:normal;font-weight: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_04c72a1a999b768d20588d69.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.685000;font-style:normal;font-weight: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_d59cc8cfc61abc7e61bdc32b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f83154e5c7e23dfbb1c04cdc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.929000;font-style:normal;font-weight: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_80bc3961f964997df33c9ff9.woff2')format("woff");}.ff13{font-family:ff13;line-height:3.081000;font-style:normal;font-weight: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_2bb297cb5ed240c1c1fdf385.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.704000;font-style:normal;font-weight: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_7732d205aae4e22261bc348f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.729000;font-style:normal;font-weight: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_4551c209678d63e5670dc148.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.908000;font-style:normal;font-weight: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_a9a7aee07dfe0aa677f56191.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909000;font-style:normal;font-weight: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_4ffc5198f4aeef122c09d756.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.441000;font-style:normal;font-weight: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_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.001000;font-style:normal;font-weight: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_390bf72824cff699a1a933da.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.704000;font-style:normal;font-weight: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_ff05300555fbfc76256d0ff9.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.898000;font-style:normal;font-weight: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_4551c209678d63e5670dc148.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.908000;font-style:normal;font-weight: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_7732d205aae4e22261bc348f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.729000;font-style:normal;font-weight: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_a9a7aee07dfe0aa677f56191.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.909000;font-style:normal;font-weight: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_f83154e5c7e23dfbb1c04cdc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.929000;font-style:normal;font-weight: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_d59cc8cfc61abc7e61bdc32b.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_0b7cfbc24a0242c80b6430d2.woff2')format("woff");}.ff22{font-family:ff22;line-height:3.081000;font-style:normal;font-weight: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_bc8d3c15836f7b86afee1c0c.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.689000;font-style:normal;font-weight: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_2bb297cb5ed240c1c1fdf385.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.704000;font-style:normal;font-weight: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_b70113074ecd137b3c832784.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_304ae00fee2281f71e22574e.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.773000;font-style:normal;font-weight: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_4ffc5198f4aeef122c09d756.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.441000;font-style:normal;font-weight: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_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.001000;font-style:normal;font-weight: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_7732d205aae4e22261bc348f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.729000;font-style:normal;font-weight: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_4551c209678d63e5670dc148.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.908000;font-style:normal;font-weight: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_f83154e5c7e23dfbb1c04cdc.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.929000;font-style:normal;font-weight: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_a9a7aee07dfe0aa677f56191.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.909000;font-style:normal;font-weight: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_304ae00fee2281f71e22574e.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.773000;font-style:normal;font-weight: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_bb5e84b88b5dfeeb271418d0.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:3.081000;font-style:normal;font-weight: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_d59cc8cfc61abc7e61bdc32b.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_aab577105193cfe89696fc77.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_4e702a4ed833f1c978a8fd4c.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_7600b5fde4bfd527391bf4e7.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_ff05300555fbfc76256d0ff9.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_e666287949d650944db0c073.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_a9a7aee07dfe0aa677f56191.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_4551c209678d63e5670dc148.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_bc8d3c15836f7b86afee1c0c.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_ff05300555fbfc76256d0ff9.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_b71496c6c23d9d1b1964531f.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_4e702a4ed833f1c978a8fd4c.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_f83154e5c7e23dfbb1c04cdc.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_a9a7aee07dfe0aa677f56191.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_4551c209678d63e5670dc148.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_3c89decda1a108d3c3b33c51.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.520000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_ff05300555fbfc76256d0ff9.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_e67e5ae67f52420cc32dc5bc.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_f83154e5c7e23dfbb1c04cdc.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_7600b5fde4bfd527391bf4e7.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_7d43e3262d217b5b83880aa9.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_4e702a4ed833f1c978a8fd4c.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_390bf72824cff699a1a933da.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_ff05300555fbfc76256d0ff9.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_e67e5ae67f52420cc32dc5bc.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.525000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_2fb9589ee653aa8dece0876c.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_4e702a4ed833f1c978a8fd4c.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_c372640d990a5888e900f66a.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_e66a63fb51f9e9979024f4ab.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_7d43e3262d217b5b83880aa9.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-68.796000px;}
.v5{vertical-align:-62.992176px;}
.v1e{vertical-align:-55.674864px;}
.v22{vertical-align:-52.169760px;}
.v13{vertical-align:-43.581792px;}
.vf{vertical-align:-39.276000px;}
.ve{vertical-align:-28.806000px;}
.v24{vertical-align:-25.326000px;}
.v3{vertical-align:-23.094000px;}
.v14{vertical-align:-18.837792px;}
.v23{vertical-align:-16.511760px;}
.v6{vertical-align:-10.431768px;}
.vb{vertical-align:-7.824000px;}
.v16{vertical-align:-6.000048px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:7.645608px;}
.v15{vertical-align:8.936208px;}
.va{vertical-align:10.464000px;}
.v25{vertical-align:13.242000px;}
.v2{vertical-align:16.883856px;}
.v17{vertical-align:18.115608px;}
.v11{vertical-align:19.418208px;}
.v9{vertical-align:24.060000px;}
.v1{vertical-align:25.326000px;}
.v26{vertical-align:27.409488px;}
.v7{vertical-align:28.806000px;}
.vd{vertical-align:31.494000px;}
.v10{vertical-align:35.652000px;}
.v20{vertical-align:41.577120px;}
.v1c{vertical-align:42.698016px;}
.v19{vertical-align:47.232936px;}
.v12{vertical-align:55.069608px;}
.v1a{vertical-align:73.176000px;}
.v21{vertical-align:84.275136px;}
.v1f{vertical-align:91.958208px;}
.v4{vertical-align:94.954248px;}
.v1b{vertical-align:98.372880px;}
.v1d{vertical-align:139.954608px;}
.vc{vertical-align:175.716000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000288px;}
.ls6{letter-spacing:0.002304px;}
.ls75{letter-spacing:0.004584px;}
.ls37{letter-spacing:0.005232px;}
.ls29{letter-spacing:0.006144px;}
.ls51{letter-spacing:0.006288px;}
.ls9b{letter-spacing:0.006648px;}
.lsa6{letter-spacing:0.007080px;}
.ls57{letter-spacing:0.007296px;}
.ls44{letter-spacing:0.011448px;}
.lsa9{letter-spacing:0.012480px;}
.ls84{letter-spacing:0.012648px;}
.lsac{letter-spacing:0.015312px;}
.ls15{letter-spacing:0.016512px;}
.ls53{letter-spacing:0.018648px;}
.ls4e{letter-spacing:0.019296px;}
.ls31{letter-spacing:0.019920px;}
.ls19{letter-spacing:0.020544px;}
.ls60{letter-spacing:0.022512px;}
.ls63{letter-spacing:0.026544px;}
.ls8f{letter-spacing:0.028848px;}
.ls11{letter-spacing:0.029424px;}
.ls94{letter-spacing:0.029976px;}
.ls95{letter-spacing:0.030240px;}
.ls7d{letter-spacing:0.032736px;}
.ls4d{letter-spacing:0.032760px;}
.ls4c{letter-spacing:0.034272px;}
.ls46{letter-spacing:0.034464px;}
.ls89{letter-spacing:0.037320px;}
.ls97{letter-spacing:0.039696px;}
.ls70{letter-spacing:0.043320px;}
.ls39{letter-spacing:0.043560px;}
.ls1a{letter-spacing:0.043896px;}
.ls56{letter-spacing:0.044760px;}
.ls14{letter-spacing:0.048312px;}
.ls58{letter-spacing:0.050160px;}
.ls92{letter-spacing:0.051096px;}
.ls9c{letter-spacing:0.051696px;}
.ls3b{letter-spacing:0.057096px;}
.ls34{letter-spacing:0.059856px;}
.ls4f{letter-spacing:0.062160px;}
.ls62{letter-spacing:0.062784px;}
.lsa2{letter-spacing:0.063096px;}
.ls25{letter-spacing:0.064368px;}
.ls83{letter-spacing:0.064584px;}
.lsa1{letter-spacing:0.065856px;}
.ls86{letter-spacing:0.069768px;}
.lse{letter-spacing:0.069792px;}
.ls33{letter-spacing:0.070848px;}
.ls2e{letter-spacing:0.072864px;}
.ls69{letter-spacing:0.075024px;}
.ls18{letter-spacing:0.075312px;}
.ls64{letter-spacing:0.087960px;}
.ls9{letter-spacing:0.088752px;}
.ls2f{letter-spacing:0.088872px;}
.ls2b{letter-spacing:0.090072px;}
.ls5c{letter-spacing:0.092688px;}
.ls5e{letter-spacing:0.093960px;}
.ls72{letter-spacing:0.110016px;}
.ls8b{letter-spacing:0.113256px;}
.ls2d{letter-spacing:0.117456px;}
.ls67{letter-spacing:0.121728px;}
.ls87{letter-spacing:0.130440px;}
.ls8d{letter-spacing:0.130560px;}
.ls1b{letter-spacing:0.134256px;}
.ls78{letter-spacing:0.151800px;}
.ls49{letter-spacing:0.160968px;}
.ls20{letter-spacing:0.209304px;}
.ls2{letter-spacing:0.279072px;}
.ls9d{letter-spacing:1.255824px;}
.ls9f{letter-spacing:1.883736px;}
.lsa{letter-spacing:1.953504px;}
.lsa5{letter-spacing:2.581416px;}
.ls6b{letter-spacing:2.744208px;}
.lsa0{letter-spacing:2.885232px;}
.ls99{letter-spacing:2.891232px;}
.ls5a{letter-spacing:2.914128px;}
.ls28{letter-spacing:2.919120px;}
.ls0{letter-spacing:2.920128px;}
.ls91{letter-spacing:2.926128px;}
.ls73{letter-spacing:2.930256px;}
.ls7{letter-spacing:2.933088px;}
.ls8a{letter-spacing:2.934336px;}
.ls6a{letter-spacing:2.936592px;}
.ls71{letter-spacing:2.946576px;}
.ls13{letter-spacing:2.949072px;}
.ls30{letter-spacing:2.954256px;}
.ls5b{letter-spacing:2.960256px;}
.ls2c{letter-spacing:2.966256px;}
.ls3a{letter-spacing:2.972256px;}
.ls6f{letter-spacing:3.627936px;}
.ls4a{letter-spacing:4.152864px;}
.ls45{letter-spacing:4.158864px;}
.ls85{letter-spacing:4.159680px;}
.ls74{letter-spacing:4.171680px;}
.ls7f{letter-spacing:4.255848px;}
.ls26{letter-spacing:4.587216px;}
.ls2a{letter-spacing:5.549664px;}
.ls41{letter-spacing:6.988128px;}
.ls7c{letter-spacing:7.046568px;}
.ls48{letter-spacing:7.465176px;}
.ls43{letter-spacing:7.534944px;}
.lsa7{letter-spacing:7.814016px;}
.ls76{letter-spacing:9.534432px;}
.ls80{letter-spacing:9.554856px;}
.ls50{letter-spacing:9.793584px;}
.ls5f{letter-spacing:9.799584px;}
.ls65{letter-spacing:9.800184px;}
.ls79{letter-spacing:9.805584px;}
.ls90{letter-spacing:9.807072px;}
.ls59{letter-spacing:9.811584px;}
.ls17{letter-spacing:11.651256px;}
.ls27{letter-spacing:11.721024px;}
.ls8{letter-spacing:11.930328px;}
.lsb{letter-spacing:12.279168px;}
.ls7e{letter-spacing:12.822864px;}
.lsf{letter-spacing:15.418728px;}
.lsc{letter-spacing:15.558264px;}
.ls3f{letter-spacing:17.860608px;}
.lsa8{letter-spacing:18.139680px;}
.ls3e{letter-spacing:18.399072px;}
.ls9e{letter-spacing:18.440256px;}
.ls40{letter-spacing:18.820128px;}
.ls77{letter-spacing:19.229520px;}
.ls5{letter-spacing:19.395504px;}
.ls4{letter-spacing:19.465272px;}
.ls7a{letter-spacing:19.662864px;}
.ls82{letter-spacing:20.930400px;}
.ls3{letter-spacing:21.488544px;}
.ls16{letter-spacing:21.603072px;}
.lsd{letter-spacing:21.767616px;}
.ls6c{letter-spacing:22.199232px;}
.lsaa{letter-spacing:22.286544px;}
.ls32{letter-spacing:22.340256px;}
.ls38{letter-spacing:22.346256px;}
.lsa4{letter-spacing:22.744368px;}
.ls24{letter-spacing:23.023440px;}
.ls7b{letter-spacing:23.232744px;}
.lsb0{letter-spacing:23.582544px;}
.ls1c{letter-spacing:23.973216px;}
.ls4b{letter-spacing:25.046712px;}
.ls3d{letter-spacing:25.325784px;}
.ls23{letter-spacing:28.395576px;}
.ls22{letter-spacing:28.465344px;}
.lsad{letter-spacing:29.977536px;}
.ls68{letter-spacing:30.488616px;}
.ls21{letter-spacing:30.837456px;}
.ls1d{letter-spacing:31.674672px;}
.ls1e{letter-spacing:31.744440px;}
.lsab{letter-spacing:31.780128px;}
.ls1f{letter-spacing:32.442120px;}
.ls54{letter-spacing:32.448864px;}
.lsaf{letter-spacing:33.000264px;}
.ls42{letter-spacing:34.046784px;}
.ls47{letter-spacing:34.707072px;}
.ls6d{letter-spacing:36.245232px;}
.lsa3{letter-spacing:38.286864px;}
.ls8c{letter-spacing:38.292864px;}
.ls8e{letter-spacing:38.298864px;}
.ls66{letter-spacing:41.006472px;}
.ls61{letter-spacing:41.007072px;}
.ls52{letter-spacing:47.946864px;}
.ls98{letter-spacing:53.796864px;}
.ls93{letter-spacing:53.802864px;}
.lsae{letter-spacing:54.834480px;}
.ls96{letter-spacing:57.666864px;}
.ls9a{letter-spacing:57.672864px;}
.ls55{letter-spacing:58.116744px;}
.ls6e{letter-spacing:58.186512px;}
.ls5d{letter-spacing:61.083072px;}
.ls35{letter-spacing:71.276256px;}
.ls88{letter-spacing:84.558816px;}
.ls36{letter-spacing:92.233296px;}
.ls81{letter-spacing:98.279520px;}
.ls3c{letter-spacing:827.918256px;}
.ls10{letter-spacing:928.681848px;}
.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;}
}
.ws67{word-spacing:-45.070128px;}
.ws99{word-spacing:-33.070032px;}
.ws44{word-spacing:-19.535040px;}
.ws53{word-spacing:-19.465272px;}
.ws45{word-spacing:-11.790792px;}
.ws74{word-spacing:-11.721024px;}
.ws69{word-spacing:-3.697704px;}
.ws6a{word-spacing:-2.023272px;}
.ws77{word-spacing:-1.953504px;}
.ws32{word-spacing:-0.069768px;}
.ws24{word-spacing:0.000000px;}
.ws5{word-spacing:9.907056px;}
.ws6{word-spacing:10.046592px;}
.ws62{word-spacing:15.418728px;}
.wsb6{word-spacing:15.488496px;}
.ws3d{word-spacing:15.558264px;}
.ws3e{word-spacing:15.628032px;}
.ws64{word-spacing:15.907104px;}
.ws63{word-spacing:16.046640px;}
.wsb{word-spacing:16.255944px;}
.ws0{word-spacing:16.418736px;}
.ws1{word-spacing:16.465248px;}
.ws89{word-spacing:16.535016px;}
.ws9d{word-spacing:16.674552px;}
.ws36{word-spacing:16.744320px;}
.ws18{word-spacing:17.162928px;}
.ws17{word-spacing:17.232696px;}
.ws20{word-spacing:17.442000px;}
.wsb7{word-spacing:17.581536px;}
.ws95{word-spacing:17.651304px;}
.ws9a{word-spacing:17.826480px;}
.ws9e{word-spacing:18.069912px;}
.ws86{word-spacing:18.139680px;}
.wsb8{word-spacing:18.209448px;}
.ws80{word-spacing:18.488520px;}
.wsa3{word-spacing:18.558288px;}
.ws56{word-spacing:18.628056px;}
.wsa{word-spacing:18.767592px;}
.ws31{word-spacing:19.046664px;}
.ws9c{word-spacing:19.116432px;}
.ws51{word-spacing:19.186200px;}
.ws52{word-spacing:19.255968px;}
.ws6d{word-spacing:19.325736px;}
.ws5f{word-spacing:19.395504px;}
.ws25{word-spacing:19.418760px;}
.ws57{word-spacing:19.465272px;}
.wsb3{word-spacing:19.604808px;}
.ws72{word-spacing:19.744344px;}
.ws23{word-spacing:19.883880px;}
.wsa6{word-spacing:20.093184px;}
.ws16{word-spacing:20.162952px;}
.wsa1{word-spacing:20.302488px;}
.ws1c{word-spacing:20.372256px;}
.ws88{word-spacing:20.442024px;}
.ws40{word-spacing:20.511792px;}
.wsa0{word-spacing:20.651328px;}
.ws59{word-spacing:20.790864px;}
.ws58{word-spacing:20.860632px;}
.ws84{word-spacing:21.000168px;}
.ws92{word-spacing:21.069936px;}
.ws8{word-spacing:21.137112px;}
.ws37{word-spacing:21.139704px;}
.ws7{word-spacing:21.200778px;}
.ws91{word-spacing:21.209472px;}
.ws2c{word-spacing:21.279240px;}
.wsb4{word-spacing:21.349008px;}
.ws41{word-spacing:21.418776px;}
.ws15{word-spacing:21.488544px;}
.ws1d{word-spacing:21.558312px;}
.ws2e{word-spacing:21.767616px;}
.wse{word-spacing:22.046688px;}
.ws68{word-spacing:22.057872px;}
.ws1e{word-spacing:22.255992px;}
.ws1f{word-spacing:22.325760px;}
.ws93{word-spacing:22.395528px;}
.ws35{word-spacing:22.465296px;}
.ws8d{word-spacing:22.535064px;}
.ws4d{word-spacing:22.604832px;}
.ws3f{word-spacing:22.674600px;}
.ws12{word-spacing:22.744368px;}
.ws11{word-spacing:22.814136px;}
.wsc{word-spacing:22.883904px;}
.ws4f{word-spacing:22.953672px;}
.ws60{word-spacing:23.023440px;}
.ws50{word-spacing:23.093208px;}
.ws30{word-spacing:23.162976px;}
.ws14{word-spacing:23.511816px;}
.ws85{word-spacing:23.581584px;}
.ws54{word-spacing:23.651352px;}
.ws55{word-spacing:23.721120px;}
.ws97{word-spacing:23.790888px;}
.ws43{word-spacing:23.860656px;}
.wsa5{word-spacing:24.000192px;}
.ws27{word-spacing:24.209496px;}
.wsa7{word-spacing:24.349032px;}
.ws8f{word-spacing:24.558336px;}
.wsb5{word-spacing:24.628104px;}
.ws7c{word-spacing:24.697872px;}
.ws8a{word-spacing:24.837408px;}
.ws7d{word-spacing:24.907176px;}
.wsf{word-spacing:24.976944px;}
.ws82{word-spacing:25.046712px;}
.ws81{word-spacing:25.116480px;}
.wsa4{word-spacing:25.325784px;}
.ws22{word-spacing:25.535088px;}
.ws19{word-spacing:25.674624px;}
.ws2a{word-spacing:25.814160px;}
.ws66{word-spacing:25.953696px;}
.ws65{word-spacing:26.023464px;}
.ws73{word-spacing:26.093232px;}
.ws4{word-spacing:26.163000px;}
.ws26{word-spacing:26.232768px;}
.ws5d{word-spacing:26.302536px;}
.wsa2{word-spacing:26.372304px;}
.ws5e{word-spacing:26.442072px;}
.ws6c{word-spacing:26.511840px;}
.ws6b{word-spacing:26.581608px;}
.ws79{word-spacing:26.721144px;}
.ws78{word-spacing:26.860680px;}
.ws7a{word-spacing:27.000216px;}
.ws7b{word-spacing:27.069984px;}
.ws9b{word-spacing:27.349056px;}
.ws83{word-spacing:27.628128px;}
.ws33{word-spacing:27.697896px;}
.ws34{word-spacing:27.767664px;}
.ws87{word-spacing:27.837432px;}
.ws21{word-spacing:27.907200px;}
.ws96{word-spacing:28.046736px;}
.ws9{word-spacing:28.331370px;}
.ws1b{word-spacing:28.395576px;}
.ws4e{word-spacing:28.535112px;}
.ws28{word-spacing:28.744416px;}
.ws8e{word-spacing:28.814184px;}
.ws29{word-spacing:28.883952px;}
.ws4c{word-spacing:28.953720px;}
.ws5a{word-spacing:29.163024px;}
.ws90{word-spacing:29.302560px;}
.ws61{word-spacing:29.372328px;}
.ws7e{word-spacing:29.581632px;}
.ws2b{word-spacing:30.000240px;}
.ws5c{word-spacing:30.070008px;}
.ws5b{word-spacing:30.139776px;}
.ws10{word-spacing:30.209544px;}
.ws8b{word-spacing:30.488616px;}
.ws3b{word-spacing:30.628152px;}
.ws3c{word-spacing:30.697920px;}
.ws94{word-spacing:30.767688px;}
.ws3a{word-spacing:30.837456px;}
.ws1a{word-spacing:30.976992px;}
.wsaf{word-spacing:31.116528px;}
.wsae{word-spacing:31.256064px;}
.ws9f{word-spacing:31.325832px;}
.ws2{word-spacing:31.396500px;}
.ws3{word-spacing:31.563948px;}
.ws2d{word-spacing:31.604904px;}
.wsa8{word-spacing:31.674672px;}
.ws49{word-spacing:31.744440px;}
.ws48{word-spacing:31.814208px;}
.wsa9{word-spacing:32.581656px;}
.ws70{word-spacing:32.651424px;}
.ws38{word-spacing:32.721192px;}
.ws39{word-spacing:32.790960px;}
.wsb2{word-spacing:32.860728px;}
.ws98{word-spacing:32.930496px;}
.ws2f{word-spacing:33.070032px;}
.ws6f{word-spacing:33.279336px;}
.ws6e{word-spacing:33.418872px;}
.ws71{word-spacing:33.837480px;}
.wsd{word-spacing:34.604928px;}
.wsad{word-spacing:35.651448px;}
.wsab{word-spacing:35.721216px;}
.wsac{word-spacing:36.349128px;}
.wsaa{word-spacing:37.814256px;}
.ws4a{word-spacing:45.837576px;}
.ws4b{word-spacing:46.186416px;}
.wsb1{word-spacing:55.535328px;}
.wsb0{word-spacing:56.651616px;}
.ws42{word-spacing:58.116744px;}
.ws75{word-spacing:58.186512px;}
.ws76{word-spacing:58.465584px;}
.ws47{word-spacing:68.372640px;}
.ws13{word-spacing:78.489000px;}
.ws8c{word-spacing:179.233992px;}
.ws7f{word-spacing:183.420072px;}
.ws46{word-spacing:942.914520px;}
._2{margin-left:-991.152000px;}
._30{margin-left:-34.814232px;}
._2f{margin-left:-33.379200px;}
._25{margin-left:-31.535136px;}
._22{margin-left:-30.349080px;}
._19{margin-left:-28.895580px;}
._6{margin-left:-26.093232px;}
._23{margin-left:-12.488472px;}
._28{margin-left:-11.384544px;}
._9{margin-left:-9.380736px;}
._1{margin-left:-7.992000px;}
._7{margin-left:-6.910872px;}
._4{margin-left:-4.915584px;}
._15{margin-left:-3.742776px;}
._a{margin-left:-2.314692px;}
._0{margin-left:-1.224000px;}
._3{width:1.441872px;}
._b{width:2.701170px;}
._12{width:4.395384px;}
._2a{width:6.976800px;}
._27{width:16.497072px;}
._d{width:18.372240px;}
._21{width:19.535040px;}
._1d{width:20.828808px;}
._5{width:22.000176px;}
._10{width:23.880438px;}
._8{width:25.640664px;}
._17{width:26.922186px;}
._26{width:28.046736px;}
._16{width:29.082348px;}
._11{width:30.139776px;}
._c{width:31.547484px;}
._18{width:33.468858px;}
._1f{width:34.867584px;}
._2c{width:36.338220px;}
._e{width:37.569450px;}
._13{width:40.035924px;}
._20{width:41.291748px;}
._2b{width:43.256160px;}
._1e{width:45.928566px;}
._14{width:47.687148px;}
._2d{width:51.093432px;}
._1b{width:52.279794px;}
._f{width:53.502588px;}
._24{width:57.698136px;}
._1c{width:62.074044px;}
._29{width:63.837720px;}
._32{width:66.052134px;}
._1a{width:78.558768px;}
._2e{width:180.489816px;}
._31{width:348.816516px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:34.884000px;}
.fs1{font-size:46.512000px;}
.fs6{font-size:58.140000px;}
.fs4{font-size:63.666000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.768000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.724000px;}
.y0{bottom:0.000000px;}
.y26{bottom:21.400350px;}
.y51{bottom:156.987864px;}
.y118{bottom:157.014216px;}
.yb2{bottom:157.058016px;}
.y25{bottom:157.104330px;}
.ydd{bottom:161.281644px;}
.y87{bottom:166.878534px;}
.y50{bottom:178.076508px;}
.y117{bottom:178.084152px;}
.yb1{bottom:178.127952px;}
.y24{bottom:178.174266px;}
.ydc{bottom:182.351580px;}
.y109{bottom:183.573012px;}
.y86{bottom:187.948470px;}
.y4f{bottom:199.146444px;}
.y116{bottom:199.154088px;}
.yb0{bottom:199.197888px;}
.y23{bottom:199.244202px;}
.y124{bottom:202.793034px;}
.ydb{bottom:203.421516px;}
.y85{bottom:209.018406px;}
.y108{bottom:219.189576px;}
.y4e{bottom:220.216380px;}
.y115{bottom:220.224024px;}
.y22{bottom:220.314138px;}
.y123{bottom:223.862970px;}
.yda{bottom:224.491452px;}
.y84{bottom:230.088342px;}
.yaf{bottom:233.471418px;}
.y107{bottom:240.259512px;}
.y4d{bottom:241.286316px;}
.y114{bottom:241.293960px;}
.y21{bottom:241.384074px;}
.y122{bottom:244.932906px;}
.yd9{bottom:245.561388px;}
.y83{bottom:251.158278px;}
.y106{bottom:261.329448px;}
.y4c{bottom:262.356252px;}
.y20{bottom:262.454010px;}
.yae{bottom:263.262354px;}
.y13d{bottom:263.876370px;}
.y121{bottom:266.002842px;}
.yd8{bottom:266.631324px;}
.y82{bottom:272.228214px;}
.y113{bottom:272.550024px;}
.y105{bottom:282.399384px;}
.y1f{bottom:283.523946px;}
.y13c{bottom:284.946306px;}
.y120{bottom:287.072778px;}
.yd7{bottom:287.701260px;}
.y81{bottom:293.303064px;}
.y112{bottom:293.619960px;}
.yad{bottom:301.774290px;}
.y48{bottom:303.289080px;}
.y4a{bottom:303.290580px;}
.y1e{bottom:304.593882px;}
.y47{bottom:307.599300px;}
.y49{bottom:307.600800px;}
.y11f{bottom:308.142714px;}
.yd6{bottom:308.771196px;}
.y80{bottom:314.370054px;}
.y104{bottom:318.015948px;}
.y13b{bottom:320.562870px;}
.yac{bottom:322.844226px;}
.y1d{bottom:325.663818px;}
.y111{bottom:327.771396px;}
.y11e{bottom:329.224896px;}
.yd5{bottom:329.841132px;}
.y7f{bottom:335.439990px;}
.y46{bottom:337.670364px;}
.y103{bottom:339.085884px;}
.y13a{bottom:341.632806px;}
.yab{bottom:343.914162px;}
.y1c{bottom:346.733754px;}
.y110{bottom:348.841332px;}
.y11d{bottom:350.294832px;}
.yd4{bottom:350.911068px;}
.y4b{bottom:357.868644px;}
.y45{bottom:358.740300px;}
.y102{bottom:360.155820px;}
.yaa{bottom:364.984098px;}
.y1b{bottom:367.803690px;}
.y7a{bottom:368.203500px;}
.y7d{bottom:370.797459px;}
.y11c{bottom:371.364768px;}
.yd3{bottom:371.981004px;}
.y139{bottom:377.249370px;}
.y44{bottom:379.810242px;}
.y101{bottom:381.225756px;}
.y10f{bottom:382.992768px;}
.y7c{bottom:383.538948px;}
.ya9{bottom:386.054034px;}
.y77{bottom:388.383894px;}
.y7b{bottom:388.390500px;}
.y1a{bottom:388.873626px;}
.yd2{bottom:393.050940px;}
.y138{bottom:398.319306px;}
.y11b{bottom:401.155704px;}
.y100{bottom:402.295692px;}
.y10e{bottom:404.062704px;}
.y79{bottom:404.961000px;}
.ya8{bottom:407.123970px;}
.y19{bottom:409.943562px;}
.y43{bottom:410.316300px;}
.y42{bottom:410.320344px;}
.y78{bottom:410.596500px;}
.yd1{bottom:414.120876px;}
.y75{bottom:419.092650px;}
.yff{bottom:423.365628px;}
.ya7{bottom:428.193906px;}
.y18{bottom:431.013498px;}
.y137{bottom:433.935870px;}
.yd0{bottom:435.190812px;}
.y7e{bottom:438.435000px;}
.y72{bottom:439.274244px;}
.y76{bottom:439.281150px;}
.yfe{bottom:444.435564px;}
.y41{bottom:446.250864px;}
.ya6{bottom:449.263842px;}
.y11a{bottom:451.092150px;}
.y17{bottom:452.083434px;}
.y10d{bottom:453.999150px;}
.y136{bottom:455.005806px;}
.y74{bottom:455.848500px;}
.ycf{bottom:456.260748px;}
.yfd{bottom:459.487500px;}
.y73{bottom:461.484000px;}
.yfc{bottom:465.515778px;}
.y40{bottom:467.459394px;}
.y6e{bottom:469.978650px;}
.ya5{bottom:470.333778px;}
.y16{bottom:473.153370px;}
.y135{bottom:476.075742px;}
.yce{bottom:477.330684px;}
.y71{bottom:485.315448px;}
.y70{bottom:485.315598px;}
.yfb{bottom:486.585714px;}
.y6a{bottom:487.549650px;}
.y3f{bottom:488.529330px;}
.y119{bottom:489.220650px;}
.y6b{bottom:490.167150px;}
.y6f{bottom:490.168650px;}
.y69{bottom:490.176396px;}
.ya4{bottom:491.403714px;}
.y10c{bottom:492.124650px;}
.y15{bottom:494.223306px;}
.yfa{bottom:501.640650px;}
.y6d{bottom:506.736150px;}
.ycd{bottom:507.121620px;}
.yf9{bottom:507.671778px;}
.y134{bottom:511.692306px;}
.y6c{bottom:512.374650px;}
.y3e{bottom:518.320266px;}
.ya3{bottom:521.194650px;}
.y14{bottom:524.031684px;}
.yf8{bottom:528.741714px;}
.y133{bottom:532.762242px;}
.y68{bottom:534.287214px;}
.ycc{bottom:545.633556px;}
.y66{bottom:549.342150px;}
.yf7{bottom:549.811650px;}
.y67{bottom:552.741150px;}
.y132{bottom:553.832178px;}
.y3d{bottom:556.832202px;}
.y65{bottom:562.233150px;}
.ycb{bottom:566.703492px;}
.yf6{bottom:570.903960px;}
.y131{bottom:574.902114px;}
.y64{bottom:576.449214px;}
.y3c{bottom:577.902138px;}
.yca{bottom:587.773428px;}
.y13{bottom:588.706620px;}
.yf5{bottom:591.973896px;}
.y63{bottom:597.522714px;}
.ya2{bottom:598.093320px;}
.ya1{bottom:598.093470px;}
.y3b{bottom:598.972074px;}
.ya0{bottom:602.958150px;}
.yc9{bottom:608.843364px;}
.y12{bottom:609.776556px;}
.y130{bottom:610.518678px;}
.yf4{bottom:613.043832px;}
.y62{bottom:618.626820px;}
.y3a{bottom:620.042010px;}
.yc8{bottom:629.913300px;}
.y11{bottom:630.846492px;}
.y12f{bottom:631.588614px;}
.yf3{bottom:634.113768px;}
.y61{bottom:639.696756px;}
.y39{bottom:641.111946px;}
.y9f{bottom:648.574650px;}
.yc7{bottom:650.989506px;}
.y10{bottom:651.916428px;}
.y12e{bottom:652.658550px;}
.yf2{bottom:655.183704px;}
.y60{bottom:660.766692px;}
.y38{bottom:662.181882px;}
.y5f{bottom:681.836628px;}
.y37{bottom:683.251818px;}
.y9e{bottom:686.459598px;}
.y12d{bottom:688.275114px;}
.yf{bottom:690.428364px;}
.y9d{bottom:691.311150px;}
.yc6{bottom:700.925952px;}
.y5e{bottom:702.906564px;}
.y36{bottom:704.321754px;}
.yf1{bottom:705.129702px;}
.y12c{bottom:709.345050px;}
.y9c{bottom:710.407470px;}
.ye{bottom:711.498300px;}
.y9b{bottom:715.269150px;}
.ybf{bottom:720.756300px;}
.yed{bottom:724.957800px;}
.y35{bottom:725.391690px;}
.y98{bottom:732.906300px;}
.ybe{bottom:733.639800px;}
.yec{bottom:737.844300px;}
.y99{bottom:740.018598px;}
.y96{bottom:740.018748px;}
.y5d{bottom:741.424866px;}
.y10b{bottom:743.460300px;}
.y95{bottom:744.871800px;}
.y12b{bottom:744.961614px;}
.y34{bottom:746.461626px;}
.ybb{bottom:753.049974px;}
.ye9{bottom:757.268916px;}
.y9a{bottom:757.914090px;}
.y97{bottom:757.914240px;}
.yd{bottom:763.915800px;}
.y12a{bottom:766.031550px;}
.y33{bottom:767.531562px;}
.yb3{bottom:770.544300px;}
.yde{bottom:774.745800px;}
.yc{bottom:775.578498px;}
.y5c{bottom:776.204214px;}
.y10a{bottom:781.587300px;}
.y32{bottom:788.601498px;}
.yb{bottom:793.022982px;}
.y94{bottom:793.830300px;}
.y5b{bottom:797.282214px;}
.ydf{bottom:798.798318px;}
.y129{bottom:801.648114px;}
.yb4{bottom:805.445742px;}
.y31{bottom:809.671434px;}
.ya{bottom:810.467466px;}
.y5a{bottom:818.357214px;}
.y128{bottom:822.718050px;}
.ye0{bottom:822.728742px;}
.y9{bottom:827.911950px;}
.y30{bottom:830.741370px;}
.y90{bottom:832.037748px;}
.y8f{bottom:836.565300px;}
.y91{bottom:836.566800px;}
.y93{bottom:836.573364px;}
.y59{bottom:839.440428px;}
.yb5{bottom:840.347184px;}
.ye1{bottom:846.781260px;}
.y8e{bottom:846.958800px;}
.y2f{bottom:851.811306px;}
.y92{bottom:855.027300px;}
.y127{bottom:858.334614px;}
.y8{bottom:859.884636px;}
.y58{bottom:860.510364px;}
.ye2{bottom:870.816336px;}
.y2e{bottom:872.881242px;}
.yb6{bottom:875.248626px;}
.y126{bottom:879.404550px;}
.y7{bottom:880.239450px;}
.y57{bottom:881.586714px;}
.ybc{bottom:887.908950px;}
.yea{bottom:890.007450px;}
.ybd{bottom:890.703300px;}
.y8d{bottom:893.475450px;}
.y2d{bottom:893.951178px;}
.yeb{bottom:894.420450px;}
.ye3{bottom:894.868854px;}
.y125{bottom:900.474486px;}
.y8c{bottom:900.908898px;}
.y56{bottom:902.668428px;}
.y8b{bottom:902.820300px;}
.y8a{bottom:905.437800px;}
.yc5{bottom:909.793902px;}
.yb7{bottom:910.150068px;}
.y2c{bottom:915.021114px;}
.ye4{bottom:918.799278px;}
.y55{bottom:923.738364px;}
.yc4{bottom:927.305670px;}
.y2b{bottom:936.091050px;}
.ye5{bottom:942.851796px;}
.y6{bottom:944.202759px;}
.y54{bottom:944.808300px;}
.yc3{bottom:944.817438px;}
.yb8{bottom:945.051510px;}
.y89{bottom:952.728450px;}
.y2a{bottom:957.160986px;}
.yf0{bottom:959.992206px;}
.yc2{bottom:962.329206px;}
.y53{bottom:965.892864px;}
.ye6{bottom:966.904314px;}
.y5{bottom:967.457100px;}
.yef{bottom:977.486532px;}
.y29{bottom:978.230922px;}
.yc1{bottom:979.823532px;}
.yb9{bottom:979.952952px;}
.y52{bottom:986.969364px;}
.ye7{bottom:990.834738px;}
.yee{bottom:994.998300px;}
.yc0{bottom:997.335300px;}
.y88{bottom:1002.004950px;}
.y28{bottom:1008.039300px;}
.yba{bottom:1014.854394px;}
.ye8{bottom:1014.887256px;}
.y4{bottom:1045.025100px;}
.y3{bottom:1058.827536px;}
.y27{bottom:1061.820600px;}
.y2{bottom:1072.641600px;}
.y1{bottom:1249.730100px;}
.h24{height:15.035004px;}
.h8{height:26.000208px;}
.h1a{height:32.744448px;}
.h3{height:34.884000px;}
.hb{height:43.605000px;}
.h7{height:47.749500px;}
.h6{height:49.116672px;}
.hf{height:49.186440px;}
.h1b{height:50.372496px;}
.h9{height:52.326000px;}
.h21{height:52.347024px;}
.h2{height:52.453125px;}
.h2e{height:58.076448px;}
.h4{height:58.941696px;}
.hc{height:59.655624px;}
.h3a{height:60.153936px;}
.h13{height:60.156888px;}
.h15{height:60.177744px;}
.h27{height:60.178344px;}
.h14{height:60.183744px;}
.h26{height:60.221784px;}
.h10{height:61.550448px;}
.h18{height:62.790000px;}
.h3b{height:63.369936px;}
.h16{height:63.670536px;}
.h20{height:63.684000px;}
.h5{height:66.000528px;}
.ha{height:66.032227px;}
.h3d{height:67.465656px;}
.h2c{height:67.929960px;}
.he{height:68.023800px;}
.h28{height:68.541048px;}
.h37{height:68.592648px;}
.h12{height:69.566880px;}
.h3e{height:69.977304px;}
.h29{height:70.441608px;}
.h1d{height:70.542000px;}
.h22{height:70.548000px;}
.h35{height:70.554000px;}
.h25{height:71.732208px;}
.h1f{height:71.744208px;}
.h39{height:71.784720px;}
.h17{height:76.386000px;}
.h3c{height:76.398000px;}
.h19{height:78.493800px;}
.h1e{height:89.953608px;}
.h32{height:89.954208px;}
.h38{height:90.000120px;}
.h36{height:90.000720px;}
.h2b{height:105.920448px;}
.h2a{height:107.517288px;}
.h33{height:116.389728px;}
.h34{height:118.403400px;}
.hd{height:145.326744px;}
.h2d{height:148.745376px;}
.h11{height:162.567624px;}
.h23{height:164.732952px;}
.h30{height:190.322496px;}
.h31{height:190.327104px;}
.h2f{height:208.443312px;}
.h1c{height:226.088496px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:105.118650px;}
.x1e{left:106.797450px;}
.x5f{left:113.595030px;}
.xf{left:125.733312px;}
.x6{left:127.027800px;}
.x4e{left:133.496352px;}
.x60{left:140.159196px;}
.x4f{left:147.729024px;}
.x58{left:149.771520px;}
.x53{left:161.196150px;}
.x54{left:174.879150px;}
.x33{left:190.500150px;}
.x50{left:192.331650px;}
.x39{left:194.203950px;}
.x59{left:200.497650px;}
.x5{left:203.264109px;}
.x51{left:205.622454px;}
.x15{left:208.536126px;}
.x20{left:214.363284px;}
.x12{left:215.730852px;}
.x52{left:218.058600px;}
.x32{left:219.846150px;}
.x5a{left:226.224600px;}
.x3f{left:227.887650px;}
.x5d{left:231.919950px;}
.x11{left:235.461150px;}
.xd{left:239.631947px;}
.x5e{left:241.287450px;}
.x2d{left:259.718742px;}
.x21{left:264.602550px;}
.x29{left:265.918086px;}
.x1{left:269.326650px;}
.x61{left:278.823096px;}
.x3a{left:281.610450px;}
.xb{left:290.676162px;}
.x3b{left:292.667838px;}
.xa{left:296.597100px;}
.x17{left:297.649800px;}
.x16{left:300.696300px;}
.x1d{left:307.009416px;}
.x49{left:309.789450px;}
.x4b{left:316.521300px;}
.x46{left:317.833950px;}
.xc{left:319.309946px;}
.x22{left:321.065628px;}
.x2b{left:323.669700px;}
.x2a{left:325.397700px;}
.x4c{left:326.796300px;}
.x4a{left:332.136300px;}
.xe{left:334.526100px;}
.x34{left:335.701650px;}
.x40{left:345.508650px;}
.x24{left:355.532550px;}
.x25{left:358.133550px;}
.x23{left:359.861550px;}
.x3e{left:363.919800px;}
.x47{left:367.086450px;}
.x7{left:375.172068px;}
.x2c{left:378.616200px;}
.x18{left:383.706300px;}
.x13{left:388.572450px;}
.x19{left:390.966300px;}
.x8{left:399.207144px;}
.x26{left:413.080050px;}
.x41{left:419.626650px;}
.x10{left:425.477250px;}
.x2e{left:436.870200px;}
.x1f{left:440.797050px;}
.x9{left:443.004006px;}
.x3d{left:447.695634px;}
.x35{left:453.958038px;}
.x3{left:461.467722px;}
.x48{left:464.556450px;}
.x5b{left:466.383300px;}
.x14{left:469.834728px;}
.x42{left:471.639150px;}
.x3c{left:476.818950px;}
.x1a{left:481.512300px;}
.x1b{left:487.680300px;}
.x2f{left:514.586700px;}
.x57{left:518.687262px;}
.x27{left:520.363200px;}
.x30{left:525.418200px;}
.x4d{left:532.654800px;}
.x36{left:560.506650px;}
.x43{left:563.680950px;}
.x28{left:566.500200px;}
.x31{left:582.575850px;}
.x56{left:587.565720px;}
.x55{left:596.112300px;}
.x44{left:597.880578px;}
.x37{left:623.379450px;}
.x45{left:635.142450px;}
.x38{left:642.538950px;}
.x2{left:677.283402px;}
.x62{left:679.779792px;}
.x5c{left:721.148100px;}
.x1c{left:744.958740px;}
@media print{
.v8{vertical-align:-61.152000pt;}
.v5{vertical-align:-55.993045pt;}
.v1e{vertical-align:-49.488768pt;}
.v22{vertical-align:-46.373120pt;}
.v13{vertical-align:-38.739371pt;}
.vf{vertical-align:-34.912000pt;}
.ve{vertical-align:-25.605333pt;}
.v24{vertical-align:-22.512000pt;}
.v3{vertical-align:-20.528000pt;}
.v14{vertical-align:-16.744704pt;}
.v23{vertical-align:-14.677120pt;}
.v6{vertical-align:-9.272683pt;}
.vb{vertical-align:-6.954667pt;}
.v16{vertical-align:-5.333376pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:6.796096pt;}
.v15{vertical-align:7.943296pt;}
.va{vertical-align:9.301333pt;}
.v25{vertical-align:11.770667pt;}
.v2{vertical-align:15.007872pt;}
.v17{vertical-align:16.102763pt;}
.v11{vertical-align:17.260629pt;}
.v9{vertical-align:21.386667pt;}
.v1{vertical-align:22.512000pt;}
.v26{vertical-align:24.363989pt;}
.v7{vertical-align:25.605333pt;}
.vd{vertical-align:27.994667pt;}
.v10{vertical-align:31.690667pt;}
.v20{vertical-align:36.957440pt;}
.v1c{vertical-align:37.953792pt;}
.v19{vertical-align:41.984832pt;}
.v12{vertical-align:48.950763pt;}
.v1a{vertical-align:65.045333pt;}
.v21{vertical-align:74.911232pt;}
.v1f{vertical-align:81.740629pt;}
.v4{vertical-align:84.403776pt;}
.v1b{vertical-align:87.442560pt;}
.v1d{vertical-align:124.404096pt;}
.vc{vertical-align:156.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000256pt;}
.ls6{letter-spacing:0.002048pt;}
.ls75{letter-spacing:0.004075pt;}
.ls37{letter-spacing:0.004651pt;}
.ls29{letter-spacing:0.005461pt;}
.ls51{letter-spacing:0.005589pt;}
.ls9b{letter-spacing:0.005909pt;}
.lsa6{letter-spacing:0.006293pt;}
.ls57{letter-spacing:0.006485pt;}
.ls44{letter-spacing:0.010176pt;}
.lsa9{letter-spacing:0.011093pt;}
.ls84{letter-spacing:0.011243pt;}
.lsac{letter-spacing:0.013611pt;}
.ls15{letter-spacing:0.014677pt;}
.ls53{letter-spacing:0.016576pt;}
.ls4e{letter-spacing:0.017152pt;}
.ls31{letter-spacing:0.017707pt;}
.ls19{letter-spacing:0.018261pt;}
.ls60{letter-spacing:0.020011pt;}
.ls63{letter-spacing:0.023595pt;}
.ls8f{letter-spacing:0.025643pt;}
.ls11{letter-spacing:0.026155pt;}
.ls94{letter-spacing:0.026645pt;}
.ls95{letter-spacing:0.026880pt;}
.ls7d{letter-spacing:0.029099pt;}
.ls4d{letter-spacing:0.029120pt;}
.ls4c{letter-spacing:0.030464pt;}
.ls46{letter-spacing:0.030635pt;}
.ls89{letter-spacing:0.033173pt;}
.ls97{letter-spacing:0.035285pt;}
.ls70{letter-spacing:0.038507pt;}
.ls39{letter-spacing:0.038720pt;}
.ls1a{letter-spacing:0.039019pt;}
.ls56{letter-spacing:0.039787pt;}
.ls14{letter-spacing:0.042944pt;}
.ls58{letter-spacing:0.044587pt;}
.ls92{letter-spacing:0.045419pt;}
.ls9c{letter-spacing:0.045952pt;}
.ls3b{letter-spacing:0.050752pt;}
.ls34{letter-spacing:0.053205pt;}
.ls4f{letter-spacing:0.055253pt;}
.ls62{letter-spacing:0.055808pt;}
.lsa2{letter-spacing:0.056085pt;}
.ls25{letter-spacing:0.057216pt;}
.ls83{letter-spacing:0.057408pt;}
.lsa1{letter-spacing:0.058539pt;}
.ls86{letter-spacing:0.062016pt;}
.lse{letter-spacing:0.062037pt;}
.ls33{letter-spacing:0.062976pt;}
.ls2e{letter-spacing:0.064768pt;}
.ls69{letter-spacing:0.066688pt;}
.ls18{letter-spacing:0.066944pt;}
.ls64{letter-spacing:0.078187pt;}
.ls9{letter-spacing:0.078891pt;}
.ls2f{letter-spacing:0.078997pt;}
.ls2b{letter-spacing:0.080064pt;}
.ls5c{letter-spacing:0.082389pt;}
.ls5e{letter-spacing:0.083520pt;}
.ls72{letter-spacing:0.097792pt;}
.ls8b{letter-spacing:0.100672pt;}
.ls2d{letter-spacing:0.104405pt;}
.ls67{letter-spacing:0.108203pt;}
.ls87{letter-spacing:0.115947pt;}
.ls8d{letter-spacing:0.116053pt;}
.ls1b{letter-spacing:0.119339pt;}
.ls78{letter-spacing:0.134933pt;}
.ls49{letter-spacing:0.143083pt;}
.ls20{letter-spacing:0.186048pt;}
.ls2{letter-spacing:0.248064pt;}
.ls9d{letter-spacing:1.116288pt;}
.ls9f{letter-spacing:1.674432pt;}
.lsa{letter-spacing:1.736448pt;}
.lsa5{letter-spacing:2.294592pt;}
.ls6b{letter-spacing:2.439296pt;}
.lsa0{letter-spacing:2.564651pt;}
.ls99{letter-spacing:2.569984pt;}
.ls5a{letter-spacing:2.590336pt;}
.ls28{letter-spacing:2.594773pt;}
.ls0{letter-spacing:2.595669pt;}
.ls91{letter-spacing:2.601003pt;}
.ls73{letter-spacing:2.604672pt;}
.ls7{letter-spacing:2.607189pt;}
.ls8a{letter-spacing:2.608299pt;}
.ls6a{letter-spacing:2.610304pt;}
.ls71{letter-spacing:2.619179pt;}
.ls13{letter-spacing:2.621397pt;}
.ls30{letter-spacing:2.626005pt;}
.ls5b{letter-spacing:2.631339pt;}
.ls2c{letter-spacing:2.636672pt;}
.ls3a{letter-spacing:2.642005pt;}
.ls6f{letter-spacing:3.224832pt;}
.ls4a{letter-spacing:3.691435pt;}
.ls45{letter-spacing:3.696768pt;}
.ls85{letter-spacing:3.697493pt;}
.ls74{letter-spacing:3.708160pt;}
.ls7f{letter-spacing:3.782976pt;}
.ls26{letter-spacing:4.077525pt;}
.ls2a{letter-spacing:4.933035pt;}
.ls41{letter-spacing:6.211669pt;}
.ls7c{letter-spacing:6.263616pt;}
.ls48{letter-spacing:6.635712pt;}
.ls43{letter-spacing:6.697728pt;}
.lsa7{letter-spacing:6.945792pt;}
.ls76{letter-spacing:8.475051pt;}
.ls80{letter-spacing:8.493205pt;}
.ls50{letter-spacing:8.705408pt;}
.ls5f{letter-spacing:8.710741pt;}
.ls65{letter-spacing:8.711275pt;}
.ls79{letter-spacing:8.716075pt;}
.ls90{letter-spacing:8.717397pt;}
.ls59{letter-spacing:8.721408pt;}
.ls17{letter-spacing:10.356672pt;}
.ls27{letter-spacing:10.418688pt;}
.ls8{letter-spacing:10.604736pt;}
.lsb{letter-spacing:10.914816pt;}
.ls7e{letter-spacing:11.398101pt;}
.lsf{letter-spacing:13.705536pt;}
.lsc{letter-spacing:13.829568pt;}
.ls3f{letter-spacing:15.876096pt;}
.lsa8{letter-spacing:16.124160pt;}
.ls3e{letter-spacing:16.354731pt;}
.ls9e{letter-spacing:16.391339pt;}
.ls40{letter-spacing:16.729003pt;}
.ls77{letter-spacing:17.092907pt;}
.ls5{letter-spacing:17.240448pt;}
.ls4{letter-spacing:17.302464pt;}
.ls7a{letter-spacing:17.478101pt;}
.ls82{letter-spacing:18.604800pt;}
.ls3{letter-spacing:19.100928pt;}
.ls16{letter-spacing:19.202731pt;}
.lsd{letter-spacing:19.348992pt;}
.ls6c{letter-spacing:19.732651pt;}
.lsaa{letter-spacing:19.810261pt;}
.ls32{letter-spacing:19.858005pt;}
.ls38{letter-spacing:19.863339pt;}
.lsa4{letter-spacing:20.217216pt;}
.ls24{letter-spacing:20.465280pt;}
.ls7b{letter-spacing:20.651328pt;}
.lsb0{letter-spacing:20.962261pt;}
.ls1c{letter-spacing:21.309525pt;}
.ls4b{letter-spacing:22.263744pt;}
.ls3d{letter-spacing:22.511808pt;}
.ls23{letter-spacing:25.240512pt;}
.ls22{letter-spacing:25.302528pt;}
.lsad{letter-spacing:26.646699pt;}
.ls68{letter-spacing:27.100992pt;}
.ls21{letter-spacing:27.411072pt;}
.ls1d{letter-spacing:28.155264pt;}
.ls1e{letter-spacing:28.217280pt;}
.lsab{letter-spacing:28.249003pt;}
.ls1f{letter-spacing:28.837440pt;}
.ls54{letter-spacing:28.843435pt;}
.lsaf{letter-spacing:29.333568pt;}
.ls42{letter-spacing:30.263808pt;}
.ls47{letter-spacing:30.850731pt;}
.ls6d{letter-spacing:32.217984pt;}
.lsa3{letter-spacing:34.032768pt;}
.ls8c{letter-spacing:34.038101pt;}
.ls8e{letter-spacing:34.043435pt;}
.ls66{letter-spacing:36.450197pt;}
.ls61{letter-spacing:36.450731pt;}
.ls52{letter-spacing:42.619435pt;}
.ls98{letter-spacing:47.819435pt;}
.ls93{letter-spacing:47.824768pt;}
.lsae{letter-spacing:48.741760pt;}
.ls96{letter-spacing:51.259435pt;}
.ls9a{letter-spacing:51.264768pt;}
.ls55{letter-spacing:51.659328pt;}
.ls6e{letter-spacing:51.721344pt;}
.ls5d{letter-spacing:54.296064pt;}
.ls35{letter-spacing:63.356672pt;}
.ls88{letter-spacing:75.163392pt;}
.ls36{letter-spacing:81.985152pt;}
.ls81{letter-spacing:87.359573pt;}
.ls3c{letter-spacing:735.927339pt;}
.ls10{letter-spacing:825.494976pt;}
.ws67{word-spacing:-40.062336pt;}
.ws99{word-spacing:-29.395584pt;}
.ws44{word-spacing:-17.364480pt;}
.ws53{word-spacing:-17.302464pt;}
.ws45{word-spacing:-10.480704pt;}
.ws74{word-spacing:-10.418688pt;}
.ws69{word-spacing:-3.286848pt;}
.ws6a{word-spacing:-1.798464pt;}
.ws77{word-spacing:-1.736448pt;}
.ws32{word-spacing:-0.062016pt;}
.ws24{word-spacing:0.000000pt;}
.ws5{word-spacing:8.806272pt;}
.ws6{word-spacing:8.930304pt;}
.ws62{word-spacing:13.705536pt;}
.wsb6{word-spacing:13.767552pt;}
.ws3d{word-spacing:13.829568pt;}
.ws3e{word-spacing:13.891584pt;}
.ws64{word-spacing:14.139648pt;}
.ws63{word-spacing:14.263680pt;}
.wsb{word-spacing:14.449728pt;}
.ws0{word-spacing:14.594432pt;}
.ws1{word-spacing:14.635776pt;}
.ws89{word-spacing:14.697792pt;}
.ws9d{word-spacing:14.821824pt;}
.ws36{word-spacing:14.883840pt;}
.ws18{word-spacing:15.255936pt;}
.ws17{word-spacing:15.317952pt;}
.ws20{word-spacing:15.504000pt;}
.wsb7{word-spacing:15.628032pt;}
.ws95{word-spacing:15.690048pt;}
.ws9a{word-spacing:15.845760pt;}
.ws9e{word-spacing:16.062144pt;}
.ws86{word-spacing:16.124160pt;}
.wsb8{word-spacing:16.186176pt;}
.ws80{word-spacing:16.434240pt;}
.wsa3{word-spacing:16.496256pt;}
.ws56{word-spacing:16.558272pt;}
.wsa{word-spacing:16.682304pt;}
.ws31{word-spacing:16.930368pt;}
.ws9c{word-spacing:16.992384pt;}
.ws51{word-spacing:17.054400pt;}
.ws52{word-spacing:17.116416pt;}
.ws6d{word-spacing:17.178432pt;}
.ws5f{word-spacing:17.240448pt;}
.ws25{word-spacing:17.261120pt;}
.ws57{word-spacing:17.302464pt;}
.wsb3{word-spacing:17.426496pt;}
.ws72{word-spacing:17.550528pt;}
.ws23{word-spacing:17.674560pt;}
.wsa6{word-spacing:17.860608pt;}
.ws16{word-spacing:17.922624pt;}
.wsa1{word-spacing:18.046656pt;}
.ws1c{word-spacing:18.108672pt;}
.ws88{word-spacing:18.170688pt;}
.ws40{word-spacing:18.232704pt;}
.wsa0{word-spacing:18.356736pt;}
.ws59{word-spacing:18.480768pt;}
.ws58{word-spacing:18.542784pt;}
.ws84{word-spacing:18.666816pt;}
.ws92{word-spacing:18.728832pt;}
.ws8{word-spacing:18.788544pt;}
.ws37{word-spacing:18.790848pt;}
.ws7{word-spacing:18.845136pt;}
.ws91{word-spacing:18.852864pt;}
.ws2c{word-spacing:18.914880pt;}
.wsb4{word-spacing:18.976896pt;}
.ws41{word-spacing:19.038912pt;}
.ws15{word-spacing:19.100928pt;}
.ws1d{word-spacing:19.162944pt;}
.ws2e{word-spacing:19.348992pt;}
.wse{word-spacing:19.597056pt;}
.ws68{word-spacing:19.606997pt;}
.ws1e{word-spacing:19.783104pt;}
.ws1f{word-spacing:19.845120pt;}
.ws93{word-spacing:19.907136pt;}
.ws35{word-spacing:19.969152pt;}
.ws8d{word-spacing:20.031168pt;}
.ws4d{word-spacing:20.093184pt;}
.ws3f{word-spacing:20.155200pt;}
.ws12{word-spacing:20.217216pt;}
.ws11{word-spacing:20.279232pt;}
.wsc{word-spacing:20.341248pt;}
.ws4f{word-spacing:20.403264pt;}
.ws60{word-spacing:20.465280pt;}
.ws50{word-spacing:20.527296pt;}
.ws30{word-spacing:20.589312pt;}
.ws14{word-spacing:20.899392pt;}
.ws85{word-spacing:20.961408pt;}
.ws54{word-spacing:21.023424pt;}
.ws55{word-spacing:21.085440pt;}
.ws97{word-spacing:21.147456pt;}
.ws43{word-spacing:21.209472pt;}
.wsa5{word-spacing:21.333504pt;}
.ws27{word-spacing:21.519552pt;}
.wsa7{word-spacing:21.643584pt;}
.ws8f{word-spacing:21.829632pt;}
.wsb5{word-spacing:21.891648pt;}
.ws7c{word-spacing:21.953664pt;}
.ws8a{word-spacing:22.077696pt;}
.ws7d{word-spacing:22.139712pt;}
.wsf{word-spacing:22.201728pt;}
.ws82{word-spacing:22.263744pt;}
.ws81{word-spacing:22.325760pt;}
.wsa4{word-spacing:22.511808pt;}
.ws22{word-spacing:22.697856pt;}
.ws19{word-spacing:22.821888pt;}
.ws2a{word-spacing:22.945920pt;}
.ws66{word-spacing:23.069952pt;}
.ws65{word-spacing:23.131968pt;}
.ws73{word-spacing:23.193984pt;}
.ws4{word-spacing:23.256000pt;}
.ws26{word-spacing:23.318016pt;}
.ws5d{word-spacing:23.380032pt;}
.wsa2{word-spacing:23.442048pt;}
.ws5e{word-spacing:23.504064pt;}
.ws6c{word-spacing:23.566080pt;}
.ws6b{word-spacing:23.628096pt;}
.ws79{word-spacing:23.752128pt;}
.ws78{word-spacing:23.876160pt;}
.ws7a{word-spacing:24.000192pt;}
.ws7b{word-spacing:24.062208pt;}
.ws9b{word-spacing:24.310272pt;}
.ws83{word-spacing:24.558336pt;}
.ws33{word-spacing:24.620352pt;}
.ws34{word-spacing:24.682368pt;}
.ws87{word-spacing:24.744384pt;}
.ws21{word-spacing:24.806400pt;}
.ws96{word-spacing:24.930432pt;}
.ws9{word-spacing:25.183440pt;}
.ws1b{word-spacing:25.240512pt;}
.ws4e{word-spacing:25.364544pt;}
.ws28{word-spacing:25.550592pt;}
.ws8e{word-spacing:25.612608pt;}
.ws29{word-spacing:25.674624pt;}
.ws4c{word-spacing:25.736640pt;}
.ws5a{word-spacing:25.922688pt;}
.ws90{word-spacing:26.046720pt;}
.ws61{word-spacing:26.108736pt;}
.ws7e{word-spacing:26.294784pt;}
.ws2b{word-spacing:26.666880pt;}
.ws5c{word-spacing:26.728896pt;}
.ws5b{word-spacing:26.790912pt;}
.ws10{word-spacing:26.852928pt;}
.ws8b{word-spacing:27.100992pt;}
.ws3b{word-spacing:27.225024pt;}
.ws3c{word-spacing:27.287040pt;}
.ws94{word-spacing:27.349056pt;}
.ws3a{word-spacing:27.411072pt;}
.ws1a{word-spacing:27.535104pt;}
.wsaf{word-spacing:27.659136pt;}
.wsae{word-spacing:27.783168pt;}
.ws9f{word-spacing:27.845184pt;}
.ws2{word-spacing:27.908000pt;}
.ws3{word-spacing:28.056843pt;}
.ws2d{word-spacing:28.093248pt;}
.wsa8{word-spacing:28.155264pt;}
.ws49{word-spacing:28.217280pt;}
.ws48{word-spacing:28.279296pt;}
.wsa9{word-spacing:28.961472pt;}
.ws70{word-spacing:29.023488pt;}
.ws38{word-spacing:29.085504pt;}
.ws39{word-spacing:29.147520pt;}
.wsb2{word-spacing:29.209536pt;}
.ws98{word-spacing:29.271552pt;}
.ws2f{word-spacing:29.395584pt;}
.ws6f{word-spacing:29.581632pt;}
.ws6e{word-spacing:29.705664pt;}
.ws71{word-spacing:30.077760pt;}
.wsd{word-spacing:30.759936pt;}
.wsad{word-spacing:31.690176pt;}
.wsab{word-spacing:31.752192pt;}
.wsac{word-spacing:32.310336pt;}
.wsaa{word-spacing:33.612672pt;}
.ws4a{word-spacing:40.744512pt;}
.ws4b{word-spacing:41.054592pt;}
.wsb1{word-spacing:49.364736pt;}
.wsb0{word-spacing:50.356992pt;}
.ws42{word-spacing:51.659328pt;}
.ws75{word-spacing:51.721344pt;}
.ws76{word-spacing:51.969408pt;}
.ws47{word-spacing:60.775680pt;}
.ws13{word-spacing:69.768000pt;}
.ws8c{word-spacing:159.319104pt;}
.ws7f{word-spacing:163.040064pt;}
.ws46{word-spacing:838.146240pt;}
._2{margin-left:-881.024000pt;}
._30{margin-left:-30.945984pt;}
._2f{margin-left:-29.670400pt;}
._25{margin-left:-28.031232pt;}
._22{margin-left:-26.976960pt;}
._19{margin-left:-25.684960pt;}
._6{margin-left:-23.193984pt;}
._23{margin-left:-11.100864pt;}
._28{margin-left:-10.119595pt;}
._9{margin-left:-8.338432pt;}
._1{margin-left:-7.104000pt;}
._7{margin-left:-6.142997pt;}
._4{margin-left:-4.369408pt;}
._15{margin-left:-3.326912pt;}
._a{margin-left:-2.057504pt;}
._0{margin-left:-1.088000pt;}
._3{width:1.281664pt;}
._b{width:2.401040pt;}
._12{width:3.907008pt;}
._2a{width:6.201600pt;}
._27{width:14.664064pt;}
._d{width:16.330880pt;}
._21{width:17.364480pt;}
._1d{width:18.514496pt;}
._5{width:19.555712pt;}
._10{width:21.227056pt;}
._8{width:22.791701pt;}
._17{width:23.930832pt;}
._26{width:24.930432pt;}
._16{width:25.850976pt;}
._11{width:26.790912pt;}
._c{width:28.042208pt;}
._18{width:29.750096pt;}
._1f{width:30.993408pt;}
._2c{width:32.300640pt;}
._e{width:33.395067pt;}
._13{width:35.587488pt;}
._20{width:36.703776pt;}
._2b{width:38.449920pt;}
._1e{width:40.825392pt;}
._14{width:42.388576pt;}
._2d{width:45.416384pt;}
._1b{width:46.470928pt;}
._f{width:47.557856pt;}
._24{width:51.287232pt;}
._1c{width:55.176928pt;}
._29{width:56.744640pt;}
._32{width:58.713008pt;}
._1a{width:69.830016pt;}
._2e{width:160.435392pt;}
._31{width:310.059125pt;}
.fs7{font-size:31.008000pt;}
.fs1{font-size:41.344000pt;}
.fs6{font-size:51.680000pt;}
.fs4{font-size:56.592000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:62.016000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.421333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:19.022533pt;}
.y51{bottom:139.544768pt;}
.y118{bottom:139.568192pt;}
.yb2{bottom:139.607125pt;}
.y25{bottom:139.648293pt;}
.ydd{bottom:143.361461pt;}
.y87{bottom:148.336475pt;}
.y50{bottom:158.290229pt;}
.y117{bottom:158.297024pt;}
.yb1{bottom:158.335957pt;}
.y24{bottom:158.377125pt;}
.ydc{bottom:162.090293pt;}
.y109{bottom:163.176011pt;}
.y86{bottom:167.065307pt;}
.y4f{bottom:177.019061pt;}
.y116{bottom:177.025856pt;}
.yb0{bottom:177.064789pt;}
.y23{bottom:177.105957pt;}
.y124{bottom:180.260475pt;}
.ydb{bottom:180.819125pt;}
.y85{bottom:185.794139pt;}
.y108{bottom:194.835179pt;}
.y4e{bottom:195.747893pt;}
.y115{bottom:195.754688pt;}
.y22{bottom:195.834789pt;}
.y123{bottom:198.989307pt;}
.yda{bottom:199.547957pt;}
.y84{bottom:204.522971pt;}
.yaf{bottom:207.530149pt;}
.y107{bottom:213.564011pt;}
.y4d{bottom:214.476725pt;}
.y114{bottom:214.483520pt;}
.y21{bottom:214.563621pt;}
.y122{bottom:217.718139pt;}
.yd9{bottom:218.276789pt;}
.y83{bottom:223.251803pt;}
.y106{bottom:232.292843pt;}
.y4c{bottom:233.205557pt;}
.y20{bottom:233.292453pt;}
.yae{bottom:234.010981pt;}
.y13d{bottom:234.556773pt;}
.y121{bottom:236.446971pt;}
.yd8{bottom:237.005621pt;}
.y82{bottom:241.980635pt;}
.y113{bottom:242.266688pt;}
.y105{bottom:251.021675pt;}
.y1f{bottom:252.021285pt;}
.y13c{bottom:253.285605pt;}
.y120{bottom:255.175803pt;}
.yd7{bottom:255.734453pt;}
.y81{bottom:260.713835pt;}
.y112{bottom:260.995520pt;}
.yad{bottom:268.243813pt;}
.y48{bottom:269.590293pt;}
.y4a{bottom:269.591627pt;}
.y1e{bottom:270.750117pt;}
.y47{bottom:273.421600pt;}
.y49{bottom:273.422933pt;}
.y11f{bottom:273.904635pt;}
.yd6{bottom:274.463285pt;}
.y80{bottom:279.440048pt;}
.y104{bottom:282.680843pt;}
.y13b{bottom:284.944773pt;}
.yac{bottom:286.972645pt;}
.y1d{bottom:289.478949pt;}
.y111{bottom:291.352352pt;}
.y11e{bottom:292.644352pt;}
.yd5{bottom:293.192117pt;}
.y7f{bottom:298.168880pt;}
.y46{bottom:300.151435pt;}
.y103{bottom:301.409675pt;}
.y13a{bottom:303.673605pt;}
.yab{bottom:305.701477pt;}
.y1c{bottom:308.207781pt;}
.y110{bottom:310.081184pt;}
.y11d{bottom:311.373184pt;}
.yd4{bottom:311.920949pt;}
.y4b{bottom:318.105461pt;}
.y45{bottom:318.880267pt;}
.y102{bottom:320.138507pt;}
.yaa{bottom:324.430309pt;}
.y1b{bottom:326.936613pt;}
.y7a{bottom:327.292000pt;}
.y7d{bottom:329.597741pt;}
.y11c{bottom:330.102016pt;}
.yd3{bottom:330.649781pt;}
.y139{bottom:335.332773pt;}
.y44{bottom:337.609104pt;}
.y101{bottom:338.867339pt;}
.y10f{bottom:340.438016pt;}
.y7c{bottom:340.923509pt;}
.ya9{bottom:343.159141pt;}
.y77{bottom:345.230128pt;}
.y7b{bottom:345.236000pt;}
.y1a{bottom:345.665445pt;}
.yd2{bottom:349.378613pt;}
.y138{bottom:354.061605pt;}
.y11b{bottom:356.582848pt;}
.y100{bottom:357.596171pt;}
.y10e{bottom:359.166848pt;}
.y79{bottom:359.965333pt;}
.ya8{bottom:361.887973pt;}
.y19{bottom:364.394277pt;}
.y43{bottom:364.725600pt;}
.y42{bottom:364.729195pt;}
.y78{bottom:364.974667pt;}
.yd1{bottom:368.107445pt;}
.y75{bottom:372.526800pt;}
.yff{bottom:376.325003pt;}
.ya7{bottom:380.616805pt;}
.y18{bottom:383.123109pt;}
.y137{bottom:385.720773pt;}
.yd0{bottom:386.836277pt;}
.y7e{bottom:389.720000pt;}
.y72{bottom:390.465995pt;}
.y76{bottom:390.472133pt;}
.yfe{bottom:395.053835pt;}
.y41{bottom:396.667435pt;}
.ya6{bottom:399.345637pt;}
.y11a{bottom:400.970800pt;}
.y17{bottom:401.851941pt;}
.y10d{bottom:403.554800pt;}
.y136{bottom:404.449605pt;}
.y74{bottom:405.198667pt;}
.ycf{bottom:405.565109pt;}
.yfd{bottom:408.433333pt;}
.y73{bottom:410.208000pt;}
.yfc{bottom:413.791803pt;}
.y40{bottom:415.519461pt;}
.y6e{bottom:417.758800pt;}
.ya5{bottom:418.074469pt;}
.y16{bottom:420.580773pt;}
.y135{bottom:423.178437pt;}
.yce{bottom:424.293941pt;}
.y71{bottom:431.391509pt;}
.y70{bottom:431.391643pt;}
.yfb{bottom:432.520635pt;}
.y6a{bottom:433.377467pt;}
.y3f{bottom:434.248293pt;}
.y119{bottom:434.862800pt;}
.y6b{bottom:435.704133pt;}
.y6f{bottom:435.705467pt;}
.y69{bottom:435.712352pt;}
.ya4{bottom:436.803301pt;}
.y10c{bottom:437.444133pt;}
.y15{bottom:439.309605pt;}
.yfa{bottom:445.902800pt;}
.y6d{bottom:450.432133pt;}
.ycd{bottom:450.774773pt;}
.yf9{bottom:451.263803pt;}
.y134{bottom:454.837605pt;}
.y6c{bottom:455.444133pt;}
.y3e{bottom:460.729125pt;}
.ya3{bottom:463.284133pt;}
.y14{bottom:465.805941pt;}
.yf8{bottom:469.992635pt;}
.y133{bottom:473.566437pt;}
.y68{bottom:474.921968pt;}
.ycc{bottom:485.007605pt;}
.y66{bottom:488.304133pt;}
.yf7{bottom:488.721467pt;}
.y67{bottom:491.325467pt;}
.y132{bottom:492.295269pt;}
.y3d{bottom:494.961957pt;}
.y65{bottom:499.762800pt;}
.ycb{bottom:503.736437pt;}
.yf6{bottom:507.470187pt;}
.y131{bottom:511.024101pt;}
.y64{bottom:512.399301pt;}
.y3c{bottom:513.690789pt;}
.yca{bottom:522.465269pt;}
.y13{bottom:523.294773pt;}
.yf5{bottom:526.199019pt;}
.y63{bottom:531.131301pt;}
.ya2{bottom:531.638507pt;}
.ya1{bottom:531.638640pt;}
.y3b{bottom:532.419621pt;}
.ya0{bottom:535.962800pt;}
.yc9{bottom:541.194101pt;}
.y12{bottom:542.023605pt;}
.y130{bottom:542.683269pt;}
.yf4{bottom:544.927851pt;}
.y62{bottom:549.890507pt;}
.y3a{bottom:551.148453pt;}
.yc8{bottom:559.922933pt;}
.y11{bottom:560.752437pt;}
.y12f{bottom:561.412101pt;}
.yf3{bottom:563.656683pt;}
.y61{bottom:568.619339pt;}
.y39{bottom:569.877285pt;}
.y9f{bottom:576.510800pt;}
.yc7{bottom:578.657339pt;}
.y10{bottom:579.481269pt;}
.y12e{bottom:580.140933pt;}
.yf2{bottom:582.385515pt;}
.y60{bottom:587.348171pt;}
.y38{bottom:588.606117pt;}
.y5f{bottom:606.077003pt;}
.y37{bottom:607.334949pt;}
.y9e{bottom:610.186309pt;}
.y12d{bottom:611.800101pt;}
.yf{bottom:613.714101pt;}
.y9d{bottom:614.498800pt;}
.yc6{bottom:623.045291pt;}
.y5e{bottom:624.805835pt;}
.y36{bottom:626.063781pt;}
.yf1{bottom:626.781957pt;}
.y12c{bottom:630.528933pt;}
.y9c{bottom:631.473307pt;}
.ye{bottom:632.442933pt;}
.y9b{bottom:635.794800pt;}
.ybf{bottom:640.672267pt;}
.yed{bottom:644.406933pt;}
.y35{bottom:644.792613pt;}
.y98{bottom:651.472267pt;}
.ybe{bottom:652.124267pt;}
.yec{bottom:655.861600pt;}
.y99{bottom:657.794309pt;}
.y96{bottom:657.794443pt;}
.y5d{bottom:659.044325pt;}
.y10b{bottom:660.853600pt;}
.y95{bottom:662.108267pt;}
.y12b{bottom:662.188101pt;}
.y34{bottom:663.521445pt;}
.ybb{bottom:669.377755pt;}
.ye9{bottom:673.127925pt;}
.y9a{bottom:673.701413pt;}
.y97{bottom:673.701547pt;}
.yd{bottom:679.036267pt;}
.y12a{bottom:680.916933pt;}
.y33{bottom:682.250277pt;}
.yb3{bottom:684.928267pt;}
.yde{bottom:688.662933pt;}
.yc{bottom:689.403109pt;}
.y5c{bottom:689.959301pt;}
.y10a{bottom:694.744267pt;}
.y32{bottom:700.979109pt;}
.yb{bottom:704.909317pt;}
.y94{bottom:705.626933pt;}
.y5b{bottom:708.695301pt;}
.ydf{bottom:710.042949pt;}
.y129{bottom:712.576101pt;}
.yb4{bottom:715.951771pt;}
.y31{bottom:719.707941pt;}
.ya{bottom:720.415525pt;}
.y5a{bottom:727.428635pt;}
.y128{bottom:731.304933pt;}
.ye0{bottom:731.314437pt;}
.y9{bottom:735.921733pt;}
.y30{bottom:738.436773pt;}
.y90{bottom:739.589109pt;}
.y8f{bottom:743.613600pt;}
.y91{bottom:743.614933pt;}
.y93{bottom:743.620768pt;}
.y59{bottom:746.169269pt;}
.yb5{bottom:746.975275pt;}
.ye1{bottom:752.694453pt;}
.y8e{bottom:752.852267pt;}
.y2f{bottom:757.165605pt;}
.y92{bottom:760.024267pt;}
.y127{bottom:762.964101pt;}
.y8{bottom:764.341899pt;}
.y58{bottom:764.898101pt;}
.ye2{bottom:774.058965pt;}
.y2e{bottom:775.894437pt;}
.yb6{bottom:777.998779pt;}
.y126{bottom:781.692933pt;}
.y7{bottom:782.435067pt;}
.y57{bottom:783.632635pt;}
.ybc{bottom:789.252400pt;}
.yea{bottom:791.117733pt;}
.ybd{bottom:791.736267pt;}
.y8d{bottom:794.200400pt;}
.y2d{bottom:794.623269pt;}
.yeb{bottom:795.040400pt;}
.ye3{bottom:795.438981pt;}
.y125{bottom:800.421765pt;}
.y8c{bottom:800.807909pt;}
.y56{bottom:802.371936pt;}
.y8b{bottom:802.506933pt;}
.y8a{bottom:804.833600pt;}
.yc5{bottom:808.705691pt;}
.yb7{bottom:809.022283pt;}
.y2c{bottom:813.352101pt;}
.ye4{bottom:816.710469pt;}
.y55{bottom:821.100768pt;}
.yc4{bottom:824.271707pt;}
.y2b{bottom:832.080933pt;}
.ye5{bottom:838.090485pt;}
.y6{bottom:839.291341pt;}
.y54{bottom:839.829600pt;}
.yc3{bottom:839.837723pt;}
.yb8{bottom:840.045787pt;}
.y89{bottom:846.869733pt;}
.y2a{bottom:850.809765pt;}
.yf0{bottom:853.326405pt;}
.yc2{bottom:855.403739pt;}
.y53{bottom:858.571435pt;}
.ye6{bottom:859.470501pt;}
.y5{bottom:859.961867pt;}
.yef{bottom:868.876917pt;}
.y29{bottom:869.538597pt;}
.yc1{bottom:870.954251pt;}
.yb9{bottom:871.069291pt;}
.y52{bottom:877.306101pt;}
.ye7{bottom:880.741989pt;}
.yee{bottom:884.442933pt;}
.yc0{bottom:886.520267pt;}
.y88{bottom:890.671067pt;}
.y28{bottom:896.034933pt;}
.yba{bottom:902.092795pt;}
.ye8{bottom:902.122005pt;}
.y4{bottom:928.911200pt;}
.y3{bottom:941.180032pt;}
.y27{bottom:943.840533pt;}
.y2{bottom:953.459200pt;}
.y1{bottom:1110.871200pt;}
.h24{height:13.364448pt;}
.h8{height:23.111296pt;}
.h1a{height:29.106176pt;}
.h3{height:31.008000pt;}
.hb{height:38.760000pt;}
.h7{height:42.444000pt;}
.h6{height:43.659264pt;}
.hf{height:43.721280pt;}
.h1b{height:44.775552pt;}
.h9{height:46.512000pt;}
.h21{height:46.530688pt;}
.h2{height:46.625000pt;}
.h2e{height:51.623509pt;}
.h4{height:52.392619pt;}
.hc{height:53.027221pt;}
.h3a{height:53.470165pt;}
.h13{height:53.472789pt;}
.h15{height:53.491328pt;}
.h27{height:53.491861pt;}
.h14{height:53.496661pt;}
.h26{height:53.530475pt;}
.h10{height:54.711509pt;}
.h18{height:55.813333pt;}
.h3b{height:56.328832pt;}
.h16{height:56.596032pt;}
.h20{height:56.608000pt;}
.h5{height:58.667136pt;}
.ha{height:58.695312pt;}
.h3d{height:59.969472pt;}
.h2c{height:60.382187pt;}
.he{height:60.465600pt;}
.h28{height:60.925376pt;}
.h37{height:60.971243pt;}
.h12{height:61.837227pt;}
.h3e{height:62.202048pt;}
.h29{height:62.614763pt;}
.h1d{height:62.704000pt;}
.h22{height:62.709333pt;}
.h35{height:62.714667pt;}
.h25{height:63.761963pt;}
.h1f{height:63.772629pt;}
.h39{height:63.808640pt;}
.h17{height:67.898667pt;}
.h3c{height:67.909333pt;}
.h19{height:69.772267pt;}
.h1e{height:79.958763pt;}
.h32{height:79.959296pt;}
.h38{height:80.000107pt;}
.h36{height:80.000640pt;}
.h2b{height:94.151509pt;}
.h2a{height:95.570923pt;}
.h33{height:103.457536pt;}
.h34{height:105.247467pt;}
.hd{height:129.179328pt;}
.h2d{height:132.218112pt;}
.h11{height:144.504555pt;}
.h23{height:146.429291pt;}
.h30{height:169.175552pt;}
.h31{height:169.179648pt;}
.h2f{height:185.282944pt;}
.h1c{height:200.967552pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:93.438800pt;}
.x1e{left:94.931067pt;}
.x5f{left:100.973360pt;}
.xf{left:111.762944pt;}
.x6{left:112.913600pt;}
.x4e{left:118.663424pt;}
.x60{left:124.585952pt;}
.x4f{left:131.314688pt;}
.x58{left:133.130240pt;}
.x53{left:143.285467pt;}
.x54{left:155.448133pt;}
.x33{left:169.333467pt;}
.x50{left:170.961467pt;}
.x39{left:172.625733pt;}
.x59{left:178.220133pt;}
.x5{left:180.679208pt;}
.x51{left:182.775515pt;}
.x15{left:185.365445pt;}
.x20{left:190.545141pt;}
.x12{left:191.760757pt;}
.x52{left:193.829867pt;}
.x32{left:195.418800pt;}
.x5a{left:201.088533pt;}
.x3f{left:202.566800pt;}
.x5d{left:206.151067pt;}
.x11{left:209.298800pt;}
.xd{left:213.006175pt;}
.x5e{left:214.477733pt;}
.x2d{left:230.861104pt;}
.x21{left:235.202267pt;}
.x29{left:236.371632pt;}
.x1{left:239.401467pt;}
.x61{left:247.842752pt;}
.x3a{left:250.320400pt;}
.xb{left:258.378811pt;}
.x3b{left:260.149189pt;}
.xa{left:263.641867pt;}
.x17{left:264.577600pt;}
.x16{left:267.285600pt;}
.x1d{left:272.897259pt;}
.x49{left:275.368400pt;}
.x4b{left:281.352267pt;}
.x46{left:282.519067pt;}
.xc{left:283.831063pt;}
.x22{left:285.391669pt;}
.x2b{left:287.706400pt;}
.x2a{left:289.242400pt;}
.x4c{left:290.485600pt;}
.x4a{left:295.232267pt;}
.xe{left:297.356533pt;}
.x34{left:298.401467pt;}
.x40{left:307.118800pt;}
.x24{left:316.028933pt;}
.x25{left:318.340933pt;}
.x23{left:319.876933pt;}
.x3e{left:323.484267pt;}
.x47{left:326.299067pt;}
.x7{left:333.486283pt;}
.x2c{left:336.547733pt;}
.x18{left:341.072267pt;}
.x13{left:345.397733pt;}
.x19{left:347.525600pt;}
.x8{left:354.850795pt;}
.x26{left:367.182267pt;}
.x41{left:373.001467pt;}
.x10{left:378.202000pt;}
.x2e{left:388.329067pt;}
.x1f{left:391.819600pt;}
.x9{left:393.781339pt;}
.x3d{left:397.951675pt;}
.x35{left:403.518256pt;}
.x3{left:410.193531pt;}
.x48{left:412.939067pt;}
.x5b{left:414.562933pt;}
.x14{left:417.630869pt;}
.x42{left:419.234800pt;}
.x3c{left:423.839067pt;}
.x1a{left:428.010933pt;}
.x1b{left:433.493600pt;}
.x2f{left:457.410400pt;}
.x57{left:461.055344pt;}
.x27{left:462.545067pt;}
.x30{left:467.038400pt;}
.x4d{left:473.470933pt;}
.x36{left:498.228133pt;}
.x43{left:501.049733pt;}
.x28{left:503.555733pt;}
.x31{left:517.845200pt;}
.x56{left:522.280640pt;}
.x55{left:529.877600pt;}
.x44{left:531.449403pt;}
.x37{left:554.115067pt;}
.x45{left:564.571067pt;}
.x38{left:571.145733pt;}
.x2{left:602.029691pt;}
.x62{left:604.248704pt;}
.x5c{left:641.020533pt;}
.x1c{left:662.185547pt;}
}




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