
    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_f575271967f4343963faca44.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fdf14a552ebf18281e37fe54.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8494126d7f314eee51a67c3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_007fac817f94586d702b92bf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2e403826d363fda782c0c1da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690000;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_3f0998426d6a6ffcb4c7df1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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_28adc9951d51163f56c8ca11.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.846000;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_ea56eaf031b141ae7bf141a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_7c7c8c0643a80591fd1f350d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.844000;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_e5f9e6de2a6b220e56d5503b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.234000;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_8d44c3ce904b120d96e56a72.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.423000;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_1d532993c5607866ff234e12.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{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);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.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);}
.md{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);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m1b{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);}
.mc{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);}
.m24{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);}
.m9{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);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m17{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);}
.m15{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m13{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);}
.m10{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);}
.m1d{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);}
.m12{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);}
.m22{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);}
.m4{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);}
.m1f{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);}
.m21{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);}
.m28{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);}
.m23{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);}
.m1c{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);}
.m1e{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);}
.m27{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);}
.m7{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);}
.m19{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);}
.m2{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);}
.m14{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);}
.mf{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:-37.608000px;}
.v5{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.642000px;}
.v4{vertical-align:29.784000px;}
.v3{vertical-align:97.236000px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000800px;}
.ls18{letter-spacing:0.002725px;}
.ls1c{letter-spacing:0.003178px;}
.ls17{letter-spacing:0.004200px;}
.ls19{letter-spacing:0.005108px;}
.ls16{letter-spacing:0.554287px;}
.ls15{letter-spacing:0.560287px;}
.ls22{letter-spacing:0.747483px;}
.ls1e{letter-spacing:1.016383px;}
.ls5{letter-spacing:1.275394px;}
.ls23{letter-spacing:1.451524px;}
.ls0{letter-spacing:1.861130px;}
.ls1f{letter-spacing:3.554551px;}
.lsb{letter-spacing:4.739524px;}
.ls11{letter-spacing:4.745524px;}
.ls1{letter-spacing:10.461300px;}
.lsc{letter-spacing:11.542200px;}
.ls3{letter-spacing:11.954850px;}
.ls7{letter-spacing:12.552876px;}
.ls1a{letter-spacing:12.791978px;}
.lse{letter-spacing:12.916200px;}
.ls24{letter-spacing:13.042741px;}
.lsa{letter-spacing:13.084200px;}
.lsf{letter-spacing:13.085108px;}
.lsd{letter-spacing:13.120200px;}
.ls1b{letter-spacing:13.234406px;}
.ls25{letter-spacing:13.448400px;}
.ls28{letter-spacing:13.454400px;}
.ls12{letter-spacing:14.405920px;}
.ls13{letter-spacing:14.662090px;}
.ls1d{letter-spacing:14.704798px;}
.ls8{letter-spacing:14.764573px;}
.ls26{letter-spacing:14.803341px;}
.ls6{letter-spacing:14.884124px;}
.ls21{letter-spacing:15.123227px;}
.ls14{letter-spacing:16.828090px;}
.ls9{letter-spacing:17.932680px;}
.ls20{letter-spacing:19.008641px;}
.ls10{letter-spacing:22.835524px;}
.ls2{letter-spacing:36.523654px;}
.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;}
}
.ws0{word-spacing:-99.147741px;}
.ws7c{word-spacing:-62.286600px;}
.ws50{word-spacing:-50.763579px;}
.ws54{word-spacing:-49.393274px;}
.ws45{word-spacing:-49.268701px;}
.ws51{word-spacing:-49.206414px;}
.ws5f{word-spacing:-41.986790px;}
.ws8f{word-spacing:-39.460596px;}
.ws29{word-spacing:-14.943900px;}
.ws5d{word-spacing:-13.449600px;}
.ws35{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.ws36{word-spacing:-3.347434px;}
.ws31{word-spacing:-2.988780px;}
.ws97{word-spacing:-2.630126px;}
.ws4d{word-spacing:-2.510575px;}
.ws40{word-spacing:-2.391024px;}
.ws80{word-spacing:-2.331248px;}
.ws25{word-spacing:-2.211697px;}
.ws75{word-spacing:-2.151922px;}
.ws6c{word-spacing:-2.092146px;}
.ws6d{word-spacing:-1.972595px;}
.ws3{word-spacing:-1.908367px;}
.ws83{word-spacing:-1.733492px;}
.ws84{word-spacing:-1.731722px;}
.ws4f{word-spacing:-1.434614px;}
.wsbf{word-spacing:-1.344960px;}
.ws2{word-spacing:-1.322630px;}
.ws9b{word-spacing:-1.315063px;}
.ws8c{word-spacing:-1.255288px;}
.ws6a{word-spacing:-1.183565px;}
.ws98{word-spacing:-1.135736px;}
.wsa8{word-spacing:-0.956410px;}
.ws6b{word-spacing:-0.914573px;}
.ws13{word-spacing:-0.860771px;}
.ws5b{word-spacing:-0.645581px;}
.ws23{word-spacing:-0.597756px;}
.ws5c{word-spacing:-0.591782px;}
.ws56{word-spacing:-0.537980px;}
.ws57{word-spacing:-0.478205px;}
.ws5a{word-spacing:-0.430387px;}
.ws32{word-spacing:-0.418429px;}
.ws18{word-spacing:-0.376589px;}
.ws28{word-spacing:-0.358654px;}
.wsbb{word-spacing:-0.322790px;}
.ws3a{word-spacing:-0.298878px;}
.ws5e{word-spacing:-0.268992px;}
.ws5{word-spacing:-0.251057px;}
.ws41{word-spacing:-0.239102px;}
.ws7a{word-spacing:-0.215194px;}
.ws27{word-spacing:-0.179327px;}
.wsc3{word-spacing:-0.161395px;}
.ws92{word-spacing:-0.131088px;}
.ws43{word-spacing:-0.122661px;}
.ws26{word-spacing:-0.119551px;}
.wsad{word-spacing:-0.107597px;}
.ws30{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.wsbc{word-spacing:-0.028906px;}
.wsb2{word-spacing:-0.009859px;}
.wsb3{word-spacing:-0.007306px;}
.ws86{word-spacing:-0.004728px;}
.ws7{word-spacing:-0.003116px;}
.wsbe{word-spacing:-0.001421px;}
.wsb8{word-spacing:-0.001354px;}
.ws34{word-spacing:-0.000488px;}
.ws1{word-spacing:0.000000px;}
.ws48{word-spacing:0.007323px;}
.ws44{word-spacing:0.022223px;}
.ws74{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.wsa1{word-spacing:0.104100px;}
.ws1d{word-spacing:0.107597px;}
.ws85{word-spacing:0.107655px;}
.ws9f{word-spacing:0.111266px;}
.wsa0{word-spacing:0.116480px;}
.ws3c{word-spacing:0.119551px;}
.ws1e{word-spacing:0.161395px;}
.ws2e{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws1c{word-spacing:0.215194px;}
.ws2f{word-spacing:0.239102px;}
.ws79{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws38{word-spacing:0.298878px;}
.ws3d{word-spacing:0.358654px;}
.ws47{word-spacing:0.364866px;}
.ws46{word-spacing:0.383712px;}
.ws82{word-spacing:0.418429px;}
.ws39{word-spacing:0.478205px;}
.ws95{word-spacing:0.537980px;}
.ws78{word-spacing:0.537984px;}
.wsbd{word-spacing:0.645581px;}
.wsaf{word-spacing:0.699379px;}
.wsa2{word-spacing:0.777083px;}
.ws1a{word-spacing:0.806976px;}
.ws21{word-spacing:0.836858px;}
.ws7f{word-spacing:0.896634px;}
.ws3b{word-spacing:0.956410px;}
.ws65{word-spacing:1.016185px;}
.ws17{word-spacing:1.075968px;}
.ws7d{word-spacing:1.255288px;}
.ws72{word-spacing:1.291162px;}
.ws7e{word-spacing:1.315063px;}
.wsa3{word-spacing:1.374839px;}
.ws81{word-spacing:1.554166px;}
.wsb5{word-spacing:1.667750px;}
.ws2c{word-spacing:1.673717px;}
.ws4e{word-spacing:1.733492px;}
.ws4a{word-spacing:1.853044px;}
.ws16{word-spacing:1.936742px;}
.wsa5{word-spacing:1.972595px;}
.wsa{word-spacing:2.008454px;}
.ws53{word-spacing:2.032370px;}
.wsc2{word-spacing:2.044339px;}
.ws73{word-spacing:2.098138px;}
.ws7b{word-spacing:2.151922px;}
.wsa7{word-spacing:2.151929px;}
.wsb9{word-spacing:2.205734px;}
.ws93{word-spacing:2.211697px;}
.ws22{word-spacing:2.331248px;}
.wsb1{word-spacing:2.367130px;}
.ws6{word-spacing:2.509520px;}
.ws8e{word-spacing:2.510575px;}
.wsb0{word-spacing:2.528525px;}
.ws9a{word-spacing:2.570351px;}
.ws76{word-spacing:2.630126px;}
.wsba{word-spacing:2.743718px;}
.ws96{word-spacing:2.749678px;}
.ws24{word-spacing:2.809453px;}
.ws63{word-spacing:2.869229px;}
.ws94{word-spacing:2.929004px;}
.ws42{word-spacing:2.988780px;}
.ws88{word-spacing:3.174106px;}
.ws1f{word-spacing:3.219667px;}
.wsb7{word-spacing:3.223939px;}
.wsae{word-spacing:3.227904px;}
.ws33{word-spacing:3.287658px;}
.ws99{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.ws91{word-spacing:3.646312px;}
.wsc0{word-spacing:3.658291px;}
.wsac{word-spacing:3.712090px;}
.ws1b{word-spacing:3.927283px;}
.ws8d{word-spacing:4.004965px;}
.wsab{word-spacing:4.034880px;}
.wsa4{word-spacing:4.124516px;}
.wsa9{word-spacing:4.423394px;}
.wsc1{word-spacing:4.465267px;}
.ws37{word-spacing:4.483170px;}
.ws3e{word-spacing:4.542946px;}
.wsaa{word-spacing:4.901599px;}
.ws52{word-spacing:4.961375px;}
.ws59{word-spacing:5.057050px;}
.ws2b{word-spacing:5.200477px;}
.ws58{word-spacing:5.433638px;}
.ws9d{word-spacing:5.439580px;}
.ws2a{word-spacing:5.738458px;}
.ws4b{word-spacing:5.977560px;}
.ws11{word-spacing:6.067206px;}
.ws12{word-spacing:6.150892px;}
.ws49{word-spacing:6.216662px;}
.ws14{word-spacing:6.240614px;}
.ws9e{word-spacing:6.754643px;}
.wsb6{word-spacing:6.778598px;}
.ws64{word-spacing:6.814418px;}
.ws61{word-spacing:6.993745px;}
.wsa6{word-spacing:7.412174px;}
.ws4c{word-spacing:7.531726px;}
.wsb4{word-spacing:7.531776px;}
.ws15{word-spacing:7.639373px;}
.ws89{word-spacing:7.651277px;}
.ws8a{word-spacing:7.671978px;}
.ws8b{word-spacing:7.711052px;}
.ws90{word-spacing:7.770828px;}
.ws9c{word-spacing:7.950155px;}
.ws55{word-spacing:8.162044px;}
.ws68{word-spacing:8.189257px;}
.ws3f{word-spacing:8.249033px;}
.ws60{word-spacing:8.308808px;}
.wsf{word-spacing:8.661460px;}
.ws62{word-spacing:8.846789px;}
.ws77{word-spacing:13.384740px;}
.ws4{word-spacing:15.189541px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.wse{word-spacing:17.699504px;}
.ws10{word-spacing:27.448877px;}
.ws67{word-spacing:71.730900px;}
.ws66{word-spacing:83.686050px;}
.ws6e{word-spacing:658.786888px;}
.ws6f{word-spacing:660.460604px;}
.ws71{word-spacing:663.748262px;}
.ws70{word-spacing:665.421979px;}
.ws69{word-spacing:1077.455190px;}
.ws87{word-spacing:1089.230983px;}
._25{margin-left:-20.216221px;}
._1f{margin-left:-7.631739px;}
._9{margin-left:-6.168857px;}
._6{margin-left:-4.602708px;}
._17{margin-left:-3.485042px;}
._a{margin-left:-2.407376px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._8{width:2.301354px;}
._15{width:5.022631px;}
._1e{width:11.512858px;}
._7{width:12.971268px;}
._1b{width:14.114609px;}
._e{width:15.386342px;}
._10{width:17.205454px;}
._b{width:18.668045px;}
._c{width:20.066803px;}
._12{width:21.885437px;}
._21{width:23.085352px;}
._18{width:24.567772px;}
._1a{width:25.703508px;}
._1c{width:27.676103px;}
._f{width:28.728346px;}
._1d{width:29.828024px;}
._22{width:31.489771px;}
._0{width:33.355008px;}
._11{width:34.669848px;}
._20{width:36.463116px;}
._d{width:40.026010px;}
._19{width:41.970038px;}
._16{width:44.114393px;}
._1{width:54.425243px;}
._24{width:61.868160px;}
._2{width:69.371442px;}
._3{width:84.308350px;}
._13{width:677.556396px;}
._23{width:2466.389929px;}
._14{width:2490.299929px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(80,109,50);}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsa{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:127.439256px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.623424px;}
.y49{bottom:31.890000px;}
.yc3{bottom:88.993500px;}
.y178{bottom:92.349000px;}
.yd2{bottom:98.532000px;}
.y20{bottom:102.823500px;}
.y15c{bottom:106.246500px;}
.ya1{bottom:106.546500px;}
.y130{bottom:106.599000px;}
.yc2{bottom:107.823000px;}
.y177{bottom:109.609500px;}
.y48{bottom:115.149000px;}
.yd1{bottom:117.361500px;}
.y1f{bottom:120.711000px;}
.y15b{bottom:125.076000px;}
.ya0{bottom:125.376000px;}
.y12f{bottom:125.428500px;}
.yc1{bottom:126.652500px;}
.y176{bottom:126.870000px;}
.y7d{bottom:127.300500px;}
.y47{bottom:133.978500px;}
.y102{bottom:136.660500px;}
.y1e{bottom:138.600000px;}
.y15a{bottom:143.905500px;}
.y175{bottom:144.130500px;}
.y9f{bottom:144.205500px;}
.y12e{bottom:144.258000px;}
.yc0{bottom:145.482000px;}
.y7c{bottom:146.130000px;}
.yd0{bottom:150.927000px;}
.y46{bottom:152.808000px;}
.y101{bottom:155.490000px;}
.y1d{bottom:156.487500px;}
.y114{bottom:159.792000px;}
.y174{bottom:161.391000px;}
.y159{bottom:162.735000px;}
.y9e{bottom:163.035000px;}
.y12d{bottom:163.087500px;}
.ybf{bottom:164.311500px;}
.y7b{bottom:164.959500px;}
.y45{bottom:171.637500px;}
.y100{bottom:174.318000px;}
.y1c{bottom:174.375000px;}
.y173{bottom:178.651500px;}
.y158{bottom:181.564500px;}
.y9d{bottom:181.864500px;}
.y12c{bottom:181.917000px;}
.y7a{bottom:183.789000px;}
.y113{bottom:187.600500px;}
.y44{bottom:190.467000px;}
.y1b{bottom:192.264000px;}
.yff{bottom:193.147500px;}
.y172{bottom:195.910500px;}
.ybe{bottom:196.659000px;}
.y157{bottom:200.394000px;}
.y9c{bottom:200.694000px;}
.y12b{bottom:200.746500px;}
.y79{bottom:202.618500px;}
.y43{bottom:209.296500px;}
.y1a{bottom:210.151500px;}
.yfe{bottom:211.977000px;}
.y171{bottom:213.171000px;}
.ybd{bottom:215.892000px;}
.y156{bottom:219.223500px;}
.y9b{bottom:219.523500px;}
.y12a{bottom:219.576000px;}
.y78{bottom:221.448000px;}
.ye0{bottom:227.319000px;}
.y19{bottom:228.039000px;}
.y42{bottom:228.126000px;}
.y170{bottom:230.431500px;}
.yfd{bottom:230.806500px;}
.y155{bottom:238.053000px;}
.y129{bottom:238.405500px;}
.y77{bottom:240.276000px;}
.ybc{bottom:243.700500px;}
.ydf{bottom:246.148500px;}
.y41{bottom:246.955500px;}
.y16f{bottom:247.692000px;}
.yfc{bottom:249.636000px;}
.y9a{bottom:253.089000px;}
.y154{bottom:256.882500px;}
.y128{bottom:257.235000px;}
.y76{bottom:259.105500px;}
.y16e{bottom:264.952500px;}
.yde{bottom:264.978000px;}
.y40{bottom:265.785000px;}
.yfb{bottom:268.465500px;}
.y99{bottom:272.322000px;}
.y153{bottom:275.712000px;}
.y127{bottom:276.064500px;}
.y75{bottom:277.935000px;}
.y16d{bottom:282.213000px;}
.ydd{bottom:283.807500px;}
.y3f{bottom:284.614500px;}
.yfa{bottom:287.295000px;}
.y98{bottom:291.555000px;}
.y126{bottom:294.894000px;}
.y74{bottom:296.764500px;}
.y152{bottom:299.025000px;}
.y16c{bottom:299.473500px;}
.ydc{bottom:302.637000px;}
.y3e{bottom:303.444000px;}
.yf9{bottom:306.124500px;}
.y18{bottom:307.299000px;}
.y97{bottom:310.788000px;}
.y125{bottom:313.723500px;}
.y73{bottom:315.594000px;}
.y16b{bottom:316.734000px;}
.ydb{bottom:321.466500px;}
.y3d{bottom:322.273500px;}
.yf8{bottom:324.954000px;}
.y17{bottom:325.186500px;}
.y96{bottom:330.021000px;}
.y124{bottom:332.553000px;}
.y151{bottom:332.649000px;}
.y16a{bottom:333.994500px;}
.y72{bottom:334.423500px;}
.yda{bottom:340.296000px;}
.y3c{bottom:341.103000px;}
.y16{bottom:343.074000px;}
.yf7{bottom:343.783500px;}
.y169{bottom:351.253500px;}
.y123{bottom:351.382500px;}
.y150{bottom:351.478500px;}
.y71{bottom:353.253000px;}
.yd9{bottom:359.125500px;}
.y3b{bottom:359.932500px;}
.y15{bottom:360.963000px;}
.yf6{bottom:362.613000px;}
.y168{bottom:368.514000px;}
.y122{bottom:370.212000px;}
.y14f{bottom:370.308000px;}
.y70{bottom:372.082500px;}
.yd8{bottom:377.955000px;}
.y3a{bottom:378.762000px;}
.yf5{bottom:381.442500px;}
.y167{bottom:385.774500px;}
.y121{bottom:389.041500px;}
.y14e{bottom:389.137500px;}
.y6f{bottom:390.912000px;}
.yd7{bottom:396.784500px;}
.y39{bottom:397.591500px;}
.y14{bottom:399.024000px;}
.yf4{bottom:400.272000px;}
.y166{bottom:403.035000px;}
.y120{bottom:407.871000px;}
.y14d{bottom:407.967000px;}
.y6e{bottom:409.741500px;}
.y38{bottom:416.421000px;}
.y13{bottom:416.913000px;}
.yf3{bottom:419.101500px;}
.y165{bottom:420.295500px;}
.y11f{bottom:426.700500px;}
.y14c{bottom:426.796500px;}
.yd6{bottom:430.350000px;}
.y6d{bottom:433.054500px;}
.y12{bottom:434.800500px;}
.y37{bottom:435.249000px;}
.y164{bottom:437.556000px;}
.yf2{bottom:437.931000px;}
.y11e{bottom:445.530000px;}
.y14b{bottom:445.626000px;}
.yd5{bottom:449.583000px;}
.y36{bottom:454.078500px;}
.y163{bottom:454.816500px;}
.yf1{bottom:456.760500px;}
.y11d{bottom:464.359500px;}
.y14a{bottom:464.454000px;}
.y6c{bottom:466.678500px;}
.ycf{bottom:468.145500px;}
.y11{bottom:470.622000px;}
.y35{bottom:472.908000px;}
.y162{bottom:476.559000px;}
.yd4{bottom:477.391500px;}
.yf0{bottom:480.073500px;}
.y11c{bottom:483.187500px;}
.y149{bottom:483.283500px;}
.y6b{bottom:485.508000px;}
.yce{bottom:486.975000px;}
.y34{bottom:491.737500px;}
.y112{bottom:492.606000px;}
.y11b{bottom:502.017000px;}
.y148{bottom:502.113000px;}
.y6a{bottom:504.337500px;}
.ycd{bottom:505.804500px;}
.y10{bottom:506.442000px;}
.y161{bottom:510.183000px;}
.y33{bottom:510.567000px;}
.y111{bottom:511.435500px;}
.yef{bottom:513.697500px;}
.y11a{bottom:520.846500px;}
.y147{bottom:520.942500px;}
.y69{bottom:523.167000px;}
.yf{bottom:524.329500px;}
.ycc{bottom:524.634000px;}
.y110{bottom:530.265000px;}
.yee{bottom:532.527000px;}
.y32{bottom:533.880000px;}
.y198{bottom:535.065000px;}
.y160{bottom:536.724000px;}
.y119{bottom:539.676000px;}
.y146{bottom:539.772000px;}
.y68{bottom:541.996500px;}
.ye{bottom:542.218500px;}
.ybb{bottom:542.433000px;}
.ycb{bottom:543.463500px;}
.y10f{bottom:549.094500px;}
.yed{bottom:551.356500px;}
.y197{bottom:552.325500px;}
.y15f{bottom:554.298000px;}
.y144{bottom:558.601500px;}
.yd{bottom:560.106000px;}
.y67{bottom:560.826000px;}
.yba{bottom:561.262500px;}
.y145{bottom:561.762000px;}
.yca{bottom:562.293000px;}
.y118{bottom:562.989000px;}
.y10e{bottom:567.924000px;}
.y196{bottom:569.586000px;}
.yec{bottom:570.186000px;}
.y143{bottom:577.431000px;}
.yc{bottom:577.993500px;}
.y66{bottom:579.655500px;}
.yb9{bottom:580.092000px;}
.y15e{bottom:580.839000px;}
.y10d{bottom:586.753500px;}
.y195{bottom:586.846500px;}
.yeb{bottom:589.014000px;}
.y117{bottom:593.416500px;}
.yc9{bottom:595.858500px;}
.yb{bottom:595.882500px;}
.y142{bottom:596.260500px;}
.y15d{bottom:598.413000px;}
.y65{bottom:598.485000px;}
.yb8{bottom:598.921500px;}
.y194{bottom:604.107000px;}
.y10c{bottom:605.583000px;}
.y31{bottom:609.030000px;}
.yea{bottom:612.327000px;}
.ya{bottom:613.770000px;}
.y141{bottom:615.090000px;}
.yc8{bottom:615.091500px;}
.y64{bottom:617.314500px;}
.yb7{bottom:617.751000px;}
.y193{bottom:621.366000px;}
.y10b{bottom:624.412500px;}
.y140{bottom:633.919500px;}
.yc7{bottom:634.324500px;}
.y7{bottom:636.141055px;}
.y63{bottom:636.144000px;}
.yb6{bottom:636.580500px;}
.y192{bottom:638.626500px;}
.ye9{bottom:645.951000px;}
.y30{bottom:646.420500px;}
.y13f{bottom:652.749000px;}
.yc6{bottom:653.557500px;}
.y62{bottom:654.973500px;}
.y191{bottom:655.887000px;}
.y10a{bottom:657.552000px;}
.yb5{bottom:659.893500px;}
.ye8{bottom:664.780500px;}
.y2f{bottom:665.877000px;}
.y95{bottom:671.130000px;}
.y13e{bottom:671.578500px;}
.y190{bottom:673.147500px;}
.y109{bottom:676.785000px;}
.y61{bottom:678.285000px;}
.yc5{bottom:681.366000px;}
.ye7{bottom:683.610000px;}
.y2e{bottom:685.333500px;}
.y94{bottom:689.959500px;}
.y13d{bottom:690.408000px;}
.yb4{bottom:694.776000px;}
.ye6{bottom:702.439500px;}
.y108{bottom:704.593500px;}
.y2d{bottom:704.791500px;}
.y18f{bottom:707.668500px;}
.y93{bottom:708.789000px;}
.y13c{bottom:709.237500px;}
.y60{bottom:711.909000px;}
.yb3{bottom:719.085000px;}
.ye5{bottom:721.269000px;}
.y2c{bottom:724.248000px;}
.y18e{bottom:724.929000px;}
.yb2{bottom:725.826000px;}
.y92{bottom:727.618500px;}
.y13b{bottom:728.067000px;}
.y5f{bottom:730.738500px;}
.yd3{bottom:735.910500px;}
.ye4{bottom:740.098500px;}
.y18d{bottom:742.189500px;}
.y2b{bottom:743.706000px;}
.yb1{bottom:744.655500px;}
.y91{bottom:746.448000px;}
.y13a{bottom:746.896500px;}
.y5e{bottom:749.568000px;}
.ye3{bottom:758.928000px;}
.y18c{bottom:759.450000px;}
.y2a{bottom:763.162500px;}
.yb0{bottom:763.485000px;}
.y8f{bottom:765.277500px;}
.y139{bottom:765.726000px;}
.y5d{bottom:768.397500px;}
.y90{bottom:768.438000px;}
.y18b{bottom:776.709000px;}
.yaf{bottom:782.314500px;}
.y29{bottom:782.619000px;}
.y8e{bottom:784.107000px;}
.y138{bottom:784.555500px;}
.y5c{bottom:787.227000px;}
.ye2{bottom:792.493500px;}
.y18a{bottom:793.969500px;}
.yae{bottom:801.144000px;}
.y28{bottom:802.077000px;}
.y8d{bottom:802.936500px;}
.y137{bottom:803.385000px;}
.y5b{bottom:806.056500px;}
.y189{bottom:811.230000px;}
.ye1{bottom:811.726500px;}
.yad{bottom:819.972000px;}
.y27{bottom:821.533500px;}
.y8c{bottom:821.766000px;}
.y136{bottom:822.214500px;}
.y5a{bottom:824.886000px;}
.y188{bottom:828.490500px;}
.yac{bottom:838.801500px;}
.y8b{bottom:840.595500px;}
.y26{bottom:840.990000px;}
.y135{bottom:841.044000px;}
.y59{bottom:843.715500px;}
.y187{bottom:845.751000px;}
.yab{bottom:857.631000px;}
.y8a{bottom:859.425000px;}
.y134{bottom:859.873500px;}
.y25{bottom:860.448000px;}
.y58{bottom:862.545000px;}
.y186{bottom:863.011500px;}
.yaa{bottom:876.460500px;}
.y89{bottom:878.254500px;}
.yc4{bottom:878.371500px;}
.y133{bottom:878.703000px;}
.y24{bottom:879.904500px;}
.y185{bottom:880.272000px;}
.y57{bottom:881.374500px;}
.y88{bottom:897.084000px;}
.y132{bottom:897.532500px;}
.ya9{bottom:899.773500px;}
.y56{bottom:900.204000px;}
.y183{bottom:914.791500px;}
.y184{bottom:914.793000px;}
.y87{bottom:915.913500px;}
.y131{bottom:916.362000px;}
.y23{bottom:918.490500px;}
.y55{bottom:919.033500px;}
.y182{bottom:932.052000px;}
.ya8{bottom:933.397500px;}
.y22{bottom:934.630500px;}
.y116{bottom:935.191500px;}
.y54{bottom:937.863000px;}
.y86{bottom:939.226500px;}
.y181{bottom:949.312500px;}
.y21{bottom:950.769000px;}
.ya7{bottom:952.227000px;}
.y115{bottom:954.021000px;}
.y53{bottom:956.692500px;}
.y180{bottom:966.573000px;}
.ya6{bottom:971.056500px;}
.y85{bottom:972.849000px;}
.y52{bottom:975.522000px;}
.y17f{bottom:983.833500px;}
.ya5{bottom:989.886000px;}
.y84{bottom:991.678500px;}
.y51{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y17e{bottom:1001.094000px;}
.y107{bottom:1006.026000px;}
.ya4{bottom:1008.715500px;}
.y83{bottom:1010.508000px;}
.y50{bottom:1013.181000px;}
.y17d{bottom:1018.354500px;}
.y106{bottom:1024.855500px;}
.y82{bottom:1029.337500px;}
.y4f{bottom:1032.010500px;}
.ya3{bottom:1032.028500px;}
.y17c{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y105{bottom:1043.685000px;}
.y81{bottom:1048.167000px;}
.y4e{bottom:1050.840000px;}
.ya2{bottom:1052.202000px;}
.y17b{bottom:1052.875500px;}
.y104{bottom:1062.513000px;}
.y80{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4d{bottom:1069.669500px;}
.y17a{bottom:1070.134500px;}
.y103{bottom:1081.342500px;}
.y7f{bottom:1085.826000px;}
.y179{bottom:1087.395000px;}
.y4c{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y7e{bottom:1104.655500px;}
.y4b{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4a{bottom:1173.397500px;}
.h18{height:1.912824px;}
.h1b{height:22.859182px;}
.h7{height:25.508090px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h9{height:33.112997px;}
.h1a{height:33.193613px;}
.h8{height:34.199443px;}
.hc{height:34.813397px;}
.h10{height:35.052500px;}
.h14{height:36.941321px;}
.h16{height:37.446744px;}
.h17{height:38.250662px;}
.hd{height:38.734848px;}
.he{height:39.165235px;}
.h15{height:39.434227px;}
.h11{height:41.607449px;}
.h13{height:42.500452px;}
.h6{height:43.038432px;}
.hf{height:43.516637px;}
.h4{height:43.815515px;}
.h1c{height:46.714950px;}
.h2{height:50.930649px;}
.h12{height:56.457515px;}
.h5{height:77.469696px;}
.h3{height:86.403815px;}
.h19{height:99.148824px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:199.400578px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:57.836618px;}
.x75{left:85.890000px;}
.x76{left:143.125500px;}
.x74{left:157.714500px;}
.x7f{left:215.233500px;}
.x80{left:220.465500px;}
.x6{left:249.832500px;}
.x5{left:250.897500px;}
.x32{left:256.288500px;}
.x6d{left:263.473500px;}
.x72{left:268.572000px;}
.x20{left:276.291000px;}
.x24{left:280.186500px;}
.x8{left:282.750000px;}
.x68{left:288.730500px;}
.x21{left:291.234000px;}
.x25{left:292.563000px;}
.x33{left:299.814000px;}
.x98{left:300.987000px;}
.x7a{left:302.167500px;}
.x4e{left:304.467000px;}
.x51{left:306.907500px;}
.x7b{left:308.140500px;}
.x47{left:309.531000px;}
.xa8{left:310.776000px;}
.x7{left:312.756000px;}
.x52{left:320.356500px;}
.x13{left:325.027500px;}
.x73{left:327.207000px;}
.x99{left:330.123000px;}
.x14{left:339.970500px;}
.x9a{left:341.727000px;}
.x65{left:342.753000px;}
.x15{left:347.293500px;}
.x4f{left:353.803500px;}
.x16{left:362.236500px;}
.xa5{left:367.258500px;}
.x43{left:376.764000px;}
.x8f{left:382.441500px;}
.x28{left:386.818500px;}
.x44{left:389.722500px;}
.x8e{left:393.327000px;}
.x6a{left:395.881500px;}
.x29{left:401.761500px;}
.x66{left:406.344000px;}
.x6b{left:408.174000px;}
.x34{left:409.743000px;}
.x91{left:411.259500px;}
.x45{left:418.636500px;}
.x67{left:421.288500px;}
.x48{left:423.004500px;}
.xa6{left:426.480000px;}
.x46{left:427.536000px;}
.x83{left:430.167000px;}
.x5b{left:436.377000px;}
.x71{left:438.177000px;}
.x3e{left:440.094000px;}
.x9b{left:441.718500px;}
.x3d{left:442.728000px;}
.xd{left:447.361500px;}
.x5c{left:451.321500px;}
.x35{left:453.268500px;}
.xe{left:454.759500px;}
.xf{left:458.358000px;}
.x94{left:462.667500px;}
.x9c{left:463.861500px;}
.x10{left:465.754500px;}
.x2d{left:466.977000px;}
.x92{left:470.401500px;}
.x97{left:479.404500px;}
.x49{left:481.639500px;}
.x8d{left:484.900500px;}
.x84{left:488.214000px;}
.x5f{left:493.254000px;}
.x17{left:494.760000px;}
.x50{left:496.122000px;}
.x77{left:499.591500px;}
.x39{left:504.910500px;}
.x78{left:506.316000px;}
.x60{left:508.198500px;}
.x18{left:509.704500px;}
.x7c{left:510.822000px;}
.x2e{left:513.126000px;}
.x1c{left:516.999000px;}
.x7d{left:519.040500px;}
.x2c{left:525.933000px;}
.x95{left:527.725500px;}
.x3a{left:530.769000px;}
.x86{left:532.837500px;}
.x1d{left:540.132000px;}
.x4a{left:542.029500px;}
.x63{left:545.773500px;}
.x2a{left:553.030500px;}
.x4b{left:556.972500px;}
.x69{left:567.907500px;}
.x9d{left:573.678000px;}
.x6e{left:575.724000px;}
.x9e{left:579.901500px;}
.x96{left:582.631500px;}
.x57{left:586.110000px;}
.x85{left:589.096500px;}
.x6f{left:590.668500px;}
.x11{left:595.510500px;}
.x58{left:597.172500px;}
.x89{left:599.049000px;}
.x12{left:602.907000px;}
.x64{left:604.417500px;}
.x70{left:605.797500px;}
.x9f{left:611.752500px;}
.x8a{left:615.312000px;}
.x8b{left:627.181500px;}
.x36{left:637.938000px;}
.xa3{left:642.334500px;}
.x93{left:647.617500px;}
.xa0{left:651.688500px;}
.x8c{left:659.142000px;}
.xa1{left:662.334000px;}
.x31{left:668.631000px;}
.x1e{left:676.173000px;}
.x90{left:679.789500px;}
.x1f{left:683.832000px;}
.x3f{left:686.248500px;}
.xa2{left:689.763000px;}
.x2b{left:692.352000px;}
.x9{left:696.924000px;}
.x40{left:699.645000px;}
.xa{left:704.320500px;}
.xb{left:711.651000px;}
.x4c{left:715.321500px;}
.xc{left:719.049000px;}
.xa7{left:722.172000px;}
.x37{left:724.348500px;}
.x41{left:729.429000px;}
.x19{left:733.354500px;}
.x7e{left:735.307500px;}
.x38{left:739.293000px;}
.x42{left:741.795000px;}
.x1a{left:743.961000px;}
.x2f{left:748.771500px;}
.x5d{left:753.283500px;}
.x61{left:755.499000px;}
.x79{left:759.303000px;}
.x87{left:760.954500px;}
.x4d{left:763.429500px;}
.x5e{left:768.226500px;}
.x53{left:771.897000px;}
.x81{left:777.246000px;}
.xa4{left:778.372500px;}
.x59{left:782.145000px;}
.x54{left:783.570000px;}
.x82{left:784.723500px;}
.x1b{left:787.570500px;}
.x22{left:788.829000px;}
.x3b{left:793.821000px;}
.x30{left:796.138500px;}
.x5a{left:799.684500px;}
.x23{left:804.184500px;}
.x55{left:809.557500px;}
.x62{left:814.119000px;}
.x3c{left:816.774000px;}
.x26{left:818.046000px;}
.x56{left:820.935000px;}
.xa9{left:823.773000px;}
.x6c{left:828.015000px;}
.x27{left:832.990500px;}
.x88{left:837.120000px;}
@media print{
.v2{vertical-align:-33.429333pt;}
.v5{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.237333pt;}
.v4{vertical-align:26.474667pt;}
.v3{vertical-align:86.432000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000711pt;}
.ls18{letter-spacing:0.002422pt;}
.ls1c{letter-spacing:0.002825pt;}
.ls17{letter-spacing:0.003733pt;}
.ls19{letter-spacing:0.004541pt;}
.ls16{letter-spacing:0.492700pt;}
.ls15{letter-spacing:0.498033pt;}
.ls22{letter-spacing:0.664429pt;}
.ls1e{letter-spacing:0.903452pt;}
.ls5{letter-spacing:1.133683pt;}
.ls23{letter-spacing:1.290243pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1f{letter-spacing:3.159601pt;}
.lsb{letter-spacing:4.212910pt;}
.ls11{letter-spacing:4.218243pt;}
.ls1{letter-spacing:9.298933pt;}
.lsc{letter-spacing:10.259733pt;}
.ls3{letter-spacing:10.626533pt;}
.ls7{letter-spacing:11.158112pt;}
.ls1a{letter-spacing:11.370647pt;}
.lse{letter-spacing:11.481067pt;}
.ls24{letter-spacing:11.593548pt;}
.lsa{letter-spacing:11.630400pt;}
.lsf{letter-spacing:11.631207pt;}
.lsd{letter-spacing:11.662400pt;}
.ls1b{letter-spacing:11.763917pt;}
.ls25{letter-spacing:11.954133pt;}
.ls28{letter-spacing:11.959467pt;}
.ls12{letter-spacing:12.805262pt;}
.ls13{letter-spacing:13.032969pt;}
.ls1d{letter-spacing:13.070931pt;}
.ls8{letter-spacing:13.124065pt;}
.ls26{letter-spacing:13.158525pt;}
.ls6{letter-spacing:13.230333pt;}
.ls21{letter-spacing:13.442868pt;}
.ls14{letter-spacing:14.958302pt;}
.ls9{letter-spacing:15.940160pt;}
.ls20{letter-spacing:16.896570pt;}
.ls10{letter-spacing:20.298243pt;}
.ls2{letter-spacing:32.465470pt;}
.ws0{word-spacing:-88.131325pt;}
.ws7c{word-spacing:-55.365867pt;}
.ws50{word-spacing:-45.123181pt;}
.ws54{word-spacing:-43.905132pt;}
.ws45{word-spacing:-43.794401pt;}
.ws51{word-spacing:-43.739035pt;}
.ws5f{word-spacing:-37.321591pt;}
.ws8f{word-spacing:-35.076085pt;}
.ws29{word-spacing:-13.283467pt;}
.ws5d{word-spacing:-11.955200pt;}
.ws35{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.ws36{word-spacing:-2.975497pt;}
.ws31{word-spacing:-2.656693pt;}
.ws97{word-spacing:-2.337890pt;}
.ws4d{word-spacing:-2.231622pt;}
.ws40{word-spacing:-2.125355pt;}
.ws80{word-spacing:-2.072221pt;}
.ws25{word-spacing:-1.965953pt;}
.ws75{word-spacing:-1.912819pt;}
.ws6c{word-spacing:-1.859685pt;}
.ws6d{word-spacing:-1.753418pt;}
.ws3{word-spacing:-1.696326pt;}
.ws83{word-spacing:-1.540882pt;}
.ws84{word-spacing:-1.539308pt;}
.ws4f{word-spacing:-1.275213pt;}
.wsbf{word-spacing:-1.195520pt;}
.ws2{word-spacing:-1.175671pt;}
.ws9b{word-spacing:-1.168945pt;}
.ws8c{word-spacing:-1.115811pt;}
.ws6a{word-spacing:-1.052058pt;}
.ws98{word-spacing:-1.009543pt;}
.wsa8{word-spacing:-0.850142pt;}
.ws6b{word-spacing:-0.812954pt;}
.ws13{word-spacing:-0.765130pt;}
.ws5b{word-spacing:-0.573850pt;}
.ws23{word-spacing:-0.531339pt;}
.ws5c{word-spacing:-0.526029pt;}
.ws56{word-spacing:-0.478205pt;}
.ws57{word-spacing:-0.425071pt;}
.ws5a{word-spacing:-0.382566pt;}
.ws32{word-spacing:-0.371937pt;}
.ws18{word-spacing:-0.334746pt;}
.ws28{word-spacing:-0.318803pt;}
.wsbb{word-spacing:-0.286925pt;}
.ws3a{word-spacing:-0.265669pt;}
.ws5e{word-spacing:-0.239104pt;}
.ws5{word-spacing:-0.223162pt;}
.ws41{word-spacing:-0.212535pt;}
.ws7a{word-spacing:-0.191283pt;}
.ws27{word-spacing:-0.159402pt;}
.wsc3{word-spacing:-0.143462pt;}
.ws92{word-spacing:-0.116522pt;}
.ws43{word-spacing:-0.109032pt;}
.ws26{word-spacing:-0.106268pt;}
.wsad{word-spacing:-0.095642pt;}
.ws30{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.wsbc{word-spacing:-0.025694pt;}
.wsb2{word-spacing:-0.008764pt;}
.wsb3{word-spacing:-0.006494pt;}
.ws86{word-spacing:-0.004203pt;}
.ws7{word-spacing:-0.002770pt;}
.wsbe{word-spacing:-0.001263pt;}
.wsb8{word-spacing:-0.001203pt;}
.ws34{word-spacing:-0.000434pt;}
.ws1{word-spacing:0.000000pt;}
.ws48{word-spacing:0.006509pt;}
.ws44{word-spacing:0.019754pt;}
.ws74{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.wsa1{word-spacing:0.092533pt;}
.ws1d{word-spacing:0.095642pt;}
.ws85{word-spacing:0.095693pt;}
.ws9f{word-spacing:0.098903pt;}
.wsa0{word-spacing:0.103538pt;}
.ws3c{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.143462pt;}
.ws2e{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws1c{word-spacing:0.191283pt;}
.ws2f{word-spacing:0.212535pt;}
.ws79{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws38{word-spacing:0.265669pt;}
.ws3d{word-spacing:0.318803pt;}
.ws47{word-spacing:0.324326pt;}
.ws46{word-spacing:0.341078pt;}
.ws82{word-spacing:0.371937pt;}
.ws39{word-spacing:0.425071pt;}
.ws95{word-spacing:0.478205pt;}
.ws78{word-spacing:0.478208pt;}
.wsbd{word-spacing:0.573850pt;}
.wsaf{word-spacing:0.621670pt;}
.wsa2{word-spacing:0.690740pt;}
.ws1a{word-spacing:0.717312pt;}
.ws21{word-spacing:0.743874pt;}
.ws7f{word-spacing:0.797008pt;}
.ws3b{word-spacing:0.850142pt;}
.ws65{word-spacing:0.903276pt;}
.ws17{word-spacing:0.956416pt;}
.ws7d{word-spacing:1.115811pt;}
.ws72{word-spacing:1.147699pt;}
.ws7e{word-spacing:1.168945pt;}
.wsa3{word-spacing:1.222079pt;}
.ws81{word-spacing:1.381481pt;}
.wsb5{word-spacing:1.482445pt;}
.ws2c{word-spacing:1.487748pt;}
.ws4e{word-spacing:1.540882pt;}
.ws4a{word-spacing:1.647150pt;}
.ws16{word-spacing:1.721549pt;}
.wsa5{word-spacing:1.753418pt;}
.wsa{word-spacing:1.785293pt;}
.ws53{word-spacing:1.806551pt;}
.wsc2{word-spacing:1.817190pt;}
.ws73{word-spacing:1.865011pt;}
.ws7b{word-spacing:1.912819pt;}
.wsa7{word-spacing:1.912825pt;}
.wsb9{word-spacing:1.960653pt;}
.ws93{word-spacing:1.965953pt;}
.ws22{word-spacing:2.072221pt;}
.wsb1{word-spacing:2.104115pt;}
.ws6{word-spacing:2.230685pt;}
.ws8e{word-spacing:2.231622pt;}
.wsb0{word-spacing:2.247578pt;}
.ws9a{word-spacing:2.284756pt;}
.ws76{word-spacing:2.337890pt;}
.wsba{word-spacing:2.438861pt;}
.ws96{word-spacing:2.444158pt;}
.ws24{word-spacing:2.497292pt;}
.ws63{word-spacing:2.550426pt;}
.ws94{word-spacing:2.603559pt;}
.ws42{word-spacing:2.656693pt;}
.ws88{word-spacing:2.821427pt;}
.ws1f{word-spacing:2.861926pt;}
.wsb7{word-spacing:2.865724pt;}
.wsae{word-spacing:2.869248pt;}
.ws33{word-spacing:2.922363pt;}
.ws99{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.ws91{word-spacing:3.241166pt;}
.wsc0{word-spacing:3.251814pt;}
.wsac{word-spacing:3.299635pt;}
.ws1b{word-spacing:3.490918pt;}
.ws8d{word-spacing:3.559969pt;}
.wsab{word-spacing:3.586560pt;}
.wsa4{word-spacing:3.666237pt;}
.wsa9{word-spacing:3.931906pt;}
.wsc1{word-spacing:3.969126pt;}
.ws37{word-spacing:3.985040pt;}
.ws3e{word-spacing:4.038174pt;}
.wsaa{word-spacing:4.356977pt;}
.ws52{word-spacing:4.410111pt;}
.ws59{word-spacing:4.495155pt;}
.ws2b{word-spacing:4.622646pt;}
.ws58{word-spacing:4.829901pt;}
.ws9d{word-spacing:4.835182pt;}
.ws2a{word-spacing:5.100851pt;}
.ws4b{word-spacing:5.313387pt;}
.ws11{word-spacing:5.393072pt;}
.ws12{word-spacing:5.467459pt;}
.ws49{word-spacing:5.525922pt;}
.ws14{word-spacing:5.547213pt;}
.ws9e{word-spacing:6.004127pt;}
.wsb6{word-spacing:6.025421pt;}
.ws64{word-spacing:6.057261pt;}
.ws61{word-spacing:6.216662pt;}
.wsa6{word-spacing:6.588599pt;}
.ws4c{word-spacing:6.694867pt;}
.wsb4{word-spacing:6.694912pt;}
.ws15{word-spacing:6.790554pt;}
.ws89{word-spacing:6.801135pt;}
.ws8a{word-spacing:6.819536pt;}
.ws8b{word-spacing:6.854269pt;}
.ws90{word-spacing:6.907403pt;}
.ws9c{word-spacing:7.066804pt;}
.ws55{word-spacing:7.255150pt;}
.ws68{word-spacing:7.279340pt;}
.ws3f{word-spacing:7.332474pt;}
.ws60{word-spacing:7.385607pt;}
.wsf{word-spacing:7.699075pt;}
.ws62{word-spacing:7.863812pt;}
.ws77{word-spacing:11.897547pt;}
.ws4{word-spacing:13.501814pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.wse{word-spacing:15.732893pt;}
.ws10{word-spacing:24.399002pt;}
.ws67{word-spacing:63.760800pt;}
.ws66{word-spacing:74.387600pt;}
.ws6e{word-spacing:585.588345pt;}
.ws6f{word-spacing:587.076093pt;}
.ws71{word-spacing:589.998455pt;}
.ws70{word-spacing:591.486204pt;}
.ws69{word-spacing:957.737947pt;}
.ws87{word-spacing:968.205318pt;}
._25{margin-left:-17.969974pt;}
._1f{margin-left:-6.783768pt;}
._9{margin-left:-5.483429pt;}
._6{margin-left:-4.091296pt;}
._17{margin-left:-3.097815pt;}
._a{margin-left:-2.139890pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._8{width:2.045648pt;}
._15{width:4.464561pt;}
._1e{width:10.233651pt;}
._7{width:11.530016pt;}
._1b{width:12.546319pt;}
._e{width:13.676749pt;}
._10{width:15.293737pt;}
._b{width:16.593818pt;}
._c{width:17.837158pt;}
._12{width:19.453722pt;}
._21{width:20.520313pt;}
._18{width:21.838019pt;}
._1a{width:22.847563pt;}
._1c{width:24.600980pt;}
._f{width:25.536307pt;}
._1d{width:26.513799pt;}
._22{width:27.990907pt;}
._0{width:29.648896pt;}
._11{width:30.817643pt;}
._20{width:32.411659pt;}
._d{width:35.578675pt;}
._19{width:37.306701pt;}
._16{width:39.212794pt;}
._1{width:48.377994pt;}
._24{width:54.993920pt;}
._2{width:61.663504pt;}
._3{width:74.940755pt;}
._13{width:602.272352pt;}
._23{width:2192.346604pt;}
._14{width:2213.599937pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsa{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:113.279338pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.776377pt;}
.y49{bottom:28.346667pt;}
.yc3{bottom:79.105333pt;}
.y178{bottom:82.088000pt;}
.yd2{bottom:87.584000pt;}
.y20{bottom:91.398667pt;}
.y15c{bottom:94.441333pt;}
.ya1{bottom:94.708000pt;}
.y130{bottom:94.754667pt;}
.yc2{bottom:95.842667pt;}
.y177{bottom:97.430667pt;}
.y48{bottom:102.354667pt;}
.yd1{bottom:104.321333pt;}
.y1f{bottom:107.298667pt;}
.y15b{bottom:111.178667pt;}
.ya0{bottom:111.445333pt;}
.y12f{bottom:111.492000pt;}
.yc1{bottom:112.580000pt;}
.y176{bottom:112.773333pt;}
.y7d{bottom:113.156000pt;}
.y47{bottom:119.092000pt;}
.y102{bottom:121.476000pt;}
.y1e{bottom:123.200000pt;}
.y15a{bottom:127.916000pt;}
.y175{bottom:128.116000pt;}
.y9f{bottom:128.182667pt;}
.y12e{bottom:128.229333pt;}
.yc0{bottom:129.317333pt;}
.y7c{bottom:129.893333pt;}
.yd0{bottom:134.157333pt;}
.y46{bottom:135.829333pt;}
.y101{bottom:138.213333pt;}
.y1d{bottom:139.100000pt;}
.y114{bottom:142.037333pt;}
.y174{bottom:143.458667pt;}
.y159{bottom:144.653333pt;}
.y9e{bottom:144.920000pt;}
.y12d{bottom:144.966667pt;}
.ybf{bottom:146.054667pt;}
.y7b{bottom:146.630667pt;}
.y45{bottom:152.566667pt;}
.y100{bottom:154.949333pt;}
.y1c{bottom:155.000000pt;}
.y173{bottom:158.801333pt;}
.y158{bottom:161.390667pt;}
.y9d{bottom:161.657333pt;}
.y12c{bottom:161.704000pt;}
.y7a{bottom:163.368000pt;}
.y113{bottom:166.756000pt;}
.y44{bottom:169.304000pt;}
.y1b{bottom:170.901333pt;}
.yff{bottom:171.686667pt;}
.y172{bottom:174.142667pt;}
.ybe{bottom:174.808000pt;}
.y157{bottom:178.128000pt;}
.y9c{bottom:178.394667pt;}
.y12b{bottom:178.441333pt;}
.y79{bottom:180.105333pt;}
.y43{bottom:186.041333pt;}
.y1a{bottom:186.801333pt;}
.yfe{bottom:188.424000pt;}
.y171{bottom:189.485333pt;}
.ybd{bottom:191.904000pt;}
.y156{bottom:194.865333pt;}
.y9b{bottom:195.132000pt;}
.y12a{bottom:195.178667pt;}
.y78{bottom:196.842667pt;}
.ye0{bottom:202.061333pt;}
.y19{bottom:202.701333pt;}
.y42{bottom:202.778667pt;}
.y170{bottom:204.828000pt;}
.yfd{bottom:205.161333pt;}
.y155{bottom:211.602667pt;}
.y129{bottom:211.916000pt;}
.y77{bottom:213.578667pt;}
.ybc{bottom:216.622667pt;}
.ydf{bottom:218.798667pt;}
.y41{bottom:219.516000pt;}
.y16f{bottom:220.170667pt;}
.yfc{bottom:221.898667pt;}
.y9a{bottom:224.968000pt;}
.y154{bottom:228.340000pt;}
.y128{bottom:228.653333pt;}
.y76{bottom:230.316000pt;}
.y16e{bottom:235.513333pt;}
.yde{bottom:235.536000pt;}
.y40{bottom:236.253333pt;}
.yfb{bottom:238.636000pt;}
.y99{bottom:242.064000pt;}
.y153{bottom:245.077333pt;}
.y127{bottom:245.390667pt;}
.y75{bottom:247.053333pt;}
.y16d{bottom:250.856000pt;}
.ydd{bottom:252.273333pt;}
.y3f{bottom:252.990667pt;}
.yfa{bottom:255.373333pt;}
.y98{bottom:259.160000pt;}
.y126{bottom:262.128000pt;}
.y74{bottom:263.790667pt;}
.y152{bottom:265.800000pt;}
.y16c{bottom:266.198667pt;}
.ydc{bottom:269.010667pt;}
.y3e{bottom:269.728000pt;}
.yf9{bottom:272.110667pt;}
.y18{bottom:273.154667pt;}
.y97{bottom:276.256000pt;}
.y125{bottom:278.865333pt;}
.y73{bottom:280.528000pt;}
.y16b{bottom:281.541333pt;}
.ydb{bottom:285.748000pt;}
.y3d{bottom:286.465333pt;}
.yf8{bottom:288.848000pt;}
.y17{bottom:289.054667pt;}
.y96{bottom:293.352000pt;}
.y124{bottom:295.602667pt;}
.y151{bottom:295.688000pt;}
.y16a{bottom:296.884000pt;}
.y72{bottom:297.265333pt;}
.yda{bottom:302.485333pt;}
.y3c{bottom:303.202667pt;}
.y16{bottom:304.954667pt;}
.yf7{bottom:305.585333pt;}
.y169{bottom:312.225333pt;}
.y123{bottom:312.340000pt;}
.y150{bottom:312.425333pt;}
.y71{bottom:314.002667pt;}
.yd9{bottom:319.222667pt;}
.y3b{bottom:319.940000pt;}
.y15{bottom:320.856000pt;}
.yf6{bottom:322.322667pt;}
.y168{bottom:327.568000pt;}
.y122{bottom:329.077333pt;}
.y14f{bottom:329.162667pt;}
.y70{bottom:330.740000pt;}
.yd8{bottom:335.960000pt;}
.y3a{bottom:336.677333pt;}
.yf5{bottom:339.060000pt;}
.y167{bottom:342.910667pt;}
.y121{bottom:345.814667pt;}
.y14e{bottom:345.900000pt;}
.y6f{bottom:347.477333pt;}
.yd7{bottom:352.697333pt;}
.y39{bottom:353.414667pt;}
.y14{bottom:354.688000pt;}
.yf4{bottom:355.797333pt;}
.y166{bottom:358.253333pt;}
.y120{bottom:362.552000pt;}
.y14d{bottom:362.637333pt;}
.y6e{bottom:364.214667pt;}
.y38{bottom:370.152000pt;}
.y13{bottom:370.589333pt;}
.yf3{bottom:372.534667pt;}
.y165{bottom:373.596000pt;}
.y11f{bottom:379.289333pt;}
.y14c{bottom:379.374667pt;}
.yd6{bottom:382.533333pt;}
.y6d{bottom:384.937333pt;}
.y12{bottom:386.489333pt;}
.y37{bottom:386.888000pt;}
.y164{bottom:388.938667pt;}
.yf2{bottom:389.272000pt;}
.y11e{bottom:396.026667pt;}
.y14b{bottom:396.112000pt;}
.yd5{bottom:399.629333pt;}
.y36{bottom:403.625333pt;}
.y163{bottom:404.281333pt;}
.yf1{bottom:406.009333pt;}
.y11d{bottom:412.764000pt;}
.y14a{bottom:412.848000pt;}
.y6c{bottom:414.825333pt;}
.ycf{bottom:416.129333pt;}
.y11{bottom:418.330667pt;}
.y35{bottom:420.362667pt;}
.y162{bottom:423.608000pt;}
.yd4{bottom:424.348000pt;}
.yf0{bottom:426.732000pt;}
.y11c{bottom:429.500000pt;}
.y149{bottom:429.585333pt;}
.y6b{bottom:431.562667pt;}
.yce{bottom:432.866667pt;}
.y34{bottom:437.100000pt;}
.y112{bottom:437.872000pt;}
.y11b{bottom:446.237333pt;}
.y148{bottom:446.322667pt;}
.y6a{bottom:448.300000pt;}
.ycd{bottom:449.604000pt;}
.y10{bottom:450.170667pt;}
.y161{bottom:453.496000pt;}
.y33{bottom:453.837333pt;}
.y111{bottom:454.609333pt;}
.yef{bottom:456.620000pt;}
.y11a{bottom:462.974667pt;}
.y147{bottom:463.060000pt;}
.y69{bottom:465.037333pt;}
.yf{bottom:466.070667pt;}
.ycc{bottom:466.341333pt;}
.y110{bottom:471.346667pt;}
.yee{bottom:473.357333pt;}
.y32{bottom:474.560000pt;}
.y198{bottom:475.613333pt;}
.y160{bottom:477.088000pt;}
.y119{bottom:479.712000pt;}
.y146{bottom:479.797333pt;}
.y68{bottom:481.774667pt;}
.ye{bottom:481.972000pt;}
.ybb{bottom:482.162667pt;}
.ycb{bottom:483.078667pt;}
.y10f{bottom:488.084000pt;}
.yed{bottom:490.094667pt;}
.y197{bottom:490.956000pt;}
.y15f{bottom:492.709333pt;}
.y144{bottom:496.534667pt;}
.yd{bottom:497.872000pt;}
.y67{bottom:498.512000pt;}
.yba{bottom:498.900000pt;}
.y145{bottom:499.344000pt;}
.yca{bottom:499.816000pt;}
.y118{bottom:500.434667pt;}
.y10e{bottom:504.821333pt;}
.y196{bottom:506.298667pt;}
.yec{bottom:506.832000pt;}
.y143{bottom:513.272000pt;}
.yc{bottom:513.772000pt;}
.y66{bottom:515.249333pt;}
.yb9{bottom:515.637333pt;}
.y15e{bottom:516.301333pt;}
.y10d{bottom:521.558667pt;}
.y195{bottom:521.641333pt;}
.yeb{bottom:523.568000pt;}
.y117{bottom:527.481333pt;}
.yc9{bottom:529.652000pt;}
.yb{bottom:529.673333pt;}
.y142{bottom:530.009333pt;}
.y15d{bottom:531.922667pt;}
.y65{bottom:531.986667pt;}
.yb8{bottom:532.374667pt;}
.y194{bottom:536.984000pt;}
.y10c{bottom:538.296000pt;}
.y31{bottom:541.360000pt;}
.yea{bottom:544.290667pt;}
.ya{bottom:545.573333pt;}
.y141{bottom:546.746667pt;}
.yc8{bottom:546.748000pt;}
.y64{bottom:548.724000pt;}
.yb7{bottom:549.112000pt;}
.y193{bottom:552.325333pt;}
.y10b{bottom:555.033333pt;}
.y140{bottom:563.484000pt;}
.yc7{bottom:563.844000pt;}
.y7{bottom:565.458715pt;}
.y63{bottom:565.461333pt;}
.yb6{bottom:565.849333pt;}
.y192{bottom:567.668000pt;}
.ye9{bottom:574.178667pt;}
.y30{bottom:574.596000pt;}
.y13f{bottom:580.221333pt;}
.yc6{bottom:580.940000pt;}
.y62{bottom:582.198667pt;}
.y191{bottom:583.010667pt;}
.y10a{bottom:584.490667pt;}
.yb5{bottom:586.572000pt;}
.ye8{bottom:590.916000pt;}
.y2f{bottom:591.890667pt;}
.y95{bottom:596.560000pt;}
.y13e{bottom:596.958667pt;}
.y190{bottom:598.353333pt;}
.y109{bottom:601.586667pt;}
.y61{bottom:602.920000pt;}
.yc5{bottom:605.658667pt;}
.ye7{bottom:607.653333pt;}
.y2e{bottom:609.185333pt;}
.y94{bottom:613.297333pt;}
.y13d{bottom:613.696000pt;}
.yb4{bottom:617.578667pt;}
.ye6{bottom:624.390667pt;}
.y108{bottom:626.305333pt;}
.y2d{bottom:626.481333pt;}
.y18f{bottom:629.038667pt;}
.y93{bottom:630.034667pt;}
.y13c{bottom:630.433333pt;}
.y60{bottom:632.808000pt;}
.yb3{bottom:639.186667pt;}
.ye5{bottom:641.128000pt;}
.y2c{bottom:643.776000pt;}
.y18e{bottom:644.381333pt;}
.yb2{bottom:645.178667pt;}
.y92{bottom:646.772000pt;}
.y13b{bottom:647.170667pt;}
.y5f{bottom:649.545333pt;}
.yd3{bottom:654.142667pt;}
.ye4{bottom:657.865333pt;}
.y18d{bottom:659.724000pt;}
.y2b{bottom:661.072000pt;}
.yb1{bottom:661.916000pt;}
.y91{bottom:663.509333pt;}
.y13a{bottom:663.908000pt;}
.y5e{bottom:666.282667pt;}
.ye3{bottom:674.602667pt;}
.y18c{bottom:675.066667pt;}
.y2a{bottom:678.366667pt;}
.yb0{bottom:678.653333pt;}
.y8f{bottom:680.246667pt;}
.y139{bottom:680.645333pt;}
.y5d{bottom:683.020000pt;}
.y90{bottom:683.056000pt;}
.y18b{bottom:690.408000pt;}
.yaf{bottom:695.390667pt;}
.y29{bottom:695.661333pt;}
.y8e{bottom:696.984000pt;}
.y138{bottom:697.382667pt;}
.y5c{bottom:699.757333pt;}
.ye2{bottom:704.438667pt;}
.y18a{bottom:705.750667pt;}
.yae{bottom:712.128000pt;}
.y28{bottom:712.957333pt;}
.y8d{bottom:713.721333pt;}
.y137{bottom:714.120000pt;}
.y5b{bottom:716.494667pt;}
.y189{bottom:721.093333pt;}
.ye1{bottom:721.534667pt;}
.yad{bottom:728.864000pt;}
.y27{bottom:730.252000pt;}
.y8c{bottom:730.458667pt;}
.y136{bottom:730.857333pt;}
.y5a{bottom:733.232000pt;}
.y188{bottom:736.436000pt;}
.yac{bottom:745.601333pt;}
.y8b{bottom:747.196000pt;}
.y26{bottom:747.546667pt;}
.y135{bottom:747.594667pt;}
.y59{bottom:749.969333pt;}
.y187{bottom:751.778667pt;}
.yab{bottom:762.338667pt;}
.y8a{bottom:763.933333pt;}
.y134{bottom:764.332000pt;}
.y25{bottom:764.842667pt;}
.y58{bottom:766.706667pt;}
.y186{bottom:767.121333pt;}
.yaa{bottom:779.076000pt;}
.y89{bottom:780.670667pt;}
.yc4{bottom:780.774667pt;}
.y133{bottom:781.069333pt;}
.y24{bottom:782.137333pt;}
.y185{bottom:782.464000pt;}
.y57{bottom:783.444000pt;}
.y88{bottom:797.408000pt;}
.y132{bottom:797.806667pt;}
.ya9{bottom:799.798667pt;}
.y56{bottom:800.181333pt;}
.y183{bottom:813.148000pt;}
.y184{bottom:813.149333pt;}
.y87{bottom:814.145333pt;}
.y131{bottom:814.544000pt;}
.y23{bottom:816.436000pt;}
.y55{bottom:816.918667pt;}
.y182{bottom:828.490667pt;}
.ya8{bottom:829.686667pt;}
.y22{bottom:830.782667pt;}
.y116{bottom:831.281333pt;}
.y54{bottom:833.656000pt;}
.y86{bottom:834.868000pt;}
.y181{bottom:843.833333pt;}
.y21{bottom:845.128000pt;}
.ya7{bottom:846.424000pt;}
.y115{bottom:848.018667pt;}
.y53{bottom:850.393333pt;}
.y180{bottom:859.176000pt;}
.ya6{bottom:863.161333pt;}
.y85{bottom:864.754667pt;}
.y52{bottom:867.130667pt;}
.y17f{bottom:874.518667pt;}
.ya5{bottom:879.898667pt;}
.y84{bottom:881.492000pt;}
.y51{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y17e{bottom:889.861333pt;}
.y107{bottom:894.245333pt;}
.ya4{bottom:896.636000pt;}
.y83{bottom:898.229333pt;}
.y50{bottom:900.605333pt;}
.y17d{bottom:905.204000pt;}
.y106{bottom:910.982667pt;}
.y82{bottom:914.966667pt;}
.y4f{bottom:917.342667pt;}
.ya3{bottom:917.358667pt;}
.y17c{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y105{bottom:927.720000pt;}
.y81{bottom:931.704000pt;}
.y4e{bottom:934.080000pt;}
.ya2{bottom:935.290667pt;}
.y17b{bottom:935.889333pt;}
.y104{bottom:944.456000pt;}
.y80{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4d{bottom:950.817333pt;}
.y17a{bottom:951.230667pt;}
.y103{bottom:961.193333pt;}
.y7f{bottom:965.178667pt;}
.y179{bottom:966.573333pt;}
.y4c{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y7e{bottom:981.916000pt;}
.y4b{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4a{bottom:1043.020000pt;}
.h18{height:1.700288pt;}
.h1b{height:20.319273pt;}
.h7{height:22.673858pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h9{height:29.433775pt;}
.h1a{height:29.505434pt;}
.h8{height:30.399505pt;}
.hc{height:30.945242pt;}
.h10{height:31.157778pt;}
.h14{height:32.836730pt;}
.h16{height:33.285995pt;}
.h17{height:34.000589pt;}
.hd{height:34.430976pt;}
.he{height:34.813542pt;}
.h15{height:35.052646pt;}
.h11{height:36.984399pt;}
.h13{height:37.778179pt;}
.h6{height:38.256384pt;}
.hf{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1c{height:41.524400pt;}
.h2{height:45.271688pt;}
.h12{height:50.184458pt;}
.h5{height:68.861952pt;}
.h3{height:76.803391pt;}
.h19{height:88.132288pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:177.244958pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.410327pt;}
.x75{left:76.346667pt;}
.x76{left:127.222667pt;}
.x74{left:140.190667pt;}
.x7f{left:191.318667pt;}
.x80{left:195.969333pt;}
.x6{left:222.073333pt;}
.x5{left:223.020000pt;}
.x32{left:227.812000pt;}
.x6d{left:234.198667pt;}
.x72{left:238.730667pt;}
.x20{left:245.592000pt;}
.x24{left:249.054667pt;}
.x8{left:251.333333pt;}
.x68{left:256.649333pt;}
.x21{left:258.874667pt;}
.x25{left:260.056000pt;}
.x33{left:266.501333pt;}
.x98{left:267.544000pt;}
.x7a{left:268.593333pt;}
.x4e{left:270.637333pt;}
.x51{left:272.806667pt;}
.x7b{left:273.902667pt;}
.x47{left:275.138667pt;}
.xa8{left:276.245333pt;}
.x7{left:278.005333pt;}
.x52{left:284.761333pt;}
.x13{left:288.913333pt;}
.x73{left:290.850667pt;}
.x99{left:293.442667pt;}
.x14{left:302.196000pt;}
.x9a{left:303.757333pt;}
.x65{left:304.669333pt;}
.x15{left:308.705333pt;}
.x4f{left:314.492000pt;}
.x16{left:321.988000pt;}
.xa5{left:326.452000pt;}
.x43{left:334.901333pt;}
.x8f{left:339.948000pt;}
.x28{left:343.838667pt;}
.x44{left:346.420000pt;}
.x8e{left:349.624000pt;}
.x6a{left:351.894667pt;}
.x29{left:357.121333pt;}
.x66{left:361.194667pt;}
.x6b{left:362.821333pt;}
.x34{left:364.216000pt;}
.x91{left:365.564000pt;}
.x45{left:372.121333pt;}
.x67{left:374.478667pt;}
.x48{left:376.004000pt;}
.xa6{left:379.093333pt;}
.x46{left:380.032000pt;}
.x83{left:382.370667pt;}
.x5b{left:387.890667pt;}
.x71{left:389.490667pt;}
.x3e{left:391.194667pt;}
.x9b{left:392.638667pt;}
.x3d{left:393.536000pt;}
.xd{left:397.654667pt;}
.x5c{left:401.174667pt;}
.x35{left:402.905333pt;}
.xe{left:404.230667pt;}
.xf{left:407.429333pt;}
.x94{left:411.260000pt;}
.x9c{left:412.321333pt;}
.x10{left:414.004000pt;}
.x2d{left:415.090667pt;}
.x92{left:418.134667pt;}
.x97{left:426.137333pt;}
.x49{left:428.124000pt;}
.x8d{left:431.022667pt;}
.x84{left:433.968000pt;}
.x5f{left:438.448000pt;}
.x17{left:439.786667pt;}
.x50{left:440.997333pt;}
.x77{left:444.081333pt;}
.x39{left:448.809333pt;}
.x78{left:450.058667pt;}
.x60{left:451.732000pt;}
.x18{left:453.070667pt;}
.x7c{left:454.064000pt;}
.x2e{left:456.112000pt;}
.x1c{left:459.554667pt;}
.x7d{left:461.369333pt;}
.x2c{left:467.496000pt;}
.x95{left:469.089333pt;}
.x3a{left:471.794667pt;}
.x86{left:473.633333pt;}
.x1d{left:480.117333pt;}
.x4a{left:481.804000pt;}
.x63{left:485.132000pt;}
.x2a{left:491.582667pt;}
.x4b{left:495.086667pt;}
.x69{left:504.806667pt;}
.x9d{left:509.936000pt;}
.x6e{left:511.754667pt;}
.x9e{left:515.468000pt;}
.x96{left:517.894667pt;}
.x57{left:520.986667pt;}
.x85{left:523.641333pt;}
.x6f{left:525.038667pt;}
.x11{left:529.342667pt;}
.x58{left:530.820000pt;}
.x89{left:532.488000pt;}
.x12{left:535.917333pt;}
.x64{left:537.260000pt;}
.x70{left:538.486667pt;}
.x9f{left:543.780000pt;}
.x8a{left:546.944000pt;}
.x8b{left:557.494667pt;}
.x36{left:567.056000pt;}
.xa3{left:570.964000pt;}
.x93{left:575.660000pt;}
.xa0{left:579.278667pt;}
.x8c{left:585.904000pt;}
.xa1{left:588.741333pt;}
.x31{left:594.338667pt;}
.x1e{left:601.042667pt;}
.x90{left:604.257333pt;}
.x1f{left:607.850667pt;}
.x3f{left:609.998667pt;}
.xa2{left:613.122667pt;}
.x2b{left:615.424000pt;}
.x9{left:619.488000pt;}
.x40{left:621.906667pt;}
.xa{left:626.062667pt;}
.xb{left:632.578667pt;}
.x4c{left:635.841333pt;}
.xc{left:639.154667pt;}
.xa7{left:641.930667pt;}
.x37{left:643.865333pt;}
.x41{left:648.381333pt;}
.x19{left:651.870667pt;}
.x7e{left:653.606667pt;}
.x38{left:657.149333pt;}
.x42{left:659.373333pt;}
.x1a{left:661.298667pt;}
.x2f{left:665.574667pt;}
.x5d{left:669.585333pt;}
.x61{left:671.554667pt;}
.x79{left:674.936000pt;}
.x87{left:676.404000pt;}
.x4d{left:678.604000pt;}
.x5e{left:682.868000pt;}
.x53{left:686.130667pt;}
.x81{left:690.885333pt;}
.xa4{left:691.886667pt;}
.x59{left:695.240000pt;}
.x54{left:696.506667pt;}
.x82{left:697.532000pt;}
.x1b{left:700.062667pt;}
.x22{left:701.181333pt;}
.x3b{left:705.618667pt;}
.x30{left:707.678667pt;}
.x5a{left:710.830667pt;}
.x23{left:714.830667pt;}
.x55{left:719.606667pt;}
.x62{left:723.661333pt;}
.x3c{left:726.021333pt;}
.x26{left:727.152000pt;}
.x56{left:729.720000pt;}
.xa9{left:732.242667pt;}
.x6c{left:736.013333pt;}
.x27{left:740.436000pt;}
.x88{left:744.106667pt;}
}




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