
    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_c0535879e73671931663d545.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_843cb22f45847bf899f0a077.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_606da155a638a092a308664c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_f9404be471d3b933e9496d7b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f5a31acc18cd11b588988c2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.522000;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_bbbb22fc90e808ce18c887ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.013672;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_9d00a976d8629aef9761910b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_955461fdd1f57d4f3ad98ab2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_0d80b79a202fc0fb1f98d5a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_f2b980b47a3d8db4d33556e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734863;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_570e561eab64a4f1901a3e31.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666000;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_28c23d2bd08123286d19377e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988000;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_75bac457cb0511de15acbb36.woff2')format("woff");}.fff{font-family:fff;line-height:0.701000;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_56aa32959751f7dfb581c7d8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3ccc5b9178c37e7a7df39941.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.580000;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_ca6b20bc749997eca558ffc5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;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;}
.m6{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);}
.m17{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);}
.m22{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);}
.m26{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);}
.m27{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);}
.mb{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);}
.m20{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);}
.mf{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);}
.m25{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);}
.m10{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);}
.m13{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);}
.m23{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);}
.m16{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);}
.m1c{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);}
.m11{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);}
.m1e{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);}
.m24{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);}
.m2{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);}
.m4{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);}
.ma{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);}
.m9{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);}
.m18{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);}
.m7{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);}
.me{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);}
.m15{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);}
.m1d{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);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.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);}
.md{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);}
.m14{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);}
.m8{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);}
.m28{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);}
.m5{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);}
.mc{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);}
.m1f{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);}
.m1a{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);}
.m19{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);}
.m29{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);}
.m1{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);}
.v1{vertical-align:-11.958000px;}
.v2{vertical-align:-10.470000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.970000px;}
.ls23{letter-spacing:-0.129859px;}
.ls22{letter-spacing:-0.086573px;}
.ls25{letter-spacing:-0.081763px;}
.ls19{letter-spacing:-0.076954px;}
.ls20{letter-spacing:-0.052906px;}
.ls1e{letter-spacing:-0.048096px;}
.ls1a{letter-spacing:-0.043286px;}
.ls18{letter-spacing:-0.038477px;}
.ls15{letter-spacing:-0.030643px;}
.ls1b{letter-spacing:-0.028858px;}
.ls21{letter-spacing:-0.024048px;}
.ls1d{letter-spacing:-0.014429px;}
.ls16{letter-spacing:-0.011491px;}
.ls24{letter-spacing:-0.009619px;}
.ls1c{letter-spacing:-0.004810px;}
.ls0{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000422px;}
.ls43{letter-spacing:0.001133px;}
.lsf{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.019238px;}
.ls13{letter-spacing:0.024048px;}
.ls14{letter-spacing:0.043286px;}
.ls12{letter-spacing:0.048096px;}
.ls17{letter-spacing:0.076954px;}
.ls11{letter-spacing:0.081763px;}
.lse{letter-spacing:0.134064px;}
.lsd{letter-spacing:0.145555px;}
.ls1f{letter-spacing:0.937872px;}
.ls35{letter-spacing:1.415108px;}
.ls3a{letter-spacing:1.421108px;}
.ls30{letter-spacing:1.494390px;}
.ls45{letter-spacing:1.753267px;}
.ls3b{letter-spacing:1.939625px;}
.ls2c{letter-spacing:1.945625px;}
.ls46{letter-spacing:2.988600px;}
.ls38{letter-spacing:3.690374px;}
.ls2f{letter-spacing:5.827200px;}
.ls2{letter-spacing:11.954850px;}
.ls34{letter-spacing:13.089483px;}
.ls47{letter-spacing:13.458422px;}
.lsa{letter-spacing:14.107042px;}
.lsb{letter-spacing:14.166817px;}
.ls2e{letter-spacing:14.583483px;}
.ls7{letter-spacing:14.585246px;}
.ls41{letter-spacing:14.824349px;}
.ls26{letter-spacing:14.884124px;}
.ls6{letter-spacing:14.943900px;}
.ls37{letter-spacing:15.355142px;}
.ls2d{letter-spacing:15.355200px;}
.ls33{letter-spacing:15.355258px;}
.ls32{letter-spacing:15.357886px;}
.lsc{letter-spacing:15.780758px;}
.ls36{letter-spacing:15.925200px;}
.ls31{letter-spacing:16.248571px;}
.ls3{letter-spacing:16.318739px;}
.ls3d{letter-spacing:17.325483px;}
.ls4{letter-spacing:17.633802px;}
.ls3f{letter-spacing:17.932680px;}
.ls2b{letter-spacing:19.563483px;}
.ls28{letter-spacing:20.084602px;}
.ls27{letter-spacing:20.144377px;}
.ls3c{letter-spacing:20.335200px;}
.ls42{letter-spacing:20.341200px;}
.ls3e{letter-spacing:20.371200px;}
.ls8{letter-spacing:20.682358px;}
.ls40{letter-spacing:20.737200px;}
.ls9{letter-spacing:20.742133px;}
.ls2a{letter-spacing:21.222571px;}
.ls29{letter-spacing:21.997421px;}
.ls1{letter-spacing:28.453654px;}
.ls5{letter-spacing:92.438700px;}
.ls44{letter-spacing:213.418253px;}
.ls39{letter-spacing:467.034571px;}
.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;}
}
.wsb6{word-spacing:-226.867853px;}
.ws45{word-spacing:-14.943900px;}
.wscc{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws57{word-spacing:-9.721555px;}
.ws58{word-spacing:-9.576000px;}
.wsc0{word-spacing:-3.526760px;}
.wse6{word-spacing:-2.958912px;}
.ws43{word-spacing:-2.869229px;}
.ws2a{word-spacing:-2.510575px;}
.ws22{word-spacing:-2.391024px;}
.ws3f{word-spacing:-2.151922px;}
.ws80{word-spacing:-1.972595px;}
.ws7a{word-spacing:-1.912819px;}
.ws77{word-spacing:-1.793268px;}
.wsa7{word-spacing:-1.733492px;}
.wsac{word-spacing:-1.554166px;}
.ws3e{word-spacing:-1.494390px;}
.wsd5{word-spacing:-1.452557px;}
.ws46{word-spacing:-1.374839px;}
.wsc5{word-spacing:-1.315063px;}
.ws20{word-spacing:-1.195512px;}
.wsb2{word-spacing:-1.135736px;}
.ws71{word-spacing:-1.106208px;}
.ws94{word-spacing:-1.075961px;}
.ws70{word-spacing:-1.067731px;}
.ws44{word-spacing:-1.016185px;}
.wsf0{word-spacing:-0.968371px;}
.wsa6{word-spacing:-0.896634px;}
.ws8b{word-spacing:-0.836858px;}
.ws32{word-spacing:-0.717307px;}
.ws10{word-spacing:-0.699379px;}
.ws4d{word-spacing:-0.597756px;}
.wsa4{word-spacing:-0.537980px;}
.wsab{word-spacing:-0.418429px;}
.wsd2{word-spacing:-0.376589px;}
.ws4a{word-spacing:-0.358654px;}
.wsb4{word-spacing:-0.329247px;}
.ws13{word-spacing:-0.322790px;}
.ws51{word-spacing:-0.298878px;}
.wsdc{word-spacing:-0.268992px;}
.ws18{word-spacing:-0.239102px;}
.ws5b{word-spacing:-0.218333px;}
.wse8{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.wse{word-spacing:-0.161395px;}
.ws47{word-spacing:-0.119551px;}
.ws11{word-spacing:-0.107597px;}
.ws5c{word-spacing:-0.061286px;}
.ws19{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.053798px;}
.ws59{word-spacing:-0.048096px;}
.ws28{word-spacing:-0.047821px;}
.ws5a{word-spacing:-0.042134px;}
.wsef{word-spacing:-0.011299px;}
.ws60{word-spacing:-0.004810px;}
.wsb5{word-spacing:-0.003139px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.041843px;}
.wse3{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.wsc9{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.ws68{word-spacing:0.120240px;}
.ws5f{word-spacing:0.125280px;}
.ws5e{word-spacing:0.142560px;}
.wsd1{word-spacing:0.161395px;}
.ws2d{word-spacing:0.179327px;}
.wsea{word-spacing:0.215194px;}
.ws1c{word-spacing:0.239102px;}
.wsee{word-spacing:0.268992px;}
.ws1f{word-spacing:0.298878px;}
.wsec{word-spacing:0.322790px;}
.ws3d{word-spacing:0.358654px;}
.wsd8{word-spacing:0.376589px;}
.ws87{word-spacing:0.418429px;}
.wsa5{word-spacing:0.537980px;}
.wsf4{word-spacing:0.537984px;}
.wscd{word-spacing:0.591782px;}
.wsbd{word-spacing:0.597756px;}
.ws41{word-spacing:0.657532px;}
.ws36{word-spacing:0.717307px;}
.wse7{word-spacing:0.753178px;}
.ws7c{word-spacing:0.777083px;}
.wsc7{word-spacing:0.806976px;}
.ws1b{word-spacing:0.836858px;}
.ws2b{word-spacing:0.896634px;}
.wsca{word-spacing:0.914573px;}
.ws69{word-spacing:0.942682px;}
.ws29{word-spacing:0.956410px;}
.ws62{word-spacing:0.981158px;}
.ws61{word-spacing:1.014826px;}
.ws3a{word-spacing:1.075961px;}
.ws106{word-spacing:1.129766px;}
.ws31{word-spacing:1.135736px;}
.ws4f{word-spacing:1.195512px;}
.ws67{word-spacing:1.202400px;}
.ws64{word-spacing:1.226448px;}
.ws63{word-spacing:1.250496px;}
.ws40{word-spacing:1.255288px;}
.wsc1{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws56{word-spacing:1.434614px;}
.ws33{word-spacing:1.494390px;}
.wse2{word-spacing:1.506355px;}
.ws38{word-spacing:1.554166px;}
.ws6c{word-spacing:1.596787px;}
.ws30{word-spacing:1.613941px;}
.ws6d{word-spacing:1.640074px;}
.ws2f{word-spacing:1.673717px;}
.wsa3{word-spacing:1.733492px;}
.ws16{word-spacing:1.793268px;}
.ws3b{word-spacing:1.853044px;}
.ws9a{word-spacing:1.912819px;}
.ws9b{word-spacing:2.032370px;}
.ws72{word-spacing:2.044080px;}
.ws90{word-spacing:2.092146px;}
.ws73{word-spacing:2.096986px;}
.ws8c{word-spacing:2.151922px;}
.wsdf{word-spacing:2.259533px;}
.wsa2{word-spacing:2.271473px;}
.ws55{word-spacing:2.331248px;}
.ws6b{word-spacing:2.399990px;}
.ws6a{word-spacing:2.428848px;}
.wsc6{word-spacing:2.450800px;}
.wsae{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsad{word-spacing:2.525189px;}
.wsfb{word-spacing:2.528525px;}
.ws49{word-spacing:2.689902px;}
.ws100{word-spacing:2.689920px;}
.ws48{word-spacing:2.749678px;}
.ws86{word-spacing:2.809453px;}
.ws97{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.wsd4{word-spacing:2.905114px;}
.ws25{word-spacing:2.988780px;}
.wsf3{word-spacing:3.012710px;}
.ws78{word-spacing:3.048556px;}
.ws96{word-spacing:3.108331px;}
.ws24{word-spacing:3.168107px;}
.wsd{word-spacing:3.213331px;}
.ws14{word-spacing:3.219667px;}
.wse9{word-spacing:3.220032px;}
.ws42{word-spacing:3.227882px;}
.wsd0{word-spacing:3.227904px;}
.ws34{word-spacing:3.287658px;}
.wse5{word-spacing:3.335501px;}
.ws99{word-spacing:3.347434px;}
.ws109{word-spacing:3.389299px;}
.wsc8{word-spacing:3.401000px;}
.ws8d{word-spacing:3.466985px;}
.ws10e{word-spacing:3.496896px;}
.wsa9{word-spacing:3.526760px;}
.ws15{word-spacing:3.586536px;}
.ws52{word-spacing:3.706087px;}
.wsf{word-spacing:3.712090px;}
.ws3c{word-spacing:3.765863px;}
.ws6f{word-spacing:3.765917px;}
.ws7b{word-spacing:3.825638px;}
.ws6e{word-spacing:3.828442px;}
.ws35{word-spacing:3.885414px;}
.ws79{word-spacing:3.945190px;}
.ws1a{word-spacing:4.004965px;}
.wsb3{word-spacing:4.064741px;}
.ws65{word-spacing:4.117018px;}
.wsb1{word-spacing:4.124516px;}
.ws8f{word-spacing:4.244068px;}
.wsce{word-spacing:4.250074px;}
.ws4c{word-spacing:4.303843px;}
.wsdb{word-spacing:4.303872px;}
.ws92{word-spacing:4.423394px;}
.ws66{word-spacing:4.434451px;}
.ws93{word-spacing:4.542946px;}
.wsfd{word-spacing:4.572864px;}
.ws39{word-spacing:4.602721px;}
.wsc4{word-spacing:4.782048px;}
.wsc2{word-spacing:4.841824px;}
.ws53{word-spacing:4.901599px;}
.ws82{word-spacing:4.961375px;}
.ws8e{word-spacing:5.021150px;}
.ws54{word-spacing:5.200477px;}
.wsaa{word-spacing:5.260253px;}
.ws75{word-spacing:5.309798px;}
.ws74{word-spacing:5.338656px;}
.ws7e{word-spacing:5.439580px;}
.ws9{word-spacing:5.481407px;}
.wsa1{word-spacing:5.559131px;}
.ws83{word-spacing:5.738458px;}
.ws17{word-spacing:5.798233px;}
.wsf8{word-spacing:5.810227px;}
.ws103{word-spacing:5.864026px;}
.wsa0{word-spacing:6.097111px;}
.ws4b{word-spacing:6.156887px;}
.ws9c{word-spacing:6.575316px;}
.wsaf{word-spacing:6.694867px;}
.wsd9{word-spacing:6.724800px;}
.wsb0{word-spacing:6.754643px;}
.wsc3{word-spacing:6.814418px;}
.wscb{word-spacing:6.832397px;}
.ws1e{word-spacing:7.292623px;}
.ws23{word-spacing:7.531726px;}
.ws10b{word-spacing:8.231155px;}
.ws76{word-spacing:8.727238px;}
.ws5d{word-spacing:9.296381px;}
.ws7{word-spacing:9.833058px;}
.ws3{word-spacing:10.418831px;}
.ws8{word-spacing:11.841512px;}
.wsd6{word-spacing:11.889446px;}
.ws26{word-spacing:11.910929px;}
.wsf1{word-spacing:12.373632px;}
.wsd3{word-spacing:13.019213px;}
.wsdd{word-spacing:13.073011px;}
.ws108{word-spacing:13.126810px;}
.wsf2{word-spacing:13.180608px;}
.ws7f{word-spacing:13.210408px;}
.wsda{word-spacing:13.288205px;}
.ws10c{word-spacing:13.342003px;}
.ws105{word-spacing:13.384925px;}
.wse1{word-spacing:13.387891px;}
.ws10d{word-spacing:13.389014px;}
.wsf6{word-spacing:13.390003px;}
.wsde{word-spacing:13.390301px;}
.wseb{word-spacing:13.390906px;}
.ws102{word-spacing:13.391904px;}
.wsd7{word-spacing:13.393373px;}
.wscf{word-spacing:13.395802px;}
.wsf7{word-spacing:13.396992px;}
.wse4{word-spacing:13.449600px;}
.wsff{word-spacing:13.664794px;}
.wsed{word-spacing:13.718592px;}
.wsf5{word-spacing:13.933786px;}
.ws101{word-spacing:13.987584px;}
.ws98{word-spacing:14.299605px;}
.ws107{word-spacing:14.525568px;}
.ws81{word-spacing:14.582271px;}
.wsbe{word-spacing:14.645022px;}
.ws9f{word-spacing:14.809917px;}
.ws9d{word-spacing:14.880824px;}
.wsbf{word-spacing:14.882333px;}
.ws7d{word-spacing:14.884124px;}
.ws9e{word-spacing:14.886680px;}
.ws10a{word-spacing:14.902157px;}
.wsa8{word-spacing:14.925902px;}
.ws4e{word-spacing:15.003676px;}
.ws2e{word-spacing:15.063451px;}
.wsfa{word-spacing:15.117350px;}
.ws88{word-spacing:15.302554px;}
.ws4{word-spacing:15.481836px;}
.ws37{word-spacing:15.647226px;}
.wse0{word-spacing:15.655334px;}
.ws95{word-spacing:15.771550px;}
.ws8a{word-spacing:15.906439px;}
.wsfc{word-spacing:15.924326px;}
.wsa{word-spacing:16.067635px;}
.ws50{word-spacing:16.084080px;}
.ws91{word-spacing:16.964655px;}
.ws85{word-spacing:17.693578px;}
.wsfe{word-spacing:17.968666px;}
.ws89{word-spacing:18.470660px;}
.wsf9{word-spacing:19.206029px;}
.ws104{word-spacing:19.259827px;}
.ws84{word-spacing:20.622582px;}
.ws6{word-spacing:22.339429px;}
.wsb8{word-spacing:69.991718px;}
.wsb7{word-spacing:105.821453px;}
.wsbc{word-spacing:119.271053px;}
.wsbb{word-spacing:132.720653px;}
.wsb9{word-spacing:199.107878px;}
.wsba{word-spacing:920.114035px;}
._22{margin-left:-213.418253px;}
._6{margin-left:-11.943245px;}
._7{margin-left:-7.711052px;}
._18{margin-left:-6.443797px;}
._0{margin-left:-5.397721px;}
._2{margin-left:-3.849538px;}
._9{margin-left:-2.630133px;}
._3{margin-left:-1.506341px;}
._1c{width:1.321488px;}
._20{width:3.347434px;}
._13{width:4.542946px;}
._1e{width:10.652062px;}
._1{width:12.971268px;}
._14{width:14.824386px;}
._a{width:16.031909px;}
._c{width:17.209499px;}
._e{width:18.638019px;}
._f{width:20.514982px;}
._10{width:22.009372px;}
._17{width:23.025557px;}
._12{width:24.029791px;}
._4{width:25.314894px;}
._b{width:27.437184px;}
._1b{width:29.062892px;}
._5{width:31.256572px;}
._19{width:32.517933px;}
._1a{width:34.323145px;}
._1f{width:35.578433px;}
._d{width:36.953272px;}
._2f{width:38.161817px;}
._11{width:41.018012px;}
._8{width:69.374162px;}
._2b{width:125.780659px;}
._23{width:128.191190px;}
._2d{width:132.720653px;}
._2e{width:146.170253px;}
._2c{width:208.821442px;}
._2a{width:264.415603px;}
._24{width:271.646003px;}
._26{width:452.928730px;}
._25{width:463.957402px;}
._28{width:693.246182px;}
._27{width:715.249728px;}
._15{width:881.284037px;}
._29{width:995.808384px;}
._1d{width:1683.334397px;}
._21{width:2512.803000px;}
._16{width:2536.713000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.304000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:43.200000px;}
.fse{font-size:45.429600px;}
.fsf{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:48.096000px;}
.fs9{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.ycc{bottom:-285.167640px;}
.ydb{bottom:-233.970751px;}
.yda{bottom:-218.635342px;}
.yd9{bottom:-203.227788px;}
.yd8{bottom:-187.891176px;}
.yd7{bottom:-172.483622px;}
.yd6{bottom:-157.076069px;}
.yd5{bottom:-141.740659px;}
.yd4{bottom:-126.333106px;}
.yd3{bottom:-110.997696px;}
.yd2{bottom:-95.590142px;}
.yd1{bottom:-80.182589px;}
.yd0{bottom:-64.847179px;}
.ycf{bottom:-45.839640px;}
.yce{bottom:-16.391640px;}
.y0{bottom:0.000000px;}
.ycd{bottom:1.608360px;}
.y61{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y60{bottom:103.621500px;}
.y34{bottom:104.646000px;}
.ydc{bottom:106.140000px;}
.y19a{bottom:109.213500px;}
.y1d8{bottom:111.975000px;}
.yc8{bottom:113.619000px;}
.y12d{bottom:115.113000px;}
.y17f{bottom:115.200000px;}
.y152{bottom:118.251000px;}
.y5f{bottom:122.449500px;}
.y33{bottom:122.535000px;}
.y199{bottom:128.043000px;}
.yc9{bottom:128.569500px;}
.y1d7{bottom:129.235500px;}
.yc7{bottom:132.448500px;}
.y12c{bottom:133.942500px;}
.y17e{bottom:134.029500px;}
.y151{bottom:137.080500px;}
.y97{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.y5e{bottom:141.279000px;}
.y1d6{bottom:146.496000px;}
.yc6{bottom:151.278000px;}
.y1a3{bottom:152.413500px;}
.y12b{bottom:152.772000px;}
.y17d{bottom:152.859000px;}
.y198{bottom:154.344000px;}
.y150{bottom:155.910000px;}
.y96{bottom:157.255500px;}
.y31{bottom:158.310000px;}
.y1d5{bottom:163.756500px;}
.y5d{bottom:167.311500px;}
.yc5{bottom:170.107500px;}
.y12a{bottom:171.601500px;}
.y17c{bottom:171.688500px;}
.y197{bottom:173.173500px;}
.y167{bottom:174.739500px;}
.yf8{bottom:175.636500px;}
.y95{bottom:176.085000px;}
.y30{bottom:176.199000px;}
.y1a2{bottom:178.954500px;}
.y14f{bottom:179.223000px;}
.y1d4{bottom:181.015500px;}
.y5c{bottom:186.141000px;}
.yc4{bottom:188.937000px;}
.y129{bottom:190.431000px;}
.y17b{bottom:190.518000px;}
.y196{bottom:192.003000px;}
.y166{bottom:193.569000px;}
.y2f{bottom:194.086500px;}
.yf7{bottom:194.466000px;}
.y94{bottom:194.914500px;}
.y1a1{bottom:196.528500px;}
.y18{bottom:196.933500px;}
.y1d3{bottom:198.276000px;}
.y5b{bottom:204.970500px;}
.y128{bottom:209.260500px;}
.y17a{bottom:209.347500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y195{bottom:210.832500px;}
.y2e{bottom:211.974000px;}
.y165{bottom:212.398500px;}
.y14e{bottom:212.847000px;}
.yf6{bottom:213.295500px;}
.y93{bottom:213.744000px;}
.yc3{bottom:215.238000px;}
.y1d2{bottom:215.536500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1a0{bottom:223.069500px;}
.y5a{bottom:223.800000px;}
.y127{bottom:228.090000px;}
.y179{bottom:228.177000px;}
.y194{bottom:229.662000px;}
.y2d{bottom:229.863000px;}
.y164{bottom:231.228000px;}
.y14d{bottom:231.676500px;}
.yf5{bottom:232.125000px;}
.y92{bottom:232.573500px;}
.y1d1{bottom:232.797000px;}
.yc2{bottom:234.067500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y19f{bottom:240.643500px;}
.y59{bottom:242.629500px;}
.y126{bottom:246.919500px;}
.y178{bottom:247.006500px;}
.y193{bottom:248.491500px;}
.y163{bottom:250.057500px;}
.y14c{bottom:250.506000px;}
.yf4{bottom:250.954500px;}
.y91{bottom:251.403000px;}
.yc1{bottom:252.897000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y125{bottom:265.749000px;}
.y177{bottom:265.836000px;}
.y19e{bottom:267.183000px;}
.y1d0{bottom:267.318000px;}
.y192{bottom:267.321000px;}
.y58{bottom:268.662000px;}
.y162{bottom:268.887000px;}
.y14b{bottom:269.335500px;}
.yf3{bottom:269.784000px;}
.y90{bottom:270.232500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yc0{bottom:279.198000px;}
.y202{bottom:284.503500px;}
.y124{bottom:284.578500px;}
.y176{bottom:284.665500px;}
.y19d{bottom:284.757000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y191{bottom:286.150500px;}
.y57{bottom:287.491500px;}
.y161{bottom:287.716500px;}
.y14a{bottom:288.165000px;}
.yf2{bottom:288.613500px;}
.y8f{bottom:289.062000px;}
.y2c{bottom:297.166500px;}
.ybf{bottom:298.027500px;}
.y201{bottom:301.764000px;}
.y1cf{bottom:301.839000px;}
.y123{bottom:303.408000px;}
.y175{bottom:303.495000px;}
.y56{bottom:306.321000px;}
.y160{bottom:306.546000px;}
.y149{bottom:306.994500px;}
.yf1{bottom:307.443000px;}
.y8e{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y19c{bottom:311.298000px;}
.y190{bottom:312.451500px;}
.y2b{bottom:315.054000px;}
.ybe{bottom:316.857000px;}
.y200{bottom:319.024500px;}
.y1ce{bottom:319.099500px;}
.y122{bottom:322.237500px;}
.y174{bottom:322.324500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y55{bottom:325.150500px;}
.y15f{bottom:325.375500px;}
.y148{bottom:325.824000px;}
.yf0{bottom:326.272500px;}
.y8d{bottom:326.719500px;}
.y19b{bottom:328.872000px;}
.y18f{bottom:331.281000px;}
.y2a{bottom:332.941500px;}
.ybd{bottom:335.686500px;}
.y1cd{bottom:336.358500px;}
.y121{bottom:341.067000px;}
.y173{bottom:341.154000px;}
.y54{bottom:343.980000px;}
.y15e{bottom:344.205000px;}
.y147{bottom:344.653500px;}
.yef{bottom:345.102000px;}
.y8c{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.y18e{bottom:350.110500px;}
.y29{bottom:350.830500px;}
.y1cc{bottom:353.619000px;}
.ybc{bottom:354.516000px;}
.y1ff{bottom:358.102500px;}
.y120{bottom:359.896500px;}
.y172{bottom:359.982000px;}
.y53{bottom:362.809500px;}
.y15d{bottom:363.034500px;}
.y146{bottom:363.483000px;}
.yee{bottom:363.931500px;}
.y8b{bottom:364.378500px;}
.y18d{bottom:368.940000px;}
.y1cb{bottom:370.879500px;}
.ybb{bottom:373.345500px;}
.y1fe{bottom:375.363000px;}
.y28{bottom:377.685000px;}
.y11f{bottom:378.726000px;}
.y170{bottom:378.811500px;}
.y52{bottom:381.639000px;}
.y15c{bottom:381.864000px;}
.y145{bottom:382.312500px;}
.yed{bottom:382.761000px;}
.y8a{bottom:383.208000px;}
.ye{bottom:386.785499px;}
.y18c{bottom:387.769500px;}
.y1ca{bottom:388.140000px;}
.y171{bottom:388.780500px;}
.yba{bottom:392.175000px;}
.y1fd{bottom:392.623500px;}
.y27{bottom:395.572500px;}
.y11e{bottom:397.555500px;}
.y16e{bottom:400.309500px;}
.y51{bottom:400.468500px;}
.y15b{bottom:400.693500px;}
.y144{bottom:401.142000px;}
.yec{bottom:401.589000px;}
.y89{bottom:402.037500px;}
.y1c9{bottom:405.400500px;}
.yd{bottom:408.044999px;}
.y1fc{bottom:409.884000px;}
.y16f{bottom:410.277000px;}
.yb9{bottom:411.004500px;}
.y18b{bottom:411.082500px;}
.y26{bottom:413.460000px;}
.y11d{bottom:416.383500px;}
.y50{bottom:419.298000px;}
.y15a{bottom:419.523000px;}
.y143{bottom:419.971500px;}
.yeb{bottom:420.418500px;}
.y88{bottom:420.867000px;}
.y16c{bottom:421.807500px;}
.y1c8{bottom:422.661000px;}
.y1fb{bottom:427.144500px;}
.yb8{bottom:429.834000px;}
.y25{bottom:431.349000px;}
.y16d{bottom:431.775000px;}
.y11c{bottom:435.213000px;}
.y4f{bottom:438.127500px;}
.y142{bottom:438.801000px;}
.yea{bottom:439.248000px;}
.y87{bottom:439.696500px;}
.y1c7{bottom:439.921500px;}
.y16b{bottom:440.239500px;}
.y159{bottom:442.836000px;}
.y16a{bottom:443.305500px;}
.y1fa{bottom:444.403500px;}
.yb7{bottom:448.663500px;}
.y24{bottom:449.236500px;}
.y18a{bottom:453.406500px;}
.y11b{bottom:454.042500px;}
.y4e{bottom:456.957000px;}
.y1c6{bottom:457.182000px;}
.y141{bottom:457.630500px;}
.ye9{bottom:458.077500px;}
.y86{bottom:458.526000px;}
.y1f9{bottom:461.664000px;}
.y23{bottom:467.124000px;}
.yb6{bottom:467.493000px;}
.y189{bottom:469.845000px;}
.y11a{bottom:472.872000px;}
.y1c5{bottom:474.441000px;}
.y4d{bottom:475.786500px;}
.y140{bottom:476.458500px;}
.ye8{bottom:476.907000px;}
.y85{bottom:477.355500px;}
.y168{bottom:477.826500px;}
.y1f8{bottom:478.924500px;}
.y22{bottom:485.013000px;}
.y188{bottom:486.282000px;}
.yb5{bottom:486.322500px;}
.y169{bottom:487.794000px;}
.y119{bottom:491.701500px;}
.y4c{bottom:494.616000px;}
.y13f{bottom:495.288000px;}
.ye7{bottom:495.736500px;}
.y84{bottom:496.185000px;}
.yc{bottom:502.864502px;}
.yb4{bottom:505.152000px;}
.y1c4{bottom:508.962000px;}
.y187{bottom:509.923500px;}
.y118{bottom:510.531000px;}
.y4b{bottom:513.445500px;}
.y13e{bottom:514.117500px;}
.ye6{bottom:514.566000px;}
.y83{bottom:515.014500px;}
.yb{bottom:520.864502px;}
.y1c3{bottom:526.222500px;}
.y186{bottom:526.362000px;}
.yb3{bottom:528.465000px;}
.y117{bottom:529.360500px;}
.y1f7{bottom:530.706000px;}
.y4a{bottom:532.275000px;}
.y158{bottom:532.947000px;}
.ye5{bottom:533.395500px;}
.y82{bottom:533.844000px;}
.y13d{bottom:537.430500px;}
.ya{bottom:538.864499px;}
.y185{bottom:542.800500px;}
.y1c2{bottom:543.483000px;}
.y1f6{bottom:547.966500px;}
.y116{bottom:548.190000px;}
.y49{bottom:551.104500px;}
.y157{bottom:551.776500px;}
.ye4{bottom:552.225000px;}
.y81{bottom:552.673500px;}
.y9{bottom:556.864499px;}
.y184{bottom:559.239000px;}
.y1c1{bottom:560.743500px;}
.yb2{bottom:562.089000px;}
.y1f5{bottom:565.227000px;}
.y115{bottom:567.019500px;}
.y48{bottom:569.932500px;}
.y156{bottom:570.606000px;}
.ye3{bottom:571.054500px;}
.y80{bottom:571.503000px;}
.y183{bottom:575.677500px;}
.y1c0{bottom:578.004000px;}
.yb1{bottom:580.918500px;}
.y1f4{bottom:582.487500px;}
.y114{bottom:585.849000px;}
.y47{bottom:588.762000px;}
.y155{bottom:589.435500px;}
.ye2{bottom:589.884000px;}
.y7f{bottom:590.332500px;}
.y182{bottom:592.114500px;}
.y1bf{bottom:595.264500px;}
.yb0{bottom:599.746500px;}
.y113{bottom:604.678500px;}
.y46{bottom:607.591500px;}
.ye1{bottom:608.713500px;}
.y7e{bottom:609.162000px;}
.y1be{bottom:612.525000px;}
.y154{bottom:612.748500px;}
.y181{bottom:615.756000px;}
.y1f3{bottom:617.007000px;}
.yaf{bottom:618.576000px;}
.y112{bottom:623.508000px;}
.ycb{bottom:623.760468px;}
.ye0{bottom:627.543000px;}
.y7d{bottom:627.991500px;}
.y1bd{bottom:629.784000px;}
.y45{bottom:630.904500px;}
.yca{bottom:631.464360px;}
.y1f2{bottom:634.267500px;}
.yae{bottom:637.405500px;}
.y111{bottom:642.337500px;}
.y8{bottom:645.510000px;}
.ydf{bottom:646.372500px;}
.y7c{bottom:646.821000px;}
.y1bc{bottom:647.044500px;}
.y180{bottom:647.376000px;}
.y1f1{bottom:651.528000px;}
.yad{bottom:660.718500px;}
.y110{bottom:661.167000px;}
.y1bb{bottom:664.305000px;}
.yde{bottom:665.202000px;}
.y7b{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y1f0{bottom:668.788500px;}
.yac{bottom:679.548000px;}
.y10f{bottom:679.996500px;}
.y1ba{bottom:681.565500px;}
.y13c{bottom:684.031500px;}
.y7a{bottom:684.480000px;}
.y1ef{bottom:686.049000px;}
.ydd{bottom:688.515000px;}
.yab{bottom:698.377500px;}
.y10e{bottom:698.826000px;}
.y13b{bottom:702.861000px;}
.y79{bottom:703.309500px;}
.y44{bottom:706.054500px;}
.y1b9{bottom:716.086500px;}
.yaa{bottom:717.207000px;}
.y10d{bottom:717.655500px;}
.y1ee{bottom:720.570000px;}
.y13a{bottom:721.690500px;}
.y78{bottom:722.139000px;}
.y6{bottom:726.298500px;}
.y1b8{bottom:733.347000px;}
.ya9{bottom:736.036500px;}
.y10c{bottom:736.485000px;}
.y1ed{bottom:737.829000px;}
.y139{bottom:740.520000px;}
.y77{bottom:740.968500px;}
.y43{bottom:743.445000px;}
.y1b7{bottom:750.607500px;}
.y3{bottom:752.599495px;}
.ya8{bottom:754.866000px;}
.y1ec{bottom:755.089500px;}
.y10b{bottom:755.314500px;}
.y138{bottom:759.349500px;}
.y76{bottom:759.798000px;}
.y42{bottom:762.901500px;}
.y1b6{bottom:767.866500px;}
.y1eb{bottom:772.350000px;}
.ya7{bottom:773.695500px;}
.y10a{bottom:774.144000px;}
.y137{bottom:778.179000px;}
.y75{bottom:778.627500px;}
.y41{bottom:782.359500px;}
.y1b5{bottom:785.127000px;}
.y1ea{bottom:789.610500px;}
.ya6{bottom:792.525000px;}
.y109{bottom:792.973500px;}
.y136{bottom:797.008500px;}
.y74{bottom:797.457000px;}
.y40{bottom:801.816000px;}
.y1b4{bottom:802.387500px;}
.y1e9{bottom:806.871000px;}
.ya5{bottom:811.354500px;}
.y108{bottom:811.803000px;}
.y135{bottom:815.838000px;}
.y73{bottom:816.286500px;}
.y1b3{bottom:819.648000px;}
.y3f{bottom:821.272500px;}
.y1e8{bottom:824.131500px;}
.ya4{bottom:830.184000px;}
.y107{bottom:830.632500px;}
.y134{bottom:834.667500px;}
.y72{bottom:835.114500px;}
.y1b2{bottom:836.908500px;}
.y3e{bottom:840.730500px;}
.y1e7{bottom:841.392000px;}
.ya3{bottom:849.013500px;}
.y106{bottom:849.462000px;}
.y133{bottom:853.497000px;}
.y71{bottom:853.944000px;}
.y1b1{bottom:854.169000px;}
.y1e6{bottom:858.652500px;}
.y3d{bottom:860.187000px;}
.ya2{bottom:867.843000px;}
.y105{bottom:868.291500px;}
.y1b0{bottom:871.429500px;}
.y132{bottom:872.326500px;}
.y70{bottom:872.773500px;}
.y1e5{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y3c{bottom:879.643500px;}
.ya1{bottom:886.672500px;}
.y104{bottom:887.121000px;}
.y1af{bottom:888.690000px;}
.y131{bottom:891.156000px;}
.y6f{bottom:891.603000px;}
.y1e4{bottom:893.172000px;}
.ya0{bottom:905.502000px;}
.y103{bottom:905.950500px;}
.y130{bottom:909.984000px;}
.y6e{bottom:910.432500px;}
.y3b{bottom:916.884000px;}
.y1ae{bottom:923.209500px;}
.y9f{bottom:924.331500px;}
.y102{bottom:924.778500px;}
.y1e3{bottom:927.693000px;}
.y12f{bottom:928.813500px;}
.y6d{bottom:929.262000px;}
.y3a{bottom:933.024000px;}
.y153{bottom:933.297000px;}
.y1ad{bottom:940.470000px;}
.y9e{bottom:943.161000px;}
.y101{bottom:943.608000px;}
.y1e2{bottom:944.953500px;}
.y6c{bottom:948.091500px;}
.y39{bottom:949.164000px;}
.y12e{bottom:952.126500px;}
.y1ac{bottom:957.730500px;}
.y9d{bottom:961.990500px;}
.y1e1{bottom:962.214000px;}
.y100{bottom:962.437500px;}
.y1{bottom:966.726000px;}
.y6b{bottom:966.921000px;}
.y1ab{bottom:974.991000px;}
.y1e0{bottom:979.474500px;}
.yff{bottom:981.267000px;}
.y9c{bottom:985.302000px;}
.y6a{bottom:985.750500px;}
.y1aa{bottom:992.251500px;}
.y1df{bottom:996.735000px;}
.y38{bottom:996.834000px;}
.yfe{bottom:1000.096500px;}
.y9b{bottom:1004.131500px;}
.y69{bottom:1004.580000px;}
.y1a9{bottom:1009.512000px;}
.y1de{bottom:1013.995500px;}
.yfd{bottom:1018.926000px;}
.y9a{bottom:1022.961000px;}
.y68{bottom:1023.409500px;}
.y1a8{bottom:1026.772500px;}
.y1dd{bottom:1031.254500px;}
.y37{bottom:1036.753500px;}
.yfc{bottom:1037.755500px;}
.y99{bottom:1041.790500px;}
.y67{bottom:1042.239000px;}
.y1a7{bottom:1044.033000px;}
.y1dc{bottom:1048.515000px;}
.yfb{bottom:1056.585000px;}
.y66{bottom:1061.068500px;}
.y1a6{bottom:1061.292000px;}
.y36{bottom:1064.997000px;}
.y98{bottom:1065.103500px;}
.y1db{bottom:1065.775500px;}
.yfa{bottom:1075.414500px;}
.y1a5{bottom:1078.552500px;}
.y65{bottom:1079.898000px;}
.y1da{bottom:1083.036000px;}
.y35{bottom:1093.242000px;}
.yf9{bottom:1094.244000px;}
.y1a4{bottom:1095.813000px;}
.y64{bottom:1098.727500px;}
.y1d9{bottom:1100.296500px;}
.y63{bottom:1117.557000px;}
.y62{bottom:1177.662000px;}
.h19{height:24.189514px;}
.h15{height:27.848953px;}
.h1d{height:28.034756px;}
.h14{height:28.204313px;}
.h9{height:30.587087px;}
.ha{height:30.670772px;}
.h17{height:31.809375px;}
.h12{height:31.828453px;}
.h7{height:32.130000px;}
.h1c{height:33.299897px;}
.he{height:34.956859px;}
.h16{height:34.968234px;}
.h11{height:35.052500px;}
.h18{height:35.250047px;}
.h1a{height:36.313088px;}
.h1f{height:38.734848px;}
.hf{height:39.326630px;}
.h1e{height:39.434227px;}
.h1b{height:42.500452px;}
.hd{height:43.038432px;}
.h10{height:43.695964px;}
.hb{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h13{height:588.756000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:503.541000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-61.935000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x3d{left:85.848000px;}
.xc{left:94.521000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:120.009475px;}
.x4{left:203.484001px;}
.xe{left:247.348500px;}
.x7{left:248.526000px;}
.x6{left:249.591000px;}
.x39{left:264.450000px;}
.x34{left:266.551500px;}
.x37{left:278.934000px;}
.x9{left:280.387500px;}
.x8{left:281.479500px;}
.x3a{left:286.660500px;}
.x36{left:290.823000px;}
.x38{left:297.427500px;}
.x16{left:324.144000px;}
.x2a{left:328.242000px;}
.x3b{left:329.856000px;}
.x17{left:332.497500px;}
.x3c{left:346.978500px;}
.x20{left:351.784500px;}
.x35{left:368.700000px;}
.xf{left:382.021500px;}
.x33{left:384.948000px;}
.x28{left:393.688500px;}
.x2b{left:399.928500px;}
.x29{left:408.699000px;}
.x2d{left:434.047500px;}
.x2c{left:435.735000px;}
.x2e{left:453.322500px;}
.x3{left:454.959000px;}
.x2f{left:488.527500px;}
.xb{left:506.001000px;}
.x24{left:538.713000px;}
.x25{left:559.251000px;}
.x11{left:561.718500px;}
.x10{left:562.762500px;}
.x13{left:594.304500px;}
.x12{left:595.660500px;}
.x30{left:598.660500px;}
.x1e{left:611.494500px;}
.x1d{left:612.850500px;}
.x1f{left:630.511500px;}
.x1b{left:638.316000px;}
.x1a{left:639.360000px;}
.x1c{left:656.164500px;}
.x15{left:662.043000px;}
.x14{left:664.035000px;}
.x31{left:670.191000px;}
.x26{left:686.983500px;}
.x27{left:703.177500px;}
.x32{left:705.982500px;}
.x22{left:751.914000px;}
.x21{left:753.906000px;}
.x23{left:771.651000px;}
.x18{left:794.070000px;}
.x19{left:802.423500px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v2{vertical-align:-9.306667pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.973333pt;}
.ls23{letter-spacing:-0.115430pt;}
.ls22{letter-spacing:-0.076954pt;}
.ls25{letter-spacing:-0.072678pt;}
.ls19{letter-spacing:-0.068403pt;}
.ls20{letter-spacing:-0.047027pt;}
.ls1e{letter-spacing:-0.042752pt;}
.ls1a{letter-spacing:-0.038477pt;}
.ls18{letter-spacing:-0.034202pt;}
.ls15{letter-spacing:-0.027238pt;}
.ls1b{letter-spacing:-0.025651pt;}
.ls21{letter-spacing:-0.021376pt;}
.ls1d{letter-spacing:-0.012826pt;}
.ls16{letter-spacing:-0.010214pt;}
.ls24{letter-spacing:-0.008550pt;}
.ls1c{letter-spacing:-0.004275pt;}
.ls0{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000375pt;}
.ls43{letter-spacing:0.001007pt;}
.lsf{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.017101pt;}
.ls13{letter-spacing:0.021376pt;}
.ls14{letter-spacing:0.038477pt;}
.ls12{letter-spacing:0.042752pt;}
.ls17{letter-spacing:0.068403pt;}
.ls11{letter-spacing:0.072678pt;}
.lse{letter-spacing:0.119168pt;}
.lsd{letter-spacing:0.129382pt;}
.ls1f{letter-spacing:0.833664pt;}
.ls35{letter-spacing:1.257874pt;}
.ls3a{letter-spacing:1.263207pt;}
.ls30{letter-spacing:1.328347pt;}
.ls45{letter-spacing:1.558460pt;}
.ls3b{letter-spacing:1.724111pt;}
.ls2c{letter-spacing:1.729444pt;}
.ls46{letter-spacing:2.656533pt;}
.ls38{letter-spacing:3.280333pt;}
.ls2f{letter-spacing:5.179733pt;}
.ls2{letter-spacing:10.626533pt;}
.ls34{letter-spacing:11.635096pt;}
.ls47{letter-spacing:11.963042pt;}
.lsa{letter-spacing:12.539593pt;}
.lsb{letter-spacing:12.592726pt;}
.ls2e{letter-spacing:12.963096pt;}
.ls7{letter-spacing:12.964663pt;}
.ls41{letter-spacing:13.177199pt;}
.ls26{letter-spacing:13.230333pt;}
.ls6{letter-spacing:13.283467pt;}
.ls37{letter-spacing:13.649015pt;}
.ls2d{letter-spacing:13.649067pt;}
.ls33{letter-spacing:13.649118pt;}
.ls32{letter-spacing:13.651454pt;}
.lsc{letter-spacing:14.027341pt;}
.ls36{letter-spacing:14.155733pt;}
.ls31{letter-spacing:14.443174pt;}
.ls3{letter-spacing:14.505546pt;}
.ls3d{letter-spacing:15.400429pt;}
.ls4{letter-spacing:15.674491pt;}
.ls3f{letter-spacing:15.940160pt;}
.ls2b{letter-spacing:17.389762pt;}
.ls28{letter-spacing:17.852979pt;}
.ls27{letter-spacing:17.906113pt;}
.ls3c{letter-spacing:18.075733pt;}
.ls42{letter-spacing:18.081067pt;}
.ls3e{letter-spacing:18.107733pt;}
.ls8{letter-spacing:18.384318pt;}
.ls40{letter-spacing:18.433067pt;}
.ls9{letter-spacing:18.437452pt;}
.ls2a{letter-spacing:18.864508pt;}
.ls29{letter-spacing:19.553263pt;}
.ls1{letter-spacing:25.292137pt;}
.ls5{letter-spacing:82.167733pt;}
.ls44{letter-spacing:189.705114pt;}
.ls39{letter-spacing:415.141841pt;}
.wsb6{word-spacing:-201.660314pt;}
.ws45{word-spacing:-13.283467pt;}
.wscc{word-spacing:-11.955200pt;}
.ws27{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws57{word-spacing:-8.641382pt;}
.ws58{word-spacing:-8.512000pt;}
.wsc0{word-spacing:-3.134898pt;}
.wse6{word-spacing:-2.630144pt;}
.ws43{word-spacing:-2.550426pt;}
.ws2a{word-spacing:-2.231622pt;}
.ws22{word-spacing:-2.125355pt;}
.ws3f{word-spacing:-1.912819pt;}
.ws80{word-spacing:-1.753418pt;}
.ws7a{word-spacing:-1.700284pt;}
.ws77{word-spacing:-1.594016pt;}
.wsa7{word-spacing:-1.540882pt;}
.wsac{word-spacing:-1.381481pt;}
.ws3e{word-spacing:-1.328347pt;}
.wsd5{word-spacing:-1.291162pt;}
.ws46{word-spacing:-1.222079pt;}
.wsc5{word-spacing:-1.168945pt;}
.ws20{word-spacing:-1.062677pt;}
.wsb2{word-spacing:-1.009543pt;}
.ws71{word-spacing:-0.983296pt;}
.ws94{word-spacing:-0.956410pt;}
.ws70{word-spacing:-0.949094pt;}
.ws44{word-spacing:-0.903276pt;}
.wsf0{word-spacing:-0.860774pt;}
.wsa6{word-spacing:-0.797008pt;}
.ws8b{word-spacing:-0.743874pt;}
.ws32{word-spacing:-0.637606pt;}
.ws10{word-spacing:-0.621670pt;}
.ws4d{word-spacing:-0.531339pt;}
.wsa4{word-spacing:-0.478205pt;}
.wsab{word-spacing:-0.371937pt;}
.wsd2{word-spacing:-0.334746pt;}
.ws4a{word-spacing:-0.318803pt;}
.wsb4{word-spacing:-0.292664pt;}
.ws13{word-spacing:-0.286925pt;}
.ws51{word-spacing:-0.265669pt;}
.wsdc{word-spacing:-0.239104pt;}
.ws18{word-spacing:-0.212535pt;}
.ws5b{word-spacing:-0.194074pt;}
.wse8{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.wse{word-spacing:-0.143462pt;}
.ws47{word-spacing:-0.106268pt;}
.ws11{word-spacing:-0.095642pt;}
.ws5c{word-spacing:-0.054477pt;}
.ws19{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.047821pt;}
.ws59{word-spacing:-0.042752pt;}
.ws28{word-spacing:-0.042507pt;}
.ws5a{word-spacing:-0.037453pt;}
.wsef{word-spacing:-0.010044pt;}
.ws60{word-spacing:-0.004275pt;}
.wsb5{word-spacing:-0.002790pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.037194pt;}
.wse3{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.wsc9{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.ws68{word-spacing:0.106880pt;}
.ws5f{word-spacing:0.111360pt;}
.ws5e{word-spacing:0.126720pt;}
.wsd1{word-spacing:0.143462pt;}
.ws2d{word-spacing:0.159402pt;}
.wsea{word-spacing:0.191283pt;}
.ws1c{word-spacing:0.212535pt;}
.wsee{word-spacing:0.239104pt;}
.ws1f{word-spacing:0.265669pt;}
.wsec{word-spacing:0.286925pt;}
.ws3d{word-spacing:0.318803pt;}
.wsd8{word-spacing:0.334746pt;}
.ws87{word-spacing:0.371937pt;}
.wsa5{word-spacing:0.478205pt;}
.wsf4{word-spacing:0.478208pt;}
.wscd{word-spacing:0.526029pt;}
.wsbd{word-spacing:0.531339pt;}
.ws41{word-spacing:0.584473pt;}
.ws36{word-spacing:0.637606pt;}
.wse7{word-spacing:0.669491pt;}
.ws7c{word-spacing:0.690740pt;}
.wsc7{word-spacing:0.717312pt;}
.ws1b{word-spacing:0.743874pt;}
.ws2b{word-spacing:0.797008pt;}
.wsca{word-spacing:0.812954pt;}
.ws69{word-spacing:0.837939pt;}
.ws29{word-spacing:0.850142pt;}
.ws62{word-spacing:0.872141pt;}
.ws61{word-spacing:0.902067pt;}
.ws3a{word-spacing:0.956410pt;}
.ws106{word-spacing:1.004237pt;}
.ws31{word-spacing:1.009543pt;}
.ws4f{word-spacing:1.062677pt;}
.ws67{word-spacing:1.068800pt;}
.ws64{word-spacing:1.090176pt;}
.ws63{word-spacing:1.111552pt;}
.ws40{word-spacing:1.115811pt;}
.wsc1{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws56{word-spacing:1.275213pt;}
.ws33{word-spacing:1.328347pt;}
.wse2{word-spacing:1.338982pt;}
.ws38{word-spacing:1.381481pt;}
.ws6c{word-spacing:1.419366pt;}
.ws30{word-spacing:1.434614pt;}
.ws6d{word-spacing:1.457843pt;}
.ws2f{word-spacing:1.487748pt;}
.wsa3{word-spacing:1.540882pt;}
.ws16{word-spacing:1.594016pt;}
.ws3b{word-spacing:1.647150pt;}
.ws9a{word-spacing:1.700284pt;}
.ws9b{word-spacing:1.806551pt;}
.ws72{word-spacing:1.816960pt;}
.ws90{word-spacing:1.859685pt;}
.ws73{word-spacing:1.863987pt;}
.ws8c{word-spacing:1.912819pt;}
.wsdf{word-spacing:2.008474pt;}
.wsa2{word-spacing:2.019087pt;}
.ws55{word-spacing:2.072221pt;}
.ws6b{word-spacing:2.133325pt;}
.ws6a{word-spacing:2.158976pt;}
.wsc6{word-spacing:2.178489pt;}
.wsae{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsad{word-spacing:2.244613pt;}
.wsfb{word-spacing:2.247578pt;}
.ws49{word-spacing:2.391024pt;}
.ws100{word-spacing:2.391040pt;}
.ws48{word-spacing:2.444158pt;}
.ws86{word-spacing:2.497292pt;}
.ws97{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.wsd4{word-spacing:2.582323pt;}
.ws25{word-spacing:2.656693pt;}
.wsf3{word-spacing:2.677965pt;}
.ws78{word-spacing:2.709827pt;}
.ws96{word-spacing:2.762961pt;}
.ws24{word-spacing:2.816095pt;}
.wsd{word-spacing:2.856294pt;}
.ws14{word-spacing:2.861926pt;}
.wse9{word-spacing:2.862251pt;}
.ws42{word-spacing:2.869229pt;}
.wsd0{word-spacing:2.869248pt;}
.ws34{word-spacing:2.922363pt;}
.wse5{word-spacing:2.964890pt;}
.ws99{word-spacing:2.975497pt;}
.ws109{word-spacing:3.012710pt;}
.wsc8{word-spacing:3.023111pt;}
.ws8d{word-spacing:3.081764pt;}
.ws10e{word-spacing:3.108352pt;}
.wsa9{word-spacing:3.134898pt;}
.ws15{word-spacing:3.188032pt;}
.ws52{word-spacing:3.294300pt;}
.wsf{word-spacing:3.299635pt;}
.ws3c{word-spacing:3.347434pt;}
.ws6f{word-spacing:3.347482pt;}
.ws7b{word-spacing:3.400567pt;}
.ws6e{word-spacing:3.403059pt;}
.ws35{word-spacing:3.453701pt;}
.ws79{word-spacing:3.506835pt;}
.ws1a{word-spacing:3.559969pt;}
.wsb3{word-spacing:3.613103pt;}
.ws65{word-spacing:3.659571pt;}
.wsb1{word-spacing:3.666237pt;}
.ws8f{word-spacing:3.772505pt;}
.wsce{word-spacing:3.777843pt;}
.ws4c{word-spacing:3.825638pt;}
.wsdb{word-spacing:3.825664pt;}
.ws92{word-spacing:3.931906pt;}
.ws66{word-spacing:3.941734pt;}
.ws93{word-spacing:4.038174pt;}
.wsfd{word-spacing:4.064768pt;}
.ws39{word-spacing:4.091308pt;}
.wsc4{word-spacing:4.250709pt;}
.wsc2{word-spacing:4.303843pt;}
.ws53{word-spacing:4.356977pt;}
.ws82{word-spacing:4.410111pt;}
.ws8e{word-spacing:4.463245pt;}
.ws54{word-spacing:4.622646pt;}
.wsaa{word-spacing:4.675780pt;}
.ws75{word-spacing:4.719821pt;}
.ws74{word-spacing:4.745472pt;}
.ws7e{word-spacing:4.835182pt;}
.ws9{word-spacing:4.872362pt;}
.wsa1{word-spacing:4.941450pt;}
.ws83{word-spacing:5.100851pt;}
.ws17{word-spacing:5.153985pt;}
.wsf8{word-spacing:5.164646pt;}
.ws103{word-spacing:5.212467pt;}
.wsa0{word-spacing:5.419654pt;}
.ws4b{word-spacing:5.472788pt;}
.ws9c{word-spacing:5.844725pt;}
.wsaf{word-spacing:5.950993pt;}
.wsd9{word-spacing:5.977600pt;}
.wsb0{word-spacing:6.004127pt;}
.wsc3{word-spacing:6.057261pt;}
.wscb{word-spacing:6.073242pt;}
.ws1e{word-spacing:6.482332pt;}
.ws23{word-spacing:6.694867pt;}
.ws10b{word-spacing:7.316582pt;}
.ws76{word-spacing:7.757545pt;}
.ws5d{word-spacing:8.263450pt;}
.ws7{word-spacing:8.740496pt;}
.ws3{word-spacing:9.261183pt;}
.ws8{word-spacing:10.525789pt;}
.wsd6{word-spacing:10.568397pt;}
.ws26{word-spacing:10.587492pt;}
.wsf1{word-spacing:10.998784pt;}
.wsd3{word-spacing:11.572634pt;}
.wsdd{word-spacing:11.620454pt;}
.ws108{word-spacing:11.668275pt;}
.wsf2{word-spacing:11.716096pt;}
.ws7f{word-spacing:11.742585pt;}
.wsda{word-spacing:11.811738pt;}
.ws10c{word-spacing:11.859558pt;}
.ws105{word-spacing:11.897711pt;}
.wse1{word-spacing:11.900348pt;}
.ws10d{word-spacing:11.901346pt;}
.wsf6{word-spacing:11.902225pt;}
.wsde{word-spacing:11.902490pt;}
.wseb{word-spacing:11.903027pt;}
.ws102{word-spacing:11.903915pt;}
.wsd7{word-spacing:11.905220pt;}
.wscf{word-spacing:11.907379pt;}
.wsf7{word-spacing:11.908437pt;}
.wse4{word-spacing:11.955200pt;}
.wsff{word-spacing:12.146483pt;}
.wsed{word-spacing:12.194304pt;}
.wsf5{word-spacing:12.385587pt;}
.ws101{word-spacing:12.433408pt;}
.ws98{word-spacing:12.710760pt;}
.ws107{word-spacing:12.911616pt;}
.ws81{word-spacing:12.962019pt;}
.wsbe{word-spacing:13.017797pt;}
.ws9f{word-spacing:13.164371pt;}
.ws9d{word-spacing:13.227399pt;}
.wsbf{word-spacing:13.228740pt;}
.ws7d{word-spacing:13.230333pt;}
.ws9e{word-spacing:13.232605pt;}
.ws10a{word-spacing:13.246362pt;}
.wsa8{word-spacing:13.267468pt;}
.ws4e{word-spacing:13.336601pt;}
.ws2e{word-spacing:13.389734pt;}
.wsfa{word-spacing:13.437645pt;}
.ws88{word-spacing:13.602270pt;}
.ws4{word-spacing:13.761632pt;}
.ws37{word-spacing:13.908646pt;}
.wse0{word-spacing:13.915853pt;}
.ws95{word-spacing:14.019155pt;}
.ws8a{word-spacing:14.139057pt;}
.wsfc{word-spacing:14.154957pt;}
.wsa{word-spacing:14.282342pt;}
.ws50{word-spacing:14.296960pt;}
.ws91{word-spacing:15.079693pt;}
.ws85{word-spacing:15.727625pt;}
.wsfe{word-spacing:15.972147pt;}
.ws89{word-spacing:16.418365pt;}
.wsf9{word-spacing:17.072026pt;}
.ws104{word-spacing:17.119846pt;}
.ws84{word-spacing:18.331184pt;}
.ws6{word-spacing:19.857270pt;}
.wsb8{word-spacing:62.214861pt;}
.wsb7{word-spacing:94.063514pt;}
.wsbc{word-spacing:106.018714pt;}
.wsbb{word-spacing:117.973914pt;}
.wsb9{word-spacing:176.984781pt;}
.wsba{word-spacing:817.879142pt;}
._22{margin-left:-189.705114pt;}
._6{margin-left:-10.616218pt;}
._7{margin-left:-6.854269pt;}
._18{margin-left:-5.727819pt;}
._0{margin-left:-4.797974pt;}
._2{margin-left:-3.421811pt;}
._9{margin-left:-2.337896pt;}
._3{margin-left:-1.338970pt;}
._1c{width:1.174656pt;}
._20{width:2.975497pt;}
._13{width:4.038174pt;}
._1e{width:9.468500pt;}
._1{width:11.530016pt;}
._14{width:13.177232pt;}
._a{width:14.250586pt;}
._c{width:15.297333pt;}
._e{width:16.567128pt;}
._f{width:18.235539pt;}
._10{width:19.563886pt;}
._17{width:20.467162pt;}
._12{width:21.359814pt;}
._4{width:22.502128pt;}
._b{width:24.388608pt;}
._1b{width:25.833682pt;}
._5{width:27.783619pt;}
._19{width:28.904829pt;}
._1a{width:30.509462pt;}
._1f{width:31.625274pt;}
._d{width:32.847353pt;}
._2f{width:33.921615pt;}
._11{width:36.460455pt;}
._8{width:61.665922pt;}
._2b{width:111.805030pt;}
._23{width:113.947725pt;}
._2d{width:117.973914pt;}
._2e{width:129.929114pt;}
._2c{width:185.619059pt;}
._2a{width:235.036092pt;}
._24{width:241.463114pt;}
._26{width:402.603315pt;}
._25{width:412.406579pt;}
._28{width:616.218829pt;}
._27{width:635.777536pt;}
._15{width:783.363589pt;}
._29{width:885.163008pt;}
._1d{width:1496.297242pt;}
._21{width:2233.602667pt;}
._16{width:2254.856000pt;}
.fsb{font-size:34.048000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:38.400000pt;}
.fse{font-size:40.381867pt;}
.fsf{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.752000pt;}
.fs9{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.ycc{bottom:-253.482347pt;}
.ydb{bottom:-207.974001pt;}
.yda{bottom:-194.342526pt;}
.yd9{bottom:-180.646923pt;}
.yd8{bottom:-167.014379pt;}
.yd7{bottom:-153.318775pt;}
.yd6{bottom:-139.623172pt;}
.yd5{bottom:-125.991697pt;}
.yd4{bottom:-112.296094pt;}
.yd3{bottom:-98.664619pt;}
.yd2{bottom:-84.969015pt;}
.yd1{bottom:-71.273412pt;}
.yd0{bottom:-57.641937pt;}
.ycf{bottom:-40.746347pt;}
.yce{bottom:-14.570347pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:1.429653pt;}
.y61{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y60{bottom:92.108000pt;}
.y34{bottom:93.018667pt;}
.ydc{bottom:94.346667pt;}
.y19a{bottom:97.078667pt;}
.y1d8{bottom:99.533333pt;}
.yc8{bottom:100.994667pt;}
.y12d{bottom:102.322667pt;}
.y17f{bottom:102.400000pt;}
.y152{bottom:105.112000pt;}
.y5f{bottom:108.844000pt;}
.y33{bottom:108.920000pt;}
.y199{bottom:113.816000pt;}
.yc9{bottom:114.284000pt;}
.y1d7{bottom:114.876000pt;}
.yc7{bottom:117.732000pt;}
.y12c{bottom:119.060000pt;}
.y17e{bottom:119.137333pt;}
.y151{bottom:121.849333pt;}
.y97{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.y5e{bottom:125.581333pt;}
.y1d6{bottom:130.218667pt;}
.yc6{bottom:134.469333pt;}
.y1a3{bottom:135.478667pt;}
.y12b{bottom:135.797333pt;}
.y17d{bottom:135.874667pt;}
.y198{bottom:137.194667pt;}
.y150{bottom:138.586667pt;}
.y96{bottom:139.782667pt;}
.y31{bottom:140.720000pt;}
.y1d5{bottom:145.561333pt;}
.y5d{bottom:148.721333pt;}
.yc5{bottom:151.206667pt;}
.y12a{bottom:152.534667pt;}
.y17c{bottom:152.612000pt;}
.y197{bottom:153.932000pt;}
.y167{bottom:155.324000pt;}
.yf8{bottom:156.121333pt;}
.y95{bottom:156.520000pt;}
.y30{bottom:156.621333pt;}
.y1a2{bottom:159.070667pt;}
.y14f{bottom:159.309333pt;}
.y1d4{bottom:160.902667pt;}
.y5c{bottom:165.458667pt;}
.yc4{bottom:167.944000pt;}
.y129{bottom:169.272000pt;}
.y17b{bottom:169.349333pt;}
.y196{bottom:170.669333pt;}
.y166{bottom:172.061333pt;}
.y2f{bottom:172.521333pt;}
.yf7{bottom:172.858667pt;}
.y94{bottom:173.257333pt;}
.y1a1{bottom:174.692000pt;}
.y18{bottom:175.052000pt;}
.y1d3{bottom:176.245333pt;}
.y5b{bottom:182.196000pt;}
.y128{bottom:186.009333pt;}
.y17a{bottom:186.086667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y195{bottom:187.406667pt;}
.y2e{bottom:188.421333pt;}
.y165{bottom:188.798667pt;}
.y14e{bottom:189.197333pt;}
.yf6{bottom:189.596000pt;}
.y93{bottom:189.994667pt;}
.yc3{bottom:191.322667pt;}
.y1d2{bottom:191.588000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1a0{bottom:198.284000pt;}
.y5a{bottom:198.933333pt;}
.y127{bottom:202.746667pt;}
.y179{bottom:202.824000pt;}
.y194{bottom:204.144000pt;}
.y2d{bottom:204.322667pt;}
.y164{bottom:205.536000pt;}
.y14d{bottom:205.934667pt;}
.yf5{bottom:206.333333pt;}
.y92{bottom:206.732000pt;}
.y1d1{bottom:206.930667pt;}
.yc2{bottom:208.060000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y19f{bottom:213.905333pt;}
.y59{bottom:215.670667pt;}
.y126{bottom:219.484000pt;}
.y178{bottom:219.561333pt;}
.y193{bottom:220.881333pt;}
.y163{bottom:222.273333pt;}
.y14c{bottom:222.672000pt;}
.yf4{bottom:223.070667pt;}
.y91{bottom:223.469333pt;}
.yc1{bottom:224.797333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y125{bottom:236.221333pt;}
.y177{bottom:236.298667pt;}
.y19e{bottom:237.496000pt;}
.y1d0{bottom:237.616000pt;}
.y192{bottom:237.618667pt;}
.y58{bottom:238.810667pt;}
.y162{bottom:239.010667pt;}
.y14b{bottom:239.409333pt;}
.yf3{bottom:239.808000pt;}
.y90{bottom:240.206667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yc0{bottom:248.176000pt;}
.y202{bottom:252.892000pt;}
.y124{bottom:252.958667pt;}
.y176{bottom:253.036000pt;}
.y19d{bottom:253.117333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y191{bottom:254.356000pt;}
.y57{bottom:255.548000pt;}
.y161{bottom:255.748000pt;}
.y14a{bottom:256.146667pt;}
.yf2{bottom:256.545333pt;}
.y8f{bottom:256.944000pt;}
.y2c{bottom:264.148000pt;}
.ybf{bottom:264.913333pt;}
.y201{bottom:268.234667pt;}
.y1cf{bottom:268.301333pt;}
.y123{bottom:269.696000pt;}
.y175{bottom:269.773333pt;}
.y56{bottom:272.285333pt;}
.y160{bottom:272.485333pt;}
.y149{bottom:272.884000pt;}
.yf1{bottom:273.282667pt;}
.y8e{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y19c{bottom:276.709333pt;}
.y190{bottom:277.734667pt;}
.y2b{bottom:280.048000pt;}
.ybe{bottom:281.650667pt;}
.y200{bottom:283.577333pt;}
.y1ce{bottom:283.644000pt;}
.y122{bottom:286.433333pt;}
.y174{bottom:286.510667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y55{bottom:289.022667pt;}
.y15f{bottom:289.222667pt;}
.y148{bottom:289.621333pt;}
.yf0{bottom:290.020000pt;}
.y8d{bottom:290.417333pt;}
.y19b{bottom:292.330667pt;}
.y18f{bottom:294.472000pt;}
.y2a{bottom:295.948000pt;}
.ybd{bottom:298.388000pt;}
.y1cd{bottom:298.985333pt;}
.y121{bottom:303.170667pt;}
.y173{bottom:303.248000pt;}
.y54{bottom:305.760000pt;}
.y15e{bottom:305.960000pt;}
.y147{bottom:306.358667pt;}
.yef{bottom:306.757333pt;}
.y8c{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.y18e{bottom:311.209333pt;}
.y29{bottom:311.849333pt;}
.y1cc{bottom:314.328000pt;}
.ybc{bottom:315.125333pt;}
.y1ff{bottom:318.313333pt;}
.y120{bottom:319.908000pt;}
.y172{bottom:319.984000pt;}
.y53{bottom:322.497333pt;}
.y15d{bottom:322.697333pt;}
.y146{bottom:323.096000pt;}
.yee{bottom:323.494667pt;}
.y8b{bottom:323.892000pt;}
.y18d{bottom:327.946667pt;}
.y1cb{bottom:329.670667pt;}
.ybb{bottom:331.862667pt;}
.y1fe{bottom:333.656000pt;}
.y28{bottom:335.720000pt;}
.y11f{bottom:336.645333pt;}
.y170{bottom:336.721333pt;}
.y52{bottom:339.234667pt;}
.y15c{bottom:339.434667pt;}
.y145{bottom:339.833333pt;}
.yed{bottom:340.232000pt;}
.y8a{bottom:340.629333pt;}
.ye{bottom:343.809333pt;}
.y18c{bottom:344.684000pt;}
.y1ca{bottom:345.013333pt;}
.y171{bottom:345.582667pt;}
.yba{bottom:348.600000pt;}
.y1fd{bottom:348.998667pt;}
.y27{bottom:351.620000pt;}
.y11e{bottom:353.382667pt;}
.y16e{bottom:355.830667pt;}
.y51{bottom:355.972000pt;}
.y15b{bottom:356.172000pt;}
.y144{bottom:356.570667pt;}
.yec{bottom:356.968000pt;}
.y89{bottom:357.366667pt;}
.y1c9{bottom:360.356000pt;}
.yd{bottom:362.706666pt;}
.y1fc{bottom:364.341333pt;}
.y16f{bottom:364.690667pt;}
.yb9{bottom:365.337333pt;}
.y18b{bottom:365.406667pt;}
.y26{bottom:367.520000pt;}
.y11d{bottom:370.118667pt;}
.y50{bottom:372.709333pt;}
.y15a{bottom:372.909333pt;}
.y143{bottom:373.308000pt;}
.yeb{bottom:373.705333pt;}
.y88{bottom:374.104000pt;}
.y16c{bottom:374.940000pt;}
.y1c8{bottom:375.698667pt;}
.y1fb{bottom:379.684000pt;}
.yb8{bottom:382.074667pt;}
.y25{bottom:383.421333pt;}
.y16d{bottom:383.800000pt;}
.y11c{bottom:386.856000pt;}
.y4f{bottom:389.446667pt;}
.y142{bottom:390.045333pt;}
.yea{bottom:390.442667pt;}
.y87{bottom:390.841333pt;}
.y1c7{bottom:391.041333pt;}
.y16b{bottom:391.324000pt;}
.y159{bottom:393.632000pt;}
.y16a{bottom:394.049333pt;}
.y1fa{bottom:395.025333pt;}
.yb7{bottom:398.812000pt;}
.y24{bottom:399.321333pt;}
.y18a{bottom:403.028000pt;}
.y11b{bottom:403.593333pt;}
.y4e{bottom:406.184000pt;}
.y1c6{bottom:406.384000pt;}
.y141{bottom:406.782667pt;}
.ye9{bottom:407.180000pt;}
.y86{bottom:407.578667pt;}
.y1f9{bottom:410.368000pt;}
.y23{bottom:415.221333pt;}
.yb6{bottom:415.549333pt;}
.y189{bottom:417.640000pt;}
.y11a{bottom:420.330667pt;}
.y1c5{bottom:421.725333pt;}
.y4d{bottom:422.921333pt;}
.y140{bottom:423.518667pt;}
.ye8{bottom:423.917333pt;}
.y85{bottom:424.316000pt;}
.y168{bottom:424.734667pt;}
.y1f8{bottom:425.710667pt;}
.y22{bottom:431.122667pt;}
.y188{bottom:432.250667pt;}
.yb5{bottom:432.286667pt;}
.y169{bottom:433.594667pt;}
.y119{bottom:437.068000pt;}
.y4c{bottom:439.658667pt;}
.y13f{bottom:440.256000pt;}
.ye7{bottom:440.654667pt;}
.y84{bottom:441.053333pt;}
.yc{bottom:446.990669pt;}
.yb4{bottom:449.024000pt;}
.y1c4{bottom:452.410667pt;}
.y187{bottom:453.265333pt;}
.y118{bottom:453.805333pt;}
.y4b{bottom:456.396000pt;}
.y13e{bottom:456.993333pt;}
.ye6{bottom:457.392000pt;}
.y83{bottom:457.790667pt;}
.yb{bottom:462.990669pt;}
.y1c3{bottom:467.753333pt;}
.y186{bottom:467.877333pt;}
.yb3{bottom:469.746667pt;}
.y117{bottom:470.542667pt;}
.y1f7{bottom:471.738667pt;}
.y4a{bottom:473.133333pt;}
.y158{bottom:473.730667pt;}
.ye5{bottom:474.129333pt;}
.y82{bottom:474.528000pt;}
.y13d{bottom:477.716000pt;}
.ya{bottom:478.990666pt;}
.y185{bottom:482.489333pt;}
.y1c2{bottom:483.096000pt;}
.y1f6{bottom:487.081333pt;}
.y116{bottom:487.280000pt;}
.y49{bottom:489.870667pt;}
.y157{bottom:490.468000pt;}
.ye4{bottom:490.866667pt;}
.y81{bottom:491.265333pt;}
.y9{bottom:494.990666pt;}
.y184{bottom:497.101333pt;}
.y1c1{bottom:498.438667pt;}
.yb2{bottom:499.634667pt;}
.y1f5{bottom:502.424000pt;}
.y115{bottom:504.017333pt;}
.y48{bottom:506.606667pt;}
.y156{bottom:507.205333pt;}
.ye3{bottom:507.604000pt;}
.y80{bottom:508.002667pt;}
.y183{bottom:511.713333pt;}
.y1c0{bottom:513.781333pt;}
.yb1{bottom:516.372000pt;}
.y1f4{bottom:517.766667pt;}
.y114{bottom:520.754667pt;}
.y47{bottom:523.344000pt;}
.y155{bottom:523.942667pt;}
.ye2{bottom:524.341333pt;}
.y7f{bottom:524.740000pt;}
.y182{bottom:526.324000pt;}
.y1bf{bottom:529.124000pt;}
.yb0{bottom:533.108000pt;}
.y113{bottom:537.492000pt;}
.y46{bottom:540.081333pt;}
.ye1{bottom:541.078667pt;}
.y7e{bottom:541.477333pt;}
.y1be{bottom:544.466667pt;}
.y154{bottom:544.665333pt;}
.y181{bottom:547.338667pt;}
.y1f3{bottom:548.450667pt;}
.yaf{bottom:549.845333pt;}
.y112{bottom:554.229333pt;}
.ycb{bottom:554.453749pt;}
.ye0{bottom:557.816000pt;}
.y7d{bottom:558.214667pt;}
.y1bd{bottom:559.808000pt;}
.y45{bottom:560.804000pt;}
.yca{bottom:561.301653pt;}
.y1f2{bottom:563.793333pt;}
.yae{bottom:566.582667pt;}
.y111{bottom:570.966667pt;}
.y8{bottom:573.786667pt;}
.ydf{bottom:574.553333pt;}
.y7c{bottom:574.952000pt;}
.y1bc{bottom:575.150667pt;}
.y180{bottom:575.445333pt;}
.y1f1{bottom:579.136000pt;}
.yad{bottom:587.305333pt;}
.y110{bottom:587.704000pt;}
.y1bb{bottom:590.493333pt;}
.yde{bottom:591.290667pt;}
.y7b{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y1f0{bottom:594.478667pt;}
.yac{bottom:604.042667pt;}
.y10f{bottom:604.441333pt;}
.y1ba{bottom:605.836000pt;}
.y13c{bottom:608.028000pt;}
.y7a{bottom:608.426667pt;}
.y1ef{bottom:609.821333pt;}
.ydd{bottom:612.013333pt;}
.yab{bottom:620.780000pt;}
.y10e{bottom:621.178667pt;}
.y13b{bottom:624.765333pt;}
.y79{bottom:625.164000pt;}
.y44{bottom:627.604000pt;}
.y1b9{bottom:636.521333pt;}
.yaa{bottom:637.517333pt;}
.y10d{bottom:637.916000pt;}
.y1ee{bottom:640.506667pt;}
.y13a{bottom:641.502667pt;}
.y78{bottom:641.901333pt;}
.y6{bottom:645.598667pt;}
.y1b8{bottom:651.864000pt;}
.ya9{bottom:654.254667pt;}
.y10c{bottom:654.653333pt;}
.y1ed{bottom:655.848000pt;}
.y139{bottom:658.240000pt;}
.y77{bottom:658.638667pt;}
.y43{bottom:660.840000pt;}
.y1b7{bottom:667.206667pt;}
.y3{bottom:668.977329pt;}
.ya8{bottom:670.992000pt;}
.y1ec{bottom:671.190667pt;}
.y10b{bottom:671.390667pt;}
.y138{bottom:674.977333pt;}
.y76{bottom:675.376000pt;}
.y42{bottom:678.134667pt;}
.y1b6{bottom:682.548000pt;}
.y1eb{bottom:686.533333pt;}
.ya7{bottom:687.729333pt;}
.y10a{bottom:688.128000pt;}
.y137{bottom:691.714667pt;}
.y75{bottom:692.113333pt;}
.y41{bottom:695.430667pt;}
.y1b5{bottom:697.890667pt;}
.y1ea{bottom:701.876000pt;}
.ya6{bottom:704.466667pt;}
.y109{bottom:704.865333pt;}
.y136{bottom:708.452000pt;}
.y74{bottom:708.850667pt;}
.y40{bottom:712.725333pt;}
.y1b4{bottom:713.233333pt;}
.y1e9{bottom:717.218667pt;}
.ya5{bottom:721.204000pt;}
.y108{bottom:721.602667pt;}
.y135{bottom:725.189333pt;}
.y73{bottom:725.588000pt;}
.y1b3{bottom:728.576000pt;}
.y3f{bottom:730.020000pt;}
.y1e8{bottom:732.561333pt;}
.ya4{bottom:737.941333pt;}
.y107{bottom:738.340000pt;}
.y134{bottom:741.926667pt;}
.y72{bottom:742.324000pt;}
.y1b2{bottom:743.918667pt;}
.y3e{bottom:747.316000pt;}
.y1e7{bottom:747.904000pt;}
.ya3{bottom:754.678667pt;}
.y106{bottom:755.077333pt;}
.y133{bottom:758.664000pt;}
.y71{bottom:759.061333pt;}
.y1b1{bottom:759.261333pt;}
.y1e6{bottom:763.246667pt;}
.y3d{bottom:764.610667pt;}
.ya2{bottom:771.416000pt;}
.y105{bottom:771.814667pt;}
.y1b0{bottom:774.604000pt;}
.y132{bottom:775.401333pt;}
.y70{bottom:775.798667pt;}
.y1e5{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y3c{bottom:781.905333pt;}
.ya1{bottom:788.153333pt;}
.y104{bottom:788.552000pt;}
.y1af{bottom:789.946667pt;}
.y131{bottom:792.138667pt;}
.y6f{bottom:792.536000pt;}
.y1e4{bottom:793.930667pt;}
.ya0{bottom:804.890667pt;}
.y103{bottom:805.289333pt;}
.y130{bottom:808.874667pt;}
.y6e{bottom:809.273333pt;}
.y3b{bottom:815.008000pt;}
.y1ae{bottom:820.630667pt;}
.y9f{bottom:821.628000pt;}
.y102{bottom:822.025333pt;}
.y1e3{bottom:824.616000pt;}
.y12f{bottom:825.612000pt;}
.y6d{bottom:826.010667pt;}
.y3a{bottom:829.354667pt;}
.y153{bottom:829.597333pt;}
.y1ad{bottom:835.973333pt;}
.y9e{bottom:838.365333pt;}
.y101{bottom:838.762667pt;}
.y1e2{bottom:839.958667pt;}
.y6c{bottom:842.748000pt;}
.y39{bottom:843.701333pt;}
.y12e{bottom:846.334667pt;}
.y1ac{bottom:851.316000pt;}
.y9d{bottom:855.102667pt;}
.y1e1{bottom:855.301333pt;}
.y100{bottom:855.500000pt;}
.y1{bottom:859.312000pt;}
.y6b{bottom:859.485333pt;}
.y1ab{bottom:866.658667pt;}
.y1e0{bottom:870.644000pt;}
.yff{bottom:872.237333pt;}
.y9c{bottom:875.824000pt;}
.y6a{bottom:876.222667pt;}
.y1aa{bottom:882.001333pt;}
.y1df{bottom:885.986667pt;}
.y38{bottom:886.074667pt;}
.yfe{bottom:888.974667pt;}
.y9b{bottom:892.561333pt;}
.y69{bottom:892.960000pt;}
.y1a9{bottom:897.344000pt;}
.y1de{bottom:901.329333pt;}
.yfd{bottom:905.712000pt;}
.y9a{bottom:909.298667pt;}
.y68{bottom:909.697333pt;}
.y1a8{bottom:912.686667pt;}
.y1dd{bottom:916.670667pt;}
.y37{bottom:921.558667pt;}
.yfc{bottom:922.449333pt;}
.y99{bottom:926.036000pt;}
.y67{bottom:926.434667pt;}
.y1a7{bottom:928.029333pt;}
.y1dc{bottom:932.013333pt;}
.yfb{bottom:939.186667pt;}
.y66{bottom:943.172000pt;}
.y1a6{bottom:943.370667pt;}
.y36{bottom:946.664000pt;}
.y98{bottom:946.758667pt;}
.y1db{bottom:947.356000pt;}
.yfa{bottom:955.924000pt;}
.y1a5{bottom:958.713333pt;}
.y65{bottom:959.909333pt;}
.y1da{bottom:962.698667pt;}
.y35{bottom:971.770667pt;}
.yf9{bottom:972.661333pt;}
.y1a4{bottom:974.056000pt;}
.y64{bottom:976.646667pt;}
.y1d9{bottom:978.041333pt;}
.y63{bottom:993.384000pt;}
.y62{bottom:1046.810667pt;}
.h19{height:21.501790pt;}
.h15{height:24.754625pt;}
.h1d{height:24.919783pt;}
.h14{height:25.070500pt;}
.h9{height:27.188522pt;}
.ha{height:27.262909pt;}
.h17{height:28.275000pt;}
.h12{height:28.291958pt;}
.h7{height:28.560000pt;}
.h1c{height:29.599908pt;}
.he{height:31.072763pt;}
.h16{height:31.082875pt;}
.h11{height:31.157778pt;}
.h18{height:31.333375pt;}
.h1a{height:32.278300pt;}
.h1f{height:34.430976pt;}
.hf{height:34.957005pt;}
.h1e{height:35.052646pt;}
.h1b{height:37.778179pt;}
.hd{height:38.256384pt;}
.h10{height:38.840857pt;}
.hb{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h13{height:523.338667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:447.592000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-55.053333pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x3d{left:76.309333pt;}
.xc{left:84.018667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:106.675089pt;}
.x4{left:180.874667pt;}
.xe{left:219.865333pt;}
.x7{left:220.912000pt;}
.x6{left:221.858667pt;}
.x39{left:235.066667pt;}
.x34{left:236.934667pt;}
.x37{left:247.941333pt;}
.x9{left:249.233333pt;}
.x8{left:250.204000pt;}
.x3a{left:254.809333pt;}
.x36{left:258.509333pt;}
.x38{left:264.380000pt;}
.x16{left:288.128000pt;}
.x2a{left:291.770667pt;}
.x3b{left:293.205333pt;}
.x17{left:295.553333pt;}
.x3c{left:308.425333pt;}
.x20{left:312.697333pt;}
.x35{left:327.733333pt;}
.xf{left:339.574667pt;}
.x33{left:342.176000pt;}
.x28{left:349.945333pt;}
.x2b{left:355.492000pt;}
.x29{left:363.288000pt;}
.x2d{left:385.820000pt;}
.x2c{left:387.320000pt;}
.x2e{left:402.953333pt;}
.x3{left:404.408000pt;}
.x2f{left:434.246667pt;}
.xb{left:449.778667pt;}
.x24{left:478.856000pt;}
.x25{left:497.112000pt;}
.x11{left:499.305333pt;}
.x10{left:500.233333pt;}
.x13{left:528.270667pt;}
.x12{left:529.476000pt;}
.x30{left:532.142667pt;}
.x1e{left:543.550667pt;}
.x1d{left:544.756000pt;}
.x1f{left:560.454667pt;}
.x1b{left:567.392000pt;}
.x1a{left:568.320000pt;}
.x1c{left:583.257333pt;}
.x15{left:588.482667pt;}
.x14{left:590.253333pt;}
.x31{left:595.725333pt;}
.x26{left:610.652000pt;}
.x27{left:625.046667pt;}
.x32{left:627.540000pt;}
.x22{left:668.368000pt;}
.x21{left:670.138667pt;}
.x23{left:685.912000pt;}
.x18{left:705.840000pt;}
.x19{left:713.265333pt;}
}




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