
    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_4c57878445c0d979b6598e0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.713000;font-style:normal;font-weight: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_3fb4645fa844b64cc007d05a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;font-style:normal;font-weight: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_f25ac6449bc1b3e31b740240.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;font-style:normal;font-weight: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_67d9e72f8fa10677fdcfe322.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;font-style:normal;font-weight: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_d2f33193613075048df818b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27132f73250f9b916f37c407.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;font-style:normal;font-weight: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_287eaea5fd404a654b7d1285.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ccfe35e989b586e1317addbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.705000;font-style:normal;font-weight: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_412c3054a8ce5bbcad690cd1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3daa86bc1d039131cfe65e5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;font-style:normal;font-weight: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_8dc0b6f29b9a251fc90c28e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.042000;font-style:normal;font-weight: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_1a5340e4809b04e378b732d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_62fa1766ef10d13923ddee59.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_55ccdd275adc02611d66b7d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.896000;font-style:normal;font-weight: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_197d600c0434af641cbedfb9.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7cef7ed60005718881848111.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.400000;font-style:normal;font-weight: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_0c3ee90b80c5f60595652453.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.653000;font-style:normal;font-weight: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_3ac8cce9eebd0ddccd8fec4b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.888000;font-style:normal;font-weight: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_4da4009e1296e5d12925ac99.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;font-style:normal;font-weight: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_dffb4079dd0b91df173eb7c8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.521000;font-style:normal;font-weight: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_78fef2d50310bd4b4afe121d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_93465755a22b02d896025401.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.901000;font-style:normal;font-weight: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_6fedf64cb66234eb22ccc477.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.897450;font-style:normal;font-weight: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_ee36a3c232d7e8cb6c74e48c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.877000;font-style:normal;font-weight: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_9ca7c783a0a57b3250aa7d3e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.052000;font-style:normal;font-weight: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_94ab2fadbad80507769a18ab.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.201000;font-style:normal;font-weight: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_29a47eb3fb838540ecc984d1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.889000;font-style:normal;font-weight: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_bc76fbfe93c9a5e3a7a36850.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v15{vertical-align:-17.934000px;}
.v1{vertical-align:-8.970000px;}
.v13{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:5.814000px;}
.va{vertical-align:7.962000px;}
.v12{vertical-align:8.964000px;}
.v5{vertical-align:11.952000px;}
.vc{vertical-align:14.778000px;}
.v9{vertical-align:16.926000px;}
.v8{vertical-align:21.690000px;}
.v16{vertical-align:22.854000px;}
.vb{vertical-align:24.678000px;}
.v11{vertical-align:31.470000px;}
.v6{vertical-align:38.556000px;}
.v3{vertical-align:40.440000px;}
.v14{vertical-align:44.832000px;}
.v17{vertical-align:46.014000px;}
.v2{vertical-align:56.784000px;}
.v7{vertical-align:63.234000px;}
.ve{vertical-align:71.568000px;}
.vf{vertical-align:87.228000px;}
.v4{vertical-align:97.794000px;}
.v10{vertical-align:108.924000px;}
.ls1{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.000062px;}
.lsa{letter-spacing:0.000300px;}
.ls1b{letter-spacing:0.000444px;}
.ls48{letter-spacing:0.000767px;}
.ls70{letter-spacing:0.000783px;}
.ls20{letter-spacing:0.001120px;}
.ls67{letter-spacing:0.001331px;}
.ls88{letter-spacing:0.001448px;}
.ls8f{letter-spacing:0.001682px;}
.ls72{letter-spacing:0.001698px;}
.ls11{letter-spacing:0.001908px;}
.ls3{letter-spacing:0.002638px;}
.ls6e{letter-spacing:0.002877px;}
.ls2{letter-spacing:0.003333px;}
.ls77{letter-spacing:0.003573px;}
.ls35{letter-spacing:0.004326px;}
.ls13{letter-spacing:0.004379px;}
.ls7d{letter-spacing:0.005092px;}
.ls8b{letter-spacing:0.005303px;}
.ls94{letter-spacing:0.005364px;}
.ls97{letter-spacing:0.005839px;}
.ls59{letter-spacing:0.006062px;}
.ls57{letter-spacing:0.008912px;}
.ls91{letter-spacing:0.009093px;}
.ls4e{letter-spacing:0.009882px;}
.ls73{letter-spacing:0.011086px;}
.ls50{letter-spacing:0.011688px;}
.ls55{letter-spacing:0.017688px;}
.ls52{letter-spacing:0.018306px;}
.ls68{letter-spacing:0.020323px;}
.ls3f{letter-spacing:0.025417px;}
.ls4b{letter-spacing:0.418429px;}
.ls3c{letter-spacing:0.458387px;}
.ls5d{letter-spacing:1.297127px;}
.ls5c{letter-spacing:1.506341px;}
.ls56{letter-spacing:1.613941px;}
.ls32{letter-spacing:1.659333px;}
.ls53{letter-spacing:1.665333px;}
.ls54{letter-spacing:1.665882px;}
.ls37{letter-spacing:1.673717px;}
.ls2f{letter-spacing:1.681062px;}
.ls71{letter-spacing:1.936742px;}
.ls3b{letter-spacing:2.148767px;}
.ls4c{letter-spacing:2.151922px;}
.ls15{letter-spacing:2.932010px;}
.ls1c{letter-spacing:2.984525px;}
.ls65{letter-spacing:2.986246px;}
.ls19{letter-spacing:2.986982px;}
.ls43{letter-spacing:2.988615px;}
.ls16{letter-spacing:2.989480px;}
.ls1e{letter-spacing:2.990525px;}
.lsc{letter-spacing:2.993535px;}
.ls38{letter-spacing:3.323134px;}
.ls18{letter-spacing:4.272444px;}
.ls5e{letter-spacing:4.489024px;}
.ls7{letter-spacing:6.443791px;}
.ls44{letter-spacing:9.982525px;}
.ls82{letter-spacing:12.201959px;}
.ls81{letter-spacing:12.204532px;}
.ls17{letter-spacing:12.892574px;}
.lsb{letter-spacing:12.947535px;}
.ls6f{letter-spacing:12.949140px;}
.ls76{letter-spacing:12.950342px;}
.ls3d{letter-spacing:13.106525px;}
.ls42{letter-spacing:13.270183px;}
.ls5{letter-spacing:15.422105px;}
.ls6{letter-spacing:16.249463px;}
.ls34{letter-spacing:16.260538px;}
.ls4f{letter-spacing:16.268525px;}
.ls51{letter-spacing:16.274525px;}
.ls22{letter-spacing:16.557841px;}
.ls75{letter-spacing:16.602538px;}
.ls1d{letter-spacing:16.617617px;}
.ls0{letter-spacing:16.928492px;}
.ls33{letter-spacing:17.773024px;}
.ls21{letter-spacing:18.112007px;}
.ls27{letter-spacing:18.291334px;}
.ls93{letter-spacing:18.399053px;}
.ls79{letter-spacing:18.452851px;}
.ls24{letter-spacing:18.769538px;}
.ls10{letter-spacing:19.247743px;}
.lsf{letter-spacing:19.546621px;}
.ls14{letter-spacing:19.586525px;}
.ls5a{letter-spacing:19.588246px;}
.ls46{letter-spacing:19.590615px;}
.ls2b{letter-spacing:19.592525px;}
.ls23{letter-spacing:19.905275px;}
.ls12{letter-spacing:20.263928px;}
.ls9c{letter-spacing:20.335795px;}
.ls4{letter-spacing:21.091024px;}
.ls31{letter-spacing:21.097024px;}
.ls74{letter-spacing:21.414334px;}
.ls69{letter-spacing:21.414532px;}
.ls30{letter-spacing:21.578992px;}
.ls62{letter-spacing:21.818094px;}
.ls4d{letter-spacing:22.057196px;}
.lse{letter-spacing:22.116972px;}
.ls2e{letter-spacing:22.415850px;}
.ls40{letter-spacing:22.905193px;}
.ls58{letter-spacing:22.906246px;}
.ls41{letter-spacing:22.908615px;}
.ls2a{letter-spacing:22.910525px;}
.ls47{letter-spacing:23.778538px;}
.ls49{letter-spacing:23.852387px;}
.ls6d{letter-spacing:29.910005px;}
.ls3a{letter-spacing:30.924538px;}
.ls6c{letter-spacing:31.979946px;}
.ls39{letter-spacing:33.776525px;}
.ls6b{letter-spacing:37.699024px;}
.ls28{letter-spacing:46.772454px;}
.ls2c{letter-spacing:46.806538px;}
.ls25{letter-spacing:48.167767px;}
.ls60{letter-spacing:49.233460px;}
.ls5b{letter-spacing:55.890538px;}
.ls9{letter-spacing:65.388538px;}
.ls9d{letter-spacing:130.676314px;}
.ls86{letter-spacing:200.510006px;}
.ls7f{letter-spacing:206.639654px;}
.ls7a{letter-spacing:209.514248px;}
.ls78{letter-spacing:211.086334px;}
.ls89{letter-spacing:211.612097px;}
.ls8c{letter-spacing:216.570248px;}
.ls99{letter-spacing:226.884334px;}
.ls98{letter-spacing:227.476441px;}
.ls85{letter-spacing:229.880563px;}
.ls9b{letter-spacing:230.496000px;}
.ls90{letter-spacing:231.714532px;}
.ls84{letter-spacing:232.046425px;}
.ls7e{letter-spacing:232.722532px;}
.ls80{letter-spacing:235.260403px;}
.ls83{letter-spacing:240.963034px;}
.ls87{letter-spacing:245.213107px;}
.ls96{letter-spacing:251.722714px;}
.ls9e{letter-spacing:252.691085px;}
.ls8e{letter-spacing:253.659456px;}
.ls7c{letter-spacing:254.627827px;}
.ls95{letter-spacing:258.608909px;}
.ls6a{letter-spacing:378.410525px;}
.ls8a{letter-spacing:516.141850px;}
.ls92{letter-spacing:593.574532px;}
.ls7b{letter-spacing:778.193856px;}
.ls36{letter-spacing:919.109626px;}
.ls45{letter-spacing:933.455770px;}
.ls63{letter-spacing:1004.349631px;}
.ls61{letter-spacing:1015.527668px;}
.ls9a{letter-spacing:1029.808973px;}
.ls8d{letter-spacing:1041.160435px;}
.ls1a{letter-spacing:1045.355693px;}
.lsd{letter-spacing:1079.846214px;}
.ls66{letter-spacing:1101.425206px;}
.ls8{letter-spacing:1151.038954px;}
.ls3e{letter-spacing:1166.042629px;}
.ls5f{letter-spacing:1167.955448px;}
.ls1f{letter-spacing:1175.188296px;}
.ls4a{letter-spacing:1210.635227px;}
.ls2d{letter-spacing:1278.002328px;}
.ls26{letter-spacing:1287.984853px;}
.ls29{letter-spacing:1290.614980px;}
.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;}
}
.ws13{word-spacing:-40.341627px;}
.ws37{word-spacing:-38.937826px;}
.ws88{word-spacing:-36.071827px;}
.ws3{word-spacing:-34.364992px;}
.ws6d{word-spacing:-33.223278px;}
.wsf{word-spacing:-30.545332px;}
.ws2d{word-spacing:-29.881822px;}
.ws59{word-spacing:-29.015076px;}
.ws58{word-spacing:-28.955301px;}
.ws89{word-spacing:-27.641618px;}
.ws90{word-spacing:-26.872301px;}
.ws5b{word-spacing:-23.993926px;}
.ws24{word-spacing:-22.320209px;}
.ws70{word-spacing:-22.260433px;}
.ws39{word-spacing:-21.809194px;}
.ws0{word-spacing:-18.540986px;}
.ws8d{word-spacing:-18.442092px;}
.ws65{word-spacing:-16.605662px;}
.ws51{word-spacing:-15.475903px;}
.ws76{word-spacing:-14.639044px;}
.ws46{word-spacing:-14.399942px;}
.ws4a{word-spacing:-14.220615px;}
.wsc{word-spacing:-13.923026px;}
.ws86{word-spacing:-13.691693px;}
.ws60{word-spacing:-13.682635px;}
.ws3c{word-spacing:-13.622859px;}
.ws32{word-spacing:-13.514158px;}
.ws1{word-spacing:-13.442427px;}
.ws81{word-spacing:-13.422701px;}
.ws57{word-spacing:-13.204430px;}
.ws84{word-spacing:-13.099910px;}
.ws63{word-spacing:-13.084879px;}
.ws72{word-spacing:-12.845776px;}
.ws28{word-spacing:-12.546898px;}
.ws2e{word-spacing:-12.128469px;}
.ws3f{word-spacing:-11.889367px;}
.ws49{word-spacing:-11.710040px;}
.ws64{word-spacing:-11.590489px;}
.ws15{word-spacing:-11.470938px;}
.ws43{word-spacing:-11.411162px;}
.ws5c{word-spacing:-11.052508px;}
.ws6f{word-spacing:-10.932957px;}
.ws40{word-spacing:-10.873182px;}
.ws7a{word-spacing:-10.813406px;}
.ws77{word-spacing:-10.693855px;}
.ws47{word-spacing:-10.634079px;}
.ws9{word-spacing:-10.533727px;}
.ws41{word-spacing:-10.394977px;}
.ws22{word-spacing:-10.335201px;}
.ws33{word-spacing:-10.275426px;}
.ws2c{word-spacing:-10.215650px;}
.ws23{word-spacing:-10.155874px;}
.ws29{word-spacing:-10.096099px;}
.ws2b{word-spacing:-10.036323px;}
.ws10{word-spacing:-9.976548px;}
.ws31{word-spacing:-9.916772px;}
.ws21{word-spacing:-9.856996px;}
.ws1a{word-spacing:-9.797221px;}
.ws26{word-spacing:-9.737445px;}
.ws30{word-spacing:-9.677670px;}
.ws2a{word-spacing:-9.617894px;}
.ws1b{word-spacing:-9.558118px;}
.ws6{word-spacing:-9.511557px;}
.ws7{word-spacing:-9.457759px;}
.ws27{word-spacing:-9.438567px;}
.wsa{word-spacing:-9.403960px;}
.ws7d{word-spacing:-9.378792px;}
.wsb{word-spacing:-9.242565px;}
.ws8a{word-spacing:-9.216737px;}
.ws2{word-spacing:-9.205442px;}
.ws8{word-spacing:-9.188767px;}
.ws5f{word-spacing:-9.145667px;}
.wse{word-spacing:-9.081170px;}
.ws3a{word-spacing:-9.079914px;}
.ws5{word-spacing:-9.027372px;}
.ws4{word-spacing:-8.973573px;}
.ws75{word-spacing:-8.960362px;}
.ws85{word-spacing:-8.919775px;}
.ws4d{word-spacing:-8.781036px;}
.ws42{word-spacing:-8.721260px;}
.ws19{word-spacing:-8.661484px;}
.ws79{word-spacing:-8.601709px;}
.ws25{word-spacing:-8.482158px;}
.ws18{word-spacing:-8.243055px;}
.ws56{word-spacing:-8.123504px;}
.ws69{word-spacing:-8.063728px;}
.ws68{word-spacing:-8.003953px;}
.ws7b{word-spacing:-7.824626px;}
.wsd{word-spacing:-7.736210px;}
.ws4f{word-spacing:-7.705075px;}
.ws20{word-spacing:-7.525748px;}
.ws92{word-spacing:-7.467218px;}
.ws45{word-spacing:-7.465972px;}
.ws3d{word-spacing:-7.406197px;}
.ws91{word-spacing:-7.346421px;}
.ws5d{word-spacing:-7.167094px;}
.ws1c{word-spacing:-7.107319px;}
.ws3e{word-spacing:-6.868216px;}
.ws2f{word-spacing:-6.748665px;}
.ws5e{word-spacing:-6.688890px;}
.ws3b{word-spacing:-6.629114px;}
.ws71{word-spacing:-6.569338px;}
.ws6b{word-spacing:-6.509563px;}
.ws6c{word-spacing:-6.449787px;}
.ws50{word-spacing:-6.330236px;}
.ws66{word-spacing:-6.270460px;}
.ws1f{word-spacing:-6.031358px;}
.ws7c{word-spacing:-5.971582px;}
.ws44{word-spacing:-5.792256px;}
.ws1e{word-spacing:-5.433602px;}
.ws7f{word-spacing:-5.373826px;}
.ws74{word-spacing:-5.314051px;}
.ws1d{word-spacing:-5.254275px;}
.ws67{word-spacing:-5.194500px;}
.ws6a{word-spacing:-5.015173px;}
.ws4b{word-spacing:-4.656519px;}
.ws78{word-spacing:-4.596744px;}
.ws36{word-spacing:-3.455030px;}
.ws54{word-spacing:-3.335478px;}
.ws7e{word-spacing:-1.667739px;}
.ws73{word-spacing:-0.771105px;}
.ws4e{word-spacing:-0.059776px;}
.ws8b{word-spacing:-0.053798px;}
.ws5a{word-spacing:-0.047820px;}
.ws34{word-spacing:-0.041843px;}
.ws12{word-spacing:0.000000px;}
.ws35{word-spacing:0.011955px;}
.ws48{word-spacing:0.310833px;}
.ws6e{word-spacing:3.239838px;}
.ws16{word-spacing:3.293636px;}
.ws62{word-spacing:3.359389px;}
.ws53{word-spacing:16.243371px;}
.ws83{word-spacing:16.629572px;}
.ws11{word-spacing:16.880672px;}
.ws38{word-spacing:19.550348px;}
.ws52{word-spacing:19.555371px;}
.ws14{word-spacing:20.927438px;}
.ws55{word-spacing:21.062860px;}
.ws93{word-spacing:21.250368px;}
.ws82{word-spacing:23.461582px;}
.ws61{word-spacing:30.760524px;}
.ws87{word-spacing:39.891514px;}
.ws17{word-spacing:40.355973px;}
.ws8f{word-spacing:130.083878px;}
.ws8e{word-spacing:168.289805px;}
.ws80{word-spacing:769.920538px;}
.ws8c{word-spacing:1217.430893px;}
.ws4c{word-spacing:1235.896395px;}
._28{margin-left:-16.639027px;}
._0{margin-left:-9.399608px;}
._1e{margin-left:-6.671002px;}
._7{margin-left:-5.194522px;}
._21{margin-left:-4.175920px;}
._1{margin-left:-3.098772px;}
._2{margin-left:-1.912819px;}
._3{width:1.966618px;}
._a{width:3.517201px;}
._1f{width:4.835039px;}
._25{width:7.176144px;}
._24{width:8.830272px;}
._8{width:15.039629px;}
._6{width:16.091674px;}
._1c{width:18.231558px;}
._2a{width:19.440539px;}
._20{width:20.861706px;}
._22{width:22.176769px;}
._5{width:23.580379px;}
._4{width:24.908659px;}
._1a{width:26.241488px;}
._19{width:27.437000px;}
._9{width:29.451648px;}
._18{width:31.322414px;}
._1b{width:34.556274px;}
._27{width:37.186400px;}
._29{width:38.369958px;}
._16{width:40.766959px;}
._23{width:42.745531px;}
._d{width:55.292430px;}
._37{width:71.904538px;}
._1d{width:80.697600px;}
._34{width:116.628979px;}
._26{width:129.488831px;}
._30{width:333.556032px;}
._38{width:381.678113px;}
._32{width:409.776461px;}
._3c{width:443.597683px;}
._2f{width:486.600576px;}
._3d{width:514.121434px;}
._3b{width:544.302336px;}
._35{width:783.436224px;}
._2b{width:804.450113px;}
._3a{width:825.345178px;}
._b{width:830.352061px;}
._36{width:866.309683px;}
._33{width:897.576417px;}
._2d{width:937.221926px;}
._31{width:942.984307px;}
._2e{width:1148.574305px;}
._39{width:1352.085312px;}
._2c{width:1474.398950px;}
._12{width:1638.968058px;}
._f{width:1915.509102px;}
._10{width:1944.550484px;}
._11{width:2057.473013px;}
._e{width:2241.575906px;}
._17{width:2273.218101px;}
._c{width:2434.621183px;}
._14{width:2484.832688px;}
._13{width:2500.093398px;}
._15{width:2591.825034px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y16{bottom:55.935000px;}
.y57{bottom:85.822500px;}
.ybb{bottom:91.800000px;}
.y56{bottom:93.546000px;}
.y118{bottom:97.717500px;}
.ye8{bottom:101.419500px;}
.y55{bottom:103.797000px;}
.y8b{bottom:104.179500px;}
.ye7{bottom:105.114000px;}
.yba{bottom:109.734000px;}
.y8a{bottom:122.112000px;}
.ye6{bottom:123.046500px;}
.yb9{bottom:127.666500px;}
.y117{bottom:130.594500px;}
.y54{bottom:136.920000px;}
.y89{bottom:140.044500px;}
.ye5{bottom:140.979000px;}
.yb8{bottom:145.599000px;}
.y11e{bottom:146.476500px;}
.y116{bottom:148.527000px;}
.y53{bottom:154.852500px;}
.y88{bottom:157.977000px;}
.yb7{bottom:163.531500px;}
.y115{bottom:166.459500px;}
.ye4{bottom:167.878500px;}
.y52{bottom:172.785000px;}
.y11d{bottom:180.264000px;}
.y87{bottom:182.343000px;}
.ye3{bottom:185.811000px;}
.yb6{bottom:187.897500px;}
.y51{bottom:190.717500px;}
.y11c{bottom:198.196500px;}
.y114{bottom:199.336500px;}
.y50{bottom:208.650000px;}
.y86{bottom:216.129000px;}
.ye2{bottom:218.688000px;}
.yb5{bottom:221.004000px;}
.y136{bottom:221.590500px;}
.y4f{bottom:226.582500px;}
.y113{bottom:232.213500px;}
.y85{bottom:234.061500px;}
.yb4{bottom:238.936500px;}
.y4e{bottom:244.516500px;}
.y112{bottom:250.146000px;}
.ye1{bottom:251.563500px;}
.y84{bottom:251.995500px;}
.y135{bottom:252.657000px;}
.y165{bottom:254.485500px;}
.yb3{bottom:256.869000px;}
.y4d{bottom:263.977500px;}
.y111{bottom:268.078500px;}
.ye0{bottom:269.497500px;}
.y83{bottom:269.928000px;}
.y164{bottom:272.661000px;}
.yb2{bottom:274.803000px;}
.y4c{bottom:281.836500px;}
.y110{bottom:286.011000px;}
.y82{bottom:287.860500px;}
.y163{bottom:290.836500px;}
.ydf{bottom:292.254000px;}
.yb1{bottom:292.735500px;}
.y4b{bottom:301.926000px;}
.y10f{bottom:303.945000px;}
.y81{bottom:305.793000px;}
.y162{bottom:309.012000px;}
.yb0{bottom:310.668000px;}
.yde{bottom:319.836000px;}
.y4a{bottom:319.860000px;}
.y10e{bottom:321.877500px;}
.y80{bottom:323.725500px;}
.y161{bottom:327.186000px;}
.yaf{bottom:328.600500px;}
.ydd{bottom:337.768500px;}
.y49{bottom:337.792500px;}
.y10d{bottom:339.810000px;}
.y7f{bottom:341.658000px;}
.y160{bottom:345.361500px;}
.yae{bottom:346.533000px;}
.ydc{bottom:355.701000px;}
.y48{bottom:355.725000px;}
.y7e{bottom:359.592000px;}
.y15f{bottom:361.800000px;}
.yad{bottom:364.467000px;}
.y10a{bottom:370.650000px;}
.y10c{bottom:371.347500px;}
.ydb{bottom:373.633500px;}
.y47{bottom:373.657500px;}
.y7d{bottom:377.524500px;}
.y15e{bottom:379.975500px;}
.yac{bottom:382.399500px;}
.y109{bottom:389.205000px;}
.yda{bottom:391.567500px;}
.y46{bottom:391.590000px;}
.y7c{bottom:395.457000px;}
.yab{bottom:400.332000px;}
.y15d{bottom:402.846000px;}
.y10b{bottom:403.402500px;}
.yd9{bottom:409.500000px;}
.y45{bottom:409.522500px;}
.y7b{bottom:413.389500px;}
.y12c{bottom:418.984500px;}
.y132{bottom:422.820000px;}
.y108{bottom:424.240500px;}
.yaa{bottom:425.484000px;}
.yd8{bottom:427.432500px;}
.y44{bottom:427.456500px;}
.y7a{bottom:431.322000px;}
.ya9{bottom:435.735000px;}
.y15c{bottom:436.633500px;}
.y107{bottom:442.173000px;}
.yd7{bottom:445.365000px;}
.y43{bottom:445.389000px;}
.y79{bottom:449.254500px;}
.y127{bottom:452.293500px;}
.y12a{bottom:453.040500px;}
.y15b{bottom:454.566000px;}
.y106{bottom:460.105500px;}
.yd6{bottom:463.297500px;}
.y133{bottom:466.326000px;}
.y78{bottom:467.188500px;}
.y42{bottom:469.753500px;}
.y15a{bottom:472.498500px;}
.ya8{bottom:473.904000px;}
.y105{bottom:478.038000px;}
.yd5{bottom:481.230000px;}
.y77{bottom:485.121000px;}
.y129{bottom:488.226000px;}
.y159{bottom:490.431000px;}
.ya7{bottom:491.836500px;}
.y15{bottom:494.919000px;}
.y104{bottom:495.970500px;}
.yd4{bottom:499.164000px;}
.y41{bottom:500.974500px;}
.y76{bottom:503.053500px;}
.y158{bottom:508.363500px;}
.ya6{bottom:509.769000px;}
.y14{bottom:512.851500px;}
.y103{bottom:513.904500px;}
.yd3{bottom:517.096500px;}
.y40{bottom:518.907000px;}
.y75{bottom:520.986000px;}
.y157{bottom:526.296000px;}
.ya5{bottom:527.701500px;}
.y102{bottom:531.837000px;}
.yd2{bottom:535.029000px;}
.y3f{bottom:536.839500px;}
.y74{bottom:538.918500px;}
.ya4{bottom:545.634000px;}
.y128{bottom:548.949000px;}
.y13{bottom:550.083000px;}
.y156{bottom:550.662000px;}
.yd1{bottom:552.961500px;}
.y3e{bottom:554.773500px;}
.y73{bottom:556.851000px;}
.y101{bottom:562.677000px;}
.y12{bottom:566.520000px;}
.ya3{bottom:570.786000px;}
.yd0{bottom:570.894000px;}
.y3d{bottom:572.706000px;}
.y72{bottom:574.785000px;}
.ya2{bottom:581.037000px;}
.y100{bottom:581.232000px;}
.y11{bottom:582.958500px;}
.ycf{bottom:588.826500px;}
.y3c{bottom:590.638500px;}
.y71{bottom:592.717500px;}
.y10{bottom:599.397000px;}
.y3b{bottom:608.571000px;}
.yce{bottom:609.580500px;}
.y70{bottom:610.650000px;}
.yf{bottom:615.835500px;}
.yff{bottom:617.098500px;}
.ya1{bottom:619.206000px;}
.ycd{bottom:619.831500px;}
.y3a{bottom:626.503500px;}
.y6f{bottom:628.582500px;}
.ye{bottom:632.274000px;}
.y155{bottom:633.367500px;}
.yfe{bottom:635.031000px;}
.ya0{bottom:639.012000px;}
.y134{bottom:640.437000px;}
.ycc{bottom:640.774500px;}
.y39{bottom:644.436000px;}
.y12b{bottom:644.857500px;}
.y6e{bottom:646.515000px;}
.yd{bottom:648.712500px;}
.y9f{bottom:649.263000px;}
.y154{bottom:649.804500px;}
.yfd{bottom:652.963500px;}
.y38{bottom:662.370000px;}
.y6d{bottom:664.447500px;}
.yc{bottom:665.151000px;}
.y153{bottom:666.243000px;}
.ycb{bottom:669.790500px;}
.y13c{bottom:670.086000px;}
.yfc{bottom:670.896000px;}
.y9e{bottom:674.067000px;}
.y37{bottom:680.302500px;}
.yb{bottom:681.589500px;}
.y6c{bottom:682.381500px;}
.y152{bottom:682.681500px;}
.y13b{bottom:686.524500px;}
.yca{bottom:687.706500px;}
.y126{bottom:688.813500px;}
.y9d{bottom:691.999500px;}
.y131{bottom:693.069000px;}
.yfb{bottom:695.262000px;}
.ya{bottom:698.028000px;}
.y36{bottom:698.235000px;}
.y151{bottom:699.120000px;}
.y6b{bottom:700.314000px;}
.y130{bottom:709.507500px;}
.y9c{bottom:709.932000px;}
.y9{bottom:714.466500px;}
.y150{bottom:715.558500px;}
.y35{bottom:716.167500px;}
.y6a{bottom:718.246500px;}
.y125{bottom:722.601000px;}
.y13a{bottom:722.865000px;}
.yc9{bottom:724.113000px;}
.yfa{bottom:729.048000px;}
.y8{bottom:730.903500px;}
.y14f{bottom:731.997000px;}
.y34{bottom:734.100000px;}
.y69{bottom:736.179000px;}
.y124{bottom:740.533500px;}
.y9b{bottom:741.229500px;}
.yf9{bottom:746.980500px;}
.y7{bottom:747.342000px;}
.y14e{bottom:748.435500px;}
.yc7{bottom:750.843000px;}
.y33{bottom:752.032500px;}
.y21{bottom:752.524500px;}
.y68{bottom:754.111500px;}
.y139{bottom:758.304000px;}
.y123{bottom:758.466000px;}
.y6{bottom:763.780500px;}
.y14d{bottom:764.874000px;}
.yf8{bottom:764.914500px;}
.yc8{bottom:768.955500px;}
.y32{bottom:769.966500px;}
.yc6{bottom:771.204000px;}
.y67{bottom:772.044000px;}
.y9a{bottom:772.527000px;}
.y122{bottom:776.398500px;}
.y14c{bottom:781.312500px;}
.yf7{bottom:782.847000px;}
.y20{bottom:785.398500px;}
.y31{bottom:787.899000px;}
.y66{bottom:789.978000px;}
.y99{bottom:790.461000px;}
.y121{bottom:794.331000px;}
.y5{bottom:795.163500px;}
.y14b{bottom:797.751000px;}
.yc5{bottom:804.988500px;}
.y30{bottom:805.831500px;}
.y11b{bottom:807.910500px;}
.y98{bottom:808.393500px;}
.yf6{bottom:812.029500px;}
.y120{bottom:812.263500px;}
.y14a{bottom:814.188000px;}
.y65{bottom:814.342500px;}
.yf5{bottom:815.724000px;}
.y1f{bottom:818.271000px;}
.yc4{bottom:822.921000px;}
.y2f{bottom:823.764000px;}
.y97{bottom:826.326000px;}
.y11f{bottom:830.197500px;}
.y149{bottom:830.626500px;}
.y11a{bottom:832.275000px;}
.y12e{bottom:839.706000px;}
.yc3{bottom:840.855000px;}
.y2e{bottom:841.696500px;}
.y96{bottom:844.258500px;}
.y148{bottom:847.065000px;}
.y64{bottom:848.130000px;}
.yf4{bottom:848.599500px;}
.y1e{bottom:851.143500px;}
.yc2{bottom:858.787500px;}
.y2d{bottom:859.629000px;}
.y95{bottom:862.191000px;}
.y147{bottom:863.503500px;}
.y63{bottom:866.062500px;}
.yf3{bottom:871.804500px;}
.y4{bottom:875.043000px;}
.yf2{bottom:875.499000px;}
.yc1{bottom:876.720000px;}
.y2c{bottom:877.563000px;}
.y94{bottom:880.123500px;}
.y146{bottom:881.074500px;}
.y62{bottom:883.995000px;}
.y1d{bottom:884.017500px;}
.yf1{bottom:893.431500px;}
.yc0{bottom:894.652500px;}
.y2b{bottom:895.495500px;}
.y145{bottom:897.513000px;}
.y93{bottom:898.057500px;}
.y61{bottom:901.927500px;}
.y3{bottom:901.942500px;}
.yf0{bottom:911.365500px;}
.y2a{bottom:913.428000px;}
.y144{bottom:913.951500px;}
.y92{bottom:915.990000px;}
.y1c{bottom:916.890000px;}
.ybf{bottom:917.778000px;}
.y60{bottom:919.860000px;}
.y143{bottom:930.390000px;}
.y29{bottom:931.360500px;}
.ybe{bottom:931.941000px;}
.y91{bottom:933.922500px;}
.yef{bottom:934.122000px;}
.ybd{bottom:935.635500px;}
.y12d{bottom:937.501500px;}
.y5f{bottom:937.794000px;}
.y142{bottom:946.827000px;}
.y28{bottom:949.293000px;}
.y1b{bottom:949.762500px;}
.y90{bottom:951.855000px;}
.y137{bottom:953.605500px;}
.y2{bottom:954.241500px;}
.y5e{bottom:955.726500px;}
.yee{bottom:961.704000px;}
.y141{bottom:963.265500px;}
.y27{bottom:967.225500px;}
.y8f{bottom:969.787500px;}
.y5d{bottom:973.659000px;}
.yed{bottom:979.636500px;}
.y140{bottom:979.704000px;}
.y1a{bottom:982.636500px;}
.y26{bottom:985.159500px;}
.y1{bottom:987.117000px;}
.ybc{bottom:987.360000px;}
.y5c{bottom:991.591500px;}
.y13f{bottom:996.142500px;}
.yec{bottom:997.569000px;}
.y8e{bottom:1001.086500px;}
.y25{bottom:1003.092000px;}
.y5b{bottom:1009.524000px;}
.y13e{bottom:1012.581000px;}
.yeb{bottom:1015.501500px;}
.y19{bottom:1015.509000px;}
.y24{bottom:1021.024500px;}
.y5a{bottom:1027.456500px;}
.y8d{bottom:1032.384000px;}
.y13d{bottom:1036.521000px;}
.y23{bottom:1038.957000px;}
.yea{bottom:1044.684000px;}
.y59{bottom:1045.390500px;}
.ye9{bottom:1048.378500px;}
.y18{bottom:1048.383000px;}
.y8c{bottom:1053.684000px;}
.y22{bottom:1056.889500px;}
.y138{bottom:1060.753500px;}
.y58{bottom:1063.323000px;}
.y119{bottom:1079.014500px;}
.y12f{bottom:1080.012000px;}
.y17{bottom:1081.255500px;}
.h21{height:0.000000px;}
.hb{height:29.415488px;}
.h19{height:31.382100px;}
.h8{height:36.917503px;}
.h23{height:37.712678px;}
.h6{height:40.348800px;}
.h5{height:40.402598px;}
.hf{height:41.484266px;}
.h3{height:41.544042px;}
.h4{height:41.902696px;}
.h9{height:44.831700px;}
.h22{height:44.832000px;}
.h7{height:44.891476px;}
.h13{height:45.833296px;}
.h24{height:47.350205px;}
.h25{height:48.327331px;}
.h1a{height:48.650100px;}
.h15{height:48.821296px;}
.h1e{height:48.827296px;}
.h2{height:50.283571px;}
.h17{height:53.072100px;}
.ha{height:56.784000px;}
.h1b{height:56.790000px;}
.h1d{height:59.609700px;}
.h14{height:61.817476px;}
.h20{height:63.599296px;}
.h1f{height:63.605296px;}
.h16{height:71.568000px;}
.h1{height:72.511265px;}
.h10{height:81.918266px;}
.h12{height:81.924266px;}
.h1c{height:85.265700px;}
.hc{height:85.271700px;}
.h11{height:85.895476px;}
.he{height:87.377296px;}
.hd{height:97.794000px;}
.h18{height:140.306100px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:90.991500px;}
.x2{left:113.226000px;}
.x26{left:135.556500px;}
.x68{left:137.827500px;}
.x53{left:150.196500px;}
.x27{left:159.814500px;}
.x4e{left:162.753000px;}
.x83{left:165.676500px;}
.xa2{left:169.512000px;}
.x74{left:170.725500px;}
.x4f{left:180.874500px;}
.x84{left:184.195500px;}
.x69{left:198.270000px;}
.x1{left:200.085000px;}
.x56{left:202.912500px;}
.x1a{left:209.805000px;}
.x57{left:210.985500px;}
.x8c{left:215.796000px;}
.x77{left:220.357500px;}
.x8d{left:231.111000px;}
.x78{left:234.019500px;}
.x1b{left:240.490500px;}
.x11{left:242.628000px;}
.x70{left:254.491500px;}
.x38{left:264.325500px;}
.x50{left:270.313500px;}
.x81{left:271.531500px;}
.x39{left:277.909500px;}
.x8e{left:279.204000px;}
.x12{left:285.256500px;}
.x51{left:288.397500px;}
.x13{left:291.102000px;}
.x9e{left:293.128500px;}
.x8f{left:294.142500px;}
.x80{left:296.212500px;}
.x64{left:297.847500px;}
.x3b{left:299.769000px;}
.x63{left:302.364000px;}
.xd{left:304.203000px;}
.x14{left:310.690500px;}
.x2b{left:312.546000px;}
.x3c{left:314.992500px;}
.x3a{left:316.581000px;}
.x28{left:333.361500px;}
.x6a{left:338.923500px;}
.x15{left:341.739000px;}
.x3{left:343.344000px;}
.x6b{left:345.892500px;}
.x29{left:347.277000px;}
.x7c{left:348.774000px;}
.x16{left:350.794500px;}
.x54{left:355.197000px;}
.x17{left:360.105000px;}
.x55{left:367.941000px;}
.x3f{left:370.488000px;}
.x2a{left:377.136000px;}
.x24{left:379.110000px;}
.xa3{left:380.217000px;}
.x4{left:381.411000px;}
.x9b{left:384.495000px;}
.xf{left:388.375500px;}
.xa4{left:390.367500px;}
.x90{left:391.966500px;}
.x96{left:395.634000px;}
.x20{left:396.906000px;}
.x9d{left:398.352000px;}
.x41{left:402.937500px;}
.xa1{left:406.347000px;}
.x6c{left:407.709000px;}
.x85{left:409.282500px;}
.x5{left:410.740500px;}
.x79{left:414.763500px;}
.x86{left:417.061500px;}
.xe{left:419.607000px;}
.x6{left:421.336500px;}
.x7d{left:423.417000px;}
.x42{left:424.689000px;}
.x3d{left:427.093500px;}
.x1c{left:429.238500px;}
.x58{left:431.139000px;}
.x6d{left:433.273500px;}
.x7{left:434.328000px;}
.x40{left:435.444000px;}
.x9f{left:436.588500px;}
.x3e{left:438.843000px;}
.x6e{left:440.287500px;}
.x1d{left:442.014000px;}
.x97{left:444.762000px;}
.x82{left:447.457500px;}
.x99{left:456.220500px;}
.x43{left:457.827000px;}
.x59{left:460.638000px;}
.x9c{left:461.928000px;}
.x5b{left:463.816500px;}
.x21{left:465.691500px;}
.x65{left:467.416500px;}
.x52{left:471.297000px;}
.x8{left:477.078000px;}
.x44{left:478.471500px;}
.x76{left:479.556000px;}
.x25{left:481.803000px;}
.x98{left:485.823000px;}
.x9{left:491.256000px;}
.xa{left:496.663500px;}
.x10{left:498.918000px;}
.x45{left:500.544000px;}
.x87{left:505.206000px;}
.x22{left:511.186500px;}
.x7e{left:512.320500px;}
.xb{left:514.827000px;}
.x23{left:518.967000px;}
.x7f{left:525.078000px;}
.x9a{left:527.946000px;}
.x6f{left:536.784000px;}
.x4a{left:538.954500px;}
.x4b{left:547.029000px;}
.x30{left:549.795000px;}
.x66{left:551.391000px;}
.x67{left:562.200000px;}
.x31{left:563.839500px;}
.x1e{left:568.311000px;}
.x34{left:573.673500px;}
.x1f{left:579.120000px;}
.x48{left:589.623000px;}
.x5a{left:591.778500px;}
.x5d{left:601.492500px;}
.x49{left:602.511000px;}
.x5e{left:614.026500px;}
.x35{left:616.335000px;}
.xa0{left:620.052000px;}
.x36{left:622.227000px;}
.x5f{left:631.258500px;}
.x37{left:641.815500px;}
.x60{left:646.804500px;}
.x8a{left:648.691500px;}
.x61{left:652.732500px;}
.x93{left:656.776500px;}
.x7a{left:663.435000px;}
.x8b{left:666.076500px;}
.x2c{left:669.706500px;}
.x62{left:672.321000px;}
.x7b{left:675.862500px;}
.x2d{left:677.179500px;}
.x91{left:686.934000px;}
.x75{left:688.758000px;}
.x2e{left:690.636000px;}
.x71{left:696.447000px;}
.x92{left:698.775000px;}
.x18{left:701.409000px;}
.x94{left:705.192000px;}
.x72{left:709.779000px;}
.x2f{left:711.439500px;}
.x19{left:714.151500px;}
.x95{left:724.779000px;}
.x46{left:744.400500px;}
.x88{left:746.839500px;}
.x47{left:757.899000px;}
.x89{left:761.919000px;}
.x4c{left:797.989500px;}
.x32{left:811.038000px;}
.x73{left:814.056000px;}
.x4d{left:816.106500px;}
.x5c{left:818.769000px;}
.x33{left:824.209500px;}
@media print{
.v15{vertical-align:-15.941333pt;}
.v1{vertical-align:-7.973333pt;}
.v13{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:5.168000pt;}
.va{vertical-align:7.077333pt;}
.v12{vertical-align:7.968000pt;}
.v5{vertical-align:10.624000pt;}
.vc{vertical-align:13.136000pt;}
.v9{vertical-align:15.045333pt;}
.v8{vertical-align:19.280000pt;}
.v16{vertical-align:20.314667pt;}
.vb{vertical-align:21.936000pt;}
.v11{vertical-align:27.973333pt;}
.v6{vertical-align:34.272000pt;}
.v3{vertical-align:35.946667pt;}
.v14{vertical-align:39.850667pt;}
.v17{vertical-align:40.901333pt;}
.v2{vertical-align:50.474667pt;}
.v7{vertical-align:56.208000pt;}
.ve{vertical-align:63.616000pt;}
.vf{vertical-align:77.536000pt;}
.v4{vertical-align:86.928000pt;}
.v10{vertical-align:96.821333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.000055pt;}
.lsa{letter-spacing:0.000267pt;}
.ls1b{letter-spacing:0.000394pt;}
.ls48{letter-spacing:0.000681pt;}
.ls70{letter-spacing:0.000696pt;}
.ls20{letter-spacing:0.000996pt;}
.ls67{letter-spacing:0.001183pt;}
.ls88{letter-spacing:0.001287pt;}
.ls8f{letter-spacing:0.001495pt;}
.ls72{letter-spacing:0.001509pt;}
.ls11{letter-spacing:0.001696pt;}
.ls3{letter-spacing:0.002345pt;}
.ls6e{letter-spacing:0.002557pt;}
.ls2{letter-spacing:0.002963pt;}
.ls77{letter-spacing:0.003176pt;}
.ls35{letter-spacing:0.003845pt;}
.ls13{letter-spacing:0.003892pt;}
.ls7d{letter-spacing:0.004526pt;}
.ls8b{letter-spacing:0.004714pt;}
.ls94{letter-spacing:0.004768pt;}
.ls97{letter-spacing:0.005190pt;}
.ls59{letter-spacing:0.005388pt;}
.ls57{letter-spacing:0.007921pt;}
.ls91{letter-spacing:0.008083pt;}
.ls4e{letter-spacing:0.008784pt;}
.ls73{letter-spacing:0.009854pt;}
.ls50{letter-spacing:0.010390pt;}
.ls55{letter-spacing:0.015723pt;}
.ls52{letter-spacing:0.016272pt;}
.ls68{letter-spacing:0.018065pt;}
.ls3f{letter-spacing:0.022593pt;}
.ls4b{letter-spacing:0.371937pt;}
.ls3c{letter-spacing:0.407455pt;}
.ls5d{letter-spacing:1.153002pt;}
.ls5c{letter-spacing:1.338970pt;}
.ls56{letter-spacing:1.434614pt;}
.ls32{letter-spacing:1.474963pt;}
.ls53{letter-spacing:1.480296pt;}
.ls54{letter-spacing:1.480784pt;}
.ls37{letter-spacing:1.487748pt;}
.ls2f{letter-spacing:1.494278pt;}
.ls71{letter-spacing:1.721549pt;}
.ls3b{letter-spacing:1.910015pt;}
.ls4c{letter-spacing:1.912819pt;}
.ls15{letter-spacing:2.606231pt;}
.ls1c{letter-spacing:2.652911pt;}
.ls65{letter-spacing:2.654441pt;}
.ls19{letter-spacing:2.655095pt;}
.ls43{letter-spacing:2.656546pt;}
.ls16{letter-spacing:2.657316pt;}
.ls1e{letter-spacing:2.658245pt;}
.lsc{letter-spacing:2.660920pt;}
.ls38{letter-spacing:2.953897pt;}
.ls18{letter-spacing:3.797728pt;}
.ls5e{letter-spacing:3.990244pt;}
.ls7{letter-spacing:5.727814pt;}
.ls44{letter-spacing:8.873356pt;}
.ls82{letter-spacing:10.846186pt;}
.ls81{letter-spacing:10.848473pt;}
.ls17{letter-spacing:11.460065pt;}
.lsb{letter-spacing:11.508920pt;}
.ls6f{letter-spacing:11.510347pt;}
.ls76{letter-spacing:11.511415pt;}
.ls3d{letter-spacing:11.650245pt;}
.ls42{letter-spacing:11.795718pt;}
.ls5{letter-spacing:13.708538pt;}
.ls6{letter-spacing:14.443967pt;}
.ls34{letter-spacing:14.453812pt;}
.ls4f{letter-spacing:14.460911pt;}
.ls51{letter-spacing:14.466245pt;}
.ls22{letter-spacing:14.718081pt;}
.ls75{letter-spacing:14.757812pt;}
.ls1d{letter-spacing:14.771215pt;}
.ls0{letter-spacing:15.047549pt;}
.ls33{letter-spacing:15.798244pt;}
.ls21{letter-spacing:16.099562pt;}
.ls27{letter-spacing:16.258963pt;}
.ls93{letter-spacing:16.354714pt;}
.ls79{letter-spacing:16.402534pt;}
.ls24{letter-spacing:16.684034pt;}
.ls10{letter-spacing:17.109105pt;}
.lsf{letter-spacing:17.374774pt;}
.ls14{letter-spacing:17.410245pt;}
.ls5a{letter-spacing:17.411774pt;}
.ls46{letter-spacing:17.413880pt;}
.ls2b{letter-spacing:17.415578pt;}
.ls23{letter-spacing:17.693578pt;}
.ls12{letter-spacing:18.012381pt;}
.ls9c{letter-spacing:18.076262pt;}
.ls4{letter-spacing:18.747577pt;}
.ls31{letter-spacing:18.752910pt;}
.ls74{letter-spacing:19.034964pt;}
.ls69{letter-spacing:19.035139pt;}
.ls30{letter-spacing:19.181326pt;}
.ls62{letter-spacing:19.393861pt;}
.ls4d{letter-spacing:19.606397pt;}
.lse{letter-spacing:19.659531pt;}
.ls2e{letter-spacing:19.925200pt;}
.ls40{letter-spacing:20.360172pt;}
.ls58{letter-spacing:20.361108pt;}
.ls41{letter-spacing:20.363213pt;}
.ls2a{letter-spacing:20.364911pt;}
.ls47{letter-spacing:21.136479pt;}
.ls49{letter-spacing:21.202122pt;}
.ls6d{letter-spacing:26.586671pt;}
.ls3a{letter-spacing:27.488479pt;}
.ls6c{letter-spacing:28.426619pt;}
.ls39{letter-spacing:30.023578pt;}
.ls6b{letter-spacing:33.510244pt;}
.ls28{letter-spacing:41.575515pt;}
.ls2c{letter-spacing:41.605812pt;}
.ls25{letter-spacing:42.815793pt;}
.ls60{letter-spacing:43.763075pt;}
.ls5b{letter-spacing:49.680479pt;}
.ls9{letter-spacing:58.123145pt;}
.ls9d{letter-spacing:116.156723pt;}
.ls86{letter-spacing:178.231117pt;}
.ls7f{letter-spacing:183.679693pt;}
.ls7a{letter-spacing:186.234887pt;}
.ls78{letter-spacing:187.632297pt;}
.ls89{letter-spacing:188.099642pt;}
.ls8c{letter-spacing:192.506887pt;}
.ls99{letter-spacing:201.674964pt;}
.ls98{letter-spacing:202.201281pt;}
.ls85{letter-spacing:204.338278pt;}
.ls9b{letter-spacing:204.885333pt;}
.ls90{letter-spacing:205.968473pt;}
.ls84{letter-spacing:206.263489pt;}
.ls7e{letter-spacing:206.864473pt;}
.ls80{letter-spacing:209.120358pt;}
.ls83{letter-spacing:214.189363pt;}
.ls87{letter-spacing:217.967206pt;}
.ls96{letter-spacing:223.753523pt;}
.ls9e{letter-spacing:224.614298pt;}
.ls8e{letter-spacing:225.475072pt;}
.ls7c{letter-spacing:226.335846pt;}
.ls95{letter-spacing:229.874586pt;}
.ls6a{letter-spacing:336.364911pt;}
.ls8a{letter-spacing:458.792755pt;}
.ls92{letter-spacing:527.621806pt;}
.ls7b{letter-spacing:691.727872pt;}
.ls36{letter-spacing:816.986334pt;}
.ls45{letter-spacing:829.738462pt;}
.ls63{letter-spacing:892.755228pt;}
.ls61{letter-spacing:902.691261pt;}
.ls9a{letter-spacing:915.385754pt;}
.ls8d{letter-spacing:925.475942pt;}
.ls1a{letter-spacing:929.205060pt;}
.lsd{letter-spacing:959.863301pt;}
.ls66{letter-spacing:979.044627pt;}
.ls8{letter-spacing:1023.145737pt;}
.ls3e{letter-spacing:1036.482337pt;}
.ls5f{letter-spacing:1038.182621pt;}
.ls1f{letter-spacing:1044.611819pt;}
.ls4a{letter-spacing:1076.120202pt;}
.ls2d{letter-spacing:1136.002069pt;}
.ls26{letter-spacing:1144.875425pt;}
.ls29{letter-spacing:1147.213315pt;}
.ws13{word-spacing:-35.859224pt;}
.ws37{word-spacing:-34.611401pt;}
.ws88{word-spacing:-32.063846pt;}
.ws3{word-spacing:-30.546660pt;}
.ws6d{word-spacing:-29.531803pt;}
.wsf{word-spacing:-27.151406pt;}
.ws2d{word-spacing:-26.561620pt;}
.ws59{word-spacing:-25.791179pt;}
.ws58{word-spacing:-25.738045pt;}
.ws89{word-spacing:-24.570327pt;}
.ws90{word-spacing:-23.886490pt;}
.ws5b{word-spacing:-21.327934pt;}
.ws24{word-spacing:-19.840186pt;}
.ws70{word-spacing:-19.787052pt;}
.ws39{word-spacing:-19.385950pt;}
.ws0{word-spacing:-16.480876pt;}
.ws8d{word-spacing:-16.392970pt;}
.ws65{word-spacing:-14.760588pt;}
.ws51{word-spacing:-13.756358pt;}
.ws76{word-spacing:-13.012484pt;}
.ws46{word-spacing:-12.799948pt;}
.ws4a{word-spacing:-12.640547pt;}
.wsc{word-spacing:-12.376023pt;}
.ws86{word-spacing:-12.170394pt;}
.ws60{word-spacing:-12.162342pt;}
.ws3c{word-spacing:-12.109208pt;}
.ws32{word-spacing:-12.012585pt;}
.ws1{word-spacing:-11.948824pt;}
.ws81{word-spacing:-11.931290pt;}
.ws57{word-spacing:-11.737271pt;}
.ws84{word-spacing:-11.644365pt;}
.ws63{word-spacing:-11.631003pt;}
.ws72{word-spacing:-11.418468pt;}
.ws28{word-spacing:-11.152799pt;}
.ws2e{word-spacing:-10.780862pt;}
.ws3f{word-spacing:-10.568326pt;}
.ws49{word-spacing:-10.408924pt;}
.ws64{word-spacing:-10.302657pt;}
.ws15{word-spacing:-10.196389pt;}
.ws43{word-spacing:-10.143255pt;}
.ws5c{word-spacing:-9.824452pt;}
.ws6f{word-spacing:-9.718184pt;}
.ws40{word-spacing:-9.665050pt;}
.ws7a{word-spacing:-9.611916pt;}
.ws77{word-spacing:-9.505649pt;}
.ws47{word-spacing:-9.452515pt;}
.ws9{word-spacing:-9.363313pt;}
.ws41{word-spacing:-9.239979pt;}
.ws22{word-spacing:-9.186846pt;}
.ws33{word-spacing:-9.133712pt;}
.ws2c{word-spacing:-9.080578pt;}
.ws23{word-spacing:-9.027444pt;}
.ws29{word-spacing:-8.974310pt;}
.ws2b{word-spacing:-8.921176pt;}
.ws10{word-spacing:-8.868042pt;}
.ws31{word-spacing:-8.814908pt;}
.ws21{word-spacing:-8.761775pt;}
.ws1a{word-spacing:-8.708641pt;}
.ws26{word-spacing:-8.655507pt;}
.ws30{word-spacing:-8.602373pt;}
.ws2a{word-spacing:-8.549239pt;}
.ws1b{word-spacing:-8.496105pt;}
.ws6{word-spacing:-8.454717pt;}
.ws7{word-spacing:-8.406897pt;}
.ws27{word-spacing:-8.389838pt;}
.wsa{word-spacing:-8.359076pt;}
.ws7d{word-spacing:-8.336704pt;}
.wsb{word-spacing:-8.215613pt;}
.ws8a{word-spacing:-8.192655pt;}
.ws2{word-spacing:-8.182615pt;}
.ws8{word-spacing:-8.167793pt;}
.ws5f{word-spacing:-8.129482pt;}
.wse{word-spacing:-8.072151pt;}
.ws3a{word-spacing:-8.071034pt;}
.ws5{word-spacing:-8.024330pt;}
.ws4{word-spacing:-7.976509pt;}
.ws75{word-spacing:-7.964767pt;}
.ws85{word-spacing:-7.928689pt;}
.ws4d{word-spacing:-7.805365pt;}
.ws42{word-spacing:-7.752231pt;}
.ws19{word-spacing:-7.699097pt;}
.ws79{word-spacing:-7.645963pt;}
.ws25{word-spacing:-7.539696pt;}
.ws18{word-spacing:-7.327160pt;}
.ws56{word-spacing:-7.220892pt;}
.ws69{word-spacing:-7.167759pt;}
.ws68{word-spacing:-7.114625pt;}
.ws7b{word-spacing:-6.955223pt;}
.wsd{word-spacing:-6.876631pt;}
.ws4f{word-spacing:-6.848955pt;}
.ws20{word-spacing:-6.689554pt;}
.ws92{word-spacing:-6.637527pt;}
.ws45{word-spacing:-6.636420pt;}
.ws3d{word-spacing:-6.583286pt;}
.ws91{word-spacing:-6.530152pt;}
.ws5d{word-spacing:-6.370751pt;}
.ws1c{word-spacing:-6.317617pt;}
.ws3e{word-spacing:-6.105081pt;}
.ws2f{word-spacing:-5.998814pt;}
.ws5e{word-spacing:-5.945680pt;}
.ws3b{word-spacing:-5.892546pt;}
.ws71{word-spacing:-5.839412pt;}
.ws6b{word-spacing:-5.786278pt;}
.ws6c{word-spacing:-5.733144pt;}
.ws50{word-spacing:-5.626876pt;}
.ws66{word-spacing:-5.573743pt;}
.ws1f{word-spacing:-5.361207pt;}
.ws7c{word-spacing:-5.308073pt;}
.ws44{word-spacing:-5.148672pt;}
.ws1e{word-spacing:-4.829868pt;}
.ws7f{word-spacing:-4.776735pt;}
.ws74{word-spacing:-4.723601pt;}
.ws1d{word-spacing:-4.670467pt;}
.ws67{word-spacing:-4.617333pt;}
.ws6a{word-spacing:-4.457931pt;}
.ws4b{word-spacing:-4.139128pt;}
.ws78{word-spacing:-4.085994pt;}
.ws36{word-spacing:-3.071137pt;}
.ws54{word-spacing:-2.964870pt;}
.ws7e{word-spacing:-1.482435pt;}
.ws73{word-spacing:-0.685427pt;}
.ws4e{word-spacing:-0.053134pt;}
.ws8b{word-spacing:-0.047821pt;}
.ws5a{word-spacing:-0.042507pt;}
.ws34{word-spacing:-0.037194pt;}
.ws12{word-spacing:0.000000pt;}
.ws35{word-spacing:0.010627pt;}
.ws48{word-spacing:0.276296pt;}
.ws6e{word-spacing:2.879856pt;}
.ws16{word-spacing:2.927676pt;}
.ws62{word-spacing:2.986123pt;}
.ws53{word-spacing:14.438552pt;}
.ws83{word-spacing:14.781842pt;}
.ws11{word-spacing:15.005042pt;}
.ws38{word-spacing:17.378087pt;}
.ws52{word-spacing:17.382552pt;}
.ws14{word-spacing:18.602167pt;}
.ws55{word-spacing:18.722542pt;}
.ws93{word-spacing:18.889216pt;}
.ws82{word-spacing:20.854740pt;}
.ws61{word-spacing:27.342688pt;}
.ws87{word-spacing:35.459123pt;}
.ws17{word-spacing:35.871976pt;}
.ws8f{word-spacing:115.630114pt;}
.ws8e{word-spacing:149.590938pt;}
.ws80{word-spacing:684.373812pt;}
.ws8c{word-spacing:1082.160794pt;}
.ws4c{word-spacing:1098.574574pt;}
._28{margin-left:-14.790246pt;}
._0{margin-left:-8.355207pt;}
._1e{margin-left:-5.929779pt;}
._7{margin-left:-4.617353pt;}
._21{margin-left:-3.711929pt;}
._1{margin-left:-2.754464pt;}
._2{margin-left:-1.700284pt;}
._3{width:1.748105pt;}
._a{width:3.126401pt;}
._1f{width:4.297813pt;}
._25{width:6.378794pt;}
._24{width:7.849131pt;}
._8{width:13.368559pt;}
._6{width:14.303710pt;}
._1c{width:16.205829pt;}
._2a{width:17.280479pt;}
._20{width:18.543739pt;}
._22{width:19.712684pt;}
._5{width:20.960337pt;}
._4{width:22.141030pt;}
._1a{width:23.325767pt;}
._19{width:24.388445pt;}
._9{width:26.179243pt;}
._18{width:27.842146pt;}
._1b{width:30.716688pt;}
._27{width:33.054578pt;}
._29{width:34.106629pt;}
._16{width:36.237297pt;}
._23{width:37.996028pt;}
._d{width:49.148827pt;}
._37{width:63.915145pt;}
._1d{width:71.731200pt;}
._34{width:103.670204pt;}
._26{width:115.101183pt;}
._30{width:296.494251pt;}
._38{width:339.269434pt;}
._32{width:364.245743pt;}
._3c{width:394.309052pt;}
._2f{width:432.533845pt;}
._3d{width:456.996830pt;}
._3b{width:483.824299pt;}
._35{width:696.387755pt;}
._2b{width:715.066767pt;}
._3a{width:733.640158pt;}
._b{width:738.090721pt;}
._36{width:770.053052pt;}
._33{width:797.845704pt;}
._2d{width:833.086157pt;}
._31{width:838.208273pt;}
._2e{width:1020.954938pt;}
._39{width:1201.853611pt;}
._2c{width:1310.576845pt;}
._12{width:1456.860496pt;}
._f{width:1702.674757pt;}
._10{width:1728.489319pt;}
._11{width:1828.864901pt;}
._e{width:1992.511916pt;}
._17{width:2020.638312pt;}
._c{width:2164.107719pt;}
._14{width:2208.740167pt;}
._13{width:2222.305243pt;}
._15{width:2303.844475pt;}
.fs6{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:49.720000pt;}
.y57{bottom:76.286667pt;}
.ybb{bottom:81.600000pt;}
.y56{bottom:83.152000pt;}
.y118{bottom:86.860000pt;}
.ye8{bottom:90.150667pt;}
.y55{bottom:92.264000pt;}
.y8b{bottom:92.604000pt;}
.ye7{bottom:93.434667pt;}
.yba{bottom:97.541333pt;}
.y8a{bottom:108.544000pt;}
.ye6{bottom:109.374667pt;}
.yb9{bottom:113.481333pt;}
.y117{bottom:116.084000pt;}
.y54{bottom:121.706667pt;}
.y89{bottom:124.484000pt;}
.ye5{bottom:125.314667pt;}
.yb8{bottom:129.421333pt;}
.y11e{bottom:130.201333pt;}
.y116{bottom:132.024000pt;}
.y53{bottom:137.646667pt;}
.y88{bottom:140.424000pt;}
.yb7{bottom:145.361333pt;}
.y115{bottom:147.964000pt;}
.ye4{bottom:149.225333pt;}
.y52{bottom:153.586667pt;}
.y11d{bottom:160.234667pt;}
.y87{bottom:162.082667pt;}
.ye3{bottom:165.165333pt;}
.yb6{bottom:167.020000pt;}
.y51{bottom:169.526667pt;}
.y11c{bottom:176.174667pt;}
.y114{bottom:177.188000pt;}
.y50{bottom:185.466667pt;}
.y86{bottom:192.114667pt;}
.ye2{bottom:194.389333pt;}
.yb5{bottom:196.448000pt;}
.y136{bottom:196.969333pt;}
.y4f{bottom:201.406667pt;}
.y113{bottom:206.412000pt;}
.y85{bottom:208.054667pt;}
.yb4{bottom:212.388000pt;}
.y4e{bottom:217.348000pt;}
.y112{bottom:222.352000pt;}
.ye1{bottom:223.612000pt;}
.y84{bottom:223.996000pt;}
.y135{bottom:224.584000pt;}
.y165{bottom:226.209333pt;}
.yb3{bottom:228.328000pt;}
.y4d{bottom:234.646667pt;}
.y111{bottom:238.292000pt;}
.ye0{bottom:239.553333pt;}
.y83{bottom:239.936000pt;}
.y164{bottom:242.365333pt;}
.yb2{bottom:244.269333pt;}
.y4c{bottom:250.521333pt;}
.y110{bottom:254.232000pt;}
.y82{bottom:255.876000pt;}
.y163{bottom:258.521333pt;}
.ydf{bottom:259.781333pt;}
.yb1{bottom:260.209333pt;}
.y4b{bottom:268.378667pt;}
.y10f{bottom:270.173333pt;}
.y81{bottom:271.816000pt;}
.y162{bottom:274.677333pt;}
.yb0{bottom:276.149333pt;}
.yde{bottom:284.298667pt;}
.y4a{bottom:284.320000pt;}
.y10e{bottom:286.113333pt;}
.y80{bottom:287.756000pt;}
.y161{bottom:290.832000pt;}
.yaf{bottom:292.089333pt;}
.ydd{bottom:300.238667pt;}
.y49{bottom:300.260000pt;}
.y10d{bottom:302.053333pt;}
.y7f{bottom:303.696000pt;}
.y160{bottom:306.988000pt;}
.yae{bottom:308.029333pt;}
.ydc{bottom:316.178667pt;}
.y48{bottom:316.200000pt;}
.y7e{bottom:319.637333pt;}
.y15f{bottom:321.600000pt;}
.yad{bottom:323.970667pt;}
.y10a{bottom:329.466667pt;}
.y10c{bottom:330.086667pt;}
.ydb{bottom:332.118667pt;}
.y47{bottom:332.140000pt;}
.y7d{bottom:335.577333pt;}
.y15e{bottom:337.756000pt;}
.yac{bottom:339.910667pt;}
.y109{bottom:345.960000pt;}
.yda{bottom:348.060000pt;}
.y46{bottom:348.080000pt;}
.y7c{bottom:351.517333pt;}
.yab{bottom:355.850667pt;}
.y15d{bottom:358.085333pt;}
.y10b{bottom:358.580000pt;}
.yd9{bottom:364.000000pt;}
.y45{bottom:364.020000pt;}
.y7b{bottom:367.457333pt;}
.y12c{bottom:372.430667pt;}
.y132{bottom:375.840000pt;}
.y108{bottom:377.102667pt;}
.yaa{bottom:378.208000pt;}
.yd8{bottom:379.940000pt;}
.y44{bottom:379.961333pt;}
.y7a{bottom:383.397333pt;}
.ya9{bottom:387.320000pt;}
.y15c{bottom:388.118667pt;}
.y107{bottom:393.042667pt;}
.yd7{bottom:395.880000pt;}
.y43{bottom:395.901333pt;}
.y79{bottom:399.337333pt;}
.y127{bottom:402.038667pt;}
.y12a{bottom:402.702667pt;}
.y15b{bottom:404.058667pt;}
.y106{bottom:408.982667pt;}
.yd6{bottom:411.820000pt;}
.y133{bottom:414.512000pt;}
.y78{bottom:415.278667pt;}
.y42{bottom:417.558667pt;}
.y15a{bottom:419.998667pt;}
.ya8{bottom:421.248000pt;}
.y105{bottom:424.922667pt;}
.yd5{bottom:427.760000pt;}
.y77{bottom:431.218667pt;}
.y129{bottom:433.978667pt;}
.y159{bottom:435.938667pt;}
.ya7{bottom:437.188000pt;}
.y15{bottom:439.928000pt;}
.y104{bottom:440.862667pt;}
.yd4{bottom:443.701333pt;}
.y41{bottom:445.310667pt;}
.y76{bottom:447.158667pt;}
.y158{bottom:451.878667pt;}
.ya6{bottom:453.128000pt;}
.y14{bottom:455.868000pt;}
.y103{bottom:456.804000pt;}
.yd3{bottom:459.641333pt;}
.y40{bottom:461.250667pt;}
.y75{bottom:463.098667pt;}
.y157{bottom:467.818667pt;}
.ya5{bottom:469.068000pt;}
.y102{bottom:472.744000pt;}
.yd2{bottom:475.581333pt;}
.y3f{bottom:477.190667pt;}
.y74{bottom:479.038667pt;}
.ya4{bottom:485.008000pt;}
.y128{bottom:487.954667pt;}
.y13{bottom:488.962667pt;}
.y156{bottom:489.477333pt;}
.yd1{bottom:491.521333pt;}
.y3e{bottom:493.132000pt;}
.y73{bottom:494.978667pt;}
.y101{bottom:500.157333pt;}
.y12{bottom:503.573333pt;}
.ya3{bottom:507.365333pt;}
.yd0{bottom:507.461333pt;}
.y3d{bottom:509.072000pt;}
.y72{bottom:510.920000pt;}
.ya2{bottom:516.477333pt;}
.y100{bottom:516.650667pt;}
.y11{bottom:518.185333pt;}
.ycf{bottom:523.401333pt;}
.y3c{bottom:525.012000pt;}
.y71{bottom:526.860000pt;}
.y10{bottom:532.797333pt;}
.y3b{bottom:540.952000pt;}
.yce{bottom:541.849333pt;}
.y70{bottom:542.800000pt;}
.yf{bottom:547.409333pt;}
.yff{bottom:548.532000pt;}
.ya1{bottom:550.405333pt;}
.ycd{bottom:550.961333pt;}
.y3a{bottom:556.892000pt;}
.y6f{bottom:558.740000pt;}
.ye{bottom:562.021333pt;}
.y155{bottom:562.993333pt;}
.yfe{bottom:564.472000pt;}
.ya0{bottom:568.010667pt;}
.y134{bottom:569.277333pt;}
.ycc{bottom:569.577333pt;}
.y39{bottom:572.832000pt;}
.y12b{bottom:573.206667pt;}
.y6e{bottom:574.680000pt;}
.yd{bottom:576.633333pt;}
.y9f{bottom:577.122667pt;}
.y154{bottom:577.604000pt;}
.yfd{bottom:580.412000pt;}
.y38{bottom:588.773333pt;}
.y6d{bottom:590.620000pt;}
.yc{bottom:591.245333pt;}
.y153{bottom:592.216000pt;}
.ycb{bottom:595.369333pt;}
.y13c{bottom:595.632000pt;}
.yfc{bottom:596.352000pt;}
.y9e{bottom:599.170667pt;}
.y37{bottom:604.713333pt;}
.yb{bottom:605.857333pt;}
.y6c{bottom:606.561333pt;}
.y152{bottom:606.828000pt;}
.y13b{bottom:610.244000pt;}
.yca{bottom:611.294667pt;}
.y126{bottom:612.278667pt;}
.y9d{bottom:615.110667pt;}
.y131{bottom:616.061333pt;}
.yfb{bottom:618.010667pt;}
.ya{bottom:620.469333pt;}
.y36{bottom:620.653333pt;}
.y151{bottom:621.440000pt;}
.y6b{bottom:622.501333pt;}
.y130{bottom:630.673333pt;}
.y9c{bottom:631.050667pt;}
.y9{bottom:635.081333pt;}
.y150{bottom:636.052000pt;}
.y35{bottom:636.593333pt;}
.y6a{bottom:638.441333pt;}
.y125{bottom:642.312000pt;}
.y13a{bottom:642.546667pt;}
.yc9{bottom:643.656000pt;}
.yfa{bottom:648.042667pt;}
.y8{bottom:649.692000pt;}
.y14f{bottom:650.664000pt;}
.y34{bottom:652.533333pt;}
.y69{bottom:654.381333pt;}
.y124{bottom:658.252000pt;}
.y9b{bottom:658.870667pt;}
.yf9{bottom:663.982667pt;}
.y7{bottom:664.304000pt;}
.y14e{bottom:665.276000pt;}
.yc7{bottom:667.416000pt;}
.y33{bottom:668.473333pt;}
.y21{bottom:668.910667pt;}
.y68{bottom:670.321333pt;}
.y139{bottom:674.048000pt;}
.y123{bottom:674.192000pt;}
.y6{bottom:678.916000pt;}
.y14d{bottom:679.888000pt;}
.yf8{bottom:679.924000pt;}
.yc8{bottom:683.516000pt;}
.y32{bottom:684.414667pt;}
.yc6{bottom:685.514667pt;}
.y67{bottom:686.261333pt;}
.y9a{bottom:686.690667pt;}
.y122{bottom:690.132000pt;}
.y14c{bottom:694.500000pt;}
.yf7{bottom:695.864000pt;}
.y20{bottom:698.132000pt;}
.y31{bottom:700.354667pt;}
.y66{bottom:702.202667pt;}
.y99{bottom:702.632000pt;}
.y121{bottom:706.072000pt;}
.y5{bottom:706.812000pt;}
.y14b{bottom:709.112000pt;}
.yc5{bottom:715.545333pt;}
.y30{bottom:716.294667pt;}
.y11b{bottom:718.142667pt;}
.y98{bottom:718.572000pt;}
.yf6{bottom:721.804000pt;}
.y120{bottom:722.012000pt;}
.y14a{bottom:723.722667pt;}
.y65{bottom:723.860000pt;}
.yf5{bottom:725.088000pt;}
.y1f{bottom:727.352000pt;}
.yc4{bottom:731.485333pt;}
.y2f{bottom:732.234667pt;}
.y97{bottom:734.512000pt;}
.y11f{bottom:737.953333pt;}
.y149{bottom:738.334667pt;}
.y11a{bottom:739.800000pt;}
.y12e{bottom:746.405333pt;}
.yc3{bottom:747.426667pt;}
.y2e{bottom:748.174667pt;}
.y96{bottom:750.452000pt;}
.y148{bottom:752.946667pt;}
.y64{bottom:753.893333pt;}
.yf4{bottom:754.310667pt;}
.y1e{bottom:756.572000pt;}
.yc2{bottom:763.366667pt;}
.y2d{bottom:764.114667pt;}
.y95{bottom:766.392000pt;}
.y147{bottom:767.558667pt;}
.y63{bottom:769.833333pt;}
.yf3{bottom:774.937333pt;}
.y4{bottom:777.816000pt;}
.yf2{bottom:778.221333pt;}
.yc1{bottom:779.306667pt;}
.y2c{bottom:780.056000pt;}
.y94{bottom:782.332000pt;}
.y146{bottom:783.177333pt;}
.y62{bottom:785.773333pt;}
.y1d{bottom:785.793333pt;}
.yf1{bottom:794.161333pt;}
.yc0{bottom:795.246667pt;}
.y2b{bottom:795.996000pt;}
.y145{bottom:797.789333pt;}
.y93{bottom:798.273333pt;}
.y61{bottom:801.713333pt;}
.y3{bottom:801.726667pt;}
.yf0{bottom:810.102667pt;}
.y2a{bottom:811.936000pt;}
.y144{bottom:812.401333pt;}
.y92{bottom:814.213333pt;}
.y1c{bottom:815.013333pt;}
.ybf{bottom:815.802667pt;}
.y60{bottom:817.653333pt;}
.y143{bottom:827.013333pt;}
.y29{bottom:827.876000pt;}
.ybe{bottom:828.392000pt;}
.y91{bottom:830.153333pt;}
.yef{bottom:830.330667pt;}
.ybd{bottom:831.676000pt;}
.y12d{bottom:833.334667pt;}
.y5f{bottom:833.594667pt;}
.y142{bottom:841.624000pt;}
.y28{bottom:843.816000pt;}
.y1b{bottom:844.233333pt;}
.y90{bottom:846.093333pt;}
.y137{bottom:847.649333pt;}
.y2{bottom:848.214667pt;}
.y5e{bottom:849.534667pt;}
.yee{bottom:854.848000pt;}
.y141{bottom:856.236000pt;}
.y27{bottom:859.756000pt;}
.y8f{bottom:862.033333pt;}
.y5d{bottom:865.474667pt;}
.yed{bottom:870.788000pt;}
.y140{bottom:870.848000pt;}
.y1a{bottom:873.454667pt;}
.y26{bottom:875.697333pt;}
.y1{bottom:877.437333pt;}
.ybc{bottom:877.653333pt;}
.y5c{bottom:881.414667pt;}
.y13f{bottom:885.460000pt;}
.yec{bottom:886.728000pt;}
.y8e{bottom:889.854667pt;}
.y25{bottom:891.637333pt;}
.y5b{bottom:897.354667pt;}
.y13e{bottom:900.072000pt;}
.yeb{bottom:902.668000pt;}
.y19{bottom:902.674667pt;}
.y24{bottom:907.577333pt;}
.y5a{bottom:913.294667pt;}
.y8d{bottom:917.674667pt;}
.y13d{bottom:921.352000pt;}
.y23{bottom:923.517333pt;}
.yea{bottom:928.608000pt;}
.y59{bottom:929.236000pt;}
.ye9{bottom:931.892000pt;}
.y18{bottom:931.896000pt;}
.y8c{bottom:936.608000pt;}
.y22{bottom:939.457333pt;}
.y138{bottom:942.892000pt;}
.y58{bottom:945.176000pt;}
.y119{bottom:959.124000pt;}
.y12f{bottom:960.010667pt;}
.y17{bottom:961.116000pt;}
.h21{height:0.000000pt;}
.hb{height:26.147101pt;}
.h19{height:27.895200pt;}
.h8{height:32.815558pt;}
.h23{height:33.522381pt;}
.h6{height:35.865600pt;}
.h5{height:35.913421pt;}
.hf{height:36.874903pt;}
.h3{height:36.928037pt;}
.h4{height:37.246841pt;}
.h9{height:39.850400pt;}
.h22{height:39.850667pt;}
.h7{height:39.903534pt;}
.h13{height:40.740707pt;}
.h24{height:42.089071pt;}
.h25{height:42.957628pt;}
.h1a{height:43.244533pt;}
.h15{height:43.396707pt;}
.h1e{height:43.402041pt;}
.h2{height:44.696508pt;}
.h17{height:47.175200pt;}
.ha{height:50.474667pt;}
.h1b{height:50.480000pt;}
.h1d{height:52.986400pt;}
.h14{height:54.948867pt;}
.h20{height:56.532707pt;}
.h1f{height:56.538041pt;}
.h16{height:63.616000pt;}
.h1{height:64.454458pt;}
.h10{height:72.816237pt;}
.h12{height:72.821570pt;}
.h1c{height:75.791733pt;}
.hc{height:75.797067pt;}
.h11{height:76.351534pt;}
.he{height:77.668707pt;}
.hd{height:86.928000pt;}
.h18{height:124.716533pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:80.881333pt;}
.x2{left:100.645333pt;}
.x26{left:120.494667pt;}
.x68{left:122.513333pt;}
.x53{left:133.508000pt;}
.x27{left:142.057333pt;}
.x4e{left:144.669333pt;}
.x83{left:147.268000pt;}
.xa2{left:150.677333pt;}
.x74{left:151.756000pt;}
.x4f{left:160.777333pt;}
.x84{left:163.729333pt;}
.x69{left:176.240000pt;}
.x1{left:177.853333pt;}
.x56{left:180.366667pt;}
.x1a{left:186.493333pt;}
.x57{left:187.542667pt;}
.x8c{left:191.818667pt;}
.x77{left:195.873333pt;}
.x8d{left:205.432000pt;}
.x78{left:208.017333pt;}
.x1b{left:213.769333pt;}
.x11{left:215.669333pt;}
.x70{left:226.214667pt;}
.x38{left:234.956000pt;}
.x50{left:240.278667pt;}
.x81{left:241.361333pt;}
.x39{left:247.030667pt;}
.x8e{left:248.181333pt;}
.x12{left:253.561333pt;}
.x51{left:256.353333pt;}
.x13{left:258.757333pt;}
.x9e{left:260.558667pt;}
.x8f{left:261.460000pt;}
.x80{left:263.300000pt;}
.x64{left:264.753333pt;}
.x3b{left:266.461333pt;}
.x63{left:268.768000pt;}
.xd{left:270.402667pt;}
.x14{left:276.169333pt;}
.x2b{left:277.818667pt;}
.x3c{left:279.993333pt;}
.x3a{left:281.405333pt;}
.x28{left:296.321333pt;}
.x6a{left:301.265333pt;}
.x15{left:303.768000pt;}
.x3{left:305.194667pt;}
.x6b{left:307.460000pt;}
.x29{left:308.690667pt;}
.x7c{left:310.021333pt;}
.x16{left:311.817333pt;}
.x54{left:315.730667pt;}
.x17{left:320.093333pt;}
.x55{left:327.058667pt;}
.x3f{left:329.322667pt;}
.x2a{left:335.232000pt;}
.x24{left:336.986667pt;}
.xa3{left:337.970667pt;}
.x4{left:339.032000pt;}
.x9b{left:341.773333pt;}
.xf{left:345.222667pt;}
.xa4{left:346.993333pt;}
.x90{left:348.414667pt;}
.x96{left:351.674667pt;}
.x20{left:352.805333pt;}
.x9d{left:354.090667pt;}
.x41{left:358.166667pt;}
.xa1{left:361.197333pt;}
.x6c{left:362.408000pt;}
.x85{left:363.806667pt;}
.x5{left:365.102667pt;}
.x79{left:368.678667pt;}
.x86{left:370.721333pt;}
.xe{left:372.984000pt;}
.x6{left:374.521333pt;}
.x7d{left:376.370667pt;}
.x42{left:377.501333pt;}
.x3d{left:379.638667pt;}
.x1c{left:381.545333pt;}
.x58{left:383.234667pt;}
.x6d{left:385.132000pt;}
.x7{left:386.069333pt;}
.x40{left:387.061333pt;}
.x9f{left:388.078667pt;}
.x3e{left:390.082667pt;}
.x6e{left:391.366667pt;}
.x1d{left:392.901333pt;}
.x97{left:395.344000pt;}
.x82{left:397.740000pt;}
.x99{left:405.529333pt;}
.x43{left:406.957333pt;}
.x59{left:409.456000pt;}
.x9c{left:410.602667pt;}
.x5b{left:412.281333pt;}
.x21{left:413.948000pt;}
.x65{left:415.481333pt;}
.x52{left:418.930667pt;}
.x8{left:424.069333pt;}
.x44{left:425.308000pt;}
.x76{left:426.272000pt;}
.x25{left:428.269333pt;}
.x98{left:431.842667pt;}
.x9{left:436.672000pt;}
.xa{left:441.478667pt;}
.x10{left:443.482667pt;}
.x45{left:444.928000pt;}
.x87{left:449.072000pt;}
.x22{left:454.388000pt;}
.x7e{left:455.396000pt;}
.xb{left:457.624000pt;}
.x23{left:461.304000pt;}
.x7f{left:466.736000pt;}
.x9a{left:469.285333pt;}
.x6f{left:477.141333pt;}
.x4a{left:479.070667pt;}
.x4b{left:486.248000pt;}
.x30{left:488.706667pt;}
.x66{left:490.125333pt;}
.x67{left:499.733333pt;}
.x31{left:501.190667pt;}
.x1e{left:505.165333pt;}
.x34{left:509.932000pt;}
.x1f{left:514.773333pt;}
.x48{left:524.109333pt;}
.x5a{left:526.025333pt;}
.x5d{left:534.660000pt;}
.x49{left:535.565333pt;}
.x5e{left:545.801333pt;}
.x35{left:547.853333pt;}
.xa0{left:551.157333pt;}
.x36{left:553.090667pt;}
.x5f{left:561.118667pt;}
.x37{left:570.502667pt;}
.x60{left:574.937333pt;}
.x8a{left:576.614667pt;}
.x61{left:580.206667pt;}
.x93{left:583.801333pt;}
.x7a{left:589.720000pt;}
.x8b{left:592.068000pt;}
.x2c{left:595.294667pt;}
.x62{left:597.618667pt;}
.x7b{left:600.766667pt;}
.x2d{left:601.937333pt;}
.x91{left:610.608000pt;}
.x75{left:612.229333pt;}
.x2e{left:613.898667pt;}
.x71{left:619.064000pt;}
.x92{left:621.133333pt;}
.x18{left:623.474667pt;}
.x94{left:626.837333pt;}
.x72{left:630.914667pt;}
.x2f{left:632.390667pt;}
.x19{left:634.801333pt;}
.x95{left:644.248000pt;}
.x46{left:661.689333pt;}
.x88{left:663.857333pt;}
.x47{left:673.688000pt;}
.x89{left:677.261333pt;}
.x4c{left:709.324000pt;}
.x32{left:720.922667pt;}
.x73{left:723.605333pt;}
.x4d{left:725.428000pt;}
.x5c{left:727.794667pt;}
.x33{left:732.630667pt;}
}




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