
    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_14789afa0801c3a5e184761b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8c1fce0d2c8b85d1a2a44596.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2cf0084877c5310fc1ffd13d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_40997860c408209a6b614c34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9fd5462d1710de690305244e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113281;font-style:normal;font-weight: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_8e1edb14909cfa4967f5959f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.719727;font-style:normal;font-weight: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_609b1fe58ae0034b945a8062.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_67f17f69b59599e04b67db08.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_7c5f78ce48ca8ed7dbdb7229.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5fbc3e77a4e89bb36c004f59.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;}
.m26{transform:matrix(0.000000,-0.249985,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249985,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249985,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.279748,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.279748,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.279748,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.038796,-0.253582,0.247124,0.037810,0,0);-ms-transform:matrix(0.038796,-0.253582,0.247124,0.037810,0,0);-webkit-transform:matrix(0.038796,-0.253582,0.247124,0.037810,0,0);}
.m1{transform:matrix(0.225086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225086,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225088,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.228571,-0.116460,0.113494,0.222753,0,0);-ms-transform:matrix(0.228571,-0.116460,0.113494,0.222753,0,0);-webkit-transform:matrix(0.228571,-0.116460,0.113494,0.222753,0,0);}
.m1d{transform:matrix(0.228916,-0.100486,0.100486,0.228916,0,0);-ms-transform:matrix(0.228916,-0.100486,0.100486,0.228916,0,0);-webkit-transform:matrix(0.228916,-0.100486,0.100486,0.228916,0,0);}
.m1e{transform:matrix(0.229440,-0.099284,0.099284,0.229440,0,0);-ms-transform:matrix(0.229440,-0.099284,0.099284,0.229440,0,0);-webkit-transform:matrix(0.229440,-0.099284,0.099284,0.229440,0,0);}
.m16{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249602,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250449,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253635,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253689,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253784,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.256081,-0.015210,0.014821,0.249560,0,0);-ms-transform:matrix(0.256081,-0.015210,0.014821,0.249560,0,0);-webkit-transform:matrix(0.256081,-0.015210,0.014821,0.249560,0,0);}
.m17{transform:matrix(0.257702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257702,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.257752,-0.000895,0.000864,0.249999,0,0);-ms-transform:matrix(0.257752,-0.000895,0.000864,0.249999,0,0);-webkit-transform:matrix(0.257752,-0.000895,0.000864,0.249999,0,0);}
.m10{transform:matrix(0.257753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257753,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.257863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257863,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.279748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279748,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.279751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279751,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-78.838746px;}
.v2{vertical-align:-33.480000px;}
.v1{vertical-align:-1.438560px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.011829px;}
.v4{vertical-align:37.437415px;}
.va{vertical-align:88.560000px;}
.v9{vertical-align:91.080600px;}
.v5{vertical-align:92.521851px;}
.v8{vertical-align:93.958708px;}
.v6{vertical-align:98.280661px;}
.ls28{letter-spacing:-8.194289px;}
.ls51{letter-spacing:-7.767527px;}
.ls49{letter-spacing:-5.121856px;}
.ls48{letter-spacing:-4.759247px;}
.ls42{letter-spacing:-4.432662px;}
.ls4f{letter-spacing:-4.010819px;}
.ls4d{letter-spacing:-3.653691px;}
.lsa6{letter-spacing:-3.166377px;}
.ls2a{letter-spacing:-2.993578px;}
.ls47{letter-spacing:-2.530711px;}
.ls52{letter-spacing:-2.438083px;}
.lsce{letter-spacing:-2.000563px;}
.lsb0{letter-spacing:-1.836431px;}
.ls4e{letter-spacing:-1.586471px;}
.lsbe{letter-spacing:-1.425801px;}
.ls4b{letter-spacing:-1.380436px;}
.ls45{letter-spacing:-0.997215px;}
.ls70{letter-spacing:-0.883021px;}
.ls73{letter-spacing:-0.871759px;}
.ls6f{letter-spacing:-0.866201px;}
.ls60{letter-spacing:-0.854655px;}
.ls5e{letter-spacing:-0.810110px;}
.ls35{letter-spacing:-0.806015px;}
.ls6e{letter-spacing:-0.794719px;}
.ls3c{letter-spacing:-0.784015px;}
.ls3b{letter-spacing:-0.740459px;}
.ls66{letter-spacing:-0.739505px;}
.ls61{letter-spacing:-0.728260px;}
.ls63{letter-spacing:-0.716450px;}
.ls6d{letter-spacing:-0.682849px;}
.lsca{letter-spacing:-0.661259px;}
.ls76{letter-spacing:-0.606292px;}
.ls72{letter-spacing:-0.513026px;}
.ls31{letter-spacing:-0.504426px;}
.lsd9{letter-spacing:-0.470988px;}
.lsa8{letter-spacing:-0.446340px;}
.ls5f{letter-spacing:-0.441002px;}
.ls5d{letter-spacing:-0.430739px;}
.lsbd{letter-spacing:-0.408516px;}
.ls5c{letter-spacing:-0.382879px;}
.lsb5{letter-spacing:-0.366282px;}
.ls68{letter-spacing:-0.293900px;}
.ls3d{letter-spacing:-0.288719px;}
.ls5{letter-spacing:-0.270540px;}
.lscc{letter-spacing:-0.252323px;}
.lsde{letter-spacing:-0.249444px;}
.ls74{letter-spacing:-0.234485px;}
.ls64{letter-spacing:-0.229048px;}
.ls6b{letter-spacing:-0.227729px;}
.ls21{letter-spacing:-0.201852px;}
.lsc6{letter-spacing:-0.200253px;}
.lsc3{letter-spacing:-0.192243px;}
.lsdd{letter-spacing:-0.191880px;}
.ls75{letter-spacing:-0.187588px;}
.ls6a{letter-spacing:-0.185902px;}
.ls3a{letter-spacing:-0.174226px;}
.ls96{letter-spacing:-0.172800px;}
.lsc4{letter-spacing:-0.168213px;}
.ls9{letter-spacing:-0.153504px;}
.lscd{letter-spacing:-0.147913px;}
.lsc5{letter-spacing:-0.144182px;}
.ls1c{letter-spacing:-0.144180px;}
.ls1d{letter-spacing:-0.134568px;}
.lse{letter-spacing:-0.134316px;}
.ls9c{letter-spacing:-0.129600px;}
.ls1e{letter-spacing:-0.124956px;}
.ls1f{letter-spacing:-0.115344px;}
.ls95{letter-spacing:-0.115200px;}
.lsb{letter-spacing:-0.115128px;}
.ls20{letter-spacing:-0.105732px;}
.lsa7{letter-spacing:-0.105021px;}
.lsb7{letter-spacing:-0.100872px;}
.ls9b{letter-spacing:-0.100800px;}
.ls38{letter-spacing:-0.096240px;}
.ls1a{letter-spacing:-0.096120px;}
.lsd6{letter-spacing:-0.095940px;}
.lsd8{letter-spacing:-0.086508px;}
.ls4{letter-spacing:-0.086400px;}
.ls69{letter-spacing:-0.082659px;}
.ls8{letter-spacing:-0.076752px;}
.ls3e{letter-spacing:-0.072000px;}
.ls83{letter-spacing:-0.071928px;}
.ls86{letter-spacing:-0.059940px;}
.ls98{letter-spacing:-0.057600px;}
.lsda{letter-spacing:-0.057564px;}
.lsb2{letter-spacing:-0.057232px;}
.ls34{letter-spacing:-0.055587px;}
.ls1b{letter-spacing:-0.047952px;}
.ls3{letter-spacing:-0.043200px;}
.ls7f{letter-spacing:-0.039636px;}
.lsa{letter-spacing:-0.038376px;}
.lsd7{letter-spacing:-0.033624px;}
.lsc8{letter-spacing:-0.032040px;}
.ls7e{letter-spacing:-0.028800px;}
.ls85{letter-spacing:-0.023976px;}
.ls1{letter-spacing:-0.021600px;}
.lsd5{letter-spacing:-0.016812px;}
.ls94{letter-spacing:-0.014400px;}
.ls80{letter-spacing:-0.013212px;}
.ls84{letter-spacing:-0.011988px;}
.lsd2{letter-spacing:-0.010800px;}
.ls33{letter-spacing:-0.008020px;}
.ls2{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.010800px;}
.ls11{letter-spacing:0.011988px;}
.ls6{letter-spacing:0.012024px;}
.ls55{letter-spacing:0.013051px;}
.ls78{letter-spacing:0.013212px;}
.ls9d{letter-spacing:0.014400px;}
.lsbb{letter-spacing:0.016020px;}
.ls37{letter-spacing:0.016040px;}
.ls7{letter-spacing:0.016812px;}
.ls57{letter-spacing:0.017092px;}
.ls17{letter-spacing:0.019224px;}
.lsd0{letter-spacing:0.021600px;}
.ls14{letter-spacing:0.023976px;}
.ls2c{letter-spacing:0.024060px;}
.ls8f{letter-spacing:0.028800px;}
.ls8a{letter-spacing:0.032400px;}
.ls93{letter-spacing:0.033624px;}
.ls7b{letter-spacing:0.035964px;}
.ls0{letter-spacing:0.043200px;}
.ls23{letter-spacing:0.047952px;}
.ls18{letter-spacing:0.048060px;}
.lsd4{letter-spacing:0.050436px;}
.ls79{letter-spacing:0.052848px;}
.lsc7{letter-spacing:0.056071px;}
.ls90{letter-spacing:0.057600px;}
.ls15{letter-spacing:0.059940px;}
.ls2d{letter-spacing:0.064160px;}
.ls5a{letter-spacing:0.065245px;}
.ls81{letter-spacing:0.066060px;}
.ls5b{letter-spacing:0.067248px;}
.ls7a{letter-spacing:0.071928px;}
.ls53{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.076896px;}
.lsbc{letter-spacing:0.080101px;}
.ls7d{letter-spacing:0.083916px;}
.ls8d{letter-spacing:0.084060px;}
.ls9a{letter-spacing:0.086400px;}
.ls87{letter-spacing:0.097171px;}
.ls97{letter-spacing:0.100800px;}
.ls67{letter-spacing:0.100872px;}
.ls12{letter-spacing:0.107892px;}
.ls54{letter-spacing:0.108772px;}
.lsdb{letter-spacing:0.115128px;}
.ls99{letter-spacing:0.115200px;}
.ls13{letter-spacing:0.119880px;}
.lsf{letter-spacing:0.129600px;}
.ls19{letter-spacing:0.134568px;}
.lscf{letter-spacing:0.143856px;}
.lsc{letter-spacing:0.158400px;}
.ls2e{letter-spacing:0.160399px;}
.lsd1{letter-spacing:0.167832px;}
.ls82{letter-spacing:0.172800px;}
.ls10{letter-spacing:0.179820px;}
.ls92{letter-spacing:0.187200px;}
.ls65{letter-spacing:0.191443px;}
.ls56{letter-spacing:0.198264px;}
.ls59{letter-spacing:0.201682px;}
.ls91{letter-spacing:0.216000px;}
.lsab{letter-spacing:0.228926px;}
.ls89{letter-spacing:0.237528px;}
.ls41{letter-spacing:0.242271px;}
.ls9f{letter-spacing:0.249425px;}
.lsb8{letter-spacing:0.252180px;}
.lsd3{letter-spacing:0.263736px;}
.lsc0{letter-spacing:0.272344px;}
.ls71{letter-spacing:0.274073px;}
.ls7c{letter-spacing:0.275724px;}
.lsc1{letter-spacing:0.277594px;}
.lsba{letter-spacing:0.280354px;}
.ls6c{letter-spacing:0.303083px;}
.lsaa{letter-spacing:0.309051px;}
.lsd{letter-spacing:0.311688px;}
.ls30{letter-spacing:0.312778px;}
.lsb3{letter-spacing:0.331943px;}
.ls8b{letter-spacing:0.345506px;}
.lsad{letter-spacing:0.354836px;}
.lsaf{letter-spacing:0.366282px;}
.lsc9{letter-spacing:0.376476px;}
.ls8c{letter-spacing:0.377897px;}
.ls39{letter-spacing:0.417038px;}
.ls62{letter-spacing:0.417273px;}
.lsae{letter-spacing:0.423514px;}
.lsc2{letter-spacing:0.453404px;}
.ls32{letter-spacing:0.453962px;}
.lsb4{letter-spacing:0.457853px;}
.lsbf{letter-spacing:0.480607px;}
.ls46{letter-spacing:0.498588px;}
.ls27{letter-spacing:0.504973px;}
.ls2f{letter-spacing:0.521297px;}
.lscb{letter-spacing:0.539448px;}
.ls36{letter-spacing:0.577437px;}
.ls9e{letter-spacing:0.577616px;}
.lsa1{letter-spacing:0.656382px;}
.ls58{letter-spacing:0.793055px;}
.lsa9{letter-spacing:0.827041px;}
.lsa2{letter-spacing:0.853297px;}
.lsb1{letter-spacing:1.057630px;}
.lsa5{letter-spacing:1.174744px;}
.ls43{letter-spacing:1.184436px;}
.lsac{letter-spacing:1.270542px;}
.ls40{letter-spacing:1.428511px;}
.ls4c{letter-spacing:1.510925px;}
.lsa0{letter-spacing:1.549062px;}
.lsb6{letter-spacing:1.636824px;}
.lsa4{letter-spacing:1.654083px;}
.ls25{letter-spacing:1.848971px;}
.lsa3{letter-spacing:1.942891px;}
.ls24{letter-spacing:1.957734px;}
.ls3f{letter-spacing:2.189412px;}
.ls29{letter-spacing:2.765693px;}
.ls26{letter-spacing:2.807126px;}
.ls4a{letter-spacing:2.829550px;}
.ls44{letter-spacing:2.953872px;}
.ls50{letter-spacing:3.186678px;}
.ls88{letter-spacing:30.112131px;}
.ls77{letter-spacing:37.006812px;}
.ls8e{letter-spacing:39.888000px;}
.lsdc{letter-spacing:53.150760px;}
.lsb9{letter-spacing:1969.102740px;}
.ls2b{letter-spacing:1971.549404px;}
.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;}
}
.wsc3{word-spacing:-191.880000px;}
.ws8e{word-spacing:-144.187200px;}
.ws8c{word-spacing:-144.000000px;}
.ws9d{word-spacing:-101.271000px;}
.wsc2{word-spacing:-53.457768px;}
.wsc4{word-spacing:-53.150760px;}
.ws91{word-spacing:-40.219200px;}
.ws6f{word-spacing:-40.204800px;}
.ws8f{word-spacing:-40.104000px;}
.ws8d{word-spacing:-40.089600px;}
.ws87{word-spacing:-40.060800px;}
.ws8a{word-spacing:-40.032000px;}
.ws88{word-spacing:-39.974400px;}
.ws86{word-spacing:-39.916800px;}
.ws8b{word-spacing:-39.902400px;}
.ws25{word-spacing:-35.553423px;}
.ws73{word-spacing:-33.602364px;}
.ws75{word-spacing:-33.446520px;}
.ws72{word-spacing:-33.398568px;}
.ws74{word-spacing:-33.338628px;}
.ws71{word-spacing:-33.326640px;}
.ws84{word-spacing:-30.015858px;}
.ws82{word-spacing:-30.014960px;}
.wsb8{word-spacing:-26.250372px;}
.ws36{word-spacing:-26.129376px;}
.ws35{word-spacing:-25.187211px;}
.wsa4{word-spacing:-22.644609px;}
.wsb0{word-spacing:-22.392269px;}
.ws2b{word-spacing:-22.295489px;}
.ws3c{word-spacing:-22.279273px;}
.ws2d{word-spacing:-20.994185px;}
.ws3b{word-spacing:-20.521106px;}
.ws37{word-spacing:-20.004740px;}
.ws38{word-spacing:-18.470410px;}
.ws39{word-spacing:-16.241874px;}
.ws3a{word-spacing:-15.879265px;}
.ws48{word-spacing:-14.508116px;}
.ws2c{word-spacing:-14.102917px;}
.ws49{word-spacing:-12.094341px;}
.ws4f{word-spacing:-12.093085px;}
.ws4d{word-spacing:-12.092159px;}
.ws4e{word-spacing:-11.353580px;}
.ws4b{word-spacing:-9.695206px;}
.ws4c{word-spacing:-9.502986px;}
.ws4a{word-spacing:-9.274716px;}
.ws3d{word-spacing:-6.245208px;}
.ws27{word-spacing:-3.779058px;}
.ws9b{word-spacing:-2.074167px;}
.ws9c{word-spacing:-1.785359px;}
.ws98{word-spacing:-1.680338px;}
.ws45{word-spacing:-1.401039px;}
.ws57{word-spacing:-1.066802px;}
.ws0{word-spacing:-1.040076px;}
.ws9a{word-spacing:-0.984573px;}
.ws3e{word-spacing:-0.974512px;}
.wsa0{word-spacing:-0.958318px;}
.ws99{word-spacing:-0.787658px;}
.ws5e{word-spacing:-0.668243px;}
.ws32{word-spacing:-0.641597px;}
.ws55{word-spacing:-0.611933px;}
.wsa9{word-spacing:-0.600759px;}
.wsbb{word-spacing:-0.518076px;}
.ws2f{word-spacing:-0.497238px;}
.ws94{word-spacing:-0.432000px;}
.ws5d{word-spacing:-0.395041px;}
.ws33{word-spacing:-0.392978px;}
.ws59{word-spacing:-0.369864px;}
.ws2e{word-spacing:-0.352878px;}
.wsbc{word-spacing:-0.345384px;}
.ws83{word-spacing:-0.334800px;}
.wsb9{word-spacing:-0.287820px;}
.ws7e{word-spacing:-0.251748px;}
.ws6{word-spacing:-0.234468px;}
.ws6d{word-spacing:-0.224604px;}
.wsa1{word-spacing:-0.218556px;}
.ws3{word-spacing:-0.216000px;}
.wsc1{word-spacing:-0.194400px;}
.ws7d{word-spacing:-0.167832px;}
.ws62{word-spacing:-0.155580px;}
.wsa2{word-spacing:-0.148802px;}
.ws5b{word-spacing:-0.146950px;}
.ws89{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.140400px;}
.wsc{word-spacing:-0.134316px;}
.ws2{word-spacing:-0.129600px;}
.wsb1{word-spacing:-0.118800px;}
.ws50{word-spacing:-0.117684px;}
.wsb4{word-spacing:-0.115128px;}
.ws80{word-spacing:-0.108000px;}
.ws81{word-spacing:-0.100872px;}
.ws95{word-spacing:-0.100800px;}
.ws5{word-spacing:-0.086400px;}
.ws40{word-spacing:-0.082414px;}
.ws90{word-spacing:-0.072000px;}
.ws93{word-spacing:-0.067248px;}
.ws96{word-spacing:-0.057600px;}
.wsb7{word-spacing:-0.057564px;}
.ws79{word-spacing:-0.052848px;}
.ws34{word-spacing:-0.043200px;}
.ws6c{word-spacing:-0.039636px;}
.wsac{word-spacing:-0.032040px;}
.ws70{word-spacing:-0.028800px;}
.ws53{word-spacing:-0.028592px;}
.ws76{word-spacing:-0.023976px;}
.ws5a{word-spacing:-0.018369px;}
.ws97{word-spacing:-0.014400px;}
.wsb5{word-spacing:-0.011988px;}
.ws4{word-spacing:0.000000px;}
.wsc0{word-spacing:0.014400px;}
.ws8{word-spacing:0.016812px;}
.wsa{word-spacing:0.019188px;}
.ws54{word-spacing:0.020512px;}
.wsae{word-spacing:0.024030px;}
.ws6e{word-spacing:0.026424px;}
.ws47{word-spacing:0.028800px;}
.ws23{word-spacing:0.028836px;}
.wsb{word-spacing:0.038376px;}
.wsbe{word-spacing:0.043200px;}
.ws78{word-spacing:0.052848px;}
.wsad{word-spacing:0.056071px;}
.ws46{word-spacing:0.057600px;}
.ws63{word-spacing:0.060905px;}
.ws58{word-spacing:0.066921px;}
.ws9{word-spacing:0.067248px;}
.ws85{word-spacing:0.072000px;}
.wse{word-spacing:0.076752px;}
.wsa6{word-spacing:0.080101px;}
.ws65{word-spacing:0.084861px;}
.wsbf{word-spacing:0.086400px;}
.ws66{word-spacing:0.088719px;}
.ws7f{word-spacing:0.095904px;}
.ws6a{word-spacing:0.100800px;}
.wsb6{word-spacing:0.100872px;}
.wsba{word-spacing:0.115128px;}
.ws29{word-spacing:0.119880px;}
.ws7{word-spacing:0.126252px;}
.ws1{word-spacing:0.129600px;}
.ws7b{word-spacing:0.131868px;}
.wsb3{word-spacing:0.134496px;}
.ws7c{word-spacing:0.179820px;}
.wsa3{word-spacing:0.184932px;}
.ws6b{word-spacing:0.184968px;}
.ws61{word-spacing:0.185014px;}
.wsbd{word-spacing:0.201744px;}
.wsb2{word-spacing:0.203796px;}
.ws92{word-spacing:0.216000px;}
.ws7a{word-spacing:0.239760px;}
.wsc5{word-spacing:0.287820px;}
.ws77{word-spacing:0.299700px;}
.ws5f{word-spacing:0.317689px;}
.wsaf{word-spacing:0.376476px;}
.wsd{word-spacing:0.402948px;}
.ws31{word-spacing:0.441098px;}
.ws68{word-spacing:0.622451px;}
.wsa8{word-spacing:0.624789px;}
.ws52{word-spacing:0.626530px;}
.ws5c{word-spacing:0.646008px;}
.wsaa{word-spacing:0.648820px;}
.ws67{word-spacing:0.669348px;}
.ws64{word-spacing:0.790755px;}
.wsa5{word-spacing:0.825042px;}
.ws51{word-spacing:0.939794px;}
.wsab{word-spacing:0.961214px;}
.ws69{word-spacing:1.071898px;}
.wsa7{word-spacing:1.089376px;}
.ws30{word-spacing:1.114774px;}
.ws56{word-spacing:1.145533px;}
.ws60{word-spacing:1.177361px;}
.ws2a{word-spacing:2.704410px;}
.ws3f{word-spacing:2.808947px;}
.ws41{word-spacing:3.014982px;}
.ws44{word-spacing:4.230589px;}
.ws42{word-spacing:5.439329px;}
.ws43{word-spacing:9.560033px;}
.ws16{word-spacing:75.420720px;}
.ws15{word-spacing:75.452472px;}
.ws18{word-spacing:104.790024px;}
.ws10{word-spacing:105.206688px;}
.ws28{word-spacing:115.219985px;}
.ws13{word-spacing:135.480600px;}
.ws12{word-spacing:136.260540px;}
.ws11{word-spacing:137.488788px;}
.ws26{word-spacing:154.600591px;}
.ws14{word-spacing:204.323472px;}
.ws1d{word-spacing:269.972244px;}
.ws1a{word-spacing:270.021960px;}
.ws22{word-spacing:290.901960px;}
.ws1e{word-spacing:290.930112px;}
.ws19{word-spacing:312.287256px;}
.ws1b{word-spacing:323.087760px;}
.ws20{word-spacing:323.232336px;}
.ws1f{word-spacing:323.291664px;}
.ws1c{word-spacing:419.554188px;}
.ws9e{word-spacing:696.312395px;}
.ws9f{word-spacing:696.980027px;}
.wsf{word-spacing:1639.944000px;}
.ws17{word-spacing:1731.783780px;}
.ws21{word-spacing:2269.990044px;}
._18{margin-left:-10.649317px;}
._25{margin-left:-9.489298px;}
._23{margin-left:-7.696577px;}
._13{margin-left:-6.183113px;}
._16{margin-left:-4.443762px;}
._14{margin-left:-2.536086px;}
._1{margin-left:-1.244484px;}
._0{width:1.058112px;}
._24{width:2.077469px;}
._15{width:3.108389px;}
._17{width:5.027286px;}
._26{width:6.088725px;}
._1a{width:7.154193px;}
._21{width:8.421938px;}
._22{width:9.529735px;}
._19{width:10.782089px;}
._27{width:12.003106px;}
._1b{width:15.761899px;}
._c{width:106.530480px;}
._9{width:114.510600px;}
._a{width:122.430600px;}
._6{width:123.450480px;}
._2{width:128.195028px;}
._1e{width:140.653674px;}
._3{width:144.359496px;}
._1d{width:147.867157px;}
._4{width:152.283564px;}
._7{width:166.381452px;}
._5{width:173.850480px;}
._2a{width:204.746400px;}
._8{width:264.657672px;}
._b{width:270.425304px;}
._12{width:296.213004px;}
._2b{width:311.875200px;}
._e{width:317.516904px;}
._d{width:349.168752px;}
._f{width:350.466264px;}
._11{width:419.304276px;}
._1c{width:460.084500px;}
._10{width:461.734632px;}
._20{width:803.100399px;}
._1f{width:919.030759px;}
._28{width:997.622697px;}
._29{width:1020.459576px;}
.fc3{color:rgb(37,34,30);}
.fc2{color:transparent;}
.fc4{color:rgb(31,26,23);}
.fc1{color:rgb(51,51,154);}
.fc5{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs26{font-size:33.496800px;}
.fs1c{font-size:34.183404px;}
.fs1a{font-size:34.186200px;}
.fs21{font-size:36.516000px;}
.fs24{font-size:38.573400px;}
.fs1b{font-size:39.365400px;}
.fs22{font-size:42.048600px;}
.fs25{font-size:42.633600px;}
.fs1d{font-size:43.496974px;}
.fs1e{font-size:43.500306px;}
.fs19{font-size:43.504822px;}
.fs16{font-size:43.509000px;}
.fs20{font-size:46.475400px;}
.fs18{font-size:51.796200px;}
.fsf{font-size:52.544400px;}
.fs10{font-size:58.075200px;}
.fs2{font-size:60.120000px;}
.fs15{font-size:68.678400px;}
.fs2f{font-size:69.052800px;}
.fsc{font-size:69.138600px;}
.fs14{font-size:75.543600px;}
.fs13{font-size:75.546600px;}
.fs2c{font-size:78.765600px;}
.fs31{font-size:80.101200px;}
.fse{font-size:80.199600px;}
.fs32{font-size:87.007800px;}
.fs11{font-size:87.112800px;}
.fs33{font-size:87.744000px;}
.fs12{font-size:89.730000px;}
.fs1f{font-size:91.843800px;}
.fs30{font-size:92.531400px;}
.fsd{font-size:92.645400px;}
.fsa{font-size:94.951200px;}
.fs17{font-size:95.307000px;}
.fs7{font-size:96.120000px;}
.fs2e{font-size:96.148200px;}
.fs2b{font-size:101.271000px;}
.fs23{font-size:101.508600px;}
.fsb{font-size:103.584000px;}
.fs28{font-size:107.967483px;}
.fs29{font-size:107.970712px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:112.216200px;}
.fs2d{font-size:114.463200px;}
.fs5{font-size:119.880000px;}
.fs9{font-size:120.847800px;}
.fs2a{font-size:131.276400px;}
.fs27{font-size:132.120000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:168.120000px;}
.fs4{font-size:191.880000px;}
.fs0{font-size:216.000000px;}
.fs34{font-size:528.120000px;}
.y0{bottom:0.000000px;}
.y17{bottom:52.890000px;}
.y9{bottom:67.020294px;}
.y85{bottom:70.259826px;}
.y7b{bottom:73.047596px;}
.yaf{bottom:76.739250px;}
.y84{bottom:80.160150px;}
.y12d{bottom:81.060000px;}
.y8{bottom:85.020222px;}
.y136{bottom:85.921827px;}
.y9e{bottom:86.370000px;}
.y93{bottom:88.079848px;}
.y12c{bottom:91.320000px;}
.ye1{bottom:96.085572px;}
.y92{bottom:98.610150px;}
.y23{bottom:100.770150px;}
.y14c{bottom:101.310000px;}
.ydf{bottom:102.927609px;}
.y7{bottom:103.020150px;}
.yd1{bottom:112.380000px;}
.yae{bottom:125.520150px;}
.yd7{bottom:130.376660px;}
.ye0{bottom:132.716657px;}
.y11{bottom:135.961017px;}
.y135{bottom:136.320000px;}
.yde{bottom:139.558695px;}
.y22{bottom:140.550099px;}
.y14b{bottom:144.420000px;}
.y129{bottom:145.230000px;}
.y14{bottom:150.810000px;}
.y88{bottom:152.160150px;}
.y54{bottom:160.798816px;}
.ye3{bottom:161.335319px;}
.y109{bottom:161.518769px;}
.y9b{bottom:163.230000px;}
.y7f{bottom:163.770000px;}
.y5b{bottom:163.859835px;}
.y112{bottom:164.670355px;}
.yc9{bottom:166.380000px;}
.yd6{bottom:167.007746px;}
.y96{bottom:167.190000px;}
.y30{bottom:172.770000px;}
.y77{bottom:173.937882px;}
.y9c{bottom:174.660000px;}
.y150{bottom:176.280000px;}
.y73{bottom:178.798596px;}
.y21{bottom:180.150000px;}
.y10{bottom:182.132142px;}
.yd0{bottom:185.820000px;}
.y53{bottom:187.080000px;}
.y108{bottom:187.800000px;}
.y90{bottom:187.980000px;}
.y5a{bottom:188.430000px;}
.y111{bottom:189.150000px;}
.ybd{bottom:191.490000px;}
.y76{bottom:192.838178px;}
.y83{bottom:193.020000px;}
.yb4{bottom:193.650000px;}
.ydb{bottom:196.350280px;}
.y72{bottom:197.698892px;}
.y80{bottom:197.700000px;}
.ye2{bottom:197.966404px;}
.y9d{bottom:200.310000px;}
.y120{bottom:201.660000px;}
.yb2{bottom:208.770000px;}
.y14a{bottom:209.130000px;}
.yc6{bottom:213.990000px;}
.yac{bottom:214.530288px;}
.ya5{bottom:219.209874px;}
.y20{bottom:219.749010px;}
.y114{bottom:221.280000px;}
.y91{bottom:224.160000px;}
.y2f{bottom:227.309933px;}
.yda{bottom:227.310000px;}
.yca{bottom:233.879653px;}
.y6{bottom:234.240000px;}
.ybc{bottom:234.600000px;}
.y66{bottom:246.300461px;}
.y121{bottom:249.899458px;}
.yab{bottom:250.530252px;}
.y6a{bottom:250.979817px;}
.y149{bottom:252.240000px;}
.yc5{bottom:257.100000px;}
.ya4{bottom:258.720360px;}
.y1f{bottom:259.260000px;}
.y115{bottom:259.349779px;}
.y8d{bottom:262.410000px;}
.y65{bottom:268.619817px;}
.y27{bottom:270.510000px;}
.y69{bottom:271.590000px;}
.y71{bottom:272.489669px;}
.yf{bottom:275.640063px;}
.ybb{bottom:277.710000px;}
.y48{bottom:279.067613px;}
.yfd{bottom:279.602585px;}
.y64{bottom:289.230000px;}
.y8a{bottom:289.950000px;}
.y70{bottom:291.298966px;}
.y148{bottom:295.350000px;}
.y122{bottom:296.699914px;}
.y1e{bottom:298.590000px;}
.y47{bottom:298.687419px;}
.y116{bottom:298.770732px;}
.yfc{bottom:299.311981px;}
.yc4{bottom:300.210000px;}
.ydd{bottom:300.928914px;}
.ycb{bottom:301.379307px;}
.y28{bottom:315.870222px;}
.y137{bottom:317.670000px;}
.yd9{bottom:318.116339px;}
.y46{bottom:318.756627px;}
.yfb{bottom:319.292408px;}
.yba{bottom:320.910000px;}
.ye{bottom:321.811188px;}
.yaa{bottom:322.530180px;}
.y13f{bottom:323.251323px;}
.y8c{bottom:334.950000px;}
.ydc{bottom:337.560000px;}
.ya3{bottom:337.830513px;}
.y45{bottom:338.466313px;}
.yfa{bottom:339.001804px;}
.y61{bottom:341.428798px;}
.y107{bottom:343.143114px;}
.yc3{bottom:343.410000px;}
.y123{bottom:344.939371px;}
.y133{bottom:352.228200px;}
.y52{bottom:354.029724px;}
.yd8{bottom:354.747425px;}
.yb3{bottom:355.020000px;}
.y117{bottom:357.270443px;}
.y4d{bottom:357.809815px;}
.ya9{bottom:358.530144px;}
.y44{bottom:358.537249px;}
.y29{bottom:358.979653px;}
.yf9{bottom:359.072000px;}
.y89{bottom:361.140000px;}
.y102{bottom:361.772336px;}
.y24{bottom:363.030000px;}
.yb9{bottom:364.020000px;}
.y110{bottom:364.561425px;}
.y106{bottom:366.272336px;}
.y60{bottom:367.259822px;}
.ycc{bottom:367.980180px;}
.y51{bottom:371.310000px;}
.y5{bottom:374.550000px;}
.ya2{bottom:377.430180px;}
.y43{bottom:378.246935px;}
.yf8{bottom:378.691627px;}
.y147{bottom:379.950000px;}
.y4c{bottom:384.450646px;}
.y101{bottom:384.901557px;}
.yc2{bottom:386.520000px;}
.y59{bottom:387.239074px;}
.y10f{bottom:388.051102px;}
.y50{bottom:388.950646px;}
.y105{bottom:389.401557px;}
.y5f{bottom:391.468976px;}
.y124{bottom:391.739827px;}
.ya8{bottom:394.530108px;}
.y42{bottom:398.316142px;}
.yf7{bottom:398.761823px;}
.ye6{bottom:401.103654px;}
.y118{bottom:404.070212px;}
.y2a{bottom:404.339875px;}
.yb8{bottom:407.130000px;}
.y4b{bottom:407.580211px;}
.y100{bottom:408.030778px;}
.y87{bottom:408.480000px;}
.y119{bottom:408.481270px;}
.y13e{bottom:409.741233px;}
.y58{bottom:410.729537px;}
.y10e{bottom:411.180323px;}
.y4f{bottom:412.080211px;}
.y104{bottom:412.530778px;}
.y132{bottom:417.028200px;}
.y5e{bottom:417.300000px;}
.y8b{bottom:417.570000px;}
.y41{bottom:418.025828px;}
.yf6{bottom:418.381450px;}
.y9a{bottom:422.070000px;}
.y146{bottom:423.060000px;}
.y6f{bottom:424.318725px;}
.y1d{bottom:424.410000px;}
.yc1{bottom:429.630000px;}
.y4a{bottom:430.800000px;}
.yff{bottom:431.160000px;}
.y57{bottom:434.220000px;}
.y10d{bottom:434.670000px;}
.y11a{bottom:434.761175px;}
.y4e{bottom:435.300000px;}
.ycd{bottom:435.479833px;}
.y103{bottom:435.660000px;}
.yd{bottom:436.920000px;}
.y40{bottom:438.005155px;}
.yf5{bottom:438.451646px;}
.y4{bottom:439.350000px;}
.y125{bottom:440.069222px;}
.y6e{bottom:443.219021px;}
.y11b{bottom:446.461117px;}
.y2b{bottom:447.449306px;}
.y95{bottom:449.430000px;}
.yb7{bottom:450.240000px;}
.ye5{bottom:451.501827px;}
.y49{bottom:455.010000px;}
.yfe{bottom:455.370000px;}
.ya1{bottom:456.540333px;}
.y3f{bottom:457.714842px;}
.yf4{bottom:458.161042px;}
.y6d{bottom:463.829409px;}
.y68{bottom:465.809817px;}
.ya7{bottom:466.530036px;}
.y134{bottom:470.670000px;}
.y1c{bottom:471.658578px;}
.yc0{bottom:472.740000px;}
.y63{bottom:474.630888px;}
.y11c{bottom:475.710973px;}
.y3e{bottom:477.785777px;}
.yf3{bottom:478.141470px;}
.y131{bottom:481.920000px;}
.y6c{bottom:482.729704px;}
.y67{bottom:486.420000px;}
.y126{bottom:488.308680px;}
.y2c{bottom:492.809528px;}
.yb6{bottom:493.350000px;}
.y62{bottom:495.240000px;}
.ya0{bottom:496.140000px;}
.y3d{bottom:497.495464px;}
.yf2{bottom:497.850865px;}
.y6b{bottom:501.630000px;}
.ye4{bottom:501.900000px;}
.ya6{bottom:502.530000px;}
.yce{bottom:502.979486px;}
.y82{bottom:513.150000px;}
.y14f{bottom:513.240000px;}
.ybf{bottom:515.850000px;}
.y3c{bottom:517.564671px;}
.yf1{bottom:517.831293px;}
.y1b{bottom:518.370000px;}
.y7a{bottom:534.928722px;}
.y127{bottom:535.109136px;}
.y2d{bottom:535.918960px;}
.yb5{bottom:536.460000px;}
.y3b{bottom:537.274357px;}
.yf0{bottom:537.540688px;}
.y75{bottom:542.579496px;}
.y11d{bottom:544.471713px;}
.y86{bottom:548.340000px;}
.y79{bottom:553.738019px;}
.y3a{bottom:557.343564px;}
.yef{bottom:557.521116px;}
.y11e{bottom:557.612762px;}
.ybe{bottom:558.960000px;}
.y99{bottom:559.320000px;}
.yc{bottom:560.400000px;}
.y11f{bottom:560.582714px;}
.y74{bottom:561.479792px;}
.y1a{bottom:565.258488px;}
.ycf{bottom:570.479140px;}
.y78{bottom:572.638315px;}
.y9f{bottom:576.060000px;}
.y39{bottom:576.963371px;}
.yee{bottom:577.230511px;}
.y130{bottom:579.211827px;}
.y2e{bottom:581.279181px;}
.y128{bottom:583.348594px;}
.y38{bottom:597.034306px;}
.yed{bottom:597.300708px;}
.y94{bottom:598.740000px;}
.y56{bottom:606.749537px;}
.y10b{bottom:606.930323px;}
.y5c{bottom:607.110435px;}
.y10c{bottom:607.290778px;}
.yd5{bottom:609.988914px;}
.y19{bottom:611.880000px;}
.y98{bottom:615.930000px;}
.y37{bottom:616.743993px;}
.yec{bottom:616.920334px;}
.y3{bottom:620.696400px;}
.y81{bottom:629.430000px;}
.y12f{bottom:629.610000px;}
.y55{bottom:630.240000px;}
.y10a{bottom:630.420000px;}
.y13a{bottom:632.310000px;}
.y12{bottom:632.670000px;}
.y36{bottom:636.813200px;}
.yeb{bottom:636.990531px;}
.y26{bottom:639.330000px;}
.y8f{bottom:639.420000px;}
.y140{bottom:640.770000px;}
.yc8{bottom:643.110000px;}
.y145{bottom:643.560000px;}
.y13c{bottom:643.651134px;}
.yd4{bottom:646.620000px;}
.y14e{bottom:646.800000px;}
.y35{bottom:656.522886px;}
.yea{bottom:656.610157px;}
.y18{bottom:658.410000px;}
.y13b{bottom:672.540000px;}
.y34{bottom:676.592093px;}
.ye9{bottom:676.680354px;}
.y2{bottom:685.588200px;}
.y144{bottom:686.670000px;}
.yb{bottom:690.359361px;}
.y33{bottom:696.301780px;}
.ye8{bottom:696.389749px;}
.yb1{bottom:706.649361px;}
.y14d{bottom:711.600000px;}
.y7d{bottom:717.630000px;}
.y97{bottom:719.790000px;}
.y16{bottom:720.240000px;}
.y139{bottom:723.210036px;}
.yd3{bottom:728.609361px;}
.yad{bottom:729.240000px;}
.y32{bottom:735.990793px;}
.ye7{bottom:736.079572px;}
.y7e{bottom:736.890000px;}
.ya{bottom:740.850000px;}
.y141{bottom:742.920000px;}
.y8e{bottom:745.350000px;}
.yc7{bottom:746.070000px;}
.y113{bottom:747.600000px;}
.y142{bottom:748.680000px;}
.y1{bottom:750.480000px;}
.y13{bottom:751.380000px;}
.y12b{bottom:755.250036px;}
.y31{bottom:756.060000px;}
.yb0{bottom:757.140000px;}
.y138{bottom:759.210000px;}
.y7c{bottom:760.740000px;}
.y12e{bottom:762.360000px;}
.y25{bottom:771.000000px;}
.y143{bottom:774.150000px;}
.y5d{bottom:777.660000px;}
.yd2{bottom:779.100000px;}
.y13d{bottom:780.270000px;}
.y15{bottom:786.030000px;}
.y12a{bottom:791.250000px;}
.h31{height:24.402942px;}
.h25{height:24.905181px;}
.h27{height:25.504772px;}
.h2c{height:26.602477px;}
.h2f{height:28.101325px;}
.h26{height:28.678309px;}
.h2d{height:30.633062px;}
.h30{height:31.038427px;}
.h21{height:31.675742px;}
.h24{height:32.072435px;}
.h28{height:32.827846px;}
.h29{height:32.886911px;}
.h2b{height:33.835362px;}
.h23{height:37.734341px;}
.h14{height:42.280334px;}
.h4{height:43.798359px;}
.h1f{height:50.033288px;}
.h3b{height:53.574454px;}
.h1e{height:55.034693px;}
.h1d{height:55.036879px;}
.h41{height:58.315864px;}
.h12{height:58.387502px;}
.h48{height:63.922875px;}
.h1c{height:65.369707px;}
.h2a{height:66.909643px;}
.h40{height:67.365389px;}
.h11{height:67.448384px;}
.h3f{height:67.771547px;}
.h10{height:67.855755px;}
.h3a{height:68.882082px;}
.hf{height:69.127070px;}
.h22{height:69.432639px;}
.h3e{height:69.998519px;}
.ha{height:70.024922px;}
.h2e{height:73.950601px;}
.h13{height:75.691175px;}
.h45{height:78.614947px;}
.h36{height:78.626953px;}
.h9{height:78.679688px;}
.h18{height:78.711521px;}
.h37{height:78.753169px;}
.h38{height:78.809509px;}
.h43{height:80.726991px;}
.h16{height:80.826159px;}
.hd{height:81.696462px;}
.h3d{height:83.332339px;}
.h7{height:87.275918px;}
.h34{height:87.334453px;}
.h46{height:87.687548px;}
.h19{height:87.793369px;}
.he{height:88.039511px;}
.h3c{height:89.291028px;}
.h39{height:89.739727px;}
.h42{height:93.254302px;}
.h15{height:93.369192px;}
.hc{height:94.336523px;}
.h32{height:96.251484px;}
.h1b{height:104.835938px;}
.h3{height:104.906250px;}
.h35{height:108.231504px;}
.hb{height:117.655664px;}
.h5{height:122.395957px;}
.h20{height:122.478047px;}
.h33{height:130.007812px;}
.h8{height:139.693887px;}
.h6{height:139.787578px;}
.h1{height:157.253906px;}
.h2{height:157.359375px;}
.h49{height:169.760288px;}
.h4a{height:173.235410px;}
.h17{height:173.348011px;}
.h44{height:174.685698px;}
.h47{height:185.606127px;}
.h1a{height:186.074030px;}
.h4b{height:384.485801px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xae{left:131.924388px;}
.xab{left:136.875750px;}
.xad{left:146.775900px;}
.xac{left:149.115900px;}
.xa5{left:151.727550px;}
.xa4{left:153.255750px;}
.x15{left:157.665750px;}
.x63{left:163.425750px;}
.x11{left:165.135750px;}
.x1e{left:168.015900px;}
.x64{left:171.794535px;}
.x83{left:178.365900px;}
.x7{left:183.225750px;}
.x13{left:191.685750px;}
.x8{left:196.905750px;}
.x1c{left:199.695750px;}
.x21{left:201.495316px;}
.x1a{left:203.565640px;}
.x1{left:206.715750px;}
.x26{left:212.925750px;}
.x88{left:214.275322px;}
.x97{left:217.966010px;}
.x19{left:219.135750px;}
.x20{left:220.845815px;}
.x27{left:222.555971px;}
.x87{left:224.986611px;}
.x28{left:231.196284px;}
.x47{left:232.905750px;}
.x53{left:234.255750px;}
.x8e{left:236.955750px;}
.x85{left:238.847948px;}
.x86{left:245.055750px;}
.xb3{left:247.935750px;}
.x84{left:249.916531px;}
.xe{left:251.085750px;}
.xb{left:255.223923px;}
.xb5{left:257.025750px;}
.x49{left:258.285750px;}
.x9{left:262.157325px;}
.x54{left:268.725750px;}
.x2{left:269.803950px;}
.x9f{left:280.515363px;}
.x14{left:282.045750px;}
.x1f{left:284.116070px;}
.x55{left:285.285750px;}
.x65{left:288.435750px;}
.x45{left:292.035750px;}
.xa1{left:293.475750px;}
.x1b{left:298.787036px;}
.xb0{left:302.205750px;}
.x4f{left:309.135750px;}
.x5a{left:318.045750px;}
.xc{left:322.005750px;}
.x12{left:327.675750px;}
.x35{left:330.015750px;}
.x30{left:331.095750px;}
.xa9{left:332.625363px;}
.xa8{left:335.235750px;}
.x8f{left:337.665750px;}
.x80{left:344.146108px;}
.x37{left:346.575750px;}
.x61{left:348.285750px;}
.x43{left:349.726151px;}
.xb1{left:352.515750px;}
.x36{left:357.466479px;}
.xb4{left:359.175750px;}
.xf{left:367.455750px;}
.x38{left:377.535458px;}
.x66{left:379.784155px;}
.x17{left:381.405750px;}
.xb8{left:382.935750px;}
.x4c{left:390.765750px;}
.x3{left:392.832150px;}
.xb2{left:394.635750px;}
.xb6{left:397.605750px;}
.x90{left:399.044872px;}
.x98{left:400.576004px;}
.x44{left:408.405750px;}
.x62{left:411.015750px;}
.x7f{left:414.076632px;}
.x7e{left:415.246250px;}
.x18{left:432.885750px;}
.x67{left:440.622704px;}
.x5e{left:447.015750px;}
.xaf{left:452.415750px;}
.x91{left:461.955126px;}
.x99{left:463.396321px;}
.x68{left:471.041979px;}
.x60{left:477.525750px;}
.xb7{left:479.327550px;}
.x41{left:481.215703px;}
.xaa{left:484.725750px;}
.xa{left:489.045750px;}
.x42{left:494.086392px;}
.x29{left:499.665750px;}
.xd{left:501.555750px;}
.x2b{left:503.444875px;}
.x8a{left:516.946129px;}
.x7d{left:523.066080px;}
.x7c{left:525.316447px;}
.x33{left:529.725525px;}
.x69{left:531.880528px;}
.x32{left:533.145678px;}
.x2c{left:538.635750px;}
.x31{left:545.295750px;}
.x34{left:555.645977px;}
.x2a{left:561.854823px;}
.x89{left:563.925588px;}
.x2d{left:569.416223px;}
.x8b{left:572.836660px;}
.x16{left:575.985750px;}
.x10{left:581.655750px;}
.x92{left:586.244502px;}
.x9a{left:587.685697px;}
.x6a{left:592.719078px;}
.x75{left:598.755750px;}
.x40{left:605.776074px;}
.x76{left:615.944543px;}
.x3f{left:617.655653px;}
.x6b{left:623.138352px;}
.x4b{left:634.755750px;}
.x5d{left:640.335750px;}
.x77{left:643.485026px;}
.x5b{left:645.105750px;}
.x93{left:649.154756px;}
.x9b{left:650.595952px;}
.x1d{left:654.374473px;}
.xa7{left:656.715750px;}
.xa0{left:659.685750px;}
.x78{left:670.933774px;}
.x6{left:684.435750px;}
.xa2{left:689.205750px;}
.xa3{left:700.814436px;}
.x3b{left:711.885750px;}
.x5c{left:714.044850px;}
.x3c{left:715.305564px;}
.x39{left:716.655750px;}
.xa6{left:719.805750px;}
.x79{left:727.185750px;}
.x3a{left:730.335006px;}
.x59{left:744.375750px;}
.x7a{left:762.735423px;}
.x94{left:773.444132px;}
.x6c{left:775.325306px;}
.x5f{left:777.585750px;}
.x7b{left:782.176530px;}
.x48{left:786.495750px;}
.x4{left:788.115750px;}
.x5{left:806.113950px;}
.x58{left:819.615750px;}
.x4a{left:828.795750px;}
.x6d{left:836.163856px;}
.x9c{left:837.795582px;}
.x23{left:843.376321px;}
.x4d{left:846.165750px;}
.x56{left:847.245750px;}
.x52{left:851.205750px;}
.x3e{left:859.575816px;}
.x3d{left:867.315750px;}
.x22{left:873.075750px;}
.x2f{left:876.855750px;}
.x46{left:878.295750px;}
.x57{left:891.975750px;}
.x2e{left:893.056223px;}
.x6e{left:897.002405px;}
.x95{left:899.174704px;}
.x8d{left:900.705588px;}
.x50{left:904.125750px;}
.x8c{left:906.195750px;}
.x4e{left:914.835750px;}
.x24{left:918.347020px;}
.x51{left:919.605750px;}
.x6f{left:927.421680px;}
.x81{left:937.155354px;}
.x82{left:953.353716px;}
.x70{left:957.931535px;}
.x25{left:960.105750px;}
.x9d{left:962.084958px;}
.x71{left:988.350810px;}
.x72{left:1018.770085px;}
.x96{left:1023.464080px;}
.x9e{left:1024.995212px;}
.x73{left:1049.189359px;}
.x74{left:1079.608634px;}
@media print{
.v3{vertical-align:-70.078885pt;}
.v2{vertical-align:-29.760000pt;}
.v1{vertical-align:-1.278720pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.899403pt;}
.v4{vertical-align:33.277703pt;}
.va{vertical-align:78.720000pt;}
.v9{vertical-align:80.960533pt;}
.v5{vertical-align:82.241646pt;}
.v8{vertical-align:83.518851pt;}
.v6{vertical-align:87.360588pt;}
.ls28{letter-spacing:-7.283812pt;}
.ls51{letter-spacing:-6.904468pt;}
.ls49{letter-spacing:-4.552761pt;}
.ls48{letter-spacing:-4.230442pt;}
.ls42{letter-spacing:-3.940144pt;}
.ls4f{letter-spacing:-3.565172pt;}
.ls4d{letter-spacing:-3.247725pt;}
.lsa6{letter-spacing:-2.814557pt;}
.ls2a{letter-spacing:-2.660958pt;}
.ls47{letter-spacing:-2.249521pt;}
.ls52{letter-spacing:-2.167185pt;}
.lsce{letter-spacing:-1.778278pt;}
.lsb0{letter-spacing:-1.632383pt;}
.ls4e{letter-spacing:-1.410196pt;}
.lsbe{letter-spacing:-1.267379pt;}
.ls4b{letter-spacing:-1.227054pt;}
.ls45{letter-spacing:-0.886413pt;}
.ls70{letter-spacing:-0.784907pt;}
.ls73{letter-spacing:-0.774897pt;}
.ls6f{letter-spacing:-0.769957pt;}
.ls60{letter-spacing:-0.759693pt;}
.ls5e{letter-spacing:-0.720097pt;}
.ls35{letter-spacing:-0.716458pt;}
.ls6e{letter-spacing:-0.706416pt;}
.ls3c{letter-spacing:-0.696902pt;}
.ls3b{letter-spacing:-0.658186pt;}
.ls66{letter-spacing:-0.657338pt;}
.ls61{letter-spacing:-0.647342pt;}
.ls63{letter-spacing:-0.636845pt;}
.ls6d{letter-spacing:-0.606977pt;}
.lsca{letter-spacing:-0.587786pt;}
.ls76{letter-spacing:-0.538926pt;}
.ls72{letter-spacing:-0.456023pt;}
.ls31{letter-spacing:-0.448379pt;}
.lsd9{letter-spacing:-0.418656pt;}
.lsa8{letter-spacing:-0.396746pt;}
.ls5f{letter-spacing:-0.392002pt;}
.ls5d{letter-spacing:-0.382879pt;}
.lsbd{letter-spacing:-0.363125pt;}
.ls5c{letter-spacing:-0.340337pt;}
.lsb5{letter-spacing:-0.325584pt;}
.ls68{letter-spacing:-0.261245pt;}
.ls3d{letter-spacing:-0.256639pt;}
.ls5{letter-spacing:-0.240480pt;}
.lscc{letter-spacing:-0.224287pt;}
.lsde{letter-spacing:-0.221728pt;}
.ls74{letter-spacing:-0.208431pt;}
.ls64{letter-spacing:-0.203598pt;}
.ls6b{letter-spacing:-0.202426pt;}
.ls21{letter-spacing:-0.179424pt;}
.lsc6{letter-spacing:-0.178003pt;}
.lsc3{letter-spacing:-0.170883pt;}
.lsdd{letter-spacing:-0.170560pt;}
.ls75{letter-spacing:-0.166745pt;}
.ls6a{letter-spacing:-0.165246pt;}
.ls3a{letter-spacing:-0.154867pt;}
.ls96{letter-spacing:-0.153600pt;}
.lsc4{letter-spacing:-0.149522pt;}
.ls9{letter-spacing:-0.136448pt;}
.lscd{letter-spacing:-0.131478pt;}
.lsc5{letter-spacing:-0.128162pt;}
.ls1c{letter-spacing:-0.128160pt;}
.ls1d{letter-spacing:-0.119616pt;}
.lse{letter-spacing:-0.119392pt;}
.ls9c{letter-spacing:-0.115200pt;}
.ls1e{letter-spacing:-0.111072pt;}
.ls1f{letter-spacing:-0.102528pt;}
.ls95{letter-spacing:-0.102400pt;}
.lsb{letter-spacing:-0.102336pt;}
.ls20{letter-spacing:-0.093984pt;}
.lsa7{letter-spacing:-0.093352pt;}
.lsb7{letter-spacing:-0.089664pt;}
.ls9b{letter-spacing:-0.089600pt;}
.ls38{letter-spacing:-0.085546pt;}
.ls1a{letter-spacing:-0.085440pt;}
.lsd6{letter-spacing:-0.085280pt;}
.lsd8{letter-spacing:-0.076896pt;}
.ls4{letter-spacing:-0.076800pt;}
.ls69{letter-spacing:-0.073475pt;}
.ls8{letter-spacing:-0.068224pt;}
.ls3e{letter-spacing:-0.064000pt;}
.ls83{letter-spacing:-0.063936pt;}
.ls86{letter-spacing:-0.053280pt;}
.ls98{letter-spacing:-0.051200pt;}
.lsda{letter-spacing:-0.051168pt;}
.lsb2{letter-spacing:-0.050873pt;}
.ls34{letter-spacing:-0.049411pt;}
.ls1b{letter-spacing:-0.042624pt;}
.ls3{letter-spacing:-0.038400pt;}
.ls7f{letter-spacing:-0.035232pt;}
.lsa{letter-spacing:-0.034112pt;}
.lsd7{letter-spacing:-0.029888pt;}
.lsc8{letter-spacing:-0.028480pt;}
.ls7e{letter-spacing:-0.025600pt;}
.ls85{letter-spacing:-0.021312pt;}
.ls1{letter-spacing:-0.019200pt;}
.lsd5{letter-spacing:-0.014944pt;}
.ls94{letter-spacing:-0.012800pt;}
.ls80{letter-spacing:-0.011744pt;}
.ls84{letter-spacing:-0.010656pt;}
.lsd2{letter-spacing:-0.009600pt;}
.ls33{letter-spacing:-0.007129pt;}
.ls2{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.009600pt;}
.ls11{letter-spacing:0.010656pt;}
.ls6{letter-spacing:0.010688pt;}
.ls55{letter-spacing:0.011601pt;}
.ls78{letter-spacing:0.011744pt;}
.ls9d{letter-spacing:0.012800pt;}
.lsbb{letter-spacing:0.014240pt;}
.ls37{letter-spacing:0.014258pt;}
.ls7{letter-spacing:0.014944pt;}
.ls57{letter-spacing:0.015193pt;}
.ls17{letter-spacing:0.017088pt;}
.lsd0{letter-spacing:0.019200pt;}
.ls14{letter-spacing:0.021312pt;}
.ls2c{letter-spacing:0.021387pt;}
.ls8f{letter-spacing:0.025600pt;}
.ls8a{letter-spacing:0.028800pt;}
.ls93{letter-spacing:0.029888pt;}
.ls7b{letter-spacing:0.031968pt;}
.ls0{letter-spacing:0.038400pt;}
.ls23{letter-spacing:0.042624pt;}
.ls18{letter-spacing:0.042720pt;}
.lsd4{letter-spacing:0.044832pt;}
.ls79{letter-spacing:0.046976pt;}
.lsc7{letter-spacing:0.049841pt;}
.ls90{letter-spacing:0.051200pt;}
.ls15{letter-spacing:0.053280pt;}
.ls2d{letter-spacing:0.057031pt;}
.ls5a{letter-spacing:0.057996pt;}
.ls81{letter-spacing:0.058720pt;}
.ls5b{letter-spacing:0.059776pt;}
.ls7a{letter-spacing:0.063936pt;}
.ls53{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.068352pt;}
.lsbc{letter-spacing:0.071201pt;}
.ls7d{letter-spacing:0.074592pt;}
.ls8d{letter-spacing:0.074720pt;}
.ls9a{letter-spacing:0.076800pt;}
.ls87{letter-spacing:0.086374pt;}
.ls97{letter-spacing:0.089600pt;}
.ls67{letter-spacing:0.089664pt;}
.ls12{letter-spacing:0.095904pt;}
.ls54{letter-spacing:0.096686pt;}
.lsdb{letter-spacing:0.102336pt;}
.ls99{letter-spacing:0.102400pt;}
.ls13{letter-spacing:0.106560pt;}
.lsf{letter-spacing:0.115200pt;}
.ls19{letter-spacing:0.119616pt;}
.lscf{letter-spacing:0.127872pt;}
.lsc{letter-spacing:0.140800pt;}
.ls2e{letter-spacing:0.142577pt;}
.lsd1{letter-spacing:0.149184pt;}
.ls82{letter-spacing:0.153600pt;}
.ls10{letter-spacing:0.159840pt;}
.ls92{letter-spacing:0.166400pt;}
.ls65{letter-spacing:0.170171pt;}
.ls56{letter-spacing:0.176234pt;}
.ls59{letter-spacing:0.179273pt;}
.ls91{letter-spacing:0.192000pt;}
.lsab{letter-spacing:0.203490pt;}
.ls89{letter-spacing:0.211136pt;}
.ls41{letter-spacing:0.215352pt;}
.ls9f{letter-spacing:0.221711pt;}
.lsb8{letter-spacing:0.224160pt;}
.lsd3{letter-spacing:0.234432pt;}
.lsc0{letter-spacing:0.242084pt;}
.ls71{letter-spacing:0.243621pt;}
.ls7c{letter-spacing:0.245088pt;}
.lsc1{letter-spacing:0.246750pt;}
.lsba{letter-spacing:0.249204pt;}
.ls6c{letter-spacing:0.269407pt;}
.lsaa{letter-spacing:0.274712pt;}
.lsd{letter-spacing:0.277056pt;}
.ls30{letter-spacing:0.278025pt;}
.lsb3{letter-spacing:0.295061pt;}
.ls8b{letter-spacing:0.307117pt;}
.lsad{letter-spacing:0.315410pt;}
.lsaf{letter-spacing:0.325584pt;}
.lsc9{letter-spacing:0.334645pt;}
.ls8c{letter-spacing:0.335909pt;}
.ls39{letter-spacing:0.370700pt;}
.ls62{letter-spacing:0.370910pt;}
.lsae{letter-spacing:0.376457pt;}
.lsc2{letter-spacing:0.403026pt;}
.ls32{letter-spacing:0.403522pt;}
.lsb4{letter-spacing:0.406980pt;}
.lsbf{letter-spacing:0.427206pt;}
.ls46{letter-spacing:0.443189pt;}
.ls27{letter-spacing:0.448865pt;}
.ls2f{letter-spacing:0.463375pt;}
.lscb{letter-spacing:0.479510pt;}
.ls36{letter-spacing:0.513277pt;}
.ls9e{letter-spacing:0.513437pt;}
.lsa1{letter-spacing:0.583451pt;}
.ls58{letter-spacing:0.704938pt;}
.lsa9{letter-spacing:0.735148pt;}
.lsa2{letter-spacing:0.758486pt;}
.lsb1{letter-spacing:0.940116pt;}
.lsa5{letter-spacing:1.044217pt;}
.ls43{letter-spacing:1.052832pt;}
.lsac{letter-spacing:1.129370pt;}
.ls40{letter-spacing:1.269787pt;}
.ls4c{letter-spacing:1.343044pt;}
.lsa0{letter-spacing:1.376944pt;}
.lsb6{letter-spacing:1.454954pt;}
.lsa4{letter-spacing:1.470296pt;}
.ls25{letter-spacing:1.643530pt;}
.lsa3{letter-spacing:1.727014pt;}
.ls24{letter-spacing:1.740208pt;}
.ls3f{letter-spacing:1.946144pt;}
.ls29{letter-spacing:2.458394pt;}
.ls26{letter-spacing:2.495223pt;}
.ls4a{letter-spacing:2.515156pt;}
.ls44{letter-spacing:2.625664pt;}
.ls50{letter-spacing:2.832602pt;}
.ls88{letter-spacing:26.766339pt;}
.ls77{letter-spacing:32.894944pt;}
.ls8e{letter-spacing:35.456000pt;}
.lsdc{letter-spacing:47.245120pt;}
.lsb9{letter-spacing:1750.313546pt;}
.ls2b{letter-spacing:1752.488359pt;}
.wsc3{word-spacing:-170.560000pt;}
.ws8e{word-spacing:-128.166400pt;}
.ws8c{word-spacing:-128.000000pt;}
.ws9d{word-spacing:-90.018667pt;}
.wsc2{word-spacing:-47.518016pt;}
.wsc4{word-spacing:-47.245120pt;}
.ws91{word-spacing:-35.750400pt;}
.ws6f{word-spacing:-35.737600pt;}
.ws8f{word-spacing:-35.648000pt;}
.ws8d{word-spacing:-35.635200pt;}
.ws87{word-spacing:-35.609600pt;}
.ws8a{word-spacing:-35.584000pt;}
.ws88{word-spacing:-35.532800pt;}
.ws86{word-spacing:-35.481600pt;}
.ws8b{word-spacing:-35.468800pt;}
.ws25{word-spacing:-31.603042pt;}
.ws73{word-spacing:-29.868768pt;}
.ws75{word-spacing:-29.730240pt;}
.ws72{word-spacing:-29.687616pt;}
.ws74{word-spacing:-29.634336pt;}
.ws71{word-spacing:-29.623680pt;}
.ws84{word-spacing:-26.680763pt;}
.ws82{word-spacing:-26.679965pt;}
.wsb8{word-spacing:-23.333664pt;}
.ws36{word-spacing:-23.226112pt;}
.ws35{word-spacing:-22.388632pt;}
.wsa4{word-spacing:-20.128542pt;}
.wsb0{word-spacing:-19.904239pt;}
.ws2b{word-spacing:-19.818212pt;}
.ws3c{word-spacing:-19.803798pt;}
.ws2d{word-spacing:-18.661498pt;}
.ws3b{word-spacing:-18.240983pt;}
.ws37{word-spacing:-17.781991pt;}
.ws38{word-spacing:-16.418142pt;}
.ws39{word-spacing:-14.437221pt;}
.ws3a{word-spacing:-14.114902pt;}
.ws48{word-spacing:-12.896103pt;}
.ws2c{word-spacing:-12.535926pt;}
.ws49{word-spacing:-10.750525pt;}
.ws4f{word-spacing:-10.749409pt;}
.ws4d{word-spacing:-10.748586pt;}
.ws4e{word-spacing:-10.092071pt;}
.ws4b{word-spacing:-8.617961pt;}
.ws4c{word-spacing:-8.447099pt;}
.ws4a{word-spacing:-8.244192pt;}
.ws3d{word-spacing:-5.551296pt;}
.ws27{word-spacing:-3.359162pt;}
.ws9b{word-spacing:-1.843704pt;}
.ws9c{word-spacing:-1.586986pt;}
.ws98{word-spacing:-1.493634pt;}
.ws45{word-spacing:-1.245368pt;}
.ws57{word-spacing:-0.948269pt;}
.ws0{word-spacing:-0.924512pt;}
.ws9a{word-spacing:-0.875176pt;}
.ws3e{word-spacing:-0.866233pt;}
.wsa0{word-spacing:-0.851838pt;}
.ws99{word-spacing:-0.700141pt;}
.ws5e{word-spacing:-0.593994pt;}
.ws32{word-spacing:-0.570308pt;}
.ws55{word-spacing:-0.543940pt;}
.wsa9{word-spacing:-0.534008pt;}
.wsbb{word-spacing:-0.460512pt;}
.ws2f{word-spacing:-0.441989pt;}
.ws94{word-spacing:-0.384000pt;}
.ws5d{word-spacing:-0.351147pt;}
.ws33{word-spacing:-0.349314pt;}
.ws59{word-spacing:-0.328768pt;}
.ws2e{word-spacing:-0.313670pt;}
.wsbc{word-spacing:-0.307008pt;}
.ws83{word-spacing:-0.297600pt;}
.wsb9{word-spacing:-0.255840pt;}
.ws7e{word-spacing:-0.223776pt;}
.ws6{word-spacing:-0.208416pt;}
.ws6d{word-spacing:-0.199648pt;}
.wsa1{word-spacing:-0.194272pt;}
.ws3{word-spacing:-0.192000pt;}
.wsc1{word-spacing:-0.172800pt;}
.ws7d{word-spacing:-0.149184pt;}
.ws62{word-spacing:-0.138293pt;}
.wsa2{word-spacing:-0.132269pt;}
.ws5b{word-spacing:-0.130622pt;}
.ws89{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.124800pt;}
.wsc{word-spacing:-0.119392pt;}
.ws2{word-spacing:-0.115200pt;}
.wsb1{word-spacing:-0.105600pt;}
.ws50{word-spacing:-0.104608pt;}
.wsb4{word-spacing:-0.102336pt;}
.ws80{word-spacing:-0.096000pt;}
.ws81{word-spacing:-0.089664pt;}
.ws95{word-spacing:-0.089600pt;}
.ws5{word-spacing:-0.076800pt;}
.ws40{word-spacing:-0.073257pt;}
.ws90{word-spacing:-0.064000pt;}
.ws93{word-spacing:-0.059776pt;}
.ws96{word-spacing:-0.051200pt;}
.wsb7{word-spacing:-0.051168pt;}
.ws79{word-spacing:-0.046976pt;}
.ws34{word-spacing:-0.038400pt;}
.ws6c{word-spacing:-0.035232pt;}
.wsac{word-spacing:-0.028480pt;}
.ws70{word-spacing:-0.025600pt;}
.ws53{word-spacing:-0.025415pt;}
.ws76{word-spacing:-0.021312pt;}
.ws5a{word-spacing:-0.016328pt;}
.ws97{word-spacing:-0.012800pt;}
.wsb5{word-spacing:-0.010656pt;}
.ws4{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.012800pt;}
.ws8{word-spacing:0.014944pt;}
.wsa{word-spacing:0.017056pt;}
.ws54{word-spacing:0.018233pt;}
.wsae{word-spacing:0.021360pt;}
.ws6e{word-spacing:0.023488pt;}
.ws47{word-spacing:0.025600pt;}
.ws23{word-spacing:0.025632pt;}
.wsb{word-spacing:0.034112pt;}
.wsbe{word-spacing:0.038400pt;}
.ws78{word-spacing:0.046976pt;}
.wsad{word-spacing:0.049841pt;}
.ws46{word-spacing:0.051200pt;}
.ws63{word-spacing:0.054138pt;}
.ws58{word-spacing:0.059485pt;}
.ws9{word-spacing:0.059776pt;}
.ws85{word-spacing:0.064000pt;}
.wse{word-spacing:0.068224pt;}
.wsa6{word-spacing:0.071201pt;}
.ws65{word-spacing:0.075432pt;}
.wsbf{word-spacing:0.076800pt;}
.ws66{word-spacing:0.078861pt;}
.ws7f{word-spacing:0.085248pt;}
.ws6a{word-spacing:0.089600pt;}
.wsb6{word-spacing:0.089664pt;}
.wsba{word-spacing:0.102336pt;}
.ws29{word-spacing:0.106560pt;}
.ws7{word-spacing:0.112224pt;}
.ws1{word-spacing:0.115200pt;}
.ws7b{word-spacing:0.117216pt;}
.wsb3{word-spacing:0.119552pt;}
.ws7c{word-spacing:0.159840pt;}
.wsa3{word-spacing:0.164384pt;}
.ws6b{word-spacing:0.164416pt;}
.ws61{word-spacing:0.164457pt;}
.wsbd{word-spacing:0.179328pt;}
.wsb2{word-spacing:0.181152pt;}
.ws92{word-spacing:0.192000pt;}
.ws7a{word-spacing:0.213120pt;}
.wsc5{word-spacing:0.255840pt;}
.ws77{word-spacing:0.266400pt;}
.ws5f{word-spacing:0.282390pt;}
.wsaf{word-spacing:0.334645pt;}
.wsd{word-spacing:0.358176pt;}
.ws31{word-spacing:0.392087pt;}
.ws68{word-spacing:0.553289pt;}
.wsa8{word-spacing:0.555368pt;}
.ws52{word-spacing:0.556915pt;}
.ws5c{word-spacing:0.574229pt;}
.wsaa{word-spacing:0.576729pt;}
.ws67{word-spacing:0.594976pt;}
.ws64{word-spacing:0.702893pt;}
.wsa5{word-spacing:0.733371pt;}
.ws51{word-spacing:0.835373pt;}
.wsab{word-spacing:0.854413pt;}
.ws69{word-spacing:0.952798pt;}
.wsa7{word-spacing:0.968335pt;}
.ws30{word-spacing:0.990911pt;}
.ws56{word-spacing:1.018252pt;}
.ws60{word-spacing:1.046543pt;}
.ws2a{word-spacing:2.403920pt;}
.ws3f{word-spacing:2.496841pt;}
.ws41{word-spacing:2.679984pt;}
.ws44{word-spacing:3.760524pt;}
.ws42{word-spacing:4.834959pt;}
.ws43{word-spacing:8.497807pt;}
.ws16{word-spacing:67.040640pt;}
.ws15{word-spacing:67.068864pt;}
.ws18{word-spacing:93.146688pt;}
.ws10{word-spacing:93.517056pt;}
.ws28{word-spacing:102.417765pt;}
.ws13{word-spacing:120.427200pt;}
.ws12{word-spacing:121.120480pt;}
.ws11{word-spacing:122.212256pt;}
.ws26{word-spacing:137.422747pt;}
.ws14{word-spacing:181.620864pt;}
.ws1d{word-spacing:239.975328pt;}
.ws1a{word-spacing:240.019520pt;}
.ws22{word-spacing:258.579520pt;}
.ws1e{word-spacing:258.604544pt;}
.ws19{word-spacing:277.588672pt;}
.ws1b{word-spacing:287.189120pt;}
.ws20{word-spacing:287.317632pt;}
.ws1f{word-spacing:287.370368pt;}
.ws1c{word-spacing:372.937056pt;}
.ws9e{word-spacing:618.944351pt;}
.ws9f{word-spacing:619.537802pt;}
.wsf{word-spacing:1457.728000pt;}
.ws17{word-spacing:1539.363360pt;}
.ws21{word-spacing:2017.768928pt;}
._18{margin-left:-9.466060pt;}
._25{margin-left:-8.434932pt;}
._23{margin-left:-6.841402pt;}
._13{margin-left:-5.496100pt;}
._16{margin-left:-3.950010pt;}
._14{margin-left:-2.254299pt;}
._1{margin-left:-1.106208pt;}
._0{width:0.940544pt;}
._24{width:1.846639pt;}
._15{width:2.763012pt;}
._17{width:4.468698pt;}
._26{width:5.412200pt;}
._1a{width:6.359282pt;}
._21{width:7.486167pt;}
._22{width:8.470876pt;}
._19{width:9.584079pt;}
._27{width:10.669427pt;}
._1b{width:14.010577pt;}
._c{width:94.693760pt;}
._9{width:101.787200pt;}
._a{width:108.827200pt;}
._6{width:109.733760pt;}
._2{width:113.951136pt;}
._1e{width:125.025488pt;}
._3{width:128.319552pt;}
._1d{width:131.437473pt;}
._4{width:135.363168pt;}
._7{width:147.894624pt;}
._5{width:154.533760pt;}
._2a{width:181.996800pt;}
._8{width:235.251264pt;}
._b{width:240.378048pt;}
._12{width:263.300448pt;}
._2b{width:277.222400pt;}
._e{width:282.237248pt;}
._d{width:310.372224pt;}
._f{width:311.525568pt;}
._11{width:372.714912pt;}
._1c{width:408.964000pt;}
._10{width:410.430784pt;}
._20{width:713.867021pt;}
._1f{width:816.916231pt;}
._28{width:886.775731pt;}
._29{width:907.075179pt;}
.fs26{font-size:29.774933pt;}
.fs1c{font-size:30.385248pt;}
.fs1a{font-size:30.387733pt;}
.fs21{font-size:32.458667pt;}
.fs24{font-size:34.287467pt;}
.fs1b{font-size:34.991467pt;}
.fs22{font-size:37.376533pt;}
.fs25{font-size:37.896533pt;}
.fs1d{font-size:38.663977pt;}
.fs1e{font-size:38.666939pt;}
.fs19{font-size:38.670953pt;}
.fs16{font-size:38.674667pt;}
.fs20{font-size:41.311467pt;}
.fs18{font-size:46.041067pt;}
.fsf{font-size:46.706133pt;}
.fs10{font-size:51.622400pt;}
.fs2{font-size:53.440000pt;}
.fs15{font-size:61.047467pt;}
.fs2f{font-size:61.380267pt;}
.fsc{font-size:61.456533pt;}
.fs14{font-size:67.149867pt;}
.fs13{font-size:67.152533pt;}
.fs2c{font-size:70.013867pt;}
.fs31{font-size:71.201067pt;}
.fse{font-size:71.288533pt;}
.fs32{font-size:77.340267pt;}
.fs11{font-size:77.433600pt;}
.fs33{font-size:77.994667pt;}
.fs12{font-size:79.760000pt;}
.fs1f{font-size:81.638933pt;}
.fs30{font-size:82.250133pt;}
.fsd{font-size:82.351467pt;}
.fsa{font-size:84.401067pt;}
.fs17{font-size:84.717333pt;}
.fs7{font-size:85.440000pt;}
.fs2e{font-size:85.465067pt;}
.fs2b{font-size:90.018667pt;}
.fs23{font-size:90.229867pt;}
.fsb{font-size:92.074667pt;}
.fs28{font-size:95.971096pt;}
.fs29{font-size:95.973966pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:99.747733pt;}
.fs2d{font-size:101.745067pt;}
.fs5{font-size:106.560000pt;}
.fs9{font-size:107.420267pt;}
.fs2a{font-size:116.690133pt;}
.fs27{font-size:117.440000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:149.440000pt;}
.fs4{font-size:170.560000pt;}
.fs0{font-size:192.000000pt;}
.fs34{font-size:469.440000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:47.013333pt;}
.y9{bottom:59.573595pt;}
.y85{bottom:62.453179pt;}
.y7b{bottom:64.931196pt;}
.yaf{bottom:68.212667pt;}
.y84{bottom:71.253467pt;}
.y12d{bottom:72.053333pt;}
.y8{bottom:75.573531pt;}
.y136{bottom:76.374957pt;}
.y9e{bottom:76.773333pt;}
.y93{bottom:78.293199pt;}
.y12c{bottom:81.173333pt;}
.ye1{bottom:85.409397pt;}
.y92{bottom:87.653467pt;}
.y23{bottom:89.573467pt;}
.y14c{bottom:90.053333pt;}
.ydf{bottom:91.491208pt;}
.y7{bottom:91.573467pt;}
.yd1{bottom:99.893333pt;}
.yae{bottom:111.573467pt;}
.yd7{bottom:115.890365pt;}
.ye0{bottom:117.970362pt;}
.y11{bottom:120.854237pt;}
.y135{bottom:121.173333pt;}
.yde{bottom:124.052173pt;}
.y22{bottom:124.933421pt;}
.y14b{bottom:128.373333pt;}
.y129{bottom:129.093333pt;}
.y14{bottom:134.053333pt;}
.y88{bottom:135.253467pt;}
.y54{bottom:142.932281pt;}
.ye3{bottom:143.409172pt;}
.y109{bottom:143.572239pt;}
.y9b{bottom:145.093333pt;}
.y7f{bottom:145.573333pt;}
.y5b{bottom:145.653186pt;}
.y112{bottom:146.373649pt;}
.yc9{bottom:147.893333pt;}
.yd6{bottom:148.451329pt;}
.y96{bottom:148.613333pt;}
.y30{bottom:153.573333pt;}
.y77{bottom:154.611451pt;}
.y9c{bottom:155.253333pt;}
.y150{bottom:156.693333pt;}
.y73{bottom:158.932085pt;}
.y21{bottom:160.133333pt;}
.y10{bottom:161.895237pt;}
.yd0{bottom:165.173333pt;}
.y53{bottom:166.293333pt;}
.y108{bottom:166.933333pt;}
.y90{bottom:167.093333pt;}
.y5a{bottom:167.493333pt;}
.y111{bottom:168.133333pt;}
.ybd{bottom:170.213333pt;}
.y76{bottom:171.411714pt;}
.y83{bottom:171.573333pt;}
.yb4{bottom:172.133333pt;}
.ydb{bottom:174.533582pt;}
.y72{bottom:175.732348pt;}
.y80{bottom:175.733333pt;}
.ye2{bottom:175.970137pt;}
.y9d{bottom:178.053333pt;}
.y120{bottom:179.253333pt;}
.yb2{bottom:185.573333pt;}
.y14a{bottom:185.893333pt;}
.yc6{bottom:190.213333pt;}
.yac{bottom:190.693589pt;}
.ya5{bottom:194.853221pt;}
.y20{bottom:195.332453pt;}
.y114{bottom:196.693333pt;}
.y91{bottom:199.253333pt;}
.y2f{bottom:202.053274pt;}
.yda{bottom:202.053333pt;}
.yca{bottom:207.893025pt;}
.y6{bottom:208.213333pt;}
.ybc{bottom:208.533333pt;}
.y66{bottom:218.933743pt;}
.y121{bottom:222.132851pt;}
.yab{bottom:222.693557pt;}
.y6a{bottom:223.093171pt;}
.y149{bottom:224.213333pt;}
.yc5{bottom:228.533333pt;}
.ya4{bottom:229.973653pt;}
.y1f{bottom:230.453333pt;}
.y115{bottom:230.533136pt;}
.y8d{bottom:233.253333pt;}
.y65{bottom:238.773171pt;}
.y27{bottom:240.453333pt;}
.y69{bottom:241.413333pt;}
.y71{bottom:242.213039pt;}
.yf{bottom:245.013389pt;}
.ybb{bottom:246.853333pt;}
.y48{bottom:248.060101pt;}
.yfd{bottom:248.535631pt;}
.y64{bottom:257.093333pt;}
.y8a{bottom:257.733333pt;}
.y70{bottom:258.932414pt;}
.y148{bottom:262.533333pt;}
.y122{bottom:263.733257pt;}
.y1e{bottom:265.413333pt;}
.y47{bottom:265.499928pt;}
.y116{bottom:265.573984pt;}
.yfc{bottom:266.055094pt;}
.yc4{bottom:266.853333pt;}
.ydd{bottom:267.492368pt;}
.ycb{bottom:267.892717pt;}
.y28{bottom:280.773530pt;}
.y137{bottom:282.373333pt;}
.yd9{bottom:282.770079pt;}
.y46{bottom:283.339224pt;}
.yfb{bottom:283.815474pt;}
.yba{bottom:285.253333pt;}
.ye{bottom:286.054389pt;}
.yaa{bottom:286.693493pt;}
.y13f{bottom:287.334509pt;}
.y8c{bottom:297.733333pt;}
.ydc{bottom:300.053333pt;}
.ya3{bottom:300.293789pt;}
.y45{bottom:300.858945pt;}
.yfa{bottom:301.334937pt;}
.y61{bottom:303.492265pt;}
.y107{bottom:305.016101pt;}
.yc3{bottom:305.253333pt;}
.y123{bottom:306.612774pt;}
.y133{bottom:313.091733pt;}
.y52{bottom:314.693088pt;}
.yd8{bottom:315.331044pt;}
.yb3{bottom:315.573333pt;}
.y117{bottom:317.573727pt;}
.y4d{bottom:318.053169pt;}
.ya9{bottom:318.693461pt;}
.y44{bottom:318.699776pt;}
.y29{bottom:319.093025pt;}
.yf9{bottom:319.175111pt;}
.y89{bottom:321.013333pt;}
.y102{bottom:321.575409pt;}
.y24{bottom:322.693333pt;}
.yb9{bottom:323.573333pt;}
.y110{bottom:324.054600pt;}
.y106{bottom:325.575409pt;}
.y60{bottom:326.453175pt;}
.ycc{bottom:327.093493pt;}
.y51{bottom:330.053333pt;}
.y5{bottom:332.933333pt;}
.ya2{bottom:335.493493pt;}
.y43{bottom:336.219498pt;}
.yf8{bottom:336.614780pt;}
.y147{bottom:337.733333pt;}
.y4c{bottom:341.733908pt;}
.y101{bottom:342.134717pt;}
.yc2{bottom:343.573333pt;}
.y59{bottom:344.212511pt;}
.y10f{bottom:344.934313pt;}
.y50{bottom:345.733908pt;}
.y105{bottom:346.134717pt;}
.y5f{bottom:347.972423pt;}
.y124{bottom:348.213180pt;}
.ya8{bottom:350.693429pt;}
.y42{bottom:354.058793pt;}
.yf7{bottom:354.454954pt;}
.ye6{bottom:356.536581pt;}
.y118{bottom:359.173522pt;}
.y2a{bottom:359.413222pt;}
.yb8{bottom:361.893333pt;}
.y4b{bottom:362.293521pt;}
.y100{bottom:362.694025pt;}
.y87{bottom:363.093333pt;}
.y119{bottom:363.094463pt;}
.y13e{bottom:364.214429pt;}
.y58{bottom:365.092922pt;}
.y10e{bottom:365.493621pt;}
.y4f{bottom:366.293521pt;}
.y104{bottom:366.694025pt;}
.y132{bottom:370.691733pt;}
.y5e{bottom:370.933333pt;}
.y8b{bottom:371.173333pt;}
.y41{bottom:371.578514pt;}
.yf6{bottom:371.894622pt;}
.y9a{bottom:375.173333pt;}
.y146{bottom:376.053333pt;}
.y6f{bottom:377.172200pt;}
.y1d{bottom:377.253333pt;}
.yc1{bottom:381.893333pt;}
.y4a{bottom:382.933333pt;}
.yff{bottom:383.253333pt;}
.y57{bottom:385.973333pt;}
.y10d{bottom:386.373333pt;}
.y11a{bottom:386.454377pt;}
.y4e{bottom:386.933333pt;}
.ycd{bottom:387.093185pt;}
.y103{bottom:387.253333pt;}
.yd{bottom:388.373333pt;}
.y40{bottom:389.337916pt;}
.yf5{bottom:389.734797pt;}
.y4{bottom:390.533333pt;}
.y125{bottom:391.172642pt;}
.y6e{bottom:393.972463pt;}
.y11b{bottom:396.854326pt;}
.y2b{bottom:397.732717pt;}
.y95{bottom:399.493333pt;}
.yb7{bottom:400.213333pt;}
.ye5{bottom:401.334957pt;}
.y49{bottom:404.453333pt;}
.yfe{bottom:404.773333pt;}
.ya1{bottom:405.813629pt;}
.y3f{bottom:406.857637pt;}
.yf4{bottom:407.254259pt;}
.y6d{bottom:412.292808pt;}
.y68{bottom:414.053171pt;}
.ya7{bottom:414.693365pt;}
.y134{bottom:418.373333pt;}
.y1c{bottom:419.252069pt;}
.yc0{bottom:420.213333pt;}
.y63{bottom:421.894122pt;}
.y11c{bottom:422.854198pt;}
.y3e{bottom:424.698469pt;}
.yf3{bottom:425.014640pt;}
.y131{bottom:428.373333pt;}
.y6c{bottom:429.093071pt;}
.y67{bottom:432.373333pt;}
.y126{bottom:434.052160pt;}
.y2c{bottom:438.052914pt;}
.yb6{bottom:438.533333pt;}
.y62{bottom:440.213333pt;}
.ya0{bottom:441.013333pt;}
.y3d{bottom:442.218190pt;}
.yf2{bottom:442.534102pt;}
.y6b{bottom:445.893333pt;}
.ye4{bottom:446.133333pt;}
.ya6{bottom:446.693333pt;}
.yce{bottom:447.092877pt;}
.y82{bottom:456.133333pt;}
.y14f{bottom:456.213333pt;}
.ybf{bottom:458.533333pt;}
.y3c{bottom:460.057485pt;}
.yf1{bottom:460.294482pt;}
.y1b{bottom:460.773333pt;}
.y7a{bottom:475.492198pt;}
.y127{bottom:475.652565pt;}
.y2d{bottom:476.372408pt;}
.yb5{bottom:476.853333pt;}
.y3b{bottom:477.577206pt;}
.yf0{bottom:477.813945pt;}
.y75{bottom:482.292885pt;}
.y11d{bottom:483.974856pt;}
.y86{bottom:487.413333pt;}
.y79{bottom:492.211572pt;}
.y3a{bottom:495.416502pt;}
.yef{bottom:495.574325pt;}
.y11e{bottom:495.655789pt;}
.ybe{bottom:496.853333pt;}
.y99{bottom:497.173333pt;}
.yc{bottom:498.133333pt;}
.y11f{bottom:498.295746pt;}
.y74{bottom:499.093148pt;}
.y1a{bottom:502.451989pt;}
.ycf{bottom:507.092568pt;}
.y78{bottom:509.011835pt;}
.y9f{bottom:512.053333pt;}
.y39{bottom:512.856329pt;}
.yee{bottom:513.093788pt;}
.y130{bottom:514.854957pt;}
.y2e{bottom:516.692606pt;}
.y128{bottom:518.532083pt;}
.y38{bottom:530.697161pt;}
.yed{bottom:530.933962pt;}
.y94{bottom:532.213333pt;}
.y56{bottom:539.332922pt;}
.y10b{bottom:539.493621pt;}
.y5c{bottom:539.653720pt;}
.y10c{bottom:539.814025pt;}
.yd5{bottom:542.212368pt;}
.y19{bottom:543.893333pt;}
.y98{bottom:547.493333pt;}
.y37{bottom:548.216882pt;}
.yec{bottom:548.373631pt;}
.y3{bottom:551.730133pt;}
.y81{bottom:559.493333pt;}
.y12f{bottom:559.653333pt;}
.y55{bottom:560.213333pt;}
.y10a{bottom:560.373333pt;}
.y13a{bottom:562.053333pt;}
.y12{bottom:562.373333pt;}
.y36{bottom:566.056177pt;}
.yeb{bottom:566.213805pt;}
.y26{bottom:568.293333pt;}
.y8f{bottom:568.373333pt;}
.y140{bottom:569.573333pt;}
.yc8{bottom:571.653333pt;}
.y145{bottom:572.053333pt;}
.y13c{bottom:572.134341pt;}
.yd4{bottom:574.773333pt;}
.y14e{bottom:574.933333pt;}
.y35{bottom:583.575899pt;}
.yea{bottom:583.653473pt;}
.y18{bottom:585.253333pt;}
.y13b{bottom:597.813333pt;}
.y34{bottom:601.415194pt;}
.ye9{bottom:601.493648pt;}
.y2{bottom:609.411733pt;}
.y144{bottom:610.373333pt;}
.yb{bottom:613.652765pt;}
.y33{bottom:618.934915pt;}
.ye8{bottom:619.013110pt;}
.yb1{bottom:628.132765pt;}
.y14d{bottom:632.533333pt;}
.y7d{bottom:637.893333pt;}
.y97{bottom:639.813333pt;}
.y16{bottom:640.213333pt;}
.y139{bottom:642.853365pt;}
.yd3{bottom:647.652765pt;}
.yad{bottom:648.213333pt;}
.y32{bottom:654.214038pt;}
.ye7{bottom:654.292953pt;}
.y7e{bottom:655.013333pt;}
.ya{bottom:658.533333pt;}
.y141{bottom:660.373333pt;}
.y8e{bottom:662.533333pt;}
.yc7{bottom:663.173333pt;}
.y113{bottom:664.533333pt;}
.y142{bottom:665.493333pt;}
.y1{bottom:667.093333pt;}
.y13{bottom:667.893333pt;}
.y12b{bottom:671.333365pt;}
.y31{bottom:672.053333pt;}
.yb0{bottom:673.013333pt;}
.y138{bottom:674.853333pt;}
.y7c{bottom:676.213333pt;}
.y12e{bottom:677.653333pt;}
.y25{bottom:685.333333pt;}
.y143{bottom:688.133333pt;}
.y5d{bottom:691.253333pt;}
.yd2{bottom:692.533333pt;}
.y13d{bottom:693.573333pt;}
.y15{bottom:698.693333pt;}
.y12a{bottom:703.333333pt;}
.h31{height:21.691504pt;}
.h25{height:22.137939pt;}
.h27{height:22.670909pt;}
.h2c{height:23.646646pt;}
.h2f{height:24.978955pt;}
.h26{height:25.491830pt;}
.h2d{height:27.229389pt;}
.h30{height:27.589712pt;}
.h21{height:28.156215pt;}
.h24{height:28.508831pt;}
.h28{height:29.180308pt;}
.h29{height:29.232810pt;}
.h2b{height:30.075877pt;}
.h23{height:33.541636pt;}
.h14{height:37.582519pt;}
.h4{height:38.931875pt;}
.h1f{height:44.474033pt;}
.h3b{height:47.621736pt;}
.h1e{height:48.919727pt;}
.h1d{height:48.921670pt;}
.h41{height:51.836323pt;}
.h12{height:51.900002pt;}
.h48{height:56.820333pt;}
.h1c{height:58.106406pt;}
.h2a{height:59.475239pt;}
.h40{height:59.880346pt;}
.h11{height:59.954120pt;}
.h3f{height:60.241375pt;}
.h10{height:60.316227pt;}
.h3a{height:61.228517pt;}
.hf{height:61.446284pt;}
.h22{height:61.717901pt;}
.h3e{height:62.220905pt;}
.ha{height:62.244375pt;}
.h2e{height:65.733868pt;}
.h13{height:67.281045pt;}
.h45{height:69.879953pt;}
.h36{height:69.890625pt;}
.h9{height:69.937500pt;}
.h18{height:69.965797pt;}
.h37{height:70.002817pt;}
.h38{height:70.052897pt;}
.h43{height:71.757325pt;}
.h16{height:71.845475pt;}
.hd{height:72.619077pt;}
.h3d{height:74.073191pt;}
.h7{height:77.578594pt;}
.h34{height:77.630625pt;}
.h46{height:77.944487pt;}
.h19{height:78.038550pt;}
.he{height:78.257343pt;}
.h3c{height:79.369803pt;}
.h39{height:79.768646pt;}
.h42{height:82.892712pt;}
.h15{height:82.994837pt;}
.hc{height:83.854687pt;}
.h32{height:85.556875pt;}
.h1b{height:93.187500pt;}
.h3{height:93.250000pt;}
.h35{height:96.205781pt;}
.hb{height:104.582812pt;}
.h5{height:108.796406pt;}
.h20{height:108.869375pt;}
.h33{height:115.562500pt;}
.h8{height:124.172344pt;}
.h6{height:124.255625pt;}
.h1{height:139.781250pt;}
.h2{height:139.875000pt;}
.h49{height:150.898033pt;}
.h4a{height:153.987031pt;}
.h17{height:154.087121pt;}
.h44{height:155.276176pt;}
.h47{height:164.983224pt;}
.h1a{height:165.399138pt;}
.h4b{height:341.765156pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xae{left:117.266123pt;}
.xab{left:121.667333pt;}
.xad{left:130.467467pt;}
.xac{left:132.547467pt;}
.xa5{left:134.868933pt;}
.xa4{left:136.227333pt;}
.x15{left:140.147333pt;}
.x63{left:145.267333pt;}
.x11{left:146.787333pt;}
.x1e{left:149.347467pt;}
.x64{left:152.706254pt;}
.x83{left:158.547467pt;}
.x7{left:162.867333pt;}
.x13{left:170.387333pt;}
.x8{left:175.027333pt;}
.x1c{left:177.507333pt;}
.x21{left:179.106948pt;}
.x1a{left:180.947236pt;}
.x1{left:183.747333pt;}
.x26{left:189.267333pt;}
.x88{left:190.466953pt;}
.x97{left:193.747564pt;}
.x19{left:194.787333pt;}
.x20{left:196.307391pt;}
.x27{left:197.827530pt;}
.x87{left:199.988098pt;}
.x28{left:205.507808pt;}
.x47{left:207.027333pt;}
.x53{left:208.227333pt;}
.x8e{left:210.627333pt;}
.x85{left:212.309287pt;}
.x86{left:217.827333pt;}
.xb3{left:220.387333pt;}
.x84{left:222.148028pt;}
.xe{left:223.187333pt;}
.xb{left:226.865709pt;}
.xb5{left:228.467333pt;}
.x49{left:229.587333pt;}
.x9{left:233.028733pt;}
.x54{left:238.867333pt;}
.x2{left:239.825733pt;}
.x9f{left:249.346989pt;}
.x14{left:250.707333pt;}
.x1f{left:252.547618pt;}
.x55{left:253.587333pt;}
.x65{left:256.387333pt;}
.x45{left:259.587333pt;}
.xa1{left:260.867333pt;}
.x1b{left:265.588476pt;}
.xb0{left:268.627333pt;}
.x4f{left:274.787333pt;}
.x5a{left:282.707333pt;}
.xc{left:286.227333pt;}
.x12{left:291.267333pt;}
.x35{left:293.347333pt;}
.x30{left:294.307333pt;}
.xa9{left:295.666989pt;}
.xa8{left:297.987333pt;}
.x8f{left:300.147333pt;}
.x80{left:305.907652pt;}
.x37{left:308.067333pt;}
.x61{left:309.587333pt;}
.x43{left:310.867690pt;}
.xb1{left:313.347333pt;}
.x36{left:317.747981pt;}
.xb4{left:319.267333pt;}
.xf{left:326.627333pt;}
.x38{left:335.587074pt;}
.x66{left:337.585915pt;}
.x17{left:339.027333pt;}
.xb8{left:340.387333pt;}
.x4c{left:347.347333pt;}
.x3{left:349.184133pt;}
.xb2{left:350.787333pt;}
.xb6{left:353.427333pt;}
.x90{left:354.706553pt;}
.x98{left:356.067559pt;}
.x44{left:363.027333pt;}
.x62{left:365.347333pt;}
.x7f{left:368.068117pt;}
.x7e{left:369.107778pt;}
.x18{left:384.787333pt;}
.x67{left:391.664626pt;}
.x5e{left:397.347333pt;}
.xaf{left:402.147333pt;}
.x91{left:410.626779pt;}
.x99{left:411.907841pt;}
.x68{left:418.703981pt;}
.x60{left:424.467333pt;}
.xb7{left:426.068933pt;}
.x41{left:427.747292pt;}
.xaa{left:430.867333pt;}
.xa{left:434.707333pt;}
.x42{left:439.187904pt;}
.x29{left:444.147333pt;}
.xd{left:445.827333pt;}
.x2b{left:447.506556pt;}
.x8a{left:459.507670pt;}
.x7d{left:464.947626pt;}
.x7c{left:466.947953pt;}
.x33{left:470.867133pt;}
.x69{left:472.782692pt;}
.x32{left:473.907270pt;}
.x2c{left:478.787333pt;}
.x31{left:484.707333pt;}
.x34{left:493.907535pt;}
.x2a{left:499.426509pt;}
.x89{left:501.267189pt;}
.x2d{left:506.147753pt;}
.x8b{left:509.188142pt;}
.x16{left:511.987333pt;}
.x10{left:517.027333pt;}
.x92{left:521.106224pt;}
.x9a{left:522.387286pt;}
.x6a{left:526.861402pt;}
.x75{left:532.227333pt;}
.x40{left:538.467621pt;}
.x76{left:547.506261pt;}
.x3f{left:549.027247pt;}
.x6b{left:553.900758pt;}
.x4b{left:564.227333pt;}
.x5d{left:569.187333pt;}
.x77{left:571.986690pt;}
.x5b{left:573.427333pt;}
.x93{left:577.026450pt;}
.x9b{left:578.307513pt;}
.x1d{left:581.666198pt;}
.xa7{left:583.747333pt;}
.xa0{left:586.387333pt;}
.x78{left:596.385577pt;}
.x6{left:608.387333pt;}
.xa2{left:612.627333pt;}
.xa3{left:622.946165pt;}
.x3b{left:632.787333pt;}
.x5c{left:634.706533pt;}
.x3c{left:635.827168pt;}
.x39{left:637.027333pt;}
.xa6{left:639.827333pt;}
.x79{left:646.387333pt;}
.x3a{left:649.186672pt;}
.x59{left:661.667333pt;}
.x7a{left:677.987043pt;}
.x94{left:687.505895pt;}
.x6c{left:689.178050pt;}
.x5f{left:691.187333pt;}
.x7b{left:695.268026pt;}
.x48{left:699.107333pt;}
.x4{left:700.547333pt;}
.x5{left:716.545733pt;}
.x58{left:728.547333pt;}
.x4a{left:736.707333pt;}
.x6d{left:743.256761pt;}
.x9c{left:744.707184pt;}
.x23{left:749.667841pt;}
.x4d{left:752.147333pt;}
.x56{left:753.107333pt;}
.x52{left:756.627333pt;}
.x3e{left:764.067392pt;}
.x3d{left:770.947333pt;}
.x22{left:776.067333pt;}
.x2f{left:779.427333pt;}
.x46{left:780.707333pt;}
.x57{left:792.867333pt;}
.x2e{left:793.827754pt;}
.x6e{left:797.335471pt;}
.x95{left:799.266403pt;}
.x8d{left:800.627189pt;}
.x50{left:803.667333pt;}
.x8c{left:805.507333pt;}
.x4e{left:813.187333pt;}
.x24{left:816.308462pt;}
.x51{left:817.427333pt;}
.x6f{left:824.374827pt;}
.x81{left:833.026981pt;}
.x82{left:847.425525pt;}
.x70{left:851.494698pt;}
.x25{left:853.427333pt;}
.x9d{left:855.186629pt;}
.x71{left:878.534053pt;}
.x72{left:905.573409pt;}
.x96{left:909.745849pt;}
.x9e{left:911.106855pt;}
.x73{left:932.612764pt;}
.x74{left:959.652119pt;}
}




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