
    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_486e654d86c684bd088fcf9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.878418;font-style:normal;font-weight: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_c6afee5e535209bf342f3496.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55c4e29034edd476ba3ed143.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7f8c1fc2035da02cbbf41bfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.680176;font-style:normal;font-weight: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_1821d4704ce5f35ea5c76b22.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.827637;font-style:normal;font-weight: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_00f6b7dc457f65011aa1b231.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.836426;font-style:normal;font-weight: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_adcd694cc4d10ca6cdfb9185.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;font-style:normal;font-weight: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_2a1030a1e669fee7f9ec7eae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1c12d12c143f728a9dda5e75.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.840332;font-style:normal;font-weight: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_e8036d665c5fd5c5d16050f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2108eb21f9380ae5bbc40255.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862793;font-style:normal;font-weight: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_75b182f2b7226b9b26df9d52.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a02dbdaae9ae0acffc1e4ca2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.837891;font-style:normal;font-weight: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_679da1ad6c647b4efdb33cef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a1535ffef61e6fa35610896c.woff2')format("woff");}.fff{font-family:fff;line-height:0.860352;font-style:normal;font-weight: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_b6068e28d6933311c658ce06.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_17d961203be96acfe2d10605.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.845703;font-style:normal;font-weight: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_4716507c505ddd5ad208232f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.047852;font-style:normal;font-weight: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_b1d0695dfc42324c19ef16d1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5118b919a0cd05657db26d96.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.875000;font-style:normal;font-weight: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_8d2aa4492781a09f5b926289.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.837891;font-style:normal;font-weight: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_ca597ec51e79d65aabf66fe5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_0308f6a588350ae639c00f54.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.845703;font-style:normal;font-weight: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_141d6892c35b12395d0c64b8.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.891113;font-style:normal;font-weight: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_716316e00d95c2dbdbb9ce01.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.863281;font-style:normal;font-weight: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_439e43df7dbc81e42ff5b686.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.674316;font-style:normal;font-weight: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_6cb4f81a7b4bde8d09f672e6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a9f09b8e3be1cf870403248a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.675293;font-style:normal;font-weight: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_26d21071cf888f3e2d24055f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.842773;font-style:normal;font-weight: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_4c4d7f8fb43b09f187088534.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_18ba5074ffc1cadec1f9ac67.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.690918;font-style:normal;font-weight: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_1f63f8db9f0941c4d7d6f810.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_39a08999beab8719a60a9ff7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.842285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_3c66865c1a65beb43cecd48b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.863281;font-style:normal;font-weight: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_216fbfcccf6306a61f845497.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_18ac7e6110b7507630a460a8.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.842773;font-style:normal;font-weight: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_e0d032523cf07817c43119eb.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_ade3bcba551eb7197eb05146.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.857910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_e475076f54f409ba5c29ca9a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.842773;font-style:normal;font-weight: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_a65809c1eb0b70689f71f3c2.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_d249f929daaddba9efa932c6.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.679688;font-style:normal;font-weight: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_52ae8bb200781a63af8ab4b5.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.842773;font-style:normal;font-weight: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_1c9d680074872cb975ff6013.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.863281;font-style:normal;font-weight: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_5ae81fa4a97bfc82caee7d69.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.845703;font-style:normal;font-weight: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_b5bf474c50fbca5812727e4a.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_39d63bd940cb5dfd85071d7f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.857422;font-style:normal;font-weight: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_a65a18f83b58603be4e60a8d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_0a5826dcb74e7ff00c6b7dd9.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.842773;font-style:normal;font-weight: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_1821b67159a404e602f6fb17.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_70d2d7d32d3f4b2fbe410eda.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.690430;font-style:normal;font-weight: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_d4412559d20c72098b6fda45.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.842773;font-style:normal;font-weight: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_9bf206456f3ef246e50a6e8f.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.863281;font-style:normal;font-weight: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_a82e66062cf4ea25acf64fb0.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.845703;font-style:normal;font-weight: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_32a17dcc74b72445f3eaa949.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_c1119bb884c4212c1ae7f73e.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.846680;font-style:normal;font-weight: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_d4c5019fe94a29cf6792185a.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_319e6589774e5763914c8b15.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.842773;font-style:normal;font-weight: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_2badc675cf66c19fc5ef70db.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_1487c96a6e5fe62f728f23f9.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.679688;font-style:normal;font-weight: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_ae88831fd51fa6e028e9e7f7.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.840820;font-style:normal;font-weight: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_ad723e579c0529dff48fd3d5.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.863281;font-style:normal;font-weight: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_257bf2ac540706f4dfbc0d88.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.004395;font-style:normal;font-weight: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_24de58eb4c25fd566ad561d3.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.081543;font-style:normal;font-weight: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_f0901f043e175aae64524332.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.863281;font-style:normal;font-weight: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_2c870c239a20ee91d0ecd48f.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_983381a36e51f4904a922b2e.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_2c7ebba34e5adb4fae0ed3f4.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.000000,-0.180000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.180000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.180000,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.190475,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.190475,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.190475,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.230770,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.230770,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.230770,0.250000,0.000000,0,0);}
.m6{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);}
.md{transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178571,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mc{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215909,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,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);}
.v2{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.ls6{letter-spacing:-0.864000px;}
.ls3{letter-spacing:-0.588000px;}
.ls58{letter-spacing:-0.439200px;}
.ls63{letter-spacing:-0.387072px;}
.ls73{letter-spacing:-0.374976px;}
.ls19{letter-spacing:-0.326592px;}
.ls68{letter-spacing:-0.312998px;}
.ls1b{letter-spacing:-0.308448px;}
.lsf{letter-spacing:-0.306720px;}
.ls71{letter-spacing:-0.302400px;}
.ls18{letter-spacing:-0.296352px;}
.ls1a{letter-spacing:-0.284256px;}
.ls65{letter-spacing:-0.272160px;}
.ls67{letter-spacing:-0.261896px;}
.ls64{letter-spacing:-0.247968px;}
.ls66{letter-spacing:-0.242733px;}
.ls1d{letter-spacing:-0.229824px;}
.ls6a{letter-spacing:-0.223776px;}
.ls6b{letter-spacing:-0.217728px;}
.ls6c{letter-spacing:-0.211680px;}
.ls1c{letter-spacing:-0.205632px;}
.ls75{letter-spacing:-0.193536px;}
.ls69{letter-spacing:-0.187488px;}
.ls6e{letter-spacing:-0.181440px;}
.ls10{letter-spacing:-0.163584px;}
.ls11{letter-spacing:-0.143136px;}
.ls6d{letter-spacing:-0.120960px;}
.lsc{letter-spacing:-0.114912px;}
.ls72{letter-spacing:-0.108864px;}
.ls6f{letter-spacing:-0.102816px;}
.ls77{letter-spacing:-0.096768px;}
.lse{letter-spacing:-0.081792px;}
.ls61{letter-spacing:-0.030418px;}
.ls27{letter-spacing:-0.028800px;}
.ls2e{letter-spacing:-0.022813px;}
.ls26{letter-spacing:-0.021600px;}
.ls2f{letter-spacing:-0.015209px;}
.ls29{letter-spacing:-0.014400px;}
.ls94{letter-spacing:-0.007604px;}
.ls17{letter-spacing:-0.007200px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000144px;}
.ls38{letter-spacing:0.002880px;}
.ls5a{letter-spacing:0.003024px;}
.ls99{letter-spacing:0.003168px;}
.ls43{letter-spacing:0.004320px;}
.ls1e{letter-spacing:0.007200px;}
.ls40{letter-spacing:0.007344px;}
.ls50{letter-spacing:0.007604px;}
.ls3b{letter-spacing:0.008496px;}
.lsa3{letter-spacing:0.008640px;}
.lsa0{letter-spacing:0.009125px;}
.ls98{letter-spacing:0.010080px;}
.ls45{letter-spacing:0.011520px;}
.ls93{letter-spacing:0.011808px;}
.ls3d{letter-spacing:0.012960px;}
.ls3e{letter-spacing:0.013248px;}
.ls91{letter-spacing:0.013968px;}
.ls4c{letter-spacing:0.014112px;}
.ls28{letter-spacing:0.014400px;}
.ls4f{letter-spacing:0.014753px;}
.ls2c{letter-spacing:0.014905px;}
.ls53{letter-spacing:0.015209px;}
.ls32{letter-spacing:0.015552px;}
.ls2d{letter-spacing:0.015840px;}
.ls31{letter-spacing:0.017280px;}
.ls23{letter-spacing:0.021600px;}
.ls95{letter-spacing:0.022813px;}
.lsa2{letter-spacing:0.023904px;}
.ls20{letter-spacing:0.028800px;}
.ls2b{letter-spacing:0.030418px;}
.ls7a{letter-spacing:0.031680px;}
.ls62{letter-spacing:0.033120px;}
.ls81{letter-spacing:0.034272px;}
.ls90{letter-spacing:0.034560px;}
.ls74{letter-spacing:0.035712px;}
.ls22{letter-spacing:0.036000px;}
.ls2a{letter-spacing:0.038022px;}
.ls42{letter-spacing:0.043200px;}
.ls37{letter-spacing:0.050400px;}
.ls52{letter-spacing:0.159840px;}
.ls5{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.233856px;}
.ls7{letter-spacing:0.258912px;}
.ls15{letter-spacing:0.292320px;}
.ls4a{letter-spacing:0.354240px;}
.ls70{letter-spacing:0.504000px;}
.ls78{letter-spacing:0.711792px;}
.ls79{letter-spacing:0.712800px;}
.ls4{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.263599px;}
.ls7b{letter-spacing:1.409760px;}
.ls8a{letter-spacing:1.736640px;}
.ls9{letter-spacing:1.762560px;}
.ls0{letter-spacing:1.800000px;}
.lsb{letter-spacing:2.004480px;}
.ls8{letter-spacing:2.021760px;}
.lsd{letter-spacing:2.085696px;}
.ls14{letter-spacing:2.129760px;}
.ls54{letter-spacing:2.134080px;}
.ls35{letter-spacing:2.160000px;}
.ls7f{letter-spacing:2.282400px;}
.ls7c{letter-spacing:2.383200px;}
.ls21{letter-spacing:2.420640px;}
.ls12{letter-spacing:2.564064px;}
.ls46{letter-spacing:2.568960px;}
.ls9b{letter-spacing:2.575152px;}
.ls9a{letter-spacing:2.576736px;}
.ls47{letter-spacing:2.831040px;}
.lsa{letter-spacing:2.842560px;}
.ls60{letter-spacing:2.928960px;}
.ls9c{letter-spacing:3.225600px;}
.ls13{letter-spacing:3.265632px;}
.ls4e{letter-spacing:3.479040px;}
.ls4b{letter-spacing:3.493440px;}
.ls36{letter-spacing:3.886560px;}
.ls5e{letter-spacing:3.909456px;}
.ls56{letter-spacing:3.988800px;}
.ls30{letter-spacing:4.118400px;}
.ls51{letter-spacing:4.344768px;}
.ls85{letter-spacing:4.377024px;}
.ls5f{letter-spacing:4.716000px;}
.ls3f{letter-spacing:4.835520px;}
.ls76{letter-spacing:5.185440px;}
.ls5b{letter-spacing:5.382720px;}
.ls25{letter-spacing:5.512320px;}
.ls59{letter-spacing:5.947200px;}
.ls87{letter-spacing:6.037920px;}
.ls44{letter-spacing:6.124320px;}
.ls9d{letter-spacing:6.178752px;}
.ls8c{letter-spacing:6.258240px;}
.ls8e{letter-spacing:6.504480px;}
.ls48{letter-spacing:6.840000px;}
.ls39{letter-spacing:7.119360px;}
.ls41{letter-spacing:7.236288px;}
.ls3c{letter-spacing:7.266240px;}
.ls24{letter-spacing:7.533648px;}
.ls8f{letter-spacing:7.665120px;}
.lsa6{letter-spacing:8.214768px;}
.lsa5{letter-spacing:8.214912px;}
.lsa8{letter-spacing:8.215200px;}
.lsa7{letter-spacing:8.216352px;}
.ls9f{letter-spacing:8.691840px;}
.ls57{letter-spacing:9.184320px;}
.ls84{letter-spacing:9.361872px;}
.ls89{letter-spacing:9.662112px;}
.ls7d{letter-spacing:9.673920px;}
.ls7e{letter-spacing:9.675216px;}
.ls82{letter-spacing:10.216800px;}
.ls80{letter-spacing:10.244160px;}
.ls8b{letter-spacing:10.310400px;}
.ls55{letter-spacing:11.685600px;}
.ls86{letter-spacing:11.983680px;}
.ls49{letter-spacing:12.058560px;}
.ls34{letter-spacing:12.477600px;}
.lsa1{letter-spacing:13.782250px;}
.ls4d{letter-spacing:16.171920px;}
.ls83{letter-spacing:17.619120px;}
.ls88{letter-spacing:18.172800px;}
.ls3a{letter-spacing:18.843840px;}
.ls5d{letter-spacing:19.077120px;}
.ls33{letter-spacing:21.115728px;}
.ls8d{letter-spacing:22.284000px;}
.ls96{letter-spacing:36.425170px;}
.ls5c{letter-spacing:48.997440px;}
.lsa4{letter-spacing:58.808160px;}
.ls9e{letter-spacing:66.967562px;}
.ls92{letter-spacing:79.617168px;}
.ls97{letter-spacing:302.914454px;}
.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;}
}
.ws5{word-spacing:-25.560000px;}
.ws4{word-spacing:-24.442560px;}
.ws2{word-spacing:-23.621760px;}
.ws3{word-spacing:-23.362560px;}
.ws7{word-spacing:-21.138912px;}
.ws6{word-spacing:-21.113856px;}
.ws17{word-spacing:-19.049071px;}
.ws18{word-spacing:-19.041467px;}
.ws28{word-spacing:-19.026258px;}
.ws1d{word-spacing:-19.018654px;}
.ws16{word-spacing:-19.011049px;}
.ws31{word-spacing:-19.003445px;}
.ws1b{word-spacing:-18.995840px;}
.ws19{word-spacing:-18.988236px;}
.ws30{word-spacing:-18.980632px;}
.ws27{word-spacing:-18.504000px;}
.ws32{word-spacing:-18.050400px;}
.ws1c{word-spacing:-18.043200px;}
.ws11{word-spacing:-18.036000px;}
.ws13{word-spacing:-18.028800px;}
.ws14{word-spacing:-18.021600px;}
.ws15{word-spacing:-18.014400px;}
.wsf{word-spacing:-18.007200px;}
.wse{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.992800px;}
.ws1a{word-spacing:-17.985600px;}
.ws10{word-spacing:-17.978400px;}
.ws12{word-spacing:-17.971200px;}
.ws21{word-spacing:-15.656284px;}
.ws0{word-spacing:-15.360000px;}
.wsa{word-spacing:-15.120000px;}
.ws2e{word-spacing:-15.023232px;}
.ws26{word-spacing:-15.017184px;}
.ws23{word-spacing:-14.999040px;}
.ws25{word-spacing:-14.938560px;}
.ws2d{word-spacing:-14.926464px;}
.wsc{word-spacing:-14.914368px;}
.ws2b{word-spacing:-14.908320px;}
.ws22{word-spacing:-14.896224px;}
.wsd{word-spacing:-14.890176px;}
.ws24{word-spacing:-14.872032px;}
.ws20{word-spacing:-14.847840px;}
.ws29{word-spacing:-14.835744px;}
.ws9{word-spacing:-14.823648px;}
.ws2a{word-spacing:-14.817600px;}
.ws1f{word-spacing:-14.811552px;}
.wsb{word-spacing:-14.793408px;}
.ws2c{word-spacing:-14.745024px;}
.ws2f{word-spacing:-0.054720px;}
.ws1e{word-spacing:-0.030240px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-17.225749px;}
._8{margin-left:-16.180432px;}
._1b{margin-left:-11.736000px;}
._1a{margin-left:-10.709280px;}
._6{margin-left:-9.633663px;}
._1f{margin-left:-5.371344px;}
._e{margin-left:-4.315104px;}
._f{margin-left:-3.259296px;}
._9{margin-left:-2.066400px;}
._1{margin-left:-1.044000px;}
._3{width:1.044000px;}
._2{width:2.154000px;}
._5{width:3.378000px;}
._4{width:4.428000px;}
._a{width:5.428800px;}
._17{width:6.437088px;}
._10{width:7.488000px;}
._11{width:8.532000px;}
._b{width:9.626400px;}
._d{width:10.747440px;}
._c{width:11.815200px;}
._12{width:13.075200px;}
._18{width:14.097600px;}
._13{width:15.314400px;}
._16{width:16.466400px;}
._15{width:19.647648px;}
._14{width:21.074544px;}
._20{width:22.291200px;}
._1d{width:23.947200px;}
._43{width:25.702939px;}
._40{width:26.862768px;}
._41{width:28.244592px;}
._1e{width:29.325600px;}
._30{width:34.632000px;}
._31{width:36.425170px;}
._3e{width:37.958030px;}
._3f{width:39.269223px;}
._48{width:40.405553px;}
._49{width:41.816704px;}
._36{width:45.432000px;}
._37{width:47.786663px;}
._1c{width:49.017600px;}
._39{width:56.138400px;}
._52{width:57.867888px;}
._3a{width:59.284056px;}
._21{width:63.000000px;}
._3d{width:64.245600px;}
._22{width:66.660343px;}
._3b{width:72.322272px;}
._46{width:73.656000px;}
._55{width:75.267634px;}
._3c{width:76.430197px;}
._47{width:77.990928px;}
._25{width:79.488000px;}
._54{width:81.192960px;}
._27{width:82.644336px;}
._26{width:84.104882px;}
._53{width:85.714585px;}
._4a{width:87.912000px;}
._59{width:90.484990px;}
._4b{width:92.697876px;}
._56{width:94.365324px;}
._57{width:98.811830px;}
._34{width:118.008000px;}
._4f{width:119.736000px;}
._35{width:124.180174px;}
._38{width:125.754289px;}
._4e{width:127.237150px;}
._4c{width:131.529600px;}
._2f{width:134.222400px;}
._4d{width:138.864308px;}
._2e{width:141.976800px;}
._2d{width:149.981970px;}
._50{width:155.296800px;}
._58{width:156.859200px;}
._29{width:157.946400px;}
._51{width:164.004520px;}
._2a{width:166.833364px;}
._45{width:169.773120px;}
._44{width:178.624433px;}
._19{width:180.000000px;}
._2c{width:212.976000px;}
._2b{width:225.045197px;}
._42{width:238.740757px;}
._33{width:286.786080px;}
._32{width:303.006012px;}
._28{width:337.896000px;}
._24{width:355.776480px;}
._23{width:375.818026px;}
._0{width:2274.360000px;}
.fcd{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fcf{color:rgb(46,46,46);}
.fc6{color:rgb(191,191,191);}
.fca{color:rgb(17,17,17);}
.fce{color:rgb(47,84,150);}
.fc4{color:rgb(166,166,166);}
.fcb{color:rgb(166,166,166);}
.fcc{color:rgb(255,255,255);}
.fc1{color:rgb(151,152,154);}
.fc2{color:rgb(151,152,154);}
.fc7{color:rgb(4,50,255);}
.fc8{color:rgb(192,0,0);}
.fc3{color:transparent;}
.fc5{color:rgb(112,48,160);}
.fc9{color:rgb(0,0,255);}
.fs11{font-size:30.240000px;}
.fs12{font-size:41.760000px;}
.fse{font-size:44.640000px;}
.fs6{font-size:48.000000px;}
.fs15{font-size:54.720000px;}
.fs14{font-size:57.600000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:60.480000px;}
.fs13{font-size:63.877126px;}
.fs10{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsf{font-size:76.044197px;}
.fsd{font-size:80.640000px;}
.fsc{font-size:83.520000px;}
.fs7{font-size:86.400000px;}
.fs1{font-size:87.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:102.240000px;}
.fs3{font-size:105.000000px;}
.fsa{font-size:105.120000px;}
.fsb{font-size:119.520000px;}
.fs4{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y168{bottom:0.638700px;}
.y155{bottom:0.758700px;}
.y153{bottom:0.878700px;}
.y15a{bottom:1.238700px;}
.y173{bottom:1.358700px;}
.y25{bottom:1.500000px;}
.y2a{bottom:1.537500px;}
.y164{bottom:1.538700px;}
.y16e{bottom:1.658700px;}
.y142{bottom:3.599955px;}
.y118{bottom:3.599970px;}
.yd3{bottom:3.878700px;}
.yf3{bottom:3.977550px;}
.y50{bottom:4.958700px;}
.y13b{bottom:5.057550px;}
.y31{bottom:5.640000px;}
.y2f{bottom:7.320000px;}
.y125{bottom:12.317550px;}
.yfc{bottom:12.617550px;}
.y145{bottom:12.977550px;}
.y123{bottom:13.037550px;}
.y127{bottom:13.097550px;}
.yfa{bottom:13.337550px;}
.yfe{bottom:13.397550px;}
.y15e{bottom:14.738700px;}
.ye2{bottom:14.858700px;}
.y157{bottom:15.038700px;}
.yde{bottom:15.158700px;}
.ydc{bottom:15.278700px;}
.y161{bottom:15.338700px;}
.y15b{bottom:15.638700px;}
.ye0{bottom:15.758700px;}
.y165{bottom:15.938700px;}
.y170{bottom:16.058700px;}
.yf8{bottom:22.337550px;}
.y121{bottom:26.717550px;}
.yf7{bottom:27.017550px;}
.y16a{bottom:30.638700px;}
.y141{bottom:30.917595px;}
.y144{bottom:30.977550px;}
.y171{bottom:32.258700px;}
.y2e{bottom:32.520000px;}
.y15d{bottom:32.738700px;}
.y16c{bottom:32.858700px;}
.y167{bottom:33.038700px;}
.y160{bottom:33.338700px;}
.y159{bottom:33.638700px;}
.y163{bottom:33.938700px;}
.y146{bottom:39.977550px;}
.y122{bottom:40.037550px;}
.yf9{bottom:40.337550px;}
.y112{bottom:40.397550px;}
.y16f{bottom:48.458700px;}
.y30{bottom:49.500000px;}
.y4f{bottom:51.000000px;}
.y117{bottom:51.278730px;}
.y13e{bottom:52.358730px;}
.yf2{bottom:52.500000px;}
.y14f{bottom:52.877595px;}
.y33{bottom:55.860000px;}
.yd2{bottom:56.318700px;}
.y4e{bottom:56.678700px;}
.yf1{bottom:57.197550px;}
.y29{bottom:57.375000px;}
.y143{bottom:57.977550px;}
.y23{bottom:62.287500px;}
.y2b{bottom:74.287500px;}
.y22{bottom:80.662500px;}
.y21{bottom:99.037500px;}
.y111{bottom:111.197550px;}
.y70{bottom:111.758700px;}
.yb0{bottom:114.278700px;}
.y139{bottom:116.597550px;}
.ye8{bottom:118.238700px;}
.y20{bottom:120.412500px;}
.yef{bottom:122.198700px;}
.y187{bottom:126.158700px;}
.y14b{bottom:127.397550px;}
.y1ad{bottom:132.278700px;}
.yce{bottom:132.638700px;}
.y110{bottom:132.797550px;}
.y87{bottom:132.998700px;}
.yaf{bottom:135.878700px;}
.y151{bottom:143.597550px;}
.y6f{bottom:144.158700px;}
.y138{bottom:148.997550px;}
.y10f{bottom:150.000000px;}
.ye7{bottom:150.638700px;}
.yee{bottom:154.598700px;}
.y140{bottom:156.038700px;}
.y1f{bottom:157.155000px;}
.y186{bottom:158.558700px;}
.y14a{bottom:159.797550px;}
.y198{bottom:164.318700px;}
.y1ac{bottom:164.678700px;}
.ycd{bottom:165.038700px;}
.y116{bottom:165.197550px;}
.y86{bottom:165.398700px;}
.yae{bottom:168.278700px;}
.y28{bottom:170.700000px;}
.y6e{bottom:176.558700px;}
.y10e{bottom:177.000000px;}
.y137{bottom:181.397550px;}
.ye6{bottom:183.038700px;}
.y150{bottom:186.797550px;}
.yed{bottom:186.998700px;}
.y185{bottom:190.958700px;}
.y1e{bottom:193.950000px;}
.y197{bottom:196.718700px;}
.y1ab{bottom:197.078700px;}
.ycc{bottom:197.438700px;}
.y115{bottom:197.597550px;}
.y85{bottom:197.798700px;}
.yad{bottom:200.678700px;}
.y136{bottom:202.997550px;}
.y10d{bottom:204.000000px;}
.y13f{bottom:208.598700px;}
.y6d{bottom:208.958700px;}
.ye5{bottom:215.438700px;}
.y114{bottom:219.197550px;}
.yec{bottom:219.398700px;}
.y135{bottom:220.500000px;}
.y184{bottom:223.358700px;}
.y149{bottom:224.597550px;}
.y196{bottom:229.118700px;}
.y1aa{bottom:229.478700px;}
.ycb{bottom:229.838700px;}
.y84{bottom:230.198700px;}
.y1d{bottom:230.325000px;}
.y10c{bottom:231.000000px;}
.yac{bottom:233.078700px;}
.y113{bottom:240.797550px;}
.y6c{bottom:241.358700px;}
.y148{bottom:246.197550px;}
.y134{bottom:247.500000px;}
.ye4{bottom:247.838700px;}
.yeb{bottom:251.798700px;}
.y183{bottom:255.758700px;}
.y10b{bottom:258.000000px;}
.y195{bottom:261.518700px;}
.y1a9{bottom:261.878700px;}
.yca{bottom:262.238700px;}
.y83{bottom:262.598700px;}
.yab{bottom:265.478700px;}
.y1c{bottom:267.075000px;}
.y147{bottom:267.797550px;}
.y14e{bottom:273.038700px;}
.y6b{bottom:273.758700px;}
.y133{bottom:274.500000px;}
.ye3{bottom:280.238700px;}
.yea{bottom:284.198700px;}
.y10a{bottom:285.000000px;}
.y182{bottom:288.158700px;}
.y194{bottom:293.918700px;}
.y1a8{bottom:294.278700px;}
.yc9{bottom:294.638700px;}
.y82{bottom:294.998700px;}
.yaa{bottom:297.878700px;}
.ye1{bottom:298.500000px;}
.y132{bottom:301.500000px;}
.y1b{bottom:303.825000px;}
.y14d{bottom:303.998700px;}
.y6a{bottom:306.158700px;}
.y27{bottom:307.200000px;}
.y109{bottom:312.000000px;}
.y81{bottom:316.598700px;}
.y181{bottom:320.558700px;}
.y193{bottom:326.318700px;}
.y1a7{bottom:326.678700px;}
.yc8{bottom:327.038700px;}
.yd0{bottom:327.398700px;}
.y26{bottom:328.200000px;}
.y131{bottom:328.500000px;}
.ydf{bottom:330.000000px;}
.ya9{bottom:330.278700px;}
.y14c{bottom:332.798700px;}
.y80{bottom:338.198700px;}
.y69{bottom:338.918700px;}
.y108{bottom:339.000000px;}
.y1a{bottom:340.230000px;}
.y172{bottom:345.000000px;}
.y11d{bottom:348.998700px;}
.ya8{bottom:351.878700px;}
.y180{bottom:352.958700px;}
.y130{bottom:355.500000px;}
.y192{bottom:358.718700px;}
.y1a6{bottom:359.078700px;}
.yc7{bottom:359.438700px;}
.y7f{bottom:359.798700px;}
.y4d{bottom:362.220000px;}
.ydd{bottom:363.000000px;}
.y107{bottom:366.000000px;}
.y68{bottom:371.318700px;}
.ya7{bottom:373.478700px;}
.y16d{bottom:376.500000px;}
.y19{bottom:376.980000px;}
.y7e{bottom:381.398700px;}
.y12f{bottom:382.500000px;}
.y17f{bottom:385.358700px;}
.y4c{bottom:388.500000px;}
.y191{bottom:391.118700px;}
.y1a5{bottom:391.478700px;}
.yc6{bottom:391.838700px;}
.ycf{bottom:392.198700px;}
.y106{bottom:393.000000px;}
.ya6{bottom:395.078700px;}
.ydb{bottom:396.000000px;}
.y7d{bottom:402.998700px;}
.y67{bottom:403.718700px;}
.y12e{bottom:409.500000px;}
.y18{bottom:413.730000px;}
.y11c{bottom:413.798700px;}
.y4b{bottom:414.420000px;}
.ya5{bottom:416.678700px;}
.y17e{bottom:417.758700px;}
.y105{bottom:420.000000px;}
.y190{bottom:423.518700px;}
.y1a4{bottom:423.878700px;}
.yc5{bottom:424.238700px;}
.y7c{bottom:424.598700px;}
.y66{bottom:436.118700px;}
.y12d{bottom:436.500000px;}
.ya4{bottom:438.278700px;}
.y4a{bottom:439.980000px;}
.y16b{bottom:442.500000px;}
.y11b{bottom:446.198700px;}
.y104{bottom:447.000000px;}
.y17{bottom:450.150000px;}
.y17d{bottom:450.158700px;}
.yda{bottom:455.198700px;}
.y18f{bottom:455.918700px;}
.y1a3{bottom:456.278700px;}
.yc4{bottom:456.638700px;}
.y7b{bottom:456.998700px;}
.ya3{bottom:459.878700px;}
.y12c{bottom:463.500000px;}
.y49{bottom:464.100000px;}
.y65{bottom:468.518700px;}
.y103{bottom:474.000000px;}
.y13a{bottom:475.500000px;}
.y11a{bottom:478.598700px;}
.ya2{bottom:481.478700px;}
.y17c{bottom:482.558700px;}
.y16{bottom:486.900000px;}
.yd9{bottom:487.598700px;}
.y18e{bottom:488.318700px;}
.y1a2{bottom:488.678700px;}
.yc3{bottom:489.038700px;}
.y48{bottom:489.300000px;}
.y7a{bottom:489.398700px;}
.y12b{bottom:490.500000px;}
.ye9{bottom:494.078700px;}
.y24{bottom:497.400000px;}
.y64{bottom:500.918700px;}
.y102{bottom:501.000000px;}
.ya1{bottom:503.078700px;}
.y169{bottom:507.000000px;}
.y119{bottom:510.998700px;}
.y17b{bottom:514.958700px;}
.y12a{bottom:517.500000px;}
.yd8{bottom:519.998700px;}
.y18d{bottom:520.718700px;}
.y1a1{bottom:521.078700px;}
.yc2{bottom:521.438700px;}
.y79{bottom:521.798700px;}
.y15{bottom:523.650000px;}
.ya0{bottom:524.678700px;}
.y101{bottom:528.000000px;}
.y63{bottom:533.318700px;}
.y166{bottom:537.000000px;}
.y47{bottom:537.900000px;}
.y129{bottom:544.500000px;}
.y9f{bottom:546.278700px;}
.y17a{bottom:547.358700px;}
.yd7{bottom:553.118700px;}
.y1a0{bottom:553.478700px;}
.yc1{bottom:553.838700px;}
.y78{bottom:554.198700px;}
.y100{bottom:555.000000px;}
.y14{bottom:560.025000px;}
.y62{bottom:565.718700px;}
.y9e{bottom:567.878700px;}
.y162{bottom:568.500000px;}
.y128{bottom:571.500000px;}
.y46{bottom:573.900000px;}
.y179{bottom:579.758700px;}
.yff{bottom:582.000000px;}
.y18c{bottom:585.518700px;}
.yd6{bottom:585.878700px;}
.yc0{bottom:586.238700px;}
.y77{bottom:586.598700px;}
.y9d{bottom:589.478700px;}
.y13{bottom:596.820000px;}
.y61{bottom:598.118700px;}
.y126{bottom:598.500000px;}
.y15f{bottom:601.500000px;}
.yfd{bottom:609.000000px;}
.y45{bottom:609.900000px;}
.y9c{bottom:611.078700px;}
.y178{bottom:612.158700px;}
.y18b{bottom:617.918700px;}
.y19f{bottom:618.278700px;}
.ybf{bottom:618.638700px;}
.y76{bottom:618.998700px;}
.y124{bottom:627.000000px;}
.y60{bottom:630.518700px;}
.y9b{bottom:632.678700px;}
.y12{bottom:633.570000px;}
.y15c{bottom:634.500000px;}
.yfb{bottom:637.500000px;}
.y177{bottom:644.558700px;}
.y44{bottom:645.900000px;}
.y18a{bottom:650.678700px;}
.ybe{bottom:651.038700px;}
.y75{bottom:651.398700px;}
.y120{bottom:654.000000px;}
.y9a{bottom:654.278700px;}
.yf6{bottom:664.500000px;}
.y158{bottom:666.000000px;}
.y11{bottom:669.945000px;}
.y99{bottom:675.878700px;}
.y176{bottom:676.958700px;}
.y5f{bottom:678.398700px;}
.y43{bottom:681.900000px;}
.y189{bottom:683.078700px;}
.ybd{bottom:683.438700px;}
.y74{bottom:683.798700px;}
.y98{bottom:697.478700px;}
.y156{bottom:699.000000px;}
.y10{bottom:706.695000px;}
.y175{bottom:709.358700px;}
.y5e{bottom:714.398700px;}
.y188{bottom:715.478700px;}
.ybc{bottom:715.838700px;}
.y73{bottom:716.198700px;}
.y42{bottom:717.900000px;}
.y97{bottom:719.078700px;}
.y11f{bottom:724.637550px;}
.y154{bottom:732.000000px;}
.yf5{bottom:735.437550px;}
.y174{bottom:738.518700px;}
.y96{bottom:740.678700px;}
.y5d{bottom:741.398700px;}
.yf{bottom:743.475000px;}
.y11e{bottom:746.237550px;}
.y19e{bottom:747.878700px;}
.ybb{bottom:748.238700px;}
.y72{bottom:748.598700px;}
.y41{bottom:753.180000px;}
.y95{bottom:762.278700px;}
.y5c{bottom:762.998700px;}
.y152{bottom:765.000000px;}
.yf4{bottom:767.837550px;}
.ye{bottom:775.350000px;}
.y19d{bottom:780.278700px;}
.yba{bottom:780.638700px;}
.y71{bottom:780.998700px;}
.y40{bottom:783.780000px;}
.y94{bottom:783.878700px;}
.y93{bottom:805.478700px;}
.yd{bottom:807.600000px;}
.y19c{bottom:812.678700px;}
.yb9{bottom:813.038700px;}
.y5b{bottom:813.398700px;}
.y3f{bottom:814.740000px;}
.yf0{bottom:820.757550px;}
.y92{bottom:827.078700px;}
.yc{bottom:838.380000px;}
.y19b{bottom:845.078700px;}
.yb8{bottom:845.438700px;}
.y3e{bottom:845.700000px;}
.y5a{bottom:845.798700px;}
.y91{bottom:848.678700px;}
.y90{bottom:870.278700px;}
.yb{bottom:870.630000px;}
.y3d{bottom:876.300000px;}
.y19a{bottom:877.478700px;}
.yb7{bottom:877.838700px;}
.y59{bottom:878.198700px;}
.y8f{bottom:891.878700px;}
.ya{bottom:900.630000px;}
.y199{bottom:909.878700px;}
.yb6{bottom:910.238700px;}
.y58{bottom:910.598700px;}
.y8e{bottom:913.478700px;}
.y3c{bottom:924.900000px;}
.y9{bottom:928.380000px;}
.y3b{bottom:942.180000px;}
.yb5{bottom:942.638700px;}
.y57{bottom:942.998700px;}
.y8d{bottom:945.878700px;}
.y3a{bottom:959.460000px;}
.y8{bottom:959.505000px;}
.yb4{bottom:975.038700px;}
.y56{bottom:975.758700px;}
.y39{bottom:976.740000px;}
.y8c{bottom:978.278700px;}
.y7{bottom:990.675000px;}
.y38{bottom:994.020000px;}
.yb3{bottom:1007.438700px;}
.y55{bottom:1008.158700px;}
.y8b{bottom:1010.678700px;}
.y37{bottom:1011.300000px;}
.y6{bottom:1021.800000px;}
.y36{bottom:1028.580000px;}
.yb2{bottom:1030.478700px;}
.yd5{bottom:1039.838700px;}
.y54{bottom:1040.558700px;}
.y8a{bottom:1043.078700px;}
.y35{bottom:1045.860000px;}
.yb1{bottom:1051.358700px;}
.y5{bottom:1052.925000px;}
.y34{bottom:1063.140000px;}
.yd4{bottom:1072.598700px;}
.y53{bottom:1072.958700px;}
.y89{bottom:1075.478700px;}
.y4{bottom:1082.550000px;}
.y2d{bottom:1087.500000px;}
.y52{bottom:1105.358700px;}
.y88{bottom:1106.798700px;}
.y3{bottom:1107.705000px;}
.y51{bottom:1137.758700px;}
.y2{bottom:1150.455000px;}
.y2c{bottom:1154.955000px;}
.y1{bottom:1165.080000px;}
.y13d{bottom:1169.798700px;}
.yd1{bottom:1190.678700px;}
.y13c{bottom:1191.038700px;}
.y32{bottom:1287.780000px;}
.h38{height:21.582405px;}
.h35{height:21.600000px;}
.h11{height:22.500000px;}
.h1f{height:24.000000px;}
.h2f{height:27.833203px;}
.h31{height:28.500000px;}
.h22{height:29.752734px;}
.h2c{height:30.463594px;}
.h3d{height:31.500000px;}
.h2b{height:33.000000px;}
.he{height:33.609375px;}
.h29{height:34.500000px;}
.h33{height:38.390625px;}
.h15{height:40.310156px;}
.h12{height:40.841719px;}
.h30{height:41.107500px;}
.h23{height:41.137031px;}
.h1{height:42.011719px;}
.h32{height:43.416484px;}
.h36{height:43.447674px;}
.h25{height:44.149219px;}
.h14{height:45.360000px;}
.ha{height:47.988281px;}
.h3a{height:48.761719px;}
.h28{height:48.972656px;}
.h20{height:49.183594px;}
.h9{height:49.218750px;}
.hc{height:50.414062px;}
.h2a{height:51.723421px;}
.h24{height:51.946207px;}
.h1b{height:53.746875px;}
.hf{height:55.500000px;}
.h1a{height:56.522813px;}
.h1c{height:56.808281px;}
.h10{height:57.585938px;}
.h2{height:59.472656px;}
.h3b{height:60.609375px;}
.h3{height:60.916992px;}
.h21{height:61.382813px;}
.h3c{height:64.013767px;}
.h27{height:64.160156px;}
.h26{height:64.830648px;}
.h3e{height:67.500000px;}
.h18{height:69.491250px;}
.h16{height:69.541172px;}
.h6{height:69.726562px;}
.h17{height:70.062891px;}
.h4{height:71.419922px;}
.h5{height:73.520508px;}
.h19{height:79.660547px;}
.h7{height:82.031250px;}
.h39{height:82.500000px;}
.hd{height:90.037500px;}
.hb{height:174.825000px;}
.h8{height:393.495000px;}
.h37{height:880.157550px;}
.h2d{height:892.913400px;}
.h2e{height:893.250000px;}
.h34{height:1250.078700px;}
.h13{height:1261.500000px;}
.h1d{height:1262.834700px;}
.h1e{height:1263.000000px;}
.h0{height:1288.500000px;}
.wb{width:9.000000px;}
.wf{width:10.500000px;}
.wc{width:12.000000px;}
.wd{width:15.000000px;}
.w20{width:17.640000px;}
.we{width:18.000000px;}
.w10{width:19.500000px;}
.w4{width:21.000000px;}
.w1e{width:31.500000px;}
.w3{width:31.875000px;}
.w1c{width:33.000000px;}
.w1b{width:34.500000px;}
.w28{width:39.000000px;}
.w1a{width:42.000000px;}
.w15{width:43.500000px;}
.w18{width:45.000000px;}
.w19{width:46.500000px;}
.w2{width:56.250000px;}
.w27{width:57.000000px;}
.w23{width:76.500000px;}
.w12{width:81.000000px;}
.w7{width:88.500000px;}
.w22{width:96.000000px;}
.w17{width:97.500000px;}
.w24{width:109.500000px;}
.w26{width:135.000000px;}
.w16{width:150.000000px;}
.w1d{width:151.500000px;}
.w25{width:183.000000px;}
.w11{width:193.500000px;}
.w6{width:216.000000px;}
.w1f{width:880.157550px;}
.w8{width:891.750000px;}
.w9{width:892.913400px;}
.wa{width:893.250000px;}
.w5{width:918.750000px;}
.w21{width:1250.078700px;}
.w13{width:1262.834700px;}
.w14{width:1263.000000px;}
.w1{width:1896.749972px;}
.w0{width:1896.750000px;}
.x0{left:0.000000px;}
.x1e{left:1.175850px;}
.x10{left:2.459849px;}
.xbc{left:3.638370px;}
.xab{left:4.701911px;}
.x8d{left:5.743270px;}
.xa0{left:7.126931px;}
.x69{left:8.915778px;}
.x88{left:10.493495px;}
.x9f{left:11.800870px;}
.x97{left:13.573331px;}
.xa1{left:14.741351px;}
.xe{left:16.125000px;}
.x99{left:17.569150px;}
.xc{left:18.750000px;}
.x9{left:19.875000px;}
.x6a{left:20.949330px;}
.x8a{left:22.085830px;}
.x9e{left:24.280151px;}
.x6b{left:25.448130px;}
.x15{left:27.000000px;}
.xc0{left:28.363290px;}
.x68{left:30.330450px;}
.xaa{left:31.360391px;}
.x67{left:33.276090px;}
.x87{left:35.179775px;}
.xa{left:43.125000px;}
.xa9{left:44.759483px;}
.x14{left:66.331080px;}
.x86{left:74.773439px;}
.xac{left:94.320000px;}
.x16{left:101.879892px;}
.x1c{left:107.075670px;}
.x55{left:126.007314px;}
.x17{left:128.879892px;}
.x62{left:131.377434px;}
.x6f{left:134.075670px;}
.xb0{left:138.000000px;}
.x26{left:142.460826px;}
.x12{left:146.649120px;}
.x85{left:148.500000px;}
.x3e{left:149.553582px;}
.xb9{left:151.500000px;}
.xad{left:159.300294px;}
.x1f{left:161.075670px;}
.xa2{left:168.124607px;}
.x33{left:178.083222px;}
.xae{left:186.985842px;}
.x35{left:188.940282px;}
.x6c{left:191.661594px;}
.x11{left:193.297920px;}
.x34{left:200.556870px;}
.x20{left:206.075670px;}
.x103{left:207.729114px;}
.xb8{left:213.300294px;}
.xf0{left:218.812110px;}
.x5d{left:220.246206px;}
.x36{left:222.655146px;}
.xba{left:226.500000px;}
.x41{left:228.426270px;}
.x64{left:231.000000px;}
.xe7{left:234.351186px;}
.x4f{left:240.951390px;}
.x44{left:242.532690px;}
.x101{left:243.680766px;}
.xde{left:244.739850px;}
.xdb{left:251.911734px;}
.x56{left:253.606938px;}
.xca{left:256.332642px;}
.x104{left:257.993754px;}
.xcb{left:259.268190px;}
.x27{left:264.250842px;}
.x2d{left:265.998030px;}
.x75{left:268.219482px;}
.x76{left:272.631606px;}
.x7f{left:273.789906px;}
.x2{left:276.029972px;}
.x25{left:280.475466px;}
.xc4{left:283.323858px;}
.x49{left:285.062982px;}
.x72{left:287.030994px;}
.x80{left:293.604090px;}
.x4a{left:297.411594px;}
.xe1{left:298.528926px;}
.x46{left:301.032690px;}
.x2b{left:306.863142px;}
.x77{left:309.046866px;}
.xd3{left:313.916010px;}
.x78{left:317.361318px;}
.x48{left:321.229986px;}
.xe2{left:323.612898px;}
.xc6{left:325.115826px;}
.x28{left:326.591682px;}
.x98{left:330.000000px;}
.x57{left:332.532690px;}
.xbb{left:334.500000px;}
.x24{left:342.324078px;}
.xf{left:345.000000px;}
.x13{left:346.500000px;}
.x5e{left:348.643770px;}
.x58{left:351.464370px;}
.x4d{left:360.763206px;}
.x106{left:363.339474px;}
.x3f{left:365.272350px;}
.x63{left:367.267794px;}
.x6e{left:368.734830px;}
.x108{left:375.617850px;}
.x23{left:378.297690px;}
.xf3{left:381.592770px;}
.x4c{left:384.521010px;}
.x2e{left:387.608730px;}
.x50{left:389.626530px;}
.x89{left:393.000000px;}
.x7c{left:397.918410px;}
.x52{left:400.542810px;}
.x7d{left:404.624490px;}
.xd8{left:408.233850px;}
.x43{left:413.137410px;}
.x40{left:415.167810px;}
.x2a{left:416.978250px;}
.x53{left:418.028730px;}
.x81{left:419.527050px;}
.x65{left:423.000000px;}
.xc1{left:433.633650px;}
.xa3{left:435.000000px;}
.x8b{left:436.500000px;}
.x51{left:438.000000px;}
.x42{left:439.500000px;}
.x22{left:441.000000px;}
.x1d{left:442.500000px;}
.x4e{left:445.016130px;}
.x21{left:446.975610px;}
.x83{left:451.132271px;}
.x84{left:453.757390px;}
.xf8{left:454.769610px;}
.x2c{left:456.490050px;}
.x8c{left:478.500000px;}
.x7a{left:481.115490px;}
.x60{left:485.426130px;}
.x7b{left:487.821570px;}
.x8e{left:489.000000px;}
.x102{left:498.502050px;}
.x66{left:502.500000px;}
.xc2{left:505.277250px;}
.xd0{left:506.921370px;}
.x6d{left:508.384410px;}
.x29{left:510.107370px;}
.xff{left:512.644650px;}
.xec{left:514.236570px;}
.x59{left:515.679090px;}
.xc9{left:519.751410px;}
.x39{left:523.576770px;}
.x31{left:527.658810px;}
.x3a{left:532.401090px;}
.xef{left:534.975090px;}
.x5f{left:539.519730px;}
.x37{left:541.435290px;}
.xe4{left:548.012490px;}
.xaf{left:550.598730px;}
.x19{left:555.413760px;}
.x1a{left:558.872280px;}
.x73{left:560.044410px;}
.x32{left:561.373530px;}
.xf7{left:565.912770px;}
.x38{left:568.232970px;}
.x74{left:570.892290px;}
.xee{left:573.525330px;}
.x18{left:577.228320px;}
.x7e{left:579.245370px;}
.x1b{left:582.230520px;}
.xcc{left:586.534650px;}
.xc5{left:588.691050px;}
.xea{left:591.187290px;}
.x5a{left:594.605130px;}
.xc7{left:597.347970px;}
.x79{left:600.979290px;}
.xda{left:602.141010px;}
.xbf{left:604.500000px;}
.x107{left:606.400890px;}
.xd1{left:608.803890px;}
.x5b{left:613.536450px;}
.xd7{left:618.169650px;}
.xdf{left:620.873610px;}
.x82{left:622.500000px;}
.xfb{left:624.108930px;}
.xe3{left:625.859970px;}
.xfc{left:629.060010px;}
.xd9{left:631.106970px;}
.x5c{left:633.860250px;}
.x8f{left:637.500000px;}
.xb1{left:639.000000px;}
.xf1{left:640.158090px;}
.xf2{left:641.999850px;}
.xf4{left:643.587450px;}
.x70{left:645.475290px;}
.xfd{left:647.721690px;}
.x71{left:649.887450px;}
.xe9{left:654.546930px;}
.xcd{left:656.865690px;}
.x105{left:657.990330px;}
.xdd{left:659.253570px;}
.xfe{left:660.361650px;}
.xc3{left:664.989810px;}
.xed{left:666.527010px;}
.xa7{left:669.000000px;}
.x9a{left:670.500000px;}
.xd6{left:677.716890px;}
.xf6{left:680.074530px;}
.xdc{left:683.479770px;}
.xeb{left:688.280010px;}
.x3b{left:690.279090px;}
.xbd{left:693.000000px;}
.xe6{left:694.100130px;}
.x100{left:695.430330px;}
.xcf{left:696.957810px;}
.x3c{left:699.103410px;}
.xa8{left:700.500000px;}
.x9b{left:702.000000px;}
.xc8{left:705.470730px;}
.xd5{left:707.246610px;}
.xe8{left:709.445850px;}
.x54{left:710.710170px;}
.xfa{left:711.908250px;}
.xf5{left:715.341210px;}
.xd4{left:716.493930px;}
.x3d{left:723.264450px;}
.xe5{left:729.651210px;}
.xe0{left:730.848210px;}
.x90{left:733.500000px;}
.xb2{left:735.000000px;}
.xd2{left:738.359970px;}
.x61{left:741.034410px;}
.x2f{left:744.608850px;}
.xbe{left:748.500000px;}
.xb7{left:749.915250px;}
.xf9{left:755.986650px;}
.xce{left:764.199690px;}
.xa4{left:777.000000px;}
.x91{left:778.500000px;}
.x4b{left:781.873530px;}
.x45{left:783.165570px;}
.x47{left:785.494770px;}
.x30{left:786.875730px;}
.xa5{left:817.500000px;}
.x92{left:819.000000px;}
.xa6{left:828.000000px;}
.x93{left:829.500000px;}
.x8{left:922.695000px;}
.xb{left:932.445000px;}
.xd{left:937.320000px;}
.x1{left:975.944972px;}
.x94{left:978.000000px;}
.xb3{left:979.500000px;}
.x9c{left:1009.500000px;}
.xb5{left:1011.000000px;}
.x9d{left:1041.000000px;}
.xb6{left:1042.500000px;}
.x95{left:1074.000000px;}
.x96{left:1116.000000px;}
.xb4{left:1117.500000px;}
.x6{left:1302.254972px;}
.x3{left:1327.019972px;}
.x7{left:1376.894972px;}
.x4{left:1484.174972px;}
.x5{left:1598.579972px;}
@media print{
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls3{letter-spacing:-0.522667pt;}
.ls58{letter-spacing:-0.390400pt;}
.ls63{letter-spacing:-0.344064pt;}
.ls73{letter-spacing:-0.333312pt;}
.ls19{letter-spacing:-0.290304pt;}
.ls68{letter-spacing:-0.278220pt;}
.ls1b{letter-spacing:-0.274176pt;}
.lsf{letter-spacing:-0.272640pt;}
.ls71{letter-spacing:-0.268800pt;}
.ls18{letter-spacing:-0.263424pt;}
.ls1a{letter-spacing:-0.252672pt;}
.ls65{letter-spacing:-0.241920pt;}
.ls67{letter-spacing:-0.232797pt;}
.ls64{letter-spacing:-0.220416pt;}
.ls66{letter-spacing:-0.215763pt;}
.ls1d{letter-spacing:-0.204288pt;}
.ls6a{letter-spacing:-0.198912pt;}
.ls6b{letter-spacing:-0.193536pt;}
.ls6c{letter-spacing:-0.188160pt;}
.ls1c{letter-spacing:-0.182784pt;}
.ls75{letter-spacing:-0.172032pt;}
.ls69{letter-spacing:-0.166656pt;}
.ls6e{letter-spacing:-0.161280pt;}
.ls10{letter-spacing:-0.145408pt;}
.ls11{letter-spacing:-0.127232pt;}
.ls6d{letter-spacing:-0.107520pt;}
.lsc{letter-spacing:-0.102144pt;}
.ls72{letter-spacing:-0.096768pt;}
.ls6f{letter-spacing:-0.091392pt;}
.ls77{letter-spacing:-0.086016pt;}
.lse{letter-spacing:-0.072704pt;}
.ls61{letter-spacing:-0.027038pt;}
.ls27{letter-spacing:-0.025600pt;}
.ls2e{letter-spacing:-0.020278pt;}
.ls26{letter-spacing:-0.019200pt;}
.ls2f{letter-spacing:-0.013519pt;}
.ls29{letter-spacing:-0.012800pt;}
.ls94{letter-spacing:-0.006759pt;}
.ls17{letter-spacing:-0.006400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000128pt;}
.ls38{letter-spacing:0.002560pt;}
.ls5a{letter-spacing:0.002688pt;}
.ls99{letter-spacing:0.002816pt;}
.ls43{letter-spacing:0.003840pt;}
.ls1e{letter-spacing:0.006400pt;}
.ls40{letter-spacing:0.006528pt;}
.ls50{letter-spacing:0.006759pt;}
.ls3b{letter-spacing:0.007552pt;}
.lsa3{letter-spacing:0.007680pt;}
.lsa0{letter-spacing:0.008111pt;}
.ls98{letter-spacing:0.008960pt;}
.ls45{letter-spacing:0.010240pt;}
.ls93{letter-spacing:0.010496pt;}
.ls3d{letter-spacing:0.011520pt;}
.ls3e{letter-spacing:0.011776pt;}
.ls91{letter-spacing:0.012416pt;}
.ls4c{letter-spacing:0.012544pt;}
.ls28{letter-spacing:0.012800pt;}
.ls4f{letter-spacing:0.013113pt;}
.ls2c{letter-spacing:0.013249pt;}
.ls53{letter-spacing:0.013519pt;}
.ls32{letter-spacing:0.013824pt;}
.ls2d{letter-spacing:0.014080pt;}
.ls31{letter-spacing:0.015360pt;}
.ls23{letter-spacing:0.019200pt;}
.ls95{letter-spacing:0.020278pt;}
.lsa2{letter-spacing:0.021248pt;}
.ls20{letter-spacing:0.025600pt;}
.ls2b{letter-spacing:0.027038pt;}
.ls7a{letter-spacing:0.028160pt;}
.ls62{letter-spacing:0.029440pt;}
.ls81{letter-spacing:0.030464pt;}
.ls90{letter-spacing:0.030720pt;}
.ls74{letter-spacing:0.031744pt;}
.ls22{letter-spacing:0.032000pt;}
.ls2a{letter-spacing:0.033797pt;}
.ls42{letter-spacing:0.038400pt;}
.ls37{letter-spacing:0.044800pt;}
.ls52{letter-spacing:0.142080pt;}
.ls5{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.207872pt;}
.ls7{letter-spacing:0.230144pt;}
.ls15{letter-spacing:0.259840pt;}
.ls4a{letter-spacing:0.314880pt;}
.ls70{letter-spacing:0.448000pt;}
.ls78{letter-spacing:0.632704pt;}
.ls79{letter-spacing:0.633600pt;}
.ls4{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.123199pt;}
.ls7b{letter-spacing:1.253120pt;}
.ls8a{letter-spacing:1.543680pt;}
.ls9{letter-spacing:1.566720pt;}
.ls0{letter-spacing:1.600000pt;}
.lsb{letter-spacing:1.781760pt;}
.ls8{letter-spacing:1.797120pt;}
.lsd{letter-spacing:1.853952pt;}
.ls14{letter-spacing:1.893120pt;}
.ls54{letter-spacing:1.896960pt;}
.ls35{letter-spacing:1.920000pt;}
.ls7f{letter-spacing:2.028800pt;}
.ls7c{letter-spacing:2.118400pt;}
.ls21{letter-spacing:2.151680pt;}
.ls12{letter-spacing:2.279168pt;}
.ls46{letter-spacing:2.283520pt;}
.ls9b{letter-spacing:2.289024pt;}
.ls9a{letter-spacing:2.290432pt;}
.ls47{letter-spacing:2.516480pt;}
.lsa{letter-spacing:2.526720pt;}
.ls60{letter-spacing:2.603520pt;}
.ls9c{letter-spacing:2.867200pt;}
.ls13{letter-spacing:2.902784pt;}
.ls4e{letter-spacing:3.092480pt;}
.ls4b{letter-spacing:3.105280pt;}
.ls36{letter-spacing:3.454720pt;}
.ls5e{letter-spacing:3.475072pt;}
.ls56{letter-spacing:3.545600pt;}
.ls30{letter-spacing:3.660800pt;}
.ls51{letter-spacing:3.862016pt;}
.ls85{letter-spacing:3.890688pt;}
.ls5f{letter-spacing:4.192000pt;}
.ls3f{letter-spacing:4.298240pt;}
.ls76{letter-spacing:4.609280pt;}
.ls5b{letter-spacing:4.784640pt;}
.ls25{letter-spacing:4.899840pt;}
.ls59{letter-spacing:5.286400pt;}
.ls87{letter-spacing:5.367040pt;}
.ls44{letter-spacing:5.443840pt;}
.ls9d{letter-spacing:5.492224pt;}
.ls8c{letter-spacing:5.562880pt;}
.ls8e{letter-spacing:5.781760pt;}
.ls48{letter-spacing:6.080000pt;}
.ls39{letter-spacing:6.328320pt;}
.ls41{letter-spacing:6.432256pt;}
.ls3c{letter-spacing:6.458880pt;}
.ls24{letter-spacing:6.696576pt;}
.ls8f{letter-spacing:6.813440pt;}
.lsa6{letter-spacing:7.302016pt;}
.lsa5{letter-spacing:7.302144pt;}
.lsa8{letter-spacing:7.302400pt;}
.lsa7{letter-spacing:7.303424pt;}
.ls9f{letter-spacing:7.726080pt;}
.ls57{letter-spacing:8.163840pt;}
.ls84{letter-spacing:8.321664pt;}
.ls89{letter-spacing:8.588544pt;}
.ls7d{letter-spacing:8.599040pt;}
.ls7e{letter-spacing:8.600192pt;}
.ls82{letter-spacing:9.081600pt;}
.ls80{letter-spacing:9.105920pt;}
.ls8b{letter-spacing:9.164800pt;}
.ls55{letter-spacing:10.387200pt;}
.ls86{letter-spacing:10.652160pt;}
.ls49{letter-spacing:10.718720pt;}
.ls34{letter-spacing:11.091200pt;}
.lsa1{letter-spacing:12.250889pt;}
.ls4d{letter-spacing:14.375040pt;}
.ls83{letter-spacing:15.661440pt;}
.ls88{letter-spacing:16.153600pt;}
.ls3a{letter-spacing:16.750080pt;}
.ls5d{letter-spacing:16.957440pt;}
.ls33{letter-spacing:18.769536pt;}
.ls8d{letter-spacing:19.808000pt;}
.ls96{letter-spacing:32.377929pt;}
.ls5c{letter-spacing:43.553280pt;}
.lsa4{letter-spacing:52.273920pt;}
.ls9e{letter-spacing:59.526721pt;}
.ls92{letter-spacing:70.770816pt;}
.ls97{letter-spacing:269.257293pt;}
.ws5{word-spacing:-22.720000pt;}
.ws4{word-spacing:-21.726720pt;}
.ws2{word-spacing:-20.997120pt;}
.ws3{word-spacing:-20.766720pt;}
.ws7{word-spacing:-18.790144pt;}
.ws6{word-spacing:-18.767872pt;}
.ws17{word-spacing:-16.932508pt;}
.ws18{word-spacing:-16.925748pt;}
.ws28{word-spacing:-16.912229pt;}
.ws1d{word-spacing:-16.905470pt;}
.ws16{word-spacing:-16.898710pt;}
.ws31{word-spacing:-16.891951pt;}
.ws1b{word-spacing:-16.885191pt;}
.ws19{word-spacing:-16.878432pt;}
.ws30{word-spacing:-16.871673pt;}
.ws27{word-spacing:-16.448000pt;}
.ws32{word-spacing:-16.044800pt;}
.ws1c{word-spacing:-16.038400pt;}
.ws11{word-spacing:-16.032000pt;}
.ws13{word-spacing:-16.025600pt;}
.ws14{word-spacing:-16.019200pt;}
.ws15{word-spacing:-16.012800pt;}
.wsf{word-spacing:-16.006400pt;}
.wse{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.993600pt;}
.ws1a{word-spacing:-15.987200pt;}
.ws10{word-spacing:-15.980800pt;}
.ws12{word-spacing:-15.974400pt;}
.ws21{word-spacing:-13.916696pt;}
.ws0{word-spacing:-13.653333pt;}
.wsa{word-spacing:-13.440000pt;}
.ws2e{word-spacing:-13.353984pt;}
.ws26{word-spacing:-13.348608pt;}
.ws23{word-spacing:-13.332480pt;}
.ws25{word-spacing:-13.278720pt;}
.ws2d{word-spacing:-13.267968pt;}
.wsc{word-spacing:-13.257216pt;}
.ws2b{word-spacing:-13.251840pt;}
.ws22{word-spacing:-13.241088pt;}
.wsd{word-spacing:-13.235712pt;}
.ws24{word-spacing:-13.219584pt;}
.ws20{word-spacing:-13.198080pt;}
.ws29{word-spacing:-13.187328pt;}
.ws9{word-spacing:-13.176576pt;}
.ws2a{word-spacing:-13.171200pt;}
.ws1f{word-spacing:-13.165824pt;}
.wsb{word-spacing:-13.149696pt;}
.ws2c{word-spacing:-13.106688pt;}
.ws2f{word-spacing:-0.048640pt;}
.ws1e{word-spacing:-0.026880pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-15.311776pt;}
._8{margin-left:-14.382606pt;}
._1b{margin-left:-10.432000pt;}
._1a{margin-left:-9.519360pt;}
._6{margin-left:-8.563256pt;}
._1f{margin-left:-4.774528pt;}
._e{margin-left:-3.835648pt;}
._f{margin-left:-2.897152pt;}
._9{margin-left:-1.836800pt;}
._1{margin-left:-0.928000pt;}
._3{width:0.928000pt;}
._2{width:1.914667pt;}
._5{width:3.002667pt;}
._4{width:3.936000pt;}
._a{width:4.825600pt;}
._17{width:5.721856pt;}
._10{width:6.656000pt;}
._11{width:7.584000pt;}
._b{width:8.556800pt;}
._d{width:9.553280pt;}
._c{width:10.502400pt;}
._12{width:11.622400pt;}
._18{width:12.531200pt;}
._13{width:13.612800pt;}
._16{width:14.636800pt;}
._15{width:17.464576pt;}
._14{width:18.732928pt;}
._20{width:19.814400pt;}
._1d{width:21.286400pt;}
._43{width:22.847057pt;}
._40{width:23.878016pt;}
._41{width:25.106304pt;}
._1e{width:26.067200pt;}
._30{width:30.784000pt;}
._31{width:32.377929pt;}
._3e{width:33.740471pt;}
._3f{width:34.905976pt;}
._48{width:35.916047pt;}
._49{width:37.170404pt;}
._36{width:40.384000pt;}
._37{width:42.477034pt;}
._1c{width:43.571200pt;}
._39{width:49.900800pt;}
._52{width:51.438123pt;}
._3a{width:52.696939pt;}
._21{width:56.000000pt;}
._3d{width:57.107200pt;}
._22{width:59.253638pt;}
._3b{width:64.286464pt;}
._46{width:65.472000pt;}
._55{width:66.904563pt;}
._3c{width:67.937953pt;}
._47{width:69.325270pt;}
._25{width:70.656000pt;}
._54{width:72.171520pt;}
._27{width:73.461632pt;}
._26{width:74.759895pt;}
._53{width:76.190743pt;}
._4a{width:78.144000pt;}
._59{width:80.431102pt;}
._4b{width:82.398112pt;}
._56{width:83.880288pt;}
._57{width:87.832737pt;}
._34{width:104.896000pt;}
._4f{width:106.432000pt;}
._35{width:110.382377pt;}
._38{width:111.781590pt;}
._4e{width:113.099689pt;}
._4c{width:116.915200pt;}
._2f{width:119.308800pt;}
._4d{width:123.434941pt;}
._2e{width:126.201600pt;}
._2d{width:133.317307pt;}
._50{width:138.041600pt;}
._58{width:139.430400pt;}
._29{width:140.396800pt;}
._51{width:145.781795pt;}
._2a{width:148.296323pt;}
._45{width:150.909440pt;}
._44{width:158.777274pt;}
._19{width:160.000000pt;}
._2c{width:189.312000pt;}
._2b{width:200.040175pt;}
._42{width:212.214006pt;}
._33{width:254.920960pt;}
._32{width:269.338677pt;}
._28{width:300.352000pt;}
._24{width:316.245760pt;}
._23{width:334.060468pt;}
._0{width:2021.653333pt;}
.fs11{font-size:26.880000pt;}
.fs12{font-size:37.120000pt;}
.fse{font-size:39.680000pt;}
.fs6{font-size:42.666667pt;}
.fs15{font-size:48.640000pt;}
.fs14{font-size:51.200000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:53.760000pt;}
.fs13{font-size:56.779667pt;}
.fs10{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsf{font-size:67.594842pt;}
.fsd{font-size:71.680000pt;}
.fsc{font-size:74.240000pt;}
.fs7{font-size:76.800000pt;}
.fs1{font-size:77.333333pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:90.880000pt;}
.fs3{font-size:93.333333pt;}
.fsa{font-size:93.440000pt;}
.fsb{font-size:106.240000pt;}
.fs4{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:0.567733pt;}
.y155{bottom:0.674400pt;}
.y153{bottom:0.781067pt;}
.y15a{bottom:1.101067pt;}
.y173{bottom:1.207733pt;}
.y25{bottom:1.333333pt;}
.y2a{bottom:1.366667pt;}
.y164{bottom:1.367733pt;}
.y16e{bottom:1.474400pt;}
.y142{bottom:3.199960pt;}
.y118{bottom:3.199973pt;}
.yd3{bottom:3.447733pt;}
.yf3{bottom:3.535600pt;}
.y50{bottom:4.407733pt;}
.y13b{bottom:4.495600pt;}
.y31{bottom:5.013333pt;}
.y2f{bottom:6.506667pt;}
.y125{bottom:10.948933pt;}
.yfc{bottom:11.215600pt;}
.y145{bottom:11.535600pt;}
.y123{bottom:11.588933pt;}
.y127{bottom:11.642267pt;}
.yfa{bottom:11.855600pt;}
.yfe{bottom:11.908933pt;}
.y15e{bottom:13.101067pt;}
.ye2{bottom:13.207733pt;}
.y157{bottom:13.367733pt;}
.yde{bottom:13.474400pt;}
.ydc{bottom:13.581067pt;}
.y161{bottom:13.634400pt;}
.y15b{bottom:13.901067pt;}
.ye0{bottom:14.007733pt;}
.y165{bottom:14.167733pt;}
.y170{bottom:14.274400pt;}
.yf8{bottom:19.855600pt;}
.y121{bottom:23.748933pt;}
.yf7{bottom:24.015600pt;}
.y16a{bottom:27.234400pt;}
.y141{bottom:27.482307pt;}
.y144{bottom:27.535600pt;}
.y171{bottom:28.674400pt;}
.y2e{bottom:28.906667pt;}
.y15d{bottom:29.101067pt;}
.y16c{bottom:29.207733pt;}
.y167{bottom:29.367733pt;}
.y160{bottom:29.634400pt;}
.y159{bottom:29.901067pt;}
.y163{bottom:30.167733pt;}
.y146{bottom:35.535600pt;}
.y122{bottom:35.588933pt;}
.yf9{bottom:35.855600pt;}
.y112{bottom:35.908933pt;}
.y16f{bottom:43.074400pt;}
.y30{bottom:44.000000pt;}
.y4f{bottom:45.333333pt;}
.y117{bottom:45.581093pt;}
.y13e{bottom:46.541093pt;}
.yf2{bottom:46.666667pt;}
.y14f{bottom:47.002307pt;}
.y33{bottom:49.653333pt;}
.yd2{bottom:50.061067pt;}
.y4e{bottom:50.381067pt;}
.yf1{bottom:50.842267pt;}
.y29{bottom:51.000000pt;}
.y143{bottom:51.535600pt;}
.y23{bottom:55.366667pt;}
.y2b{bottom:66.033333pt;}
.y22{bottom:71.700000pt;}
.y21{bottom:88.033333pt;}
.y111{bottom:98.842267pt;}
.y70{bottom:99.341067pt;}
.yb0{bottom:101.581067pt;}
.y139{bottom:103.642267pt;}
.ye8{bottom:105.101067pt;}
.y20{bottom:107.033333pt;}
.yef{bottom:108.621067pt;}
.y187{bottom:112.141067pt;}
.y14b{bottom:113.242267pt;}
.y1ad{bottom:117.581067pt;}
.yce{bottom:117.901067pt;}
.y110{bottom:118.042267pt;}
.y87{bottom:118.221067pt;}
.yaf{bottom:120.781067pt;}
.y151{bottom:127.642267pt;}
.y6f{bottom:128.141067pt;}
.y138{bottom:132.442267pt;}
.y10f{bottom:133.333333pt;}
.ye7{bottom:133.901067pt;}
.yee{bottom:137.421067pt;}
.y140{bottom:138.701067pt;}
.y1f{bottom:139.693333pt;}
.y186{bottom:140.941067pt;}
.y14a{bottom:142.042267pt;}
.y198{bottom:146.061067pt;}
.y1ac{bottom:146.381067pt;}
.ycd{bottom:146.701067pt;}
.y116{bottom:146.842267pt;}
.y86{bottom:147.021067pt;}
.yae{bottom:149.581067pt;}
.y28{bottom:151.733333pt;}
.y6e{bottom:156.941067pt;}
.y10e{bottom:157.333333pt;}
.y137{bottom:161.242267pt;}
.ye6{bottom:162.701067pt;}
.y150{bottom:166.042267pt;}
.yed{bottom:166.221067pt;}
.y185{bottom:169.741067pt;}
.y1e{bottom:172.400000pt;}
.y197{bottom:174.861067pt;}
.y1ab{bottom:175.181067pt;}
.ycc{bottom:175.501067pt;}
.y115{bottom:175.642267pt;}
.y85{bottom:175.821067pt;}
.yad{bottom:178.381067pt;}
.y136{bottom:180.442267pt;}
.y10d{bottom:181.333333pt;}
.y13f{bottom:185.421067pt;}
.y6d{bottom:185.741067pt;}
.ye5{bottom:191.501067pt;}
.y114{bottom:194.842267pt;}
.yec{bottom:195.021067pt;}
.y135{bottom:196.000000pt;}
.y184{bottom:198.541067pt;}
.y149{bottom:199.642267pt;}
.y196{bottom:203.661067pt;}
.y1aa{bottom:203.981067pt;}
.ycb{bottom:204.301067pt;}
.y84{bottom:204.621067pt;}
.y1d{bottom:204.733333pt;}
.y10c{bottom:205.333333pt;}
.yac{bottom:207.181067pt;}
.y113{bottom:214.042267pt;}
.y6c{bottom:214.541067pt;}
.y148{bottom:218.842267pt;}
.y134{bottom:220.000000pt;}
.ye4{bottom:220.301067pt;}
.yeb{bottom:223.821067pt;}
.y183{bottom:227.341067pt;}
.y10b{bottom:229.333333pt;}
.y195{bottom:232.461067pt;}
.y1a9{bottom:232.781067pt;}
.yca{bottom:233.101067pt;}
.y83{bottom:233.421067pt;}
.yab{bottom:235.981067pt;}
.y1c{bottom:237.400000pt;}
.y147{bottom:238.042267pt;}
.y14e{bottom:242.701067pt;}
.y6b{bottom:243.341067pt;}
.y133{bottom:244.000000pt;}
.ye3{bottom:249.101067pt;}
.yea{bottom:252.621067pt;}
.y10a{bottom:253.333333pt;}
.y182{bottom:256.141067pt;}
.y194{bottom:261.261067pt;}
.y1a8{bottom:261.581067pt;}
.yc9{bottom:261.901067pt;}
.y82{bottom:262.221067pt;}
.yaa{bottom:264.781067pt;}
.ye1{bottom:265.333333pt;}
.y132{bottom:268.000000pt;}
.y1b{bottom:270.066667pt;}
.y14d{bottom:270.221067pt;}
.y6a{bottom:272.141067pt;}
.y27{bottom:273.066667pt;}
.y109{bottom:277.333333pt;}
.y81{bottom:281.421067pt;}
.y181{bottom:284.941067pt;}
.y193{bottom:290.061067pt;}
.y1a7{bottom:290.381067pt;}
.yc8{bottom:290.701067pt;}
.yd0{bottom:291.021067pt;}
.y26{bottom:291.733333pt;}
.y131{bottom:292.000000pt;}
.ydf{bottom:293.333333pt;}
.ya9{bottom:293.581067pt;}
.y14c{bottom:295.821067pt;}
.y80{bottom:300.621067pt;}
.y69{bottom:301.261067pt;}
.y108{bottom:301.333333pt;}
.y1a{bottom:302.426667pt;}
.y172{bottom:306.666667pt;}
.y11d{bottom:310.221067pt;}
.ya8{bottom:312.781067pt;}
.y180{bottom:313.741067pt;}
.y130{bottom:316.000000pt;}
.y192{bottom:318.861067pt;}
.y1a6{bottom:319.181067pt;}
.yc7{bottom:319.501067pt;}
.y7f{bottom:319.821067pt;}
.y4d{bottom:321.973333pt;}
.ydd{bottom:322.666667pt;}
.y107{bottom:325.333333pt;}
.y68{bottom:330.061067pt;}
.ya7{bottom:331.981067pt;}
.y16d{bottom:334.666667pt;}
.y19{bottom:335.093333pt;}
.y7e{bottom:339.021067pt;}
.y12f{bottom:340.000000pt;}
.y17f{bottom:342.541067pt;}
.y4c{bottom:345.333333pt;}
.y191{bottom:347.661067pt;}
.y1a5{bottom:347.981067pt;}
.yc6{bottom:348.301067pt;}
.ycf{bottom:348.621067pt;}
.y106{bottom:349.333333pt;}
.ya6{bottom:351.181067pt;}
.ydb{bottom:352.000000pt;}
.y7d{bottom:358.221067pt;}
.y67{bottom:358.861067pt;}
.y12e{bottom:364.000000pt;}
.y18{bottom:367.760000pt;}
.y11c{bottom:367.821067pt;}
.y4b{bottom:368.373333pt;}
.ya5{bottom:370.381067pt;}
.y17e{bottom:371.341067pt;}
.y105{bottom:373.333333pt;}
.y190{bottom:376.461067pt;}
.y1a4{bottom:376.781067pt;}
.yc5{bottom:377.101067pt;}
.y7c{bottom:377.421067pt;}
.y66{bottom:387.661067pt;}
.y12d{bottom:388.000000pt;}
.ya4{bottom:389.581067pt;}
.y4a{bottom:391.093333pt;}
.y16b{bottom:393.333333pt;}
.y11b{bottom:396.621067pt;}
.y104{bottom:397.333333pt;}
.y17{bottom:400.133333pt;}
.y17d{bottom:400.141067pt;}
.yda{bottom:404.621067pt;}
.y18f{bottom:405.261067pt;}
.y1a3{bottom:405.581067pt;}
.yc4{bottom:405.901067pt;}
.y7b{bottom:406.221067pt;}
.ya3{bottom:408.781067pt;}
.y12c{bottom:412.000000pt;}
.y49{bottom:412.533333pt;}
.y65{bottom:416.461067pt;}
.y103{bottom:421.333333pt;}
.y13a{bottom:422.666667pt;}
.y11a{bottom:425.421067pt;}
.ya2{bottom:427.981067pt;}
.y17c{bottom:428.941067pt;}
.y16{bottom:432.800000pt;}
.yd9{bottom:433.421067pt;}
.y18e{bottom:434.061067pt;}
.y1a2{bottom:434.381067pt;}
.yc3{bottom:434.701067pt;}
.y48{bottom:434.933333pt;}
.y7a{bottom:435.021067pt;}
.y12b{bottom:436.000000pt;}
.ye9{bottom:439.181067pt;}
.y24{bottom:442.133333pt;}
.y64{bottom:445.261067pt;}
.y102{bottom:445.333333pt;}
.ya1{bottom:447.181067pt;}
.y169{bottom:450.666667pt;}
.y119{bottom:454.221067pt;}
.y17b{bottom:457.741067pt;}
.y12a{bottom:460.000000pt;}
.yd8{bottom:462.221067pt;}
.y18d{bottom:462.861067pt;}
.y1a1{bottom:463.181067pt;}
.yc2{bottom:463.501067pt;}
.y79{bottom:463.821067pt;}
.y15{bottom:465.466667pt;}
.ya0{bottom:466.381067pt;}
.y101{bottom:469.333333pt;}
.y63{bottom:474.061067pt;}
.y166{bottom:477.333333pt;}
.y47{bottom:478.133333pt;}
.y129{bottom:484.000000pt;}
.y9f{bottom:485.581067pt;}
.y17a{bottom:486.541067pt;}
.yd7{bottom:491.661067pt;}
.y1a0{bottom:491.981067pt;}
.yc1{bottom:492.301067pt;}
.y78{bottom:492.621067pt;}
.y100{bottom:493.333333pt;}
.y14{bottom:497.800000pt;}
.y62{bottom:502.861067pt;}
.y9e{bottom:504.781067pt;}
.y162{bottom:505.333333pt;}
.y128{bottom:508.000000pt;}
.y46{bottom:510.133333pt;}
.y179{bottom:515.341067pt;}
.yff{bottom:517.333333pt;}
.y18c{bottom:520.461067pt;}
.yd6{bottom:520.781067pt;}
.yc0{bottom:521.101067pt;}
.y77{bottom:521.421067pt;}
.y9d{bottom:523.981067pt;}
.y13{bottom:530.506667pt;}
.y61{bottom:531.661067pt;}
.y126{bottom:532.000000pt;}
.y15f{bottom:534.666667pt;}
.yfd{bottom:541.333333pt;}
.y45{bottom:542.133333pt;}
.y9c{bottom:543.181067pt;}
.y178{bottom:544.141067pt;}
.y18b{bottom:549.261067pt;}
.y19f{bottom:549.581067pt;}
.ybf{bottom:549.901067pt;}
.y76{bottom:550.221067pt;}
.y124{bottom:557.333333pt;}
.y60{bottom:560.461067pt;}
.y9b{bottom:562.381067pt;}
.y12{bottom:563.173333pt;}
.y15c{bottom:564.000000pt;}
.yfb{bottom:566.666667pt;}
.y177{bottom:572.941067pt;}
.y44{bottom:574.133333pt;}
.y18a{bottom:578.381067pt;}
.ybe{bottom:578.701067pt;}
.y75{bottom:579.021067pt;}
.y120{bottom:581.333333pt;}
.y9a{bottom:581.581067pt;}
.yf6{bottom:590.666667pt;}
.y158{bottom:592.000000pt;}
.y11{bottom:595.506667pt;}
.y99{bottom:600.781067pt;}
.y176{bottom:601.741067pt;}
.y5f{bottom:603.021067pt;}
.y43{bottom:606.133333pt;}
.y189{bottom:607.181067pt;}
.ybd{bottom:607.501067pt;}
.y74{bottom:607.821067pt;}
.y98{bottom:619.981067pt;}
.y156{bottom:621.333333pt;}
.y10{bottom:628.173333pt;}
.y175{bottom:630.541067pt;}
.y5e{bottom:635.021067pt;}
.y188{bottom:635.981067pt;}
.ybc{bottom:636.301067pt;}
.y73{bottom:636.621067pt;}
.y42{bottom:638.133333pt;}
.y97{bottom:639.181067pt;}
.y11f{bottom:644.122267pt;}
.y154{bottom:650.666667pt;}
.yf5{bottom:653.722267pt;}
.y174{bottom:656.461067pt;}
.y96{bottom:658.381067pt;}
.y5d{bottom:659.021067pt;}
.yf{bottom:660.866667pt;}
.y11e{bottom:663.322267pt;}
.y19e{bottom:664.781067pt;}
.ybb{bottom:665.101067pt;}
.y72{bottom:665.421067pt;}
.y41{bottom:669.493333pt;}
.y95{bottom:677.581067pt;}
.y5c{bottom:678.221067pt;}
.y152{bottom:680.000000pt;}
.yf4{bottom:682.522267pt;}
.ye{bottom:689.200000pt;}
.y19d{bottom:693.581067pt;}
.yba{bottom:693.901067pt;}
.y71{bottom:694.221067pt;}
.y40{bottom:696.693333pt;}
.y94{bottom:696.781067pt;}
.y93{bottom:715.981067pt;}
.yd{bottom:717.866667pt;}
.y19c{bottom:722.381067pt;}
.yb9{bottom:722.701067pt;}
.y5b{bottom:723.021067pt;}
.y3f{bottom:724.213333pt;}
.yf0{bottom:729.562267pt;}
.y92{bottom:735.181067pt;}
.yc{bottom:745.226667pt;}
.y19b{bottom:751.181067pt;}
.yb8{bottom:751.501067pt;}
.y3e{bottom:751.733333pt;}
.y5a{bottom:751.821067pt;}
.y91{bottom:754.381067pt;}
.y90{bottom:773.581067pt;}
.yb{bottom:773.893333pt;}
.y3d{bottom:778.933333pt;}
.y19a{bottom:779.981067pt;}
.yb7{bottom:780.301067pt;}
.y59{bottom:780.621067pt;}
.y8f{bottom:792.781067pt;}
.ya{bottom:800.560000pt;}
.y199{bottom:808.781067pt;}
.yb6{bottom:809.101067pt;}
.y58{bottom:809.421067pt;}
.y8e{bottom:811.981067pt;}
.y3c{bottom:822.133333pt;}
.y9{bottom:825.226667pt;}
.y3b{bottom:837.493333pt;}
.yb5{bottom:837.901067pt;}
.y57{bottom:838.221067pt;}
.y8d{bottom:840.781067pt;}
.y3a{bottom:852.853333pt;}
.y8{bottom:852.893333pt;}
.yb4{bottom:866.701067pt;}
.y56{bottom:867.341067pt;}
.y39{bottom:868.213333pt;}
.y8c{bottom:869.581067pt;}
.y7{bottom:880.600000pt;}
.y38{bottom:883.573333pt;}
.yb3{bottom:895.501067pt;}
.y55{bottom:896.141067pt;}
.y8b{bottom:898.381067pt;}
.y37{bottom:898.933333pt;}
.y6{bottom:908.266667pt;}
.y36{bottom:914.293333pt;}
.yb2{bottom:915.981067pt;}
.yd5{bottom:924.301067pt;}
.y54{bottom:924.941067pt;}
.y8a{bottom:927.181067pt;}
.y35{bottom:929.653333pt;}
.yb1{bottom:934.541067pt;}
.y5{bottom:935.933333pt;}
.y34{bottom:945.013333pt;}
.yd4{bottom:953.421067pt;}
.y53{bottom:953.741067pt;}
.y89{bottom:955.981067pt;}
.y4{bottom:962.266667pt;}
.y2d{bottom:966.666667pt;}
.y52{bottom:982.541067pt;}
.y88{bottom:983.821067pt;}
.y3{bottom:984.626667pt;}
.y51{bottom:1011.341067pt;}
.y2{bottom:1022.626667pt;}
.y2c{bottom:1026.626667pt;}
.y1{bottom:1035.626667pt;}
.y13d{bottom:1039.821067pt;}
.yd1{bottom:1058.381067pt;}
.y13c{bottom:1058.701067pt;}
.y32{bottom:1144.693333pt;}
.h38{height:19.184360pt;}
.h35{height:19.200000pt;}
.h11{height:20.000000pt;}
.h1f{height:21.333333pt;}
.h2f{height:24.740625pt;}
.h31{height:25.333333pt;}
.h22{height:26.446875pt;}
.h2c{height:27.078750pt;}
.h3d{height:28.000000pt;}
.h2b{height:29.333333pt;}
.he{height:29.875000pt;}
.h29{height:30.666667pt;}
.h33{height:34.125000pt;}
.h15{height:35.831250pt;}
.h12{height:36.303750pt;}
.h30{height:36.540000pt;}
.h23{height:36.566250pt;}
.h1{height:37.343750pt;}
.h32{height:38.592430pt;}
.h36{height:38.620155pt;}
.h25{height:39.243750pt;}
.h14{height:40.320000pt;}
.ha{height:42.656250pt;}
.h3a{height:43.343750pt;}
.h28{height:43.531250pt;}
.h20{height:43.718750pt;}
.h9{height:43.750000pt;}
.hc{height:44.812500pt;}
.h2a{height:45.976374pt;}
.h24{height:46.174406pt;}
.h1b{height:47.775000pt;}
.hf{height:49.333333pt;}
.h1a{height:50.242500pt;}
.h1c{height:50.496250pt;}
.h10{height:51.187500pt;}
.h2{height:52.864583pt;}
.h3b{height:53.875000pt;}
.h3{height:54.148438pt;}
.h21{height:54.562500pt;}
.h3c{height:56.901127pt;}
.h27{height:57.031250pt;}
.h26{height:57.627243pt;}
.h3e{height:60.000000pt;}
.h18{height:61.770000pt;}
.h16{height:61.814375pt;}
.h6{height:61.979167pt;}
.h17{height:62.278125pt;}
.h4{height:63.484375pt;}
.h5{height:65.351562pt;}
.h19{height:70.809375pt;}
.h7{height:72.916667pt;}
.h39{height:73.333333pt;}
.hd{height:80.033333pt;}
.hb{height:155.400000pt;}
.h8{height:349.773333pt;}
.h37{height:782.362267pt;}
.h2d{height:793.700800pt;}
.h2e{height:794.000000pt;}
.h34{height:1111.181067pt;}
.h13{height:1121.333333pt;}
.h1d{height:1122.519733pt;}
.h1e{height:1122.666667pt;}
.h0{height:1145.333333pt;}
.wb{width:8.000000pt;}
.wf{width:9.333333pt;}
.wc{width:10.666667pt;}
.wd{width:13.333333pt;}
.w20{width:15.680000pt;}
.we{width:16.000000pt;}
.w10{width:17.333333pt;}
.w4{width:18.666667pt;}
.w1e{width:28.000000pt;}
.w3{width:28.333333pt;}
.w1c{width:29.333333pt;}
.w1b{width:30.666667pt;}
.w28{width:34.666667pt;}
.w1a{width:37.333333pt;}
.w15{width:38.666667pt;}
.w18{width:40.000000pt;}
.w19{width:41.333333pt;}
.w2{width:50.000000pt;}
.w27{width:50.666667pt;}
.w23{width:68.000000pt;}
.w12{width:72.000000pt;}
.w7{width:78.666667pt;}
.w22{width:85.333333pt;}
.w17{width:86.666667pt;}
.w24{width:97.333333pt;}
.w26{width:120.000000pt;}
.w16{width:133.333333pt;}
.w1d{width:134.666667pt;}
.w25{width:162.666667pt;}
.w11{width:172.000000pt;}
.w6{width:192.000000pt;}
.w1f{width:782.362267pt;}
.w8{width:792.666667pt;}
.w9{width:793.700800pt;}
.wa{width:794.000000pt;}
.w5{width:816.666667pt;}
.w21{width:1111.181067pt;}
.w13{width:1122.519733pt;}
.w14{width:1122.666667pt;}
.w1{width:1685.999975pt;}
.w0{width:1686.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.045200pt;}
.x10{left:2.186532pt;}
.xbc{left:3.234107pt;}
.xab{left:4.179476pt;}
.x8d{left:5.105129pt;}
.xa0{left:6.335049pt;}
.x69{left:7.925136pt;}
.x88{left:9.327551pt;}
.x9f{left:10.489663pt;}
.x97{left:12.065183pt;}
.xa1{left:13.103423pt;}
.xe{left:14.333333pt;}
.x99{left:15.617023pt;}
.xc{left:16.666667pt;}
.x9{left:17.666667pt;}
.x6a{left:18.621627pt;}
.x8a{left:19.631849pt;}
.x9e{left:21.582356pt;}
.x6b{left:22.620560pt;}
.x15{left:24.000000pt;}
.xc0{left:25.211813pt;}
.x68{left:26.960400pt;}
.xaa{left:27.875903pt;}
.x67{left:29.578747pt;}
.x87{left:31.270911pt;}
.xa{left:38.333333pt;}
.xa9{left:39.786207pt;}
.x14{left:58.960960pt;}
.x86{left:66.465279pt;}
.xac{left:83.840000pt;}
.x16{left:90.559904pt;}
.x1c{left:95.178373pt;}
.x55{left:112.006501pt;}
.x17{left:114.559904pt;}
.x62{left:116.779941pt;}
.x6f{left:119.178373pt;}
.xb0{left:122.666667pt;}
.x26{left:126.631845pt;}
.x12{left:130.354773pt;}
.x85{left:132.000000pt;}
.x3e{left:132.936517pt;}
.xb9{left:134.666667pt;}
.xad{left:141.600261pt;}
.x1f{left:143.178373pt;}
.xa2{left:149.444095pt;}
.x33{left:158.296197pt;}
.xae{left:166.209637pt;}
.x35{left:167.946917pt;}
.x6c{left:170.365861pt;}
.x11{left:171.820373pt;}
.x34{left:178.272773pt;}
.x20{left:183.178373pt;}
.x103{left:184.648101pt;}
.xb8{left:189.600261pt;}
.xf0{left:194.499653pt;}
.x5d{left:195.774405pt;}
.x36{left:197.915685pt;}
.xba{left:201.333333pt;}
.x41{left:203.045573pt;}
.x64{left:205.333333pt;}
.xe7{left:208.312165pt;}
.x4f{left:214.179013pt;}
.x44{left:215.584613pt;}
.x101{left:216.605125pt;}
.xde{left:217.546533pt;}
.xdb{left:223.921541pt;}
.x56{left:225.428389pt;}
.xca{left:227.851237pt;}
.x104{left:229.327781pt;}
.xcb{left:230.460613pt;}
.x27{left:234.889637pt;}
.x2d{left:236.442693pt;}
.x75{left:238.417317pt;}
.x76{left:242.339205pt;}
.x7f{left:243.368805pt;}
.x2{left:245.359975pt;}
.x25{left:249.311525pt;}
.xc4{left:251.843429pt;}
.x49{left:253.389317pt;}
.x72{left:255.138661pt;}
.x80{left:260.981413pt;}
.x4a{left:264.365861pt;}
.xe1{left:265.359045pt;}
.x46{left:267.584613pt;}
.x2b{left:272.767237pt;}
.x77{left:274.708325pt;}
.xd3{left:279.036453pt;}
.x78{left:282.098949pt;}
.x48{left:285.537765pt;}
.xe2{left:287.655909pt;}
.xc6{left:288.991845pt;}
.x28{left:290.303717pt;}
.x98{left:293.333333pt;}
.x57{left:295.584613pt;}
.xbb{left:297.333333pt;}
.x24{left:304.288069pt;}
.xf{left:306.666667pt;}
.x13{left:308.000000pt;}
.x5e{left:309.905573pt;}
.x58{left:312.412773pt;}
.x4d{left:320.678405pt;}
.x106{left:322.968421pt;}
.x3f{left:324.686533pt;}
.x63{left:326.460261pt;}
.x6e{left:327.764293pt;}
.x108{left:333.882533pt;}
.x23{left:336.264613pt;}
.xf3{left:339.193573pt;}
.x4c{left:341.796453pt;}
.x2e{left:344.541093pt;}
.x50{left:346.334693pt;}
.x89{left:349.333333pt;}
.x7c{left:353.705253pt;}
.x52{left:356.038053pt;}
.x7d{left:359.666213pt;}
.xd8{left:362.874533pt;}
.x43{left:367.233253pt;}
.x40{left:369.038053pt;}
.x2a{left:370.647333pt;}
.x53{left:371.581093pt;}
.x81{left:372.912933pt;}
.x65{left:376.000000pt;}
.xc1{left:385.452133pt;}
.xa3{left:386.666667pt;}
.x8b{left:388.000000pt;}
.x51{left:389.333333pt;}
.x42{left:390.666667pt;}
.x22{left:392.000000pt;}
.x1d{left:393.333333pt;}
.x4e{left:395.569893pt;}
.x21{left:397.311653pt;}
.x83{left:401.006463pt;}
.x84{left:403.339903pt;}
.xf8{left:404.239653pt;}
.x2c{left:405.768933pt;}
.x8c{left:425.333333pt;}
.x7a{left:427.658213pt;}
.x60{left:431.489893pt;}
.x7b{left:433.619173pt;}
.x8e{left:434.666667pt;}
.x102{left:443.112933pt;}
.x66{left:446.666667pt;}
.xc2{left:449.135333pt;}
.xd0{left:450.596773pt;}
.x6d{left:451.897253pt;}
.x29{left:453.428773pt;}
.xff{left:455.684133pt;}
.xec{left:457.099173pt;}
.x59{left:458.381413pt;}
.xc9{left:462.001253pt;}
.x39{left:465.401573pt;}
.x31{left:469.030053pt;}
.x3a{left:473.245413pt;}
.xef{left:475.533413pt;}
.x5f{left:479.573093pt;}
.x37{left:481.275813pt;}
.xe4{left:487.122213pt;}
.xaf{left:489.421093pt;}
.x19{left:493.701120pt;}
.x1a{left:496.775360pt;}
.x73{left:497.817253pt;}
.x32{left:498.998693pt;}
.xf7{left:503.033573pt;}
.x38{left:505.095973pt;}
.x74{left:507.459813pt;}
.xee{left:509.800293pt;}
.x18{left:513.091840pt;}
.x7e{left:514.884773pt;}
.x1b{left:517.538240pt;}
.xcc{left:521.364133pt;}
.xc5{left:523.280933pt;}
.xea{left:525.499813pt;}
.x5a{left:528.537893pt;}
.xc7{left:530.975973pt;}
.x79{left:534.203813pt;}
.xda{left:535.236453pt;}
.xbf{left:537.333333pt;}
.x107{left:539.023013pt;}
.xd1{left:541.159013pt;}
.x5b{left:545.365733pt;}
.xd7{left:549.484133pt;}
.xdf{left:551.887653pt;}
.x82{left:553.333333pt;}
.xfb{left:554.763493pt;}
.xe3{left:556.319973pt;}
.xfc{left:559.164453pt;}
.xd9{left:560.983973pt;}
.x5c{left:563.431333pt;}
.x8f{left:566.666667pt;}
.xb1{left:568.000000pt;}
.xf1{left:569.029413pt;}
.xf2{left:570.666533pt;}
.xf4{left:572.077733pt;}
.x70{left:573.755813pt;}
.xfd{left:575.752613pt;}
.x71{left:577.677733pt;}
.xe9{left:581.819493pt;}
.xcd{left:583.880613pt;}
.x105{left:584.880293pt;}
.xdd{left:586.003173pt;}
.xfe{left:586.988133pt;}
.xc3{left:591.102053pt;}
.xed{left:592.468453pt;}
.xa7{left:594.666667pt;}
.x9a{left:596.000000pt;}
.xd6{left:602.415013pt;}
.xf6{left:604.510693pt;}
.xdc{left:607.537573pt;}
.xeb{left:611.804453pt;}
.x3b{left:613.581413pt;}
.xbd{left:616.000000pt;}
.xe6{left:616.977893pt;}
.x100{left:618.160293pt;}
.xcf{left:619.518053pt;}
.x3c{left:621.425253pt;}
.xa8{left:622.666667pt;}
.x9b{left:624.000000pt;}
.xc8{left:627.085093pt;}
.xd5{left:628.663653pt;}
.xe8{left:630.618533pt;}
.x54{left:631.742373pt;}
.xfa{left:632.807333pt;}
.xf5{left:635.858853pt;}
.xd4{left:636.883493pt;}
.x3d{left:642.901733pt;}
.xe5{left:648.578853pt;}
.xe0{left:649.642853pt;}
.x90{left:652.000000pt;}
.xb2{left:653.333333pt;}
.xd2{left:656.319973pt;}
.x61{left:658.697253pt;}
.x2f{left:661.874533pt;}
.xbe{left:665.333333pt;}
.xb7{left:666.591333pt;}
.xf9{left:671.988133pt;}
.xce{left:679.288613pt;}
.xa4{left:690.666667pt;}
.x91{left:692.000000pt;}
.x4b{left:694.998693pt;}
.x45{left:696.147173pt;}
.x47{left:698.217573pt;}
.x30{left:699.445093pt;}
.xa5{left:726.666667pt;}
.x92{left:728.000000pt;}
.xa6{left:736.000000pt;}
.x93{left:737.333333pt;}
.x8{left:820.173333pt;}
.xb{left:828.840000pt;}
.xd{left:833.173333pt;}
.x1{left:867.506642pt;}
.x94{left:869.333333pt;}
.xb3{left:870.666667pt;}
.x9c{left:897.333333pt;}
.xb5{left:898.666667pt;}
.x9d{left:925.333333pt;}
.xb6{left:926.666667pt;}
.x95{left:954.666667pt;}
.x96{left:992.000000pt;}
.xb4{left:993.333333pt;}
.x6{left:1157.559975pt;}
.x3{left:1179.573308pt;}
.x7{left:1223.906642pt;}
.x4{left:1319.266642pt;}
.x5{left:1420.959975pt;}
}




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