
    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_95351eb183eebb2953581c3c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_47a235a13de0a025cdf51eb9.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_db2a880f0047643ad2d2fca3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f86ede6d810a8cd4fea6e155.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be1c74aa48d965b804f29361.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_3178c580bff8c232a64e64ed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_2c4518b7c686d8e8382ec6ff.woff')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_9bbad11e4ce2ad74bcd85aa8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_5c6cdea4fbca9ca8c729bb65.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e0763369efdbc493918bd09a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.760000;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_450751ad7d4d4b23925653cf.woff')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_20251ecb6104a9ada1c3a2ea.woff')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_394a599ecab0eedd63f4fdda.woff')format("woff");}.ffd{font-family:ffd;line-height:0.697000;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_868fef28da039dae2e6ed697.woff')format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dd35cbad3b2bce421b59aefe.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9b67312ef4eac17a1e3d9710.woff')format("woff");}.ff10{font-family:ff10;line-height:0.664000;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_282237cdfd5e4743b4726b6b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.672000;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_b0d63be028dcedd8e3605673.woff')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aa7374f6d7819b18800a911a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.900000;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_a41f63d2fadd119f2aede063.woff')format("woff");}.ff14{font-family:ff14;line-height:0.699000;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_c9f0e499d20cffa159f7ea9a.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_0db2332e61afc0453ea8694c.woff')format("woff");}.ff16{font-family:ff16;line-height:0.921000;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;}
.m2{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);}
.m10{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);}
.m16{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);}
.m1f{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);}
.m21{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);}
.m14{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);}
.md{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);}
.m8{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);}
.mb{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);}
.m7{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);}
.m11{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);}
.m27{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);}
.m25{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);}
.m29{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);}
.m3{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);}
.mf{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);}
.m28{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);}
.m1d{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);}
.m5{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);}
.m20{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);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m18{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);}
.m22{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);}
.mc{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);}
.m1e{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);}
.m1a{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);}
.m17{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);}
.m12{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);}
.m1{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);}
.m26{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);}
.m1c{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);}
.m23{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);}
.m24{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);}
.m9{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);}
.m4{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);}
.m15{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);}
.ma{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);}
.m19{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);}
.m6{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);}
.me{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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-21.696000px;}
.v4{vertical-align:-8.964000px;}
.v6{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:40.440000px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000352px;}
.ls20{letter-spacing:0.000591px;}
.lse{letter-spacing:0.000650px;}
.ls2b{letter-spacing:0.001467px;}
.ls14{letter-spacing:0.002272px;}
.ls29{letter-spacing:0.002316px;}
.ls6{letter-spacing:0.004080px;}
.ls12{letter-spacing:0.005582px;}
.lsd{letter-spacing:1.290420px;}
.lsa{letter-spacing:1.661141px;}
.ls9{letter-spacing:2.140924px;}
.ls4{letter-spacing:2.987276px;}
.ls1{letter-spacing:2.989628px;}
.ls7{letter-spacing:2.992192px;}
.ls8{letter-spacing:2.993276px;}
.ls0{letter-spacing:2.993545px;}
.ls11{letter-spacing:4.490840px;}
.ls10{letter-spacing:13.278352px;}
.ls16{letter-spacing:13.280272px;}
.ls15{letter-spacing:13.282080px;}
.ls17{letter-spacing:13.286272px;}
.ls21{letter-spacing:15.355467px;}
.ls1f{letter-spacing:15.357458px;}
.ls2d{letter-spacing:15.361467px;}
.ls24{letter-spacing:15.403467px;}
.ls5{letter-spacing:16.602352px;}
.ls28{letter-spacing:16.606775px;}
.ls1b{letter-spacing:16.646944px;}
.ls1e{letter-spacing:16.648775px;}
.ls1c{letter-spacing:16.650352px;}
.ls3{letter-spacing:16.692352px;}
.lsf{letter-spacing:17.562420px;}
.ls25{letter-spacing:17.614775px;}
.ls22{letter-spacing:18.022775px;}
.ls23{letter-spacing:18.208036px;}
.ls27{letter-spacing:19.904316px;}
.ls13{letter-spacing:20.366205px;}
.lsb{letter-spacing:21.092840px;}
.ls2c{letter-spacing:23.041569px;}
.ls2a{letter-spacing:24.660352px;}
.ls26{letter-spacing:24.900157px;}
.lsc{letter-spacing:28.434352px;}
.ls1a{letter-spacing:31.242352px;}
.ls19{letter-spacing:31.377684px;}
.ls18{letter-spacing:31.383684px;}
.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;}
}
.wsa8{word-spacing:-71.731020px;}
.ws0{word-spacing:-64.557900px;}
.ws3{word-spacing:-59.775840px;}
.ws20{word-spacing:-53.798280px;}
.wsc9{word-spacing:-46.146948px;}
.wsfe{word-spacing:-45.967621px;}
.wsf5{word-spacing:-45.907845px;}
.ws91{word-spacing:-45.429638px;}
.ws90{word-spacing:-45.369863px;}
.wsa7{word-spacing:-45.310087px;}
.wse9{word-spacing:-45.070983px;}
.ws1d{word-spacing:-44.891656px;}
.ws47{word-spacing:-44.831888px;}
.wsc4{word-spacing:-44.353673px;}
.ws1b{word-spacing:-44.293897px;}
.ws1a{word-spacing:-44.234122px;}
.wsff{word-spacing:-43.995018px;}
.wsa6{word-spacing:-43.815691px;}
.ws40{word-spacing:-43.755915px;}
.ws100{word-spacing:-43.457036px;}
.ws46{word-spacing:-43.397260px;}
.wsc5{word-spacing:-43.158156px;}
.wsdd{word-spacing:-43.038605px;}
.ws48{word-spacing:-42.919053px;}
.ws38{word-spacing:-42.739726px;}
.wse8{word-spacing:-42.620174px;}
.wsf6{word-spacing:-42.560398px;}
.ws3d{word-spacing:-42.381071px;}
.wsd5{word-spacing:-42.201743px;}
.wsea{word-spacing:-42.082191px;}
.wsdf{word-spacing:-42.022416px;}
.wsdb{word-spacing:-41.962640px;}
.wsbb{word-spacing:-41.902864px;}
.wsa5{word-spacing:-41.843100px;}
.ws32{word-spacing:-41.843088px;}
.wsf7{word-spacing:-41.603985px;}
.ws14{word-spacing:-41.544209px;}
.wsa0{word-spacing:-41.484433px;}
.ws9f{word-spacing:-41.424657px;}
.wsbf{word-spacing:-41.364881px;}
.ws31{word-spacing:-41.245330px;}
.ws6{word-spacing:-41.185554px;}
.ws57{word-spacing:-41.066002px;}
.ws45{word-spacing:-40.946450px;}
.ws15{word-spacing:-40.826899px;}
.wsa2{word-spacing:-40.767123px;}
.wsab{word-spacing:-40.707347px;}
.ws43{word-spacing:-40.647571px;}
.wsd0{word-spacing:-40.528020px;}
.ws10f{word-spacing:-40.468244px;}
.ws44{word-spacing:-40.408468px;}
.ws25{word-spacing:-40.348692px;}
.ws10{word-spacing:-40.288916px;}
.ws18{word-spacing:-40.229140px;}
.wsf{word-spacing:-40.169364px;}
.wsa{word-spacing:-40.109589px;}
.ws5{word-spacing:-40.049813px;}
.ws13{word-spacing:-39.990037px;}
.ws8{word-spacing:-39.930261px;}
.ws8c{word-spacing:-39.872186px;}
.wsad{word-spacing:-39.871886px;}
.wsf8{word-spacing:-39.870699px;}
.ws2{word-spacing:-39.870485px;}
.wsc2{word-spacing:-39.868638px;}
.wsd1{word-spacing:-39.867361px;}
.ws8a{word-spacing:-39.865805px;}
.ws9{word-spacing:-39.810709px;}
.ws2b{word-spacing:-39.750934px;}
.ws11{word-spacing:-39.691158px;}
.ws1c{word-spacing:-39.631382px;}
.wsc{word-spacing:-39.571606px;}
.wse{word-spacing:-39.511830px;}
.ws19{word-spacing:-39.452054px;}
.wsbd{word-spacing:-39.392279px;}
.wsd7{word-spacing:-39.332503px;}
.wsca{word-spacing:-39.272727px;}
.ws66{word-spacing:-39.212951px;}
.ws2e{word-spacing:-39.153175px;}
.wsc1{word-spacing:-39.093399px;}
.ws22{word-spacing:-39.033624px;}
.ws94{word-spacing:-38.914072px;}
.ws95{word-spacing:-38.854296px;}
.wsc7{word-spacing:-38.794520px;}
.wsd{word-spacing:-38.734744px;}
.wse7{word-spacing:-38.690285px;}
.wsba{word-spacing:-38.674968px;}
.ws27{word-spacing:-38.615193px;}
.ws96{word-spacing:-38.555417px;}
.ws39{word-spacing:-38.495641px;}
.wsa4{word-spacing:-38.435865px;}
.wsc6{word-spacing:-38.376089px;}
.wsac{word-spacing:-38.316313px;}
.wsae{word-spacing:-38.196762px;}
.ws35{word-spacing:-38.136986px;}
.ws24{word-spacing:-38.077210px;}
.ws12{word-spacing:-37.957658px;}
.ws3c{word-spacing:-37.718555px;}
.wse1{word-spacing:-37.658779px;}
.ws3e{word-spacing:-37.599003px;}
.wsd9{word-spacing:-37.539228px;}
.wscf{word-spacing:-37.479452px;}
.wsd2{word-spacing:-37.359900px;}
.wscb{word-spacing:-37.240348px;}
.ws2a{word-spacing:-37.180572px;}
.ws3b{word-spacing:-37.120797px;}
.ws3f{word-spacing:-37.001245px;}
.ws7{word-spacing:-36.941469px;}
.ws1{word-spacing:-36.881693px;}
.ws9e{word-spacing:-36.851822px;}
.ws29{word-spacing:-36.821917px;}
.ws2f{word-spacing:-36.642590px;}
.ws70{word-spacing:-36.582814px;}
.wsb{word-spacing:-36.523038px;}
.ws63{word-spacing:-36.463262px;}
.wse4{word-spacing:-36.403487px;}
.wsc3{word-spacing:-36.343711px;}
.wsbe{word-spacing:-36.283935px;}
.wsd3{word-spacing:-36.224159px;}
.ws101{word-spacing:-36.183664px;}
.wsc8{word-spacing:-36.104607px;}
.wsaa{word-spacing:-36.044832px;}
.ws37{word-spacing:-35.985056px;}
.ws36{word-spacing:-35.925280px;}
.wsc0{word-spacing:-35.865504px;}
.wsb4{word-spacing:-35.865480px;}
.ws10e{word-spacing:-35.748877px;}
.ws3a{word-spacing:-35.745952px;}
.ws4a{word-spacing:-35.686176px;}
.wsd4{word-spacing:-35.626401px;}
.ws8f{word-spacing:-35.566625px;}
.ws4d{word-spacing:-35.560663px;}
.ws8e{word-spacing:-35.506849px;}
.ws73{word-spacing:-35.453067px;}
.ws1f{word-spacing:-35.399268px;}
.wsb3{word-spacing:-35.348576px;}
.ws69{word-spacing:-35.348224px;}
.ws79{word-spacing:-35.347492px;}
.ws4e{word-spacing:-35.345470px;}
.wsd8{word-spacing:-35.327521px;}
.ws4f{word-spacing:-35.291672px;}
.wsb9{word-spacing:-35.207970px;}
.ws85{word-spacing:-35.130277px;}
.wsf4{word-spacing:-35.088418px;}
.ws68{word-spacing:-35.076479px;}
.ws30{word-spacing:-35.028642px;}
.ws33{word-spacing:-34.945399px;}
.ws34{word-spacing:-34.909091px;}
.wsbc{word-spacing:-34.849315px;}
.wse2{word-spacing:-34.610211px;}
.ws2d{word-spacing:-34.490660px;}
.ws99{word-spacing:-34.435376px;}
.wsb1{word-spacing:-34.430899px;}
.ws7a{word-spacing:-34.429376px;}
.wsaf{word-spacing:-34.377101px;}
.ws92{word-spacing:-34.311332px;}
.ws74{word-spacing:-34.269504px;}
.ws93{word-spacing:-34.251556px;}
.ws76{word-spacing:-34.236542px;}
.wsce{word-spacing:-34.012453px;}
.wsb8{word-spacing:-33.713574px;}
.ws65{word-spacing:-33.653798px;}
.wse6{word-spacing:-33.594022px;}
.ws28{word-spacing:-33.414695px;}
.ws72{word-spacing:-33.364887px;}
.wsa1{word-spacing:-33.354919px;}
.ws49{word-spacing:-33.235367px;}
.ws67{word-spacing:-33.085942px;}
.wsb0{word-spacing:-33.032144px;}
.wse5{word-spacing:-32.936488px;}
.wsda{word-spacing:-32.876712px;}
.wse0{word-spacing:-32.637609px;}
.wsb2{word-spacing:-32.600985px;}
.ws88{word-spacing:-32.577833px;}
.ws87{word-spacing:-32.566638px;}
.ws83{word-spacing:-32.090168px;}
.wsa3{word-spacing:-31.980074px;}
.wsb5{word-spacing:-31.920299px;}
.ws6a{word-spacing:-31.844492px;}
.wscd{word-spacing:-31.740971px;}
.ws62{word-spacing:-31.681195px;}
.ws26{word-spacing:-31.561644px;}
.ws75{word-spacing:-31.546430px;}
.ws6b{word-spacing:-31.485698px;}
.ws42{word-spacing:-31.442092px;}
.ws59{word-spacing:-31.382316px;}
.wsde{word-spacing:-31.202988px;}
.wsa9{word-spacing:-30.784558px;}
.ws2c{word-spacing:-30.724782px;}
.wsd6{word-spacing:-30.665006px;}
.ws6c{word-spacing:-30.366127px;}
.ws9a{word-spacing:-30.180835px;}
.ws9d{word-spacing:-30.127037px;}
.wsdc{word-spacing:-29.947696px;}
.wsb6{word-spacing:-29.887920px;}
.wsb7{word-spacing:-29.828144px;}
.ws64{word-spacing:-29.768368px;}
.wse3{word-spacing:-29.648817px;}
.wsf1{word-spacing:-29.290162px;}
.ws1e{word-spacing:-29.212466px;}
.wscc{word-spacing:-28.991282px;}
.ws60{word-spacing:-28.397736px;}
.ws5d{word-spacing:-28.394472px;}
.ws58{word-spacing:-28.390788px;}
.wsef{word-spacing:-27.616438px;}
.wsf3{word-spacing:-27.496886px;}
.ws21{word-spacing:-27.490921px;}
.ws61{word-spacing:-27.437111px;}
.wsf2{word-spacing:-27.377335px;}
.ws41{word-spacing:-27.138231px;}
.wsf9{word-spacing:-25.882939px;}
.wsfa{word-spacing:-25.464508px;}
.ws82{word-spacing:-24.801007px;}
.wsfb{word-spacing:-24.149439px;}
.ws7b{word-spacing:-22.541479px;}
.wsfc{word-spacing:-21.937733px;}
.ws7f{word-spacing:-19.205986px;}
.wsfd{word-spacing:-19.128269px;}
.ws8b{word-spacing:-18.948548px;}
.wsed{word-spacing:-18.052304px;}
.wseb{word-spacing:-15.242839px;}
.wsee{word-spacing:-14.943960px;}
.ws16{word-spacing:-11.476008px;}
.wsec{word-spacing:-9.623910px;}
.ws4c{word-spacing:-0.059776px;}
.ws78{word-spacing:-0.053798px;}
.ws5f{word-spacing:-0.004212px;}
.ws5a{word-spacing:-0.002844px;}
.ws17{word-spacing:0.000000px;}
.ws5c{word-spacing:0.002736px;}
.ws5e{word-spacing:0.004104px;}
.ws5b{word-spacing:0.005052px;}
.ws54{word-spacing:13.210461px;}
.ws50{word-spacing:13.272748px;}
.ws77{word-spacing:15.278712px;}
.ws86{word-spacing:15.332510px;}
.ws53{word-spacing:16.229205px;}
.ws52{word-spacing:16.498132px;}
.ws71{word-spacing:16.557908px;}
.ws23{word-spacing:16.587214px;}
.ws89{word-spacing:17.514321px;}
.ws55{word-spacing:17.764991px;}
.ws6e{word-spacing:17.914827px;}
.ws84{word-spacing:17.932752px;}
.ws98{word-spacing:18.349125px;}
.ws97{word-spacing:18.351803px;}
.ws4b{word-spacing:19.842464px;}
.ws6d{word-spacing:19.844384px;}
.ws51{word-spacing:20.013909px;}
.ws8d{word-spacing:20.033822px;}
.ws6f{word-spacing:21.734505px;}
.ws9c{word-spacing:24.747209px;}
.ws4{word-spacing:25.028100px;}
.ws9b{word-spacing:27.873392px;}
.ws81{word-spacing:33.839118px;}
.wsf0{word-spacing:35.088418px;}
.ws7d{word-spacing:37.712594px;}
.ws80{word-spacing:38.153047px;}
.ws7c{word-spacing:40.744961px;}
.ws7e{word-spacing:42.047047px;}
.ws104{word-spacing:63.320576px;}
.ws109{word-spacing:71.713107px;}
.ws102{word-spacing:72.520081px;}
.ws107{word-spacing:77.899909px;}
.ws103{word-spacing:80.159437px;}
.ws10d{word-spacing:87.906390px;}
.ws10b{word-spacing:94.738771px;}
.ws10a{word-spacing:98.612247px;}
.ws106{word-spacing:103.238899px;}
.ws10c{word-spacing:105.444629px;}
.ws105{word-spacing:116.258083px;}
.ws108{word-spacing:124.650615px;}
.ws56{word-spacing:422.522350px;}
._1a{margin-left:-8.249066px;}
._2{margin-left:-6.507436px;}
._4{margin-left:-4.961395px;}
._0{margin-left:-3.202072px;}
._6{margin-left:-1.673724px;}
._5{width:1.673724px;}
._3{width:3.202072px;}
._25{width:4.995347px;}
._19{width:6.511838px;}
._21{width:15.541718px;}
._9{width:16.916563px;}
._13{width:18.948941px;}
._10{width:20.713021px;}
._27{width:22.049155px;}
._c{width:23.073474px;}
._18{width:24.263024px;}
._8{width:25.464508px;}
._7{width:26.485416px;}
._24{width:27.496886px;}
._14{width:28.572852px;}
._b{width:29.768368px;}
._e{width:30.963885px;}
._23{width:32.219178px;}
._f{width:33.616779px;}
._12{width:35.566625px;}
._28{width:36.615422px;}
._11{width:37.879423px;}
._16{width:39.691158px;}
._22{width:42.474799px;}
._d{width:44.028976px;}
._2c{width:46.625155px;}
._26{width:47.701120px;}
._a{width:48.902637px;}
._20{width:50.624181px;}
._1{width:51.646320px;}
._2e{width:53.525195px;}
._2b{width:57.863013px;}
._17{width:59.775840px;}
._2d{width:64.498131px;}
._2f{width:70.650646px;}
._15{width:71.731020px;}
._30{width:73.703611px;}
._1d{width:75.532785px;}
._1e{width:97.751475px;}
._29{width:99.783742px;}
._1f{width:111.619477px;}
._2a{width:117.339974px;}
._1b{width:251.399362px;}
._1c{width:297.719682px;}
.fc5{color:rgb(171,33,255);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865480px;}
.fs2{font-size:41.843100px;}
.fs5{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y60{bottom:63.168000px;}
.y2b{bottom:78.339000px;}
.y2a{bottom:93.283500px;}
.y5f{bottom:108.000000px;}
.y29{bottom:108.226500px;}
.ye8{bottom:113.713500px;}
.yb4{bottom:122.944500px;}
.ye7{bottom:124.159500px;}
.y112{bottom:124.258500px;}
.y5e{bottom:124.363500px;}
.y8a{bottom:128.658000px;}
.ye6{bottom:129.873000px;}
.y1c5{bottom:137.323500px;}
.yb3{bottom:139.104000px;}
.y89{bottom:139.192500px;}
.y111{bottom:139.201500px;}
.ycb{bottom:139.806000px;}
.ye5{bottom:140.409000px;}
.y5d{bottom:140.727000px;}
.y110{bottom:144.915000px;}
.yca{bottom:145.519500px;}
.y19b{bottom:153.553500px;}
.y1c4{bottom:153.688500px;}
.yb2{bottom:154.047000px;}
.y88{bottom:154.137000px;}
.ye4{bottom:155.352000px;}
.yc9{bottom:156.319500px;}
.y16d{bottom:157.090500px;}
.y28{bottom:159.342000px;}
.yb1{bottom:159.760500px;}
.y87{bottom:159.850500px;}
.ye3{bottom:161.065500px;}
.y5c{bottom:163.879500px;}
.y19a{bottom:169.917000px;}
.y1c3{bottom:170.052000px;}
.y10f{bottom:170.665500px;}
.y13e{bottom:171.204000px;}
.yc8{bottom:171.262500px;}
.ye2{bottom:171.511500px;}
.y16c{bottom:173.454000px;}
.y27{bottom:175.765500px;}
.yc7{bottom:176.976000px;}
.y5b{bottom:180.243000px;}
.y86{bottom:183.702000px;}
.y199{bottom:186.280500px;}
.y1c2{bottom:186.415500px;}
.ye1{bottom:186.456000px;}
.y10e{bottom:187.029000px;}
.yc6{bottom:187.422000px;}
.y13d{bottom:187.567500px;}
.yb0{bottom:187.702500px;}
.y16b{bottom:189.817500px;}
.yd0{bottom:191.323500px;}
.ye0{bottom:192.169500px;}
.y5a{bottom:196.608000px;}
.y26{bottom:200.205000px;}
.yc5{bottom:202.366500px;}
.ydf{bottom:202.615500px;}
.y198{bottom:202.644000px;}
.y1c1{bottom:202.779000px;}
.y10d{bottom:203.392500px;}
.yaf{bottom:204.066000px;}
.y16a{bottom:206.182500px;}
.y59{bottom:212.971500px;}
.y85{bottom:216.333000px;}
.y25{bottom:216.568500px;}
.yc4{bottom:217.309500px;}
.yde{bottom:217.558500px;}
.y13c{bottom:218.043000px;}
.y197{bottom:219.007500px;}
.y10c{bottom:219.756000px;}
.y169{bottom:222.546000px;}
.yc3{bottom:223.023000px;}
.ydd{bottom:223.272000px;}
.y1c0{bottom:227.361000px;}
.y84{bottom:232.696500px;}
.y24{bottom:232.932000px;}
.y13b{bottom:234.406500px;}
.y196{bottom:235.371000px;}
.y58{bottom:236.124000px;}
.yae{bottom:238.164000px;}
.y168{bottom:238.909500px;}
.y1bf{bottom:243.724500px;}
.y23{bottom:249.295500px;}
.y57{bottom:252.487500px;}
.y10b{bottom:253.171500px;}
.ydc{bottom:253.467000px;}
.yad{bottom:254.527500px;}
.y167{bottom:255.273000px;}
.y83{bottom:255.808500px;}
.y1be{bottom:260.089500px;}
.y195{bottom:264.561000px;}
.y13a{bottom:264.883500px;}
.y22{bottom:265.659000px;}
.y56{bottom:268.851000px;}
.y10a{bottom:269.535000px;}
.ydb{bottom:269.830500px;}
.y166{bottom:271.636500px;}
.yc2{bottom:276.118500px;}
.y1bd{bottom:276.453000px;}
.yac{bottom:279.594000px;}
.y194{bottom:280.924500px;}
.y139{bottom:281.247000px;}
.y1bc{bottom:281.875500px;}
.y109{bottom:285.898500px;}
.y165{bottom:288.000000px;}
.y82{bottom:288.439500px;}
.y55{bottom:292.003500px;}
.yc0{bottom:292.482000px;}
.yda{bottom:294.414000px;}
.yab{bottom:295.959000px;}
.y138{bottom:297.610500px;}
.yc1{bottom:297.906000px;}
.y21{bottom:301.096500px;}
.y164{bottom:304.363500px;}
.y54{bottom:308.367000px;}
.y193{bottom:310.114500px;}
.yd9{bottom:310.777500px;}
.y1bb{bottom:311.058000px;}
.yaa{bottom:312.322500px;}
.y108{bottom:319.315500px;}
.y163{bottom:320.727000px;}
.y81{bottom:321.072000px;}
.y53{bottom:324.730500px;}
.yd8{bottom:327.141000px;}
.y137{bottom:328.086000px;}
.y107{bottom:335.679000px;}
.y162{bottom:337.090500px;}
.ya9{bottom:337.389000px;}
.y192{bottom:339.304500px;}
.y52{bottom:341.094000px;}
.yd6{bottom:343.504500px;}
.y80{bottom:344.184000px;}
.y136{bottom:344.449500px;}
.yd7{bottom:348.927000px;}
.y106{bottom:352.042500px;}
.ybf{bottom:352.158000px;}
.y161{bottom:353.454000px;}
.ya8{bottom:353.752500px;}
.y20{bottom:353.959500px;}
.y191{bottom:355.668000px;}
.yd5{bottom:359.868000px;}
.y135{bottom:360.814500px;}
.y1ba{bottom:361.576500px;}
.y105{bottom:368.406000px;}
.y160{bottom:369.817500px;}
.y1f{bottom:370.323000px;}
.y190{bottom:372.031500px;}
.y51{bottom:373.758000px;}
.y7f{bottom:376.815000px;}
.y1b9{bottom:377.940000px;}
.ya7{bottom:378.819000px;}
.y104{bottom:384.769500px;}
.y15f{bottom:386.181000px;}
.y1e{bottom:386.686500px;}
.y134{bottom:391.290000px;}
.y1b8{bottom:394.303500px;}
.ya6{bottom:395.182500px;}
.yd4{bottom:396.390000px;}
.y50{bottom:398.341500px;}
.y103{bottom:401.133000px;}
.y18f{bottom:401.221500px;}
.y7e{bottom:401.398500px;}
.y15e{bottom:402.546000px;}
.y1d{bottom:403.050000px;}
.y133{bottom:407.653500px;}
.y1b7{bottom:410.667000px;}
.y4f{bottom:414.705000px;}
.y18e{bottom:417.585000px;}
.y7d{bottom:417.762000px;}
.y15d{bottom:418.909500px;}
.y1c{bottom:419.415000px;}
.ya5{bottom:420.249000px;}
.y132{bottom:424.017000px;}
.y1b6{bottom:427.030500px;}
.y102{bottom:428.805000px;}
.y4e{bottom:431.068500px;}
.y18d{bottom:433.948500px;}
.y7c{bottom:434.125500px;}
.y15c{bottom:435.273000px;}
.y1b{bottom:435.778500px;}
.ya4{bottom:436.612500px;}
.y7b{bottom:439.548000px;}
.y1b5{bottom:443.394000px;}
.y4d{bottom:447.432000px;}
.yd3{bottom:449.221500px;}
.y18c{bottom:450.313500px;}
.y15b{bottom:451.636500px;}
.y1a{bottom:452.142000px;}
.ya3{bottom:452.976000px;}
.y131{bottom:454.494000px;}
.y4c{bottom:463.795500px;}
.y7a{bottom:464.193000px;}
.y18b{bottom:466.677000px;}
.y19{bottom:468.505500px;}
.y130{bottom:470.857500px;}
.y1b4{bottom:472.833000px;}
.y101{bottom:473.574000px;}
.y15a{bottom:480.826500px;}
.y18a{bottom:483.040500px;}
.y18{bottom:484.869000px;}
.ya2{bottom:487.075500px;}
.y12f{bottom:487.221000px;}
.y4b{bottom:488.377500px;}
.y1b3{bottom:489.196500px;}
.y100{bottom:489.937500px;}
.y159{bottom:497.190000px;}
.y79{bottom:498.934500px;}
.y17{bottom:501.232500px;}
.y12e{bottom:503.584500px;}
.y4a{bottom:504.742500px;}
.y1b2{bottom:505.561500px;}
.y189{bottom:512.230500px;}
.y158{bottom:513.553500px;}
.yff{bottom:514.521000px;}
.y16{bottom:517.596000px;}
.ya1{bottom:517.984500px;}
.y12d{bottom:519.948000px;}
.y49{bottom:521.106000px;}
.y1b1{bottom:521.925000px;}
.y188{bottom:528.594000px;}
.y157{bottom:529.917000px;}
.yfe{bottom:530.884500px;}
.y15{bottom:533.959500px;}
.y48{bottom:537.469500px;}
.y1b0{bottom:538.288500px;}
.y78{bottom:541.786500px;}
.y187{bottom:544.957500px;}
.y156{bottom:546.280500px;}
.yfd{bottom:547.248000px;}
.y14{bottom:550.323000px;}
.y12c{bottom:550.423500px;}
.y47{bottom:553.833000px;}
.y1af{bottom:554.652000px;}
.ya0{bottom:557.098500px;}
.y77{bottom:558.150000px;}
.y155{bottom:562.644000px;}
.yfc{bottom:563.611500px;}
.y13{bottom:566.686500px;}
.y12b{bottom:566.788500px;}
.y46{bottom:570.196500px;}
.y1ae{bottom:571.015500px;}
.y9f{bottom:573.088500px;}
.y186{bottom:574.147500px;}
.y76{bottom:574.513500px;}
.y154{bottom:579.007500px;}
.yfb{bottom:579.975000px;}
.y12{bottom:583.050000px;}
.y9e{bottom:588.703500px;}
.y185{bottom:590.511000px;}
.y75{bottom:590.877000px;}
.ycf{bottom:591.177000px;}
.y153{bottom:595.371000px;}
.yfa{bottom:596.338500px;}
.y12a{bottom:597.264000px;}
.y11{bottom:599.415000px;}
.y1ad{bottom:600.454500px;}
.yf9{bottom:601.761000px;}
.y45{bottom:602.859000px;}
.y184{bottom:606.874500px;}
.y74{bottom:607.240500px;}
.ycd{bottom:607.540500px;}
.y152{bottom:611.734500px;}
.yce{bottom:612.963000px;}
.y129{bottom:613.627500px;}
.y10{bottom:615.778500px;}
.y1ac{bottom:616.818000px;}
.y1dc{bottom:616.912500px;}
.y44{bottom:619.224000px;}
.y9d{bottom:622.803000px;}
.y183{bottom:623.238000px;}
.y151{bottom:628.099500px;}
.y128{bottom:629.991000px;}
.y73{bottom:631.824000px;}
.yf{bottom:632.142000px;}
.yf8{bottom:632.230500px;}
.y1db{bottom:633.276000px;}
.y182{bottom:639.601500px;}
.y43{bottom:642.376500px;}
.y150{bottom:644.463000px;}
.y1ab{bottom:646.257000px;}
.y127{bottom:646.354500px;}
.y9c{bottom:647.386500px;}
.y72{bottom:648.187500px;}
.yf7{bottom:653.152500px;}
.y181{bottom:655.965000px;}
.y1da{bottom:657.859500px;}
.y42{bottom:658.740000px;}
.y14f{bottom:660.826500px;}
.y1aa{bottom:662.620500px;}
.y126{bottom:662.718000px;}
.y9b{bottom:663.750000px;}
.y71{bottom:664.551000px;}
.ye{bottom:668.799000px;}
.y180{bottom:672.328500px;}
.ycc{bottom:672.801000px;}
.y1d9{bottom:674.223000px;}
.y41{bottom:675.103500px;}
.y14e{bottom:677.190000px;}
.y125{bottom:679.081500px;}
.y70{bottom:680.914500px;}
.y17f{bottom:688.692000px;}
.y1d8{bottom:690.586500px;}
.y1a9{bottom:692.059500px;}
.yd{bottom:693.262500px;}
.y124{bottom:695.445000px;}
.yf6{bottom:697.920000px;}
.y40{bottom:698.256000px;}
.y9a{bottom:698.398500px;}
.y17e{bottom:705.055500px;}
.y14d{bottom:706.380000px;}
.y1d7{bottom:706.950000px;}
.y1a8{bottom:708.423000px;}
.y123{bottom:711.810000px;}
.yf5{bottom:714.283500px;}
.y3f{bottom:714.619500px;}
.y6f{bottom:715.656000px;}
.yc{bottom:719.889000px;}
.y17d{bottom:721.420500px;}
.y14c{bottom:722.743500px;}
.y1d6{bottom:723.313500px;}
.y1a7{bottom:724.786500px;}
.y122{bottom:728.173500px;}
.yf4{bottom:730.647000px;}
.y3e{bottom:730.983000px;}
.yb{bottom:736.252500px;}
.y17c{bottom:737.784000px;}
.y1d5{bottom:739.677000px;}
.y1a6{bottom:741.150000px;}
.y99{bottom:743.431500px;}
.y121{bottom:744.537000px;}
.yf3{bottom:747.010500px;}
.y14b{bottom:751.933500px;}
.ya{bottom:752.617500px;}
.y3d{bottom:754.135500px;}
.y17b{bottom:754.147500px;}
.y1d4{bottom:756.040500px;}
.y1a5{bottom:757.513500px;}
.y6e{bottom:758.508000px;}
.y98{bottom:759.796500px;}
.yf2{bottom:763.375500px;}
.y14a{bottom:768.297000px;}
.y9{bottom:768.981000px;}
.y3c{bottom:770.500500px;}
.y17a{bottom:770.511000px;}
.y6d{bottom:774.871500px;}
.y120{bottom:775.012500px;}
.yf1{bottom:779.739000px;}
.y149{bottom:784.660500px;}
.y179{bottom:786.874500px;}
.y1a4{bottom:786.952500px;}
.y6c{bottom:791.235000px;}
.y11f{bottom:791.376000px;}
.y96{bottom:792.277500px;}
.yf0{bottom:796.102500px;}
.y1d3{bottom:796.125000px;}
.y93{bottom:799.477500px;}
.ybe{bottom:800.446500px;}
.y3b{bottom:803.163000px;}
.y178{bottom:803.238000px;}
.y1a3{bottom:803.316000px;}
.y11e{bottom:807.739500px;}
.y92{bottom:809.728500px;}
.y1d2{bottom:811.068000px;}
.y148{bottom:813.850500px;}
.y6b{bottom:814.347000px;}
.ybc{bottom:816.811500px;}
.y3a{bottom:819.526500px;}
.y177{bottom:819.601500px;}
.y1a2{bottom:819.679500px;}
.y97{bottom:819.838500px;}
.ybd{bottom:822.234000px;}
.y95{bottom:823.926000px;}
.y11d{bottom:824.103000px;}
.y1d1{bottom:826.012500px;}
.y94{bottom:828.408000px;}
.y147{bottom:830.214000px;}
.y6a{bottom:830.710500px;}
.y8{bottom:830.872500px;}
.yef{bottom:831.993000px;}
.y39{bottom:835.890000px;}
.y176{bottom:835.965000px;}
.y11c{bottom:840.468000px;}
.y1d0{bottom:840.957000px;}
.y69{bottom:847.074000px;}
.y7{bottom:847.236000px;}
.y1a1{bottom:849.118500px;}
.y38{bottom:852.253500px;}
.y175{bottom:852.328500px;}
.y1cf{bottom:855.900000px;}
.y11b{bottom:856.831500px;}
.y146{bottom:859.404000px;}
.y6{bottom:863.599500px;}
.y91{bottom:867.216000px;}
.y37{bottom:868.617000px;}
.y174{bottom:868.692000px;}
.y68{bottom:870.184500px;}
.y1ce{bottom:870.844500px;}
.ybb{bottom:871.818000px;}
.y11a{bottom:873.195000px;}
.y145{bottom:875.767500px;}
.yee{bottom:876.762000px;}
.y1a0{bottom:878.557500px;}
.y5{bottom:879.963000px;}
.y90{bottom:883.579500px;}
.y173{bottom:885.055500px;}
.y1cd{bottom:885.789000px;}
.y67{bottom:886.548000px;}
.yba{bottom:886.762500px;}
.y119{bottom:889.558500px;}
.y144{bottom:892.131000px;}
.yed{bottom:893.125500px;}
.y36{bottom:893.200500px;}
.y4{bottom:896.326500px;}
.y1cc{bottom:900.732000px;}
.y172{bottom:901.419000px;}
.yb9{bottom:901.707000px;}
.y66{bottom:902.911500px;}
.y118{bottom:905.922000px;}
.y19f{bottom:907.996500px;}
.yec{bottom:909.489000px;}
.y35{bottom:909.564000px;}
.y8f{bottom:914.490000px;}
.y1cb{bottom:915.676500px;}
.y171{bottom:917.784000px;}
.y65{bottom:919.275000px;}
.y143{bottom:921.321000px;}
.y117{bottom:922.285500px;}
.y19e{bottom:924.360000px;}
.yb8{bottom:924.459000px;}
.y34{bottom:925.927500px;}
.y1ca{bottom:930.621000px;}
.yeb{bottom:934.072500px;}
.y170{bottom:934.147500px;}
.y142{bottom:937.684500px;}
.y116{bottom:938.649000px;}
.y33{bottom:942.291000px;}
.y64{bottom:942.387000px;}
.y1c9{bottom:945.564000px;}
.yea{bottom:950.436000px;}
.y16f{bottom:950.511000px;}
.y19d{bottom:953.799000px;}
.y141{bottom:954.048000px;}
.yb7{bottom:956.176500px;}
.y32{bottom:958.654500px;}
.y63{bottom:958.750500px;}
.y8e{bottom:959.026500px;}
.y1c8{bottom:960.508500px;}
.ye9{bottom:966.799500px;}
.y3{bottom:966.810000px;}
.y16e{bottom:966.874500px;}
.y115{bottom:969.126000px;}
.y19c{bottom:970.162500px;}
.y31{bottom:975.018000px;}
.y62{bottom:975.114000px;}
.y140{bottom:983.238000px;}
.y1c7{bottom:983.260500px;}
.y8d{bottom:984.513000px;}
.y114{bottom:985.489500px;}
.y30{bottom:991.383000px;}
.y2{bottom:996.699000px;}
.yd2{bottom:999.526500px;}
.y13f{bottom:999.601500px;}
.yb6{bottom:1004.800500px;}
.y2f{bottom:1007.746500px;}
.y1c6{bottom:1014.979500px;}
.y113{bottom:1015.965000px;}
.yb5{bottom:1021.164000px;}
.y8c{bottom:1023.625500px;}
.y2e{bottom:1024.110000px;}
.y1{bottom:1026.586500px;}
.y61{bottom:1032.328500px;}
.y8b{bottom:1039.989000px;}
.y2d{bottom:1048.692000px;}
.y2c{bottom:1065.055500px;}
.yd1{bottom:1070.479500px;}
.he{height:0.000000px;}
.hb{height:24.245064px;}
.h6{height:25.249298px;}
.ha{height:28.285936px;}
.hd{height:29.039111px;}
.hf{height:37.981586px;}
.h7{height:40.348710px;}
.h4{height:41.484433px;}
.h8{height:42.141967px;}
.h3{height:44.831880px;}
.h9{height:49.975936px;}
.h10{height:49.981936px;}
.h5{height:50.211714px;}
.h2{height:51.153542px;}
.h1{height:72.304848px;}
.hc{height:80.908244px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa5{left:159.877500px;}
.xe{left:161.461500px;}
.x1{left:164.190000px;}
.x13{left:166.237500px;}
.x4c{left:168.406500px;}
.x9f{left:169.471500px;}
.x14{left:173.544000px;}
.xd{left:180.607500px;}
.x15{left:182.452500px;}
.x51{left:186.210000px;}
.xa0{left:192.336000px;}
.x60{left:193.383000px;}
.x2{left:195.720000px;}
.x16{left:197.397000px;}
.x45{left:205.987500px;}
.x5a{left:209.268000px;}
.x46{left:213.459000px;}
.x10{left:215.799000px;}
.x6{left:221.554500px;}
.x8e{left:225.468000px;}
.x5b{left:228.102000px;}
.x7{left:235.362000px;}
.x8f{left:240.412500px;}
.x3b{left:244.777500px;}
.x48{left:246.106500px;}
.x3c{left:252.249000px;}
.x4{left:254.797500px;}
.x49{left:261.049500px;}
.x3{left:263.350500px;}
.x1b{left:268.021500px;}
.x7d{left:269.629500px;}
.x2d{left:270.664500px;}
.x1c{left:282.966000px;}
.x5f{left:284.451000px;}
.x5{left:289.803000px;}
.x9e{left:294.208500px;}
.x8c{left:296.577000px;}
.x88{left:297.922500px;}
.x9a{left:301.009500px;}
.x8d{left:304.048500px;}
.x12{left:305.052000px;}
.x53{left:308.031000px;}
.x68{left:311.754000px;}
.x21{left:318.396000px;}
.xa8{left:320.947500px;}
.x54{left:322.975500px;}
.x81{left:327.517500px;}
.x78{left:330.486000px;}
.x22{left:333.339000px;}
.x4f{left:337.446000px;}
.x89{left:339.433500px;}
.x1d{left:346.609500px;}
.x50{left:352.390500px;}
.x41{left:353.896500px;}
.x55{left:358.741500px;}
.x1e{left:361.554000px;}
.x77{left:367.221000px;}
.x42{left:368.839500px;}
.x82{left:372.613500px;}
.x79{left:376.149000px;}
.xa1{left:380.982000px;}
.x7a{left:385.627500px;}
.x69{left:390.091500px;}
.x96{left:395.086500px;}
.x6a{left:399.177000px;}
.x24{left:402.061500px;}
.x97{left:410.031000px;}
.x25{left:417.004500px;}
.x6d{left:418.429500px;}
.xf{left:420.426000px;}
.x83{left:427.129500px;}
.x2a{left:432.547500px;}
.x9b{left:436.156500px;}
.x2b{left:440.020500px;}
.x19{left:441.612000px;}
.x52{left:443.254500px;}
.x6e{left:444.996000px;}
.x7b{left:447.819000px;}
.x63{left:449.875500px;}
.xa{left:451.066500px;}
.x73{left:454.009500px;}
.x2c{left:455.263500px;}
.x1a{left:456.556500px;}
.x57{left:459.546000px;}
.xb{left:461.245500px;}
.x6b{left:464.782500px;}
.x56{left:465.811500px;}
.x64{left:468.153000px;}
.x7c{left:470.002500px;}
.x43{left:475.330500px;}
.x6c{left:476.469000px;}
.x5c{left:478.825500px;}
.x92{left:483.799500px;}
.x58{left:485.416500px;}
.x4a{left:487.062000px;}
.x44{left:490.273500px;}
.x11{left:491.940000px;}
.x61{left:496.701000px;}
.x67{left:498.195000px;}
.x4b{left:502.005000px;}
.x74{left:506.617500px;}
.x7e{left:508.093500px;}
.x47{left:511.999500px;}
.xc{left:514.914000px;}
.x9{left:524.523000px;}
.x28{left:527.847000px;}
.xa4{left:529.270500px;}
.x62{left:531.079500px;}
.x75{left:533.457000px;}
.x7f{left:534.741000px;}
.x8{left:536.350500px;}
.x35{left:540.865500px;}
.x29{left:542.791500px;}
.x93{left:545.193000px;}
.x86{left:546.664500px;}
.x23{left:550.963500px;}
.x6f{left:553.837500px;}
.x36{left:555.810000px;}
.x37{left:569.010000px;}
.x94{left:571.794000px;}
.x70{left:580.405500px;}
.x30{left:582.474000px;}
.x38{left:583.954500px;}
.x84{left:585.012000px;}
.x3d{left:587.601000px;}
.x80{left:589.327500px;}
.x65{left:592.206000px;}
.x4d{left:595.243500px;}
.x66{left:599.679000px;}
.x3e{left:602.545500px;}
.x33{left:604.882500px;}
.x4e{left:610.188000px;}
.x85{left:613.033500px;}
.x2e{left:616.531500px;}
.x34{left:619.825500px;}
.x17{left:627.034500px;}
.x9c{left:629.814000px;}
.x2f{left:631.476000px;}
.x87{left:633.102000px;}
.x8a{left:636.631500px;}
.x5d{left:638.181000px;}
.x26{left:642.637500px;}
.x9d{left:644.758500px;}
.x3f{left:649.264500px;}
.x8b{left:651.576000px;}
.x95{left:658.779000px;}
.x5e{left:662.479500px;}
.x40{left:664.207500px;}
.x39{left:666.259500px;}
.x18{left:668.067000px;}
.x3a{left:673.732500px;}
.x90{left:674.938500px;}
.x91{left:689.883000px;}
.xa3{left:694.804500px;}
.x98{left:697.197000px;}
.x31{left:699.681000px;}
.x99{left:704.668500px;}
.xa2{left:712.857000px;}
.x32{left:714.625500px;}
.x71{left:716.874000px;}
.x76{left:720.534000px;}
.x1f{left:735.744000px;}
.xa6{left:736.968000px;}
.x59{left:738.067500px;}
.x27{left:742.462500px;}
.x72{left:749.301000px;}
.x20{left:750.688500px;}
.xa7{left:751.912500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-19.285333pt;}
.v4{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:35.946667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000313pt;}
.ls20{letter-spacing:0.000525pt;}
.lse{letter-spacing:0.000578pt;}
.ls2b{letter-spacing:0.001304pt;}
.ls14{letter-spacing:0.002019pt;}
.ls29{letter-spacing:0.002059pt;}
.ls6{letter-spacing:0.003627pt;}
.ls12{letter-spacing:0.004962pt;}
.lsd{letter-spacing:1.147040pt;}
.lsa{letter-spacing:1.476570pt;}
.ls9{letter-spacing:1.903044pt;}
.ls4{letter-spacing:2.655357pt;}
.ls1{letter-spacing:2.657447pt;}
.ls7{letter-spacing:2.659726pt;}
.ls8{letter-spacing:2.660690pt;}
.ls0{letter-spacing:2.660929pt;}
.ls11{letter-spacing:3.991858pt;}
.ls10{letter-spacing:11.802979pt;}
.ls16{letter-spacing:11.804686pt;}
.ls15{letter-spacing:11.806293pt;}
.ls17{letter-spacing:11.810019pt;}
.ls21{letter-spacing:13.649304pt;}
.ls1f{letter-spacing:13.651074pt;}
.ls2d{letter-spacing:13.654638pt;}
.ls24{letter-spacing:13.691971pt;}
.ls5{letter-spacing:14.757646pt;}
.ls28{letter-spacing:14.761578pt;}
.ls1b{letter-spacing:14.797284pt;}
.ls1e{letter-spacing:14.798911pt;}
.ls1c{letter-spacing:14.800313pt;}
.ls3{letter-spacing:14.837646pt;}
.lsf{letter-spacing:15.611040pt;}
.ls25{letter-spacing:15.657578pt;}
.ls22{letter-spacing:16.020244pt;}
.ls23{letter-spacing:16.184921pt;}
.ls27{letter-spacing:17.692726pt;}
.ls13{letter-spacing:18.103293pt;}
.lsb{letter-spacing:18.749191pt;}
.ls2c{letter-spacing:20.481394pt;}
.ls2a{letter-spacing:21.920313pt;}
.ls26{letter-spacing:22.133473pt;}
.lsc{letter-spacing:25.274979pt;}
.ls1a{letter-spacing:27.770979pt;}
.ls19{letter-spacing:27.891275pt;}
.ls18{letter-spacing:27.896608pt;}
.wsa8{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384800pt;}
.ws3{word-spacing:-53.134080pt;}
.ws20{word-spacing:-47.820693pt;}
.wsc9{word-spacing:-41.019510pt;}
.wsfe{word-spacing:-40.860108pt;}
.wsf5{word-spacing:-40.806973pt;}
.ws91{word-spacing:-40.381901pt;}
.ws90{word-spacing:-40.328767pt;}
.wsa7{word-spacing:-40.275633pt;}
.wse9{word-spacing:-40.063096pt;}
.ws1d{word-spacing:-39.903694pt;}
.ws47{word-spacing:-39.850567pt;}
.wsc4{word-spacing:-39.425487pt;}
.ws1b{word-spacing:-39.372353pt;}
.ws1a{word-spacing:-39.319219pt;}
.wsff{word-spacing:-39.106683pt;}
.wsa6{word-spacing:-38.947281pt;}
.ws40{word-spacing:-38.894147pt;}
.ws100{word-spacing:-38.628476pt;}
.ws46{word-spacing:-38.575342pt;}
.wsc5{word-spacing:-38.362806pt;}
.wsdd{word-spacing:-38.256538pt;}
.ws48{word-spacing:-38.150269pt;}
.ws38{word-spacing:-37.990867pt;}
.wse8{word-spacing:-37.884599pt;}
.wsf6{word-spacing:-37.831465pt;}
.ws3d{word-spacing:-37.672063pt;}
.wsd5{word-spacing:-37.512660pt;}
.wsea{word-spacing:-37.406392pt;}
.wsdf{word-spacing:-37.353258pt;}
.wsdb{word-spacing:-37.300124pt;}
.wsbb{word-spacing:-37.246990pt;}
.wsa5{word-spacing:-37.193867pt;}
.ws32{word-spacing:-37.193856pt;}
.wsf7{word-spacing:-36.981320pt;}
.ws14{word-spacing:-36.928186pt;}
.wsa0{word-spacing:-36.875052pt;}
.ws9f{word-spacing:-36.821917pt;}
.wsbf{word-spacing:-36.768783pt;}
.ws31{word-spacing:-36.662515pt;}
.ws6{word-spacing:-36.609381pt;}
.ws57{word-spacing:-36.503113pt;}
.ws45{word-spacing:-36.396845pt;}
.ws15{word-spacing:-36.290577pt;}
.wsa2{word-spacing:-36.237443pt;}
.wsab{word-spacing:-36.184308pt;}
.ws43{word-spacing:-36.131174pt;}
.wsd0{word-spacing:-36.024906pt;}
.ws10f{word-spacing:-35.971772pt;}
.ws44{word-spacing:-35.918638pt;}
.ws25{word-spacing:-35.865504pt;}
.ws10{word-spacing:-35.812370pt;}
.ws18{word-spacing:-35.759236pt;}
.wsf{word-spacing:-35.706102pt;}
.wsa{word-spacing:-35.652968pt;}
.ws5{word-spacing:-35.599834pt;}
.ws13{word-spacing:-35.546700pt;}
.ws8{word-spacing:-35.493565pt;}
.ws8c{word-spacing:-35.441943pt;}
.wsad{word-spacing:-35.441676pt;}
.wsf8{word-spacing:-35.440621pt;}
.ws2{word-spacing:-35.440431pt;}
.wsc2{word-spacing:-35.438790pt;}
.wsd1{word-spacing:-35.437654pt;}
.ws8a{word-spacing:-35.436271pt;}
.ws9{word-spacing:-35.387297pt;}
.ws2b{word-spacing:-35.334163pt;}
.ws11{word-spacing:-35.281029pt;}
.ws1c{word-spacing:-35.227895pt;}
.wsc{word-spacing:-35.174761pt;}
.wse{word-spacing:-35.121627pt;}
.ws19{word-spacing:-35.068493pt;}
.wsbd{word-spacing:-35.015359pt;}
.wsd7{word-spacing:-34.962225pt;}
.wsca{word-spacing:-34.909091pt;}
.ws66{word-spacing:-34.855956pt;}
.ws2e{word-spacing:-34.802822pt;}
.wsc1{word-spacing:-34.749688pt;}
.ws22{word-spacing:-34.696554pt;}
.ws94{word-spacing:-34.590286pt;}
.ws95{word-spacing:-34.537152pt;}
.wsc7{word-spacing:-34.484018pt;}
.wsd{word-spacing:-34.430884pt;}
.wse7{word-spacing:-34.391365pt;}
.wsba{word-spacing:-34.377750pt;}
.ws27{word-spacing:-34.324616pt;}
.ws96{word-spacing:-34.271482pt;}
.ws39{word-spacing:-34.218348pt;}
.wsa4{word-spacing:-34.165213pt;}
.wsc6{word-spacing:-34.112079pt;}
.wsac{word-spacing:-34.058945pt;}
.wsae{word-spacing:-33.952677pt;}
.ws35{word-spacing:-33.899543pt;}
.ws24{word-spacing:-33.846409pt;}
.ws12{word-spacing:-33.740141pt;}
.ws3c{word-spacing:-33.527604pt;}
.wse1{word-spacing:-33.474470pt;}
.ws3e{word-spacing:-33.421336pt;}
.wsd9{word-spacing:-33.368202pt;}
.wscf{word-spacing:-33.315068pt;}
.wsd2{word-spacing:-33.208800pt;}
.wscb{word-spacing:-33.102532pt;}
.ws2a{word-spacing:-33.049398pt;}
.ws3b{word-spacing:-32.996264pt;}
.ws3f{word-spacing:-32.889996pt;}
.ws7{word-spacing:-32.836861pt;}
.ws1{word-spacing:-32.783727pt;}
.ws9e{word-spacing:-32.757175pt;}
.ws29{word-spacing:-32.730593pt;}
.ws2f{word-spacing:-32.571191pt;}
.ws70{word-spacing:-32.518057pt;}
.wsb{word-spacing:-32.464923pt;}
.ws63{word-spacing:-32.411789pt;}
.wse4{word-spacing:-32.358655pt;}
.wsc3{word-spacing:-32.305521pt;}
.wsbe{word-spacing:-32.252387pt;}
.wsd3{word-spacing:-32.199252pt;}
.ws101{word-spacing:-32.163257pt;}
.wsc8{word-spacing:-32.092984pt;}
.wsaa{word-spacing:-32.039850pt;}
.ws37{word-spacing:-31.986716pt;}
.ws36{word-spacing:-31.933582pt;}
.wsc0{word-spacing:-31.880448pt;}
.wsb4{word-spacing:-31.880427pt;}
.ws10e{word-spacing:-31.776780pt;}
.ws3a{word-spacing:-31.774180pt;}
.ws4a{word-spacing:-31.721046pt;}
.wsd4{word-spacing:-31.667912pt;}
.ws8f{word-spacing:-31.614778pt;}
.ws4d{word-spacing:-31.609478pt;}
.ws8e{word-spacing:-31.561644pt;}
.ws73{word-spacing:-31.513837pt;}
.ws1f{word-spacing:-31.466016pt;}
.wsb3{word-spacing:-31.420957pt;}
.ws69{word-spacing:-31.420643pt;}
.ws79{word-spacing:-31.419993pt;}
.ws4e{word-spacing:-31.418196pt;}
.wsd8{word-spacing:-31.402241pt;}
.ws4f{word-spacing:-31.370375pt;}
.wsb9{word-spacing:-31.295973pt;}
.ws85{word-spacing:-31.226913pt;}
.wsf4{word-spacing:-31.189705pt;}
.ws68{word-spacing:-31.179092pt;}
.ws30{word-spacing:-31.136571pt;}
.ws33{word-spacing:-31.062577pt;}
.ws34{word-spacing:-31.030303pt;}
.wsbc{word-spacing:-30.977169pt;}
.wse2{word-spacing:-30.764632pt;}
.ws2d{word-spacing:-30.658364pt;}
.ws99{word-spacing:-30.609223pt;}
.wsb1{word-spacing:-30.605244pt;}
.ws7a{word-spacing:-30.603889pt;}
.wsaf{word-spacing:-30.557423pt;}
.ws92{word-spacing:-30.498962pt;}
.ws74{word-spacing:-30.461782pt;}
.ws93{word-spacing:-30.445828pt;}
.ws76{word-spacing:-30.432482pt;}
.wsce{word-spacing:-30.233292pt;}
.wsb8{word-spacing:-29.967621pt;}
.ws65{word-spacing:-29.914487pt;}
.wse6{word-spacing:-29.861353pt;}
.ws28{word-spacing:-29.701951pt;}
.ws72{word-spacing:-29.657678pt;}
.wsa1{word-spacing:-29.648817pt;}
.ws49{word-spacing:-29.542548pt;}
.ws67{word-spacing:-29.409726pt;}
.wsb0{word-spacing:-29.361906pt;}
.wse5{word-spacing:-29.276878pt;}
.wsda{word-spacing:-29.223744pt;}
.wse0{word-spacing:-29.011208pt;}
.wsb2{word-spacing:-28.978653pt;}
.ws88{word-spacing:-28.958074pt;}
.ws87{word-spacing:-28.948123pt;}
.ws83{word-spacing:-28.524593pt;}
.wsa3{word-spacing:-28.426733pt;}
.wsb5{word-spacing:-28.373599pt;}
.ws6a{word-spacing:-28.306215pt;}
.wscd{word-spacing:-28.214196pt;}
.ws62{word-spacing:-28.161062pt;}
.ws26{word-spacing:-28.054794pt;}
.ws75{word-spacing:-28.041271pt;}
.ws6b{word-spacing:-27.987287pt;}
.ws42{word-spacing:-27.948526pt;}
.ws59{word-spacing:-27.895392pt;}
.wsde{word-spacing:-27.735990pt;}
.wsa9{word-spacing:-27.364051pt;}
.ws2c{word-spacing:-27.310917pt;}
.wsd6{word-spacing:-27.257783pt;}
.ws6c{word-spacing:-26.992113pt;}
.ws9a{word-spacing:-26.827409pt;}
.ws9d{word-spacing:-26.779588pt;}
.wsdc{word-spacing:-26.620174pt;}
.wsb6{word-spacing:-26.567040pt;}
.wsb7{word-spacing:-26.513906pt;}
.ws64{word-spacing:-26.460772pt;}
.wse3{word-spacing:-26.354504pt;}
.wsf1{word-spacing:-26.035699pt;}
.ws1e{word-spacing:-25.966636pt;}
.wscc{word-spacing:-25.770029pt;}
.ws60{word-spacing:-25.242432pt;}
.ws5d{word-spacing:-25.239531pt;}
.ws58{word-spacing:-25.236256pt;}
.wsef{word-spacing:-24.547945pt;}
.wsf3{word-spacing:-24.441677pt;}
.ws21{word-spacing:-24.436374pt;}
.ws61{word-spacing:-24.388543pt;}
.wsf2{word-spacing:-24.335409pt;}
.ws41{word-spacing:-24.122872pt;}
.wsf9{word-spacing:-23.007057pt;}
.wsfa{word-spacing:-22.635118pt;}
.ws82{word-spacing:-22.045340pt;}
.wsfb{word-spacing:-21.466168pt;}
.ws7b{word-spacing:-20.036871pt;}
.wsfc{word-spacing:-19.500207pt;}
.ws7f{word-spacing:-17.071988pt;}
.wsfd{word-spacing:-17.002906pt;}
.ws8b{word-spacing:-16.843154pt;}
.wsed{word-spacing:-16.046492pt;}
.wseb{word-spacing:-13.549190pt;}
.wsee{word-spacing:-13.283520pt;}
.ws16{word-spacing:-10.200896pt;}
.wsec{word-spacing:-8.554587pt;}
.ws4c{word-spacing:-0.053134pt;}
.ws78{word-spacing:-0.047821pt;}
.ws5f{word-spacing:-0.003744pt;}
.ws5a{word-spacing:-0.002528pt;}
.ws17{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.002432pt;}
.ws5e{word-spacing:0.003648pt;}
.ws5b{word-spacing:0.004491pt;}
.ws54{word-spacing:11.742632pt;}
.ws50{word-spacing:11.797998pt;}
.ws77{word-spacing:13.581077pt;}
.ws86{word-spacing:13.628898pt;}
.ws53{word-spacing:14.425960pt;}
.ws52{word-spacing:14.665006pt;}
.ws71{word-spacing:14.718140pt;}
.ws23{word-spacing:14.744190pt;}
.ws89{word-spacing:15.568285pt;}
.ws55{word-spacing:15.791103pt;}
.ws6e{word-spacing:15.924291pt;}
.ws84{word-spacing:15.940224pt;}
.ws98{word-spacing:16.310333pt;}
.ws97{word-spacing:16.312714pt;}
.ws4b{word-spacing:17.637746pt;}
.ws6d{word-spacing:17.639453pt;}
.ws51{word-spacing:17.790141pt;}
.ws8d{word-spacing:17.807842pt;}
.ws6f{word-spacing:19.319560pt;}
.ws9c{word-spacing:21.997519pt;}
.ws4{word-spacing:22.247200pt;}
.ws9b{word-spacing:24.776349pt;}
.ws81{word-spacing:30.079216pt;}
.wsf0{word-spacing:31.189705pt;}
.ws7d{word-spacing:33.522306pt;}
.ws80{word-spacing:33.913820pt;}
.ws7c{word-spacing:36.217743pt;}
.ws7e{word-spacing:37.375153pt;}
.ws104{word-spacing:56.284956pt;}
.ws109{word-spacing:63.744984pt;}
.ws102{word-spacing:64.462295pt;}
.ws107{word-spacing:69.244364pt;}
.ws103{word-spacing:71.252833pt;}
.ws10d{word-spacing:78.139013pt;}
.ws10b{word-spacing:84.212241pt;}
.ws10a{word-spacing:87.655331pt;}
.ws106{word-spacing:91.767911pt;}
.ws10c{word-spacing:93.728559pt;}
.ws105{word-spacing:103.340518pt;}
.ws108{word-spacing:110.800546pt;}
.ws56{word-spacing:375.575422pt;}
._1a{margin-left:-7.332503pt;}
._2{margin-left:-5.784388pt;}
._4{margin-left:-4.410129pt;}
._0{margin-left:-2.846286pt;}
._6{margin-left:-1.487754pt;}
._5{width:1.487754pt;}
._3{width:2.846286pt;}
._25{width:4.440308pt;}
._19{width:5.788301pt;}
._21{width:13.814861pt;}
._9{width:15.036945pt;}
._13{width:16.843503pt;}
._10{width:18.411574pt;}
._27{width:19.599249pt;}
._c{width:20.509755pt;}
._18{width:21.567133pt;}
._8{width:22.635118pt;}
._7{width:23.542592pt;}
._24{width:24.441677pt;}
._14{width:25.398090pt;}
._b{width:26.460772pt;}
._e{width:27.523453pt;}
._23{width:28.639269pt;}
._f{width:29.881582pt;}
._12{width:31.614778pt;}
._28{width:32.547042pt;}
._11{width:33.670598pt;}
._16{width:35.281029pt;}
._22{width:37.755377pt;}
._d{width:39.136868pt;}
._2c{width:41.444582pt;}
._26{width:42.400996pt;}
._a{width:43.469010pt;}
._20{width:44.999272pt;}
._1{width:45.907840pt;}
._2e{width:47.577951pt;}
._2b{width:51.433789pt;}
._17{width:53.134080pt;}
._2d{width:57.331672pt;}
._2f{width:62.800574pt;}
._15{width:63.760907pt;}
._30{width:65.514321pt;}
._1d{width:67.140253pt;}
._1e{width:86.890200pt;}
._29{width:88.696660pt;}
._1f{width:99.217313pt;}
._2a{width:104.302199pt;}
._1b{width:223.466100pt;}
._1c{width:264.639717pt;}
.fs4{font-size:31.880427pt;}
.fs2{font-size:37.193867pt;}
.fs5{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:56.149333pt;}
.y2b{bottom:69.634667pt;}
.y2a{bottom:82.918667pt;}
.y5f{bottom:96.000000pt;}
.y29{bottom:96.201333pt;}
.ye8{bottom:101.078667pt;}
.yb4{bottom:109.284000pt;}
.ye7{bottom:110.364000pt;}
.y112{bottom:110.452000pt;}
.y5e{bottom:110.545333pt;}
.y8a{bottom:114.362667pt;}
.ye6{bottom:115.442667pt;}
.y1c5{bottom:122.065333pt;}
.yb3{bottom:123.648000pt;}
.y89{bottom:123.726667pt;}
.y111{bottom:123.734667pt;}
.ycb{bottom:124.272000pt;}
.ye5{bottom:124.808000pt;}
.y5d{bottom:125.090667pt;}
.y110{bottom:128.813333pt;}
.yca{bottom:129.350667pt;}
.y19b{bottom:136.492000pt;}
.y1c4{bottom:136.612000pt;}
.yb2{bottom:136.930667pt;}
.y88{bottom:137.010667pt;}
.ye4{bottom:138.090667pt;}
.yc9{bottom:138.950667pt;}
.y16d{bottom:139.636000pt;}
.y28{bottom:141.637333pt;}
.yb1{bottom:142.009333pt;}
.y87{bottom:142.089333pt;}
.ye3{bottom:143.169333pt;}
.y5c{bottom:145.670667pt;}
.y19a{bottom:151.037333pt;}
.y1c3{bottom:151.157333pt;}
.y10f{bottom:151.702667pt;}
.y13e{bottom:152.181333pt;}
.yc8{bottom:152.233333pt;}
.ye2{bottom:152.454667pt;}
.y16c{bottom:154.181333pt;}
.y27{bottom:156.236000pt;}
.yc7{bottom:157.312000pt;}
.y5b{bottom:160.216000pt;}
.y86{bottom:163.290667pt;}
.y199{bottom:165.582667pt;}
.y1c2{bottom:165.702667pt;}
.ye1{bottom:165.738667pt;}
.y10e{bottom:166.248000pt;}
.yc6{bottom:166.597333pt;}
.y13d{bottom:166.726667pt;}
.yb0{bottom:166.846667pt;}
.y16b{bottom:168.726667pt;}
.yd0{bottom:170.065333pt;}
.ye0{bottom:170.817333pt;}
.y5a{bottom:174.762667pt;}
.y26{bottom:177.960000pt;}
.yc5{bottom:179.881333pt;}
.ydf{bottom:180.102667pt;}
.y198{bottom:180.128000pt;}
.y1c1{bottom:180.248000pt;}
.y10d{bottom:180.793333pt;}
.yaf{bottom:181.392000pt;}
.y16a{bottom:183.273333pt;}
.y59{bottom:189.308000pt;}
.y85{bottom:192.296000pt;}
.y25{bottom:192.505333pt;}
.yc4{bottom:193.164000pt;}
.yde{bottom:193.385333pt;}
.y13c{bottom:193.816000pt;}
.y197{bottom:194.673333pt;}
.y10c{bottom:195.338667pt;}
.y169{bottom:197.818667pt;}
.yc3{bottom:198.242667pt;}
.ydd{bottom:198.464000pt;}
.y1c0{bottom:202.098667pt;}
.y84{bottom:206.841333pt;}
.y24{bottom:207.050667pt;}
.y13b{bottom:208.361333pt;}
.y196{bottom:209.218667pt;}
.y58{bottom:209.888000pt;}
.yae{bottom:211.701333pt;}
.y168{bottom:212.364000pt;}
.y1bf{bottom:216.644000pt;}
.y23{bottom:221.596000pt;}
.y57{bottom:224.433333pt;}
.y10b{bottom:225.041333pt;}
.ydc{bottom:225.304000pt;}
.yad{bottom:226.246667pt;}
.y167{bottom:226.909333pt;}
.y83{bottom:227.385333pt;}
.y1be{bottom:231.190667pt;}
.y195{bottom:235.165333pt;}
.y13a{bottom:235.452000pt;}
.y22{bottom:236.141333pt;}
.y56{bottom:238.978667pt;}
.y10a{bottom:239.586667pt;}
.ydb{bottom:239.849333pt;}
.y166{bottom:241.454667pt;}
.yc2{bottom:245.438667pt;}
.y1bd{bottom:245.736000pt;}
.yac{bottom:248.528000pt;}
.y194{bottom:249.710667pt;}
.y139{bottom:249.997333pt;}
.y1bc{bottom:250.556000pt;}
.y109{bottom:254.132000pt;}
.y165{bottom:256.000000pt;}
.y82{bottom:256.390667pt;}
.y55{bottom:259.558667pt;}
.yc0{bottom:259.984000pt;}
.yda{bottom:261.701333pt;}
.yab{bottom:263.074667pt;}
.y138{bottom:264.542667pt;}
.yc1{bottom:264.805333pt;}
.y21{bottom:267.641333pt;}
.y164{bottom:270.545333pt;}
.y54{bottom:274.104000pt;}
.y193{bottom:275.657333pt;}
.yd9{bottom:276.246667pt;}
.y1bb{bottom:276.496000pt;}
.yaa{bottom:277.620000pt;}
.y108{bottom:283.836000pt;}
.y163{bottom:285.090667pt;}
.y81{bottom:285.397333pt;}
.y53{bottom:288.649333pt;}
.yd8{bottom:290.792000pt;}
.y137{bottom:291.632000pt;}
.y107{bottom:298.381333pt;}
.y162{bottom:299.636000pt;}
.ya9{bottom:299.901333pt;}
.y192{bottom:301.604000pt;}
.y52{bottom:303.194667pt;}
.yd6{bottom:305.337333pt;}
.y80{bottom:305.941333pt;}
.y136{bottom:306.177333pt;}
.yd7{bottom:310.157333pt;}
.y106{bottom:312.926667pt;}
.ybf{bottom:313.029333pt;}
.y161{bottom:314.181333pt;}
.ya8{bottom:314.446667pt;}
.y20{bottom:314.630667pt;}
.y191{bottom:316.149333pt;}
.yd5{bottom:319.882667pt;}
.y135{bottom:320.724000pt;}
.y1ba{bottom:321.401333pt;}
.y105{bottom:327.472000pt;}
.y160{bottom:328.726667pt;}
.y1f{bottom:329.176000pt;}
.y190{bottom:330.694667pt;}
.y51{bottom:332.229333pt;}
.y7f{bottom:334.946667pt;}
.y1b9{bottom:335.946667pt;}
.ya7{bottom:336.728000pt;}
.y104{bottom:342.017333pt;}
.y15f{bottom:343.272000pt;}
.y1e{bottom:343.721333pt;}
.y134{bottom:347.813333pt;}
.y1b8{bottom:350.492000pt;}
.ya6{bottom:351.273333pt;}
.yd4{bottom:352.346667pt;}
.y50{bottom:354.081333pt;}
.y103{bottom:356.562667pt;}
.y18f{bottom:356.641333pt;}
.y7e{bottom:356.798667pt;}
.y15e{bottom:357.818667pt;}
.y1d{bottom:358.266667pt;}
.y133{bottom:362.358667pt;}
.y1b7{bottom:365.037333pt;}
.y4f{bottom:368.626667pt;}
.y18e{bottom:371.186667pt;}
.y7d{bottom:371.344000pt;}
.y15d{bottom:372.364000pt;}
.y1c{bottom:372.813333pt;}
.ya5{bottom:373.554667pt;}
.y132{bottom:376.904000pt;}
.y1b6{bottom:379.582667pt;}
.y102{bottom:381.160000pt;}
.y4e{bottom:383.172000pt;}
.y18d{bottom:385.732000pt;}
.y7c{bottom:385.889333pt;}
.y15c{bottom:386.909333pt;}
.y1b{bottom:387.358667pt;}
.ya4{bottom:388.100000pt;}
.y7b{bottom:390.709333pt;}
.y1b5{bottom:394.128000pt;}
.y4d{bottom:397.717333pt;}
.yd3{bottom:399.308000pt;}
.y18c{bottom:400.278667pt;}
.y15b{bottom:401.454667pt;}
.y1a{bottom:401.904000pt;}
.ya3{bottom:402.645333pt;}
.y131{bottom:403.994667pt;}
.y4c{bottom:412.262667pt;}
.y7a{bottom:412.616000pt;}
.y18b{bottom:414.824000pt;}
.y19{bottom:416.449333pt;}
.y130{bottom:418.540000pt;}
.y1b4{bottom:420.296000pt;}
.y101{bottom:420.954667pt;}
.y15a{bottom:427.401333pt;}
.y18a{bottom:429.369333pt;}
.y18{bottom:430.994667pt;}
.ya2{bottom:432.956000pt;}
.y12f{bottom:433.085333pt;}
.y4b{bottom:434.113333pt;}
.y1b3{bottom:434.841333pt;}
.y100{bottom:435.500000pt;}
.y159{bottom:441.946667pt;}
.y79{bottom:443.497333pt;}
.y17{bottom:445.540000pt;}
.y12e{bottom:447.630667pt;}
.y4a{bottom:448.660000pt;}
.y1b2{bottom:449.388000pt;}
.y189{bottom:455.316000pt;}
.y158{bottom:456.492000pt;}
.yff{bottom:457.352000pt;}
.y16{bottom:460.085333pt;}
.ya1{bottom:460.430667pt;}
.y12d{bottom:462.176000pt;}
.y49{bottom:463.205333pt;}
.y1b1{bottom:463.933333pt;}
.y188{bottom:469.861333pt;}
.y157{bottom:471.037333pt;}
.yfe{bottom:471.897333pt;}
.y15{bottom:474.630667pt;}
.y48{bottom:477.750667pt;}
.y1b0{bottom:478.478667pt;}
.y78{bottom:481.588000pt;}
.y187{bottom:484.406667pt;}
.y156{bottom:485.582667pt;}
.yfd{bottom:486.442667pt;}
.y14{bottom:489.176000pt;}
.y12c{bottom:489.265333pt;}
.y47{bottom:492.296000pt;}
.y1af{bottom:493.024000pt;}
.ya0{bottom:495.198667pt;}
.y77{bottom:496.133333pt;}
.y155{bottom:500.128000pt;}
.yfc{bottom:500.988000pt;}
.y13{bottom:503.721333pt;}
.y12b{bottom:503.812000pt;}
.y46{bottom:506.841333pt;}
.y1ae{bottom:507.569333pt;}
.y9f{bottom:509.412000pt;}
.y186{bottom:510.353333pt;}
.y76{bottom:510.678667pt;}
.y154{bottom:514.673333pt;}
.yfb{bottom:515.533333pt;}
.y12{bottom:518.266667pt;}
.y9e{bottom:523.292000pt;}
.y185{bottom:524.898667pt;}
.y75{bottom:525.224000pt;}
.ycf{bottom:525.490667pt;}
.y153{bottom:529.218667pt;}
.yfa{bottom:530.078667pt;}
.y12a{bottom:530.901333pt;}
.y11{bottom:532.813333pt;}
.y1ad{bottom:533.737333pt;}
.yf9{bottom:534.898667pt;}
.y45{bottom:535.874667pt;}
.y184{bottom:539.444000pt;}
.y74{bottom:539.769333pt;}
.ycd{bottom:540.036000pt;}
.y152{bottom:543.764000pt;}
.yce{bottom:544.856000pt;}
.y129{bottom:545.446667pt;}
.y10{bottom:547.358667pt;}
.y1ac{bottom:548.282667pt;}
.y1dc{bottom:548.366667pt;}
.y44{bottom:550.421333pt;}
.y9d{bottom:553.602667pt;}
.y183{bottom:553.989333pt;}
.y151{bottom:558.310667pt;}
.y128{bottom:559.992000pt;}
.y73{bottom:561.621333pt;}
.yf{bottom:561.904000pt;}
.yf8{bottom:561.982667pt;}
.y1db{bottom:562.912000pt;}
.y182{bottom:568.534667pt;}
.y43{bottom:571.001333pt;}
.y150{bottom:572.856000pt;}
.y1ab{bottom:574.450667pt;}
.y127{bottom:574.537333pt;}
.y9c{bottom:575.454667pt;}
.y72{bottom:576.166667pt;}
.yf7{bottom:580.580000pt;}
.y181{bottom:583.080000pt;}
.y1da{bottom:584.764000pt;}
.y42{bottom:585.546667pt;}
.y14f{bottom:587.401333pt;}
.y1aa{bottom:588.996000pt;}
.y126{bottom:589.082667pt;}
.y9b{bottom:590.000000pt;}
.y71{bottom:590.712000pt;}
.ye{bottom:594.488000pt;}
.y180{bottom:597.625333pt;}
.ycc{bottom:598.045333pt;}
.y1d9{bottom:599.309333pt;}
.y41{bottom:600.092000pt;}
.y14e{bottom:601.946667pt;}
.y125{bottom:603.628000pt;}
.y70{bottom:605.257333pt;}
.y17f{bottom:612.170667pt;}
.y1d8{bottom:613.854667pt;}
.y1a9{bottom:615.164000pt;}
.yd{bottom:616.233333pt;}
.y124{bottom:618.173333pt;}
.yf6{bottom:620.373333pt;}
.y40{bottom:620.672000pt;}
.y9a{bottom:620.798667pt;}
.y17e{bottom:626.716000pt;}
.y14d{bottom:627.893333pt;}
.y1d7{bottom:628.400000pt;}
.y1a8{bottom:629.709333pt;}
.y123{bottom:632.720000pt;}
.yf5{bottom:634.918667pt;}
.y3f{bottom:635.217333pt;}
.y6f{bottom:636.138667pt;}
.yc{bottom:639.901333pt;}
.y17d{bottom:641.262667pt;}
.y14c{bottom:642.438667pt;}
.y1d6{bottom:642.945333pt;}
.y1a7{bottom:644.254667pt;}
.y122{bottom:647.265333pt;}
.yf4{bottom:649.464000pt;}
.y3e{bottom:649.762667pt;}
.yb{bottom:654.446667pt;}
.y17c{bottom:655.808000pt;}
.y1d5{bottom:657.490667pt;}
.y1a6{bottom:658.800000pt;}
.y99{bottom:660.828000pt;}
.y121{bottom:661.810667pt;}
.yf3{bottom:664.009333pt;}
.y14b{bottom:668.385333pt;}
.ya{bottom:668.993333pt;}
.y3d{bottom:670.342667pt;}
.y17b{bottom:670.353333pt;}
.y1d4{bottom:672.036000pt;}
.y1a5{bottom:673.345333pt;}
.y6e{bottom:674.229333pt;}
.y98{bottom:675.374667pt;}
.yf2{bottom:678.556000pt;}
.y14a{bottom:682.930667pt;}
.y9{bottom:683.538667pt;}
.y3c{bottom:684.889333pt;}
.y17a{bottom:684.898667pt;}
.y6d{bottom:688.774667pt;}
.y120{bottom:688.900000pt;}
.yf1{bottom:693.101333pt;}
.y149{bottom:697.476000pt;}
.y179{bottom:699.444000pt;}
.y1a4{bottom:699.513333pt;}
.y6c{bottom:703.320000pt;}
.y11f{bottom:703.445333pt;}
.y96{bottom:704.246667pt;}
.yf0{bottom:707.646667pt;}
.y1d3{bottom:707.666667pt;}
.y93{bottom:710.646667pt;}
.ybe{bottom:711.508000pt;}
.y3b{bottom:713.922667pt;}
.y178{bottom:713.989333pt;}
.y1a3{bottom:714.058667pt;}
.y11e{bottom:717.990667pt;}
.y92{bottom:719.758667pt;}
.y1d2{bottom:720.949333pt;}
.y148{bottom:723.422667pt;}
.y6b{bottom:723.864000pt;}
.ybc{bottom:726.054667pt;}
.y3a{bottom:728.468000pt;}
.y177{bottom:728.534667pt;}
.y1a2{bottom:728.604000pt;}
.y97{bottom:728.745333pt;}
.ybd{bottom:730.874667pt;}
.y95{bottom:732.378667pt;}
.y11d{bottom:732.536000pt;}
.y1d1{bottom:734.233333pt;}
.y94{bottom:736.362667pt;}
.y147{bottom:737.968000pt;}
.y6a{bottom:738.409333pt;}
.y8{bottom:738.553333pt;}
.yef{bottom:739.549333pt;}
.y39{bottom:743.013333pt;}
.y176{bottom:743.080000pt;}
.y11c{bottom:747.082667pt;}
.y1d0{bottom:747.517333pt;}
.y69{bottom:752.954667pt;}
.y7{bottom:753.098667pt;}
.y1a1{bottom:754.772000pt;}
.y38{bottom:757.558667pt;}
.y175{bottom:757.625333pt;}
.y1cf{bottom:760.800000pt;}
.y11b{bottom:761.628000pt;}
.y146{bottom:763.914667pt;}
.y6{bottom:767.644000pt;}
.y91{bottom:770.858667pt;}
.y37{bottom:772.104000pt;}
.y174{bottom:772.170667pt;}
.y68{bottom:773.497333pt;}
.y1ce{bottom:774.084000pt;}
.ybb{bottom:774.949333pt;}
.y11a{bottom:776.173333pt;}
.y145{bottom:778.460000pt;}
.yee{bottom:779.344000pt;}
.y1a0{bottom:780.940000pt;}
.y5{bottom:782.189333pt;}
.y90{bottom:785.404000pt;}
.y173{bottom:786.716000pt;}
.y1cd{bottom:787.368000pt;}
.y67{bottom:788.042667pt;}
.yba{bottom:788.233333pt;}
.y119{bottom:790.718667pt;}
.y144{bottom:793.005333pt;}
.yed{bottom:793.889333pt;}
.y36{bottom:793.956000pt;}
.y4{bottom:796.734667pt;}
.y1cc{bottom:800.650667pt;}
.y172{bottom:801.261333pt;}
.yb9{bottom:801.517333pt;}
.y66{bottom:802.588000pt;}
.y118{bottom:805.264000pt;}
.y19f{bottom:807.108000pt;}
.yec{bottom:808.434667pt;}
.y35{bottom:808.501333pt;}
.y8f{bottom:812.880000pt;}
.y1cb{bottom:813.934667pt;}
.y171{bottom:815.808000pt;}
.y65{bottom:817.133333pt;}
.y143{bottom:818.952000pt;}
.y117{bottom:819.809333pt;}
.y19e{bottom:821.653333pt;}
.yb8{bottom:821.741333pt;}
.y34{bottom:823.046667pt;}
.y1ca{bottom:827.218667pt;}
.yeb{bottom:830.286667pt;}
.y170{bottom:830.353333pt;}
.y142{bottom:833.497333pt;}
.y116{bottom:834.354667pt;}
.y33{bottom:837.592000pt;}
.y64{bottom:837.677333pt;}
.y1c9{bottom:840.501333pt;}
.yea{bottom:844.832000pt;}
.y16f{bottom:844.898667pt;}
.y19d{bottom:847.821333pt;}
.y141{bottom:848.042667pt;}
.yb7{bottom:849.934667pt;}
.y32{bottom:852.137333pt;}
.y63{bottom:852.222667pt;}
.y8e{bottom:852.468000pt;}
.y1c8{bottom:853.785333pt;}
.ye9{bottom:859.377333pt;}
.y3{bottom:859.386667pt;}
.y16e{bottom:859.444000pt;}
.y115{bottom:861.445333pt;}
.y19c{bottom:862.366667pt;}
.y31{bottom:866.682667pt;}
.y62{bottom:866.768000pt;}
.y140{bottom:873.989333pt;}
.y1c7{bottom:874.009333pt;}
.y8d{bottom:875.122667pt;}
.y114{bottom:875.990667pt;}
.y30{bottom:881.229333pt;}
.y2{bottom:885.954667pt;}
.yd2{bottom:888.468000pt;}
.y13f{bottom:888.534667pt;}
.yb6{bottom:893.156000pt;}
.y2f{bottom:895.774667pt;}
.y1c6{bottom:902.204000pt;}
.y113{bottom:903.080000pt;}
.yb5{bottom:907.701333pt;}
.y8c{bottom:909.889333pt;}
.y2e{bottom:910.320000pt;}
.y1{bottom:912.521333pt;}
.y61{bottom:917.625333pt;}
.y8b{bottom:924.434667pt;}
.y2d{bottom:932.170667pt;}
.y2c{bottom:946.716000pt;}
.yd1{bottom:951.537333pt;}
.he{height:0.000000pt;}
.hb{height:21.551168pt;}
.h6{height:22.443820pt;}
.ha{height:25.143054pt;}
.hd{height:25.812543pt;}
.hf{height:33.761409pt;}
.h7{height:35.865520pt;}
.h4{height:36.875052pt;}
.h8{height:37.459526pt;}
.h3{height:39.850560pt;}
.h9{height:44.423054pt;}
.h10{height:44.428387pt;}
.h5{height:44.632635pt;}
.h2{height:45.469815pt;}
.h1{height:64.270976pt;}
.hc{height:71.918439pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa5{left:142.113333pt;}
.xe{left:143.521333pt;}
.x1{left:145.946667pt;}
.x13{left:147.766667pt;}
.x4c{left:149.694667pt;}
.x9f{left:150.641333pt;}
.x14{left:154.261333pt;}
.xd{left:160.540000pt;}
.x15{left:162.180000pt;}
.x51{left:165.520000pt;}
.xa0{left:170.965333pt;}
.x60{left:171.896000pt;}
.x2{left:173.973333pt;}
.x16{left:175.464000pt;}
.x45{left:183.100000pt;}
.x5a{left:186.016000pt;}
.x46{left:189.741333pt;}
.x10{left:191.821333pt;}
.x6{left:196.937333pt;}
.x8e{left:200.416000pt;}
.x5b{left:202.757333pt;}
.x7{left:209.210667pt;}
.x8f{left:213.700000pt;}
.x3b{left:217.580000pt;}
.x48{left:218.761333pt;}
.x3c{left:224.221333pt;}
.x4{left:226.486667pt;}
.x49{left:232.044000pt;}
.x3{left:234.089333pt;}
.x1b{left:238.241333pt;}
.x7d{left:239.670667pt;}
.x2d{left:240.590667pt;}
.x1c{left:251.525333pt;}
.x5f{left:252.845333pt;}
.x5{left:257.602667pt;}
.x9e{left:261.518667pt;}
.x8c{left:263.624000pt;}
.x88{left:264.820000pt;}
.x9a{left:267.564000pt;}
.x8d{left:270.265333pt;}
.x12{left:271.157333pt;}
.x53{left:273.805333pt;}
.x68{left:277.114667pt;}
.x21{left:283.018667pt;}
.xa8{left:285.286667pt;}
.x54{left:287.089333pt;}
.x81{left:291.126667pt;}
.x78{left:293.765333pt;}
.x22{left:296.301333pt;}
.x4f{left:299.952000pt;}
.x89{left:301.718667pt;}
.x1d{left:308.097333pt;}
.x50{left:313.236000pt;}
.x41{left:314.574667pt;}
.x55{left:318.881333pt;}
.x1e{left:321.381333pt;}
.x77{left:326.418667pt;}
.x42{left:327.857333pt;}
.x82{left:331.212000pt;}
.x79{left:334.354667pt;}
.xa1{left:338.650667pt;}
.x7a{left:342.780000pt;}
.x69{left:346.748000pt;}
.x96{left:351.188000pt;}
.x6a{left:354.824000pt;}
.x24{left:357.388000pt;}
.x97{left:364.472000pt;}
.x25{left:370.670667pt;}
.x6d{left:371.937333pt;}
.xf{left:373.712000pt;}
.x83{left:379.670667pt;}
.x2a{left:384.486667pt;}
.x9b{left:387.694667pt;}
.x2b{left:391.129333pt;}
.x19{left:392.544000pt;}
.x52{left:394.004000pt;}
.x6e{left:395.552000pt;}
.x7b{left:398.061333pt;}
.x63{left:399.889333pt;}
.xa{left:400.948000pt;}
.x73{left:403.564000pt;}
.x2c{left:404.678667pt;}
.x1a{left:405.828000pt;}
.x57{left:408.485333pt;}
.xb{left:409.996000pt;}
.x6b{left:413.140000pt;}
.x56{left:414.054667pt;}
.x64{left:416.136000pt;}
.x7c{left:417.780000pt;}
.x43{left:422.516000pt;}
.x6c{left:423.528000pt;}
.x5c{left:425.622667pt;}
.x92{left:430.044000pt;}
.x58{left:431.481333pt;}
.x4a{left:432.944000pt;}
.x44{left:435.798667pt;}
.x11{left:437.280000pt;}
.x61{left:441.512000pt;}
.x67{left:442.840000pt;}
.x4b{left:446.226667pt;}
.x74{left:450.326667pt;}
.x7e{left:451.638667pt;}
.x47{left:455.110667pt;}
.xc{left:457.701333pt;}
.x9{left:466.242667pt;}
.x28{left:469.197333pt;}
.xa4{left:470.462667pt;}
.x62{left:472.070667pt;}
.x75{left:474.184000pt;}
.x7f{left:475.325333pt;}
.x8{left:476.756000pt;}
.x35{left:480.769333pt;}
.x29{left:482.481333pt;}
.x93{left:484.616000pt;}
.x86{left:485.924000pt;}
.x23{left:489.745333pt;}
.x6f{left:492.300000pt;}
.x36{left:494.053333pt;}
.x37{left:505.786667pt;}
.x94{left:508.261333pt;}
.x70{left:515.916000pt;}
.x30{left:517.754667pt;}
.x38{left:519.070667pt;}
.x84{left:520.010667pt;}
.x3d{left:522.312000pt;}
.x80{left:523.846667pt;}
.x65{left:526.405333pt;}
.x4d{left:529.105333pt;}
.x66{left:533.048000pt;}
.x3e{left:535.596000pt;}
.x33{left:537.673333pt;}
.x4e{left:542.389333pt;}
.x85{left:544.918667pt;}
.x2e{left:548.028000pt;}
.x34{left:550.956000pt;}
.x17{left:557.364000pt;}
.x9c{left:559.834667pt;}
.x2f{left:561.312000pt;}
.x87{left:562.757333pt;}
.x8a{left:565.894667pt;}
.x5d{left:567.272000pt;}
.x26{left:571.233333pt;}
.x9d{left:573.118667pt;}
.x3f{left:577.124000pt;}
.x8b{left:579.178667pt;}
.x95{left:585.581333pt;}
.x5e{left:588.870667pt;}
.x40{left:590.406667pt;}
.x39{left:592.230667pt;}
.x18{left:593.837333pt;}
.x3a{left:598.873333pt;}
.x90{left:599.945333pt;}
.x91{left:613.229333pt;}
.xa3{left:617.604000pt;}
.x98{left:619.730667pt;}
.x31{left:621.938667pt;}
.x99{left:626.372000pt;}
.xa2{left:633.650667pt;}
.x32{left:635.222667pt;}
.x71{left:637.221333pt;}
.x76{left:640.474667pt;}
.x1f{left:653.994667pt;}
.xa6{left:655.082667pt;}
.x59{left:656.060000pt;}
.x27{left:659.966667pt;}
.x72{left:666.045333pt;}
.x20{left:667.278667pt;}
.xa7{left:668.366667pt;}
}




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