
    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_d2873da25efdde2c08b2e28d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.226000;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_04e079e7ea1fa6362a0d97a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_53163732684a8699180ae50e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_0021a969ab77186c68e90eb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_f11813c22e7763388c763752.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.803000;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_3c25fdd2a737ac0a7fd47897.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.669000;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_5b85a7f11847c685e8d64580.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.215332;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_cc025cc122e39056eb77ff95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708000;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_388914e2a9a76f98137e6e70.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.703000;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_9030586170255b911afe2908.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e8a0e949dbc941ebbbade21a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.215332;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_e8a0e949dbc941ebbbade21a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.215332;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_cc3807a7e13854ad928736c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_f8a9429f348e7ca2606d4120.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m1d{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);}
.m9{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);}
.m8{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);}
.m24{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);}
.m2{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);}
.m1e{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);}
.m1f{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);}
.m13{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);}
.m16{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);}
.m21{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);}
.m17{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);}
.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);}
.m6{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);}
.m15{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);}
.m1c{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);}
.m26{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);}
.mb{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);}
.m14{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);}
.m1b{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);}
.m19{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);}
.m12{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);}
.m5{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);}
.m27{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);}
.m1a{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);}
.m11{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);}
.m22{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);}
.m29{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);}
.m28{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);}
.m7{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);}
.m10{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);}
.me{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);}
.ma{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);}
.m23{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);}
.mc{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);}
.mf{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);}
.m4{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);}
.m20{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);}
.m3{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);}
.md{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:-17.358000px;}
.v4{vertical-align:-11.952000px;}
.v3{vertical-align:-10.920000px;}
.v9{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.482000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:35.862000px;}
.v7{vertical-align:59.580000px;}
.ls8{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000179px;}
.ls28{letter-spacing:0.000612px;}
.ls3f{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.519754px;}
.ls32{letter-spacing:0.670445px;}
.lsa{letter-spacing:0.717483px;}
.ls13{letter-spacing:0.746725px;}
.ls16{letter-spacing:0.748483px;}
.ls11{letter-spacing:1.318483px;}
.ls17{letter-spacing:2.983200px;}
.ls6{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls18{letter-spacing:3.507900px;}
.ls3e{letter-spacing:3.513900px;}
.ls22{letter-spacing:3.553200px;}
.ls9{letter-spacing:3.559200px;}
.ls12{letter-spacing:3.572160px;}
.ls0{letter-spacing:8.367300px;}
.ls33{letter-spacing:10.171763px;}
.ls7{letter-spacing:11.954850px;}
.ls4{letter-spacing:11.955746px;}
.ls3b{letter-spacing:12.221829px;}
.ls45{letter-spacing:12.589176px;}
.ls44{letter-spacing:12.993257px;}
.ls35{letter-spacing:13.209224px;}
.ls3c{letter-spacing:13.336539px;}
.ls43{letter-spacing:13.433283px;}
.ls34{letter-spacing:13.448400px;}
.ls36{letter-spacing:13.454400px;}
.ls42{letter-spacing:13.466568px;}
.ls3a{letter-spacing:13.490038px;}
.ls46{letter-spacing:13.508316px;}
.ls40{letter-spacing:13.635593px;}
.ls41{letter-spacing:13.636114px;}
.ls3d{letter-spacing:13.709224px;}
.ls37{letter-spacing:13.807543px;}
.lse{letter-spacing:14.094088px;}
.lsd{letter-spacing:14.100088px;}
.ls1d{letter-spacing:14.945072px;}
.ls21{letter-spacing:15.657483px;}
.ls1f{letter-spacing:15.663483px;}
.ls1e{letter-spacing:15.691246px;}
.lsf{letter-spacing:16.433108px;}
.ls15{letter-spacing:16.433400px;}
.ls14{letter-spacing:16.439108px;}
.ls10{letter-spacing:16.439400px;}
.ls1a{letter-spacing:16.451108px;}
.ls1b{letter-spacing:16.451400px;}
.ls19{letter-spacing:16.976270px;}
.ls2b{letter-spacing:17.038483px;}
.ls24{letter-spacing:17.514251px;}
.ls2f{letter-spacing:17.747400px;}
.ls2e{letter-spacing:17.753108px;}
.lsb{letter-spacing:17.823590px;}
.ls27{letter-spacing:17.872904px;}
.ls2c{letter-spacing:18.316483px;}
.ls2d{letter-spacing:18.317400px;}
.ls30{letter-spacing:18.467108px;}
.ls31{letter-spacing:18.467400px;}
.ls1c{letter-spacing:18.649987px;}
.lsc{letter-spacing:18.769538px;}
.ls25{letter-spacing:20.747108px;}
.ls26{letter-spacing:20.753400px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls2a{letter-spacing:208.155100px;}
.ls29{letter-spacing:223.095100px;}
.ls23{letter-spacing:227.835100px;}
.ls20{letter-spacing:241.281100px;}
.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;}
}
.ws17{word-spacing:-14.943900px;}
.wsa{word-spacing:-14.355754px;}
.ws97{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws15{word-spacing:-3.589097px;}
.ws9c{word-spacing:-3.281702px;}
.ws9b{word-spacing:-3.149749px;}
.ws94{word-spacing:-3.048556px;}
.ws43{word-spacing:-2.929004px;}
.ws25{word-spacing:-2.630126px;}
.ws16{word-spacing:-2.510575px;}
.ws93{word-spacing:-2.450800px;}
.ws4{word-spacing:-2.098156px;}
.ws3f{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws8e{word-spacing:-2.032370px;}
.ws2{word-spacing:-1.966612px;}
.ws61{word-spacing:-1.733492px;}
.wsa4{word-spacing:-1.613952px;}
.ws20{word-spacing:-1.613941px;}
.ws21{word-spacing:-1.554166px;}
.ws52{word-spacing:-1.374839px;}
.wsb0{word-spacing:-1.237363px;}
.wsc3{word-spacing:-1.129766px;}
.ws80{word-spacing:-1.075961px;}
.wsc4{word-spacing:-0.860774px;}
.ws54{word-spacing:-0.836858px;}
.ws53{word-spacing:-0.777083px;}
.ws50{word-spacing:-0.657532px;}
.wsc2{word-spacing:-0.645581px;}
.ws42{word-spacing:-0.597756px;}
.ws4e{word-spacing:-0.537980px;}
.ws98{word-spacing:-0.484186px;}
.ws62{word-spacing:-0.478205px;}
.ws99{word-spacing:-0.430387px;}
.ws34{word-spacing:-0.358654px;}
.wsa0{word-spacing:-0.322790px;}
.wsf{word-spacing:-0.298878px;}
.ws6e{word-spacing:-0.268992px;}
.ws10{word-spacing:-0.239102px;}
.ws87{word-spacing:-0.215194px;}
.ws1e{word-spacing:-0.179327px;}
.wsa8{word-spacing:-0.161395px;}
.ws1b{word-spacing:-0.119551px;}
.wsa7{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.ws63{word-spacing:-0.053798px;}
.wsbc{word-spacing:-0.005779px;}
.ws8{word-spacing:-0.002776px;}
.wsbb{word-spacing:-0.002266px;}
.wsb1{word-spacing:-0.001757px;}
.ws7{word-spacing:0.000000px;}
.ws23{word-spacing:0.003044px;}
.wsc6{word-spacing:0.047658px;}
.ws55{word-spacing:0.053798px;}
.ws13{word-spacing:0.059776px;}
.ws9d{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws49{word-spacing:0.161395px;}
.ws1c{word-spacing:0.179327px;}
.ws92{word-spacing:0.215194px;}
.ws14{word-spacing:0.239102px;}
.wsb9{word-spacing:0.268992px;}
.wsb{word-spacing:0.298878px;}
.wsa6{word-spacing:0.319049px;}
.wsb4{word-spacing:0.322790px;}
.ws5a{word-spacing:0.358654px;}
.wsa5{word-spacing:0.376589px;}
.ws41{word-spacing:0.418429px;}
.ws3{word-spacing:0.420332px;}
.ws6{word-spacing:0.422252px;}
.wsac{word-spacing:0.430387px;}
.ws6a{word-spacing:0.520800px;}
.ws3b{word-spacing:0.563700px;}
.ws5d{word-spacing:0.566700px;}
.ws7e{word-spacing:0.570900px;}
.ws4b{word-spacing:0.597756px;}
.ws4a{word-spacing:0.645581px;}
.ws19{word-spacing:0.717307px;}
.ws75{word-spacing:0.736097px;}
.ws7b{word-spacing:0.738197px;}
.ws74{word-spacing:0.740624px;}
.ws7a{word-spacing:0.746814px;}
.ws73{word-spacing:0.748800px;}
.ws8a{word-spacing:0.764398px;}
.ws7f{word-spacing:0.772064px;}
.ws7c{word-spacing:0.772099px;}
.ws7d{word-spacing:0.774199px;}
.ws79{word-spacing:0.776299px;}
.ws2e{word-spacing:0.777083px;}
.ws11{word-spacing:0.836858px;}
.ws37{word-spacing:0.956410px;}
.ws90{word-spacing:1.016185px;}
.ws91{word-spacing:1.135736px;}
.wsbe{word-spacing:1.183565px;}
.ws38{word-spacing:1.195512px;}
.ws4c{word-spacing:1.315063px;}
.ws5c{word-spacing:1.434614px;}
.ws85{word-spacing:1.494390px;}
.ws64{word-spacing:1.554166px;}
.wsba{word-spacing:1.560154px;}
.ws2d{word-spacing:1.613941px;}
.ws1a{word-spacing:1.673717px;}
.ws1f{word-spacing:1.733492px;}
.ws48{word-spacing:1.793268px;}
.ws26{word-spacing:1.853044px;}
.wse{word-spacing:1.912819px;}
.ws83{word-spacing:2.032370px;}
.ws44{word-spacing:2.092146px;}
.ws6c{word-spacing:2.271473px;}
.ws36{word-spacing:2.331248px;}
.ws9e{word-spacing:2.420928px;}
.ws28{word-spacing:2.450800px;}
.ws8f{word-spacing:2.510575px;}
.ws69{word-spacing:2.528525px;}
.ws6d{word-spacing:2.570351px;}
.ws9a{word-spacing:2.582323px;}
.ws81{word-spacing:2.630126px;}
.ws58{word-spacing:2.749678px;}
.ws40{word-spacing:2.869229px;}
.ws46{word-spacing:2.929004px;}
.wsa1{word-spacing:2.958912px;}
.wsbf{word-spacing:3.066509px;}
.wsb2{word-spacing:3.120307px;}
.ws60{word-spacing:3.168107px;}
.wsaa{word-spacing:3.184176px;}
.wsb3{word-spacing:3.217920px;}
.wsc5{word-spacing:3.219494px;}
.wsb5{word-spacing:3.220637px;}
.wsad{word-spacing:3.220925px;}
.wsbd{word-spacing:3.223008px;}
.wsc1{word-spacing:3.223354px;}
.wsaf{word-spacing:3.223824px;}
.wsa3{word-spacing:3.225446px;}
.wsc0{word-spacing:3.227578px;}
.ws2b{word-spacing:3.227882px;}
.ws9f{word-spacing:3.227904px;}
.wsa2{word-spacing:3.281702px;}
.ws45{word-spacing:3.287658px;}
.wsae{word-spacing:3.335501px;}
.ws68{word-spacing:3.347434px;}
.wsa9{word-spacing:3.443098px;}
.wsc7{word-spacing:3.496896px;}
.ws86{word-spacing:3.526760px;}
.ws2a{word-spacing:3.586536px;}
.ws51{word-spacing:3.646312px;}
.wsb6{word-spacing:3.658291px;}
.ws5b{word-spacing:3.706087px;}
.ws4f{word-spacing:3.765863px;}
.ws31{word-spacing:3.825638px;}
.ws6b{word-spacing:3.885414px;}
.wsc{word-spacing:3.945190px;}
.ws65{word-spacing:4.004965px;}
.ws67{word-spacing:4.064741px;}
.ws95{word-spacing:4.088678px;}
.ws66{word-spacing:4.124516px;}
.ws96{word-spacing:4.142477px;}
.ws32{word-spacing:4.184292px;}
.ws18{word-spacing:4.303872px;}
.ws5f{word-spacing:4.363619px;}
.ws27{word-spacing:4.483170px;}
.wsab{word-spacing:4.519066px;}
.ws84{word-spacing:4.662497px;}
.ws33{word-spacing:4.841824px;}
.ws29{word-spacing:4.901599px;}
.ws2f{word-spacing:5.021150px;}
.ws47{word-spacing:5.140702px;}
.ws3a{word-spacing:5.200477px;}
.ws5e{word-spacing:5.260253px;}
.ws82{word-spacing:5.320028px;}
.wsb8{word-spacing:5.433638px;}
.ws30{word-spacing:5.439580px;}
.wsb7{word-spacing:5.756429px;}
.wsd{word-spacing:5.798233px;}
.ws56{word-spacing:6.037336px;}
.ws39{word-spacing:6.097111px;}
.ws22{word-spacing:6.336214px;}
.ws2c{word-spacing:6.455765px;}
.ws8b{word-spacing:6.575462px;}
.ws4d{word-spacing:7.830604px;}
.ws59{word-spacing:7.950155px;}
.ws57{word-spacing:8.249033px;}
.ws1d{word-spacing:16.976270px;}
.ws1{word-spacing:22.179541px;}
.ws3e{word-spacing:101.439193px;}
.ws78{word-spacing:145.009944px;}
.ws72{word-spacing:145.035780px;}
.ws77{word-spacing:145.036722px;}
.ws8d{word-spacing:151.030309px;}
.ws88{word-spacing:152.812270px;}
.ws3d{word-spacing:154.161272px;}
.ws6f{word-spacing:182.192683px;}
.ws89{word-spacing:184.225531px;}
.ws71{word-spacing:190.706590px;}
.ws3c{word-spacing:201.085118px;}
.ws8c{word-spacing:224.134309px;}
.ws70{word-spacing:233.802350px;}
.ws76{word-spacing:244.243102px;}
._9{margin-left:-21.202402px;}
._45{margin-left:-18.960890px;}
._3{margin-left:-15.230779px;}
._5{margin-left:-11.943245px;}
._28{margin-left:-8.296858px;}
._6{margin-left:-6.635092px;}
._b{margin-left:-5.322455px;}
._42{margin-left:-4.285984px;}
._1{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._2{width:1.297127px;}
._7{width:3.001129px;}
._0{width:10.879128px;}
._44{width:12.543876px;}
._12{width:13.762765px;}
._c{width:14.824386px;}
._40{width:15.923473px;}
._11{width:17.394700px;}
._10{width:18.661938px;}
._1a{width:19.797674px;}
._d{width:21.770269px;}
._14{width:22.953830px;}
._f{width:24.950327px;}
._17{width:26.420815px;}
._2a{width:27.747829px;}
._18{width:28.811839px;}
._29{width:30.449682px;}
._2b{width:32.278824px;}
._19{width:34.143818px;}
._e{width:35.697984px;}
._13{width:37.957506px;}
._8{width:54.401951px;}
._43{width:61.868160px;}
._a{width:69.345910px;}
._41{width:88.767360px;}
._26{width:130.490135px;}
._30{width:134.554876px;}
._27{width:148.781468px;}
._3f{width:159.479555px;}
._2f{width:167.730334px;}
._25{width:170.191444px;}
._36{width:174.425201px;}
._23{width:181.060292px;}
._22{width:198.156114px;}
._24{width:209.393927px;}
._3a{width:213.398892px;}
._1b{width:217.642960px;}
._33{width:219.316676px;}
._1c{width:220.930618px;}
._34{width:223.381417px;}
._39{width:232.586860px;}
._37{width:234.260576px;}
._2e{width:238.803522px;}
._32{width:241.254322px;}
._1d{width:247.530760px;}
._2d{width:248.726272px;}
._2c{width:257.752387px;}
._3d{width:269.109751px;}
._21{width:275.804618px;}
._1e{width:277.478335px;}
._3b{width:284.113427px;}
._31{width:294.036176px;}
._1f{width:305.692418px;}
._3e{width:307.304614px;}
._35{width:309.039852px;}
._20{width:332.292560px;}
._38{width:367.201511px;}
._15{width:1918.347000px;}
._3c{width:2572.005000px;}
._16{width:2595.915000px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsd{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fsb{font-size:54.108000px;}
.fsc{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fsa{font-size:72.144000px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yd4{bottom:1.751333px;}
.y7a{bottom:2.675297px;}
.yd8{bottom:3.488766px;}
.y3f{bottom:45.921000px;}
.ya4{bottom:99.720000px;}
.y14{bottom:100.260000px;}
.yda{bottom:101.991000px;}
.ycf{bottom:110.523000px;}
.y107{bottom:111.114000px;}
.y136{bottom:111.345000px;}
.y73{bottom:114.882000px;}
.y3e{bottom:115.080000px;}
.yd0{bottom:115.948500px;}
.y120{bottom:117.586500px;}
.ya3{bottom:117.892500px;}
.y13{bottom:118.147500px;}
.ya1{bottom:120.610500px;}
.yd9{bottom:121.224000px;}
.y1ef{bottom:125.112000px;}
.ya2{bottom:126.036000px;}
.y1bd{bottom:127.329000px;}
.y106{bottom:129.276000px;}
.yce{bottom:131.415000px;}
.y105{bottom:132.006000px;}
.y135{bottom:132.237000px;}
.y72{bottom:135.774000px;}
.y3d{bottom:135.972000px;}
.y12{bottom:136.035000px;}
.y11f{bottom:138.477000px;}
.ya0{bottom:141.502500px;}
.y1ee{bottom:144.262500px;}
.y1bc{bottom:146.479500px;}
.yd7{bottom:146.643000px;}
.ycd{bottom:152.307000px;}
.y104{bottom:152.898000px;}
.y134{bottom:153.129000px;}
.y11{bottom:153.924000px;}
.y170{bottom:154.762500px;}
.y71{bottom:156.666000px;}
.y3c{bottom:156.862500px;}
.y11e{bottom:159.369000px;}
.y9f{bottom:162.394500px;}
.y1ed{bottom:163.413000px;}
.y1bb{bottom:165.630000px;}
.y10{bottom:171.811500px;}
.ycc{bottom:173.197500px;}
.y103{bottom:173.790000px;}
.y133{bottom:174.019500px;}
.y16f{bottom:175.654500px;}
.y70{bottom:177.556500px;}
.y3b{bottom:177.754500px;}
.y18b{bottom:179.991000px;}
.y11d{bottom:180.261000px;}
.yed{bottom:181.039500px;}
.y1ec{bottom:182.563500px;}
.y9e{bottom:183.285000px;}
.y1ba{bottom:184.780500px;}
.yf{bottom:189.699000px;}
.y102{bottom:191.950500px;}
.ycb{bottom:194.089500px;}
.y101{bottom:194.680500px;}
.y132{bottom:194.911500px;}
.y16e{bottom:196.545000px;}
.y6f{bottom:198.448500px;}
.y3a{bottom:198.646500px;}
.y18a{bottom:200.011500px;}
.y11c{bottom:201.151500px;}
.y1eb{bottom:201.714000px;}
.yec{bottom:201.930000px;}
.y9d{bottom:201.936000px;}
.y1b9{bottom:203.931000px;}
.y9c{bottom:204.177000px;}
.ye{bottom:207.588000px;}
.yca{bottom:214.981500px;}
.y100{bottom:215.572500px;}
.y131{bottom:215.803500px;}
.y16d{bottom:217.437000px;}
.y6e{bottom:219.340500px;}
.y39{bottom:219.537000px;}
.y189{bottom:220.033500px;}
.y13d{bottom:220.152000px;}
.y1ea{bottom:220.864500px;}
.y11b{bottom:222.043500px;}
.yeb{bottom:222.822000px;}
.y1b8{bottom:223.083000px;}
.y9b{bottom:225.069000px;}
.yd{bottom:225.475500px;}
.yc9{bottom:235.872000px;}
.yff{bottom:236.464500px;}
.y16c{bottom:238.329000px;}
.y1e9{bottom:240.015000px;}
.y6d{bottom:240.232500px;}
.y38{bottom:240.429000px;}
.y130{bottom:241.177500px;}
.y1b7{bottom:242.233500px;}
.y119{bottom:242.935500px;}
.yea{bottom:243.714000px;}
.y9a{bottom:245.961000px;}
.y11a{bottom:248.359500px;}
.yc{bottom:252.330000px;}
.yfe{bottom:254.625000px;}
.yc8{bottom:256.764000px;}
.yfd{bottom:257.355000px;}
.y188{bottom:257.986500px;}
.y1e8{bottom:259.165500px;}
.y16b{bottom:259.221000px;}
.y6c{bottom:261.123000px;}
.y37{bottom:261.321000px;}
.y1b6{bottom:261.384000px;}
.y118{bottom:263.826000px;}
.ye9{bottom:264.606000px;}
.y99{bottom:266.851500px;}
.yb{bottom:270.217500px;}
.yc7{bottom:274.926000px;}
.yc6{bottom:277.656000px;}
.yfb{bottom:278.247000px;}
.y1e7{bottom:278.316000px;}
.y187{bottom:278.878500px;}
.y12f{bottom:279.891000px;}
.y169{bottom:280.111500px;}
.y1b5{bottom:280.534500px;}
.y36{bottom:282.211500px;}
.yfc{bottom:283.671000px;}
.y117{bottom:284.718000px;}
.ye8{bottom:285.496500px;}
.y16a{bottom:285.537000px;}
.y6b{bottom:286.498500px;}
.y98{bottom:287.743500px;}
.ya{bottom:288.105000px;}
.y1f2{bottom:292.737000px;}
.y1e6{bottom:297.466500px;}
.yc5{bottom:298.548000px;}
.yfa{bottom:299.139000px;}
.y1b4{bottom:299.685000px;}
.y186{bottom:299.770500px;}
.y168{bottom:301.003500px;}
.y12e{bottom:302.172000px;}
.y35{bottom:303.103500px;}
.y115{bottom:305.610000px;}
.y9{bottom:305.994000px;}
.ye7{bottom:306.388500px;}
.y97{bottom:308.635500px;}
.y116{bottom:311.034000px;}
.y1f1{bottom:311.887500px;}
.y12d{bottom:312.412500px;}
.y1e5{bottom:316.617000px;}
.y1b3{bottom:318.835500px;}
.yc4{bottom:319.438500px;}
.yf8{bottom:320.029500px;}
.y184{bottom:320.661000px;}
.y167{bottom:321.895500px;}
.y8{bottom:323.881500px;}
.y34{bottom:323.995500px;}
.y6a{bottom:325.323000px;}
.yf9{bottom:325.455000px;}
.y185{bottom:326.086500px;}
.y114{bottom:326.500500px;}
.ye6{bottom:327.280500px;}
.y96{bottom:329.526000px;}
.y1f0{bottom:331.038000px;}
.y1e4{bottom:335.767500px;}
.y1b2{bottom:337.986000px;}
.yc3{bottom:340.330500px;}
.yf6{bottom:340.921500px;}
.y183{bottom:341.553000px;}
.y7{bottom:341.769000px;}
.y166{bottom:342.786000px;}
.y33{bottom:344.886000px;}
.y69{bottom:346.213500px;}
.yf7{bottom:346.347000px;}
.y113{bottom:347.392500px;}
.ye4{bottom:348.171000px;}
.y95{bottom:350.418000px;}
.y12c{bottom:352.443000px;}
.ye5{bottom:353.596500px;}
.y1e3{bottom:354.918000px;}
.y1b1{bottom:357.136500px;}
.y6{bottom:359.658000px;}
.yc2{bottom:361.222500px;}
.yf4{bottom:361.813500px;}
.y181{bottom:362.445000px;}
.y12b{bottom:362.683500px;}
.y164{bottom:363.678000px;}
.y32{bottom:365.778000px;}
.y68{bottom:367.105500px;}
.yf5{bottom:367.237500px;}
.y182{bottom:367.869000px;}
.y112{bottom:368.284500px;}
.ye3{bottom:369.063000px;}
.y165{bottom:369.102000px;}
.y94{bottom:371.310000px;}
.y1e2{bottom:374.070000px;}
.y1b0{bottom:376.287000px;}
.yc1{bottom:382.113000px;}
.yf3{bottom:382.704000px;}
.y180{bottom:383.335500px;}
.y5{bottom:383.523000px;}
.y162{bottom:384.570000px;}
.y31{bottom:386.670000px;}
.y67{bottom:387.997500px;}
.y111{bottom:389.176500px;}
.ye2{bottom:389.955000px;}
.y163{bottom:389.994000px;}
.y93{bottom:392.200500px;}
.y1e1{bottom:393.220500px;}
.y1af{bottom:395.437500px;}
.y4{bottom:401.410500px;}
.y12a{bottom:402.712500px;}
.ybf{bottom:403.005000px;}
.yf1{bottom:403.596000px;}
.y17f{bottom:404.227500px;}
.y161{bottom:405.460500px;}
.y30{bottom:407.562000px;}
.yc0{bottom:408.429000px;}
.y66{bottom:408.888000px;}
.yf2{bottom:409.021500px;}
.y110{bottom:410.067000px;}
.ye1{bottom:410.845500px;}
.y1e0{bottom:412.371000px;}
.y129{bottom:412.953000px;}
.y92{bottom:413.092500px;}
.y1ae{bottom:414.588000px;}
.y3{bottom:419.299500px;}
.ybe{bottom:423.897000px;}
.y17e{bottom:425.119500px;}
.y160{bottom:426.352500px;}
.y65{bottom:429.780000px;}
.y10f{bottom:430.959000px;}
.y1df{bottom:431.521500px;}
.y2f{bottom:432.936000px;}
.y1ad{bottom:433.738500px;}
.y91{bottom:433.984500px;}
.ye0{bottom:436.221000px;}
.y2{bottom:437.187000px;}
.yf0{bottom:439.224000px;}
.ybd{bottom:444.787500px;}
.y17d{bottom:446.010000px;}
.y15e{bottom:447.244500px;}
.y64{bottom:450.672000px;}
.y10e{bottom:451.851000px;}
.y15f{bottom:452.668500px;}
.y1ac{bottom:452.889000px;}
.y128{bottom:452.983500px;}
.y90{bottom:454.875000px;}
.yef{bottom:458.457000px;}
.y8f{bottom:460.300500px;}
.y1{bottom:461.052000px;}
.ybb{bottom:465.679500px;}
.y17c{bottom:466.902000px;}
.y15c{bottom:468.135000px;}
.y1de{bottom:469.822500px;}
.ybc{bottom:471.105000px;}
.y63{bottom:471.562500px;}
.y1ab{bottom:472.039500px;}
.y10d{bottom:472.741500px;}
.y15d{bottom:473.560500px;}
.y8e{bottom:475.767000px;}
.yee{bottom:477.690000px;}
.y127{bottom:478.117500px;}
.y17b{bottom:485.064000px;}
.yb9{bottom:486.571500px;}
.y17a{bottom:487.794000px;}
.y1dd{bottom:488.973000px;}
.y15b{bottom:489.027000px;}
.y1aa{bottom:491.190000px;}
.yba{bottom:491.995500px;}
.y62{bottom:492.454500px;}
.y10c{bottom:493.633500px;}
.y8d{bottom:496.659000px;}
.y126{bottom:503.253000px;}
.yb8{bottom:507.462000px;}
.y1dc{bottom:508.123500px;}
.y179{bottom:508.684500px;}
.y15a{bottom:509.919000px;}
.y1a9{bottom:510.340500px;}
.y2e{bottom:512.148000px;}
.y61{bottom:513.346500px;}
.y8c{bottom:517.551000px;}
.y10b{bottom:519.007500px;}
.y1db{bottom:527.274000px;}
.yb7{bottom:528.354000px;}
.y125{bottom:528.388500px;}
.y1a8{bottom:529.491000px;}
.y178{bottom:529.576500px;}
.y159{bottom:530.809500px;}
.y2d{bottom:533.038500px;}
.y60{bottom:534.237000px;}
.y8b{bottom:538.441500px;}
.y10a{bottom:540.901500px;}
.y124{bottom:546.321000px;}
.y1da{bottom:546.424500px;}
.y1a7{bottom:548.641500px;}
.yb5{bottom:549.246000px;}
.y177{bottom:550.468500px;}
.y158{bottom:551.701500px;}
.yb6{bottom:554.670000px;}
.y5f{bottom:555.129000px;}
.y8a{bottom:559.333500px;}
.y1d9{bottom:565.575000px;}
.y1a6{bottom:567.792000px;}
.yb4{bottom:570.138000px;}
.y175{bottom:571.360500px;}
.y2c{bottom:571.863000px;}
.y157{bottom:572.593500px;}
.y109{bottom:573.046500px;}
.y5e{bottom:576.021000px;}
.y176{bottom:576.784500px;}
.y89{bottom:580.225500px;}
.y123{bottom:581.976000px;}
.y1d8{bottom:584.725500px;}
.y1a5{bottom:586.942500px;}
.yb3{bottom:591.028500px;}
.y174{bottom:592.251000px;}
.y108{bottom:592.279500px;}
.y2b{bottom:592.755000px;}
.y155{bottom:593.485500px;}
.y5d{bottom:596.913000px;}
.yd6{bottom:598.101000px;}
.y156{bottom:598.909500px;}
.y88{bottom:601.116000px;}
.y122{bottom:601.207500px;}
.y1d7{bottom:603.876000px;}
.y1a4{bottom:606.094500px;}
.yb2{bottom:611.920500px;}
.y2a{bottom:613.647000px;}
.y154{bottom:614.376000px;}
.yd5{bottom:617.334000px;}
.y173{bottom:617.626500px;}
.y5c{bottom:617.803500px;}
.y87{bottom:622.008000px;}
.y1d6{bottom:623.026500px;}
.y1a3{bottom:625.245000px;}
.yb1{bottom:632.812500px;}
.y29{bottom:634.537500px;}
.y153{bottom:635.268000px;}
.y5b{bottom:638.695500px;}
.y1d5{bottom:642.177000px;}
.yd3{bottom:642.751500px;}
.y121{bottom:642.856500px;}
.y86{bottom:642.900000px;}
.y1a2{bottom:644.395500px;}
.y172{bottom:653.254500px;}
.y28{bottom:655.429500px;}
.y152{bottom:656.160000px;}
.yb0{bottom:658.186500px;}
.y5a{bottom:659.587500px;}
.y1d4{bottom:661.327500px;}
.y1a1{bottom:663.546000px;}
.y85{bottom:663.790500px;}
.ydf{bottom:665.011500px;}
.y171{bottom:672.486000px;}
.y27{bottom:676.321500px;}
.y151{bottom:677.050500px;}
.y59{bottom:680.478000px;}
.yaf{bottom:682.618500px;}
.y1a0{bottom:682.696500px;}
.y84{bottom:684.682500px;}
.y26{bottom:697.212000px;}
.y1d3{bottom:699.628500px;}
.y57{bottom:701.370000px;}
.y19f{bottom:701.847000px;}
.y150{bottom:702.426000px;}
.y83{bottom:705.574500px;}
.y58{bottom:706.794000px;}
.y24{bottom:718.104000px;}
.y1d2{bottom:718.779000px;}
.y19e{bottom:720.997500px;}
.yae{bottom:721.443000px;}
.y56{bottom:722.262000px;}
.y25{bottom:723.529500px;}
.y82{bottom:726.465000px;}
.y1d1{bottom:737.929500px;}
.y23{bottom:738.996000px;}
.y19d{bottom:740.148000px;}
.y14f{bottom:741.139500px;}
.yad{bottom:742.333500px;}
.y55{bottom:743.152500px;}
.y81{bottom:747.357000px;}
.yde{bottom:748.578000px;}
.y1d0{bottom:757.081500px;}
.y19c{bottom:759.298500px;}
.y22{bottom:759.888000px;}
.yac{bottom:763.225500px;}
.y14e{bottom:763.791000px;}
.y54{bottom:764.044500px;}
.y7f{bottom:768.249000px;}
.y80{bottom:773.673000px;}
.y1cf{bottom:776.232000px;}
.y19b{bottom:778.449000px;}
.y21{bottom:780.778500px;}
.yab{bottom:784.117500px;}
.y53{bottom:784.936500px;}
.y7e{bottom:789.141000px;}
.y14d{bottom:789.669000px;}
.ydd{bottom:790.360500px;}
.y1ce{bottom:795.382500px;}
.y19a{bottom:797.599500px;}
.y20{bottom:801.670500px;}
.yaa{bottom:805.009500px;}
.y52{bottom:805.827000px;}
.y7c{bottom:810.031500px;}
.ydc{bottom:811.252500px;}
.y1cd{bottom:814.533000px;}
.y14c{bottom:815.175000px;}
.y7d{bottom:815.457000px;}
.y199{bottom:816.750000px;}
.ya9{bottom:825.900000px;}
.y51{bottom:826.719000px;}
.y1f{bottom:831.528000px;}
.y13c{bottom:832.144500px;}
.y1cc{bottom:833.683500px;}
.y149{bottom:839.637000px;}
.y198{bottom:840.384000px;}
.y14b{bottom:841.053000px;}
.y7b{bottom:844.348500px;}
.ya8{bottom:846.792000px;}
.y50{bottom:847.611000px;}
.y1cb{bottom:852.834000px;}
.y13b{bottom:853.035000px;}
.y14a{bottom:866.187000px;}
.y4f{bottom:868.503000px;}
.y79{bottom:869.767500px;}
.y1e{bottom:871.548000px;}
.y1ca{bottom:871.984500px;}
.y13a{bottom:873.927000px;}
.y197{bottom:879.208500px;}
.ya7{bottom:882.420000px;}
.y1d{bottom:887.688000px;}
.y4e{bottom:889.393500px;}
.y1c9{bottom:891.135000px;}
.y148{bottom:891.322500px;}
.ydb{bottom:894.819000px;}
.y196{bottom:898.707000px;}
.ya6{bottom:901.653000px;}
.y147{bottom:902.305500px;}
.y1c{bottom:908.167500px;}
.y4d{bottom:910.285500px;}
.y195{bottom:918.205500px;}
.ya5{bottom:920.886000px;}
.y1b{bottom:924.306000px;}
.y1c8{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.y1a{bottom:936.106500px;}
.y139{bottom:936.601500px;}
.y146{bottom:942.336000px;}
.y194{bottom:946.671000px;}
.y1c7{bottom:948.586500px;}
.y4b{bottom:952.068000px;}
.y19{bottom:956.586000px;}
.y193{bottom:966.169500px;}
.y143{bottom:966.796500px;}
.y1c6{bottom:967.737000px;}
.y145{bottom:968.212500px;}
.y49{bottom:972.960000px;}
.y4a{bottom:978.384000px;}
.y1c5{bottom:986.887500px;}
.y144{bottom:993.348000px;}
.y48{bottom:993.852000px;}
.y192{bottom:994.635000px;}
.y18{bottom:1001.262000px;}
.y1c4{bottom:1006.038000px;}
.y191{bottom:1014.133500px;}
.y47{bottom:1014.742500px;}
.y142{bottom:1018.483500px;}
.y1c3{bottom:1025.188500px;}
.y141{bottom:1028.659500px;}
.y190{bottom:1033.632000px;}
.y46{bottom:1035.634500px;}
.y17{bottom:1040.086500px;}
.y1c2{bottom:1044.339000px;}
.y78{bottom:1055.649000px;}
.y45{bottom:1056.526500px;}
.y138{bottom:1061.950500px;}
.y18f{bottom:1062.097500px;}
.y1c1{bottom:1063.489500px;}
.y140{bottom:1068.753000px;}
.y16{bottom:1071.424500px;}
.y44{bottom:1077.417000px;}
.y77{bottom:1080.784500px;}
.y18e{bottom:1081.596000px;}
.y1c0{bottom:1082.640000px;}
.y137{bottom:1082.842500px;}
.y13f{bottom:1086.685500px;}
.y75{bottom:1090.893000px;}
.y43{bottom:1098.309000px;}
.y18d{bottom:1101.094500px;}
.y1bf{bottom:1101.790500px;}
.y15{bottom:1102.761000px;}
.y76{bottom:1105.918500px;}
.y42{bottom:1119.201000px;}
.y18c{bottom:1120.593000px;}
.y1be{bottom:1120.941000px;}
.y13e{bottom:1122.340500px;}
.yd2{bottom:1124.625000px;}
.y41{bottom:1140.091500px;}
.y74{bottom:1141.573500px;}
.yd1{bottom:1145.517000px;}
.y40{bottom:1200.196500px;}
.h21{height:25.285248px;}
.h20{height:25.930829px;}
.hb{height:28.094532px;}
.h11{height:28.811839px;}
.ha{height:31.526842px;}
.h13{height:31.709861px;}
.h6{height:33.821261px;}
.h2{height:39.457760px;}
.h17{height:41.482876px;}
.h12{height:41.842920px;}
.hd{height:42.840113px;}
.h8{height:43.038432px;}
.h3{height:43.815515px;}
.h7{height:45.094826px;}
.h22{height:48.561733px;}
.h15{height:50.541311px;}
.he{height:50.731891px;}
.hc{height:51.646464px;}
.h5{height:54.411312px;}
.h9{height:56.368391px;}
.h1f{height:63.054113px;}
.h1d{height:64.536113px;}
.h1e{height:64.542113px;}
.h10{height:67.388414px;}
.h4{height:77.469696px;}
.h18{height:78.900432px;}
.h1b{height:78.906432px;}
.h1a{height:115.942391px;}
.h19{height:115.948391px;}
.h1c{height:116.200391px;}
.hf{height:147.972600px;}
.h16{height:426.265200px;}
.h14{height:431.920350px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:636.215580px;}
.w3{width:638.336835px;}
.w2{width:661.692600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.xb3{left:66.220500px;}
.xb4{left:69.411000px;}
.xb2{left:73.528500px;}
.x46{left:75.807000px;}
.x49{left:81.612000px;}
.xb7{left:83.682000px;}
.xdd{left:85.848000px;}
.xb5{left:87.792000px;}
.x4a{left:115.399500px;}
.x7a{left:127.078365px;}
.x7c{left:128.139270px;}
.x48{left:158.020500px;}
.xc4{left:187.261500px;}
.xc3{left:191.808000px;}
.xb6{left:201.610500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xb1{left:254.359500px;}
.xc8{left:259.095000px;}
.x56{left:261.694500px;}
.x44{left:266.475000px;}
.x53{left:268.656000px;}
.x3{left:269.914500px;}
.x68{left:272.190000px;}
.x37{left:274.062000px;}
.x75{left:275.817000px;}
.x54{left:277.887000px;}
.x27{left:279.031500px;}
.xd{left:281.479500px;}
.x76{left:282.624000px;}
.x69{left:287.134500px;}
.xc9{left:288.201000px;}
.x28{left:293.976000px;}
.xcc{left:296.298000px;}
.x6f{left:303.976500px;}
.x3a{left:305.728500px;}
.x89{left:308.712000px;}
.xbc{left:310.021500px;}
.x92{left:313.147500px;}
.x8a{left:315.519000px;}
.x70{left:318.921000px;}
.x3b{left:320.673000px;}
.x77{left:326.041500px;}
.x3c{left:328.279500px;}
.xaa{left:330.775500px;}
.x78{left:332.848500px;}
.x71{left:335.760000px;}
.x17{left:342.208500px;}
.x12{left:343.357500px;}
.xbd{left:347.145000px;}
.x18{left:349.680000px;}
.x72{left:350.704500px;}
.x45{left:354.987000px;}
.x19{left:357.003000px;}
.x65{left:358.758000px;}
.xad{left:363.762000px;}
.x7{left:365.566500px;}
.x38{left:369.016500px;}
.x1a{left:371.946000px;}
.xae{left:373.080000px;}
.x8{left:374.797500px;}
.x93{left:376.125000px;}
.x63{left:380.581500px;}
.x84{left:383.310000px;}
.x47{left:385.666500px;}
.x64{left:387.387000px;}
.x85{left:390.115500px;}
.xcb{left:392.232000px;}
.x62{left:395.920500px;}
.x29{left:397.329000px;}
.x5d{left:401.812500px;}
.x2a{left:409.434000px;}
.x55{left:410.508000px;}
.x5e{left:412.881000px;}
.x13{left:416.469000px;}
.x4b{left:420.838500px;}
.x14{left:423.940500px;}
.xcf{left:425.134500px;}
.x15{left:427.729500px;}
.x31{left:432.678000px;}
.xbe{left:434.073000px;}
.x16{left:435.201000px;}
.xc1{left:441.148500px;}
.x66{left:442.821000px;}
.x32{left:447.622500px;}
.x67{left:449.626500px;}
.x9d{left:452.083500px;}
.x6a{left:454.261500px;}
.x23{left:457.432500px;}
.xc2{left:458.637000px;}
.x9e{left:461.400000px;}
.xcd{left:470.301000px;}
.x24{left:472.375500px;}
.x25{left:476.187000px;}
.xb0{left:485.028000px;}
.x39{left:486.634500px;}
.x8b{left:489.520500px;}
.x26{left:491.130000px;}
.x5{left:495.976500px;}
.xbf{left:497.461500px;}
.x8c{left:498.750000px;}
.x6{left:502.783500px;}
.x1b{left:503.925000px;}
.xca{left:506.416500px;}
.xc0{left:510.769500px;}
.x98{left:516.699000px;}
.x1c{left:518.869500px;}
.x1d{left:526.326000px;}
.xde{left:527.800500px;}
.x6b{left:529.788000px;}
.x99{left:531.643500px;}
.x9a{left:535.453500px;}
.x6c{left:536.593500px;}
.x8e{left:537.880500px;}
.x1e{left:541.270500px;}
.x4c{left:543.825000px;}
.xce{left:545.215500px;}
.xd7{left:546.808500px;}
.x9b{left:550.398000px;}
.x35{left:552.876000px;}
.x4d{left:555.930000px;}
.x4e{left:558.544500px;}
.x36{left:559.683000px;}
.x4f{left:562.209000px;}
.x5f{left:564.319500px;}
.x79{left:568.074000px;}
.x8d{left:570.883500px;}
.x60{left:573.549000px;}
.x81{left:574.779000px;}
.x50{left:577.153500px;}
.x9f{left:582.256500px;}
.x82{left:584.008500px;}
.xa6{left:586.765500px;}
.x42{left:588.106500px;}
.x43{left:597.336000px;}
.xb8{left:598.510500px;}
.xb9{left:607.740000px;}
.xc6{left:611.892000px;}
.x86{left:613.606500px;}
.xa7{left:616.066500px;}
.x8f{left:620.506500px;}
.x1f{left:621.559500px;}
.x87{left:622.836000px;}
.x90{left:627.312000px;}
.xa0{left:630.684000px;}
.xda{left:633.159000px;}
.x7b{left:634.326423px;}
.x20{left:636.504000px;}
.x9{left:639.238500px;}
.x2d{left:641.760000px;}
.x21{left:644.110500px;}
.xdb{left:646.609500px;}
.xa{left:648.468000px;}
.xdc{left:649.903500px;}
.x6d{left:651.372000px;}
.xc5{left:652.927500px;}
.x2e{left:656.704500px;}
.x22{left:659.055000px;}
.x2f{left:660.516000px;}
.xab{left:663.217500px;}
.x41{left:666.657000px;}
.x30{left:675.459000px;}
.x3d{left:678.379500px;}
.xd3{left:679.635000px;}
.xa9{left:684.466500px;}
.xd4{left:686.059500px;}
.xa1{left:688.426500px;}
.x3e{left:693.322500px;}
.xa2{left:695.233500px;}
.x73{left:697.345500px;}
.x3f{left:700.758000px;}
.xa8{left:705.559500px;}
.xd5{left:708.088500px;}
.x74{left:712.290000px;}
.x40{left:715.701000px;}
.x51{left:716.796000px;}
.x33{left:721.840500px;}
.x52{left:724.873500px;}
.x6e{left:727.752000px;}
.xd8{left:732.033000px;}
.x61{left:733.125000px;}
.x34{left:736.785000px;}
.xac{left:738.948000px;}
.x5b{left:742.110000px;}
.x9c{left:750.615000px;}
.x5c{left:755.716500px;}
.x94{left:756.774000px;}
.xb{left:758.889000px;}
.xd0{left:764.815500px;}
.xe{left:770.538000px;}
.xd1{left:773.202000px;}
.xd9{left:774.798000px;}
.xf{left:778.009500px;}
.x10{left:781.723500px;}
.x7f{left:783.723000px;}
.x57{left:784.992000px;}
.x59{left:787.042500px;}
.x11{left:789.195000px;}
.xa3{left:790.974000px;}
.xba{left:792.177000px;}
.x88{left:795.217500px;}
.x80{left:798.667500px;}
.x58{left:799.936500px;}
.x5a{left:801.234000px;}
.xa4{left:802.954500px;}
.xd2{left:805.372500px;}
.x91{left:808.443000px;}
.xc7{left:811.005000px;}
.xa5{left:813.106500px;}
.xaf{left:814.281000px;}
.x2b{left:817.698000px;}
.x7d{left:818.893500px;}
.x95{left:821.724000px;}
.x83{left:825.169500px;}
.xd6{left:826.285500px;}
.x96{left:828.529500px;}
.x2c{left:832.642500px;}
.x7e{left:833.838000px;}
.xbb{left:835.332000px;}
.x97{left:837.120000px;}
.xc{left:838.188000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-10.624000pt;}
.v3{vertical-align:-9.706667pt;}
.v9{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.317333pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:31.877333pt;}
.v7{vertical-align:52.960000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000159pt;}
.ls28{letter-spacing:0.000544pt;}
.ls3f{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.462003pt;}
.ls32{letter-spacing:0.595951pt;}
.lsa{letter-spacing:0.637762pt;}
.ls13{letter-spacing:0.663756pt;}
.ls16{letter-spacing:0.665318pt;}
.ls11{letter-spacing:1.171985pt;}
.ls17{letter-spacing:2.651733pt;}
.ls6{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls18{letter-spacing:3.118133pt;}
.ls3e{letter-spacing:3.123467pt;}
.ls22{letter-spacing:3.158400pt;}
.ls9{letter-spacing:3.163733pt;}
.ls12{letter-spacing:3.175253pt;}
.ls0{letter-spacing:7.437600pt;}
.ls33{letter-spacing:9.041567pt;}
.ls7{letter-spacing:10.626533pt;}
.ls4{letter-spacing:10.627330pt;}
.ls3b{letter-spacing:10.863848pt;}
.ls45{letter-spacing:11.190378pt;}
.ls44{letter-spacing:11.549562pt;}
.ls35{letter-spacing:11.741532pt;}
.ls3c{letter-spacing:11.854701pt;}
.ls43{letter-spacing:11.940696pt;}
.ls34{letter-spacing:11.954133pt;}
.ls36{letter-spacing:11.959467pt;}
.ls42{letter-spacing:11.970282pt;}
.ls3a{letter-spacing:11.991145pt;}
.ls46{letter-spacing:12.007392pt;}
.ls40{letter-spacing:12.120527pt;}
.ls41{letter-spacing:12.120990pt;}
.ls3d{letter-spacing:12.185976pt;}
.ls37{letter-spacing:12.273371pt;}
.lse{letter-spacing:12.528078pt;}
.lsd{letter-spacing:12.533411pt;}
.ls1d{letter-spacing:13.284508pt;}
.ls21{letter-spacing:13.917762pt;}
.ls1f{letter-spacing:13.923096pt;}
.ls1e{letter-spacing:13.947774pt;}
.lsf{letter-spacing:14.607207pt;}
.ls15{letter-spacing:14.607467pt;}
.ls14{letter-spacing:14.612541pt;}
.ls10{letter-spacing:14.612800pt;}
.ls1a{letter-spacing:14.623207pt;}
.ls1b{letter-spacing:14.623467pt;}
.ls19{letter-spacing:15.090018pt;}
.ls2b{letter-spacing:15.145318pt;}
.ls24{letter-spacing:15.568223pt;}
.ls2f{letter-spacing:15.775467pt;}
.ls2e{letter-spacing:15.780541pt;}
.lsb{letter-spacing:15.843191pt;}
.ls27{letter-spacing:15.887026pt;}
.ls2c{letter-spacing:16.281318pt;}
.ls2d{letter-spacing:16.282133pt;}
.ls30{letter-spacing:16.415207pt;}
.ls31{letter-spacing:16.415467pt;}
.ls1c{letter-spacing:16.577766pt;}
.lsc{letter-spacing:16.684034pt;}
.ls25{letter-spacing:18.441874pt;}
.ls26{letter-spacing:18.447467pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls2a{letter-spacing:185.026755pt;}
.ls29{letter-spacing:198.306755pt;}
.ls23{letter-spacing:202.520089pt;}
.ls20{letter-spacing:214.472089pt;}
.ws17{word-spacing:-13.283467pt;}
.wsa{word-spacing:-12.760670pt;}
.ws97{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws15{word-spacing:-3.190308pt;}
.ws9c{word-spacing:-2.917069pt;}
.ws9b{word-spacing:-2.799777pt;}
.ws94{word-spacing:-2.709827pt;}
.ws43{word-spacing:-2.603559pt;}
.ws25{word-spacing:-2.337890pt;}
.ws16{word-spacing:-2.231622pt;}
.ws93{word-spacing:-2.178489pt;}
.ws4{word-spacing:-1.865027pt;}
.ws3f{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws8e{word-spacing:-1.806551pt;}
.ws2{word-spacing:-1.748099pt;}
.ws61{word-spacing:-1.540882pt;}
.wsa4{word-spacing:-1.434624pt;}
.ws20{word-spacing:-1.434614pt;}
.ws21{word-spacing:-1.381481pt;}
.ws52{word-spacing:-1.222079pt;}
.wsb0{word-spacing:-1.099878pt;}
.wsc3{word-spacing:-1.004237pt;}
.ws80{word-spacing:-0.956410pt;}
.wsc4{word-spacing:-0.765133pt;}
.ws54{word-spacing:-0.743874pt;}
.ws53{word-spacing:-0.690740pt;}
.ws50{word-spacing:-0.584473pt;}
.wsc2{word-spacing:-0.573850pt;}
.ws42{word-spacing:-0.531339pt;}
.ws4e{word-spacing:-0.478205pt;}
.ws98{word-spacing:-0.430387pt;}
.ws62{word-spacing:-0.425071pt;}
.ws99{word-spacing:-0.382566pt;}
.ws34{word-spacing:-0.318803pt;}
.wsa0{word-spacing:-0.286925pt;}
.wsf{word-spacing:-0.265669pt;}
.ws6e{word-spacing:-0.239104pt;}
.ws10{word-spacing:-0.212535pt;}
.ws87{word-spacing:-0.191283pt;}
.ws1e{word-spacing:-0.159402pt;}
.wsa8{word-spacing:-0.143462pt;}
.ws1b{word-spacing:-0.106268pt;}
.wsa7{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.ws63{word-spacing:-0.047821pt;}
.wsbc{word-spacing:-0.005137pt;}
.ws8{word-spacing:-0.002467pt;}
.wsbb{word-spacing:-0.002014pt;}
.wsb1{word-spacing:-0.001562pt;}
.ws7{word-spacing:0.000000pt;}
.ws23{word-spacing:0.002706pt;}
.wsc6{word-spacing:0.042363pt;}
.ws55{word-spacing:0.047821pt;}
.ws13{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws49{word-spacing:0.143462pt;}
.ws1c{word-spacing:0.159402pt;}
.ws92{word-spacing:0.191283pt;}
.ws14{word-spacing:0.212535pt;}
.wsb9{word-spacing:0.239104pt;}
.wsb{word-spacing:0.265669pt;}
.wsa6{word-spacing:0.283599pt;}
.wsb4{word-spacing:0.286925pt;}
.ws5a{word-spacing:0.318803pt;}
.wsa5{word-spacing:0.334746pt;}
.ws41{word-spacing:0.371937pt;}
.ws3{word-spacing:0.373629pt;}
.ws6{word-spacing:0.375335pt;}
.wsac{word-spacing:0.382566pt;}
.ws6a{word-spacing:0.462933pt;}
.ws3b{word-spacing:0.501067pt;}
.ws5d{word-spacing:0.503733pt;}
.ws7e{word-spacing:0.507467pt;}
.ws4b{word-spacing:0.531339pt;}
.ws4a{word-spacing:0.573850pt;}
.ws19{word-spacing:0.637606pt;}
.ws75{word-spacing:0.654308pt;}
.ws7b{word-spacing:0.656175pt;}
.ws74{word-spacing:0.658333pt;}
.ws7a{word-spacing:0.663835pt;}
.ws73{word-spacing:0.665600pt;}
.ws8a{word-spacing:0.679465pt;}
.ws7f{word-spacing:0.686279pt;}
.ws7c{word-spacing:0.686310pt;}
.ws7d{word-spacing:0.688177pt;}
.ws79{word-spacing:0.690044pt;}
.ws2e{word-spacing:0.690740pt;}
.ws11{word-spacing:0.743874pt;}
.ws37{word-spacing:0.850142pt;}
.ws90{word-spacing:0.903276pt;}
.ws91{word-spacing:1.009543pt;}
.wsbe{word-spacing:1.052058pt;}
.ws38{word-spacing:1.062677pt;}
.ws4c{word-spacing:1.168945pt;}
.ws5c{word-spacing:1.275213pt;}
.ws85{word-spacing:1.328347pt;}
.ws64{word-spacing:1.381481pt;}
.wsba{word-spacing:1.386803pt;}
.ws2d{word-spacing:1.434614pt;}
.ws1a{word-spacing:1.487748pt;}
.ws1f{word-spacing:1.540882pt;}
.ws48{word-spacing:1.594016pt;}
.ws26{word-spacing:1.647150pt;}
.wse{word-spacing:1.700284pt;}
.ws83{word-spacing:1.806551pt;}
.ws44{word-spacing:1.859685pt;}
.ws6c{word-spacing:2.019087pt;}
.ws36{word-spacing:2.072221pt;}
.ws9e{word-spacing:2.151936pt;}
.ws28{word-spacing:2.178489pt;}
.ws8f{word-spacing:2.231622pt;}
.ws69{word-spacing:2.247578pt;}
.ws6d{word-spacing:2.284756pt;}
.ws9a{word-spacing:2.295398pt;}
.ws81{word-spacing:2.337890pt;}
.ws58{word-spacing:2.444158pt;}
.ws40{word-spacing:2.550426pt;}
.ws46{word-spacing:2.603559pt;}
.wsa1{word-spacing:2.630144pt;}
.wsbf{word-spacing:2.725786pt;}
.wsb2{word-spacing:2.773606pt;}
.ws60{word-spacing:2.816095pt;}
.wsaa{word-spacing:2.830379pt;}
.wsb3{word-spacing:2.860373pt;}
.wsc5{word-spacing:2.861773pt;}
.wsb5{word-spacing:2.862788pt;}
.wsad{word-spacing:2.863044pt;}
.wsbd{word-spacing:2.864896pt;}
.wsc1{word-spacing:2.865203pt;}
.wsaf{word-spacing:2.865621pt;}
.wsa3{word-spacing:2.867063pt;}
.wsc0{word-spacing:2.868958pt;}
.ws2b{word-spacing:2.869229pt;}
.ws9f{word-spacing:2.869248pt;}
.wsa2{word-spacing:2.917069pt;}
.ws45{word-spacing:2.922363pt;}
.wsae{word-spacing:2.964890pt;}
.ws68{word-spacing:2.975497pt;}
.wsa9{word-spacing:3.060531pt;}
.wsc7{word-spacing:3.108352pt;}
.ws86{word-spacing:3.134898pt;}
.ws2a{word-spacing:3.188032pt;}
.ws51{word-spacing:3.241166pt;}
.wsb6{word-spacing:3.251814pt;}
.ws5b{word-spacing:3.294300pt;}
.ws4f{word-spacing:3.347434pt;}
.ws31{word-spacing:3.400567pt;}
.ws6b{word-spacing:3.453701pt;}
.wsc{word-spacing:3.506835pt;}
.ws65{word-spacing:3.559969pt;}
.ws67{word-spacing:3.613103pt;}
.ws95{word-spacing:3.634381pt;}
.ws66{word-spacing:3.666237pt;}
.ws96{word-spacing:3.682202pt;}
.ws32{word-spacing:3.719371pt;}
.ws18{word-spacing:3.825664pt;}
.ws5f{word-spacing:3.878772pt;}
.ws27{word-spacing:3.985040pt;}
.wsab{word-spacing:4.016947pt;}
.ws84{word-spacing:4.144442pt;}
.ws33{word-spacing:4.303843pt;}
.ws29{word-spacing:4.356977pt;}
.ws2f{word-spacing:4.463245pt;}
.ws47{word-spacing:4.569513pt;}
.ws3a{word-spacing:4.622646pt;}
.ws5e{word-spacing:4.675780pt;}
.ws82{word-spacing:4.728914pt;}
.wsb8{word-spacing:4.829901pt;}
.ws30{word-spacing:4.835182pt;}
.wsb7{word-spacing:5.116826pt;}
.wsd{word-spacing:5.153985pt;}
.ws56{word-spacing:5.366521pt;}
.ws39{word-spacing:5.419654pt;}
.ws22{word-spacing:5.632190pt;}
.ws2c{word-spacing:5.738458pt;}
.ws8b{word-spacing:5.844855pt;}
.ws4d{word-spacing:6.960537pt;}
.ws59{word-spacing:7.066804pt;}
.ws57{word-spacing:7.332474pt;}
.ws1d{word-spacing:15.090018pt;}
.ws1{word-spacing:19.715148pt;}
.ws3e{word-spacing:90.168172pt;}
.ws78{word-spacing:128.897728pt;}
.ws72{word-spacing:128.920693pt;}
.ws77{word-spacing:128.921531pt;}
.ws8d{word-spacing:134.249164pt;}
.ws88{word-spacing:135.833129pt;}
.ws3d{word-spacing:137.032242pt;}
.ws6f{word-spacing:161.949052pt;}
.ws89{word-spacing:163.756028pt;}
.ws71{word-spacing:169.516969pt;}
.ws3c{word-spacing:178.742327pt;}
.ws8c{word-spacing:199.230497pt;}
.ws70{word-spacing:207.824311pt;}
.ws76{word-spacing:217.104979pt;}
._9{margin-left:-18.846579pt;}
._45{margin-left:-16.854125pt;}
._3{margin-left:-13.538470pt;}
._5{margin-left:-10.616218pt;}
._28{margin-left:-7.374985pt;}
._6{margin-left:-5.897859pt;}
._b{margin-left:-4.731071pt;}
._42{margin-left:-3.809763pt;}
._1{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._2{width:1.153002pt;}
._7{width:2.667670pt;}
._0{width:9.670336pt;}
._44{width:11.150112pt;}
._12{width:12.233569pt;}
._c{width:13.177232pt;}
._40{width:14.154198pt;}
._11{width:15.461955pt;}
._10{width:16.588389pt;}
._1a{width:17.597933pt;}
._d{width:19.351350pt;}
._14{width:20.403405pt;}
._f{width:22.178068pt;}
._17{width:23.485169pt;}
._2a{width:24.664737pt;}
._18{width:25.610524pt;}
._29{width:27.066384pt;}
._2b{width:28.692288pt;}
._19{width:30.350061pt;}
._e{width:31.731541pt;}
._13{width:33.740005pt;}
._8{width:48.357290pt;}
._43{width:54.993920pt;}
._a{width:61.640809pt;}
._41{width:78.904320pt;}
._26{width:115.991231pt;}
._30{width:119.604334pt;}
._27{width:132.250194pt;}
._3f{width:141.759604pt;}
._2f{width:149.093630pt;}
._25{width:151.281283pt;}
._36{width:155.044623pt;}
._23{width:160.942482pt;}
._22{width:176.138768pt;}
._24{width:186.127935pt;}
._3a{width:189.687904pt;}
._1b{width:193.460409pt;}
._33{width:194.948157pt;}
._1c{width:196.382771pt;}
._34{width:198.561260pt;}
._39{width:206.743875pt;}
._37{width:208.231623pt;}
._2e{width:212.269797pt;}
._32{width:214.448286pt;}
._1d{width:220.027342pt;}
._2d{width:221.090019pt;}
._2c{width:229.113233pt;}
._3d{width:239.208668pt;}
._21{width:245.159661pt;}
._1e{width:246.647409pt;}
._3b{width:252.545268pt;}
._31{width:261.365490pt;}
._1f{width:271.726594pt;}
._3e{width:273.159657pt;}
._35{width:274.702091pt;}
._20{width:295.371165pt;}
._38{width:326.401343pt;}
._15{width:1705.197333pt;}
._3c{width:2286.226667pt;}
._16{width:2307.480000pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsd{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fsb{font-size:48.096000pt;}
.fsc{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fsa{font-size:64.128000pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:1.556740pt;}
.y7a{bottom:2.378041pt;}
.yd8{bottom:3.101125pt;}
.y3f{bottom:40.818667pt;}
.ya4{bottom:88.640000pt;}
.y14{bottom:89.120000pt;}
.yda{bottom:90.658667pt;}
.ycf{bottom:98.242667pt;}
.y107{bottom:98.768000pt;}
.y136{bottom:98.973333pt;}
.y73{bottom:102.117333pt;}
.y3e{bottom:102.293333pt;}
.yd0{bottom:103.065333pt;}
.y120{bottom:104.521333pt;}
.ya3{bottom:104.793333pt;}
.y13{bottom:105.020000pt;}
.ya1{bottom:107.209333pt;}
.yd9{bottom:107.754667pt;}
.y1ef{bottom:111.210667pt;}
.ya2{bottom:112.032000pt;}
.y1bd{bottom:113.181333pt;}
.y106{bottom:114.912000pt;}
.yce{bottom:116.813333pt;}
.y105{bottom:117.338667pt;}
.y135{bottom:117.544000pt;}
.y72{bottom:120.688000pt;}
.y3d{bottom:120.864000pt;}
.y12{bottom:120.920000pt;}
.y11f{bottom:123.090667pt;}
.ya0{bottom:125.780000pt;}
.y1ee{bottom:128.233333pt;}
.y1bc{bottom:130.204000pt;}
.yd7{bottom:130.349333pt;}
.ycd{bottom:135.384000pt;}
.y104{bottom:135.909333pt;}
.y134{bottom:136.114667pt;}
.y11{bottom:136.821333pt;}
.y170{bottom:137.566667pt;}
.y71{bottom:139.258667pt;}
.y3c{bottom:139.433333pt;}
.y11e{bottom:141.661333pt;}
.y9f{bottom:144.350667pt;}
.y1ed{bottom:145.256000pt;}
.y1bb{bottom:147.226667pt;}
.y10{bottom:152.721333pt;}
.ycc{bottom:153.953333pt;}
.y103{bottom:154.480000pt;}
.y133{bottom:154.684000pt;}
.y16f{bottom:156.137333pt;}
.y70{bottom:157.828000pt;}
.y3b{bottom:158.004000pt;}
.y18b{bottom:159.992000pt;}
.y11d{bottom:160.232000pt;}
.yed{bottom:160.924000pt;}
.y1ec{bottom:162.278667pt;}
.y9e{bottom:162.920000pt;}
.y1ba{bottom:164.249333pt;}
.yf{bottom:168.621333pt;}
.y102{bottom:170.622667pt;}
.ycb{bottom:172.524000pt;}
.y101{bottom:173.049333pt;}
.y132{bottom:173.254667pt;}
.y16e{bottom:174.706667pt;}
.y6f{bottom:176.398667pt;}
.y3a{bottom:176.574667pt;}
.y18a{bottom:177.788000pt;}
.y11c{bottom:178.801333pt;}
.y1eb{bottom:179.301333pt;}
.yec{bottom:179.493333pt;}
.y9d{bottom:179.498667pt;}
.y1b9{bottom:181.272000pt;}
.y9c{bottom:181.490667pt;}
.ye{bottom:184.522667pt;}
.yca{bottom:191.094667pt;}
.y100{bottom:191.620000pt;}
.y131{bottom:191.825333pt;}
.y16d{bottom:193.277333pt;}
.y6e{bottom:194.969333pt;}
.y39{bottom:195.144000pt;}
.y189{bottom:195.585333pt;}
.y13d{bottom:195.690667pt;}
.y1ea{bottom:196.324000pt;}
.y11b{bottom:197.372000pt;}
.yeb{bottom:198.064000pt;}
.y1b8{bottom:198.296000pt;}
.y9b{bottom:200.061333pt;}
.yd{bottom:200.422667pt;}
.yc9{bottom:209.664000pt;}
.yff{bottom:210.190667pt;}
.y16c{bottom:211.848000pt;}
.y1e9{bottom:213.346667pt;}
.y6d{bottom:213.540000pt;}
.y38{bottom:213.714667pt;}
.y130{bottom:214.380000pt;}
.y1b7{bottom:215.318667pt;}
.y119{bottom:215.942667pt;}
.yea{bottom:216.634667pt;}
.y9a{bottom:218.632000pt;}
.y11a{bottom:220.764000pt;}
.yc{bottom:224.293333pt;}
.yfe{bottom:226.333333pt;}
.yc8{bottom:228.234667pt;}
.yfd{bottom:228.760000pt;}
.y188{bottom:229.321333pt;}
.y1e8{bottom:230.369333pt;}
.y16b{bottom:230.418667pt;}
.y6c{bottom:232.109333pt;}
.y37{bottom:232.285333pt;}
.y1b6{bottom:232.341333pt;}
.y118{bottom:234.512000pt;}
.ye9{bottom:235.205333pt;}
.y99{bottom:237.201333pt;}
.yb{bottom:240.193333pt;}
.yc7{bottom:244.378667pt;}
.yc6{bottom:246.805333pt;}
.yfb{bottom:247.330667pt;}
.y1e7{bottom:247.392000pt;}
.y187{bottom:247.892000pt;}
.y12f{bottom:248.792000pt;}
.y169{bottom:248.988000pt;}
.y1b5{bottom:249.364000pt;}
.y36{bottom:250.854667pt;}
.yfc{bottom:252.152000pt;}
.y117{bottom:253.082667pt;}
.ye8{bottom:253.774667pt;}
.y16a{bottom:253.810667pt;}
.y6b{bottom:254.665333pt;}
.y98{bottom:255.772000pt;}
.ya{bottom:256.093333pt;}
.y1f2{bottom:260.210667pt;}
.y1e6{bottom:264.414667pt;}
.yc5{bottom:265.376000pt;}
.yfa{bottom:265.901333pt;}
.y1b4{bottom:266.386667pt;}
.y186{bottom:266.462667pt;}
.y168{bottom:267.558667pt;}
.y12e{bottom:268.597333pt;}
.y35{bottom:269.425333pt;}
.y115{bottom:271.653333pt;}
.y9{bottom:271.994667pt;}
.ye7{bottom:272.345333pt;}
.y97{bottom:274.342667pt;}
.y116{bottom:276.474667pt;}
.y1f1{bottom:277.233333pt;}
.y12d{bottom:277.700000pt;}
.y1e5{bottom:281.437333pt;}
.y1b3{bottom:283.409333pt;}
.yc4{bottom:283.945333pt;}
.yf8{bottom:284.470667pt;}
.y184{bottom:285.032000pt;}
.y167{bottom:286.129333pt;}
.y8{bottom:287.894667pt;}
.y34{bottom:287.996000pt;}
.y6a{bottom:289.176000pt;}
.yf9{bottom:289.293333pt;}
.y185{bottom:289.854667pt;}
.y114{bottom:290.222667pt;}
.ye6{bottom:290.916000pt;}
.y96{bottom:292.912000pt;}
.y1f0{bottom:294.256000pt;}
.y1e4{bottom:298.460000pt;}
.y1b2{bottom:300.432000pt;}
.yc3{bottom:302.516000pt;}
.yf6{bottom:303.041333pt;}
.y183{bottom:303.602667pt;}
.y7{bottom:303.794667pt;}
.y166{bottom:304.698667pt;}
.y33{bottom:306.565333pt;}
.y69{bottom:307.745333pt;}
.yf7{bottom:307.864000pt;}
.y113{bottom:308.793333pt;}
.ye4{bottom:309.485333pt;}
.y95{bottom:311.482667pt;}
.y12c{bottom:313.282667pt;}
.ye5{bottom:314.308000pt;}
.y1e3{bottom:315.482667pt;}
.y1b1{bottom:317.454667pt;}
.y6{bottom:319.696000pt;}
.yc2{bottom:321.086667pt;}
.yf4{bottom:321.612000pt;}
.y181{bottom:322.173333pt;}
.y12b{bottom:322.385333pt;}
.y164{bottom:323.269333pt;}
.y32{bottom:325.136000pt;}
.y68{bottom:326.316000pt;}
.yf5{bottom:326.433333pt;}
.y182{bottom:326.994667pt;}
.y112{bottom:327.364000pt;}
.ye3{bottom:328.056000pt;}
.y165{bottom:328.090667pt;}
.y94{bottom:330.053333pt;}
.y1e2{bottom:332.506667pt;}
.y1b0{bottom:334.477333pt;}
.yc1{bottom:339.656000pt;}
.yf3{bottom:340.181333pt;}
.y180{bottom:340.742667pt;}
.y5{bottom:340.909333pt;}
.y162{bottom:341.840000pt;}
.y31{bottom:343.706667pt;}
.y67{bottom:344.886667pt;}
.y111{bottom:345.934667pt;}
.ye2{bottom:346.626667pt;}
.y163{bottom:346.661333pt;}
.y93{bottom:348.622667pt;}
.y1e1{bottom:349.529333pt;}
.y1af{bottom:351.500000pt;}
.y4{bottom:356.809333pt;}
.y12a{bottom:357.966667pt;}
.ybf{bottom:358.226667pt;}
.yf1{bottom:358.752000pt;}
.y17f{bottom:359.313333pt;}
.y161{bottom:360.409333pt;}
.y30{bottom:362.277333pt;}
.yc0{bottom:363.048000pt;}
.y66{bottom:363.456000pt;}
.yf2{bottom:363.574667pt;}
.y110{bottom:364.504000pt;}
.ye1{bottom:365.196000pt;}
.y1e0{bottom:366.552000pt;}
.y129{bottom:367.069333pt;}
.y92{bottom:367.193333pt;}
.y1ae{bottom:368.522667pt;}
.y3{bottom:372.710667pt;}
.ybe{bottom:376.797333pt;}
.y17e{bottom:377.884000pt;}
.y160{bottom:378.980000pt;}
.y65{bottom:382.026667pt;}
.y10f{bottom:383.074667pt;}
.y1df{bottom:383.574667pt;}
.y2f{bottom:384.832000pt;}
.y1ad{bottom:385.545333pt;}
.y91{bottom:385.764000pt;}
.ye0{bottom:387.752000pt;}
.y2{bottom:388.610667pt;}
.yf0{bottom:390.421333pt;}
.ybd{bottom:395.366667pt;}
.y17d{bottom:396.453333pt;}
.y15e{bottom:397.550667pt;}
.y64{bottom:400.597333pt;}
.y10e{bottom:401.645333pt;}
.y15f{bottom:402.372000pt;}
.y1ac{bottom:402.568000pt;}
.y128{bottom:402.652000pt;}
.y90{bottom:404.333333pt;}
.yef{bottom:407.517333pt;}
.y8f{bottom:409.156000pt;}
.y1{bottom:409.824000pt;}
.ybb{bottom:413.937333pt;}
.y17c{bottom:415.024000pt;}
.y15c{bottom:416.120000pt;}
.y1de{bottom:417.620000pt;}
.ybc{bottom:418.760000pt;}
.y63{bottom:419.166667pt;}
.y1ab{bottom:419.590667pt;}
.y10d{bottom:420.214667pt;}
.y15d{bottom:420.942667pt;}
.y8e{bottom:422.904000pt;}
.yee{bottom:424.613333pt;}
.y127{bottom:424.993333pt;}
.y17b{bottom:431.168000pt;}
.yb9{bottom:432.508000pt;}
.y17a{bottom:433.594667pt;}
.y1dd{bottom:434.642667pt;}
.y15b{bottom:434.690667pt;}
.y1aa{bottom:436.613333pt;}
.yba{bottom:437.329333pt;}
.y62{bottom:437.737333pt;}
.y10c{bottom:438.785333pt;}
.y8d{bottom:441.474667pt;}
.y126{bottom:447.336000pt;}
.yb8{bottom:451.077333pt;}
.y1dc{bottom:451.665333pt;}
.y179{bottom:452.164000pt;}
.y15a{bottom:453.261333pt;}
.y1a9{bottom:453.636000pt;}
.y2e{bottom:455.242667pt;}
.y61{bottom:456.308000pt;}
.y8c{bottom:460.045333pt;}
.y10b{bottom:461.340000pt;}
.y1db{bottom:468.688000pt;}
.yb7{bottom:469.648000pt;}
.y125{bottom:469.678667pt;}
.y1a8{bottom:470.658667pt;}
.y178{bottom:470.734667pt;}
.y159{bottom:471.830667pt;}
.y2d{bottom:473.812000pt;}
.y60{bottom:474.877333pt;}
.y8b{bottom:478.614667pt;}
.y10a{bottom:480.801333pt;}
.y124{bottom:485.618667pt;}
.y1da{bottom:485.710667pt;}
.y1a7{bottom:487.681333pt;}
.yb5{bottom:488.218667pt;}
.y177{bottom:489.305333pt;}
.y158{bottom:490.401333pt;}
.yb6{bottom:493.040000pt;}
.y5f{bottom:493.448000pt;}
.y8a{bottom:497.185333pt;}
.y1d9{bottom:502.733333pt;}
.y1a6{bottom:504.704000pt;}
.yb4{bottom:506.789333pt;}
.y175{bottom:507.876000pt;}
.y2c{bottom:508.322667pt;}
.y157{bottom:508.972000pt;}
.y109{bottom:509.374667pt;}
.y5e{bottom:512.018667pt;}
.y176{bottom:512.697333pt;}
.y89{bottom:515.756000pt;}
.y123{bottom:517.312000pt;}
.y1d8{bottom:519.756000pt;}
.y1a5{bottom:521.726667pt;}
.yb3{bottom:525.358667pt;}
.y174{bottom:526.445333pt;}
.y108{bottom:526.470667pt;}
.y2b{bottom:526.893333pt;}
.y155{bottom:527.542667pt;}
.y5d{bottom:530.589333pt;}
.yd6{bottom:531.645333pt;}
.y156{bottom:532.364000pt;}
.y88{bottom:534.325333pt;}
.y122{bottom:534.406667pt;}
.y1d7{bottom:536.778667pt;}
.y1a4{bottom:538.750667pt;}
.yb2{bottom:543.929333pt;}
.y2a{bottom:545.464000pt;}
.y154{bottom:546.112000pt;}
.yd5{bottom:548.741333pt;}
.y173{bottom:549.001333pt;}
.y5c{bottom:549.158667pt;}
.y87{bottom:552.896000pt;}
.y1d6{bottom:553.801333pt;}
.y1a3{bottom:555.773333pt;}
.yb1{bottom:562.500000pt;}
.y29{bottom:564.033333pt;}
.y153{bottom:564.682667pt;}
.y5b{bottom:567.729333pt;}
.y1d5{bottom:570.824000pt;}
.yd3{bottom:571.334667pt;}
.y121{bottom:571.428000pt;}
.y86{bottom:571.466667pt;}
.y1a2{bottom:572.796000pt;}
.y172{bottom:580.670667pt;}
.y28{bottom:582.604000pt;}
.y152{bottom:583.253333pt;}
.yb0{bottom:585.054667pt;}
.y5a{bottom:586.300000pt;}
.y1d4{bottom:587.846667pt;}
.y1a1{bottom:589.818667pt;}
.y85{bottom:590.036000pt;}
.ydf{bottom:591.121333pt;}
.y171{bottom:597.765333pt;}
.y27{bottom:601.174667pt;}
.y151{bottom:601.822667pt;}
.y59{bottom:604.869333pt;}
.yaf{bottom:606.772000pt;}
.y1a0{bottom:606.841333pt;}
.y84{bottom:608.606667pt;}
.y26{bottom:619.744000pt;}
.y1d3{bottom:621.892000pt;}
.y57{bottom:623.440000pt;}
.y19f{bottom:623.864000pt;}
.y150{bottom:624.378667pt;}
.y83{bottom:627.177333pt;}
.y58{bottom:628.261333pt;}
.y24{bottom:638.314667pt;}
.y1d2{bottom:638.914667pt;}
.y19e{bottom:640.886667pt;}
.yae{bottom:641.282667pt;}
.y56{bottom:642.010667pt;}
.y25{bottom:643.137333pt;}
.y82{bottom:645.746667pt;}
.y1d1{bottom:655.937333pt;}
.y23{bottom:656.885333pt;}
.y19d{bottom:657.909333pt;}
.y14f{bottom:658.790667pt;}
.yad{bottom:659.852000pt;}
.y55{bottom:660.580000pt;}
.y81{bottom:664.317333pt;}
.yde{bottom:665.402667pt;}
.y1d0{bottom:672.961333pt;}
.y19c{bottom:674.932000pt;}
.y22{bottom:675.456000pt;}
.yac{bottom:678.422667pt;}
.y14e{bottom:678.925333pt;}
.y54{bottom:679.150667pt;}
.y7f{bottom:682.888000pt;}
.y80{bottom:687.709333pt;}
.y1cf{bottom:689.984000pt;}
.y19b{bottom:691.954667pt;}
.y21{bottom:694.025333pt;}
.yab{bottom:696.993333pt;}
.y53{bottom:697.721333pt;}
.y7e{bottom:701.458667pt;}
.y14d{bottom:701.928000pt;}
.ydd{bottom:702.542667pt;}
.y1ce{bottom:707.006667pt;}
.y19a{bottom:708.977333pt;}
.y20{bottom:712.596000pt;}
.yaa{bottom:715.564000pt;}
.y52{bottom:716.290667pt;}
.y7c{bottom:720.028000pt;}
.ydc{bottom:721.113333pt;}
.y1cd{bottom:724.029333pt;}
.y14c{bottom:724.600000pt;}
.y7d{bottom:724.850667pt;}
.y199{bottom:726.000000pt;}
.ya9{bottom:734.133333pt;}
.y51{bottom:734.861333pt;}
.y1f{bottom:739.136000pt;}
.y13c{bottom:739.684000pt;}
.y1cc{bottom:741.052000pt;}
.y149{bottom:746.344000pt;}
.y198{bottom:747.008000pt;}
.y14b{bottom:747.602667pt;}
.y7b{bottom:750.532000pt;}
.ya8{bottom:752.704000pt;}
.y50{bottom:753.432000pt;}
.y1cb{bottom:758.074667pt;}
.y13b{bottom:758.253333pt;}
.y14a{bottom:769.944000pt;}
.y4f{bottom:772.002667pt;}
.y79{bottom:773.126667pt;}
.y1e{bottom:774.709333pt;}
.y1ca{bottom:775.097333pt;}
.y13a{bottom:776.824000pt;}
.y197{bottom:781.518667pt;}
.ya7{bottom:784.373333pt;}
.y1d{bottom:789.056000pt;}
.y4e{bottom:790.572000pt;}
.y1c9{bottom:792.120000pt;}
.y148{bottom:792.286667pt;}
.ydb{bottom:795.394667pt;}
.y196{bottom:798.850667pt;}
.ya6{bottom:801.469333pt;}
.y147{bottom:802.049333pt;}
.y1c{bottom:807.260000pt;}
.y4d{bottom:809.142667pt;}
.y195{bottom:816.182667pt;}
.ya5{bottom:818.565333pt;}
.y1b{bottom:821.605333pt;}
.y1c8{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.y1a{bottom:832.094667pt;}
.y139{bottom:832.534667pt;}
.y146{bottom:837.632000pt;}
.y194{bottom:841.485333pt;}
.y1c7{bottom:843.188000pt;}
.y4b{bottom:846.282667pt;}
.y19{bottom:850.298667pt;}
.y193{bottom:858.817333pt;}
.y143{bottom:859.374667pt;}
.y1c6{bottom:860.210667pt;}
.y145{bottom:860.633333pt;}
.y49{bottom:864.853333pt;}
.y4a{bottom:869.674667pt;}
.y1c5{bottom:877.233333pt;}
.y144{bottom:882.976000pt;}
.y48{bottom:883.424000pt;}
.y192{bottom:884.120000pt;}
.y18{bottom:890.010667pt;}
.y1c4{bottom:894.256000pt;}
.y191{bottom:901.452000pt;}
.y47{bottom:901.993333pt;}
.y142{bottom:905.318667pt;}
.y1c3{bottom:911.278667pt;}
.y141{bottom:914.364000pt;}
.y190{bottom:918.784000pt;}
.y46{bottom:920.564000pt;}
.y17{bottom:924.521333pt;}
.y1c2{bottom:928.301333pt;}
.y78{bottom:938.354667pt;}
.y45{bottom:939.134667pt;}
.y138{bottom:943.956000pt;}
.y18f{bottom:944.086667pt;}
.y1c1{bottom:945.324000pt;}
.y140{bottom:950.002667pt;}
.y16{bottom:952.377333pt;}
.y44{bottom:957.704000pt;}
.y77{bottom:960.697333pt;}
.y18e{bottom:961.418667pt;}
.y1c0{bottom:962.346667pt;}
.y137{bottom:962.526667pt;}
.y13f{bottom:965.942667pt;}
.y75{bottom:969.682667pt;}
.y43{bottom:976.274667pt;}
.y18d{bottom:978.750667pt;}
.y1bf{bottom:979.369333pt;}
.y15{bottom:980.232000pt;}
.y76{bottom:983.038667pt;}
.y42{bottom:994.845333pt;}
.y18c{bottom:996.082667pt;}
.y1be{bottom:996.392000pt;}
.y13e{bottom:997.636000pt;}
.yd2{bottom:999.666667pt;}
.y41{bottom:1013.414667pt;}
.y74{bottom:1014.732000pt;}
.yd1{bottom:1018.237333pt;}
.y40{bottom:1066.841333pt;}
.h21{height:22.475776pt;}
.h20{height:23.049626pt;}
.hb{height:24.972917pt;}
.h11{height:25.610524pt;}
.ha{height:28.023859pt;}
.h13{height:28.186543pt;}
.h6{height:30.063343pt;}
.h2{height:35.073565pt;}
.h17{height:36.873667pt;}
.h12{height:37.193707pt;}
.hd{height:38.080100pt;}
.h8{height:38.256384pt;}
.h3{height:38.947124pt;}
.h7{height:40.084290pt;}
.h22{height:43.165985pt;}
.h15{height:44.925609pt;}
.he{height:45.095014pt;}
.hc{height:45.907968pt;}
.h5{height:48.365611pt;}
.h9{height:50.105236pt;}
.h1f{height:56.048100pt;}
.h1d{height:57.365434pt;}
.h1e{height:57.370767pt;}
.h10{height:59.900812pt;}
.h4{height:68.861952pt;}
.h18{height:70.133717pt;}
.h1b{height:70.139051pt;}
.h1a{height:103.059903pt;}
.h19{height:103.065236pt;}
.h1c{height:103.289236pt;}
.hf{height:131.531200pt;}
.h16{height:378.902400pt;}
.h14{height:383.929200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:565.524960pt;}
.w3{width:567.410520pt;}
.w2{width:588.171200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.xb3{left:58.862667pt;}
.xb4{left:61.698667pt;}
.xb2{left:65.358667pt;}
.x46{left:67.384000pt;}
.x49{left:72.544000pt;}
.xb7{left:74.384000pt;}
.xdd{left:76.309333pt;}
.xb5{left:78.037333pt;}
.x4a{left:102.577333pt;}
.x7a{left:112.958547pt;}
.x7c{left:113.901573pt;}
.x48{left:140.462667pt;}
.xc4{left:166.454667pt;}
.xc3{left:170.496000pt;}
.xb6{left:179.209333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xb1{left:226.097333pt;}
.xc8{left:230.306667pt;}
.x56{left:232.617333pt;}
.x44{left:236.866667pt;}
.x53{left:238.805333pt;}
.x3{left:239.924000pt;}
.x68{left:241.946667pt;}
.x37{left:243.610667pt;}
.x75{left:245.170667pt;}
.x54{left:247.010667pt;}
.x27{left:248.028000pt;}
.xd{left:250.204000pt;}
.x76{left:251.221333pt;}
.x69{left:255.230667pt;}
.xc9{left:256.178667pt;}
.x28{left:261.312000pt;}
.xcc{left:263.376000pt;}
.x6f{left:270.201333pt;}
.x3a{left:271.758667pt;}
.x89{left:274.410667pt;}
.xbc{left:275.574667pt;}
.x92{left:278.353333pt;}
.x8a{left:280.461333pt;}
.x70{left:283.485333pt;}
.x3b{left:285.042667pt;}
.x77{left:289.814667pt;}
.x3c{left:291.804000pt;}
.xaa{left:294.022667pt;}
.x78{left:295.865333pt;}
.x71{left:298.453333pt;}
.x17{left:304.185333pt;}
.x12{left:305.206667pt;}
.xbd{left:308.573333pt;}
.x18{left:310.826667pt;}
.x72{left:311.737333pt;}
.x45{left:315.544000pt;}
.x19{left:317.336000pt;}
.x65{left:318.896000pt;}
.xad{left:323.344000pt;}
.x7{left:324.948000pt;}
.x38{left:328.014667pt;}
.x1a{left:330.618667pt;}
.xae{left:331.626667pt;}
.x8{left:333.153333pt;}
.x93{left:334.333333pt;}
.x63{left:338.294667pt;}
.x84{left:340.720000pt;}
.x47{left:342.814667pt;}
.x64{left:344.344000pt;}
.x85{left:346.769333pt;}
.xcb{left:348.650667pt;}
.x62{left:351.929333pt;}
.x29{left:353.181333pt;}
.x5d{left:357.166667pt;}
.x2a{left:363.941333pt;}
.x55{left:364.896000pt;}
.x5e{left:367.005333pt;}
.x13{left:370.194667pt;}
.x4b{left:374.078667pt;}
.x14{left:376.836000pt;}
.xcf{left:377.897333pt;}
.x15{left:380.204000pt;}
.x31{left:384.602667pt;}
.xbe{left:385.842667pt;}
.x16{left:386.845333pt;}
.xc1{left:392.132000pt;}
.x66{left:393.618667pt;}
.x32{left:397.886667pt;}
.x67{left:399.668000pt;}
.x9d{left:401.852000pt;}
.x6a{left:403.788000pt;}
.x23{left:406.606667pt;}
.xc2{left:407.677333pt;}
.x9e{left:410.133333pt;}
.xcd{left:418.045333pt;}
.x24{left:419.889333pt;}
.x25{left:423.277333pt;}
.xb0{left:431.136000pt;}
.x39{left:432.564000pt;}
.x8b{left:435.129333pt;}
.x26{left:436.560000pt;}
.x5{left:440.868000pt;}
.xbf{left:442.188000pt;}
.x8c{left:443.333333pt;}
.x6{left:446.918667pt;}
.x1b{left:447.933333pt;}
.xca{left:450.148000pt;}
.xc0{left:454.017333pt;}
.x98{left:459.288000pt;}
.x1c{left:461.217333pt;}
.x1d{left:467.845333pt;}
.xde{left:469.156000pt;}
.x6b{left:470.922667pt;}
.x99{left:472.572000pt;}
.x9a{left:475.958667pt;}
.x6c{left:476.972000pt;}
.x8e{left:478.116000pt;}
.x1e{left:481.129333pt;}
.x4c{left:483.400000pt;}
.xce{left:484.636000pt;}
.xd7{left:486.052000pt;}
.x9b{left:489.242667pt;}
.x35{left:491.445333pt;}
.x4d{left:494.160000pt;}
.x4e{left:496.484000pt;}
.x36{left:497.496000pt;}
.x4f{left:499.741333pt;}
.x5f{left:501.617333pt;}
.x79{left:504.954667pt;}
.x8d{left:507.452000pt;}
.x60{left:509.821333pt;}
.x81{left:510.914667pt;}
.x50{left:513.025333pt;}
.x9f{left:517.561333pt;}
.x82{left:519.118667pt;}
.xa6{left:521.569333pt;}
.x42{left:522.761333pt;}
.x43{left:530.965333pt;}
.xb8{left:532.009333pt;}
.xb9{left:540.213333pt;}
.xc6{left:543.904000pt;}
.x86{left:545.428000pt;}
.xa7{left:547.614667pt;}
.x8f{left:551.561333pt;}
.x1f{left:552.497333pt;}
.x87{left:553.632000pt;}
.x90{left:557.610667pt;}
.xa0{left:560.608000pt;}
.xda{left:562.808000pt;}
.x7b{left:563.845709pt;}
.x20{left:565.781333pt;}
.x9{left:568.212000pt;}
.x2d{left:570.453333pt;}
.x21{left:572.542667pt;}
.xdb{left:574.764000pt;}
.xa{left:576.416000pt;}
.xdc{left:577.692000pt;}
.x6d{left:578.997333pt;}
.xc5{left:580.380000pt;}
.x2e{left:583.737333pt;}
.x22{left:585.826667pt;}
.x2f{left:587.125333pt;}
.xab{left:589.526667pt;}
.x41{left:592.584000pt;}
.x30{left:600.408000pt;}
.x3d{left:603.004000pt;}
.xd3{left:604.120000pt;}
.xa9{left:608.414667pt;}
.xd4{left:609.830667pt;}
.xa1{left:611.934667pt;}
.x3e{left:616.286667pt;}
.xa2{left:617.985333pt;}
.x73{left:619.862667pt;}
.x3f{left:622.896000pt;}
.xa8{left:627.164000pt;}
.xd5{left:629.412000pt;}
.x74{left:633.146667pt;}
.x40{left:636.178667pt;}
.x51{left:637.152000pt;}
.x33{left:641.636000pt;}
.x52{left:644.332000pt;}
.x6e{left:646.890667pt;}
.xd8{left:650.696000pt;}
.x61{left:651.666667pt;}
.x34{left:654.920000pt;}
.xac{left:656.842667pt;}
.x5b{left:659.653333pt;}
.x9c{left:667.213333pt;}
.x5c{left:671.748000pt;}
.x94{left:672.688000pt;}
.xb{left:674.568000pt;}
.xd0{left:679.836000pt;}
.xe{left:684.922667pt;}
.xd1{left:687.290667pt;}
.xd9{left:688.709333pt;}
.xf{left:691.564000pt;}
.x10{left:694.865333pt;}
.x7f{left:696.642667pt;}
.x57{left:697.770667pt;}
.x59{left:699.593333pt;}
.x11{left:701.506667pt;}
.xa3{left:703.088000pt;}
.xba{left:704.157333pt;}
.x88{left:706.860000pt;}
.x80{left:709.926667pt;}
.x58{left:711.054667pt;}
.x5a{left:712.208000pt;}
.xa4{left:713.737333pt;}
.xd2{left:715.886667pt;}
.x91{left:718.616000pt;}
.xc7{left:720.893333pt;}
.xa5{left:722.761333pt;}
.xaf{left:723.805333pt;}
.x2b{left:726.842667pt;}
.x7d{left:727.905333pt;}
.x95{left:730.421333pt;}
.x83{left:733.484000pt;}
.xd6{left:734.476000pt;}
.x96{left:736.470667pt;}
.x2c{left:740.126667pt;}
.x7e{left:741.189333pt;}
.xbb{left:742.517333pt;}
.x97{left:744.106667pt;}
.xc{left:745.056000pt;}
}




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