
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff5d04032f9d566f830a0bdb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_387af422b40961821894d812.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_485928daa05cc8366b6f11a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ec9f27000da594407d58e990.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710000;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_82449b5cb7a91e22f00fcf7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.763000;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_aed7eecf16456f36beea6049.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_117a7cabac5ec94d6aa35222.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2c187c90592ea4bfb0057d0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c1d9278574e7e1995687603c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_eea356201e82d86f9e6b9149.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_922191f2e6b163bd37f02ed5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m20{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);}
.m11{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);}
.m27{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);}
.mf{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);}
.m8{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);}
.m13{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);}
.m16{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);}
.m1c{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);}
.m24{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);}
.m1{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);}
.m3{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);}
.m2{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);}
.m28{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);}
.m21{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);}
.m1a{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);}
.m1e{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);}
.m10{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);}
.m1b{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);}
.m22{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);}
.m29{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);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m14{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);}
.m6{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);}
.m1d{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);}
.ma{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);}
.m1f{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);}
.me{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);}
.mc{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);}
.m19{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);}
.m9{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);}
.m15{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);}
.m18{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);}
.m25{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);}
.m4{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls15{letter-spacing:-0.529200px;}
.ls14{letter-spacing:-0.352800px;}
.ls1b{letter-spacing:-0.211680px;}
.ls1a{letter-spacing:-0.158760px;}
.ls18{letter-spacing:-0.104664px;}
.ls17{letter-spacing:-0.092904px;}
.ls9{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000435px;}
.ls32{letter-spacing:0.000800px;}
.ls29{letter-spacing:0.001155px;}
.ls21{letter-spacing:0.001996px;}
.ls28{letter-spacing:0.002928px;}
.ls24{letter-spacing:0.002999px;}
.ls23{letter-spacing:0.003657px;}
.ls22{letter-spacing:0.003766px;}
.ls2e{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.005057px;}
.ls13{letter-spacing:0.017640px;}
.ls10{letter-spacing:0.123480px;}
.lse{letter-spacing:0.176400px;}
.ls16{letter-spacing:0.300468px;}
.lsf{letter-spacing:0.352800px;}
.ls11{letter-spacing:0.529200px;}
.ls19{letter-spacing:1.005480px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls4{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls12{letter-spacing:5.115600px;}
.ls1{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls33{letter-spacing:13.310991px;}
.ls36{letter-spacing:13.361589px;}
.ls30{letter-spacing:13.364771px;}
.ls2b{letter-spacing:13.427768px;}
.ls35{letter-spacing:13.436400px;}
.ls27{letter-spacing:13.448400px;}
.ls2a{letter-spacing:13.454400px;}
.ls2d{letter-spacing:13.645008px;}
.ls34{letter-spacing:13.743061px;}
.ls25{letter-spacing:13.763688px;}
.lsb{letter-spacing:14.550481px;}
.lsc{letter-spacing:14.944766px;}
.lsd{letter-spacing:14.979052px;}
.ls2c{letter-spacing:14.979812px;}
.ls1c{letter-spacing:16.000061px;}
.ls2f{letter-spacing:16.132753px;}
.ls1e{letter-spacing:16.305943px;}
.ls1d{letter-spacing:16.311825px;}
.ls26{letter-spacing:16.754096px;}
.lsa{letter-spacing:17.500061px;}
.ls31{letter-spacing:19.326871px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws72{word-spacing:-14.943900px;}
.ws58{word-spacing:-14.941668px;}
.ws59{word-spacing:-14.548296px;}
.ws15{word-spacing:-14.355754px;}
.ws95{word-spacing:-13.449600px;}
.ws57{word-spacing:-13.230000px;}
.ws5a{word-spacing:-13.071240px;}
.ws5b{word-spacing:-13.018320px;}
.ws33{word-spacing:-11.955150px;}
.ws55{word-spacing:-11.818800px;}
.ws56{word-spacing:-11.466000px;}
.ws12{word-spacing:-11.357400px;}
.ws69{word-spacing:-11.208000px;}
.ws6{word-spacing:-10.460700px;}
.ws7d{word-spacing:-3.526760px;}
.ws2d{word-spacing:-3.048556px;}
.ws2f{word-spacing:-2.630126px;}
.ws91{word-spacing:-2.510575px;}
.ws46{word-spacing:-2.391024px;}
.ws79{word-spacing:-2.271473px;}
.ws3f{word-spacing:-2.092146px;}
.ws84{word-spacing:-2.032370px;}
.ws9f{word-spacing:-1.990541px;}
.ws1{word-spacing:-1.908367px;}
.ws76{word-spacing:-1.853044px;}
.wsa0{word-spacing:-1.775347px;}
.wsa5{word-spacing:-1.667750px;}
.ws3c{word-spacing:-1.613941px;}
.ws3d{word-spacing:-1.554166px;}
.wsc2{word-spacing:-1.506355px;}
.ws7a{word-spacing:-1.494390px;}
.ws0{word-spacing:-1.322630px;}
.ws86{word-spacing:-1.315063px;}
.ws50{word-spacing:-1.195512px;}
.ws7{word-spacing:-1.171598px;}
.ws9{word-spacing:-1.046070px;}
.ws24{word-spacing:-1.016185px;}
.ws1f{word-spacing:-0.914573px;}
.ws74{word-spacing:-0.896634px;}
.ws78{word-spacing:-0.777083px;}
.ws70{word-spacing:-0.717307px;}
.ws98{word-spacing:-0.591782px;}
.ws4{word-spacing:-0.460271px;}
.ws4c{word-spacing:-0.418429px;}
.ws6b{word-spacing:-0.403488px;}
.ws42{word-spacing:-0.358654px;}
.wsaa{word-spacing:-0.322790px;}
.ws54{word-spacing:-0.298878px;}
.ws2c{word-spacing:-0.239102px;}
.wsb4{word-spacing:-0.215194px;}
.ws30{word-spacing:-0.179327px;}
.wsa3{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.wsad{word-spacing:-0.107597px;}
.ws6a{word-spacing:-0.089664px;}
.ws34{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.ws6c{word-spacing:-0.044832px;}
.wsa8{word-spacing:-0.006998px;}
.wsc6{word-spacing:-0.006624px;}
.wsab{word-spacing:-0.005414px;}
.wsc4{word-spacing:-0.004637px;}
.wsbb{word-spacing:-0.004522px;}
.wsac{word-spacing:-0.004214px;}
.wsaf{word-spacing:-0.003302px;}
.ws32{word-spacing:-0.002582px;}
.wsbd{word-spacing:-0.000422px;}
.ws3{word-spacing:0.000000px;}
.ws18{word-spacing:0.053798px;}
.ws36{word-spacing:0.059776px;}
.ws16{word-spacing:0.095641px;}
.ws1a{word-spacing:0.107597px;}
.ws26{word-spacing:0.119551px;}
.ws19{word-spacing:0.161395px;}
.ws48{word-spacing:0.179327px;}
.ws5c{word-spacing:0.215194px;}
.ws40{word-spacing:0.239102px;}
.ws9e{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.ws9b{word-spacing:0.322790px;}
.ws60{word-spacing:0.358654px;}
.ws82{word-spacing:0.418429px;}
.wsb1{word-spacing:0.591782px;}
.ws29{word-spacing:0.717307px;}
.ws4d{word-spacing:0.777083px;}
.ws6e{word-spacing:0.836858px;}
.ws28{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.ws66{word-spacing:1.016185px;}
.ws65{word-spacing:1.075961px;}
.ws6f{word-spacing:1.135736px;}
.wsb2{word-spacing:1.183565px;}
.ws2b{word-spacing:1.195512px;}
.ws49{word-spacing:1.255288px;}
.wsb9{word-spacing:1.291162px;}
.wsc1{word-spacing:1.343021px;}
.ws67{word-spacing:1.374839px;}
.ws4f{word-spacing:1.434614px;}
.ws7f{word-spacing:1.494390px;}
.ws88{word-spacing:1.554166px;}
.wsb3{word-spacing:1.560154px;}
.ws31{word-spacing:1.613941px;}
.ws87{word-spacing:1.673717px;}
.ws37{word-spacing:1.733492px;}
.ws7e{word-spacing:1.793268px;}
.ws8e{word-spacing:1.853044px;}
.ws64{word-spacing:2.092146px;}
.wsb6{word-spacing:2.098138px;}
.ws81{word-spacing:2.151922px;}
.ws61{word-spacing:2.331248px;}
.ws93{word-spacing:2.391024px;}
.ws21{word-spacing:2.420928px;}
.ws71{word-spacing:2.450800px;}
.ws4a{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws5{word-spacing:2.513172px;}
.ws4b{word-spacing:2.570351px;}
.ws2a{word-spacing:2.630126px;}
.ws39{word-spacing:2.689902px;}
.wsb7{word-spacing:2.689920px;}
.wsc0{word-spacing:2.743718px;}
.ws73{word-spacing:2.749678px;}
.ws90{word-spacing:2.809453px;}
.ws17{word-spacing:2.869236px;}
.ws1d{word-spacing:2.958912px;}
.ws5e{word-spacing:3.048556px;}
.ws53{word-spacing:3.108331px;}
.ws3b{word-spacing:3.168107px;}
.wsc5{word-spacing:3.208118px;}
.ws22{word-spacing:3.219667px;}
.wsba{word-spacing:3.220579px;}
.wsbe{word-spacing:3.221098px;}
.wsa7{word-spacing:3.222566px;}
.wsb0{word-spacing:3.222758px;}
.wsc3{word-spacing:3.223402px;}
.wsae{word-spacing:3.225446px;}
.wsbc{word-spacing:3.226800px;}
.ws85{word-spacing:3.227882px;}
.wsa6{word-spacing:3.227904px;}
.ws9c{word-spacing:3.281702px;}
.ws9d{word-spacing:3.335501px;}
.wsa4{word-spacing:3.443098px;}
.ws77{word-spacing:3.466985px;}
.wsb5{word-spacing:3.496896px;}
.ws99{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.wsa9{word-spacing:3.658291px;}
.ws38{word-spacing:3.706087px;}
.ws92{word-spacing:3.765863px;}
.ws96{word-spacing:3.765888px;}
.ws9a{word-spacing:3.819686px;}
.ws27{word-spacing:3.825638px;}
.ws1b{word-spacing:3.927283px;}
.ws8a{word-spacing:4.004965px;}
.ws62{word-spacing:4.064741px;}
.ws80{word-spacing:4.184292px;}
.ws45{word-spacing:4.244068px;}
.ws43{word-spacing:4.303843px;}
.ws97{word-spacing:4.357670px;}
.ws75{word-spacing:4.363619px;}
.ws41{word-spacing:4.483170px;}
.ws8f{word-spacing:4.602721px;}
.wsb8{word-spacing:4.626662px;}
.ws2e{word-spacing:4.662497px;}
.ws3a{word-spacing:4.722272px;}
.wsf{word-spacing:4.770079px;}
.ws10{word-spacing:4.853765px;}
.ws8c{word-spacing:4.901599px;}
.ws8b{word-spacing:4.961375px;}
.ws4e{word-spacing:5.021150px;}
.ws94{word-spacing:5.164646px;}
.ws89{word-spacing:5.260253px;}
.wsbf{word-spacing:5.379840px;}
.ws8d{word-spacing:5.439580px;}
.ws1e{word-spacing:5.487437px;}
.ws47{word-spacing:5.559131px;}
.ws1c{word-spacing:5.648832px;}
.ws5f{word-spacing:5.858009px;}
.ws68{word-spacing:6.037336px;}
.ws5d{word-spacing:6.097111px;}
.ws52{word-spacing:6.455765px;}
.ws3e{word-spacing:6.515540px;}
.wsa2{word-spacing:6.563405px;}
.ws44{word-spacing:6.575316px;}
.ws7b{word-spacing:6.694867px;}
.wsa1{word-spacing:6.939994px;}
.ws83{word-spacing:7.173072px;}
.wsd{word-spacing:7.782761px;}
.ws7c{word-spacing:7.830604px;}
.ws6d{word-spacing:8.009930px;}
.ws51{word-spacing:8.189257px;}
.ws63{word-spacing:8.308808px;}
.wsb{word-spacing:12.176255px;}
.wsc{word-spacing:16.109478px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws13{word-spacing:39.479734px;}
.ws14{word-spacing:40.036186px;}
.ws11{word-spacing:40.042186px;}
._20{margin-left:-19.399968px;}
._14{margin-left:-7.344832px;}
._9{margin-left:-6.174725px;}
._4{margin-left:-4.644551px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._8{width:3.692389px;}
._1a{width:4.953648px;}
._19{width:6.032174px;}
._23{width:10.566551px;}
._3{width:12.971268px;}
._d{width:14.826968px;}
._b{width:16.731302px;}
._c{width:18.351109px;}
._17{width:19.631802px;}
._11{width:20.742133px;}
._15{width:22.278353px;}
._13{width:23.439602px;}
._1f{width:24.941560px;}
._a{width:26.199821px;}
._10{width:27.795654px;}
._16{width:29.476938px;}
._6{width:30.587087px;}
._7{width:33.355008px;}
._1c{width:37.531510px;}
._12{width:38.861707px;}
._1b{width:44.670319px;}
._22{width:61.868160px;}
._1d{width:300.508896px;}
._1e{width:944.072256px;}
._e{width:959.282854px;}
._18{width:2005.693234px;}
._21{width:2455.947000px;}
._f{width:2479.857000px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc2{color:rgb(14,15,14);}
.fc3{color:rgb(46,92,87);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs8{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fse{font-size:44.832000px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.275200px;}
.fs9{font-size:47.820600px;}
.fsd{font-size:52.920000px;}
.fsa{font-size:53.798400px;}
.fs3{font-size:56.694600px;}
.fsc{font-size:58.564800px;}
.fs5{font-size:59.775600px;}
.fs4{font-size:71.813160px;}
.fs6{font-size:107.596800px;}
.y9c{bottom:-797.169240px;}
.yc1{bottom:-708.051960px;}
.yc0{bottom:-690.235560px;}
.yba{bottom:-672.425040px;}
.ybd{bottom:-663.428640px;}
.yb9{bottom:-654.432240px;}
.ybc{bottom:-645.612240px;}
.yb8{bottom:-636.615840px;}
.ybb{bottom:-627.795840px;}
.yb7{bottom:-618.799440px;}
.ybf{bottom:-600.983040px;}
.ybe{bottom:-583.166640px;}
.yb6{bottom:-564.468240px;}
.yb5{bottom:-536.597040px;}
.yb4{bottom:-501.449340px;}
.yb3{bottom:-482.574540px;}
.yb2{bottom:-463.699740px;}
.yb1{bottom:-444.824940px;}
.yb0{bottom:-426.126540px;}
.yaf{bottom:-407.251740px;}
.yae{bottom:-383.966940px;}
.yad{bottom:-360.682140px;}
.yac{bottom:-324.167340px;}
.yab{bottom:-305.468940px;}
.yaa{bottom:-286.594140px;}
.ya9{bottom:-267.719340px;}
.ya8{bottom:-248.844540px;}
.ya7{bottom:-229.940340px;}
.ya6{bottom:-206.831940px;}
.ya5{bottom:-170.317140px;}
.ya4{bottom:-151.442340px;}
.ya3{bottom:-132.567540px;}
.ya2{bottom:-113.692740px;}
.ya1{bottom:-94.817940px;}
.ya0{bottom:-71.709540px;}
.y9f{bottom:-35.723940px;}
.y9e{bottom:-18.789540px;}
.y0{bottom:0.000000px;}
.y24{bottom:2.692616px;}
.y9d{bottom:3.260460px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y23{bottom:21.969157px;}
.y53{bottom:31.890000px;}
.y22{bottom:38.977537px;}
.y162{bottom:91.665000px;}
.y137{bottom:93.444000px;}
.yc3{bottom:95.787000px;}
.y1e9{bottom:100.737000px;}
.y193{bottom:103.158000px;}
.y86{bottom:104.503500px;}
.y20{bottom:104.646000px;}
.y1b8{bottom:107.193000px;}
.y161{bottom:110.494500px;}
.y136{bottom:112.273500px;}
.yc2{bottom:115.020000px;}
.y52{bottom:115.873500px;}
.y1e8{bottom:117.997500px;}
.y21f{bottom:121.762500px;}
.y192{bottom:121.987500px;}
.y1f{bottom:122.535000px;}
.y85{bottom:123.333000px;}
.y1b7{bottom:126.022500px;}
.y160{bottom:129.324000px;}
.y135{bottom:131.103000px;}
.y51{bottom:134.703000px;}
.y1e7{bottom:135.258000px;}
.y21e{bottom:139.023000px;}
.y1e{bottom:140.422500px;}
.y99{bottom:140.437500px;}
.y191{bottom:140.817000px;}
.y84{bottom:142.162500px;}
.y1b6{bottom:144.852000px;}
.y15f{bottom:148.153500px;}
.y134{bottom:149.932500px;}
.y1e6{bottom:152.518500px;}
.y50{bottom:153.532500px;}
.y113{bottom:153.937500px;}
.y21d{bottom:156.283500px;}
.y1d{bottom:158.310000px;}
.y190{bottom:159.646500px;}
.y83{bottom:160.992000px;}
.y1b5{bottom:163.681500px;}
.y112{bottom:165.145500px;}
.y1e5{bottom:169.779000px;}
.y4f{bottom:172.362000px;}
.y133{bottom:173.245500px;}
.y21c{bottom:173.544000px;}
.y15e{bottom:174.453000px;}
.y1c{bottom:176.199000px;}
.y111{bottom:176.353500px;}
.y18f{bottom:178.476000px;}
.y82{bottom:179.821500px;}
.y1b4{bottom:182.511000px;}
.y1e4{bottom:187.039500px;}
.y10d{bottom:190.474500px;}
.y21b{bottom:190.804500px;}
.y4e{bottom:191.191500px;}
.y110{bottom:193.165500px;}
.y15d{bottom:193.282500px;}
.y1b{bottom:194.086500px;}
.y18e{bottom:197.305500px;}
.y81{bottom:198.651000px;}
.y1b3{bottom:201.340500px;}
.y10c{bottom:203.238000px;}
.y1e3{bottom:204.300000px;}
.y10f{bottom:204.373500px;}
.y132{bottom:206.869500px;}
.y21a{bottom:208.065000px;}
.y4d{bottom:210.021000px;}
.y1a{bottom:211.974000px;}
.y15c{bottom:212.112000px;}
.y10e{bottom:215.581500px;}
.y18d{bottom:216.135000px;}
.y80{bottom:217.480500px;}
.y1b2{bottom:220.170000px;}
.y1e2{bottom:221.560500px;}
.y219{bottom:225.325500px;}
.y131{bottom:225.699000px;}
.y4c{bottom:228.850500px;}
.y19{bottom:229.863000px;}
.y10b{bottom:232.393500px;}
.y18c{bottom:234.964500px;}
.y15b{bottom:235.425000px;}
.y7f{bottom:236.310000px;}
.y1e1{bottom:238.819500px;}
.y1b1{bottom:238.999500px;}
.y218{bottom:242.586000px;}
.y10a{bottom:243.601500px;}
.y130{bottom:244.528500px;}
.y4b{bottom:247.680000px;}
.y18b{bottom:253.794000px;}
.y109{bottom:254.809500px;}
.y7e{bottom:255.138000px;}
.y1e0{bottom:256.080000px;}
.y102{bottom:257.722500px;}
.y217{bottom:259.846500px;}
.y1b0{bottom:262.311000px;}
.y4a{bottom:266.509500px;}
.y12f{bottom:267.841500px;}
.y15a{bottom:269.049000px;}
.y101{bottom:270.486000px;}
.y108{bottom:271.621500px;}
.y18a{bottom:272.623500px;}
.y1df{bottom:273.340500px;}
.y7d{bottom:273.967500px;}
.y104{bottom:274.534500px;}
.y216{bottom:277.105500px;}
.y107{bottom:282.829500px;}
.y49{bottom:285.339000px;}
.y103{bottom:287.298000px;}
.y159{bottom:287.878500px;}
.y1de{bottom:290.601000px;}
.y189{bottom:291.453000px;}
.y7c{bottom:292.797000px;}
.y106{bottom:294.037500px;}
.y215{bottom:294.366000px;}
.y1af{bottom:295.935000px;}
.y18{bottom:300.154500px;}
.y12e{bottom:301.465500px;}
.y48{bottom:304.168500px;}
.y105{bottom:305.245500px;}
.y158{bottom:306.708000px;}
.y1dd{bottom:307.861500px;}
.y188{bottom:310.282500px;}
.y7b{bottom:311.626500px;}
.y9b{bottom:314.503560px;}
.y1ae{bottom:314.764500px;}
.y17{bottom:318.043500px;}
.y12d{bottom:320.295000px;}
.y47{bottom:322.998000px;}
.y9a{bottom:323.852760px;}
.y1dc{bottom:325.122000px;}
.y157{bottom:325.537500px;}
.y214{bottom:328.887000px;}
.y187{bottom:329.112000px;}
.y100{bottom:329.259000px;}
.y7a{bottom:330.456000px;}
.y1ad{bottom:333.594000px;}
.y16{bottom:335.931000px;}
.y12c{bottom:339.124500px;}
.yff{bottom:340.467000px;}
.y46{bottom:341.827500px;}
.y1db{bottom:342.382500px;}
.y156{bottom:344.367000px;}
.y213{bottom:346.147500px;}
.yfb{bottom:346.960500px;}
.y186{bottom:347.941500px;}
.y79{bottom:349.285500px;}
.y1ac{bottom:352.423500px;}
.y15{bottom:353.818500px;}
.yfe{bottom:357.279000px;}
.y12b{bottom:357.954000px;}
.y1da{bottom:359.643000px;}
.yfa{bottom:359.725500px;}
.y45{bottom:360.657000px;}
.y155{bottom:363.196500px;}
.y212{bottom:363.408000px;}
.y185{bottom:366.771000px;}
.y78{bottom:368.115000px;}
.yfd{bottom:368.487000px;}
.y1ab{bottom:371.253000px;}
.yf9{bottom:372.489000px;}
.y1d9{bottom:376.902000px;}
.y44{bottom:379.486500px;}
.yfc{bottom:379.695000px;}
.y211{bottom:380.668500px;}
.y14{bottom:380.673000px;}
.y12a{bottom:384.255000px;}
.y184{bottom:385.600500px;}
.yf1{bottom:386.145000px;}
.y154{bottom:386.508000px;}
.y1aa{bottom:390.082500px;}
.y77{bottom:391.428000px;}
.y1d8{bottom:394.162500px;}
.yf8{bottom:396.507000px;}
.yf0{bottom:397.353000px;}
.y210{bottom:397.929000px;}
.y13{bottom:398.562000px;}
.y43{bottom:402.798000px;}
.y129{bottom:403.084500px;}
.y183{bottom:404.428500px;}
.yf7{bottom:407.715000px;}
.y1a9{bottom:408.912000px;}
.yef{bottom:410.116500px;}
.yf4{bottom:411.375000px;}
.y1d7{bottom:411.423000px;}
.y20f{bottom:415.188000px;}
.y12{bottom:416.449500px;}
.y153{bottom:420.132000px;}
.y128{bottom:421.914000px;}
.yf3{bottom:422.583000px;}
.yee{bottom:422.880000px;}
.y182{bottom:423.258000px;}
.yf6{bottom:424.527000px;}
.y76{bottom:425.052000px;}
.y1a8{bottom:427.741500px;}
.y1d6{bottom:428.683500px;}
.y20e{bottom:432.448500px;}
.yf2{bottom:433.791000px;}
.yf5{bottom:435.735000px;}
.y152{bottom:438.961500px;}
.y127{bottom:440.743500px;}
.y181{bottom:442.087500px;}
.y75{bottom:443.881500px;}
.y11{bottom:444.798000px;}
.y98{bottom:445.674000px;}
.y1d5{bottom:445.944000px;}
.y1a7{bottom:446.571000px;}
.y20d{bottom:449.709000px;}
.y151{bottom:457.791000px;}
.y126{bottom:459.573000px;}
.yed{bottom:459.750000px;}
.y180{bottom:460.917000px;}
.y10{bottom:462.685500px;}
.y74{bottom:462.711000px;}
.y1d4{bottom:463.204500px;}
.y97{bottom:464.503500px;}
.y1a6{bottom:465.400500px;}
.y20c{bottom:466.969500px;}
.yec{bottom:470.958000px;}
.y150{bottom:476.620500px;}
.y42{bottom:477.948000px;}
.y17f{bottom:479.746500px;}
.y1d3{bottom:480.465000px;}
.y73{bottom:481.540500px;}
.yeb{bottom:482.166000px;}
.ye8{bottom:482.713500px;}
.y96{bottom:483.333000px;}
.y1a5{bottom:484.230000px;}
.y125{bottom:485.874000px;}
.yf{bottom:489.540000px;}
.y14f{bottom:495.450000px;}
.ye7{bottom:495.477000px;}
.y1d2{bottom:497.725500px;}
.y17e{bottom:498.576000px;}
.yea{bottom:498.976500px;}
.y72{bottom:500.370000px;}
.y20b{bottom:501.490500px;}
.y95{bottom:502.162500px;}
.y1a4{bottom:503.059500px;}
.y124{bottom:504.703500px;}
.ye{bottom:507.429000px;}
.ye6{bottom:508.240500px;}
.ye9{bottom:510.184500px;}
.y1d1{bottom:514.986000px;}
.y41{bottom:515.338500px;}
.y17d{bottom:517.405500px;}
.y20a{bottom:518.751000px;}
.y71{bottom:519.199500px;}
.y94{bottom:520.992000px;}
.y14e{bottom:521.749500px;}
.y1a3{bottom:521.889000px;}
.y123{bottom:523.533000px;}
.yd{bottom:525.316500px;}
.ye5{bottom:526.996500px;}
.y1d0{bottom:532.245000px;}
.ydd{bottom:532.497000px;}
.y40{bottom:534.795000px;}
.y209{bottom:536.011500px;}
.y17c{bottom:536.235000px;}
.y70{bottom:538.029000px;}
.ye4{bottom:538.204500px;}
.y93{bottom:539.821500px;}
.y14d{bottom:540.579000px;}
.y1a2{bottom:540.718500px;}
.y122{bottom:542.362500px;}
.yc{bottom:543.204000px;}
.ydc{bottom:545.262000px;}
.ye3{bottom:549.412500px;}
.y1cf{bottom:549.505500px;}
.y208{bottom:553.272000px;}
.y3f{bottom:554.253000px;}
.y17b{bottom:555.064500px;}
.ydb{bottom:558.025500px;}
.y92{bottom:558.651000px;}
.y14c{bottom:559.408500px;}
.y1a1{bottom:559.548000px;}
.yb{bottom:561.093000px;}
.y6f{bottom:561.342000px;}
.ydf{bottom:563.533500px;}
.y121{bottom:565.675500px;}
.ye2{bottom:566.224500px;}
.y1ce{bottom:566.766000px;}
.y207{bottom:570.531000px;}
.yda{bottom:570.789000px;}
.y3e{bottom:573.709500px;}
.y17a{bottom:573.894000px;}
.yde{bottom:576.297000px;}
.ye1{bottom:577.432500px;}
.y14b{bottom:578.238000px;}
.y1a0{bottom:578.377500px;}
.ya{bottom:578.980500px;}
.y120{bottom:581.365500px;}
.y91{bottom:581.964000px;}
.y1cd{bottom:584.026500px;}
.y206{bottom:587.791500px;}
.ye0{bottom:588.640500px;}
.y3d{bottom:593.166000px;}
.y6e{bottom:594.964500px;}
.y9{bottom:596.868000px;}
.y14a{bottom:597.067500px;}
.y179{bottom:597.207000px;}
.y205{bottom:605.052000px;}
.y1cc{bottom:605.770500px;}
.y3c{bottom:612.624000px;}
.yd9{bottom:612.655500px;}
.y6d{bottom:613.794000px;}
.y8{bottom:614.757000px;}
.y11f{bottom:614.989500px;}
.y90{bottom:615.588000px;}
.y149{bottom:615.897000px;}
.y19f{bottom:616.036500px;}
.y204{bottom:622.312500px;}
.y178{bottom:630.831000px;}
.y3b{bottom:632.080500px;}
.y6c{bottom:632.623500px;}
.y7{bottom:632.644500px;}
.y11e{bottom:633.819000px;}
.y8f{bottom:634.417500px;}
.y19e{bottom:634.866000px;}
.y203{bottom:639.573000px;}
.y148{bottom:642.196500px;}
.y1cb{bottom:642.532500px;}
.yd8{bottom:647.524500px;}
.y177{bottom:649.660500px;}
.y6{bottom:650.532000px;}
.y6b{bottom:651.453000px;}
.y3a{bottom:651.538500px;}
.y11d{bottom:652.648500px;}
.y8e{bottom:653.247000px;}
.y19d{bottom:653.695500px;}
.y202{bottom:656.833500px;}
.y147{bottom:661.026000px;}
.y5{bottom:668.421000px;}
.y176{bottom:668.490000px;}
.y1ca{bottom:669.073500px;}
.y6a{bottom:670.282500px;}
.y39{bottom:670.995000px;}
.y11c{bottom:671.478000px;}
.y8d{bottom:672.076500px;}
.y19c{bottom:672.525000px;}
.y201{bottom:674.094000px;}
.y146{bottom:679.855500px;}
.yd7{bottom:684.630000px;}
.y4{bottom:686.308500px;}
.y1c9{bottom:686.647500px;}
.y175{bottom:687.319500px;}
.y11b{bottom:690.307500px;}
.y38{bottom:690.451500px;}
.y8c{bottom:690.906000px;}
.y19b{bottom:691.354500px;}
.y69{bottom:693.595500px;}
.y145{bottom:698.685000px;}
.yd6{bottom:703.458000px;}
.y1{bottom:704.196055px;}
.y1c8{bottom:704.221500px;}
.y200{bottom:708.613500px;}
.y11a{bottom:709.137000px;}
.y8b{bottom:709.735500px;}
.y37{bottom:709.909500px;}
.y19a{bottom:710.184000px;}
.y174{bottom:713.620500px;}
.y144{bottom:721.998000px;}
.yd5{bottom:722.287500px;}
.y1ff{bottom:725.874000px;}
.y68{bottom:727.219500px;}
.y8a{bottom:728.565000px;}
.y199{bottom:729.013500px;}
.y1c7{bottom:730.761000px;}
.y173{bottom:732.450000px;}
.y119{bottom:735.439500px;}
.yd4{bottom:741.117000px;}
.y1fe{bottom:743.134500px;}
.y67{bottom:746.049000px;}
.y89{bottom:747.394500px;}
.y198{bottom:747.843000px;}
.y36{bottom:748.494000px;}
.y172{bottom:751.279500px;}
.y118{bottom:754.269000px;}
.y143{bottom:755.622000px;}
.y1c6{bottom:757.302000px;}
.yd3{bottom:759.946500px;}
.y1fd{bottom:760.395000px;}
.y66{bottom:764.878500px;}
.y88{bottom:766.224000px;}
.y197{bottom:766.671000px;}
.y35{bottom:768.973500px;}
.y171{bottom:770.109000px;}
.y117{bottom:773.097000px;}
.y142{bottom:774.451500px;}
.y1c5{bottom:774.876000px;}
.y1fc{bottom:777.655500px;}
.yd2{bottom:778.776000px;}
.y34{bottom:780.774000px;}
.y87{bottom:785.053500px;}
.y196{bottom:785.500500px;}
.y65{bottom:788.191500px;}
.y170{bottom:788.938500px;}
.y116{bottom:791.926500px;}
.y1fb{bottom:794.916000px;}
.y141{bottom:800.749500px;}
.y33{bottom:801.253500px;}
.y1c4{bottom:801.417000px;}
.yd1{bottom:802.089000px;}
.y195{bottom:804.330000px;}
.y64{bottom:808.365000px;}
.y115{bottom:810.756000px;}
.y1fa{bottom:812.176500px;}
.y32{bottom:813.052500px;}
.y16f{bottom:815.239500px;}
.y1c3{bottom:818.991000px;}
.y140{bottom:819.579000px;}
.yd0{bottom:822.264000px;}
.y194{bottom:823.159500px;}
.y1f9{bottom:829.437000px;}
.y31{bottom:833.532000px;}
.y16e{bottom:834.069000px;}
.y1c2{bottom:836.565000px;}
.y114{bottom:837.058500px;}
.y13f{bottom:838.408500px;}
.y63{bottom:841.989000px;}
.y1f8{bottom:846.697500px;}
.y30{bottom:849.672000px;}
.y16d{bottom:852.898500px;}
.ycf{bottom:855.888000px;}
.y13e{bottom:857.238000px;}
.y62{bottom:860.818500px;}
.y1c1{bottom:863.106000px;}
.y1f7{bottom:863.956500px;}
.y2f{bottom:865.810500px;}
.y16c{bottom:871.728000px;}
.yce{bottom:874.717500px;}
.y61{bottom:879.648000px;}
.y1c0{bottom:880.680000px;}
.y1f6{bottom:881.217000px;}
.y2e{bottom:881.950500px;}
.y13d{bottom:883.537500px;}
.y16b{bottom:890.557500px;}
.ycd{bottom:893.547000px;}
.y2d{bottom:893.751000px;}
.y1bf{bottom:898.254000px;}
.y60{bottom:898.477500px;}
.y13c{bottom:902.367000px;}
.y16a{bottom:909.387000px;}
.y2c{bottom:909.889500px;}
.ycc{bottom:912.376500px;}
.y2b{bottom:914.229000px;}
.y1f5{bottom:915.738000px;}
.y1be{bottom:915.828000px;}
.y5f{bottom:917.307000px;}
.y13b{bottom:928.666500px;}
.ycb{bottom:931.206000px;}
.y169{bottom:932.700000px;}
.y1f4{bottom:932.998500px;}
.y1bd{bottom:933.402000px;}
.y5e{bottom:936.136500px;}
.y13a{bottom:947.496000px;}
.yca{bottom:950.034000px;}
.y1f3{bottom:950.259000px;}
.y1bc{bottom:950.976000px;}
.y5d{bottom:954.966000px;}
.y2a{bottom:958.906500px;}
.y168{bottom:966.324000px;}
.y139{bottom:966.325500px;}
.y1f2{bottom:967.519500px;}
.y1bb{bottom:968.550000px;}
.yc9{bottom:973.347000px;}
.y5c{bottom:973.795500px;}
.y29{bottom:977.736000px;}
.y1f1{bottom:984.780000px;}
.y167{bottom:985.153500px;}
.y138{bottom:985.155000px;}
.y5b{bottom:992.625000px;}
.y1ba{bottom:995.091000px;}
.y28{bottom:996.565500px;}
.y1ef{bottom:1002.039000px;}
.y1f0{bottom:1002.040500px;}
.y166{bottom:1003.983000px;}
.yc8{bottom:1006.971000px;}
.y5a{bottom:1011.454500px;}
.y1b9{bottom:1013.136000px;}
.y1ee{bottom:1019.299500px;}
.y165{bottom:1022.812500px;}
.yc7{bottom:1025.800500px;}
.y59{bottom:1030.284000px;}
.y27{bottom:1036.485000px;}
.y1ed{bottom:1036.560000px;}
.y164{bottom:1041.642000px;}
.yc6{bottom:1044.630000px;}
.y58{bottom:1049.113500px;}
.y1ec{bottom:1053.820500px;}
.y163{bottom:1060.471500px;}
.yc5{bottom:1063.459500px;}
.y26{bottom:1064.728500px;}
.y57{bottom:1067.943000px;}
.y1eb{bottom:1071.081000px;}
.yc4{bottom:1082.289000px;}
.y56{bottom:1086.772500px;}
.y1ea{bottom:1088.341500px;}
.y25{bottom:1092.972000px;}
.y55{bottom:1105.602000px;}
.y21{bottom:1136.460000px;}
.y54{bottom:1168.366500px;}
.h1e{height:-640.490760px;}
.h1c{height:-569.231040px;}
.h1b{height:-569.225160px;}
.h1a{height:-550.532640px;}
.h2{height:25.508090px;}
.hd{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.712615px;}
.h1f{height:32.279040px;}
.h20{height:32.637696px;}
.h21{height:32.906688px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h16{height:34.509973px;}
.h15{height:34.648474px;}
.he{height:34.813397px;}
.h13{height:35.100320px;}
.h18{height:38.630566px;}
.hf{height:38.734848px;}
.h1d{height:38.785605px;}
.h10{height:39.165235px;}
.h8{height:39.402747px;}
.h22{height:39.488026px;}
.h17{height:42.751160px;}
.h19{height:42.922737px;}
.h11{height:43.038432px;}
.h12{height:43.516637px;}
.ha{height:43.875290px;}
.h9{height:48.689322px;}
.h7{height:50.931027px;}
.hc{height:54.405312px;}
.hb{height:77.469696px;}
.h14{height:281.597610px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w6{width:139.567680px;}
.w5{width:148.911000px;}
.w3{width:209.166223px;}
.w7{width:480.939900px;}
.w4{width:783.213501px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:1.058400px;}
.x32{left:2.245131px;}
.x3c{left:6.350400px;}
.x43{left:7.761600px;}
.x3f{left:8.996400px;}
.x3e{left:11.642400px;}
.x40{left:14.641200px;}
.x2{left:29.274117px;}
.x39{left:31.575600px;}
.x37{left:32.634000px;}
.x1{left:53.574073px;}
.x31{left:54.640059px;}
.x36{left:56.885190px;}
.x3{left:58.694030px;}
.x57{left:64.120500px;}
.x3d{left:65.656080px;}
.x4a{left:67.309500px;}
.x62{left:72.352500px;}
.x49{left:78.999000px;}
.x48{left:84.261000px;}
.x56{left:85.404000px;}
.x4b{left:87.466500px;}
.x58{left:103.902000px;}
.x3b{left:172.019400px;}
.x34{left:194.021331px;}
.x5e{left:195.274500px;}
.x59{left:197.173500px;}
.x64{left:202.038000px;}
.x42{left:203.065800px;}
.x51{left:204.213000px;}
.x38{left:205.796190px;}
.x5d{left:206.806500px;}
.x66{left:210.303000px;}
.x63{left:214.501500px;}
.x52{left:220.425000px;}
.x44{left:222.469800px;}
.x35{left:225.244131px;}
.x5f{left:235.920000px;}
.x5a{left:242.689500px;}
.x2e{left:247.348500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x2c{left:253.974000px;}
.x5{left:269.764500px;}
.xd{left:280.396500px;}
.x8{left:281.479500px;}
.x2d{left:286.282500px;}
.xe{left:287.868000px;}
.x84{left:295.963500px;}
.x45{left:306.813000px;}
.x7{left:308.127000px;}
.x8e{left:309.453000px;}
.x85{left:310.906500px;}
.x11{left:312.853500px;}
.x12{left:320.325000px;}
.x82{left:328.831500px;}
.x81{left:333.397500px;}
.x83{left:343.774500px;}
.x3a{left:345.372690px;}
.x60{left:348.216000px;}
.x4c{left:349.284000px;}
.x17{left:352.129500px;}
.x5b{left:353.157000px;}
.x4f{left:354.922500px;}
.x4e{left:358.122000px;}
.x18{left:359.601000px;}
.x65{left:360.711000px;}
.x54{left:362.185500px;}
.x19{left:363.345000px;}
.x5c{left:366.493500px;}
.x1a{left:378.288000px;}
.x67{left:390.517500px;}
.x6f{left:393.669000px;}
.x1b{left:397.552500px;}
.x1c{left:412.497000px;}
.x13{left:414.805500px;}
.x8d{left:417.768000px;}
.x1d{left:419.983500px;}
.x14{left:422.277000px;}
.x15{left:429.816000px;}
.x8f{left:433.692000px;}
.x1e{left:434.928000px;}
.x16{left:437.289000px;}
.x87{left:439.087500px;}
.x4d{left:444.450000px;}
.x50{left:446.910000px;}
.x53{left:451.813500px;}
.x88{left:454.032000px;}
.x68{left:455.164500px;}
.x77{left:458.737500px;}
.x78{left:466.209000px;}
.x73{left:478.128000px;}
.x9{left:480.319500px;}
.xa{left:487.791000px;}
.x79{left:488.929500px;}
.x74{left:493.071000px;}
.x75{left:496.882500px;}
.x7a{left:503.874000px;}
.x7b{left:507.684000px;}
.x76{left:511.827000px;}
.x61{left:515.827500px;}
.x70{left:519.543000px;}
.x7c{left:522.628500px;}
.x7d{left:526.438500px;}
.x71{left:534.487500px;}
.x7e{left:541.383000px;}
.x46{left:553.975500px;}
.x86{left:556.662000px;}
.x47{left:568.920000px;}
.x69{left:572.244000px;}
.x55{left:573.738000px;}
.x6a{left:595.518000px;}
.x2a{left:616.102500px;}
.x6d{left:624.481500px;}
.x89{left:627.081000px;}
.x2b{left:631.047000px;}
.x6e{left:639.426000px;}
.x8a{left:642.024000px;}
.x23{left:647.908500px;}
.x90{left:654.382500px;}
.x93{left:657.354000px;}
.x24{left:662.851500px;}
.x25{left:666.663000px;}
.x26{left:681.606000px;}
.x94{left:684.253500px;}
.x1f{left:704.949000px;}
.x9a{left:708.852000px;}
.x27{left:710.278500px;}
.xf{left:718.140000px;}
.x20{left:719.893500px;}
.x91{left:720.985500px;}
.x21{left:723.618000px;}
.x10{left:725.613000px;}
.x28{left:729.033000px;}
.x22{left:738.561000px;}
.x72{left:740.850000px;}
.x29{left:743.976000px;}
.x92{left:747.885000px;}
.xb{left:755.470500px;}
.xc{left:762.943500px;}
.x6b{left:763.986000px;}
.x95{left:768.165000px;}
.x33{left:780.668931px;}
.x98{left:783.016500px;}
.x6c{left:787.342500px;}
.x96{left:795.049500px;}
.x8b{left:798.669000px;}
.x99{left:809.914500px;}
.x8c{left:813.613500px;}
.x7f{left:817.716000px;}
.x2f{left:818.968500px;}
.x97{left:821.947500px;}
.x80{left:832.659000px;}
.x30{left:833.911500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls15{letter-spacing:-0.470400pt;}
.ls14{letter-spacing:-0.313600pt;}
.ls1b{letter-spacing:-0.188160pt;}
.ls1a{letter-spacing:-0.141120pt;}
.ls18{letter-spacing:-0.093035pt;}
.ls17{letter-spacing:-0.082581pt;}
.ls9{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000387pt;}
.ls32{letter-spacing:0.000711pt;}
.ls29{letter-spacing:0.001026pt;}
.ls21{letter-spacing:0.001774pt;}
.ls28{letter-spacing:0.002603pt;}
.ls24{letter-spacing:0.002666pt;}
.ls23{letter-spacing:0.003251pt;}
.ls22{letter-spacing:0.003348pt;}
.ls2e{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.004495pt;}
.ls13{letter-spacing:0.015680pt;}
.ls10{letter-spacing:0.109760pt;}
.lse{letter-spacing:0.156800pt;}
.ls16{letter-spacing:0.267083pt;}
.lsf{letter-spacing:0.313600pt;}
.ls11{letter-spacing:0.470400pt;}
.ls19{letter-spacing:0.893760pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls4{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls12{letter-spacing:4.547200pt;}
.ls1{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls33{letter-spacing:11.831992pt;}
.ls36{letter-spacing:11.876968pt;}
.ls30{letter-spacing:11.879797pt;}
.ls2b{letter-spacing:11.935794pt;}
.ls35{letter-spacing:11.943467pt;}
.ls27{letter-spacing:11.954133pt;}
.ls2a{letter-spacing:11.959467pt;}
.ls2d{letter-spacing:12.128896pt;}
.ls34{letter-spacing:12.216054pt;}
.ls25{letter-spacing:12.234390pt;}
.lsb{letter-spacing:12.933761pt;}
.lsc{letter-spacing:13.284237pt;}
.lsd{letter-spacing:13.314713pt;}
.ls2c{letter-spacing:13.315388pt;}
.ls1c{letter-spacing:14.222276pt;}
.ls2f{letter-spacing:14.340225pt;}
.ls1e{letter-spacing:14.494171pt;}
.ls1d{letter-spacing:14.499400pt;}
.ls26{letter-spacing:14.892530pt;}
.lsa{letter-spacing:15.555609pt;}
.ls31{letter-spacing:17.179441pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws72{word-spacing:-13.283467pt;}
.ws58{word-spacing:-13.281483pt;}
.ws59{word-spacing:-12.931819pt;}
.ws15{word-spacing:-12.760670pt;}
.ws95{word-spacing:-11.955200pt;}
.ws57{word-spacing:-11.760000pt;}
.ws5a{word-spacing:-11.618880pt;}
.ws5b{word-spacing:-11.571840pt;}
.ws33{word-spacing:-10.626800pt;}
.ws55{word-spacing:-10.505600pt;}
.ws56{word-spacing:-10.192000pt;}
.ws12{word-spacing:-10.095467pt;}
.ws69{word-spacing:-9.962667pt;}
.ws6{word-spacing:-9.298400pt;}
.ws7d{word-spacing:-3.134898pt;}
.ws2d{word-spacing:-2.709827pt;}
.ws2f{word-spacing:-2.337890pt;}
.ws91{word-spacing:-2.231622pt;}
.ws46{word-spacing:-2.125355pt;}
.ws79{word-spacing:-2.019087pt;}
.ws3f{word-spacing:-1.859685pt;}
.ws84{word-spacing:-1.806551pt;}
.ws9f{word-spacing:-1.769370pt;}
.ws1{word-spacing:-1.696326pt;}
.ws76{word-spacing:-1.647150pt;}
.wsa0{word-spacing:-1.578086pt;}
.wsa5{word-spacing:-1.482445pt;}
.ws3c{word-spacing:-1.434614pt;}
.ws3d{word-spacing:-1.381481pt;}
.wsc2{word-spacing:-1.338982pt;}
.ws7a{word-spacing:-1.328347pt;}
.ws0{word-spacing:-1.175671pt;}
.ws86{word-spacing:-1.168945pt;}
.ws50{word-spacing:-1.062677pt;}
.ws7{word-spacing:-1.041421pt;}
.ws9{word-spacing:-0.929840pt;}
.ws24{word-spacing:-0.903276pt;}
.ws1f{word-spacing:-0.812954pt;}
.ws74{word-spacing:-0.797008pt;}
.ws78{word-spacing:-0.690740pt;}
.ws70{word-spacing:-0.637606pt;}
.ws98{word-spacing:-0.526029pt;}
.ws4{word-spacing:-0.409130pt;}
.ws4c{word-spacing:-0.371937pt;}
.ws6b{word-spacing:-0.358656pt;}
.ws42{word-spacing:-0.318803pt;}
.wsaa{word-spacing:-0.286925pt;}
.ws54{word-spacing:-0.265669pt;}
.ws2c{word-spacing:-0.212535pt;}
.wsb4{word-spacing:-0.191283pt;}
.ws30{word-spacing:-0.159402pt;}
.wsa3{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.wsad{word-spacing:-0.095642pt;}
.ws6a{word-spacing:-0.079701pt;}
.ws34{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.ws6c{word-spacing:-0.039851pt;}
.wsa8{word-spacing:-0.006221pt;}
.wsc6{word-spacing:-0.005888pt;}
.wsab{word-spacing:-0.004813pt;}
.wsc4{word-spacing:-0.004122pt;}
.wsbb{word-spacing:-0.004019pt;}
.wsac{word-spacing:-0.003746pt;}
.wsaf{word-spacing:-0.002935pt;}
.ws32{word-spacing:-0.002295pt;}
.wsbd{word-spacing:-0.000375pt;}
.ws3{word-spacing:0.000000pt;}
.ws18{word-spacing:0.047821pt;}
.ws36{word-spacing:0.053134pt;}
.ws16{word-spacing:0.085014pt;}
.ws1a{word-spacing:0.095642pt;}
.ws26{word-spacing:0.106268pt;}
.ws19{word-spacing:0.143462pt;}
.ws48{word-spacing:0.159402pt;}
.ws5c{word-spacing:0.191283pt;}
.ws40{word-spacing:0.212535pt;}
.ws9e{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.ws9b{word-spacing:0.286925pt;}
.ws60{word-spacing:0.318803pt;}
.ws82{word-spacing:0.371937pt;}
.wsb1{word-spacing:0.526029pt;}
.ws29{word-spacing:0.637606pt;}
.ws4d{word-spacing:0.690740pt;}
.ws6e{word-spacing:0.743874pt;}
.ws28{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.ws66{word-spacing:0.903276pt;}
.ws65{word-spacing:0.956410pt;}
.ws6f{word-spacing:1.009543pt;}
.wsb2{word-spacing:1.052058pt;}
.ws2b{word-spacing:1.062677pt;}
.ws49{word-spacing:1.115811pt;}
.wsb9{word-spacing:1.147699pt;}
.wsc1{word-spacing:1.193796pt;}
.ws67{word-spacing:1.222079pt;}
.ws4f{word-spacing:1.275213pt;}
.ws7f{word-spacing:1.328347pt;}
.ws88{word-spacing:1.381481pt;}
.wsb3{word-spacing:1.386803pt;}
.ws31{word-spacing:1.434614pt;}
.ws87{word-spacing:1.487748pt;}
.ws37{word-spacing:1.540882pt;}
.ws7e{word-spacing:1.594016pt;}
.ws8e{word-spacing:1.647150pt;}
.ws64{word-spacing:1.859685pt;}
.wsb6{word-spacing:1.865011pt;}
.ws81{word-spacing:1.912819pt;}
.ws61{word-spacing:2.072221pt;}
.ws93{word-spacing:2.125355pt;}
.ws21{word-spacing:2.151936pt;}
.ws71{word-spacing:2.178489pt;}
.ws4a{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws5{word-spacing:2.233931pt;}
.ws4b{word-spacing:2.284756pt;}
.ws2a{word-spacing:2.337890pt;}
.ws39{word-spacing:2.391024pt;}
.wsb7{word-spacing:2.391040pt;}
.wsc0{word-spacing:2.438861pt;}
.ws73{word-spacing:2.444158pt;}
.ws90{word-spacing:2.497292pt;}
.ws17{word-spacing:2.550432pt;}
.ws1d{word-spacing:2.630144pt;}
.ws5e{word-spacing:2.709827pt;}
.ws53{word-spacing:2.762961pt;}
.ws3b{word-spacing:2.816095pt;}
.wsc5{word-spacing:2.851661pt;}
.ws22{word-spacing:2.861926pt;}
.wsba{word-spacing:2.862737pt;}
.wsbe{word-spacing:2.863198pt;}
.wsa7{word-spacing:2.864503pt;}
.wsb0{word-spacing:2.864674pt;}
.wsc3{word-spacing:2.865246pt;}
.wsae{word-spacing:2.867063pt;}
.wsbc{word-spacing:2.868267pt;}
.ws85{word-spacing:2.869229pt;}
.wsa6{word-spacing:2.869248pt;}
.ws9c{word-spacing:2.917069pt;}
.ws9d{word-spacing:2.964890pt;}
.wsa4{word-spacing:3.060531pt;}
.ws77{word-spacing:3.081764pt;}
.wsb5{word-spacing:3.108352pt;}
.ws99{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.wsa9{word-spacing:3.251814pt;}
.ws38{word-spacing:3.294300pt;}
.ws92{word-spacing:3.347434pt;}
.ws96{word-spacing:3.347456pt;}
.ws9a{word-spacing:3.395277pt;}
.ws27{word-spacing:3.400567pt;}
.ws1b{word-spacing:3.490918pt;}
.ws8a{word-spacing:3.559969pt;}
.ws62{word-spacing:3.613103pt;}
.ws80{word-spacing:3.719371pt;}
.ws45{word-spacing:3.772505pt;}
.ws43{word-spacing:3.825638pt;}
.ws97{word-spacing:3.873485pt;}
.ws75{word-spacing:3.878772pt;}
.ws41{word-spacing:3.985040pt;}
.ws8f{word-spacing:4.091308pt;}
.wsb8{word-spacing:4.112589pt;}
.ws2e{word-spacing:4.144442pt;}
.ws3a{word-spacing:4.197575pt;}
.wsf{word-spacing:4.240070pt;}
.ws10{word-spacing:4.314458pt;}
.ws8c{word-spacing:4.356977pt;}
.ws8b{word-spacing:4.410111pt;}
.ws4e{word-spacing:4.463245pt;}
.ws94{word-spacing:4.590797pt;}
.ws89{word-spacing:4.675780pt;}
.wsbf{word-spacing:4.782080pt;}
.ws8d{word-spacing:4.835182pt;}
.ws1e{word-spacing:4.877722pt;}
.ws47{word-spacing:4.941450pt;}
.ws1c{word-spacing:5.021184pt;}
.ws5f{word-spacing:5.207119pt;}
.ws68{word-spacing:5.366521pt;}
.ws5d{word-spacing:5.419654pt;}
.ws52{word-spacing:5.738458pt;}
.ws3e{word-spacing:5.791591pt;}
.wsa2{word-spacing:5.834138pt;}
.ws44{word-spacing:5.844725pt;}
.ws7b{word-spacing:5.950993pt;}
.wsa1{word-spacing:6.168883pt;}
.ws83{word-spacing:6.376064pt;}
.wsd{word-spacing:6.918010pt;}
.ws7c{word-spacing:6.960537pt;}
.ws6d{word-spacing:7.119938pt;}
.ws51{word-spacing:7.279340pt;}
.ws63{word-spacing:7.385607pt;}
.wsb{word-spacing:10.823338pt;}
.wsc{word-spacing:14.319536pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws13{word-spacing:35.093097pt;}
.ws14{word-spacing:35.587721pt;}
.ws11{word-spacing:35.593054pt;}
._20{margin-left:-17.244416pt;}
._14{margin-left:-6.528739pt;}
._9{margin-left:-5.488644pt;}
._4{margin-left:-4.128490pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._8{width:3.282124pt;}
._1a{width:4.403243pt;}
._19{width:5.361933pt;}
._23{width:9.392490pt;}
._3{width:11.530016pt;}
._d{width:13.179527pt;}
._b{width:14.872269pt;}
._c{width:16.312097pt;}
._17{width:17.450491pt;}
._11{width:18.437452pt;}
._15{width:19.802980pt;}
._13{width:20.835202pt;}
._1f{width:22.170275pt;}
._a{width:23.288730pt;}
._10{width:24.707248pt;}
._16{width:26.201723pt;}
._6{width:27.188522pt;}
._7{width:29.648896pt;}
._1c{width:33.361342pt;}
._12{width:34.543740pt;}
._1b{width:39.706950pt;}
._22{width:54.993920pt;}
._1d{width:267.119019pt;}
._1e{width:839.175339pt;}
._e{width:852.695870pt;}
._18{width:1782.838430pt;}
._21{width:2183.064000pt;}
._f{width:2204.317333pt;}
.fs8{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fse{font-size:39.850667pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.022400pt;}
.fs9{font-size:42.507200pt;}
.fsd{font-size:47.040000pt;}
.fsa{font-size:47.820800pt;}
.fs3{font-size:50.395200pt;}
.fsc{font-size:52.057600pt;}
.fs5{font-size:53.133867pt;}
.fs4{font-size:63.833920pt;}
.fs6{font-size:95.641600pt;}
.y9c{bottom:-708.594880pt;}
.yc1{bottom:-629.379520pt;}
.yc0{bottom:-613.542720pt;}
.yba{bottom:-597.711147pt;}
.ybd{bottom:-589.714347pt;}
.yb9{bottom:-581.717547pt;}
.ybc{bottom:-573.877547pt;}
.yb8{bottom:-565.880747pt;}
.ybb{bottom:-558.040747pt;}
.yb7{bottom:-550.043947pt;}
.ybf{bottom:-534.207147pt;}
.ybe{bottom:-518.370347pt;}
.yb6{bottom:-501.749547pt;}
.yb5{bottom:-476.975147pt;}
.yb4{bottom:-445.732747pt;}
.yb3{bottom:-428.955147pt;}
.yb2{bottom:-412.177547pt;}
.yb1{bottom:-395.399947pt;}
.yb0{bottom:-378.779147pt;}
.yaf{bottom:-362.001547pt;}
.yae{bottom:-341.303947pt;}
.yad{bottom:-320.606347pt;}
.yac{bottom:-288.148747pt;}
.yab{bottom:-271.527947pt;}
.yaa{bottom:-254.750347pt;}
.ya9{bottom:-237.972747pt;}
.ya8{bottom:-221.195147pt;}
.ya7{bottom:-204.391413pt;}
.ya6{bottom:-183.850613pt;}
.ya5{bottom:-151.393013pt;}
.ya4{bottom:-134.615413pt;}
.ya3{bottom:-117.837813pt;}
.ya2{bottom:-101.060213pt;}
.ya1{bottom:-84.282613pt;}
.ya0{bottom:-63.741813pt;}
.y9f{bottom:-31.754613pt;}
.y9e{bottom:-16.701813pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:2.393436pt;}
.y9d{bottom:2.898187pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y23{bottom:19.528140pt;}
.y53{bottom:28.346667pt;}
.y22{bottom:34.646700pt;}
.y162{bottom:81.480000pt;}
.y137{bottom:83.061333pt;}
.yc3{bottom:85.144000pt;}
.y1e9{bottom:89.544000pt;}
.y193{bottom:91.696000pt;}
.y86{bottom:92.892000pt;}
.y20{bottom:93.018667pt;}
.y1b8{bottom:95.282667pt;}
.y161{bottom:98.217333pt;}
.y136{bottom:99.798667pt;}
.yc2{bottom:102.240000pt;}
.y52{bottom:102.998667pt;}
.y1e8{bottom:104.886667pt;}
.y21f{bottom:108.233333pt;}
.y192{bottom:108.433333pt;}
.y1f{bottom:108.920000pt;}
.y85{bottom:109.629333pt;}
.y1b7{bottom:112.020000pt;}
.y160{bottom:114.954667pt;}
.y135{bottom:116.536000pt;}
.y51{bottom:119.736000pt;}
.y1e7{bottom:120.229333pt;}
.y21e{bottom:123.576000pt;}
.y1e{bottom:124.820000pt;}
.y99{bottom:124.833333pt;}
.y191{bottom:125.170667pt;}
.y84{bottom:126.366667pt;}
.y1b6{bottom:128.757333pt;}
.y15f{bottom:131.692000pt;}
.y134{bottom:133.273333pt;}
.y1e6{bottom:135.572000pt;}
.y50{bottom:136.473333pt;}
.y113{bottom:136.833333pt;}
.y21d{bottom:138.918667pt;}
.y1d{bottom:140.720000pt;}
.y190{bottom:141.908000pt;}
.y83{bottom:143.104000pt;}
.y1b5{bottom:145.494667pt;}
.y112{bottom:146.796000pt;}
.y1e5{bottom:150.914667pt;}
.y4f{bottom:153.210667pt;}
.y133{bottom:153.996000pt;}
.y21c{bottom:154.261333pt;}
.y15e{bottom:155.069333pt;}
.y1c{bottom:156.621333pt;}
.y111{bottom:156.758667pt;}
.y18f{bottom:158.645333pt;}
.y82{bottom:159.841333pt;}
.y1b4{bottom:162.232000pt;}
.y1e4{bottom:166.257333pt;}
.y10d{bottom:169.310667pt;}
.y21b{bottom:169.604000pt;}
.y4e{bottom:169.948000pt;}
.y110{bottom:171.702667pt;}
.y15d{bottom:171.806667pt;}
.y1b{bottom:172.521333pt;}
.y18e{bottom:175.382667pt;}
.y81{bottom:176.578667pt;}
.y1b3{bottom:178.969333pt;}
.y10c{bottom:180.656000pt;}
.y1e3{bottom:181.600000pt;}
.y10f{bottom:181.665333pt;}
.y132{bottom:183.884000pt;}
.y21a{bottom:184.946667pt;}
.y4d{bottom:186.685333pt;}
.y1a{bottom:188.421333pt;}
.y15c{bottom:188.544000pt;}
.y10e{bottom:191.628000pt;}
.y18d{bottom:192.120000pt;}
.y80{bottom:193.316000pt;}
.y1b2{bottom:195.706667pt;}
.y1e2{bottom:196.942667pt;}
.y219{bottom:200.289333pt;}
.y131{bottom:200.621333pt;}
.y4c{bottom:203.422667pt;}
.y19{bottom:204.322667pt;}
.y10b{bottom:206.572000pt;}
.y18c{bottom:208.857333pt;}
.y15b{bottom:209.266667pt;}
.y7f{bottom:210.053333pt;}
.y1e1{bottom:212.284000pt;}
.y1b1{bottom:212.444000pt;}
.y218{bottom:215.632000pt;}
.y10a{bottom:216.534667pt;}
.y130{bottom:217.358667pt;}
.y4b{bottom:220.160000pt;}
.y18b{bottom:225.594667pt;}
.y109{bottom:226.497333pt;}
.y7e{bottom:226.789333pt;}
.y1e0{bottom:227.626667pt;}
.y102{bottom:229.086667pt;}
.y217{bottom:230.974667pt;}
.y1b0{bottom:233.165333pt;}
.y4a{bottom:236.897333pt;}
.y12f{bottom:238.081333pt;}
.y15a{bottom:239.154667pt;}
.y101{bottom:240.432000pt;}
.y108{bottom:241.441333pt;}
.y18a{bottom:242.332000pt;}
.y1df{bottom:242.969333pt;}
.y7d{bottom:243.526667pt;}
.y104{bottom:244.030667pt;}
.y216{bottom:246.316000pt;}
.y107{bottom:251.404000pt;}
.y49{bottom:253.634667pt;}
.y103{bottom:255.376000pt;}
.y159{bottom:255.892000pt;}
.y1de{bottom:258.312000pt;}
.y189{bottom:259.069333pt;}
.y7c{bottom:260.264000pt;}
.y106{bottom:261.366667pt;}
.y215{bottom:261.658667pt;}
.y1af{bottom:263.053333pt;}
.y18{bottom:266.804000pt;}
.y12e{bottom:267.969333pt;}
.y48{bottom:270.372000pt;}
.y105{bottom:271.329333pt;}
.y158{bottom:272.629333pt;}
.y1dd{bottom:273.654667pt;}
.y188{bottom:275.806667pt;}
.y7b{bottom:277.001333pt;}
.y9b{bottom:279.558720pt;}
.y1ae{bottom:279.790667pt;}
.y17{bottom:282.705333pt;}
.y12d{bottom:284.706667pt;}
.y47{bottom:287.109333pt;}
.y9a{bottom:287.869120pt;}
.y1dc{bottom:288.997333pt;}
.y157{bottom:289.366667pt;}
.y214{bottom:292.344000pt;}
.y187{bottom:292.544000pt;}
.y100{bottom:292.674667pt;}
.y7a{bottom:293.738667pt;}
.y1ad{bottom:296.528000pt;}
.y16{bottom:298.605333pt;}
.y12c{bottom:301.444000pt;}
.yff{bottom:302.637333pt;}
.y46{bottom:303.846667pt;}
.y1db{bottom:304.340000pt;}
.y156{bottom:306.104000pt;}
.y213{bottom:307.686667pt;}
.yfb{bottom:308.409333pt;}
.y186{bottom:309.281333pt;}
.y79{bottom:310.476000pt;}
.y1ac{bottom:313.265333pt;}
.y15{bottom:314.505333pt;}
.yfe{bottom:317.581333pt;}
.y12b{bottom:318.181333pt;}
.y1da{bottom:319.682667pt;}
.yfa{bottom:319.756000pt;}
.y45{bottom:320.584000pt;}
.y155{bottom:322.841333pt;}
.y212{bottom:323.029333pt;}
.y185{bottom:326.018667pt;}
.y78{bottom:327.213333pt;}
.yfd{bottom:327.544000pt;}
.y1ab{bottom:330.002667pt;}
.yf9{bottom:331.101333pt;}
.y1d9{bottom:335.024000pt;}
.y44{bottom:337.321333pt;}
.yfc{bottom:337.506667pt;}
.y211{bottom:338.372000pt;}
.y14{bottom:338.376000pt;}
.y12a{bottom:341.560000pt;}
.y184{bottom:342.756000pt;}
.yf1{bottom:343.240000pt;}
.y154{bottom:343.562667pt;}
.y1aa{bottom:346.740000pt;}
.y77{bottom:347.936000pt;}
.y1d8{bottom:350.366667pt;}
.yf8{bottom:352.450667pt;}
.yf0{bottom:353.202667pt;}
.y210{bottom:353.714667pt;}
.y13{bottom:354.277333pt;}
.y43{bottom:358.042667pt;}
.y129{bottom:358.297333pt;}
.y183{bottom:359.492000pt;}
.yf7{bottom:362.413333pt;}
.y1a9{bottom:363.477333pt;}
.yef{bottom:364.548000pt;}
.yf4{bottom:365.666667pt;}
.y1d7{bottom:365.709333pt;}
.y20f{bottom:369.056000pt;}
.y12{bottom:370.177333pt;}
.y153{bottom:373.450667pt;}
.y128{bottom:375.034667pt;}
.yf3{bottom:375.629333pt;}
.yee{bottom:375.893333pt;}
.y182{bottom:376.229333pt;}
.yf6{bottom:377.357333pt;}
.y76{bottom:377.824000pt;}
.y1a8{bottom:380.214667pt;}
.y1d6{bottom:381.052000pt;}
.y20e{bottom:384.398667pt;}
.yf2{bottom:385.592000pt;}
.yf5{bottom:387.320000pt;}
.y152{bottom:390.188000pt;}
.y127{bottom:391.772000pt;}
.y181{bottom:392.966667pt;}
.y75{bottom:394.561333pt;}
.y11{bottom:395.376000pt;}
.y98{bottom:396.154667pt;}
.y1d5{bottom:396.394667pt;}
.y1a7{bottom:396.952000pt;}
.y20d{bottom:399.741333pt;}
.y151{bottom:406.925333pt;}
.y126{bottom:408.509333pt;}
.yed{bottom:408.666667pt;}
.y180{bottom:409.704000pt;}
.y10{bottom:411.276000pt;}
.y74{bottom:411.298667pt;}
.y1d4{bottom:411.737333pt;}
.y97{bottom:412.892000pt;}
.y1a6{bottom:413.689333pt;}
.y20c{bottom:415.084000pt;}
.yec{bottom:418.629333pt;}
.y150{bottom:423.662667pt;}
.y42{bottom:424.842667pt;}
.y17f{bottom:426.441333pt;}
.y1d3{bottom:427.080000pt;}
.y73{bottom:428.036000pt;}
.yeb{bottom:428.592000pt;}
.ye8{bottom:429.078667pt;}
.y96{bottom:429.629333pt;}
.y1a5{bottom:430.426667pt;}
.y125{bottom:431.888000pt;}
.yf{bottom:435.146667pt;}
.y14f{bottom:440.400000pt;}
.ye7{bottom:440.424000pt;}
.y1d2{bottom:442.422667pt;}
.y17e{bottom:443.178667pt;}
.yea{bottom:443.534667pt;}
.y72{bottom:444.773333pt;}
.y20b{bottom:445.769333pt;}
.y95{bottom:446.366667pt;}
.y1a4{bottom:447.164000pt;}
.y124{bottom:448.625333pt;}
.ye{bottom:451.048000pt;}
.ye6{bottom:451.769333pt;}
.ye9{bottom:453.497333pt;}
.y1d1{bottom:457.765333pt;}
.y41{bottom:458.078667pt;}
.y17d{bottom:459.916000pt;}
.y20a{bottom:461.112000pt;}
.y71{bottom:461.510667pt;}
.y94{bottom:463.104000pt;}
.y14e{bottom:463.777333pt;}
.y1a3{bottom:463.901333pt;}
.y123{bottom:465.362667pt;}
.yd{bottom:466.948000pt;}
.ye5{bottom:468.441333pt;}
.y1d0{bottom:473.106667pt;}
.ydd{bottom:473.330667pt;}
.y40{bottom:475.373333pt;}
.y209{bottom:476.454667pt;}
.y17c{bottom:476.653333pt;}
.y70{bottom:478.248000pt;}
.ye4{bottom:478.404000pt;}
.y93{bottom:479.841333pt;}
.y14d{bottom:480.514667pt;}
.y1a2{bottom:480.638667pt;}
.y122{bottom:482.100000pt;}
.yc{bottom:482.848000pt;}
.ydc{bottom:484.677333pt;}
.ye3{bottom:488.366667pt;}
.y1cf{bottom:488.449333pt;}
.y208{bottom:491.797333pt;}
.y3f{bottom:492.669333pt;}
.y17b{bottom:493.390667pt;}
.ydb{bottom:496.022667pt;}
.y92{bottom:496.578667pt;}
.y14c{bottom:497.252000pt;}
.y1a1{bottom:497.376000pt;}
.yb{bottom:498.749333pt;}
.y6f{bottom:498.970667pt;}
.ydf{bottom:500.918667pt;}
.y121{bottom:502.822667pt;}
.ye2{bottom:503.310667pt;}
.y1ce{bottom:503.792000pt;}
.y207{bottom:507.138667pt;}
.yda{bottom:507.368000pt;}
.y3e{bottom:509.964000pt;}
.y17a{bottom:510.128000pt;}
.yde{bottom:512.264000pt;}
.ye1{bottom:513.273333pt;}
.y14b{bottom:513.989333pt;}
.y1a0{bottom:514.113333pt;}
.ya{bottom:514.649333pt;}
.y120{bottom:516.769333pt;}
.y91{bottom:517.301333pt;}
.y1cd{bottom:519.134667pt;}
.y206{bottom:522.481333pt;}
.ye0{bottom:523.236000pt;}
.y3d{bottom:527.258667pt;}
.y6e{bottom:528.857333pt;}
.y9{bottom:530.549333pt;}
.y14a{bottom:530.726667pt;}
.y179{bottom:530.850667pt;}
.y205{bottom:537.824000pt;}
.y1cc{bottom:538.462667pt;}
.y3c{bottom:544.554667pt;}
.yd9{bottom:544.582667pt;}
.y6d{bottom:545.594667pt;}
.y8{bottom:546.450667pt;}
.y11f{bottom:546.657333pt;}
.y90{bottom:547.189333pt;}
.y149{bottom:547.464000pt;}
.y19f{bottom:547.588000pt;}
.y204{bottom:553.166667pt;}
.y178{bottom:560.738667pt;}
.y3b{bottom:561.849333pt;}
.y6c{bottom:562.332000pt;}
.y7{bottom:562.350667pt;}
.y11e{bottom:563.394667pt;}
.y8f{bottom:563.926667pt;}
.y19e{bottom:564.325333pt;}
.y203{bottom:568.509333pt;}
.y148{bottom:570.841333pt;}
.y1cb{bottom:571.140000pt;}
.yd8{bottom:575.577333pt;}
.y177{bottom:577.476000pt;}
.y6{bottom:578.250667pt;}
.y6b{bottom:579.069333pt;}
.y3a{bottom:579.145333pt;}
.y11d{bottom:580.132000pt;}
.y8e{bottom:580.664000pt;}
.y19d{bottom:581.062667pt;}
.y202{bottom:583.852000pt;}
.y147{bottom:587.578667pt;}
.y5{bottom:594.152000pt;}
.y176{bottom:594.213333pt;}
.y1ca{bottom:594.732000pt;}
.y6a{bottom:595.806667pt;}
.y39{bottom:596.440000pt;}
.y11c{bottom:596.869333pt;}
.y8d{bottom:597.401333pt;}
.y19c{bottom:597.800000pt;}
.y201{bottom:599.194667pt;}
.y146{bottom:604.316000pt;}
.yd7{bottom:608.560000pt;}
.y4{bottom:610.052000pt;}
.y1c9{bottom:610.353333pt;}
.y175{bottom:610.950667pt;}
.y11b{bottom:613.606667pt;}
.y38{bottom:613.734667pt;}
.y8c{bottom:614.138667pt;}
.y19b{bottom:614.537333pt;}
.y69{bottom:616.529333pt;}
.y145{bottom:621.053333pt;}
.yd6{bottom:625.296000pt;}
.y1{bottom:625.952048pt;}
.y1c8{bottom:625.974667pt;}
.y200{bottom:629.878667pt;}
.y11a{bottom:630.344000pt;}
.y8b{bottom:630.876000pt;}
.y37{bottom:631.030667pt;}
.y19a{bottom:631.274667pt;}
.y174{bottom:634.329333pt;}
.y144{bottom:641.776000pt;}
.yd5{bottom:642.033333pt;}
.y1ff{bottom:645.221333pt;}
.y68{bottom:646.417333pt;}
.y8a{bottom:647.613333pt;}
.y199{bottom:648.012000pt;}
.y1c7{bottom:649.565333pt;}
.y173{bottom:651.066667pt;}
.y119{bottom:653.724000pt;}
.yd4{bottom:658.770667pt;}
.y1fe{bottom:660.564000pt;}
.y67{bottom:663.154667pt;}
.y89{bottom:664.350667pt;}
.y198{bottom:664.749333pt;}
.y36{bottom:665.328000pt;}
.y172{bottom:667.804000pt;}
.y118{bottom:670.461333pt;}
.y143{bottom:671.664000pt;}
.y1c6{bottom:673.157333pt;}
.yd3{bottom:675.508000pt;}
.y1fd{bottom:675.906667pt;}
.y66{bottom:679.892000pt;}
.y88{bottom:681.088000pt;}
.y197{bottom:681.485333pt;}
.y35{bottom:683.532000pt;}
.y171{bottom:684.541333pt;}
.y117{bottom:687.197333pt;}
.y142{bottom:688.401333pt;}
.y1c5{bottom:688.778667pt;}
.y1fc{bottom:691.249333pt;}
.yd2{bottom:692.245333pt;}
.y34{bottom:694.021333pt;}
.y87{bottom:697.825333pt;}
.y196{bottom:698.222667pt;}
.y65{bottom:700.614667pt;}
.y170{bottom:701.278667pt;}
.y116{bottom:703.934667pt;}
.y1fb{bottom:706.592000pt;}
.y141{bottom:711.777333pt;}
.y33{bottom:712.225333pt;}
.y1c4{bottom:712.370667pt;}
.yd1{bottom:712.968000pt;}
.y195{bottom:714.960000pt;}
.y64{bottom:718.546667pt;}
.y115{bottom:720.672000pt;}
.y1fa{bottom:721.934667pt;}
.y32{bottom:722.713333pt;}
.y16f{bottom:724.657333pt;}
.y1c3{bottom:727.992000pt;}
.y140{bottom:728.514667pt;}
.yd0{bottom:730.901333pt;}
.y194{bottom:731.697333pt;}
.y1f9{bottom:737.277333pt;}
.y31{bottom:740.917333pt;}
.y16e{bottom:741.394667pt;}
.y1c2{bottom:743.613333pt;}
.y114{bottom:744.052000pt;}
.y13f{bottom:745.252000pt;}
.y63{bottom:748.434667pt;}
.y1f8{bottom:752.620000pt;}
.y30{bottom:755.264000pt;}
.y16d{bottom:758.132000pt;}
.ycf{bottom:760.789333pt;}
.y13e{bottom:761.989333pt;}
.y62{bottom:765.172000pt;}
.y1c1{bottom:767.205333pt;}
.y1f7{bottom:767.961333pt;}
.y2f{bottom:769.609333pt;}
.y16c{bottom:774.869333pt;}
.yce{bottom:777.526667pt;}
.y61{bottom:781.909333pt;}
.y1c0{bottom:782.826667pt;}
.y1f6{bottom:783.304000pt;}
.y2e{bottom:783.956000pt;}
.y13d{bottom:785.366667pt;}
.y16b{bottom:791.606667pt;}
.ycd{bottom:794.264000pt;}
.y2d{bottom:794.445333pt;}
.y1bf{bottom:798.448000pt;}
.y60{bottom:798.646667pt;}
.y13c{bottom:802.104000pt;}
.y16a{bottom:808.344000pt;}
.y2c{bottom:808.790667pt;}
.ycc{bottom:811.001333pt;}
.y2b{bottom:812.648000pt;}
.y1f5{bottom:813.989333pt;}
.y1be{bottom:814.069333pt;}
.y5f{bottom:815.384000pt;}
.y13b{bottom:825.481333pt;}
.ycb{bottom:827.738667pt;}
.y169{bottom:829.066667pt;}
.y1f4{bottom:829.332000pt;}
.y1bd{bottom:829.690667pt;}
.y5e{bottom:832.121333pt;}
.y13a{bottom:842.218667pt;}
.yca{bottom:844.474667pt;}
.y1f3{bottom:844.674667pt;}
.y1bc{bottom:845.312000pt;}
.y5d{bottom:848.858667pt;}
.y2a{bottom:852.361333pt;}
.y168{bottom:858.954667pt;}
.y139{bottom:858.956000pt;}
.y1f2{bottom:860.017333pt;}
.y1bb{bottom:860.933333pt;}
.yc9{bottom:865.197333pt;}
.y5c{bottom:865.596000pt;}
.y29{bottom:869.098667pt;}
.y1f1{bottom:875.360000pt;}
.y167{bottom:875.692000pt;}
.y138{bottom:875.693333pt;}
.y5b{bottom:882.333333pt;}
.y1ba{bottom:884.525333pt;}
.y28{bottom:885.836000pt;}
.y1ef{bottom:890.701333pt;}
.y1f0{bottom:890.702667pt;}
.y166{bottom:892.429333pt;}
.yc8{bottom:895.085333pt;}
.y5a{bottom:899.070667pt;}
.y1b9{bottom:900.565333pt;}
.y1ee{bottom:906.044000pt;}
.y165{bottom:909.166667pt;}
.yc7{bottom:911.822667pt;}
.y59{bottom:915.808000pt;}
.y27{bottom:921.320000pt;}
.y1ed{bottom:921.386667pt;}
.y164{bottom:925.904000pt;}
.yc6{bottom:928.560000pt;}
.y58{bottom:932.545333pt;}
.y1ec{bottom:936.729333pt;}
.y163{bottom:942.641333pt;}
.yc5{bottom:945.297333pt;}
.y26{bottom:946.425333pt;}
.y57{bottom:949.282667pt;}
.y1eb{bottom:952.072000pt;}
.yc4{bottom:962.034667pt;}
.y56{bottom:966.020000pt;}
.y1ea{bottom:967.414667pt;}
.y25{bottom:971.530667pt;}
.y55{bottom:982.757333pt;}
.y21{bottom:1010.186667pt;}
.y54{bottom:1038.548000pt;}
.h1e{height:-569.325120pt;}
.h1c{height:-505.983147pt;}
.h1b{height:-505.977920pt;}
.h1a{height:-489.362347pt;}
.h2{height:22.673858pt;}
.hd{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.300102pt;}
.h1f{height:28.692480pt;}
.h20{height:29.011285pt;}
.h21{height:29.250389pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h16{height:30.675531pt;}
.h15{height:30.798644pt;}
.he{height:30.945242pt;}
.h13{height:31.200285pt;}
.h18{height:34.338281pt;}
.hf{height:34.430976pt;}
.h1d{height:34.476094pt;}
.h10{height:34.813542pt;}
.h8{height:35.024664pt;}
.h22{height:35.100467pt;}
.h17{height:38.001031pt;}
.h19{height:38.153544pt;}
.h11{height:38.256384pt;}
.h12{height:38.681455pt;}
.ha{height:39.000258pt;}
.h9{height:43.279398pt;}
.h7{height:45.272024pt;}
.hc{height:48.360277pt;}
.hb{height:68.861952pt;}
.h14{height:250.308987pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w6{width:124.060160pt;}
.w5{width:132.365333pt;}
.w3{width:185.925531pt;}
.w7{width:427.502133pt;}
.w4{width:696.189779pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:0.940800pt;}
.x32{left:1.995672pt;}
.x3c{left:5.644800pt;}
.x43{left:6.899200pt;}
.x3f{left:7.996800pt;}
.x3e{left:10.348800pt;}
.x40{left:13.014400pt;}
.x2{left:26.021437pt;}
.x39{left:28.067200pt;}
.x37{left:29.008000pt;}
.x1{left:47.621398pt;}
.x31{left:48.568941pt;}
.x36{left:50.564613pt;}
.x3{left:52.172471pt;}
.x57{left:56.996000pt;}
.x3d{left:58.360960pt;}
.x4a{left:59.830667pt;}
.x62{left:64.313333pt;}
.x49{left:70.221333pt;}
.x48{left:74.898667pt;}
.x56{left:75.914667pt;}
.x4b{left:77.748000pt;}
.x58{left:92.357333pt;}
.x3b{left:152.906133pt;}
.x34{left:172.463405pt;}
.x5e{left:173.577333pt;}
.x59{left:175.265333pt;}
.x64{left:179.589333pt;}
.x42{left:180.502933pt;}
.x51{left:181.522667pt;}
.x38{left:182.929947pt;}
.x5d{left:183.828000pt;}
.x66{left:186.936000pt;}
.x63{left:190.668000pt;}
.x52{left:195.933333pt;}
.x44{left:197.750933pt;}
.x35{left:200.217005pt;}
.x5f{left:209.706667pt;}
.x5a{left:215.724000pt;}
.x2e{left:219.865333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x2c{left:225.754667pt;}
.x5{left:239.790667pt;}
.xd{left:249.241333pt;}
.x8{left:250.204000pt;}
.x2d{left:254.473333pt;}
.xe{left:255.882667pt;}
.x84{left:263.078667pt;}
.x45{left:272.722667pt;}
.x7{left:273.890667pt;}
.x8e{left:275.069333pt;}
.x85{left:276.361333pt;}
.x11{left:278.092000pt;}
.x12{left:284.733333pt;}
.x82{left:292.294667pt;}
.x81{left:296.353333pt;}
.x83{left:305.577333pt;}
.x3a{left:306.997947pt;}
.x60{left:309.525333pt;}
.x4c{left:310.474667pt;}
.x17{left:313.004000pt;}
.x5b{left:313.917333pt;}
.x4f{left:315.486667pt;}
.x4e{left:318.330667pt;}
.x18{left:319.645333pt;}
.x65{left:320.632000pt;}
.x54{left:321.942667pt;}
.x19{left:322.973333pt;}
.x5c{left:325.772000pt;}
.x1a{left:336.256000pt;}
.x67{left:347.126667pt;}
.x6f{left:349.928000pt;}
.x1b{left:353.380000pt;}
.x1c{left:366.664000pt;}
.x13{left:368.716000pt;}
.x8d{left:371.349333pt;}
.x1d{left:373.318667pt;}
.x14{left:375.357333pt;}
.x15{left:382.058667pt;}
.x8f{left:385.504000pt;}
.x1e{left:386.602667pt;}
.x16{left:388.701333pt;}
.x87{left:390.300000pt;}
.x4d{left:395.066667pt;}
.x50{left:397.253333pt;}
.x53{left:401.612000pt;}
.x88{left:403.584000pt;}
.x68{left:404.590667pt;}
.x77{left:407.766667pt;}
.x78{left:414.408000pt;}
.x73{left:425.002667pt;}
.x9{left:426.950667pt;}
.xa{left:433.592000pt;}
.x79{left:434.604000pt;}
.x74{left:438.285333pt;}
.x75{left:441.673333pt;}
.x7a{left:447.888000pt;}
.x7b{left:451.274667pt;}
.x76{left:454.957333pt;}
.x61{left:458.513333pt;}
.x70{left:461.816000pt;}
.x7c{left:464.558667pt;}
.x7d{left:467.945333pt;}
.x71{left:475.100000pt;}
.x7e{left:481.229333pt;}
.x46{left:492.422667pt;}
.x86{left:494.810667pt;}
.x47{left:505.706667pt;}
.x69{left:508.661333pt;}
.x55{left:509.989333pt;}
.x6a{left:529.349333pt;}
.x2a{left:547.646667pt;}
.x6d{left:555.094667pt;}
.x89{left:557.405333pt;}
.x2b{left:560.930667pt;}
.x6e{left:568.378667pt;}
.x8a{left:570.688000pt;}
.x23{left:575.918667pt;}
.x90{left:581.673333pt;}
.x93{left:584.314667pt;}
.x24{left:589.201333pt;}
.x25{left:592.589333pt;}
.x26{left:605.872000pt;}
.x94{left:608.225333pt;}
.x1f{left:626.621333pt;}
.x9a{left:630.090667pt;}
.x27{left:631.358667pt;}
.xf{left:638.346667pt;}
.x20{left:639.905333pt;}
.x91{left:640.876000pt;}
.x21{left:643.216000pt;}
.x10{left:644.989333pt;}
.x28{left:648.029333pt;}
.x22{left:656.498667pt;}
.x72{left:658.533333pt;}
.x29{left:661.312000pt;}
.x92{left:664.786667pt;}
.xb{left:671.529333pt;}
.xc{left:678.172000pt;}
.x6b{left:679.098667pt;}
.x95{left:682.813333pt;}
.x33{left:693.927939pt;}
.x98{left:696.014667pt;}
.x6c{left:699.860000pt;}
.x96{left:706.710667pt;}
.x8b{left:709.928000pt;}
.x99{left:719.924000pt;}
.x8c{left:723.212000pt;}
.x7f{left:726.858667pt;}
.x2f{left:727.972000pt;}
.x97{left:730.620000pt;}
.x80{left:740.141333pt;}
.x30{left:741.254667pt;}
}




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