
    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_d9708d3f237e03004b0c7888.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_acfced2ee19d8d22f14d3724.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_f92d96731179603ef8cb446b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_c15f567e002a0d2b0a9e73c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_6a3081ab655861a13e576b7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;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_12602d3b07eb69c6e1dfd915.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_8e14a296fed59f3470b87473.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b9c7a83902e1ae6de58bab20.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_6c0623e3a9d0d2af9af0ee04.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8eb0e1517a55a75af6c22130.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_8280fae947ee4a4c52185589.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_0312b95f2e890474bd371f0c.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_9d1211d21cb0625348cf3346.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.388000;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_675eae114f416ab24c009e5e.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;}
.m4{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);}
.md{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);}
.m2{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);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m17{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);}
.m20{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);}
.m27{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);}
.m14{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);}
.m8{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);}
.m24{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);}
.m7{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);}
.m1b{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);}
.m11{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);}
.m19{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);}
.m6{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);}
.m1c{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);}
.m25{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);}
.me{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);}
.m12{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);}
.m15{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);}
.m9{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);}
.ma{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);}
.m16{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);}
.mc{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);}
.mb{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);}
.mf{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);}
.m1a{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);}
.m21{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);}
.m18{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);}
.m5{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);}
.m22{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);}
.m1e{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);}
.m13{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);}
.m1f{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);}
.m28{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls26{letter-spacing:-0.429600px;}
.ls23{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000009px;}
.ls2a{letter-spacing:0.000800px;}
.ls31{letter-spacing:0.001036px;}
.ls2f{letter-spacing:0.001155px;}
.ls34{letter-spacing:0.001448px;}
.ls4{letter-spacing:0.001933px;}
.ls32{letter-spacing:0.002074px;}
.ls33{letter-spacing:0.002084px;}
.ls30{letter-spacing:0.002544px;}
.ls12{letter-spacing:0.002782px;}
.ls13{letter-spacing:0.003219px;}
.ls2e{letter-spacing:0.003294px;}
.ls11{letter-spacing:0.003699px;}
.ls2b{letter-spacing:0.004078px;}
.ls3{letter-spacing:0.005700px;}
.ls24{letter-spacing:0.013320px;}
.ls28{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.069000px;}
.ls25{letter-spacing:0.145200px;}
.ls1e{letter-spacing:0.180000px;}
.ls20{letter-spacing:1.170000px;}
.ls1{letter-spacing:2.998354px;}
.ls1f{letter-spacing:5.130000px;}
.ls6{letter-spacing:11.954850px;}
.ls7{letter-spacing:13.031081px;}
.ls8{letter-spacing:13.090856px;}
.ls2c{letter-spacing:13.730566px;}
.ls16{letter-spacing:14.704798px;}
.ls17{letter-spacing:14.884124px;}
.lsa{letter-spacing:14.943900px;}
.ls19{letter-spacing:15.003676px;}
.ls14{letter-spacing:15.063451px;}
.ls9{letter-spacing:15.123227px;}
.ls1b{letter-spacing:16.737168px;}
.ls1c{letter-spacing:17.813129px;}
.lsf{letter-spacing:17.932680px;}
.lse{letter-spacing:18.590212px;}
.ls18{letter-spacing:19.008641px;}
.ls10{letter-spacing:19.068416px;}
.lsb{letter-spacing:21.041011px;}
.ls15{letter-spacing:21.818094px;}
.lsd{letter-spacing:22.475626px;}
.ls1d{letter-spacing:23.192933px;}
.lsc{letter-spacing:25.225303px;}
.ls1a{letter-spacing:26.002386px;}
.ls21{letter-spacing:40.886640px;}
.ls2{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls22{letter-spacing:83.366640px;}
.ls29{letter-spacing:94.292700px;}
.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;}
}
.wsbd{word-spacing:-60.120000px;}
.wsb5{word-spacing:-29.887800px;}
.wsc{word-spacing:-22.718660px;}
.wsb8{word-spacing:-15.210000px;}
.wsbc{word-spacing:-15.175200px;}
.wsbf{word-spacing:-15.099000px;}
.wsc0{word-spacing:-15.083280px;}
.wsbb{word-spacing:-15.043320px;}
.wsba{word-spacing:-15.030000px;}
.ws2e{word-spacing:-14.943900px;}
.wsb9{word-spacing:-14.850000px;}
.wsbe{word-spacing:-14.600400px;}
.wse{word-spacing:-14.355754px;}
.wsd9{word-spacing:-13.449600px;}
.wsb6{word-spacing:-12.150000px;}
.wsb7{word-spacing:-11.970000px;}
.ws2c{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws7c{word-spacing:-3.287658px;}
.ws36{word-spacing:-2.988780px;}
.ws35{word-spacing:-2.929004px;}
.wsc3{word-spacing:-2.869229px;}
.ws4d{word-spacing:-2.809453px;}
.ws7f{word-spacing:-2.749678px;}
.wsa6{word-spacing:-2.630126px;}
.wsb0{word-spacing:-2.570351px;}
.ws6d{word-spacing:-2.510575px;}
.wsc4{word-spacing:-2.450800px;}
.ws64{word-spacing:-2.331248px;}
.wsc7{word-spacing:-2.211697px;}
.ws9c{word-spacing:-2.151922px;}
.ws6e{word-spacing:-2.092146px;}
.wsb1{word-spacing:-2.032370px;}
.ws68{word-spacing:-1.912819px;}
.ws82{word-spacing:-1.853044px;}
.ws3f{word-spacing:-1.733492px;}
.ws12{word-spacing:-1.721549px;}
.ws5c{word-spacing:-1.673717px;}
.ws1c{word-spacing:-1.667750px;}
.ws1d{word-spacing:-1.613952px;}
.wsc1{word-spacing:-1.613941px;}
.ws112{word-spacing:-1.560154px;}
.ws73{word-spacing:-1.554166px;}
.ws44{word-spacing:-1.494390px;}
.ws8c{word-spacing:-1.434614px;}
.wse4{word-spacing:-1.344960px;}
.ws4c{word-spacing:-1.315063px;}
.ws58{word-spacing:-1.255288px;}
.ws11d{word-spacing:-1.237363px;}
.wsa7{word-spacing:-1.195512px;}
.ws10f{word-spacing:-1.183565px;}
.ws4b{word-spacing:-1.135736px;}
.ws12f{word-spacing:-1.075968px;}
.wsc8{word-spacing:-1.075961px;}
.ws13{word-spacing:-1.022170px;}
.ws113{word-spacing:-0.968371px;}
.wscd{word-spacing:-0.956410px;}
.ws126{word-spacing:-0.914573px;}
.ws52{word-spacing:-0.896634px;}
.wsaf{word-spacing:-0.836858px;}
.ws7d{word-spacing:-0.777083px;}
.ws56{word-spacing:-0.717307px;}
.ws1e{word-spacing:-0.699379px;}
.ws83{word-spacing:-0.657532px;}
.wsf7{word-spacing:-0.645581px;}
.ws45{word-spacing:-0.597756px;}
.wsf1{word-spacing:-0.551363px;}
.wsf0{word-spacing:-0.537984px;}
.ws7e{word-spacing:-0.537980px;}
.ws54{word-spacing:-0.478205px;}
.ws55{word-spacing:-0.418429px;}
.ws3d{word-spacing:-0.358654px;}
.ws108{word-spacing:-0.322790px;}
.ws3e{word-spacing:-0.298878px;}
.wsd4{word-spacing:-0.268992px;}
.ws3a{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws32{word-spacing:-0.179327px;}
.ws1f{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.ws116{word-spacing:-0.114950px;}
.ws1b{word-spacing:-0.107597px;}
.ws8f{word-spacing:-0.070118px;}
.ws26{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.wsf{word-spacing:-0.047821px;}
.wseb{word-spacing:-0.047799px;}
.ws11c{word-spacing:-0.015168px;}
.wsea{word-spacing:-0.011866px;}
.wse1{word-spacing:-0.011856px;}
.ws12b{word-spacing:-0.010502px;}
.wsf3{word-spacing:-0.009302px;}
.ws11a{word-spacing:-0.009110px;}
.ws105{word-spacing:-0.008467px;}
.wsed{word-spacing:-0.007776px;}
.ws129{word-spacing:-0.007757px;}
.ws103{word-spacing:-0.007354px;}
.wse2{word-spacing:-0.006710px;}
.ws111{word-spacing:-0.006605px;}
.ws123{word-spacing:-0.006422px;}
.ws107{word-spacing:-0.005933px;}
.wse3{word-spacing:-0.005251px;}
.wsf9{word-spacing:-0.004368px;}
.ws106{word-spacing:-0.003869px;}
.wsf5{word-spacing:-0.003466px;}
.ws131{word-spacing:-0.003302px;}
.ws114{word-spacing:-0.003053px;}
.ws102{word-spacing:-0.002304px;}
.ws124{word-spacing:-0.002026px;}
.ws11b{word-spacing:-0.002006px;}
.wsd8{word-spacing:-0.001267px;}
.ws3{word-spacing:-0.000779px;}
.ws66{word-spacing:-0.000659px;}
.ws121{word-spacing:-0.000202px;}
.ws0{word-spacing:0.000000px;}
.ws2b{word-spacing:0.003599px;}
.ws19{word-spacing:0.053798px;}
.ws28{word-spacing:0.059776px;}
.wsf4{word-spacing:0.068360px;}
.wsde{word-spacing:0.107597px;}
.ws3c{word-spacing:0.119551px;}
.ws119{word-spacing:0.150848px;}
.ws1a{word-spacing:0.161395px;}
.ws2{word-spacing:0.167371px;}
.ws2a{word-spacing:0.179327px;}
.ws11e{word-spacing:0.208141px;}
.wsdc{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wsd3{word-spacing:0.268992px;}
.ws46{word-spacing:0.298878px;}
.ws17{word-spacing:0.322790px;}
.ws2d{word-spacing:0.358654px;}
.ws21{word-spacing:0.376589px;}
.ws92{word-spacing:0.418429px;}
.ws37{word-spacing:0.478205px;}
.ws5f{word-spacing:0.537980px;}
.ws15{word-spacing:0.591782px;}
.ws70{word-spacing:0.597756px;}
.ws130{word-spacing:0.645581px;}
.wsb2{word-spacing:0.657532px;}
.ws93{word-spacing:0.717307px;}
.ws128{word-spacing:0.740933px;}
.ws125{word-spacing:0.753178px;}
.wsae{word-spacing:0.777083px;}
.ws10d{word-spacing:0.806976px;}
.ws4f{word-spacing:0.836858px;}
.ws11{word-spacing:0.860774px;}
.ws9f{word-spacing:0.896634px;}
.ws67{word-spacing:0.956410px;}
.ws85{word-spacing:1.016185px;}
.ws71{word-spacing:1.075961px;}
.ws10e{word-spacing:1.075968px;}
.ws120{word-spacing:1.129766px;}
.ws89{word-spacing:1.135736px;}
.ws118{word-spacing:1.183565px;}
.ws86{word-spacing:1.195512px;}
.wsa3{word-spacing:1.255288px;}
.ws51{word-spacing:1.315063px;}
.wse9{word-spacing:1.344960px;}
.ws2f{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws3b{word-spacing:1.434614px;}
.ws12d{word-spacing:1.452557px;}
.ws41{word-spacing:1.494390px;}
.ws33{word-spacing:1.554166px;}
.ws8a{word-spacing:1.613941px;}
.ws115{word-spacing:1.613952px;}
.wsf6{word-spacing:1.721549px;}
.ws63{word-spacing:1.733492px;}
.wsee{word-spacing:1.775347px;}
.ws99{word-spacing:1.793268px;}
.wsef{word-spacing:1.829146px;}
.ws77{word-spacing:1.853044px;}
.ws29{word-spacing:1.912819px;}
.wse5{word-spacing:1.936742px;}
.ws48{word-spacing:1.972595px;}
.wsff{word-spacing:1.979706px;}
.wsf8{word-spacing:1.990541px;}
.ws75{word-spacing:2.032370px;}
.wsfe{word-spacing:2.044339px;}
.wsb3{word-spacing:2.092146px;}
.ws53{word-spacing:2.151922px;}
.ws11f{word-spacing:2.205734px;}
.ws74{word-spacing:2.211697px;}
.ws62{word-spacing:2.271473px;}
.ws61{word-spacing:2.331248px;}
.ws12a{word-spacing:2.367130px;}
.ws9b{word-spacing:2.391024px;}
.ws76{word-spacing:2.450800px;}
.wsa0{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.wsa1{word-spacing:2.570351px;}
.ws65{word-spacing:2.630126px;}
.ws6f{word-spacing:2.689902px;}
.ws9e{word-spacing:2.749678px;}
.ws49{word-spacing:2.809453px;}
.ws94{word-spacing:2.869229px;}
.ws109{word-spacing:2.905114px;}
.wscc{word-spacing:2.929004px;}
.ws39{word-spacing:2.988780px;}
.ws22{word-spacing:3.023667px;}
.ws60{word-spacing:3.048556px;}
.ws79{word-spacing:3.108331px;}
.ws117{word-spacing:3.120307px;}
.wsaa{word-spacing:3.168107px;}
.wsf2{word-spacing:3.174106px;}
.wsdf{word-spacing:3.220099px;}
.wsd7{word-spacing:3.221261px;}
.wsdd{word-spacing:3.223123px;}
.ws10a{word-spacing:3.223949px;}
.wsd5{word-spacing:3.224822px;}
.wsec{word-spacing:3.225686px;}
.ws10c{word-spacing:3.227386px;}
.ws50{word-spacing:3.227882px;}
.wsd6{word-spacing:3.227904px;}
.ws127{word-spacing:3.335501px;}
.wsad{word-spacing:3.347434px;}
.wsda{word-spacing:3.389299px;}
.ws69{word-spacing:3.407209px;}
.wsdb{word-spacing:3.443098px;}
.ws91{word-spacing:3.466985px;}
.ws110{word-spacing:3.496896px;}
.ws57{word-spacing:3.526760px;}
.ws8e{word-spacing:3.574644px;}
.ws23{word-spacing:3.586536px;}
.wsfb{word-spacing:3.604493px;}
.ws42{word-spacing:3.646312px;}
.ws10b{word-spacing:3.658291px;}
.ws38{word-spacing:3.706087px;}
.ws72{word-spacing:3.765863px;}
.ws4e{word-spacing:3.825638px;}
.ws4a{word-spacing:3.885414px;}
.wsfa{word-spacing:3.927283px;}
.ws78{word-spacing:3.945190px;}
.ws18{word-spacing:3.981082px;}
.ws47{word-spacing:4.004965px;}
.wsac{word-spacing:4.064741px;}
.ws104{word-spacing:4.088678px;}
.ws84{word-spacing:4.124516px;}
.ws98{word-spacing:4.303843px;}
.ws14{word-spacing:4.357670px;}
.ws31{word-spacing:4.363619px;}
.ws122{word-spacing:4.411469px;}
.ws30{word-spacing:4.423394px;}
.ws80{word-spacing:4.483170px;}
.wsfc{word-spacing:4.519066px;}
.ws97{word-spacing:4.542946px;}
.wsfd{word-spacing:4.572864px;}
.ws96{word-spacing:4.602721px;}
.wsa5{word-spacing:4.662497px;}
.wsc5{word-spacing:4.722272px;}
.ws43{word-spacing:4.782048px;}
.wsc9{word-spacing:4.841824px;}
.wse6{word-spacing:4.841856px;}
.wse7{word-spacing:4.895654px;}
.ws5d{word-spacing:4.901599px;}
.ws12c{word-spacing:4.949453px;}
.wsa2{word-spacing:4.961375px;}
.wsa8{word-spacing:5.021150px;}
.ws81{word-spacing:5.080926px;}
.ws8b{word-spacing:5.140702px;}
.ws10{word-spacing:5.174743px;}
.ws5b{word-spacing:5.200477px;}
.wscf{word-spacing:5.260253px;}
.wsd2{word-spacing:5.320028px;}
.ws95{word-spacing:5.379804px;}
.wsb4{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws9a{word-spacing:5.499355px;}
.wsd0{word-spacing:5.618906px;}
.ws87{word-spacing:5.738458px;}
.ws88{word-spacing:5.798233px;}
.wsa4{word-spacing:5.858009px;}
.ws7a{word-spacing:6.037336px;}
.ws5e{word-spacing:6.216662px;}
.ws24{word-spacing:6.276438px;}
.ws6b{word-spacing:6.336214px;}
.ws12e{word-spacing:6.348211px;}
.ws9d{word-spacing:6.575316px;}
.ws6a{word-spacing:6.635092px;}
.wsca{word-spacing:6.694867px;}
.ws59{word-spacing:6.754643px;}
.ws5a{word-spacing:6.814418px;}
.wsa9{word-spacing:6.874194px;}
.ws101{word-spacing:6.939994px;}
.wscb{word-spacing:7.053521px;}
.wsd1{word-spacing:7.113296px;}
.ws34{word-spacing:7.173072px;}
.ws8d{word-spacing:7.232848px;}
.wsab{word-spacing:7.292623px;}
.ws7b{word-spacing:7.352399px;}
.ws100{word-spacing:7.424179px;}
.wsc6{word-spacing:7.531726px;}
.ws40{word-spacing:8.308808px;}
.wsc2{word-spacing:8.368584px;}
.ws6c{word-spacing:8.428360px;}
.wsce{word-spacing:9.205442px;}
.ws90{word-spacing:9.265218px;}
.ws6{word-spacing:9.833058px;}
.wse0{word-spacing:9.898906px;}
.ws7{word-spacing:11.841512px;}
.wse8{word-spacing:13.180608px;}
.ws4{word-spacing:15.481836px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
._1d{margin-left:-22.904646px;}
._2c{margin-left:-20.914238px;}
._22{margin-left:-14.943900px;}
._5{margin-left:-11.943245px;}
._2b{margin-left:-8.039930px;}
._a{margin-left:-6.635092px;}
._c{margin-left:-5.260266px;}
._0{margin-left:-4.184280px;}
._b{margin-left:-3.046682px;}
._4{margin-left:-1.464498px;}
._25{width:1.322640px;}
._7{width:2.999371px;}
._24{width:4.328640px;}
._26{width:5.951880px;}
._27{width:7.615800px;}
._28{width:9.367236px;}
._d{width:10.705882px;}
._1{width:12.218098px;}
._2{width:13.515224px;}
._12{width:14.824386px;}
._11{width:15.996128px;}
._10{width:17.323085px;}
._e{width:18.937037px;}
._16{width:20.395232px;}
._19{width:21.525594px;}
._21{width:22.684836px;}
._15{width:24.119450px;}
._3{width:25.314894px;}
._1a{width:26.420815px;}
._1b{width:28.453186px;}
._f{width:30.234701px;}
._1c{width:31.440657px;}
._6{width:33.355008px;}
._29{width:34.364592px;}
._1e{width:35.387147px;}
._18{width:37.090756px;}
._17{width:38.824248px;}
._20{width:41.275048px;}
._2a{width:44.174168px;}
._8{width:54.403709px;}
._9{width:69.311053px;}
._13{width:881.284037px;}
._23{width:2081.185200px;}
._1f{width:2512.803000px;}
._14{width:2536.713000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsc{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y11e{bottom:-606.126000px;}
.y14d{bottom:-530.526000px;}
.y14c{bottom:-493.266000px;}
.y14b{bottom:-474.096000px;}
.y14a{bottom:-454.836000px;}
.y149{bottom:-435.576000px;}
.y148{bottom:-416.406000px;}
.y147{bottom:-397.116000px;}
.y146{bottom:-377.946000px;}
.y145{bottom:-354.186000px;}
.y144{bottom:-317.016000px;}
.y143{bottom:-297.756000px;}
.y142{bottom:-278.496000px;}
.y141{bottom:-259.326000px;}
.y140{bottom:-240.066000px;}
.y13f{bottom:-220.806000px;}
.y13e{bottom:-201.636000px;}
.y13d{bottom:-177.876000px;}
.y13c{bottom:-158.706000px;}
.y13b{bottom:-139.446000px;}
.y13a{bottom:-115.776000px;}
.y139{bottom:-96.516000px;}
.y138{bottom:-77.256000px;}
.y137{bottom:-57.996000px;}
.y136{bottom:-38.826000px;}
.y135{bottom:-19.566000px;}
.y134{bottom:-0.396000px;}
.y0{bottom:0.000000px;}
.y39{bottom:9.233944px;}
.y133{bottom:23.394000px;}
.y38{bottom:26.903761px;}
.y66{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y132{bottom:42.654000px;}
.y131{bottom:61.824000px;}
.y5{bottom:66.525004px;}
.y130{bottom:85.494000px;}
.y4{bottom:97.125005px;}
.y1a7{bottom:104.203500px;}
.y170{bottom:104.353500px;}
.y36{bottom:104.646000px;}
.y1fe{bottom:116.458500px;}
.y9c{bottom:119.148000px;}
.ya1{bottom:119.596500px;}
.y101{bottom:121.837500px;}
.y10b{bottom:122.286000px;}
.y35{bottom:122.535000px;}
.y12f{bottom:122.754000px;}
.y1a6{bottom:123.033000px;}
.y16f{bottom:123.183000px;}
.y65{bottom:123.675000px;}
.y1fd{bottom:133.719000px;}
.y9b{bottom:137.977500px;}
.ya0{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y34{bottom:140.422500px;}
.y100{bottom:140.667000px;}
.y119{bottom:140.668500px;}
.y10a{bottom:141.115500px;}
.y1a5{bottom:141.862500px;}
.y12e{bottom:142.014000px;}
.y64{bottom:142.504500px;}
.y1c8{bottom:145.824000px;}
.y16e{bottom:146.496000px;}
.y1fc{bottom:150.978000px;}
.y9a{bottom:156.807000px;}
.y9f{bottom:157.255500px;}
.y33{bottom:158.310000px;}
.yff{bottom:159.496500px;}
.y109{bottom:159.945000px;}
.y1a4{bottom:160.692000px;}
.y12d{bottom:161.274000px;}
.y63{bottom:161.334000px;}
.y1c7{bottom:163.083000px;}
.y1fb{bottom:168.238500px;}
.yc1{bottom:175.636500px;}
.y9e{bottom:176.085000px;}
.y32{bottom:176.199000px;}
.yfe{bottom:178.326000px;}
.y108{bottom:178.774500px;}
.y1a3{bottom:179.521500px;}
.y99{bottom:180.120000px;}
.y62{bottom:180.163500px;}
.y1c6{bottom:180.343500px;}
.y12c{bottom:180.444000px;}
.y118{bottom:182.809500px;}
.y1fa{bottom:185.499000px;}
.y31{bottom:194.086500px;}
.yc0{bottom:194.466000px;}
.y9d{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.yfd{bottom:197.155500px;}
.y107{bottom:197.604000px;}
.y1a2{bottom:198.351000px;}
.y16d{bottom:198.949500px;}
.y61{bottom:198.993000px;}
.y12b{bottom:199.704000px;}
.y1f9{bottom:202.759500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y30{bottom:211.974000px;}
.ybf{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.y1c5{bottom:214.864500px;}
.yfc{bottom:215.985000px;}
.y106{bottom:216.433500px;}
.y16c{bottom:217.779000px;}
.y60{bottom:217.822500px;}
.y12a{bottom:218.874000px;}
.y1f8{bottom:220.020000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1a1{bottom:224.652000px;}
.y2f{bottom:229.863000px;}
.ybe{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yfb{bottom:234.814500px;}
.y105{bottom:235.263000px;}
.y16b{bottom:236.608500px;}
.y5f{bottom:236.652000px;}
.y1f7{bottom:237.280500px;}
.y129{bottom:238.134000px;}
.y1a0{bottom:243.481500px;}
.y1c4{bottom:249.385500px;}
.ybd{bottom:250.954500px;}
.y96{bottom:251.403000px;}
.yfa{bottom:253.644000px;}
.y117{bottom:254.092500px;}
.y1f6{bottom:254.541000px;}
.y16a{bottom:255.438000px;}
.y5e{bottom:255.481500px;}
.y128{bottom:257.394000px;}
.y104{bottom:258.576000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y19f{bottom:262.311000px;}
.y1c3{bottom:266.646000px;}
.ybc{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.y1f5{bottom:271.801500px;}
.yf9{bottom:272.473500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y103{bottom:274.267500px;}
.y5d{bottom:274.311000px;}
.y127{bottom:281.064000px;}
.y19e{bottom:281.140500px;}
.y1c2{bottom:283.906500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ybb{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.y116{bottom:290.854500px;}
.y169{bottom:293.097000px;}
.yf8{bottom:295.786500px;}
.y5c{bottom:297.622500px;}
.y2e{bottom:299.892000px;}
.y19d{bottom:299.970000px;}
.y126{bottom:300.324000px;}
.y1c1{bottom:301.167000px;}
.y1f4{bottom:306.321000px;}
.yba{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.y115{bottom:309.684000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y168{bottom:311.926500px;}
.y2d{bottom:317.779500px;}
.y1c0{bottom:318.426000px;}
.y19c{bottom:318.799500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1f3{bottom:323.581500px;}
.y125{bottom:323.994000px;}
.yb9{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.y17e{bottom:326.721000px;}
.y114{bottom:328.513500px;}
.yf7{bottom:329.410500px;}
.y167{bottom:330.756000px;}
.y2c{bottom:335.667000px;}
.y1bf{bottom:335.686500px;}
.y19b{bottom:337.629000px;}
.y1f2{bottom:340.842000px;}
.yb8{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.y17d{bottom:345.550500px;}
.y10{bottom:348.133500px;}
.yf6{bottom:348.240000px;}
.y1be{bottom:352.947000px;}
.y2b{bottom:353.554500px;}
.y166{bottom:354.067500px;}
.y19a{bottom:356.458500px;}
.y1f1{bottom:358.102500px;}
.y124{bottom:361.254000px;}
.yb7{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.y17c{bottom:364.380000px;}
.y113{bottom:365.275500px;}
.yf5{bottom:367.069500px;}
.y1bd{bottom:370.207500px;}
.y5b{bottom:372.772500px;}
.y199{bottom:375.288000px;}
.y1f0{bottom:375.363000px;}
.y2a{bottom:380.409000px;}
.y123{bottom:380.514000px;}
.yb6{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.y112{bottom:384.105000px;}
.yf4{bottom:385.899000px;}
.yf{bottom:386.785499px;}
.y1bc{bottom:387.468000px;}
.y165{bottom:387.691500px;}
.y5a{bottom:392.230500px;}
.y1ef{bottom:392.623500px;}
.y198{bottom:394.117500px;}
.y29{bottom:398.298000px;}
.y122{bottom:399.684000px;}
.yb5{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.y111{bottom:402.934500px;}
.yf3{bottom:404.728500px;}
.y164{bottom:406.521000px;}
.ye{bottom:408.044999px;}
.y1ee{bottom:409.884000px;}
.y197{bottom:412.947000px;}
.y28{bottom:416.185500px;}
.yb4{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.y1bb{bottom:421.989000px;}
.yf2{bottom:423.558000px;}
.y163{bottom:425.350500px;}
.y1ed{bottom:427.144500px;}
.y59{bottom:429.619500px;}
.y196{bottom:431.776500px;}
.y27{bottom:434.073000px;}
.y121{bottom:436.974000px;}
.yb3{bottom:439.248000px;}
.y1ba{bottom:439.249500px;}
.y8c{bottom:439.696500px;}
.yf1{bottom:442.387500px;}
.y162{bottom:444.180000px;}
.y1ec{bottom:444.403500px;}
.y58{bottom:449.077500px;}
.y195{bottom:450.606000px;}
.y26{bottom:451.962000px;}
.y120{bottom:456.234000px;}
.y1b9{bottom:456.510000px;}
.yb2{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.yf0{bottom:461.217000px;}
.y1eb{bottom:461.664000px;}
.y161{bottom:463.009500px;}
.y57{bottom:468.534000px;}
.y194{bottom:469.435500px;}
.y25{bottom:469.849500px;}
.y1b8{bottom:473.769000px;}
.y11f{bottom:475.404000px;}
.yb1{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.y1ea{bottom:478.924500px;}
.yef{bottom:480.045000px;}
.y160{bottom:481.839000px;}
.y24{bottom:487.737000px;}
.y56{bottom:487.990500px;}
.y193{bottom:488.265000px;}
.y1b7{bottom:491.029500px;}
.yb0{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.yee{bottom:498.874500px;}
.y1a8{bottom:500.220000px;}
.y15f{bottom:500.668500px;}
.yd{bottom:502.864502px;}
.y17b{bottom:505.152000px;}
.y23{bottom:505.626000px;}
.y192{bottom:507.094500px;}
.y55{bottom:507.448500px;}
.y1b6{bottom:508.290000px;}
.y1e9{bottom:513.445500px;}
.y110{bottom:514.117500px;}
.yaf{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.yed{bottom:517.704000px;}
.yc{bottom:520.864502px;}
.y15e{bottom:523.981500px;}
.y1b5{bottom:525.550500px;}
.y191{bottom:525.924000px;}
.y54{bottom:526.905000px;}
.y11d{bottom:530.124000px;}
.y1e8{bottom:530.706000px;}
.y10f{bottom:532.947000px;}
.yae{bottom:533.395500px;}
.y87{bottom:533.844000px;}
.yec{bottom:536.533500px;}
.yb{bottom:538.864499px;}
.y11c{bottom:539.754000px;}
.y17a{bottom:542.811000px;}
.y190{bottom:544.753500px;}
.y53{bottom:546.363000px;}
.y1e7{bottom:547.966500px;}
.y10e{bottom:551.776500px;}
.yad{bottom:552.225000px;}
.y86{bottom:552.673500px;}
.yeb{bottom:555.363000px;}
.y102{bottom:556.708500px;}
.ya{bottom:556.864499px;}
.y15d{bottom:557.605500px;}
.y1b4{bottom:560.071500px;}
.y179{bottom:561.640500px;}
.y18f{bottom:563.583000px;}
.y1e6{bottom:565.227000px;}
.y52{bottom:565.819500px;}
.yac{bottom:571.054500px;}
.y85{bottom:571.503000px;}
.yea{bottom:574.192500px;}
.y10d{bottom:575.089500px;}
.y15c{bottom:576.435000px;}
.y1b3{bottom:581.814000px;}
.y18e{bottom:582.412500px;}
.y1e5{bottom:582.487500px;}
.y178{bottom:584.952000px;}
.y51{bottom:585.276000px;}
.yab{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.ye9{bottom:593.022000px;}
.y15b{bottom:595.264500px;}
.y1e4{bottom:599.746500px;}
.y18d{bottom:601.242000px;}
.y50{bottom:604.734000px;}
.yaa{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.ye8{bottom:611.851500px;}
.y15a{bottom:614.094000px;}
.y1b2{bottom:615.438000px;}
.y1e3{bottom:617.007000px;}
.y177{bottom:618.576000px;}
.y18c{bottom:620.071500px;}
.y4f{bottom:624.190500px;}
.ya9{bottom:627.543000px;}
.y82{bottom:627.991500px;}
.ye7{bottom:630.681000px;}
.y159{bottom:632.923500px;}
.y1e2{bottom:634.267500px;}
.y176{bottom:637.405500px;}
.y18b{bottom:638.901000px;}
.y1b1{bottom:641.979000px;}
.y4e{bottom:643.647000px;}
.y9{bottom:645.510000px;}
.ya8{bottom:646.372500px;}
.y81{bottom:646.821000px;}
.ye6{bottom:649.510500px;}
.y1e1{bottom:651.528000px;}
.y158{bottom:651.753000px;}
.y175{bottom:656.235000px;}
.y18a{bottom:657.730500px;}
.y1b0{bottom:659.553000px;}
.y4d{bottom:663.105000px;}
.ya7{bottom:665.202000px;}
.y80{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.ye5{bottom:668.340000px;}
.y1e0{bottom:668.788500px;}
.y157{bottom:670.582500px;}
.y189{bottom:676.560000px;}
.y174{bottom:679.548000px;}
.y4c{bottom:682.561500px;}
.ya6{bottom:684.031500px;}
.y7f{bottom:684.480000px;}
.y1df{bottom:686.049000px;}
.y1af{bottom:686.094000px;}
.ye4{bottom:687.169500px;}
.y10c{bottom:688.515000px;}
.y156{bottom:693.894000px;}
.y188{bottom:695.389500px;}
.y173{bottom:698.377500px;}
.y4b{bottom:702.019500px;}
.ya5{bottom:702.861000px;}
.y7e{bottom:703.309500px;}
.ye3{bottom:705.999000px;}
.y1ae{bottom:712.635000px;}
.y155{bottom:712.723500px;}
.y187{bottom:714.219000px;}
.y172{bottom:717.207000px;}
.y1de{bottom:720.570000px;}
.y4a{bottom:721.476000px;}
.ya4{bottom:721.690500px;}
.y7d{bottom:722.139000px;}
.ye2{bottom:724.828500px;}
.y7{bottom:726.298500px;}
.y154{bottom:731.553000px;}
.y186{bottom:733.047000px;}
.y171{bottom:736.036500px;}
.y1dd{bottom:737.829000px;}
.y1ad{bottom:739.174500px;}
.ya3{bottom:740.520000px;}
.y49{bottom:740.932500px;}
.y7c{bottom:740.968500px;}
.ye1{bottom:743.658000px;}
.y185{bottom:751.876500px;}
.y3{bottom:752.599495px;}
.y153{bottom:754.866000px;}
.y1dc{bottom:755.089500px;}
.yd0{bottom:759.349500px;}
.y7b{bottom:759.798000px;}
.y48{bottom:760.390500px;}
.ye0{bottom:762.487500px;}
.ya2{bottom:763.833000px;}
.y1ac{bottom:765.715500px;}
.y184{bottom:770.706000px;}
.y1db{bottom:772.350000px;}
.y152{bottom:773.695500px;}
.ycf{bottom:778.179000px;}
.y7a{bottom:778.627500px;}
.y47{bottom:779.847000px;}
.ydf{bottom:781.317000px;}
.y1ab{bottom:783.289500px;}
.y183{bottom:789.535500px;}
.y1da{bottom:789.610500px;}
.y151{bottom:792.525000px;}
.yce{bottom:797.008500px;}
.y79{bottom:797.457000px;}
.yde{bottom:800.146500px;}
.y1aa{bottom:800.863500px;}
.y1d9{bottom:806.871000px;}
.y182{bottom:808.365000px;}
.y150{bottom:811.354500px;}
.ycd{bottom:815.838000px;}
.y78{bottom:816.286500px;}
.y46{bottom:818.433000px;}
.y1a9{bottom:818.437500px;}
.ydd{bottom:818.976000px;}
.y1d8{bottom:824.131500px;}
.y181{bottom:827.194500px;}
.y14f{bottom:830.184000px;}
.y45{bottom:834.571500px;}
.ycc{bottom:834.667500px;}
.y77{bottom:835.114500px;}
.ydc{bottom:837.805500px;}
.y1d7{bottom:841.392000px;}
.y180{bottom:846.024000px;}
.y14e{bottom:849.013500px;}
.ycb{bottom:853.497000px;}
.y76{bottom:853.944000px;}
.y44{bottom:855.051000px;}
.ydb{bottom:856.635000px;}
.y1d6{bottom:858.652500px;}
.y11b{bottom:867.843000px;}
.y43{bottom:871.191000px;}
.yca{bottom:872.326500px;}
.y75{bottom:872.773500px;}
.yda{bottom:875.464500px;}
.y1d5{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y42{bottom:887.331000px;}
.yc9{bottom:891.156000px;}
.y74{bottom:891.603000px;}
.y1d4{bottom:893.172000px;}
.yd9{bottom:894.294000px;}
.y41{bottom:899.130000px;}
.yc8{bottom:909.984000px;}
.y73{bottom:910.432500px;}
.yd8{bottom:913.123500px;}
.y40{bottom:919.609500px;}
.y1d3{bottom:927.693000px;}
.yc7{bottom:928.813500px;}
.y72{bottom:929.262000px;}
.y3f{bottom:931.410000px;}
.yd7{bottom:931.953000px;}
.y1d2{bottom:944.953500px;}
.yc6{bottom:947.643000px;}
.y71{bottom:948.091500px;}
.yd6{bottom:950.782500px;}
.y3e{bottom:951.888000px;}
.y11a{bottom:952.126500px;}
.y1d1{bottom:962.214000px;}
.yc5{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.yd5{bottom:969.612000px;}
.y201{bottom:974.916000px;}
.y1d0{bottom:979.474500px;}
.yc4{bottom:985.302000px;}
.y6f{bottom:985.750500px;}
.yd4{bottom:988.440000px;}
.y200{bottom:992.176500px;}
.y3d{bottom:996.565500px;}
.y1cf{bottom:996.735000px;}
.yc3{bottom:1004.131500px;}
.y6e{bottom:1004.580000px;}
.yd3{bottom:1007.269500px;}
.y1ff{bottom:1009.437000px;}
.y1ce{bottom:1013.995500px;}
.y17f{bottom:1022.961000px;}
.y6d{bottom:1023.409500px;}
.yc2{bottom:1027.444500px;}
.yd2{bottom:1030.582500px;}
.y1cd{bottom:1031.254500px;}
.y3c{bottom:1036.485000px;}
.y6c{bottom:1042.239000px;}
.yd1{bottom:1046.274000px;}
.y1cc{bottom:1048.515000px;}
.y6b{bottom:1061.068500px;}
.y3b{bottom:1064.728500px;}
.y1cb{bottom:1065.775500px;}
.y6a{bottom:1079.898000px;}
.y1ca{bottom:1083.036000px;}
.y3a{bottom:1092.972000px;}
.y69{bottom:1098.727500px;}
.y1c9{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y37{bottom:1136.460000px;}
.y67{bottom:1177.662000px;}
.h16{height:9.327000px;}
.h10{height:26.110157px;}
.h1d{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h11{height:34.813397px;}
.h18{height:34.951465px;}
.h15{height:35.100320px;}
.h17{height:35.255391px;}
.h12{height:39.165235px;}
.h1e{height:39.488026px;}
.h1f{height:39.489235px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.hd{height:43.875290px;}
.h1b{height:43.886426px;}
.h1a{height:44.062559px;}
.h19{height:44.268047px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.hf{height:54.541601px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.h1c{height:61.793886px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:6.136500px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-196.117500px;}
.x0{left:0.000000px;}
.xe{left:31.342500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.xf{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xb{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x8{left:269.914500px;}
.xa{left:281.479500px;}
.xc{left:283.437000px;}
.x10{left:433.159500px;}
.x3{left:454.959000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls26{letter-spacing:-0.381867pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000008pt;}
.ls2a{letter-spacing:0.000711pt;}
.ls31{letter-spacing:0.000921pt;}
.ls2f{letter-spacing:0.001026pt;}
.ls34{letter-spacing:0.001288pt;}
.ls4{letter-spacing:0.001718pt;}
.ls32{letter-spacing:0.001843pt;}
.ls33{letter-spacing:0.001852pt;}
.ls30{letter-spacing:0.002262pt;}
.ls12{letter-spacing:0.002473pt;}
.ls13{letter-spacing:0.002861pt;}
.ls2e{letter-spacing:0.002928pt;}
.ls11{letter-spacing:0.003288pt;}
.ls2b{letter-spacing:0.003625pt;}
.ls3{letter-spacing:0.005067pt;}
.ls24{letter-spacing:0.011840pt;}
.ls28{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.061333pt;}
.ls25{letter-spacing:0.129067pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls20{letter-spacing:1.040000pt;}
.ls1{letter-spacing:2.665203pt;}
.ls1f{letter-spacing:4.560000pt;}
.ls6{letter-spacing:10.626533pt;}
.ls7{letter-spacing:11.583183pt;}
.ls8{letter-spacing:11.636317pt;}
.ls2c{letter-spacing:12.204948pt;}
.ls16{letter-spacing:13.070931pt;}
.ls17{letter-spacing:13.230333pt;}
.lsa{letter-spacing:13.283467pt;}
.ls19{letter-spacing:13.336601pt;}
.ls14{letter-spacing:13.389734pt;}
.ls9{letter-spacing:13.442868pt;}
.ls1b{letter-spacing:14.877483pt;}
.ls1c{letter-spacing:15.833892pt;}
.lsf{letter-spacing:15.940160pt;}
.lse{letter-spacing:16.524633pt;}
.ls18{letter-spacing:16.896570pt;}
.ls10{letter-spacing:16.949703pt;}
.lsb{letter-spacing:18.703121pt;}
.ls15{letter-spacing:19.393861pt;}
.lsd{letter-spacing:19.978334pt;}
.ls1d{letter-spacing:20.615940pt;}
.lsc{letter-spacing:22.422492pt;}
.ls1a{letter-spacing:23.113232pt;}
.ls21{letter-spacing:36.343680pt;}
.ls2{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls22{letter-spacing:74.103680pt;}
.ls29{letter-spacing:83.815733pt;}
.wsbd{word-spacing:-53.440000pt;}
.wsb5{word-spacing:-26.566933pt;}
.wsc{word-spacing:-20.194365pt;}
.wsb8{word-spacing:-13.520000pt;}
.wsbc{word-spacing:-13.489067pt;}
.wsbf{word-spacing:-13.421333pt;}
.wsc0{word-spacing:-13.407360pt;}
.wsbb{word-spacing:-13.371840pt;}
.wsba{word-spacing:-13.360000pt;}
.ws2e{word-spacing:-13.283467pt;}
.wsb9{word-spacing:-13.200000pt;}
.wsbe{word-spacing:-12.978133pt;}
.wse{word-spacing:-12.760670pt;}
.wsd9{word-spacing:-11.955200pt;}
.wsb6{word-spacing:-10.800000pt;}
.wsb7{word-spacing:-10.640000pt;}
.ws2c{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws7c{word-spacing:-2.922363pt;}
.ws36{word-spacing:-2.656693pt;}
.ws35{word-spacing:-2.603559pt;}
.wsc3{word-spacing:-2.550426pt;}
.ws4d{word-spacing:-2.497292pt;}
.ws7f{word-spacing:-2.444158pt;}
.wsa6{word-spacing:-2.337890pt;}
.wsb0{word-spacing:-2.284756pt;}
.ws6d{word-spacing:-2.231622pt;}
.wsc4{word-spacing:-2.178489pt;}
.ws64{word-spacing:-2.072221pt;}
.wsc7{word-spacing:-1.965953pt;}
.ws9c{word-spacing:-1.912819pt;}
.ws6e{word-spacing:-1.859685pt;}
.wsb1{word-spacing:-1.806551pt;}
.ws68{word-spacing:-1.700284pt;}
.ws82{word-spacing:-1.647150pt;}
.ws3f{word-spacing:-1.540882pt;}
.ws12{word-spacing:-1.530266pt;}
.ws5c{word-spacing:-1.487748pt;}
.ws1c{word-spacing:-1.482445pt;}
.ws1d{word-spacing:-1.434624pt;}
.wsc1{word-spacing:-1.434614pt;}
.ws112{word-spacing:-1.386803pt;}
.ws73{word-spacing:-1.381481pt;}
.ws44{word-spacing:-1.328347pt;}
.ws8c{word-spacing:-1.275213pt;}
.wse4{word-spacing:-1.195520pt;}
.ws4c{word-spacing:-1.168945pt;}
.ws58{word-spacing:-1.115811pt;}
.ws11d{word-spacing:-1.099878pt;}
.wsa7{word-spacing:-1.062677pt;}
.ws10f{word-spacing:-1.052058pt;}
.ws4b{word-spacing:-1.009543pt;}
.ws12f{word-spacing:-0.956416pt;}
.wsc8{word-spacing:-0.956410pt;}
.ws13{word-spacing:-0.908595pt;}
.ws113{word-spacing:-0.860774pt;}
.wscd{word-spacing:-0.850142pt;}
.ws126{word-spacing:-0.812954pt;}
.ws52{word-spacing:-0.797008pt;}
.wsaf{word-spacing:-0.743874pt;}
.ws7d{word-spacing:-0.690740pt;}
.ws56{word-spacing:-0.637606pt;}
.ws1e{word-spacing:-0.621670pt;}
.ws83{word-spacing:-0.584473pt;}
.wsf7{word-spacing:-0.573850pt;}
.ws45{word-spacing:-0.531339pt;}
.wsf1{word-spacing:-0.490101pt;}
.wsf0{word-spacing:-0.478208pt;}
.ws7e{word-spacing:-0.478205pt;}
.ws54{word-spacing:-0.425071pt;}
.ws55{word-spacing:-0.371937pt;}
.ws3d{word-spacing:-0.318803pt;}
.ws108{word-spacing:-0.286925pt;}
.ws3e{word-spacing:-0.265669pt;}
.wsd4{word-spacing:-0.239104pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws32{word-spacing:-0.159402pt;}
.ws1f{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.ws116{word-spacing:-0.102178pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws8f{word-spacing:-0.062327pt;}
.ws26{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.wsf{word-spacing:-0.042507pt;}
.wseb{word-spacing:-0.042488pt;}
.ws11c{word-spacing:-0.013483pt;}
.wsea{word-spacing:-0.010547pt;}
.wse1{word-spacing:-0.010539pt;}
.ws12b{word-spacing:-0.009335pt;}
.wsf3{word-spacing:-0.008269pt;}
.ws11a{word-spacing:-0.008098pt;}
.ws105{word-spacing:-0.007526pt;}
.wsed{word-spacing:-0.006912pt;}
.ws129{word-spacing:-0.006895pt;}
.ws103{word-spacing:-0.006537pt;}
.wse2{word-spacing:-0.005965pt;}
.ws111{word-spacing:-0.005871pt;}
.ws123{word-spacing:-0.005709pt;}
.ws107{word-spacing:-0.005274pt;}
.wse3{word-spacing:-0.004668pt;}
.wsf9{word-spacing:-0.003883pt;}
.ws106{word-spacing:-0.003439pt;}
.wsf5{word-spacing:-0.003081pt;}
.ws131{word-spacing:-0.002935pt;}
.ws114{word-spacing:-0.002714pt;}
.ws102{word-spacing:-0.002048pt;}
.ws124{word-spacing:-0.001801pt;}
.ws11b{word-spacing:-0.001783pt;}
.wsd8{word-spacing:-0.001126pt;}
.ws3{word-spacing:-0.000692pt;}
.ws66{word-spacing:-0.000586pt;}
.ws121{word-spacing:-0.000179pt;}
.ws0{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.003199pt;}
.ws19{word-spacing:0.047821pt;}
.ws28{word-spacing:0.053134pt;}
.wsf4{word-spacing:0.060765pt;}
.wsde{word-spacing:0.095642pt;}
.ws3c{word-spacing:0.106268pt;}
.ws119{word-spacing:0.134087pt;}
.ws1a{word-spacing:0.143462pt;}
.ws2{word-spacing:0.148774pt;}
.ws2a{word-spacing:0.159402pt;}
.ws11e{word-spacing:0.185014pt;}
.wsdc{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wsd3{word-spacing:0.239104pt;}
.ws46{word-spacing:0.265669pt;}
.ws17{word-spacing:0.286925pt;}
.ws2d{word-spacing:0.318803pt;}
.ws21{word-spacing:0.334746pt;}
.ws92{word-spacing:0.371937pt;}
.ws37{word-spacing:0.425071pt;}
.ws5f{word-spacing:0.478205pt;}
.ws15{word-spacing:0.526029pt;}
.ws70{word-spacing:0.531339pt;}
.ws130{word-spacing:0.573850pt;}
.wsb2{word-spacing:0.584473pt;}
.ws93{word-spacing:0.637606pt;}
.ws128{word-spacing:0.658607pt;}
.ws125{word-spacing:0.669491pt;}
.wsae{word-spacing:0.690740pt;}
.ws10d{word-spacing:0.717312pt;}
.ws4f{word-spacing:0.743874pt;}
.ws11{word-spacing:0.765133pt;}
.ws9f{word-spacing:0.797008pt;}
.ws67{word-spacing:0.850142pt;}
.ws85{word-spacing:0.903276pt;}
.ws71{word-spacing:0.956410pt;}
.ws10e{word-spacing:0.956416pt;}
.ws120{word-spacing:1.004237pt;}
.ws89{word-spacing:1.009543pt;}
.ws118{word-spacing:1.052058pt;}
.ws86{word-spacing:1.062677pt;}
.wsa3{word-spacing:1.115811pt;}
.ws51{word-spacing:1.168945pt;}
.wse9{word-spacing:1.195520pt;}
.ws2f{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws3b{word-spacing:1.275213pt;}
.ws12d{word-spacing:1.291162pt;}
.ws41{word-spacing:1.328347pt;}
.ws33{word-spacing:1.381481pt;}
.ws8a{word-spacing:1.434614pt;}
.ws115{word-spacing:1.434624pt;}
.wsf6{word-spacing:1.530266pt;}
.ws63{word-spacing:1.540882pt;}
.wsee{word-spacing:1.578086pt;}
.ws99{word-spacing:1.594016pt;}
.wsef{word-spacing:1.625907pt;}
.ws77{word-spacing:1.647150pt;}
.ws29{word-spacing:1.700284pt;}
.wse5{word-spacing:1.721549pt;}
.ws48{word-spacing:1.753418pt;}
.wsff{word-spacing:1.759739pt;}
.wsf8{word-spacing:1.769370pt;}
.ws75{word-spacing:1.806551pt;}
.wsfe{word-spacing:1.817190pt;}
.wsb3{word-spacing:1.859685pt;}
.ws53{word-spacing:1.912819pt;}
.ws11f{word-spacing:1.960653pt;}
.ws74{word-spacing:1.965953pt;}
.ws62{word-spacing:2.019087pt;}
.ws61{word-spacing:2.072221pt;}
.ws12a{word-spacing:2.104115pt;}
.ws9b{word-spacing:2.125355pt;}
.ws76{word-spacing:2.178489pt;}
.wsa0{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.wsa1{word-spacing:2.284756pt;}
.ws65{word-spacing:2.337890pt;}
.ws6f{word-spacing:2.391024pt;}
.ws9e{word-spacing:2.444158pt;}
.ws49{word-spacing:2.497292pt;}
.ws94{word-spacing:2.550426pt;}
.ws109{word-spacing:2.582323pt;}
.wscc{word-spacing:2.603559pt;}
.ws39{word-spacing:2.656693pt;}
.ws22{word-spacing:2.687704pt;}
.ws60{word-spacing:2.709827pt;}
.ws79{word-spacing:2.762961pt;}
.ws117{word-spacing:2.773606pt;}
.wsaa{word-spacing:2.816095pt;}
.wsf2{word-spacing:2.821427pt;}
.wsdf{word-spacing:2.862310pt;}
.wsd7{word-spacing:2.863343pt;}
.wsdd{word-spacing:2.864998pt;}
.ws10a{word-spacing:2.865732pt;}
.wsd5{word-spacing:2.866509pt;}
.wsec{word-spacing:2.867277pt;}
.ws10c{word-spacing:2.868787pt;}
.ws50{word-spacing:2.869229pt;}
.wsd6{word-spacing:2.869248pt;}
.ws127{word-spacing:2.964890pt;}
.wsad{word-spacing:2.975497pt;}
.wsda{word-spacing:3.012710pt;}
.ws69{word-spacing:3.028630pt;}
.wsdb{word-spacing:3.060531pt;}
.ws91{word-spacing:3.081764pt;}
.ws110{word-spacing:3.108352pt;}
.ws57{word-spacing:3.134898pt;}
.ws8e{word-spacing:3.177461pt;}
.ws23{word-spacing:3.188032pt;}
.wsfb{word-spacing:3.203994pt;}
.ws42{word-spacing:3.241166pt;}
.ws10b{word-spacing:3.251814pt;}
.ws38{word-spacing:3.294300pt;}
.ws72{word-spacing:3.347434pt;}
.ws4e{word-spacing:3.400567pt;}
.ws4a{word-spacing:3.453701pt;}
.wsfa{word-spacing:3.490918pt;}
.ws78{word-spacing:3.506835pt;}
.ws18{word-spacing:3.538739pt;}
.ws47{word-spacing:3.559969pt;}
.wsac{word-spacing:3.613103pt;}
.ws104{word-spacing:3.634381pt;}
.ws84{word-spacing:3.666237pt;}
.ws98{word-spacing:3.825638pt;}
.ws14{word-spacing:3.873485pt;}
.ws31{word-spacing:3.878772pt;}
.ws122{word-spacing:3.921306pt;}
.ws30{word-spacing:3.931906pt;}
.ws80{word-spacing:3.985040pt;}
.wsfc{word-spacing:4.016947pt;}
.ws97{word-spacing:4.038174pt;}
.wsfd{word-spacing:4.064768pt;}
.ws96{word-spacing:4.091308pt;}
.wsa5{word-spacing:4.144442pt;}
.wsc5{word-spacing:4.197575pt;}
.ws43{word-spacing:4.250709pt;}
.wsc9{word-spacing:4.303843pt;}
.wse6{word-spacing:4.303872pt;}
.wse7{word-spacing:4.351693pt;}
.ws5d{word-spacing:4.356977pt;}
.ws12c{word-spacing:4.399514pt;}
.wsa2{word-spacing:4.410111pt;}
.wsa8{word-spacing:4.463245pt;}
.ws81{word-spacing:4.516379pt;}
.ws8b{word-spacing:4.569513pt;}
.ws10{word-spacing:4.599772pt;}
.ws5b{word-spacing:4.622646pt;}
.wscf{word-spacing:4.675780pt;}
.wsd2{word-spacing:4.728914pt;}
.ws95{word-spacing:4.782048pt;}
.wsb4{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws9a{word-spacing:4.888316pt;}
.wsd0{word-spacing:4.994583pt;}
.ws87{word-spacing:5.100851pt;}
.ws88{word-spacing:5.153985pt;}
.wsa4{word-spacing:5.207119pt;}
.ws7a{word-spacing:5.366521pt;}
.ws5e{word-spacing:5.525922pt;}
.ws24{word-spacing:5.579056pt;}
.ws6b{word-spacing:5.632190pt;}
.ws12e{word-spacing:5.642854pt;}
.ws9d{word-spacing:5.844725pt;}
.ws6a{word-spacing:5.897859pt;}
.wsca{word-spacing:5.950993pt;}
.ws59{word-spacing:6.004127pt;}
.ws5a{word-spacing:6.057261pt;}
.wsa9{word-spacing:6.110395pt;}
.ws101{word-spacing:6.168883pt;}
.wscb{word-spacing:6.269796pt;}
.wsd1{word-spacing:6.322930pt;}
.ws34{word-spacing:6.376064pt;}
.ws8d{word-spacing:6.429198pt;}
.wsab{word-spacing:6.482332pt;}
.ws7b{word-spacing:6.535466pt;}
.ws100{word-spacing:6.599270pt;}
.wsc6{word-spacing:6.694867pt;}
.ws40{word-spacing:7.385607pt;}
.wsc2{word-spacing:7.438741pt;}
.ws6c{word-spacing:7.491875pt;}
.wsce{word-spacing:8.182615pt;}
.ws90{word-spacing:8.235749pt;}
.ws6{word-spacing:8.740496pt;}
.wse0{word-spacing:8.799027pt;}
.ws7{word-spacing:10.525789pt;}
.wse8{word-spacing:11.716096pt;}
.ws4{word-spacing:13.761632pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
._1d{margin-left:-20.359685pt;}
._2c{margin-left:-18.590434pt;}
._22{margin-left:-13.283467pt;}
._5{margin-left:-10.616218pt;}
._2b{margin-left:-7.146605pt;}
._a{margin-left:-5.897859pt;}
._c{margin-left:-4.675792pt;}
._0{margin-left:-3.719360pt;}
._b{margin-left:-2.708162pt;}
._4{margin-left:-1.301776pt;}
._25{width:1.175680pt;}
._7{width:2.666108pt;}
._24{width:3.847680pt;}
._26{width:5.290560pt;}
._27{width:6.769600pt;}
._28{width:8.326432pt;}
._d{width:9.516339pt;}
._1{width:10.860531pt;}
._2{width:12.013533pt;}
._12{width:13.177232pt;}
._11{width:14.218781pt;}
._10{width:15.398298pt;}
._e{width:16.832922pt;}
._16{width:18.129095pt;}
._19{width:19.133861pt;}
._21{width:20.164299pt;}
._15{width:21.439511pt;}
._3{width:22.502128pt;}
._1a{width:23.485169pt;}
._1b{width:25.291721pt;}
._f{width:26.875290pt;}
._1c{width:27.947251pt;}
._6{width:29.648896pt;}
._29{width:30.546304pt;}
._1e{width:31.455242pt;}
._18{width:32.969561pt;}
._17{width:34.510443pt;}
._20{width:36.688931pt;}
._2a{width:39.265927pt;}
._8{width:48.358852pt;}
._9{width:61.609825pt;}
._13{width:783.363589pt;}
._23{width:1849.942400pt;}
._1f{width:2233.602667pt;}
._14{width:2254.856000pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsc{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y11e{bottom:-538.778667pt;}
.y14d{bottom:-471.578667pt;}
.y14c{bottom:-438.458667pt;}
.y14b{bottom:-421.418667pt;}
.y14a{bottom:-404.298667pt;}
.y149{bottom:-387.178667pt;}
.y148{bottom:-370.138667pt;}
.y147{bottom:-352.992000pt;}
.y146{bottom:-335.952000pt;}
.y145{bottom:-314.832000pt;}
.y144{bottom:-281.792000pt;}
.y143{bottom:-264.672000pt;}
.y142{bottom:-247.552000pt;}
.y141{bottom:-230.512000pt;}
.y140{bottom:-213.392000pt;}
.y13f{bottom:-196.272000pt;}
.y13e{bottom:-179.232000pt;}
.y13d{bottom:-158.112000pt;}
.y13c{bottom:-141.072000pt;}
.y13b{bottom:-123.952000pt;}
.y13a{bottom:-102.912000pt;}
.y139{bottom:-85.792000pt;}
.y138{bottom:-68.672000pt;}
.y137{bottom:-51.552000pt;}
.y136{bottom:-34.512000pt;}
.y135{bottom:-17.392000pt;}
.y134{bottom:-0.352000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:8.207950pt;}
.y133{bottom:20.794667pt;}
.y38{bottom:23.914454pt;}
.y66{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y132{bottom:37.914667pt;}
.y131{bottom:54.954667pt;}
.y5{bottom:59.133337pt;}
.y130{bottom:75.994667pt;}
.y4{bottom:86.333337pt;}
.y1a7{bottom:92.625333pt;}
.y170{bottom:92.758667pt;}
.y36{bottom:93.018667pt;}
.y1fe{bottom:103.518667pt;}
.y9c{bottom:105.909333pt;}
.ya1{bottom:106.308000pt;}
.y101{bottom:108.300000pt;}
.y10b{bottom:108.698667pt;}
.y35{bottom:108.920000pt;}
.y12f{bottom:109.114667pt;}
.y1a6{bottom:109.362667pt;}
.y16f{bottom:109.496000pt;}
.y65{bottom:109.933333pt;}
.y1fd{bottom:118.861333pt;}
.y9b{bottom:122.646667pt;}
.ya0{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y34{bottom:124.820000pt;}
.y100{bottom:125.037333pt;}
.y119{bottom:125.038667pt;}
.y10a{bottom:125.436000pt;}
.y1a5{bottom:126.100000pt;}
.y12e{bottom:126.234667pt;}
.y64{bottom:126.670667pt;}
.y1c8{bottom:129.621333pt;}
.y16e{bottom:130.218667pt;}
.y1fc{bottom:134.202667pt;}
.y9a{bottom:139.384000pt;}
.y9f{bottom:139.782667pt;}
.y33{bottom:140.720000pt;}
.yff{bottom:141.774667pt;}
.y109{bottom:142.173333pt;}
.y1a4{bottom:142.837333pt;}
.y12d{bottom:143.354667pt;}
.y63{bottom:143.408000pt;}
.y1c7{bottom:144.962667pt;}
.y1fb{bottom:149.545333pt;}
.yc1{bottom:156.121333pt;}
.y9e{bottom:156.520000pt;}
.y32{bottom:156.621333pt;}
.yfe{bottom:158.512000pt;}
.y108{bottom:158.910667pt;}
.y1a3{bottom:159.574667pt;}
.y99{bottom:160.106667pt;}
.y62{bottom:160.145333pt;}
.y1c6{bottom:160.305333pt;}
.y12c{bottom:160.394667pt;}
.y118{bottom:162.497333pt;}
.y1fa{bottom:164.888000pt;}
.y31{bottom:172.521333pt;}
.yc0{bottom:172.858667pt;}
.y9d{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.yfd{bottom:175.249333pt;}
.y107{bottom:175.648000pt;}
.y1a2{bottom:176.312000pt;}
.y16d{bottom:176.844000pt;}
.y61{bottom:176.882667pt;}
.y12b{bottom:177.514667pt;}
.y1f9{bottom:180.230667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y30{bottom:188.421333pt;}
.ybf{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.y1c5{bottom:190.990667pt;}
.yfc{bottom:191.986667pt;}
.y106{bottom:192.385333pt;}
.y16c{bottom:193.581333pt;}
.y60{bottom:193.620000pt;}
.y12a{bottom:194.554667pt;}
.y1f8{bottom:195.573333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1a1{bottom:199.690667pt;}
.y2f{bottom:204.322667pt;}
.ybe{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yfb{bottom:208.724000pt;}
.y105{bottom:209.122667pt;}
.y16b{bottom:210.318667pt;}
.y5f{bottom:210.357333pt;}
.y1f7{bottom:210.916000pt;}
.y129{bottom:211.674667pt;}
.y1a0{bottom:216.428000pt;}
.y1c4{bottom:221.676000pt;}
.ybd{bottom:223.070667pt;}
.y96{bottom:223.469333pt;}
.yfa{bottom:225.461333pt;}
.y117{bottom:225.860000pt;}
.y1f6{bottom:226.258667pt;}
.y16a{bottom:227.056000pt;}
.y5e{bottom:227.094667pt;}
.y128{bottom:228.794667pt;}
.y104{bottom:229.845333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y19f{bottom:233.165333pt;}
.y1c3{bottom:237.018667pt;}
.ybc{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.y1f5{bottom:241.601333pt;}
.yf9{bottom:242.198667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y103{bottom:243.793333pt;}
.y5d{bottom:243.832000pt;}
.y127{bottom:249.834667pt;}
.y19e{bottom:249.902667pt;}
.y1c2{bottom:252.361333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ybb{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.y116{bottom:258.537333pt;}
.y169{bottom:260.530667pt;}
.yf8{bottom:262.921333pt;}
.y5c{bottom:264.553333pt;}
.y2e{bottom:266.570667pt;}
.y19d{bottom:266.640000pt;}
.y126{bottom:266.954667pt;}
.y1c1{bottom:267.704000pt;}
.y1f4{bottom:272.285333pt;}
.yba{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.y115{bottom:275.274667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y168{bottom:277.268000pt;}
.y2d{bottom:282.470667pt;}
.y1c0{bottom:283.045333pt;}
.y19c{bottom:283.377333pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1f3{bottom:287.628000pt;}
.y125{bottom:287.994667pt;}
.yb9{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.y17e{bottom:290.418667pt;}
.y114{bottom:292.012000pt;}
.yf7{bottom:292.809333pt;}
.y167{bottom:294.005333pt;}
.y2c{bottom:298.370667pt;}
.y1bf{bottom:298.388000pt;}
.y19b{bottom:300.114667pt;}
.y1f2{bottom:302.970667pt;}
.yb8{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.y17d{bottom:307.156000pt;}
.y10{bottom:309.452000pt;}
.yf6{bottom:309.546667pt;}
.y1be{bottom:313.730667pt;}
.y2b{bottom:314.270667pt;}
.y166{bottom:314.726667pt;}
.y19a{bottom:316.852000pt;}
.y1f1{bottom:318.313333pt;}
.y124{bottom:321.114667pt;}
.yb7{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.y17c{bottom:323.893333pt;}
.y113{bottom:324.689333pt;}
.yf5{bottom:326.284000pt;}
.y1bd{bottom:329.073333pt;}
.y5b{bottom:331.353333pt;}
.y199{bottom:333.589333pt;}
.y1f0{bottom:333.656000pt;}
.y2a{bottom:338.141333pt;}
.y123{bottom:338.234667pt;}
.yb6{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.y112{bottom:341.426667pt;}
.yf4{bottom:343.021333pt;}
.yf{bottom:343.809333pt;}
.y1bc{bottom:344.416000pt;}
.y165{bottom:344.614667pt;}
.y5a{bottom:348.649333pt;}
.y1ef{bottom:348.998667pt;}
.y198{bottom:350.326667pt;}
.y29{bottom:354.042667pt;}
.y122{bottom:355.274667pt;}
.yb5{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.y111{bottom:358.164000pt;}
.yf3{bottom:359.758667pt;}
.y164{bottom:361.352000pt;}
.ye{bottom:362.706666pt;}
.y1ee{bottom:364.341333pt;}
.y197{bottom:367.064000pt;}
.y28{bottom:369.942667pt;}
.yb4{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.y1bb{bottom:375.101333pt;}
.yf2{bottom:376.496000pt;}
.y163{bottom:378.089333pt;}
.y1ed{bottom:379.684000pt;}
.y59{bottom:381.884000pt;}
.y196{bottom:383.801333pt;}
.y27{bottom:385.842667pt;}
.y121{bottom:388.421333pt;}
.yb3{bottom:390.442667pt;}
.y1ba{bottom:390.444000pt;}
.y8c{bottom:390.841333pt;}
.yf1{bottom:393.233333pt;}
.y162{bottom:394.826667pt;}
.y1ec{bottom:395.025333pt;}
.y58{bottom:399.180000pt;}
.y195{bottom:400.538667pt;}
.y26{bottom:401.744000pt;}
.y120{bottom:405.541333pt;}
.y1b9{bottom:405.786667pt;}
.yb2{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.yf0{bottom:409.970667pt;}
.y1eb{bottom:410.368000pt;}
.y161{bottom:411.564000pt;}
.y57{bottom:416.474667pt;}
.y194{bottom:417.276000pt;}
.y25{bottom:417.644000pt;}
.y1b8{bottom:421.128000pt;}
.y11f{bottom:422.581333pt;}
.yb1{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.y1ea{bottom:425.710667pt;}
.yef{bottom:426.706667pt;}
.y160{bottom:428.301333pt;}
.y24{bottom:433.544000pt;}
.y56{bottom:433.769333pt;}
.y193{bottom:434.013333pt;}
.y1b7{bottom:436.470667pt;}
.yb0{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.yee{bottom:443.444000pt;}
.y1a8{bottom:444.640000pt;}
.y15f{bottom:445.038667pt;}
.yd{bottom:446.990669pt;}
.y17b{bottom:449.024000pt;}
.y23{bottom:449.445333pt;}
.y192{bottom:450.750667pt;}
.y55{bottom:451.065333pt;}
.y1b6{bottom:451.813333pt;}
.y1e9{bottom:456.396000pt;}
.y110{bottom:456.993333pt;}
.yaf{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.yed{bottom:460.181333pt;}
.yc{bottom:462.990669pt;}
.y15e{bottom:465.761333pt;}
.y1b5{bottom:467.156000pt;}
.y191{bottom:467.488000pt;}
.y54{bottom:468.360000pt;}
.y11d{bottom:471.221333pt;}
.y1e8{bottom:471.738667pt;}
.y10f{bottom:473.730667pt;}
.yae{bottom:474.129333pt;}
.y87{bottom:474.528000pt;}
.yec{bottom:476.918667pt;}
.yb{bottom:478.990666pt;}
.y11c{bottom:479.781333pt;}
.y17a{bottom:482.498667pt;}
.y190{bottom:484.225333pt;}
.y53{bottom:485.656000pt;}
.y1e7{bottom:487.081333pt;}
.y10e{bottom:490.468000pt;}
.yad{bottom:490.866667pt;}
.y86{bottom:491.265333pt;}
.yeb{bottom:493.656000pt;}
.y102{bottom:494.852000pt;}
.ya{bottom:494.990666pt;}
.y15d{bottom:495.649333pt;}
.y1b4{bottom:497.841333pt;}
.y179{bottom:499.236000pt;}
.y18f{bottom:500.962667pt;}
.y1e6{bottom:502.424000pt;}
.y52{bottom:502.950667pt;}
.yac{bottom:507.604000pt;}
.y85{bottom:508.002667pt;}
.yea{bottom:510.393333pt;}
.y10d{bottom:511.190667pt;}
.y15c{bottom:512.386667pt;}
.y1b3{bottom:517.168000pt;}
.y18e{bottom:517.700000pt;}
.y1e5{bottom:517.766667pt;}
.y178{bottom:519.957333pt;}
.y51{bottom:520.245333pt;}
.yab{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.ye9{bottom:527.130667pt;}
.y15b{bottom:529.124000pt;}
.y1e4{bottom:533.108000pt;}
.y18d{bottom:534.437333pt;}
.y50{bottom:537.541333pt;}
.yaa{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.ye8{bottom:543.868000pt;}
.y15a{bottom:545.861333pt;}
.y1b2{bottom:547.056000pt;}
.y1e3{bottom:548.450667pt;}
.y177{bottom:549.845333pt;}
.y18c{bottom:551.174667pt;}
.y4f{bottom:554.836000pt;}
.ya9{bottom:557.816000pt;}
.y82{bottom:558.214667pt;}
.ye7{bottom:560.605333pt;}
.y159{bottom:562.598667pt;}
.y1e2{bottom:563.793333pt;}
.y176{bottom:566.582667pt;}
.y18b{bottom:567.912000pt;}
.y1b1{bottom:570.648000pt;}
.y4e{bottom:572.130667pt;}
.y9{bottom:573.786667pt;}
.ya8{bottom:574.553333pt;}
.y81{bottom:574.952000pt;}
.ye6{bottom:577.342667pt;}
.y1e1{bottom:579.136000pt;}
.y158{bottom:579.336000pt;}
.y175{bottom:583.320000pt;}
.y18a{bottom:584.649333pt;}
.y1b0{bottom:586.269333pt;}
.y4d{bottom:589.426667pt;}
.ya7{bottom:591.290667pt;}
.y80{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.ye5{bottom:594.080000pt;}
.y1e0{bottom:594.478667pt;}
.y157{bottom:596.073333pt;}
.y189{bottom:601.386667pt;}
.y174{bottom:604.042667pt;}
.y4c{bottom:606.721333pt;}
.ya6{bottom:608.028000pt;}
.y7f{bottom:608.426667pt;}
.y1df{bottom:609.821333pt;}
.y1af{bottom:609.861333pt;}
.ye4{bottom:610.817333pt;}
.y10c{bottom:612.013333pt;}
.y156{bottom:616.794667pt;}
.y188{bottom:618.124000pt;}
.y173{bottom:620.780000pt;}
.y4b{bottom:624.017333pt;}
.ya5{bottom:624.765333pt;}
.y7e{bottom:625.164000pt;}
.ye3{bottom:627.554667pt;}
.y1ae{bottom:633.453333pt;}
.y155{bottom:633.532000pt;}
.y187{bottom:634.861333pt;}
.y172{bottom:637.517333pt;}
.y1de{bottom:640.506667pt;}
.y4a{bottom:641.312000pt;}
.ya4{bottom:641.502667pt;}
.y7d{bottom:641.901333pt;}
.ye2{bottom:644.292000pt;}
.y7{bottom:645.598667pt;}
.y154{bottom:650.269333pt;}
.y186{bottom:651.597333pt;}
.y171{bottom:654.254667pt;}
.y1dd{bottom:655.848000pt;}
.y1ad{bottom:657.044000pt;}
.ya3{bottom:658.240000pt;}
.y49{bottom:658.606667pt;}
.y7c{bottom:658.638667pt;}
.ye1{bottom:661.029333pt;}
.y185{bottom:668.334667pt;}
.y3{bottom:668.977329pt;}
.y153{bottom:670.992000pt;}
.y1dc{bottom:671.190667pt;}
.yd0{bottom:674.977333pt;}
.y7b{bottom:675.376000pt;}
.y48{bottom:675.902667pt;}
.ye0{bottom:677.766667pt;}
.ya2{bottom:678.962667pt;}
.y1ac{bottom:680.636000pt;}
.y184{bottom:685.072000pt;}
.y1db{bottom:686.533333pt;}
.y152{bottom:687.729333pt;}
.ycf{bottom:691.714667pt;}
.y7a{bottom:692.113333pt;}
.y47{bottom:693.197333pt;}
.ydf{bottom:694.504000pt;}
.y1ab{bottom:696.257333pt;}
.y183{bottom:701.809333pt;}
.y1da{bottom:701.876000pt;}
.y151{bottom:704.466667pt;}
.yce{bottom:708.452000pt;}
.y79{bottom:708.850667pt;}
.yde{bottom:711.241333pt;}
.y1aa{bottom:711.878667pt;}
.y1d9{bottom:717.218667pt;}
.y182{bottom:718.546667pt;}
.y150{bottom:721.204000pt;}
.ycd{bottom:725.189333pt;}
.y78{bottom:725.588000pt;}
.y46{bottom:727.496000pt;}
.y1a9{bottom:727.500000pt;}
.ydd{bottom:727.978667pt;}
.y1d8{bottom:732.561333pt;}
.y181{bottom:735.284000pt;}
.y14f{bottom:737.941333pt;}
.y45{bottom:741.841333pt;}
.ycc{bottom:741.926667pt;}
.y77{bottom:742.324000pt;}
.ydc{bottom:744.716000pt;}
.y1d7{bottom:747.904000pt;}
.y180{bottom:752.021333pt;}
.y14e{bottom:754.678667pt;}
.ycb{bottom:758.664000pt;}
.y76{bottom:759.061333pt;}
.y44{bottom:760.045333pt;}
.ydb{bottom:761.453333pt;}
.y1d6{bottom:763.246667pt;}
.y11b{bottom:771.416000pt;}
.y43{bottom:774.392000pt;}
.yca{bottom:775.401333pt;}
.y75{bottom:775.798667pt;}
.yda{bottom:778.190667pt;}
.y1d5{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y42{bottom:788.738667pt;}
.yc9{bottom:792.138667pt;}
.y74{bottom:792.536000pt;}
.y1d4{bottom:793.930667pt;}
.yd9{bottom:794.928000pt;}
.y41{bottom:799.226667pt;}
.yc8{bottom:808.874667pt;}
.y73{bottom:809.273333pt;}
.yd8{bottom:811.665333pt;}
.y40{bottom:817.430667pt;}
.y1d3{bottom:824.616000pt;}
.yc7{bottom:825.612000pt;}
.y72{bottom:826.010667pt;}
.y3f{bottom:827.920000pt;}
.yd7{bottom:828.402667pt;}
.y1d2{bottom:839.958667pt;}
.yc6{bottom:842.349333pt;}
.y71{bottom:842.748000pt;}
.yd6{bottom:845.140000pt;}
.y3e{bottom:846.122667pt;}
.y11a{bottom:846.334667pt;}
.y1d1{bottom:855.301333pt;}
.yc5{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.yd5{bottom:861.877333pt;}
.y201{bottom:866.592000pt;}
.y1d0{bottom:870.644000pt;}
.yc4{bottom:875.824000pt;}
.y6f{bottom:876.222667pt;}
.yd4{bottom:878.613333pt;}
.y200{bottom:881.934667pt;}
.y3d{bottom:885.836000pt;}
.y1cf{bottom:885.986667pt;}
.yc3{bottom:892.561333pt;}
.y6e{bottom:892.960000pt;}
.yd3{bottom:895.350667pt;}
.y1ff{bottom:897.277333pt;}
.y1ce{bottom:901.329333pt;}
.y17f{bottom:909.298667pt;}
.y6d{bottom:909.697333pt;}
.yc2{bottom:913.284000pt;}
.yd2{bottom:916.073333pt;}
.y1cd{bottom:916.670667pt;}
.y3c{bottom:921.320000pt;}
.y6c{bottom:926.434667pt;}
.yd1{bottom:930.021333pt;}
.y1cc{bottom:932.013333pt;}
.y6b{bottom:943.172000pt;}
.y3b{bottom:946.425333pt;}
.y1cb{bottom:947.356000pt;}
.y6a{bottom:959.909333pt;}
.y1ca{bottom:962.698667pt;}
.y3a{bottom:971.530667pt;}
.y69{bottom:976.646667pt;}
.y1c9{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y37{bottom:1010.186667pt;}
.y67{bottom:1046.810667pt;}
.h16{height:8.290667pt;}
.h10{height:23.209028pt;}
.h1d{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h11{height:30.945242pt;}
.h18{height:31.067969pt;}
.h15{height:31.200285pt;}
.h17{height:31.338125pt;}
.h12{height:34.813542pt;}
.h1e{height:35.100467pt;}
.h1f{height:35.101542pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.hd{height:39.000258pt;}
.h1b{height:39.010156pt;}
.h1a{height:39.166719pt;}
.h19{height:39.349375pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.hf{height:48.481423pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.h1c{height:54.927899pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:5.454667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-174.326667pt;}
.x0{left:0.000000pt;}
.xe{left:27.860000pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.xf{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xb{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x8{left:239.924000pt;}
.xa{left:250.204000pt;}
.xc{left:251.944000pt;}
.x10{left:385.030667pt;}
.x3{left:404.408000pt;}
}




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