
    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_b49517e79cb5154fbd39b053.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_9d8a712888a9b25d16266c3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_c209fc851948f2d0087e9a91.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_6b891af64c2ef5c95e9fe137.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_e4b9d67736e8038c6d322e78.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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_996fae409286b993ae5c5b52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.632000;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_9d30e8350c295698b8131b65.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.161133;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_3b81e24a0408a5aa12f2df8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_bc2153d3e3d8356e4286b073.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_1f4aa1ef51087a39e74a79b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.765137;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_f00d8d1cd99270b5ab7cfcb3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;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_9ca4ccb3256497df48f30101.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.845000;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_7694ca0d246b591a0484e06b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850000;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;}
.m3{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);}
.m28{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m18{transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m13{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);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.mf{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);}
.m19{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);}
.m1e{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);}
.m4{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);}
.m16{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);}
.m2{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);}
.m14{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);}
.m22{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);}
.m29{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);}
.m1d{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m1a{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.me{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);}
.m11{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);}
.m7{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);}
.m12{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);}
.m9{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);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m26{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);}
.m1c{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mb{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.838000px;}
.v1{vertical-align:32.874000px;}
.v3{vertical-align:65.754000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:10.458420px;}
.ls1{letter-spacing:13.253604px;}
.ls2{letter-spacing:13.288242px;}
.ls4{letter-spacing:16.557744px;}
.ls6{letter-spacing:22.031388px;}
.ls7{letter-spacing:23.915388px;}
.ls5{letter-spacing:118.960860px;}
.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;}
}
.ws1{word-spacing:-14.944500px;}
.ws36{word-spacing:-13.449000px;}
.wsb4{word-spacing:-4.303680px;}
.ws7c{word-spacing:-3.980904px;}
.ws1e{word-spacing:-3.825600px;}
.ws32{word-spacing:-3.819516px;}
.ws30{word-spacing:-3.658128px;}
.ws5b{word-spacing:-3.550536px;}
.wsaa{word-spacing:-3.442944px;}
.ws75{word-spacing:-3.227760px;}
.wsa8{word-spacing:-3.120168px;}
.ws82{word-spacing:-3.066372px;}
.ws4e{word-spacing:-2.958780px;}
.ws7b{word-spacing:-2.904984px;}
.ws3f{word-spacing:-2.743596px;}
.wsac{word-spacing:-2.582208px;}
.ws9b{word-spacing:-2.474616px;}
.wsda{word-spacing:-2.386116px;}
.wsdc{word-spacing:-2.385108px;}
.ws6b{word-spacing:-2.367024px;}
.ws74{word-spacing:-2.313228px;}
.ws56{word-spacing:-2.259432px;}
.ws45{word-spacing:-2.151840px;}
.ws4b{word-spacing:-2.098044px;}
.wsd4{word-spacing:-2.050356px;}
.ws33{word-spacing:-1.990452px;}
.ws6c{word-spacing:-1.882860px;}
.wsc6{word-spacing:-1.799292px;}
.ws49{word-spacing:-1.721472px;}
.wsdf{word-spacing:-1.673760px;}
.ws55{word-spacing:-1.667676px;}
.wsb2{word-spacing:-1.613880px;}
.ws6d{word-spacing:-1.560084px;}
.wsd1{word-spacing:-1.548228px;}
.ws67{word-spacing:-1.452492px;}
.wsba{word-spacing:-1.344900px;}
.wsb7{word-spacing:-1.291104px;}
.ws2c{word-spacing:-1.237308px;}
.wsc9{word-spacing:-1.213476px;}
.ws40{word-spacing:-1.129716px;}
.ws6e{word-spacing:-1.075920px;}
.wsc4{word-spacing:-1.037160px;}
.ws6f{word-spacing:-1.022124px;}
.wsa6{word-spacing:-0.968328px;}
.ws3d{word-spacing:-0.914532px;}
.ws77{word-spacing:-0.860736px;}
.wsca{word-spacing:-0.836880px;}
.ws5a{word-spacing:-0.699348px;}
.wsb6{word-spacing:-0.537960px;}
.ws78{word-spacing:-0.484164px;}
.ws11{word-spacing:-0.460200px;}
.wsb5{word-spacing:-0.376572px;}
.wsb8{word-spacing:-0.322776px;}
.ws63{word-spacing:-0.291204px;}
.ws37{word-spacing:-0.268980px;}
.wsc{word-spacing:-0.215399px;}
.ws34{word-spacing:-0.215184px;}
.ws3a{word-spacing:-0.161388px;}
.ws3c{word-spacing:-0.148596px;}
.wsbe{word-spacing:-0.125532px;}
.ws29{word-spacing:-0.107592px;}
.ws14{word-spacing:-0.107431px;}
.wsbd{word-spacing:-0.083688px;}
.ws1c{word-spacing:-0.065454px;}
.ws1b{word-spacing:-0.053796px;}
.ws22{word-spacing:-0.047820px;}
.wsbc{word-spacing:-0.041844px;}
.ws0{word-spacing:0.000000px;}
.wsd7{word-spacing:0.041844px;}
.wsf{word-spacing:0.053419px;}
.ws2b{word-spacing:0.053796px;}
.wsc7{word-spacing:0.083688px;}
.ws4{word-spacing:0.107377px;}
.ws2e{word-spacing:0.107592px;}
.wsc1{word-spacing:0.125532px;}
.ws15{word-spacing:0.161388px;}
.wsd9{word-spacing:0.167376px;}
.ws4f{word-spacing:0.215184px;}
.ws5{word-spacing:0.215399px;}
.ws6{word-spacing:0.268819px;}
.ws2f{word-spacing:0.268980px;}
.ws2d{word-spacing:0.322776px;}
.ws54{word-spacing:0.430368px;}
.wscf{word-spacing:0.543972px;}
.ws3e{word-spacing:0.591756px;}
.ws5c{word-spacing:0.645552px;}
.ws10{word-spacing:0.645606px;}
.ws20{word-spacing:0.669480px;}
.wsad{word-spacing:0.699348px;}
.wsd2{word-spacing:0.741648px;}
.ws43{word-spacing:0.806940px;}
.ws58{word-spacing:0.860736px;}
.wsde{word-spacing:0.920568px;}
.ws50{word-spacing:0.968328px;}
.ws3{word-spacing:1.021801px;}
.ws80{word-spacing:1.129716px;}
.ws8{word-spacing:1.183512px;}
.wsb0{word-spacing:1.237308px;}
.wsdd{word-spacing:1.297164px;}
.ws72{word-spacing:1.344900px;}
.ws4a{word-spacing:1.452492px;}
.ws42{word-spacing:1.613880px;}
.wscb{word-spacing:1.673760px;}
.ws47{word-spacing:1.775268px;}
.ws57{word-spacing:2.151840px;}
.wsce{word-spacing:2.259576px;}
.ws16{word-spacing:2.366970px;}
.wsbb{word-spacing:2.367024px;}
.ws70{word-spacing:2.474616px;}
.ws85{word-spacing:2.528412px;}
.ws96{word-spacing:2.582208px;}
.wsa9{word-spacing:2.689800px;}
.wse2{word-spacing:2.719860px;}
.ws5d{word-spacing:2.743596px;}
.ws87{word-spacing:2.797392px;}
.wsab{word-spacing:2.904984px;}
.wse0{word-spacing:2.911884px;}
.wsc3{word-spacing:2.970924px;}
.ws39{word-spacing:3.120168px;}
.ws68{word-spacing:3.173964px;}
.ws88{word-spacing:3.281556px;}
.ws9{word-spacing:3.389148px;}
.wsd6{word-spacing:3.514896px;}
.ws48{word-spacing:3.604332px;}
.ws76{word-spacing:3.658128px;}
.wsaf{word-spacing:3.765720px;}
.ws41{word-spacing:3.819516px;}
.ws59{word-spacing:3.873312px;}
.ws17{word-spacing:3.927000px;}
.ws7{word-spacing:3.981012px;}
.wsa{word-spacing:4.034377px;}
.ws52{word-spacing:4.088496px;}
.ws51{word-spacing:4.142292px;}
.ws44{word-spacing:4.196088px;}
.wscd{word-spacing:4.435464px;}
.ws71{word-spacing:4.465068px;}
.ws84{word-spacing:4.518864px;}
.ws31{word-spacing:4.572660px;}
.wsb{word-spacing:4.680575px;}
.ws7a{word-spacing:4.734048px;}
.ws35{word-spacing:4.949232px;}
.wse{word-spacing:5.002813px;}
.wsd{word-spacing:5.164793px;}
.ws13{word-spacing:5.433611px;}
.ws79{word-spacing:5.487192px;}
.ws21{word-spacing:5.499300px;}
.wsd5{word-spacing:5.648940px;}
.ws38{word-spacing:5.809968px;}
.ws28{word-spacing:6.294132px;}
.ws46{word-spacing:6.347928px;}
.ws25{word-spacing:6.599160px;}
.ws1f{word-spacing:6.790201px;}
.ws2{word-spacing:7.316417px;}
.wsdb{word-spacing:8.034048px;}
.wsd3{word-spacing:8.368800px;}
.wsa7{word-spacing:8.445972px;}
.wsb3{word-spacing:9.091524px;}
.wsc5{word-spacing:9.414900px;}
.wsa4{word-spacing:9.521892px;}
.ws99{word-spacing:10.221240px;}
.ws81{word-spacing:10.275036px;}
.wsbf{word-spacing:10.293624px;}
.ws91{word-spacing:10.364364px;}
.ws12{word-spacing:10.419156px;}
.wsd8{word-spacing:10.461000px;}
.wsc8{word-spacing:10.502844px;}
.wsc2{word-spacing:10.544688px;}
.ws4d{word-spacing:10.596732px;}
.ws9a{word-spacing:10.928364px;}
.wsd0{word-spacing:10.963128px;}
.ws97{word-spacing:10.974384px;}
.ws4c{word-spacing:11.297160px;}
.wsa1{word-spacing:11.684364px;}
.ws1d{word-spacing:11.907180px;}
.ws9d{word-spacing:11.996508px;}
.wscc{word-spacing:12.092916px;}
.wsa5{word-spacing:12.422364px;}
.wsb1{word-spacing:12.426876px;}
.ws65{word-spacing:13.072428px;}
.ws1a{word-spacing:13.179805px;}
.ws19{word-spacing:13.180020px;}
.ws98{word-spacing:13.232364px;}
.ws89{word-spacing:13.233816px;}
.ws9f{word-spacing:13.262364px;}
.ws9e{word-spacing:13.268364px;}
.ws3b{word-spacing:13.287612px;}
.wse1{word-spacing:13.348236px;}
.ws26{word-spacing:13.395204px;}
.wsae{word-spacing:13.398204px;}
.ws8b{word-spacing:13.400988px;}
.ws8c{word-spacing:13.403148px;}
.wsa2{word-spacing:13.442364px;}
.ws2a{word-spacing:13.449000px;}
.wsa0{word-spacing:13.478364px;}
.ws7f{word-spacing:13.502796px;}
.wsa3{word-spacing:13.556364px;}
.ws69{word-spacing:13.556592px;}
.ws92{word-spacing:13.591008px;}
.ws73{word-spacing:13.610388px;}
.ws6a{word-spacing:14.229420px;}
.wsc0{word-spacing:15.063840px;}
.ws66{word-spacing:15.346740px;}
.wsb9{word-spacing:15.923616px;}
.ws95{word-spacing:15.977412px;}
.ws64{word-spacing:16.168392px;}
.ws86{word-spacing:16.192596px;}
.ws18{word-spacing:16.298046px;}
.ws83{word-spacing:17.914068px;}
.ws90{word-spacing:18.021660px;}
.ws23{word-spacing:18.075960px;}
.ws24{word-spacing:18.506340px;}
.ws8e{word-spacing:23.939220px;}
.ws9c{word-spacing:25.337916px;}
.ws8f{word-spacing:31.363068px;}
.ws94{word-spacing:34.321848px;}
.ws8d{word-spacing:37.460364px;}
.ws93{word-spacing:47.852364px;}
.ws5e{word-spacing:48.093624px;}
.ws27{word-spacing:65.388546px;}
.ws62{word-spacing:81.985104px;}
.ws60{word-spacing:106.300896px;}
.ws5f{word-spacing:129.648360px;}
.ws61{word-spacing:186.276936px;}
.ws53{word-spacing:289.864324px;}
.ws7d{word-spacing:448.318500px;}
.ws7e{word-spacing:449.868600px;}
.ws8a{word-spacing:1287.983832px;}
._2{margin-left:-8.263200px;}
._2a{margin-left:-4.841640px;}
._1{margin-left:-3.511860px;}
._7{margin-left:-2.130900px;}
._4{margin-left:-1.076004px;}
._3{width:1.001184px;}
._0{width:2.478960px;}
._9{width:3.658128px;}
._29{width:5.661612px;}
._38{width:8.499768px;}
._40{width:9.701520px;}
._3c{width:11.135772px;}
._39{width:12.588264px;}
._6{width:14.794223px;}
._3e{width:15.887904px;}
._5{width:17.105245px;}
._42{width:19.939260px;}
._44{width:20.963772px;}
._3d{width:23.892924px;}
._3f{width:25.563540px;}
._43{width:28.157868px;}
._41{width:32.094348px;}
._3a{width:39.934464px;}
._33{width:45.090312px;}
._e{width:59.821152px;}
._2b{width:65.454000px;}
._d{width:71.979048px;}
._27{width:76.605504px;}
._b{width:79.241508px;}
._26{width:88.870992px;}
._1c{width:89.893116px;}
._c{width:91.022832px;}
._32{width:96.617616px;}
._23{width:98.554272px;}
._17{width:103.342116px;}
._1b{width:108.506532px;}
._1f{width:111.088740px;}
._24{width:120.637368px;}
._21{width:123.569412px;}
._19{width:129.648360px;}
._1d{width:133.090152px;}
._28{width:138.125184px;}
._37{width:140.299968px;}
._11{width:142.182828px;}
._14{width:145.141608px;}
._30{width:159.282744px;}
._35{width:165.046128px;}
._12{width:175.859124px;}
._34{width:177.763092px;}
._36{width:190.922004px;}
._25{width:212.637852px;}
._13{width:222.392664px;}
._2e{width:223.854215px;}
._2d{width:227.932710px;}
._1e{width:231.000024px;}
._15{width:237.186564px;}
._22{width:249.419196px;}
._2f{width:258.763397px;}
._18{width:286.793424px;}
._a{width:295.232448px;}
._f{width:309.327000px;}
._10{width:322.991184px;}
._1a{width:347.086824px;}
._20{width:371.489268px;}
._31{width:377.809308px;}
._3b{width:381.838536px;}
._16{width:399.273912px;}
._2c{width:731.977056px;}
._8{width:1821.870912px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:20.455149px;}
.fs8{font-size:33.753673px;}
.fs5{font-size:41.844000px;}
.fs6{font-size:47.820000px;}
.fs4{font-size:53.796000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.778000px;}
.fs3{font-size:65.454000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.322500px;}
.yb7{bottom:5.307520px;}
.ya1{bottom:8.758103px;}
.yb6{bottom:10.421307px;}
.yb5{bottom:15.535094px;}
.ya0{bottom:17.196521px;}
.y9f{bottom:25.634939px;}
.y42{bottom:47.869906px;}
.yda{bottom:126.978000px;}
.y2f{bottom:126.979500px;}
.y2e{bottom:138.934500px;}
.y41{bottom:141.922500px;}
.y77{bottom:143.416500px;}
.y18d{bottom:143.914500px;}
.y2d{bottom:150.889500px;}
.y185{bottom:152.341500px;}
.y40{bottom:156.867000px;}
.y76{bottom:159.855000px;}
.y18c{bottom:160.353000px;}
.y9a{bottom:163.965000px;}
.y2c{bottom:164.040000px;}
.y184{bottom:168.780000px;}
.y3f{bottom:171.810000px;}
.y75{bottom:176.293500px;}
.y18b{bottom:176.791500px;}
.y2b{bottom:177.190500px;}
.y99{bottom:183.393000px;}
.y183{bottom:185.218500px;}
.y3e{bottom:186.754500px;}
.y74{bottom:192.732000px;}
.y18a{bottom:193.230000px;}
.yd9{bottom:196.842000px;}
.y1aa{bottom:198.141000px;}
.y182{bottom:201.657000px;}
.y3d{bottom:201.699000px;}
.y73{bottom:209.170500px;}
.y189{bottom:209.668500px;}
.yf7{bottom:213.280500px;}
.y1a9{bottom:214.579500px;}
.y3c{bottom:216.642000px;}
.y181{bottom:218.095500px;}
.y98{bottom:218.163000px;}
.y72{bottom:225.609000px;}
.y188{bottom:226.105500px;}
.y1a8{bottom:231.018000px;}
.y3b{bottom:231.586500px;}
.y13e{bottom:231.927000px;}
.yd8{bottom:232.143000px;}
.y180{bottom:234.534000px;}
.y97{bottom:234.601500px;}
.y71{bottom:242.047500px;}
.y187{bottom:242.544000px;}
.y2a{bottom:244.435500px;}
.y1a7{bottom:247.456500px;}
.y13d{bottom:248.365500px;}
.yd7{bottom:248.581500px;}
.y17f{bottom:250.972500px;}
.y96{bottom:251.040000px;}
.yf6{bottom:251.226000px;}
.y70{bottom:258.486000px;}
.y186{bottom:258.982500px;}
.y29{bottom:260.874000px;}
.y1a6{bottom:263.895000px;}
.y13c{bottom:264.804000px;}
.y95{bottom:267.478500px;}
.yf5{bottom:267.664500px;}
.yd6{bottom:271.309500px;}
.y6f{bottom:274.924500px;}
.y28{bottom:277.312500px;}
.y3a{bottom:279.766500px;}
.y1a5{bottom:280.333500px;}
.y13b{bottom:281.242500px;}
.y94{bottom:283.917000px;}
.yf4{bottom:284.103000px;}
.yd5{bottom:287.748000px;}
.y6e{bottom:291.363000px;}
.y27{bottom:293.751000px;}
.y39{bottom:296.205000px;}
.y1a4{bottom:296.772000px;}
.y13a{bottom:297.681000px;}
.y93{bottom:300.355500px;}
.yf3{bottom:300.541500px;}
.y17e{bottom:304.008000px;}
.y178{bottom:304.129500px;}
.yd4{bottom:304.185000px;}
.y6d{bottom:307.800000px;}
.y26{bottom:310.189500px;}
.y1a3{bottom:313.210500px;}
.y139{bottom:314.119500px;}
.y38{bottom:316.753500px;}
.y92{bottom:316.794000px;}
.yf2{bottom:316.980000px;}
.y17d{bottom:320.446500px;}
.y177{bottom:320.568000px;}
.yd3{bottom:320.623500px;}
.y1cf{bottom:324.238500px;}
.y25{bottom:326.628000px;}
.y1a2{bottom:329.649000px;}
.y138{bottom:330.558000px;}
.y6c{bottom:331.795500px;}
.y91{bottom:333.232500px;}
.yf1{bottom:333.418500px;}
.y17c{bottom:336.885000px;}
.y176{bottom:337.006500px;}
.y1ce{bottom:340.677000px;}
.y24{bottom:343.066500px;}
.yd2{bottom:343.351500px;}
.y1a1{bottom:346.086000px;}
.y137{bottom:346.996500px;}
.y90{bottom:349.671000px;}
.yf0{bottom:349.857000px;}
.y11d{bottom:350.943000px;}
.y17b{bottom:353.323500px;}
.y175{bottom:353.445000px;}
.y6b{bottom:355.791000px;}
.y1cd{bottom:357.115500px;}
.y23{bottom:359.505000px;}
.yd1{bottom:359.790000px;}
.y1a0{bottom:362.524500px;}
.y37{bottom:362.787000px;}
.y136{bottom:363.435000px;}
.y8f{bottom:366.108000px;}
.yef{bottom:366.295500px;}
.y11c{bottom:367.381500px;}
.y17a{bottom:369.762000px;}
.y174{bottom:369.883500px;}
.y1cc{bottom:373.554000px;}
.y22{bottom:375.942000px;}
.y19f{bottom:378.963000px;}
.y36{bottom:379.224000px;}
.y6a{bottom:379.786500px;}
.y135{bottom:379.873500px;}
.yd0{bottom:380.338500px;}
.yee{bottom:382.734000px;}
.y11b{bottom:383.820000px;}
.y179{bottom:386.200500px;}
.y173{bottom:386.322000px;}
.y8e{bottom:386.656500px;}
.y21{bottom:392.380500px;}
.y1cb{bottom:394.102500px;}
.y19e{bottom:395.401500px;}
.y69{bottom:396.225000px;}
.yed{bottom:399.172500px;}
.y134{bottom:399.409500px;}
.y35{bottom:399.772500px;}
.y11a{bottom:404.367000px;}
.y20{bottom:408.819000px;}
.y19d{bottom:411.840000px;}
.y68{bottom:412.662000px;}
.yec{bottom:415.609500px;}
.ycf{bottom:415.639500px;}
.y133{bottom:415.848000px;}
.y8d{bottom:421.428000px;}
.y1f{bottom:425.257500px;}
.y19c{bottom:428.278500px;}
.y67{bottom:429.100500px;}
.yeb{bottom:432.048000px;}
.yce{bottom:432.078000px;}
.y132{bottom:432.286500px;}
.y1ca{bottom:433.773000px;}
.y8c{bottom:437.866500px;}
.y16c{bottom:439.444500px;}
.y1e{bottom:441.696000px;}
.y19b{bottom:444.717000px;}
.y66{bottom:445.539000px;}
.y34{bottom:445.806000px;}
.y172{bottom:447.664500px;}
.yea{bottom:448.486500px;}
.ycd{bottom:448.516500px;}
.y131{bottom:448.725000px;}
.y1c9{bottom:450.211500px;}
.y8b{bottom:454.305000px;}
.y16b{bottom:455.883000px;}
.y1d{bottom:458.134500px;}
.y119{bottom:460.878000px;}
.y19a{bottom:461.155500px;}
.y65{bottom:461.977500px;}
.y33{bottom:462.244500px;}
.y171{bottom:464.103000px;}
.ye9{bottom:464.925000px;}
.ycc{bottom:464.955000px;}
.y130{bottom:465.163500px;}
.y8a{bottom:470.743500px;}
.y16a{bottom:472.321500px;}
.y1c{bottom:474.573000px;}
.y118{bottom:477.316500px;}
.y199{bottom:477.594000px;}
.y64{bottom:478.416000px;}
.y32{bottom:478.683000px;}
.y170{bottom:480.541500px;}
.ye8{bottom:481.363500px;}
.ycb{bottom:481.393500px;}
.y12f{bottom:481.602000px;}
.y89{bottom:487.180500px;}
.y169{bottom:488.760000px;}
.y1b{bottom:491.011500px;}
.y117{bottom:493.755000px;}
.y198{bottom:494.032500px;}
.y63{bottom:494.854500px;}
.y31{bottom:495.120000px;}
.y16f{bottom:496.980000px;}
.ye7{bottom:497.802000px;}
.yca{bottom:497.832000px;}
.y12e{bottom:498.040500px;}
.y1c8{bottom:500.253000px;}
.y88{bottom:503.619000px;}
.y168{bottom:505.198500px;}
.y1a{bottom:507.450000px;}
.y116{bottom:510.193500px;}
.y62{bottom:511.293000px;}
.y30{bottom:511.558500px;}
.y16e{bottom:513.418500px;}
.yc9{bottom:514.269000px;}
.y12d{bottom:514.479000px;}
.y197{bottom:515.880000px;}
.y1c7{bottom:516.691500px;}
.y87{bottom:520.057500px;}
.y167{bottom:521.637000px;}
.y115{bottom:526.632000px;}
.y61{bottom:527.731500px;}
.y19{bottom:527.997000px;}
.y16d{bottom:529.855500px;}
.yc8{bottom:530.707500px;}
.y12c{bottom:530.917500px;}
.y196{bottom:532.317000px;}
.y86{bottom:536.496000px;}
.y166{bottom:538.075500px;}
.y1c6{bottom:542.643000px;}
.ye6{bottom:542.874000px;}
.y114{bottom:543.070500px;}
.y60{bottom:544.170000px;}
.yc7{bottom:547.146000px;}
.y12b{bottom:547.356000px;}
.y195{bottom:548.755500px;}
.y85{bottom:552.934500px;}
.y18{bottom:556.443000px;}
.ye5{bottom:559.312500px;}
.y113{bottom:559.509000px;}
.y5f{bottom:560.608500px;}
.y1c5{bottom:561.672000px;}
.yc6{bottom:563.584500px;}
.y12a{bottom:563.794500px;}
.y194{bottom:565.194000px;}
.y84{bottom:569.373000px;}
.y17{bottom:574.375500px;}
.y165{bottom:575.091000px;}
.ye2{bottom:575.751000px;}
.y112{bottom:575.947500px;}
.y5e{bottom:577.047000px;}
.yc5{bottom:580.023000px;}
.y129{bottom:580.231500px;}
.y1c4{bottom:580.699500px;}
.y193{bottom:581.632500px;}
.y15d{bottom:583.101000px;}
.y83{bottom:585.811500px;}
.y164{bottom:591.528000px;}
.ye4{bottom:592.189500px;}
.y16{bottom:592.308000px;}
.y111{bottom:592.386000px;}
.y5d{bottom:593.484000px;}
.yc4{bottom:596.461500px;}
.y128{bottom:596.670000px;}
.y192{bottom:598.071000px;}
.y1c3{bottom:599.130000px;}
.y15c{bottom:599.539500px;}
.y82{bottom:606.360000px;}
.y163{bottom:607.966500px;}
.ye3{bottom:608.628000px;}
.y110{bottom:608.823000px;}
.y5c{bottom:609.922500px;}
.y15{bottom:610.240500px;}
.yc3{bottom:612.900000px;}
.y127{bottom:613.108500px;}
.y15b{bottom:615.978000px;}
.y1c2{bottom:618.157500px;}
.y191{bottom:618.619500px;}
.y162{bottom:624.405000px;}
.y10f{bottom:625.261500px;}
.ye1{bottom:625.515000px;}
.y5b{bottom:626.361000px;}
.y14{bottom:628.174500px;}
.yc2{bottom:629.338500px;}
.y126{bottom:629.547000px;}
.y15a{bottom:632.416500px;}
.y1ec{bottom:632.757000px;}
.ye0{bottom:633.733500px;}
.y1c1{bottom:636.586500px;}
.y161{bottom:640.843500px;}
.y20b{bottom:641.050500px;}
.y81{bottom:641.130000px;}
.y5a{bottom:642.799500px;}
.y1eb{bottom:644.712000px;}
.yc1{bottom:645.777000px;}
.y10e{bottom:645.810000px;}
.y13{bottom:646.107000px;}
.y159{bottom:648.855000px;}
.y125{bottom:649.084500px;}
.y190{bottom:653.005500px;}
.y1c0{bottom:655.017000px;}
.y1ea{bottom:656.667000px;}
.y160{bottom:657.282000px;}
.y80{bottom:657.568500px;}
.ydf{bottom:658.839000px;}
.y59{bottom:659.238000px;}
.yc0{bottom:662.215500px;}
.y20a{bottom:664.962000px;}
.y158{bottom:665.293500px;}
.y124{bottom:665.523000px;}
.y1e9{bottom:668.622000px;}
.y18f{bottom:669.444000px;}
.y15f{bottom:673.720500px;}
.y7f{bottom:674.007000px;}
.y1bf{bottom:674.044500px;}
.ydd{bottom:675.277500px;}
.y58{bottom:675.676500px;}
.y209{bottom:676.917000px;}
.ybf{bottom:678.652500px;}
.y12{bottom:679.885500px;}
.y1e8{bottom:680.578500px;}
.y157{bottom:681.730500px;}
.y123{bottom:681.961500px;}
.y18e{bottom:685.882500px;}
.y208{bottom:688.872000px;}
.y15e{bottom:690.159000px;}
.y7e{bottom:690.445500px;}
.yde{bottom:691.716000px;}
.y57{bottom:692.115000px;}
.y1e7{bottom:692.533500px;}
.y1be{bottom:693.072000px;}
.ybe{bottom:695.091000px;}
.y11{bottom:697.819500px;}
.y207{bottom:700.827000px;}
.y10d{bottom:702.321000px;}
.y122{bottom:702.508500px;}
.y1e6{bottom:704.488500px;}
.y56{bottom:708.553500px;}
.ydc{bottom:708.603000px;}
.ybd{bottom:711.529500px;}
.y1bd{bottom:712.101000px;}
.y7d{bottom:712.662000px;}
.y206{bottom:712.782000px;}
.y10{bottom:715.752000px;}
.y1e5{bottom:716.443500px;}
.y10c{bottom:718.759500px;}
.y205{bottom:724.737000px;}
.y55{bottom:724.992000px;}
.y14f{bottom:725.247000px;}
.y156{bottom:726.757500px;}
.ybc{bottom:727.968000px;}
.y1e4{bottom:728.398500px;}
.y7c{bottom:729.100500px;}
.y1bc{bottom:731.128500px;}
.y121{bottom:732.274500px;}
.yf{bottom:733.684500px;}
.y10b{bottom:735.198000px;}
.y204{bottom:736.692000px;}
.y1e3{bottom:740.353500px;}
.y54{bottom:741.430500px;}
.y14e{bottom:741.685500px;}
.y155{bottom:743.194500px;}
.ybb{bottom:744.406500px;}
.y7b{bottom:745.539000px;}
.ydb{bottom:747.844500px;}
.y203{bottom:748.647000px;}
.y120{bottom:748.713000px;}
.y1bb{bottom:749.559000px;}
.ye{bottom:751.617000px;}
.y10a{bottom:751.636500px;}
.y1e2{bottom:752.308500px;}
.y53{bottom:757.867500px;}
.y14d{bottom:758.124000px;}
.y154{bottom:759.633000px;}
.y202{bottom:760.602000px;}
.y7a{bottom:761.977500px;}
.y1e1{bottom:764.263500px;}
.y1ba{bottom:767.988000px;}
.y109{bottom:768.075000px;}
.y11f{bottom:769.186500px;}
.y201{bottom:772.558500px;}
.y52{bottom:774.306000px;}
.y14c{bottom:774.562500px;}
.y153{bottom:776.071500px;}
.y1e0{bottom:776.218500px;}
.y79{bottom:778.416000px;}
.y108{bottom:784.513500px;}
.yd{bottom:785.397000px;}
.yba{bottom:786.697500px;}
.y1b9{bottom:787.015500px;}
.y1df{bottom:788.175000px;}
.y51{bottom:790.744500px;}
.y14b{bottom:791.001000px;}
.y152{bottom:792.510000px;}
.y78{bottom:794.854500px;}
.y200{bottom:796.468500px;}
.y1de{bottom:800.130000px;}
.y107{bottom:800.952000px;}
.yc{bottom:803.329500px;}
.y1b8{bottom:805.446000px;}
.y14a{bottom:807.439500px;}
.y1ff{bottom:808.423500px;}
.y151{bottom:808.948500px;}
.y50{bottom:811.293000px;}
.y1dd{bottom:812.085000px;}
.y106{bottom:817.390500px;}
.y1fe{bottom:820.378500px;}
.yb{bottom:821.262000px;}
.y1b7{bottom:823.876500px;}
.y149{bottom:823.878000px;}
.y1dc{bottom:824.040000px;}
.y150{bottom:825.387000px;}
.yb4{bottom:825.722992px;}
.y1fd{bottom:832.333500px;}
.yb8{bottom:833.194500px;}
.yb3{bottom:833.527500px;}
.y105{bottom:833.827500px;}
.y1db{bottom:835.995000px;}
.ya{bottom:839.194500px;}
.y1b6{bottom:842.904000px;}
.y1fc{bottom:844.288500px;}
.y1da{bottom:847.950000px;}
.y104{bottom:850.266000px;}
.y1fb{bottom:856.243500px;}
.y4f{bottom:857.007000px;}
.y9{bottom:857.127000px;}
.y1b5{bottom:861.931500px;}
.y148{bottom:862.194000px;}
.yac{bottom:862.860008px;}
.y1d9{bottom:864.015000px;}
.y103{bottom:866.704500px;}
.y1fa{bottom:868.198500px;}
.yaf{bottom:869.995500px;}
.yae{bottom:869.997000px;}
.y4e{bottom:873.445500px;}
.y146{bottom:878.632500px;}
.y1f9{bottom:880.155000px;}
.y1b4{bottom:880.959000px;}
.y102{bottom:883.143000px;}
.yad{bottom:886.434000px;}
.y8{bottom:889.375500px;}
.y4d{bottom:889.882500px;}
.y1f8{bottom:892.110000px;}
.y145{bottom:895.069500px;}
.y1d8{bottom:895.471500px;}
.y1b3{bottom:899.389500px;}
.y101{bottom:899.581500px;}
.y1f7{bottom:904.065000px;}
.y4c{bottom:906.321000px;}
.y7{bottom:907.308000px;}
.y144{bottom:911.508000px;}
.y1d7{bottom:911.910000px;}
.yab{bottom:912.568500px;}
.yb0{bottom:916.009506px;}
.y100{bottom:916.020000px;}
.y1b2{bottom:918.417000px;}
.y11e{bottom:918.817500px;}
.ya8{bottom:922.297500px;}
.y4b{bottom:922.759500px;}
.yb2{bottom:923.146500px;}
.y6{bottom:925.240500px;}
.y143{bottom:927.946500px;}
.y1f6{bottom:927.975000px;}
.y1d6{bottom:928.348500px;}
.yaa{bottom:929.007000px;}
.yff{bottom:932.458500px;}
.y1b1{bottom:936.847500px;}
.ya7{bottom:938.736000px;}
.y4a{bottom:939.198000px;}
.yb1{bottom:939.583500px;}
.y1f5{bottom:939.930000px;}
.y5{bottom:943.173000px;}
.y142{bottom:944.385000px;}
.y1d5{bottom:944.787000px;}
.ya9{bottom:945.445500px;}
.yfe{bottom:948.897000px;}
.y1f4{bottom:951.885000px;}
.y1b0{bottom:955.278000px;}
.y49{bottom:955.636500px;}
.y141{bottom:960.823500px;}
.y4{bottom:961.105500px;}
.y1d4{bottom:961.225500px;}
.y1f3{bottom:963.840000px;}
.yfd{bottom:965.335500px;}
.y9e{bottom:969.755997px;}
.y48{bottom:972.075000px;}
.y1af{bottom:974.305500px;}
.y1f2{bottom:975.795000px;}
.ya3{bottom:976.893000px;}
.y147{bottom:977.262000px;}
.y1d3{bottom:977.664000px;}
.y3{bottom:979.039500px;}
.yfc{bottom:981.774000px;}
.yb9{bottom:983.914500px;}
.y1f1{bottom:987.751500px;}
.y47{bottom:988.513500px;}
.y1ae{bottom:992.734500px;}
.ya2{bottom:993.331500px;}
.y1d2{bottom:994.102500px;}
.yfb{bottom:998.211000px;}
.y140{bottom:999.219000px;}
.y1f0{bottom:999.706500px;}
.y1d1{bottom:1010.541000px;}
.y1ad{bottom:1011.165000px;}
.y1ef{bottom:1011.661500px;}
.y46{bottom:1011.723000px;}
.yfa{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y13f{bottom:1015.825500px;}
.ya4{bottom:1022.905495px;}
.y1ee{bottom:1023.616500px;}
.y1d0{bottom:1026.979500px;}
.y9d{bottom:1027.684500px;}
.y9c{bottom:1029.195000px;}
.y1ac{bottom:1029.595500px;}
.ya6{bottom:1030.042500px;}
.yf9{bottom:1031.088000px;}
.y1ed{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y9b{bottom:1045.633500px;}
.ya5{bottom:1046.481000px;}
.yf8{bottom:1047.526500px;}
.y1ab{bottom:1048.026000px;}
.y45{bottom:1050.964500px;}
.y44{bottom:1086.979500px;}
.h15{height:15.341362px;}
.hc{height:16.930755px;}
.h14{height:21.260215px;}
.h12{height:25.315255px;}
.he{height:29.500020px;}
.h7{height:29.625552px;}
.h6{height:30.755340px;}
.h8{height:30.878904px;}
.h1a{height:32.087220px;}
.h1b{height:32.661060px;}
.hb{height:33.856560px;}
.h9{height:34.430400px;}
.h11{height:35.082138px;}
.ha{height:35.147700px;}
.h18{height:36.097116px;}
.h16{height:38.087568px;}
.hf{height:38.733120px;}
.h5{height:39.540060px;}
.h3{height:43.936830px;}
.h4{height:47.126880px;}
.hd{height:48.225586px;}
.h2{height:52.721550px;}
.h1{height:72.096420px;}
.h19{height:72.285120px;}
.h17{height:72.420060px;}
.h10{height:99.252060px;}
.h13{height:105.294060px;}
.h0{height:1188.000000px;}
.w4{width:15.461975px;}
.w3{width:25.514282px;}
.w1{width:31.095000px;}
.w2{width:31.377000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x54{left:2.203142px;}
.x6a{left:79.621500px;}
.x26{left:80.697000px;}
.x3c{left:84.705000px;}
.x36{left:86.952000px;}
.x5a{left:89.571000px;}
.x37{left:92.206500px;}
.x50{left:93.721410px;}
.x2e{left:95.641500px;}
.x6d{left:97.062000px;}
.x38{left:98.461500px;}
.x3d{left:100.474500px;}
.x39{left:103.716000px;}
.x90{left:105.558000px;}
.x14{left:108.220500px;}
.x4f{left:109.944000px;}
.x91{left:111.885000px;}
.x3a{left:116.224500px;}
.x6e{left:117.310500px;}
.x2b{left:121.048500px;}
.x15{left:122.589000px;}
.x69{left:124.311000px;}
.x2d{left:126.616500px;}
.x2c{left:128.149500px;}
.x64{left:130.953000px;}
.x3b{left:133.987500px;}
.x4{left:135.112500px;}
.x67{left:141.583500px;}
.x3{left:145.827000px;}
.x23{left:146.953500px;}
.x6{left:152.947500px;}
.x1{left:154.777500px;}
.x5{left:157.035000px;}
.x7{left:160.128000px;}
.x13{left:170.769000px;}
.x1c{left:172.453500px;}
.x88{left:179.014500px;}
.x89{left:219.012000px;}
.x85{left:229.689000px;}
.x82{left:238.977000px;}
.x40{left:240.190500px;}
.x87{left:247.339500px;}
.x41{left:252.699000px;}
.x8a{left:256.275000px;}
.x2{left:258.909000px;}
.x51{left:262.000680px;}
.x2f{left:266.721000px;}
.x3e{left:270.763500px;}
.x30{left:272.974500px;}
.x31{left:279.276000px;}
.x2a{left:284.922000px;}
.x68{left:287.017500px;}
.x32{left:291.831000px;}
.x3f{left:298.555500px;}
.x6f{left:302.257500px;}
.x33{left:304.339500px;}
.x86{left:311.562000px;}
.x8b{left:313.296000px;}
.x70{left:314.766000px;}
.x8c{left:319.551000px;}
.x53{left:321.794998px;}
.x6b{left:322.806000px;}
.x5f{left:333.237000px;}
.x6c{left:335.314500px;}
.x55{left:350.670000px;}
.xa{left:355.192500px;}
.x8e{left:361.512000px;}
.x79{left:364.074000px;}
.xc{left:365.353500px;}
.xb{left:369.561000px;}
.x1f{left:371.802000px;}
.x77{left:373.120500px;}
.x78{left:379.374000px;}
.xd{left:390.123000px;}
.x9{left:395.608500px;}
.x18{left:398.424000px;}
.x1e{left:400.614000px;}
.x17{left:402.511500px;}
.x19{left:405.604500px;}
.x16{left:407.398500px;}
.x8{left:409.482000px;}
.x1d{left:416.857500px;}
.x92{left:423.039000px;}
.x5b{left:425.225100px;}
.x8d{left:427.617000px;}
.x83{left:430.120500px;}
.x34{left:433.360500px;}
.x84{left:436.375500px;}
.x35{left:439.614000px;}
.x29{left:443.452515px;}
.x8f{left:449.706000px;}
.x60{left:466.995003px;}
.x80{left:471.204000px;}
.x7f{left:475.198500px;}
.x27{left:476.932500px;}
.x7e{left:479.193000px;}
.x56{left:481.877998px;}
.x43{left:489.594000px;}
.x42{left:491.877000px;}
.x61{left:495.870000px;}
.x7b{left:497.181000px;}
.x93{left:500.206500px;}
.x57{left:510.751500px;}
.x4c{left:514.111500px;}
.x94{left:515.149500px;}
.x4d{left:526.630500px;}
.x4e{left:532.884000px;}
.x48{left:538.374000px;}
.x49{left:548.628000px;}
.x65{left:558.157494px;}
.x73{left:559.368000px;}
.x74{left:565.621500px;}
.x52{left:571.354770px;}
.x5c{left:576.858000px;}
.x66{left:581.598000px;}
.x71{left:583.548000px;}
.x5d{left:584.983830px;}
.x7a{left:587.269500px;}
.x7c{left:588.615000px;}
.x5e{left:590.136870px;}
.x7d{left:594.870000px;}
.x21{left:600.669000px;}
.x95{left:604.813500px;}
.x22{left:615.037500px;}
.x81{left:617.385000px;}
.x62{left:632.596504px;}
.x1b{left:634.068000px;}
.xf{left:638.544000px;}
.x25{left:644.125500px;}
.x11{left:645.396000px;}
.x1a{left:647.553000px;}
.x10{left:649.483500px;}
.xe{left:650.496000px;}
.x12{left:652.576500px;}
.x24{left:660.006000px;}
.x63{left:661.470000px;}
.x20{left:664.920000px;}
.x4a{left:668.391000px;}
.x28{left:669.961500px;}
.x4b{left:674.646000px;}
.x72{left:677.908500px;}
.x46{left:682.491000px;}
.x47{left:694.999500px;}
.x58{left:706.249489px;}
.x44{left:715.911000px;}
.x45{left:722.166000px;}
.x59{left:735.124500px;}
.x75{left:807.181500px;}
.x76{left:818.728500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.856000pt;}
.v1{vertical-align:29.221333pt;}
.v3{vertical-align:58.448000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:9.296373pt;}
.ls1{letter-spacing:11.780981pt;}
.ls2{letter-spacing:11.811770pt;}
.ls4{letter-spacing:14.717995pt;}
.ls6{letter-spacing:19.583456pt;}
.ls7{letter-spacing:21.258123pt;}
.ls5{letter-spacing:105.742987pt;}
.ws1{word-spacing:-13.284000pt;}
.ws36{word-spacing:-11.954667pt;}
.wsb4{word-spacing:-3.825493pt;}
.ws7c{word-spacing:-3.538581pt;}
.ws1e{word-spacing:-3.400533pt;}
.ws32{word-spacing:-3.395125pt;}
.ws30{word-spacing:-3.251669pt;}
.ws5b{word-spacing:-3.156032pt;}
.wsaa{word-spacing:-3.060395pt;}
.ws75{word-spacing:-2.869120pt;}
.wsa8{word-spacing:-2.773483pt;}
.ws82{word-spacing:-2.725664pt;}
.ws4e{word-spacing:-2.630027pt;}
.ws7b{word-spacing:-2.582208pt;}
.ws3f{word-spacing:-2.438752pt;}
.wsac{word-spacing:-2.295296pt;}
.ws9b{word-spacing:-2.199659pt;}
.wsda{word-spacing:-2.120992pt;}
.wsdc{word-spacing:-2.120096pt;}
.ws6b{word-spacing:-2.104021pt;}
.ws74{word-spacing:-2.056203pt;}
.ws56{word-spacing:-2.008384pt;}
.ws45{word-spacing:-1.912747pt;}
.ws4b{word-spacing:-1.864928pt;}
.wsd4{word-spacing:-1.822539pt;}
.ws33{word-spacing:-1.769291pt;}
.ws6c{word-spacing:-1.673653pt;}
.wsc6{word-spacing:-1.599371pt;}
.ws49{word-spacing:-1.530197pt;}
.wsdf{word-spacing:-1.487787pt;}
.ws55{word-spacing:-1.482379pt;}
.wsb2{word-spacing:-1.434560pt;}
.ws6d{word-spacing:-1.386741pt;}
.wsd1{word-spacing:-1.376203pt;}
.ws67{word-spacing:-1.291104pt;}
.wsba{word-spacing:-1.195467pt;}
.wsb7{word-spacing:-1.147648pt;}
.ws2c{word-spacing:-1.099829pt;}
.wsc9{word-spacing:-1.078645pt;}
.ws40{word-spacing:-1.004192pt;}
.ws6e{word-spacing:-0.956373pt;}
.wsc4{word-spacing:-0.921920pt;}
.ws6f{word-spacing:-0.908555pt;}
.wsa6{word-spacing:-0.860736pt;}
.ws3d{word-spacing:-0.812917pt;}
.ws77{word-spacing:-0.765099pt;}
.wsca{word-spacing:-0.743893pt;}
.ws5a{word-spacing:-0.621643pt;}
.wsb6{word-spacing:-0.478187pt;}
.ws78{word-spacing:-0.430368pt;}
.ws11{word-spacing:-0.409067pt;}
.wsb5{word-spacing:-0.334731pt;}
.wsb8{word-spacing:-0.286912pt;}
.ws63{word-spacing:-0.258848pt;}
.ws37{word-spacing:-0.239093pt;}
.wsc{word-spacing:-0.191466pt;}
.ws34{word-spacing:-0.191275pt;}
.ws3a{word-spacing:-0.143456pt;}
.ws3c{word-spacing:-0.132085pt;}
.wsbe{word-spacing:-0.111584pt;}
.ws29{word-spacing:-0.095637pt;}
.ws14{word-spacing:-0.095494pt;}
.wsbd{word-spacing:-0.074389pt;}
.ws1c{word-spacing:-0.058181pt;}
.ws1b{word-spacing:-0.047819pt;}
.ws22{word-spacing:-0.042507pt;}
.wsbc{word-spacing:-0.037195pt;}
.ws0{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.037195pt;}
.wsf{word-spacing:0.047484pt;}
.ws2b{word-spacing:0.047819pt;}
.wsc7{word-spacing:0.074389pt;}
.ws4{word-spacing:0.095446pt;}
.ws2e{word-spacing:0.095637pt;}
.wsc1{word-spacing:0.111584pt;}
.ws15{word-spacing:0.143456pt;}
.wsd9{word-spacing:0.148779pt;}
.ws4f{word-spacing:0.191275pt;}
.ws5{word-spacing:0.191466pt;}
.ws6{word-spacing:0.238950pt;}
.ws2f{word-spacing:0.239093pt;}
.ws2d{word-spacing:0.286912pt;}
.ws54{word-spacing:0.382549pt;}
.wscf{word-spacing:0.483531pt;}
.ws3e{word-spacing:0.526005pt;}
.ws5c{word-spacing:0.573824pt;}
.ws10{word-spacing:0.573872pt;}
.ws20{word-spacing:0.595093pt;}
.wsad{word-spacing:0.621643pt;}
.wsd2{word-spacing:0.659243pt;}
.ws43{word-spacing:0.717280pt;}
.ws58{word-spacing:0.765099pt;}
.wsde{word-spacing:0.818283pt;}
.ws50{word-spacing:0.860736pt;}
.ws3{word-spacing:0.908268pt;}
.ws80{word-spacing:1.004192pt;}
.ws8{word-spacing:1.052011pt;}
.wsb0{word-spacing:1.099829pt;}
.wsdd{word-spacing:1.153035pt;}
.ws72{word-spacing:1.195467pt;}
.ws4a{word-spacing:1.291104pt;}
.ws42{word-spacing:1.434560pt;}
.wscb{word-spacing:1.487787pt;}
.ws47{word-spacing:1.578016pt;}
.ws57{word-spacing:1.912747pt;}
.wsce{word-spacing:2.008512pt;}
.ws16{word-spacing:2.103974pt;}
.wsbb{word-spacing:2.104021pt;}
.ws70{word-spacing:2.199659pt;}
.ws85{word-spacing:2.247477pt;}
.ws96{word-spacing:2.295296pt;}
.wsa9{word-spacing:2.390933pt;}
.wse2{word-spacing:2.417653pt;}
.ws5d{word-spacing:2.438752pt;}
.ws87{word-spacing:2.486571pt;}
.wsab{word-spacing:2.582208pt;}
.wse0{word-spacing:2.588341pt;}
.wsc3{word-spacing:2.640821pt;}
.ws39{word-spacing:2.773483pt;}
.ws68{word-spacing:2.821301pt;}
.ws88{word-spacing:2.916939pt;}
.ws9{word-spacing:3.012576pt;}
.wsd6{word-spacing:3.124352pt;}
.ws48{word-spacing:3.203851pt;}
.ws76{word-spacing:3.251669pt;}
.wsaf{word-spacing:3.347307pt;}
.ws41{word-spacing:3.395125pt;}
.ws59{word-spacing:3.442944pt;}
.ws17{word-spacing:3.490667pt;}
.ws7{word-spacing:3.538677pt;}
.wsa{word-spacing:3.586113pt;}
.ws52{word-spacing:3.634219pt;}
.ws51{word-spacing:3.682037pt;}
.ws44{word-spacing:3.729856pt;}
.wscd{word-spacing:3.942635pt;}
.ws71{word-spacing:3.968949pt;}
.ws84{word-spacing:4.016768pt;}
.ws31{word-spacing:4.064587pt;}
.wsb{word-spacing:4.160511pt;}
.ws7a{word-spacing:4.208043pt;}
.ws35{word-spacing:4.399317pt;}
.wse{word-spacing:4.446945pt;}
.wsd{word-spacing:4.590927pt;}
.ws13{word-spacing:4.829877pt;}
.ws79{word-spacing:4.877504pt;}
.ws21{word-spacing:4.888267pt;}
.wsd5{word-spacing:5.021280pt;}
.ws38{word-spacing:5.164416pt;}
.ws28{word-spacing:5.594784pt;}
.ws46{word-spacing:5.642603pt;}
.ws25{word-spacing:5.865920pt;}
.ws1f{word-spacing:6.035734pt;}
.ws2{word-spacing:6.503482pt;}
.wsdb{word-spacing:7.141376pt;}
.wsd3{word-spacing:7.438933pt;}
.wsa7{word-spacing:7.507531pt;}
.wsb3{word-spacing:8.081355pt;}
.wsc5{word-spacing:8.368800pt;}
.wsa4{word-spacing:8.463904pt;}
.ws99{word-spacing:9.085547pt;}
.ws81{word-spacing:9.133365pt;}
.wsbf{word-spacing:9.149888pt;}
.ws91{word-spacing:9.212768pt;}
.ws12{word-spacing:9.261472pt;}
.wsd8{word-spacing:9.298667pt;}
.wsc8{word-spacing:9.335861pt;}
.wsc2{word-spacing:9.373056pt;}
.ws4d{word-spacing:9.419317pt;}
.ws9a{word-spacing:9.714101pt;}
.wsd0{word-spacing:9.745003pt;}
.ws97{word-spacing:9.755008pt;}
.ws4c{word-spacing:10.041920pt;}
.wsa1{word-spacing:10.386101pt;}
.ws1d{word-spacing:10.584160pt;}
.ws9d{word-spacing:10.663563pt;}
.wscc{word-spacing:10.749259pt;}
.wsa5{word-spacing:11.042101pt;}
.wsb1{word-spacing:11.046112pt;}
.ws65{word-spacing:11.619936pt;}
.ws1a{word-spacing:11.715382pt;}
.ws19{word-spacing:11.715573pt;}
.ws98{word-spacing:11.762101pt;}
.ws89{word-spacing:11.763392pt;}
.ws9f{word-spacing:11.788768pt;}
.ws9e{word-spacing:11.794101pt;}
.ws3b{word-spacing:11.811211pt;}
.wse1{word-spacing:11.865099pt;}
.ws26{word-spacing:11.906848pt;}
.wsae{word-spacing:11.909515pt;}
.ws8b{word-spacing:11.911989pt;}
.ws8c{word-spacing:11.913909pt;}
.wsa2{word-spacing:11.948768pt;}
.ws2a{word-spacing:11.954667pt;}
.wsa0{word-spacing:11.980768pt;}
.ws7f{word-spacing:12.002485pt;}
.wsa3{word-spacing:12.050101pt;}
.ws69{word-spacing:12.050304pt;}
.ws92{word-spacing:12.080896pt;}
.ws73{word-spacing:12.098123pt;}
.ws6a{word-spacing:12.648373pt;}
.wsc0{word-spacing:13.390080pt;}
.ws66{word-spacing:13.641547pt;}
.wsb9{word-spacing:14.154325pt;}
.ws95{word-spacing:14.202144pt;}
.ws64{word-spacing:14.371904pt;}
.ws86{word-spacing:14.393419pt;}
.ws18{word-spacing:14.487152pt;}
.ws83{word-spacing:15.923616pt;}
.ws90{word-spacing:16.019253pt;}
.ws23{word-spacing:16.067520pt;}
.ws24{word-spacing:16.450080pt;}
.ws8e{word-spacing:21.279307pt;}
.ws9c{word-spacing:22.522592pt;}
.ws8f{word-spacing:27.878283pt;}
.ws94{word-spacing:30.508309pt;}
.ws8d{word-spacing:33.298101pt;}
.ws93{word-spacing:42.535435pt;}
.ws5e{word-spacing:42.749888pt;}
.ws27{word-spacing:58.123152pt;}
.ws62{word-spacing:72.875648pt;}
.ws60{word-spacing:94.489685pt;}
.ws5f{word-spacing:115.242987pt;}
.ws61{word-spacing:165.579499pt;}
.ws53{word-spacing:257.657177pt;}
.ws7d{word-spacing:398.505333pt;}
.ws7e{word-spacing:399.883200pt;}
.ws8a{word-spacing:1144.874517pt;}
._2{margin-left:-7.345067pt;}
._2a{margin-left:-4.303680pt;}
._1{margin-left:-3.121653pt;}
._7{margin-left:-1.894133pt;}
._4{margin-left:-0.956448pt;}
._3{width:0.889941pt;}
._0{width:2.203520pt;}
._9{width:3.251669pt;}
._29{width:5.032544pt;}
._38{width:7.555349pt;}
._40{width:8.623573pt;}
._3c{width:9.898464pt;}
._39{width:11.189568pt;}
._6{width:13.150420pt;}
._3e{width:14.122581pt;}
._5{width:15.204662pt;}
._42{width:17.723787pt;}
._44{width:18.634464pt;}
._3d{width:21.238155pt;}
._3f{width:22.723147pt;}
._43{width:25.029216pt;}
._41{width:28.528309pt;}
._3a{width:35.497301pt;}
._33{width:40.080277pt;}
._e{width:53.174357pt;}
._2b{width:58.181333pt;}
._d{width:63.981376pt;}
._27{width:68.093781pt;}
._b{width:70.436896pt;}
._26{width:78.996437pt;}
._1c{width:79.904992pt;}
._c{width:80.909184pt;}
._32{width:85.882325pt;}
._23{width:87.603797pt;}
._17{width:91.859659pt;}
._1b{width:96.450251pt;}
._1f{width:98.745547pt;}
._24{width:107.233216pt;}
._21{width:109.839477pt;}
._19{width:115.242987pt;}
._1d{width:118.302357pt;}
._28{width:122.777941pt;}
._37{width:124.711083pt;}
._11{width:126.384736pt;}
._14{width:129.014763pt;}
._30{width:141.584661pt;}
._35{width:146.707669pt;}
._12{width:156.319221pt;}
._34{width:158.011637pt;}
._36{width:169.708448pt;}
._25{width:189.011424pt;}
._13{width:197.682368pt;}
._2e{width:198.981525pt;}
._2d{width:202.606853pt;}
._1e{width:205.333355pt;}
._15{width:210.832501pt;}
._22{width:221.705952pt;}
._2f{width:230.011908pt;}
._18{width:254.927488pt;}
._a{width:262.428843pt;}
._f{width:274.957333pt;}
._10{width:287.103275pt;}
._1a{width:308.521621pt;}
._20{width:330.212683pt;}
._31{width:335.830496pt;}
._3b{width:339.412032pt;}
._16{width:354.910144pt;}
._2c{width:650.646272pt;}
._8{width:1619.440811pt;}
.fs9{font-size:18.182355pt;}
.fs8{font-size:30.003265pt;}
.fs5{font-size:37.194667pt;}
.fs6{font-size:42.506667pt;}
.fs4{font-size:47.818667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.136000pt;}
.fs3{font-size:58.181333pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.953333pt;}
.yb7{bottom:4.717796pt;}
.ya1{bottom:7.784980pt;}
.yb6{bottom:9.263384pt;}
.yb5{bottom:13.808973pt;}
.ya0{bottom:15.285797pt;}
.y9f{bottom:22.786613pt;}
.y42{bottom:42.551027pt;}
.yda{bottom:112.869333pt;}
.y2f{bottom:112.870667pt;}
.y2e{bottom:123.497333pt;}
.y41{bottom:126.153333pt;}
.y77{bottom:127.481333pt;}
.y18d{bottom:127.924000pt;}
.y2d{bottom:134.124000pt;}
.y185{bottom:135.414667pt;}
.y40{bottom:139.437333pt;}
.y76{bottom:142.093333pt;}
.y18c{bottom:142.536000pt;}
.y9a{bottom:145.746667pt;}
.y2c{bottom:145.813333pt;}
.y184{bottom:150.026667pt;}
.y3f{bottom:152.720000pt;}
.y75{bottom:156.705333pt;}
.y18b{bottom:157.148000pt;}
.y2b{bottom:157.502667pt;}
.y99{bottom:163.016000pt;}
.y183{bottom:164.638667pt;}
.y3e{bottom:166.004000pt;}
.y74{bottom:171.317333pt;}
.y18a{bottom:171.760000pt;}
.yd9{bottom:174.970667pt;}
.y1aa{bottom:176.125333pt;}
.y182{bottom:179.250667pt;}
.y3d{bottom:179.288000pt;}
.y73{bottom:185.929333pt;}
.y189{bottom:186.372000pt;}
.yf7{bottom:189.582667pt;}
.y1a9{bottom:190.737333pt;}
.y3c{bottom:192.570667pt;}
.y181{bottom:193.862667pt;}
.y98{bottom:193.922667pt;}
.y72{bottom:200.541333pt;}
.y188{bottom:200.982667pt;}
.y1a8{bottom:205.349333pt;}
.y3b{bottom:205.854667pt;}
.y13e{bottom:206.157333pt;}
.yd8{bottom:206.349333pt;}
.y180{bottom:208.474667pt;}
.y97{bottom:208.534667pt;}
.y71{bottom:215.153333pt;}
.y187{bottom:215.594667pt;}
.y2a{bottom:217.276000pt;}
.y1a7{bottom:219.961333pt;}
.y13d{bottom:220.769333pt;}
.yd7{bottom:220.961333pt;}
.y17f{bottom:223.086667pt;}
.y96{bottom:223.146667pt;}
.yf6{bottom:223.312000pt;}
.y70{bottom:229.765333pt;}
.y186{bottom:230.206667pt;}
.y29{bottom:231.888000pt;}
.y1a6{bottom:234.573333pt;}
.y13c{bottom:235.381333pt;}
.y95{bottom:237.758667pt;}
.yf5{bottom:237.924000pt;}
.yd6{bottom:241.164000pt;}
.y6f{bottom:244.377333pt;}
.y28{bottom:246.500000pt;}
.y3a{bottom:248.681333pt;}
.y1a5{bottom:249.185333pt;}
.y13b{bottom:249.993333pt;}
.y94{bottom:252.370667pt;}
.yf4{bottom:252.536000pt;}
.yd5{bottom:255.776000pt;}
.y6e{bottom:258.989333pt;}
.y27{bottom:261.112000pt;}
.y39{bottom:263.293333pt;}
.y1a4{bottom:263.797333pt;}
.y13a{bottom:264.605333pt;}
.y93{bottom:266.982667pt;}
.yf3{bottom:267.148000pt;}
.y17e{bottom:270.229333pt;}
.y178{bottom:270.337333pt;}
.yd4{bottom:270.386667pt;}
.y6d{bottom:273.600000pt;}
.y26{bottom:275.724000pt;}
.y1a3{bottom:278.409333pt;}
.y139{bottom:279.217333pt;}
.y38{bottom:281.558667pt;}
.y92{bottom:281.594667pt;}
.yf2{bottom:281.760000pt;}
.y17d{bottom:284.841333pt;}
.y177{bottom:284.949333pt;}
.yd3{bottom:284.998667pt;}
.y1cf{bottom:288.212000pt;}
.y25{bottom:290.336000pt;}
.y1a2{bottom:293.021333pt;}
.y138{bottom:293.829333pt;}
.y6c{bottom:294.929333pt;}
.y91{bottom:296.206667pt;}
.yf1{bottom:296.372000pt;}
.y17c{bottom:299.453333pt;}
.y176{bottom:299.561333pt;}
.y1ce{bottom:302.824000pt;}
.y24{bottom:304.948000pt;}
.yd2{bottom:305.201333pt;}
.y1a1{bottom:307.632000pt;}
.y137{bottom:308.441333pt;}
.y90{bottom:310.818667pt;}
.yf0{bottom:310.984000pt;}
.y11d{bottom:311.949333pt;}
.y17b{bottom:314.065333pt;}
.y175{bottom:314.173333pt;}
.y6b{bottom:316.258667pt;}
.y1cd{bottom:317.436000pt;}
.y23{bottom:319.560000pt;}
.yd1{bottom:319.813333pt;}
.y1a0{bottom:322.244000pt;}
.y37{bottom:322.477333pt;}
.y136{bottom:323.053333pt;}
.y8f{bottom:325.429333pt;}
.yef{bottom:325.596000pt;}
.y11c{bottom:326.561333pt;}
.y17a{bottom:328.677333pt;}
.y174{bottom:328.785333pt;}
.y1cc{bottom:332.048000pt;}
.y22{bottom:334.170667pt;}
.y19f{bottom:336.856000pt;}
.y36{bottom:337.088000pt;}
.y6a{bottom:337.588000pt;}
.y135{bottom:337.665333pt;}
.yd0{bottom:338.078667pt;}
.yee{bottom:340.208000pt;}
.y11b{bottom:341.173333pt;}
.y179{bottom:343.289333pt;}
.y173{bottom:343.397333pt;}
.y8e{bottom:343.694667pt;}
.y21{bottom:348.782667pt;}
.y1cb{bottom:350.313333pt;}
.y19e{bottom:351.468000pt;}
.y69{bottom:352.200000pt;}
.yed{bottom:354.820000pt;}
.y134{bottom:355.030667pt;}
.y35{bottom:355.353333pt;}
.y11a{bottom:359.437333pt;}
.y20{bottom:363.394667pt;}
.y19d{bottom:366.080000pt;}
.y68{bottom:366.810667pt;}
.yec{bottom:369.430667pt;}
.ycf{bottom:369.457333pt;}
.y133{bottom:369.642667pt;}
.y8d{bottom:374.602667pt;}
.y1f{bottom:378.006667pt;}
.y19c{bottom:380.692000pt;}
.y67{bottom:381.422667pt;}
.yeb{bottom:384.042667pt;}
.yce{bottom:384.069333pt;}
.y132{bottom:384.254667pt;}
.y1ca{bottom:385.576000pt;}
.y8c{bottom:389.214667pt;}
.y16c{bottom:390.617333pt;}
.y1e{bottom:392.618667pt;}
.y19b{bottom:395.304000pt;}
.y66{bottom:396.034667pt;}
.y34{bottom:396.272000pt;}
.y172{bottom:397.924000pt;}
.yea{bottom:398.654667pt;}
.ycd{bottom:398.681333pt;}
.y131{bottom:398.866667pt;}
.y1c9{bottom:400.188000pt;}
.y8b{bottom:403.826667pt;}
.y16b{bottom:405.229333pt;}
.y1d{bottom:407.230667pt;}
.y119{bottom:409.669333pt;}
.y19a{bottom:409.916000pt;}
.y65{bottom:410.646667pt;}
.y33{bottom:410.884000pt;}
.y171{bottom:412.536000pt;}
.ye9{bottom:413.266667pt;}
.ycc{bottom:413.293333pt;}
.y130{bottom:413.478667pt;}
.y8a{bottom:418.438667pt;}
.y16a{bottom:419.841333pt;}
.y1c{bottom:421.842667pt;}
.y118{bottom:424.281333pt;}
.y199{bottom:424.528000pt;}
.y64{bottom:425.258667pt;}
.y32{bottom:425.496000pt;}
.y170{bottom:427.148000pt;}
.ye8{bottom:427.878667pt;}
.ycb{bottom:427.905333pt;}
.y12f{bottom:428.090667pt;}
.y89{bottom:433.049333pt;}
.y169{bottom:434.453333pt;}
.y1b{bottom:436.454667pt;}
.y117{bottom:438.893333pt;}
.y198{bottom:439.140000pt;}
.y63{bottom:439.870667pt;}
.y31{bottom:440.106667pt;}
.y16f{bottom:441.760000pt;}
.ye7{bottom:442.490667pt;}
.yca{bottom:442.517333pt;}
.y12e{bottom:442.702667pt;}
.y1c8{bottom:444.669333pt;}
.y88{bottom:447.661333pt;}
.y168{bottom:449.065333pt;}
.y1a{bottom:451.066667pt;}
.y116{bottom:453.505333pt;}
.y62{bottom:454.482667pt;}
.y30{bottom:454.718667pt;}
.y16e{bottom:456.372000pt;}
.yc9{bottom:457.128000pt;}
.y12d{bottom:457.314667pt;}
.y197{bottom:458.560000pt;}
.y1c7{bottom:459.281333pt;}
.y87{bottom:462.273333pt;}
.y167{bottom:463.677333pt;}
.y115{bottom:468.117333pt;}
.y61{bottom:469.094667pt;}
.y19{bottom:469.330667pt;}
.y16d{bottom:470.982667pt;}
.yc8{bottom:471.740000pt;}
.y12c{bottom:471.926667pt;}
.y196{bottom:473.170667pt;}
.y86{bottom:476.885333pt;}
.y166{bottom:478.289333pt;}
.y1c6{bottom:482.349333pt;}
.ye6{bottom:482.554667pt;}
.y114{bottom:482.729333pt;}
.y60{bottom:483.706667pt;}
.yc7{bottom:486.352000pt;}
.y12b{bottom:486.538667pt;}
.y195{bottom:487.782667pt;}
.y85{bottom:491.497333pt;}
.y18{bottom:494.616000pt;}
.ye5{bottom:497.166667pt;}
.y113{bottom:497.341333pt;}
.y5f{bottom:498.318667pt;}
.y1c5{bottom:499.264000pt;}
.yc6{bottom:500.964000pt;}
.y12a{bottom:501.150667pt;}
.y194{bottom:502.394667pt;}
.y84{bottom:506.109333pt;}
.y17{bottom:510.556000pt;}
.y165{bottom:511.192000pt;}
.ye2{bottom:511.778667pt;}
.y112{bottom:511.953333pt;}
.y5e{bottom:512.930667pt;}
.yc5{bottom:515.576000pt;}
.y129{bottom:515.761333pt;}
.y1c4{bottom:516.177333pt;}
.y193{bottom:517.006667pt;}
.y15d{bottom:518.312000pt;}
.y83{bottom:520.721333pt;}
.y164{bottom:525.802667pt;}
.ye4{bottom:526.390667pt;}
.y16{bottom:526.496000pt;}
.y111{bottom:526.565333pt;}
.y5d{bottom:527.541333pt;}
.yc4{bottom:530.188000pt;}
.y128{bottom:530.373333pt;}
.y192{bottom:531.618667pt;}
.y1c3{bottom:532.560000pt;}
.y15c{bottom:532.924000pt;}
.y82{bottom:538.986667pt;}
.y163{bottom:540.414667pt;}
.ye3{bottom:541.002667pt;}
.y110{bottom:541.176000pt;}
.y5c{bottom:542.153333pt;}
.y15{bottom:542.436000pt;}
.yc3{bottom:544.800000pt;}
.y127{bottom:544.985333pt;}
.y15b{bottom:547.536000pt;}
.y1c2{bottom:549.473333pt;}
.y191{bottom:549.884000pt;}
.y162{bottom:555.026667pt;}
.y10f{bottom:555.788000pt;}
.ye1{bottom:556.013333pt;}
.y5b{bottom:556.765333pt;}
.y14{bottom:558.377333pt;}
.yc2{bottom:559.412000pt;}
.y126{bottom:559.597333pt;}
.y15a{bottom:562.148000pt;}
.y1ec{bottom:562.450667pt;}
.ye0{bottom:563.318667pt;}
.y1c1{bottom:565.854667pt;}
.y161{bottom:569.638667pt;}
.y20b{bottom:569.822667pt;}
.y81{bottom:569.893333pt;}
.y5a{bottom:571.377333pt;}
.y1eb{bottom:573.077333pt;}
.yc1{bottom:574.024000pt;}
.y10e{bottom:574.053333pt;}
.y13{bottom:574.317333pt;}
.y159{bottom:576.760000pt;}
.y125{bottom:576.964000pt;}
.y190{bottom:580.449333pt;}
.y1c0{bottom:582.237333pt;}
.y1ea{bottom:583.704000pt;}
.y160{bottom:584.250667pt;}
.y80{bottom:584.505333pt;}
.ydf{bottom:585.634667pt;}
.y59{bottom:585.989333pt;}
.yc0{bottom:588.636000pt;}
.y20a{bottom:591.077333pt;}
.y158{bottom:591.372000pt;}
.y124{bottom:591.576000pt;}
.y1e9{bottom:594.330667pt;}
.y18f{bottom:595.061333pt;}
.y15f{bottom:598.862667pt;}
.y7f{bottom:599.117333pt;}
.y1bf{bottom:599.150667pt;}
.ydd{bottom:600.246667pt;}
.y58{bottom:600.601333pt;}
.y209{bottom:601.704000pt;}
.ybf{bottom:603.246667pt;}
.y12{bottom:604.342667pt;}
.y1e8{bottom:604.958667pt;}
.y157{bottom:605.982667pt;}
.y123{bottom:606.188000pt;}
.y18e{bottom:609.673333pt;}
.y208{bottom:612.330667pt;}
.y15e{bottom:613.474667pt;}
.y7e{bottom:613.729333pt;}
.yde{bottom:614.858667pt;}
.y57{bottom:615.213333pt;}
.y1e7{bottom:615.585333pt;}
.y1be{bottom:616.064000pt;}
.ybe{bottom:617.858667pt;}
.y11{bottom:620.284000pt;}
.y207{bottom:622.957333pt;}
.y10d{bottom:624.285333pt;}
.y122{bottom:624.452000pt;}
.y1e6{bottom:626.212000pt;}
.y56{bottom:629.825333pt;}
.ydc{bottom:629.869333pt;}
.ybd{bottom:632.470667pt;}
.y1bd{bottom:632.978667pt;}
.y7d{bottom:633.477333pt;}
.y206{bottom:633.584000pt;}
.y10{bottom:636.224000pt;}
.y1e5{bottom:636.838667pt;}
.y10c{bottom:638.897333pt;}
.y205{bottom:644.210667pt;}
.y55{bottom:644.437333pt;}
.y14f{bottom:644.664000pt;}
.y156{bottom:646.006667pt;}
.ybc{bottom:647.082667pt;}
.y1e4{bottom:647.465333pt;}
.y7c{bottom:648.089333pt;}
.y1bc{bottom:649.892000pt;}
.y121{bottom:650.910667pt;}
.yf{bottom:652.164000pt;}
.y10b{bottom:653.509333pt;}
.y204{bottom:654.837333pt;}
.y1e3{bottom:658.092000pt;}
.y54{bottom:659.049333pt;}
.y14e{bottom:659.276000pt;}
.y155{bottom:660.617333pt;}
.ybb{bottom:661.694667pt;}
.y7b{bottom:662.701333pt;}
.ydb{bottom:664.750667pt;}
.y203{bottom:665.464000pt;}
.y120{bottom:665.522667pt;}
.y1bb{bottom:666.274667pt;}
.ye{bottom:668.104000pt;}
.y10a{bottom:668.121333pt;}
.y1e2{bottom:668.718667pt;}
.y53{bottom:673.660000pt;}
.y14d{bottom:673.888000pt;}
.y154{bottom:675.229333pt;}
.y202{bottom:676.090667pt;}
.y7a{bottom:677.313333pt;}
.y1e1{bottom:679.345333pt;}
.y1ba{bottom:682.656000pt;}
.y109{bottom:682.733333pt;}
.y11f{bottom:683.721333pt;}
.y201{bottom:686.718667pt;}
.y52{bottom:688.272000pt;}
.y14c{bottom:688.500000pt;}
.y153{bottom:689.841333pt;}
.y1e0{bottom:689.972000pt;}
.y79{bottom:691.925333pt;}
.y108{bottom:697.345333pt;}
.yd{bottom:698.130667pt;}
.yba{bottom:699.286667pt;}
.y1b9{bottom:699.569333pt;}
.y1df{bottom:700.600000pt;}
.y51{bottom:702.884000pt;}
.y14b{bottom:703.112000pt;}
.y152{bottom:704.453333pt;}
.y78{bottom:706.537333pt;}
.y200{bottom:707.972000pt;}
.y1de{bottom:711.226667pt;}
.y107{bottom:711.957333pt;}
.yc{bottom:714.070667pt;}
.y1b8{bottom:715.952000pt;}
.y14a{bottom:717.724000pt;}
.y1ff{bottom:718.598667pt;}
.y151{bottom:719.065333pt;}
.y50{bottom:721.149333pt;}
.y1dd{bottom:721.853333pt;}
.y106{bottom:726.569333pt;}
.y1fe{bottom:729.225333pt;}
.yb{bottom:730.010667pt;}
.y1b7{bottom:732.334667pt;}
.y149{bottom:732.336000pt;}
.y1dc{bottom:732.480000pt;}
.y150{bottom:733.677333pt;}
.yb4{bottom:733.975993pt;}
.y1fd{bottom:739.852000pt;}
.yb8{bottom:740.617333pt;}
.yb3{bottom:740.913333pt;}
.y105{bottom:741.180000pt;}
.y1db{bottom:743.106667pt;}
.ya{bottom:745.950667pt;}
.y1b6{bottom:749.248000pt;}
.y1fc{bottom:750.478667pt;}
.y1da{bottom:753.733333pt;}
.y104{bottom:755.792000pt;}
.y1fb{bottom:761.105333pt;}
.y4f{bottom:761.784000pt;}
.y9{bottom:761.890667pt;}
.y1b5{bottom:766.161333pt;}
.y148{bottom:766.394667pt;}
.yac{bottom:766.986674pt;}
.y1d9{bottom:768.013333pt;}
.y103{bottom:770.404000pt;}
.y1fa{bottom:771.732000pt;}
.yaf{bottom:773.329333pt;}
.yae{bottom:773.330667pt;}
.y4e{bottom:776.396000pt;}
.y146{bottom:781.006667pt;}
.y1f9{bottom:782.360000pt;}
.y1b4{bottom:783.074667pt;}
.y102{bottom:785.016000pt;}
.yad{bottom:787.941333pt;}
.y8{bottom:790.556000pt;}
.y4d{bottom:791.006667pt;}
.y1f8{bottom:792.986667pt;}
.y145{bottom:795.617333pt;}
.y1d8{bottom:795.974667pt;}
.y1b3{bottom:799.457333pt;}
.y101{bottom:799.628000pt;}
.y1f7{bottom:803.613333pt;}
.y4c{bottom:805.618667pt;}
.y7{bottom:806.496000pt;}
.y144{bottom:810.229333pt;}
.y1d7{bottom:810.586667pt;}
.yab{bottom:811.172000pt;}
.yb0{bottom:814.230672pt;}
.y100{bottom:814.240000pt;}
.y1b2{bottom:816.370667pt;}
.y11e{bottom:816.726667pt;}
.ya8{bottom:819.820000pt;}
.y4b{bottom:820.230667pt;}
.yb2{bottom:820.574667pt;}
.y6{bottom:822.436000pt;}
.y143{bottom:824.841333pt;}
.y1f6{bottom:824.866667pt;}
.y1d6{bottom:825.198667pt;}
.yaa{bottom:825.784000pt;}
.yff{bottom:828.852000pt;}
.y1b1{bottom:832.753333pt;}
.ya7{bottom:834.432000pt;}
.y4a{bottom:834.842667pt;}
.yb1{bottom:835.185333pt;}
.y1f5{bottom:835.493333pt;}
.y5{bottom:838.376000pt;}
.y142{bottom:839.453333pt;}
.y1d5{bottom:839.810667pt;}
.ya9{bottom:840.396000pt;}
.yfe{bottom:843.464000pt;}
.y1f4{bottom:846.120000pt;}
.y1b0{bottom:849.136000pt;}
.y49{bottom:849.454667pt;}
.y141{bottom:854.065333pt;}
.y4{bottom:854.316000pt;}
.y1d4{bottom:854.422667pt;}
.y1f3{bottom:856.746667pt;}
.yfd{bottom:858.076000pt;}
.y9e{bottom:862.005330pt;}
.y48{bottom:864.066667pt;}
.y1af{bottom:866.049333pt;}
.y1f2{bottom:867.373333pt;}
.ya3{bottom:868.349333pt;}
.y147{bottom:868.677333pt;}
.y1d3{bottom:869.034667pt;}
.y3{bottom:870.257333pt;}
.yfc{bottom:872.688000pt;}
.yb9{bottom:874.590667pt;}
.y1f1{bottom:878.001333pt;}
.y47{bottom:878.678667pt;}
.y1ae{bottom:882.430667pt;}
.ya2{bottom:882.961333pt;}
.y1d2{bottom:883.646667pt;}
.yfb{bottom:887.298667pt;}
.y140{bottom:888.194667pt;}
.y1f0{bottom:888.628000pt;}
.y1d1{bottom:898.258667pt;}
.y1ad{bottom:898.813333pt;}
.y1ef{bottom:899.254667pt;}
.y46{bottom:899.309333pt;}
.yfa{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y13f{bottom:902.956000pt;}
.ya4{bottom:909.249329pt;}
.y1ee{bottom:909.881333pt;}
.y1d0{bottom:912.870667pt;}
.y9d{bottom:913.497333pt;}
.y9c{bottom:914.840000pt;}
.y1ac{bottom:915.196000pt;}
.ya6{bottom:915.593333pt;}
.yf9{bottom:916.522667pt;}
.y1ed{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y9b{bottom:929.452000pt;}
.ya5{bottom:930.205333pt;}
.yf8{bottom:931.134667pt;}
.y1ab{bottom:931.578667pt;}
.y45{bottom:934.190667pt;}
.y44{bottom:966.204000pt;}
.h15{height:13.636766pt;}
.hc{height:15.049560pt;}
.h14{height:18.897969pt;}
.h12{height:22.502449pt;}
.he{height:26.222240pt;}
.h7{height:26.333824pt;}
.h6{height:27.338080pt;}
.h8{height:27.447915pt;}
.h1a{height:28.521973pt;}
.h1b{height:29.032053pt;}
.hb{height:30.094720pt;}
.h9{height:30.604800pt;}
.h11{height:31.184123pt;}
.ha{height:31.242400pt;}
.h18{height:32.086325pt;}
.h16{height:33.855616pt;}
.hf{height:34.429440pt;}
.h5{height:35.146720pt;}
.h3{height:39.054960pt;}
.h4{height:41.890560pt;}
.hd{height:42.867188pt;}
.h2{height:46.863600pt;}
.h1{height:64.085707pt;}
.h19{height:64.253440pt;}
.h17{height:64.373387pt;}
.h10{height:88.224053pt;}
.h13{height:93.594720pt;}
.h0{height:1056.000000pt;}
.w4{width:13.743978pt;}
.w3{width:22.679362pt;}
.w1{width:27.640000pt;}
.w2{width:27.890667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x54{left:1.958349pt;}
.x6a{left:70.774667pt;}
.x26{left:71.730667pt;}
.x3c{left:75.293333pt;}
.x36{left:77.290667pt;}
.x5a{left:79.618667pt;}
.x37{left:81.961333pt;}
.x50{left:83.307920pt;}
.x2e{left:85.014667pt;}
.x6d{left:86.277333pt;}
.x38{left:87.521333pt;}
.x3d{left:89.310667pt;}
.x39{left:92.192000pt;}
.x90{left:93.829333pt;}
.x14{left:96.196000pt;}
.x4f{left:97.728000pt;}
.x91{left:99.453333pt;}
.x3a{left:103.310667pt;}
.x6e{left:104.276000pt;}
.x2b{left:107.598667pt;}
.x15{left:108.968000pt;}
.x69{left:110.498667pt;}
.x2d{left:112.548000pt;}
.x2c{left:113.910667pt;}
.x64{left:116.402667pt;}
.x3b{left:119.100000pt;}
.x4{left:120.100000pt;}
.x67{left:125.852000pt;}
.x3{left:129.624000pt;}
.x23{left:130.625333pt;}
.x6{left:135.953333pt;}
.x1{left:137.580000pt;}
.x5{left:139.586667pt;}
.x7{left:142.336000pt;}
.x13{left:151.794667pt;}
.x1c{left:153.292000pt;}
.x88{left:159.124000pt;}
.x89{left:194.677333pt;}
.x85{left:204.168000pt;}
.x82{left:212.424000pt;}
.x40{left:213.502667pt;}
.x87{left:219.857333pt;}
.x41{left:224.621333pt;}
.x8a{left:227.800000pt;}
.x2{left:230.141333pt;}
.x51{left:232.889493pt;}
.x2f{left:237.085333pt;}
.x3e{left:240.678667pt;}
.x30{left:242.644000pt;}
.x31{left:248.245333pt;}
.x2a{left:253.264000pt;}
.x68{left:255.126667pt;}
.x32{left:259.405333pt;}
.x3f{left:265.382667pt;}
.x6f{left:268.673333pt;}
.x33{left:270.524000pt;}
.x86{left:276.944000pt;}
.x8b{left:278.485333pt;}
.x70{left:279.792000pt;}
.x8c{left:284.045333pt;}
.x53{left:286.039998pt;}
.x6b{left:286.938667pt;}
.x5f{left:296.210667pt;}
.x6c{left:298.057333pt;}
.x55{left:311.706667pt;}
.xa{left:315.726667pt;}
.x8e{left:321.344000pt;}
.x79{left:323.621333pt;}
.xc{left:324.758667pt;}
.xb{left:328.498667pt;}
.x1f{left:330.490667pt;}
.x77{left:331.662667pt;}
.x78{left:337.221333pt;}
.xd{left:346.776000pt;}
.x9{left:351.652000pt;}
.x18{left:354.154667pt;}
.x1e{left:356.101333pt;}
.x17{left:357.788000pt;}
.x19{left:360.537333pt;}
.x16{left:362.132000pt;}
.x8{left:363.984000pt;}
.x1d{left:370.540000pt;}
.x92{left:376.034667pt;}
.x5b{left:377.977867pt;}
.x8d{left:380.104000pt;}
.x83{left:382.329333pt;}
.x34{left:385.209333pt;}
.x84{left:387.889333pt;}
.x35{left:390.768000pt;}
.x29{left:394.180013pt;}
.x8f{left:399.738667pt;}
.x60{left:415.106669pt;}
.x80{left:418.848000pt;}
.x7f{left:422.398667pt;}
.x27{left:423.940000pt;}
.x7e{left:425.949333pt;}
.x56{left:428.335999pt;}
.x43{left:435.194667pt;}
.x42{left:437.224000pt;}
.x61{left:440.773333pt;}
.x7b{left:441.938667pt;}
.x93{left:444.628000pt;}
.x57{left:454.001333pt;}
.x4c{left:456.988000pt;}
.x94{left:457.910667pt;}
.x4d{left:468.116000pt;}
.x4e{left:473.674667pt;}
.x48{left:478.554667pt;}
.x49{left:487.669333pt;}
.x65{left:496.139994pt;}
.x73{left:497.216000pt;}
.x74{left:502.774667pt;}
.x52{left:507.870907pt;}
.x5c{left:512.762667pt;}
.x66{left:516.976000pt;}
.x71{left:518.709333pt;}
.x5d{left:519.985627pt;}
.x7a{left:522.017333pt;}
.x7c{left:523.213333pt;}
.x5e{left:524.566107pt;}
.x7d{left:528.773333pt;}
.x21{left:533.928000pt;}
.x95{left:537.612000pt;}
.x22{left:546.700000pt;}
.x81{left:548.786667pt;}
.x62{left:562.308004pt;}
.x1b{left:563.616000pt;}
.xf{left:567.594667pt;}
.x25{left:572.556000pt;}
.x11{left:573.685333pt;}
.x1a{left:575.602667pt;}
.x10{left:577.318667pt;}
.xe{left:578.218667pt;}
.x12{left:580.068000pt;}
.x24{left:586.672000pt;}
.x63{left:587.973333pt;}
.x20{left:591.040000pt;}
.x4a{left:594.125333pt;}
.x28{left:595.521333pt;}
.x4b{left:599.685333pt;}
.x72{left:602.585333pt;}
.x46{left:606.658667pt;}
.x47{left:617.777333pt;}
.x58{left:627.777323pt;}
.x44{left:636.365333pt;}
.x45{left:641.925333pt;}
.x59{left:653.444000pt;}
.x75{left:717.494667pt;}
.x76{left:727.758667pt;}
}




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