
    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_644e74e41f82ae47703c0777.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.795000;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_650467fc44d05ec25b3046c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_b04b80fd22928ba52493410e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_16b79dc3bdb63a7fd5ae9ee2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123000;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_5cfce91d66d0a354de3abd2f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cc49d0da3dceadfb9790eecb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_64528feb484686d87bd4cf6e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.226000;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_abfa029c12f30e0426d47855.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933000;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_79e73839cbd2b9eb2b61d930.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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_90028a3a8bfeb8e7bc06d1da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc6183fdc4f3dd5e1cc4cf34.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.888000;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;}
.md{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);}
.m1c{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);}
.m12{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);}
.m3{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);}
.m1e{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);}
.m7{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);}
.m4{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);}
.m9{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);}
.m1d{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);}
.mc{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);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2a{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);}
.m18{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);}
.m17{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);}
.m14{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m19{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m21{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);}
.m22{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);}
.m23{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);}
.m26{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);}
.m13{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);}
.m15{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);}
.m10{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);}
.m11{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);}
.m28{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);}
.m6{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);}
.m1f{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);}
.mb{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);}
.m8{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);}
.m24{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);}
.ma{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);}
.m1a{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);}
.m2{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);}
.m0{transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451025,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.v4{vertical-align:-17.364000px;}
.v1{vertical-align:-9.648400px;}
.v2{vertical-align:-2.313518px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:12.906000px;}
.v8{vertical-align:14.340000px;}
.v6{vertical-align:19.530000px;}
.v3{vertical-align:21.696000px;}
.v5{vertical-align:32.874000px;}
.v7{vertical-align:65.754000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000422px;}
.ls11{letter-spacing:0.000566px;}
.ls4{letter-spacing:0.000600px;}
.ls6{letter-spacing:0.001091px;}
.ls13{letter-spacing:0.001746px;}
.ls12{letter-spacing:0.003314px;}
.ls2{letter-spacing:0.004200px;}
.ls9{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls0{letter-spacing:11.571746px;}
.ls7{letter-spacing:11.954850px;}
.lsf{letter-spacing:13.449600px;}
.lsc{letter-spacing:13.628837px;}
.lsd{letter-spacing:14.094088px;}
.lsb{letter-spacing:14.943900px;}
.lse{letter-spacing:16.434600px;}
.ls1{letter-spacing:17.739501px;}
.lsa{letter-spacing:20.443255px;}
.ls5{letter-spacing:62.761200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-14.943900px;}
.ws78{word-spacing:-13.449600px;}
.ws2d{word-spacing:-11.955150px;}
.ws11{word-spacing:-10.460700px;}
.wsc3{word-spacing:-3.530353px;}
.ws4f{word-spacing:-3.526760px;}
.ws65{word-spacing:-3.347434px;}
.ws50{word-spacing:-3.287658px;}
.ws6e{word-spacing:-3.108331px;}
.wsa0{word-spacing:-3.048556px;}
.ws4e{word-spacing:-2.988780px;}
.ws9c{word-spacing:-2.749678px;}
.ws69{word-spacing:-2.570351px;}
.ws6a{word-spacing:-2.510575px;}
.ws41{word-spacing:-2.391024px;}
.ws2b{word-spacing:-2.211697px;}
.wsa1{word-spacing:-2.092146px;}
.ws38{word-spacing:-2.032370px;}
.ws3{word-spacing:-1.908367px;}
.ws85{word-spacing:-1.853044px;}
.ws86{word-spacing:-1.793268px;}
.ws7b{word-spacing:-1.733492px;}
.ws7c{word-spacing:-1.673717px;}
.ws9d{word-spacing:-1.554166px;}
.ws44{word-spacing:-1.434614px;}
.ws74{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws73{word-spacing:-1.315063px;}
.wsb6{word-spacing:-1.291162px;}
.ws64{word-spacing:-1.255288px;}
.ws2a{word-spacing:-1.195512px;}
.ws7a{word-spacing:-1.075961px;}
.ws62{word-spacing:-1.016185px;}
.wsb9{word-spacing:-0.968371px;}
.ws72{word-spacing:-0.956410px;}
.ws5e{word-spacing:-0.836858px;}
.wscb{word-spacing:-0.806976px;}
.ws42{word-spacing:-0.777083px;}
.wsb8{word-spacing:-0.753178px;}
.ws7f{word-spacing:-0.717307px;}
.ws3b{word-spacing:-0.657532px;}
.ws97{word-spacing:-0.597756px;}
.ws4c{word-spacing:-0.418429px;}
.ws83{word-spacing:-0.358654px;}
.ws25{word-spacing:-0.298878px;}
.wsa9{word-spacing:-0.268992px;}
.ws30{word-spacing:-0.239102px;}
.wsac{word-spacing:-0.215194px;}
.ws1d{word-spacing:-0.179327px;}
.wsad{word-spacing:-0.161395px;}
.ws39{word-spacing:-0.119551px;}
.wsae{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.ws79{word-spacing:-0.053798px;}
.wsb7{word-spacing:-0.009562px;}
.wsce{word-spacing:-0.007258px;}
.wsc6{word-spacing:-0.006355px;}
.wscf{word-spacing:-0.006134px;}
.wscd{word-spacing:-0.005520px;}
.wsd3{word-spacing:-0.004310px;}
.wscc{word-spacing:-0.000806px;}
.ws2c{word-spacing:-0.000785px;}
.ws5{word-spacing:-0.000779px;}
.ws0{word-spacing:0.000000px;}
.wsb3{word-spacing:0.000490px;}
.ws94{word-spacing:0.053798px;}
.ws3c{word-spacing:0.059776px;}
.wsa8{word-spacing:0.107597px;}
.ws1c{word-spacing:0.119551px;}
.ws18{word-spacing:0.161395px;}
.ws33{word-spacing:0.179327px;}
.ws7{word-spacing:0.209214px;}
.ws93{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.ws17{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws32{word-spacing:0.298878px;}
.wsc5{word-spacing:0.322790px;}
.ws20{word-spacing:0.358654px;}
.wsa3{word-spacing:0.366016px;}
.ws35{word-spacing:0.418429px;}
.ws5d{word-spacing:0.478205px;}
.ws61{word-spacing:0.537980px;}
.wsca{word-spacing:0.591782px;}
.ws46{word-spacing:0.597756px;}
.ws5f{word-spacing:0.657532px;}
.ws55{word-spacing:0.717307px;}
.ws19{word-spacing:0.753178px;}
.ws70{word-spacing:0.777083px;}
.ws12{word-spacing:0.806976px;}
.ws67{word-spacing:0.836858px;}
.wsc4{word-spacing:0.860774px;}
.ws37{word-spacing:0.896634px;}
.ws26{word-spacing:0.956410px;}
.ws80{word-spacing:1.016185px;}
.ws71{word-spacing:1.075961px;}
.ws6c{word-spacing:1.195512px;}
.ws90{word-spacing:1.255288px;}
.wsbb{word-spacing:1.291162px;}
.ws36{word-spacing:1.374839px;}
.ws45{word-spacing:1.434614px;}
.ws9b{word-spacing:1.494390px;}
.ws57{word-spacing:1.554166px;}
.ws98{word-spacing:1.613941px;}
.wsd2{word-spacing:1.613952px;}
.ws96{word-spacing:1.673717px;}
.ws81{word-spacing:1.853044px;}
.ws4a{word-spacing:1.912819px;}
.ws60{word-spacing:1.972595px;}
.wsb4{word-spacing:1.990541px;}
.ws8{word-spacing:2.008454px;}
.ws9a{word-spacing:2.024554px;}
.ws22{word-spacing:2.032370px;}
.wsc1{word-spacing:2.044339px;}
.ws5b{word-spacing:2.092146px;}
.ws53{word-spacing:2.151922px;}
.ws13{word-spacing:2.205734px;}
.ws4b{word-spacing:2.211697px;}
.ws7d{word-spacing:2.271473px;}
.ws1f{word-spacing:2.331248px;}
.wsaf{word-spacing:2.367130px;}
.ws49{word-spacing:2.450800px;}
.ws88{word-spacing:2.510575px;}
.ws21{word-spacing:2.570351px;}
.ws6f{word-spacing:2.630126px;}
.ws75{word-spacing:2.749678px;}
.ws1e{word-spacing:2.809453px;}
.ws2f{word-spacing:2.869229px;}
.ws76{word-spacing:2.929004px;}
.wsba{word-spacing:2.958912px;}
.wsc7{word-spacing:3.012710px;}
.ws8d{word-spacing:3.048556px;}
.wsc8{word-spacing:3.066509px;}
.ws84{word-spacing:3.108331px;}
.ws3d{word-spacing:3.168107px;}
.ws1a{word-spacing:3.219667px;}
.wsa4{word-spacing:3.224822px;}
.ws54{word-spacing:3.227882px;}
.wsb0{word-spacing:3.227904px;}
.ws3a{word-spacing:3.287658px;}
.wsbf{word-spacing:3.335501px;}
.ws63{word-spacing:3.407209px;}
.wsb5{word-spacing:3.443098px;}
.ws89{word-spacing:3.466985px;}
.ws3f{word-spacing:3.526760px;}
.wsbe{word-spacing:3.550694px;}
.ws1b{word-spacing:3.586536px;}
.wsbd{word-spacing:3.604493px;}
.wsab{word-spacing:3.712090px;}
.ws56{word-spacing:3.765863px;}
.wsaa{word-spacing:3.765888px;}
.wsb2{word-spacing:3.819686px;}
.ws8f{word-spacing:3.825638px;}
.ws8a{word-spacing:3.885414px;}
.ws40{word-spacing:3.945190px;}
.ws52{word-spacing:4.064741px;}
.ws34{word-spacing:4.124516px;}
.ws66{word-spacing:4.184292px;}
.ws5a{word-spacing:4.363619px;}
.ws91{word-spacing:4.423394px;}
.ws3e{word-spacing:4.542946px;}
.ws48{word-spacing:4.602721px;}
.ws14{word-spacing:4.680461px;}
.ws58{word-spacing:4.782048px;}
.ws16{word-spacing:4.788058px;}
.wsb1{word-spacing:4.841856px;}
.ws47{word-spacing:5.021150px;}
.ws43{word-spacing:5.140702px;}
.ws2e{word-spacing:5.200477px;}
.ws92{word-spacing:5.260253px;}
.ws27{word-spacing:5.320028px;}
.ws68{word-spacing:5.499355px;}
.ws9f{word-spacing:5.559131px;}
.ws8c{word-spacing:5.618906px;}
.wsc2{word-spacing:5.648832px;}
.ws15{word-spacing:5.702630px;}
.ws87{word-spacing:5.738458px;}
.wsa6{word-spacing:5.810227px;}
.ws95{word-spacing:5.858009px;}
.wsa7{word-spacing:5.864026px;}
.ws82{word-spacing:5.917784px;}
.wsa5{word-spacing:5.971622px;}
.ws8e{word-spacing:5.977560px;}
.wsf{word-spacing:6.067206px;}
.ws6b{word-spacing:6.097111px;}
.ws10{word-spacing:6.150892px;}
.ws24{word-spacing:6.395989px;}
.ws99{word-spacing:6.455765px;}
.ws51{word-spacing:6.635092px;}
.wsc9{word-spacing:7.208986px;}
.ws7e{word-spacing:7.412174px;}
.wsbc{word-spacing:7.477978px;}
.ws4d{word-spacing:7.531726px;}
.ws9e{word-spacing:7.591501px;}
.ws6d{word-spacing:7.651277px;}
.ws31{word-spacing:7.711052px;}
.ws29{word-spacing:8.189257px;}
.ws59{word-spacing:8.368584px;}
.wsa2{word-spacing:8.488135px;}
.wsd{word-spacing:8.661460px;}
.ws8b{word-spacing:9.145667px;}
.wsc0{word-spacing:9.898906px;}
.ws5c{word-spacing:10.341179px;}
.ws6{word-spacing:15.481836px;}
.ws4{word-spacing:15.483541px;}
.wsc{word-spacing:17.699504px;}
.wsd0{word-spacing:18.183859px;}
.wsd1{word-spacing:18.237658px;}
.wsb{word-spacing:20.293758px;}
.wsa{word-spacing:20.312252px;}
.wse{word-spacing:27.448877px;}
.ws77{word-spacing:415.209466px;}
._2b{margin-left:-22.206629px;}
._2c{margin-left:-20.216221px;}
._0{margin-left:-11.943245px;}
._8{margin-left:-6.778598px;}
._10{margin-left:-5.738458px;}
._5{margin-left:-4.602708px;}
._7{margin-left:-3.012682px;}
._2{margin-left:-1.936742px;}
._3{width:1.091170px;}
._6{width:2.301354px;}
._19{width:3.939232px;}
._2d{width:9.362150px;}
._4{width:12.214378px;}
._18{width:13.676683px;}
._14{width:14.812406px;}
._17{width:15.924233px;}
._a{width:17.215488px;}
._e{width:18.769538px;}
._c{width:20.162423px;}
._13{width:21.758318px;}
._9{width:23.725094px;}
._1a{width:25.906758px;}
._f{width:26.922943px;}
._d{width:28.243871px;}
._1b{width:29.398001px;}
._b{width:30.934080px;}
._27{width:32.141214px;}
._1{width:33.355008px;}
._12{width:35.163733px;}
._26{width:37.443449px;}
._11{width:38.997614px;}
._20{width:186.905674px;}
._1c{width:188.224531px;}
._21{width:246.880858px;}
._29{width:272.409120px;}
._25{width:355.338432px;}
._22{width:357.275174px;}
._1f{width:377.358394px;}
._23{width:392.136538px;}
._1d{width:461.966861px;}
._24{width:493.008538px;}
._1e{width:619.165786px;}
._28{width:838.107302px;}
._15{width:951.078252px;}
._2a{width:2539.088980px;}
._16{width:2562.998980px;}
.fc6{color:transparent;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(12,11,11);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(4,6,6);}
.fc1{color:rgb(24,71,104);}
.fc0{color:rgb(109,164,194);}
.fsb{font-size:35.865600px;}
.fs2{font-size:39.779955px;}
.fs1{font-size:41.124751px;}
.fsa{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs0{font-size:45.033277px;}
.fs7{font-size:45.429600px;}
.fs3{font-size:47.095448px;}
.fs8{font-size:47.236800px;}
.fsc{font-size:47.820600px;}
.fsd{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs5{font-size:59.775600px;}
.fse{font-size:62.286600px;}
.fs6{font-size:107.596800px;}
.fs4{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.yd{bottom:3.425340px;}
.y4{bottom:4.281255px;}
.y3{bottom:7.959393px;}
.y2{bottom:12.228458px;}
.yc{bottom:14.151273px;}
.y5{bottom:16.129519px;}
.y4c{bottom:31.890000px;}
.ybb{bottom:92.289000px;}
.y106{bottom:97.693500px;}
.y1c3{bottom:98.122500px;}
.y178{bottom:102.211500px;}
.y26{bottom:102.823500px;}
.y115{bottom:104.424000px;}
.y18f{bottom:106.246500px;}
.y84{bottom:107.544000px;}
.yba{bottom:111.118500px;}
.y143{bottom:113.169000px;}
.y1c2{bottom:115.383000px;}
.y12b{bottom:115.662000px;}
.y25{bottom:120.711000px;}
.y1f9{bottom:120.817500px;}
.y177{bottom:121.041000px;}
.y105{bottom:121.333500px;}
.ye5{bottom:123.253500px;}
.y18e{bottom:125.076000px;}
.y83{bottom:126.373500px;}
.yb9{bottom:129.948000px;}
.y142{bottom:131.998500px;}
.y1c1{bottom:132.643500px;}
.y12a{bottom:134.491500px;}
.y4b{bottom:136.777500px;}
.y1f8{bottom:138.078000px;}
.y24{bottom:138.600000px;}
.y176{bottom:139.870500px;}
.ye4{bottom:142.083000px;}
.y18d{bottom:143.905500px;}
.y104{bottom:144.975000px;}
.y82{bottom:145.203000px;}
.yb8{bottom:148.777500px;}
.y1c0{bottom:149.904000px;}
.y141{bottom:150.828000px;}
.y129{bottom:153.321000px;}
.y1f7{bottom:155.338500px;}
.y4a{bottom:155.607000px;}
.y23{bottom:156.487500px;}
.y175{bottom:158.700000px;}
.ye3{bottom:160.912500px;}
.y103{bottom:161.413500px;}
.y18c{bottom:162.735000px;}
.y81{bottom:164.032500px;}
.y1bf{bottom:167.164500px;}
.yb7{bottom:167.607000px;}
.y140{bottom:169.657500px;}
.y128{bottom:172.150500px;}
.y1f6{bottom:172.599000px;}
.y22{bottom:174.375000px;}
.y49{bottom:174.435000px;}
.y174{bottom:177.529500px;}
.ye2{bottom:179.742000px;}
.y18b{bottom:181.564500px;}
.y80{bottom:182.862000px;}
.y1be{bottom:184.425000px;}
.y101{bottom:185.053500px;}
.yb6{bottom:186.436500px;}
.y13f{bottom:188.487000px;}
.y1f5{bottom:189.858000px;}
.y127{bottom:190.980000px;}
.y21{bottom:192.264000px;}
.y48{bottom:193.264500px;}
.y102{bottom:193.273500px;}
.y173{bottom:196.359000px;}
.ye1{bottom:198.571500px;}
.y18a{bottom:200.394000px;}
.y100{bottom:201.492000px;}
.y1bd{bottom:201.685500px;}
.y7f{bottom:201.691500px;}
.yb5{bottom:205.266000px;}
.y1f4{bottom:207.118500px;}
.y126{bottom:209.809500px;}
.y20{bottom:210.151500px;}
.y47{bottom:212.094000px;}
.y172{bottom:215.188500px;}
.ye0{bottom:217.401000px;}
.y1bc{bottom:218.946000px;}
.y189{bottom:219.223500px;}
.y7e{bottom:220.521000px;}
.yb4{bottom:224.095500px;}
.y1f3{bottom:224.379000px;}
.yff{bottom:225.133500px;}
.y1f{bottom:228.039000px;}
.y46{bottom:230.923500px;}
.y125{bottom:233.121000px;}
.y13e{bottom:233.949000px;}
.y171{bottom:234.018000px;}
.ydf{bottom:236.230500px;}
.y188{bottom:238.053000px;}
.y7d{bottom:239.350500px;}
.y1bb{bottom:240.688500px;}
.y1f2{bottom:241.639500px;}
.yb3{bottom:242.925000px;}
.yfe{bottom:248.773500px;}
.y45{bottom:249.753000px;}
.y13d{bottom:250.387500px;}
.y124{bottom:251.950500px;}
.y170{bottom:252.847500px;}
.yde{bottom:255.060000px;}
.y187{bottom:256.882500px;}
.yfd{bottom:256.993500px;}
.y7c{bottom:258.180000px;}
.y1f1{bottom:258.900000px;}
.yb2{bottom:261.754500px;}
.y13c{bottom:266.826000px;}
.y44{bottom:268.582500px;}
.y123{bottom:270.780000px;}
.y16f{bottom:271.677000px;}
.ydd{bottom:273.889500px;}
.y186{bottom:275.712000px;}
.y1f0{bottom:276.160500px;}
.y7b{bottom:277.009500px;}
.y1ba{bottom:277.302000px;}
.yb1{bottom:280.584000px;}
.y13b{bottom:283.264500px;}
.y43{bottom:287.412000px;}
.y122{bottom:289.609500px;}
.y16e{bottom:290.506500px;}
.ydc{bottom:292.719000px;}
.y1ef{bottom:293.421000px;}
.y185{bottom:294.541500px;}
.y1b9{bottom:294.562500px;}
.y7a{bottom:295.839000px;}
.yfc{bottom:296.832000px;}
.yb0{bottom:299.413500px;}
.y1b8{bottom:299.443500px;}
.y13a{bottom:299.703000px;}
.y42{bottom:306.241500px;}
.y1e{bottom:307.299000px;}
.y121{bottom:308.439000px;}
.y16d{bottom:309.336000px;}
.y1ee{bottom:310.681500px;}
.ydb{bottom:311.548500px;}
.y184{bottom:313.371000px;}
.y79{bottom:314.668500px;}
.y1b7{bottom:315.192000px;}
.y139{bottom:316.141500px;}
.yaf{bottom:320.065500px;}
.y41{bottom:325.071000px;}
.y1d{bottom:325.186500px;}
.y1ed{bottom:327.940500px;}
.y16c{bottom:328.165500px;}
.yda{bottom:330.378000px;}
.y120{bottom:331.752000px;}
.y183{bottom:332.200500px;}
.y1b6{bottom:332.452500px;}
.yfb{bottom:332.649000px;}
.y78{bottom:333.498000px;}
.yae{bottom:338.895000px;}
.y138{bottom:339.781500px;}
.y1c{bottom:343.074000px;}
.y40{bottom:343.900500px;}
.y1ec{bottom:345.201000px;}
.y16b{bottom:346.995000px;}
.yd9{bottom:349.207500px;}
.y1b5{bottom:349.713000px;}
.y182{bottom:351.030000px;}
.yfa{bottom:351.478500px;}
.y77{bottom:352.327500px;}
.y11f{bottom:355.065000px;}
.yad{bottom:357.724500px;}
.y1b{bottom:360.963000px;}
.y1eb{bottom:362.461500px;}
.y3f{bottom:362.730000px;}
.y137{bottom:363.423000px;}
.y16a{bottom:365.824500px;}
.y1b4{bottom:366.973500px;}
.yd8{bottom:368.035500px;}
.y181{bottom:369.859500px;}
.yf9{bottom:370.308000px;}
.y76{bottom:371.157000px;}
.yac{bottom:376.554000px;}
.y1ea{bottom:379.722000px;}
.y136{bottom:379.860000px;}
.y3e{bottom:381.559500px;}
.y1b3{bottom:384.234000px;}
.y169{bottom:384.654000px;}
.yd7{bottom:386.865000px;}
.y11e{bottom:388.689000px;}
.yf8{bottom:389.137500px;}
.y75{bottom:389.986500px;}
.yab{bottom:395.383500px;}
.y135{bottom:396.298500px;}
.y1e9{bottom:396.982500px;}
.y1a{bottom:399.024000px;}
.y3d{bottom:400.389000px;}
.y1b2{bottom:401.493000px;}
.y168{bottom:403.483500px;}
.yd6{bottom:405.694500px;}
.y1b1{bottom:406.375500px;}
.y11d{bottom:407.518500px;}
.yf7{bottom:407.967000px;}
.y74{bottom:408.814500px;}
.y134{bottom:412.737000px;}
.yaa{bottom:414.213000px;}
.y1e8{bottom:414.243000px;}
.y19{bottom:416.913000px;}
.y3c{bottom:419.218500px;}
.y1b0{bottom:422.124000px;}
.y167{bottom:422.313000px;}
.yd5{bottom:424.524000px;}
.y11c{bottom:426.348000px;}
.yf6{bottom:426.796500px;}
.y73{bottom:427.644000px;}
.y1e7{bottom:431.503500px;}
.y18{bottom:434.800500px;}
.ya9{bottom:437.526000px;}
.y3b{bottom:438.048000px;}
.y1af{bottom:439.384500px;}
.y166{bottom:441.142500px;}
.yd4{bottom:443.353500px;}
.y1ae{bottom:444.265500px;}
.y133{bottom:444.357000px;}
.y11b{bottom:445.177500px;}
.yf5{bottom:445.626000px;}
.y72{bottom:446.473500px;}
.y1e6{bottom:448.764000px;}
.ya7{bottom:456.355500px;}
.y165{bottom:459.972000px;}
.y1ad{bottom:460.014000px;}
.y3a{bottom:461.361000px;}
.ya8{bottom:461.779500px;}
.yd3{bottom:462.183000px;}
.y11a{bottom:464.007000px;}
.yf4{bottom:464.454000px;}
.y71{bottom:465.303000px;}
.y1e5{bottom:466.024500px;}
.y17{bottom:470.622000px;}
.ya6{bottom:475.185000px;}
.y1ac{bottom:477.274500px;}
.y164{bottom:478.801500px;}
.y39{bottom:480.190500px;}
.yd2{bottom:481.012500px;}
.y132{bottom:481.461000px;}
.y1ab{bottom:482.157000px;}
.y119{bottom:482.836500px;}
.yf3{bottom:483.283500px;}
.y70{bottom:484.132500px;}
.y16{bottom:488.509500px;}
.ya5{bottom:494.014500px;}
.y163{bottom:497.631000px;}
.y1aa{bottom:497.904000px;}
.y38{bottom:499.020000px;}
.yd1{bottom:499.842000px;}
.y131{bottom:500.290500px;}
.y1e4{bottom:500.544000px;}
.y118{bottom:501.666000px;}
.yf2{bottom:502.113000px;}
.y6f{bottom:502.962000px;}
.y15{bottom:506.397000px;}
.ya4{bottom:512.844000px;}
.y1a9{bottom:515.164500px;}
.y162{bottom:516.460500px;}
.y1e3{bottom:517.804500px;}
.y37{bottom:517.849500px;}
.yd0{bottom:518.671500px;}
.y130{bottom:519.120000px;}
.y117{bottom:520.495500px;}
.yf1{bottom:520.942500px;}
.y6e{bottom:521.791500px;}
.ya3{bottom:531.673500px;}
.y1a8{bottom:532.425000px;}
.y1e2{bottom:535.065000px;}
.y161{bottom:535.290000px;}
.ycf{bottom:537.501000px;}
.y12f{bottom:537.949500px;}
.y180{bottom:539.323500px;}
.yf0{bottom:539.772000px;}
.y6d{bottom:540.621000px;}
.y36{bottom:541.161000px;}
.y14{bottom:542.218500px;}
.y116{bottom:543.807000px;}
.y1a7{bottom:549.685500px;}
.y1e1{bottom:552.325500px;}
.y160{bottom:554.118000px;}
.ya2{bottom:554.985000px;}
.yce{bottom:556.330500px;}
.y12e{bottom:556.779000px;}
.y17f{bottom:558.153000px;}
.yef{bottom:558.601500px;}
.y6c{bottom:559.450500px;}
.y35{bottom:559.990500px;}
.y13{bottom:560.106000px;}
.y1a6{bottom:566.946000px;}
.y1e0{bottom:569.586000px;}
.y15f{bottom:572.947500px;}
.ya1{bottom:573.814500px;}
.ycd{bottom:575.160000px;}
.y12d{bottom:575.608500px;}
.y17e{bottom:576.982500px;}
.yee{bottom:577.431000px;}
.y12{bottom:577.993500px;}
.y6b{bottom:578.280000px;}
.y34{bottom:583.303500px;}
.y1a5{bottom:584.206500px;}
.y1df{bottom:586.846500px;}
.y15e{bottom:591.777000px;}
.ya0{bottom:592.644000px;}
.ycc{bottom:593.989500px;}
.y12c{bottom:594.438000px;}
.y17d{bottom:595.812000px;}
.y11{bottom:595.882500px;}
.yed{bottom:596.260500px;}
.y6a{bottom:597.109500px;}
.y1a4{bottom:601.467000px;}
.y1de{bottom:604.107000px;}
.y15d{bottom:610.606500px;}
.y9f{bottom:611.473500px;}
.ycb{bottom:612.819000px;}
.y10{bottom:613.770000px;}
.y17c{bottom:614.641500px;}
.yec{bottom:615.090000px;}
.y69{bottom:615.939000px;}
.y1a3{bottom:618.726000px;}
.y190{bottom:619.125000px;}
.y1dd{bottom:621.366000px;}
.y15c{bottom:629.436000px;}
.y9e{bottom:630.303000px;}
.yca{bottom:631.648500px;}
.yf{bottom:631.657500px;}
.y17b{bottom:633.471000px;}
.yeb{bottom:633.919500px;}
.y68{bottom:634.768500px;}
.y1a2{bottom:635.986500px;}
.y1dc{bottom:638.626500px;}
.y15b{bottom:648.265500px;}
.y9c{bottom:649.132500px;}
.ye{bottom:649.546500px;}
.yc9{bottom:650.478000px;}
.y17a{bottom:652.300500px;}
.yea{bottom:652.749000px;}
.y1a1{bottom:653.247000px;}
.y66{bottom:653.598000px;}
.y9d{bottom:654.558000px;}
.y1db{bottom:655.887000px;}
.y33{bottom:658.453500px;}
.y67{bottom:659.022000px;}
.y15a{bottom:667.095000px;}
.yc8{bottom:669.307500px;}
.y9b{bottom:669.786000px;}
.y1a0{bottom:670.507500px;}
.ye9{bottom:671.578500px;}
.yb{bottom:671.917464px;}
.y1da{bottom:673.147500px;}
.y65{bottom:674.250000px;}
.y19f{bottom:675.390000px;}
.y179{bottom:675.613500px;}
.y159{bottom:685.924500px;}
.yc7{bottom:688.137000px;}
.ye8{bottom:690.408000px;}
.y19e{bottom:691.137000px;}
.y64{bottom:693.079500px;}
.y9a{bottom:693.097500px;}
.y32{bottom:695.844000px;}
.y158{bottom:704.754000px;}
.yc5{bottom:706.966500px;}
.y1d9{bottom:707.668500px;}
.y19d{bottom:708.397500px;}
.ye7{bottom:709.237500px;}
.y63{bottom:711.909000px;}
.yc6{bottom:712.390500px;}
.y99{bottom:713.272500px;}
.y31{bottom:715.300500px;}
.y157{bottom:723.583500px;}
.y1d8{bottom:724.929000px;}
.y19c{bottom:725.658000px;}
.y114{bottom:725.796000px;}
.yc4{bottom:727.618500px;}
.ye6{bottom:728.067000px;}
.y19b{bottom:730.540500px;}
.y62{bottom:730.738500px;}
.y30{bottom:734.757000px;}
.y1d7{bottom:742.189500px;}
.y156{bottom:742.413000px;}
.y113{bottom:744.625500px;}
.y19a{bottom:746.289000px;}
.yc3{bottom:746.448000px;}
.y98{bottom:746.896500px;}
.y61{bottom:749.568000px;}
.y2f{bottom:754.215000px;}
.y1d6{bottom:759.450000px;}
.y155{bottom:761.242500px;}
.y112{bottom:763.455000px;}
.y199{bottom:763.548000px;}
.yc2{bottom:765.277500px;}
.y97{bottom:765.726000px;}
.y60{bottom:768.397500px;}
.y2e{bottom:773.671500px;}
.y1d5{bottom:776.709000px;}
.y154{bottom:780.072000px;}
.y198{bottom:780.808500px;}
.y111{bottom:782.284500px;}
.yc1{bottom:784.107000px;}
.y96{bottom:784.555500px;}
.y5f{bottom:787.227000px;}
.y2d{bottom:793.129500px;}
.y1d4{bottom:793.969500px;}
.y197{bottom:798.069000px;}
.y153{bottom:798.901500px;}
.y110{bottom:801.114000px;}
.yc0{bottom:802.936500px;}
.y196{bottom:802.951500px;}
.y95{bottom:803.385000px;}
.y5e{bottom:806.056500px;}
.y1d3{bottom:811.230000px;}
.y2c{bottom:812.586000px;}
.y152{bottom:817.731000px;}
.y10e{bottom:819.943500px;}
.ybf{bottom:821.766000px;}
.y94{bottom:822.214500px;}
.y195{bottom:824.097000px;}
.y5d{bottom:824.886000px;}
.y10f{bottom:825.367500px;}
.y1d2{bottom:828.490500px;}
.y2b{bottom:832.042500px;}
.y151{bottom:836.560500px;}
.ybe{bottom:840.595500px;}
.y93{bottom:841.044000px;}
.y5c{bottom:843.715500px;}
.y1d1{bottom:845.751000px;}
.y2a{bottom:851.500500px;}
.y150{bottom:855.390000px;}
.y194{bottom:857.721000px;}
.ybd{bottom:859.425000px;}
.y92{bottom:859.873500px;}
.y5b{bottom:862.545000px;}
.y1d0{bottom:863.011500px;}
.y29{bottom:870.957000px;}
.y14f{bottom:874.219500px;}
.y10d{bottom:878.254500px;}
.y91{bottom:878.703000px;}
.y1cf{bottom:880.272000px;}
.y5a{bottom:881.374500px;}
.ybc{bottom:882.738000px;}
.y193{bottom:884.262000px;}
.y14e{bottom:893.049000px;}
.y10c{bottom:897.084000px;}
.y90{bottom:897.532500px;}
.y59{bottom:900.204000px;}
.y192{bottom:910.803000px;}
.y14d{bottom:911.878500px;}
.y28{bottom:913.882500px;}
.y1ce{bottom:914.791500px;}
.y1fa{bottom:914.793000px;}
.y10b{bottom:915.913500px;}
.y8f{bottom:916.362000px;}
.y58{bottom:919.033500px;}
.y27{bottom:930.022500px;}
.y14c{bottom:930.708000px;}
.y1cd{bottom:932.052000px;}
.y10a{bottom:934.743000px;}
.y8e{bottom:935.191500px;}
.y191{bottom:937.342500px;}
.y57{bottom:937.863000px;}
.y1cc{bottom:949.312500px;}
.y14b{bottom:949.537500px;}
.y109{bottom:953.572500px;}
.y8d{bottom:954.021000px;}
.y56{bottom:956.692500px;}
.y1cb{bottom:966.573000px;}
.y14a{bottom:968.367000px;}
.ya{bottom:970.215000px;}
.y108{bottom:972.402000px;}
.y8c{bottom:972.849000px;}
.y55{bottom:975.522000px;}
.y1ca{bottom:983.833500px;}
.y149{bottom:987.196500px;}
.y8b{bottom:991.678500px;}
.y54{bottom:994.351500px;}
.y107{bottom:995.713500px;}
.y1c9{bottom:1001.094000px;}
.y148{bottom:1006.026000px;}
.y8a{bottom:1010.508000px;}
.y9{bottom:1012.954500px;}
.y53{bottom:1013.181000px;}
.y1c8{bottom:1018.354500px;}
.y147{bottom:1024.855500px;}
.y89{bottom:1029.337500px;}
.y52{bottom:1032.010500px;}
.y1c7{bottom:1035.615000px;}
.y8{bottom:1041.199500px;}
.y146{bottom:1043.685000px;}
.y88{bottom:1048.167000px;}
.y51{bottom:1050.840000px;}
.y1c6{bottom:1052.875500px;}
.y145{bottom:1062.513000px;}
.y87{bottom:1066.996500px;}
.y7{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.y1c5{bottom:1070.134500px;}
.y144{bottom:1081.342500px;}
.y86{bottom:1085.826000px;}
.y1c4{bottom:1087.395000px;}
.y4f{bottom:1088.499000px;}
.y6{bottom:1097.688000px;}
.y85{bottom:1104.655500px;}
.y4e{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4d{bottom:1173.397500px;}
.h9{height:25.508090px;}
.h4{height:29.527571px;}
.h14{height:30.582721px;}
.h3{height:32.333893px;}
.hb{height:33.112997px;}
.hd{height:33.821261px;}
.ha{height:34.199443px;}
.he{height:38.734848px;}
.hc{height:39.457760px;}
.h13{height:42.840113px;}
.h10{height:43.038432px;}
.h12{height:45.094826px;}
.h6{height:50.629933px;}
.hf{height:50.731891px;}
.h2{height:50.887467px;}
.h8{height:54.405312px;}
.h11{height:56.368391px;}
.h1a{height:58.987760px;}
.h1e{height:63.637891px;}
.h1f{height:63.643891px;}
.h15{height:64.536113px;}
.h1c{height:70.708391px;}
.h1d{height:70.714391px;}
.h16{height:71.608848px;}
.h17{height:71.614848px;}
.h7{height:77.469696px;}
.h19{height:83.605891px;}
.h18{height:83.611891px;}
.h5{height:89.939935px;}
.h1b{height:116.485891px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:283.414416px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:28.390860px;}
.x2{left:32.479391px;}
.x3{left:43.285382px;}
.x5{left:51.307857px;}
.x1{left:54.000000px;}
.x4f{left:55.306500px;}
.x51{left:85.603500px;}
.x50{left:87.621000px;}
.x52{left:229.506000px;}
.x15{left:248.655000px;}
.x6{left:250.897500px;}
.x3c{left:259.863000px;}
.x29{left:263.436000px;}
.x2e{left:265.605000px;}
.x40{left:268.356000px;}
.x27{left:275.829000px;}
.x25{left:277.483500px;}
.x2c{left:281.230500px;}
.x8{left:282.786000px;}
.x28{left:284.046000px;}
.x2f{left:289.284000px;}
.x2d{left:293.349000px;}
.x41{left:296.647500px;}
.xd{left:300.534000px;}
.x2a{left:306.265500px;}
.x7{left:309.993000px;}
.xe{left:325.011000px;}
.x26{left:332.202000px;}
.x2b{left:339.955500px;}
.xf{left:345.966000px;}
.x3e{left:346.984500px;}
.x36{left:351.409500px;}
.x3f{left:355.455000px;}
.x3d{left:365.056500px;}
.x10{left:368.436000px;}
.x37{left:376.305000px;}
.x18{left:377.452500px;}
.x30{left:388.542000px;}
.x4a{left:391.978500px;}
.x4d{left:398.607000px;}
.x19{left:400.476000px;}
.x31{left:411.904500px;}
.x4e{left:421.941000px;}
.x38{left:442.557000px;}
.x4b{left:448.978500px;}
.x49{left:460.287000px;}
.x39{left:465.904500px;}
.x3b{left:503.911500px;}
.x23{left:509.002500px;}
.x24{left:532.339500px;}
.x44{left:553.921500px;}
.x16{left:560.004000px;}
.x1f{left:563.065500px;}
.x32{left:565.308000px;}
.x34{left:570.786000px;}
.x43{left:572.868000px;}
.x45{left:578.478000px;}
.x17{left:583.366500px;}
.x20{left:586.404000px;}
.x4c{left:587.680500px;}
.x33{left:589.521000px;}
.x35{left:594.999000px;}
.x46{left:601.837500px;}
.x42{left:624.070500px;}
.x21{left:630.424500px;}
.x11{left:633.009000px;}
.x12{left:649.018500px;}
.x3a{left:651.856500px;}
.x22{left:653.773500px;}
.x13{left:664.186500px;}
.x14{left:674.332500px;}
.x53{left:680.305500px;}
.x1b{left:687.124500px;}
.x54{left:694.024500px;}
.x1c{left:711.607500px;}
.xb{left:755.766000px;}
.x47{left:760.869000px;}
.xc{left:765.913500px;}
.x48{left:784.713000px;}
.x1d{left:812.283000px;}
.x9{left:818.913000px;}
.xa{left:829.509000px;}
.x1a{left:832.488000px;}
.x1e{left:835.531500px;}
@media print{
.v4{vertical-align:-15.434667pt;}
.v1{vertical-align:-8.576356pt;}
.v2{vertical-align:-2.056460pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:11.472000pt;}
.v8{vertical-align:12.746667pt;}
.v6{vertical-align:17.360000pt;}
.v3{vertical-align:19.285333pt;}
.v5{vertical-align:29.221333pt;}
.v7{vertical-align:58.448000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000375pt;}
.ls11{letter-spacing:0.000503pt;}
.ls4{letter-spacing:0.000533pt;}
.ls6{letter-spacing:0.000970pt;}
.ls13{letter-spacing:0.001552pt;}
.ls12{letter-spacing:0.002946pt;}
.ls2{letter-spacing:0.003733pt;}
.ls9{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls0{letter-spacing:10.285996pt;}
.ls7{letter-spacing:10.626533pt;}
.lsf{letter-spacing:11.955200pt;}
.lsc{letter-spacing:12.114522pt;}
.lsd{letter-spacing:12.528078pt;}
.lsb{letter-spacing:13.283467pt;}
.lse{letter-spacing:14.608533pt;}
.ls1{letter-spacing:15.768445pt;}
.lsa{letter-spacing:18.171782pt;}
.ls5{letter-spacing:55.787733pt;}
.ws1{word-spacing:-13.283467pt;}
.ws78{word-spacing:-11.955200pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws11{word-spacing:-9.298400pt;}
.wsc3{word-spacing:-3.138092pt;}
.ws4f{word-spacing:-3.134898pt;}
.ws65{word-spacing:-2.975497pt;}
.ws50{word-spacing:-2.922363pt;}
.ws6e{word-spacing:-2.762961pt;}
.wsa0{word-spacing:-2.709827pt;}
.ws4e{word-spacing:-2.656693pt;}
.ws9c{word-spacing:-2.444158pt;}
.ws69{word-spacing:-2.284756pt;}
.ws6a{word-spacing:-2.231622pt;}
.ws41{word-spacing:-2.125355pt;}
.ws2b{word-spacing:-1.965953pt;}
.wsa1{word-spacing:-1.859685pt;}
.ws38{word-spacing:-1.806551pt;}
.ws3{word-spacing:-1.696326pt;}
.ws85{word-spacing:-1.647150pt;}
.ws86{word-spacing:-1.594016pt;}
.ws7b{word-spacing:-1.540882pt;}
.ws7c{word-spacing:-1.487748pt;}
.ws9d{word-spacing:-1.381481pt;}
.ws44{word-spacing:-1.275213pt;}
.ws74{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws73{word-spacing:-1.168945pt;}
.wsb6{word-spacing:-1.147699pt;}
.ws64{word-spacing:-1.115811pt;}
.ws2a{word-spacing:-1.062677pt;}
.ws7a{word-spacing:-0.956410pt;}
.ws62{word-spacing:-0.903276pt;}
.wsb9{word-spacing:-0.860774pt;}
.ws72{word-spacing:-0.850142pt;}
.ws5e{word-spacing:-0.743874pt;}
.wscb{word-spacing:-0.717312pt;}
.ws42{word-spacing:-0.690740pt;}
.wsb8{word-spacing:-0.669491pt;}
.ws7f{word-spacing:-0.637606pt;}
.ws3b{word-spacing:-0.584473pt;}
.ws97{word-spacing:-0.531339pt;}
.ws4c{word-spacing:-0.371937pt;}
.ws83{word-spacing:-0.318803pt;}
.ws25{word-spacing:-0.265669pt;}
.wsa9{word-spacing:-0.239104pt;}
.ws30{word-spacing:-0.212535pt;}
.wsac{word-spacing:-0.191283pt;}
.ws1d{word-spacing:-0.159402pt;}
.wsad{word-spacing:-0.143462pt;}
.ws39{word-spacing:-0.106268pt;}
.wsae{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.ws79{word-spacing:-0.047821pt;}
.wsb7{word-spacing:-0.008499pt;}
.wsce{word-spacing:-0.006451pt;}
.wsc6{word-spacing:-0.005649pt;}
.wscf{word-spacing:-0.005453pt;}
.wscd{word-spacing:-0.004907pt;}
.wsd3{word-spacing:-0.003831pt;}
.wscc{word-spacing:-0.000717pt;}
.ws2c{word-spacing:-0.000698pt;}
.ws5{word-spacing:-0.000692pt;}
.ws0{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.000435pt;}
.ws94{word-spacing:0.047821pt;}
.ws3c{word-spacing:0.053134pt;}
.wsa8{word-spacing:0.095642pt;}
.ws1c{word-spacing:0.106268pt;}
.ws18{word-spacing:0.143462pt;}
.ws33{word-spacing:0.159402pt;}
.ws7{word-spacing:0.185968pt;}
.ws93{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.ws17{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws32{word-spacing:0.265669pt;}
.wsc5{word-spacing:0.286925pt;}
.ws20{word-spacing:0.318803pt;}
.wsa3{word-spacing:0.325348pt;}
.ws35{word-spacing:0.371937pt;}
.ws5d{word-spacing:0.425071pt;}
.ws61{word-spacing:0.478205pt;}
.wsca{word-spacing:0.526029pt;}
.ws46{word-spacing:0.531339pt;}
.ws5f{word-spacing:0.584473pt;}
.ws55{word-spacing:0.637606pt;}
.ws19{word-spacing:0.669491pt;}
.ws70{word-spacing:0.690740pt;}
.ws12{word-spacing:0.717312pt;}
.ws67{word-spacing:0.743874pt;}
.wsc4{word-spacing:0.765133pt;}
.ws37{word-spacing:0.797008pt;}
.ws26{word-spacing:0.850142pt;}
.ws80{word-spacing:0.903276pt;}
.ws71{word-spacing:0.956410pt;}
.ws6c{word-spacing:1.062677pt;}
.ws90{word-spacing:1.115811pt;}
.wsbb{word-spacing:1.147699pt;}
.ws36{word-spacing:1.222079pt;}
.ws45{word-spacing:1.275213pt;}
.ws9b{word-spacing:1.328347pt;}
.ws57{word-spacing:1.381481pt;}
.ws98{word-spacing:1.434614pt;}
.wsd2{word-spacing:1.434624pt;}
.ws96{word-spacing:1.487748pt;}
.ws81{word-spacing:1.647150pt;}
.ws4a{word-spacing:1.700284pt;}
.ws60{word-spacing:1.753418pt;}
.wsb4{word-spacing:1.769370pt;}
.ws8{word-spacing:1.785293pt;}
.ws9a{word-spacing:1.799603pt;}
.ws22{word-spacing:1.806551pt;}
.wsc1{word-spacing:1.817190pt;}
.ws5b{word-spacing:1.859685pt;}
.ws53{word-spacing:1.912819pt;}
.ws13{word-spacing:1.960653pt;}
.ws4b{word-spacing:1.965953pt;}
.ws7d{word-spacing:2.019087pt;}
.ws1f{word-spacing:2.072221pt;}
.wsaf{word-spacing:2.104115pt;}
.ws49{word-spacing:2.178489pt;}
.ws88{word-spacing:2.231622pt;}
.ws21{word-spacing:2.284756pt;}
.ws6f{word-spacing:2.337890pt;}
.ws75{word-spacing:2.444158pt;}
.ws1e{word-spacing:2.497292pt;}
.ws2f{word-spacing:2.550426pt;}
.ws76{word-spacing:2.603559pt;}
.wsba{word-spacing:2.630144pt;}
.wsc7{word-spacing:2.677965pt;}
.ws8d{word-spacing:2.709827pt;}
.wsc8{word-spacing:2.725786pt;}
.ws84{word-spacing:2.762961pt;}
.ws3d{word-spacing:2.816095pt;}
.ws1a{word-spacing:2.861926pt;}
.wsa4{word-spacing:2.866509pt;}
.ws54{word-spacing:2.869229pt;}
.wsb0{word-spacing:2.869248pt;}
.ws3a{word-spacing:2.922363pt;}
.wsbf{word-spacing:2.964890pt;}
.ws63{word-spacing:3.028630pt;}
.wsb5{word-spacing:3.060531pt;}
.ws89{word-spacing:3.081764pt;}
.ws3f{word-spacing:3.134898pt;}
.wsbe{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.188032pt;}
.wsbd{word-spacing:3.203994pt;}
.wsab{word-spacing:3.299635pt;}
.ws56{word-spacing:3.347434pt;}
.wsaa{word-spacing:3.347456pt;}
.wsb2{word-spacing:3.395277pt;}
.ws8f{word-spacing:3.400567pt;}
.ws8a{word-spacing:3.453701pt;}
.ws40{word-spacing:3.506835pt;}
.ws52{word-spacing:3.613103pt;}
.ws34{word-spacing:3.666237pt;}
.ws66{word-spacing:3.719371pt;}
.ws5a{word-spacing:3.878772pt;}
.ws91{word-spacing:3.931906pt;}
.ws3e{word-spacing:4.038174pt;}
.ws48{word-spacing:4.091308pt;}
.ws14{word-spacing:4.160410pt;}
.ws58{word-spacing:4.250709pt;}
.ws16{word-spacing:4.256051pt;}
.wsb1{word-spacing:4.303872pt;}
.ws47{word-spacing:4.463245pt;}
.ws43{word-spacing:4.569513pt;}
.ws2e{word-spacing:4.622646pt;}
.ws92{word-spacing:4.675780pt;}
.ws27{word-spacing:4.728914pt;}
.ws68{word-spacing:4.888316pt;}
.ws9f{word-spacing:4.941450pt;}
.ws8c{word-spacing:4.994583pt;}
.wsc2{word-spacing:5.021184pt;}
.ws15{word-spacing:5.069005pt;}
.ws87{word-spacing:5.100851pt;}
.wsa6{word-spacing:5.164646pt;}
.ws95{word-spacing:5.207119pt;}
.wsa7{word-spacing:5.212467pt;}
.ws82{word-spacing:5.260253pt;}
.wsa5{word-spacing:5.308109pt;}
.ws8e{word-spacing:5.313387pt;}
.wsf{word-spacing:5.393072pt;}
.ws6b{word-spacing:5.419654pt;}
.ws10{word-spacing:5.467459pt;}
.ws24{word-spacing:5.685324pt;}
.ws99{word-spacing:5.738458pt;}
.ws51{word-spacing:5.897859pt;}
.wsc9{word-spacing:6.407987pt;}
.ws7e{word-spacing:6.588599pt;}
.wsbc{word-spacing:6.647091pt;}
.ws4d{word-spacing:6.694867pt;}
.ws9e{word-spacing:6.748001pt;}
.ws6d{word-spacing:6.801135pt;}
.ws31{word-spacing:6.854269pt;}
.ws29{word-spacing:7.279340pt;}
.ws59{word-spacing:7.438741pt;}
.wsa2{word-spacing:7.545009pt;}
.wsd{word-spacing:7.699075pt;}
.ws8b{word-spacing:8.129482pt;}
.wsc0{word-spacing:8.799027pt;}
.ws5c{word-spacing:9.192159pt;}
.ws6{word-spacing:13.761632pt;}
.ws4{word-spacing:13.763148pt;}
.wsc{word-spacing:15.732893pt;}
.wsd0{word-spacing:16.163430pt;}
.wsd1{word-spacing:16.211251pt;}
.wsb{word-spacing:18.038896pt;}
.wsa{word-spacing:18.055335pt;}
.wse{word-spacing:24.399002pt;}
.ws77{word-spacing:369.075081pt;}
._2b{margin-left:-19.739226pt;}
._2c{margin-left:-17.969974pt;}
._0{margin-left:-10.616218pt;}
._8{margin-left:-6.025421pt;}
._10{margin-left:-5.100851pt;}
._5{margin-left:-4.091296pt;}
._7{margin-left:-2.677939pt;}
._2{margin-left:-1.721549pt;}
._3{width:0.969929pt;}
._6{width:2.045648pt;}
._19{width:3.501539pt;}
._2d{width:8.321911pt;}
._4{width:10.857225pt;}
._18{width:12.157052pt;}
._14{width:13.166583pt;}
._17{width:14.154874pt;}
._a{width:15.302656pt;}
._e{width:16.684034pt;}
._c{width:17.922154pt;}
._13{width:19.340727pt;}
._9{width:21.088973pt;}
._1a{width:23.028229pt;}
._f{width:23.931505pt;}
._d{width:25.105663pt;}
._1b{width:26.131556pt;}
._b{width:27.496960pt;}
._27{width:28.569968pt;}
._1{width:29.648896pt;}
._12{width:31.256651pt;}
._26{width:33.283066pt;}
._11{width:34.664546pt;}
._20{width:166.138377pt;}
._1c{width:167.310694pt;}
._21{width:219.449651pt;}
._29{width:242.141440pt;}
._25{width:315.856384pt;}
._22{width:317.577933pt;}
._1f{width:335.429683pt;}
._23{width:348.565811pt;}
._1d{width:410.637210pt;}
._24{width:438.229811pt;}
._1e{width:550.369587pt;}
._28{width:744.984269pt;}
._15{width:845.402891pt;}
._2a{width:2256.967982pt;}
._16{width:2278.221315pt;}
.fsb{font-size:31.880533pt;}
.fs2{font-size:35.359960pt;}
.fs1{font-size:36.555334pt;}
.fsa{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs0{font-size:40.029579pt;}
.fs7{font-size:40.381867pt;}
.fs3{font-size:41.862621pt;}
.fs8{font-size:41.988267pt;}
.fsc{font-size:42.507200pt;}
.fsd{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs5{font-size:53.133867pt;}
.fse{font-size:55.365867pt;}
.fs6{font-size:95.641600pt;}
.fs4{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.044747pt;}
.y4{bottom:3.805560pt;}
.y3{bottom:7.075016pt;}
.y2{bottom:10.869741pt;}
.yc{bottom:12.578910pt;}
.y5{bottom:14.337350pt;}
.y4c{bottom:28.346667pt;}
.ybb{bottom:82.034667pt;}
.y106{bottom:86.838667pt;}
.y1c3{bottom:87.220000pt;}
.y178{bottom:90.854667pt;}
.y26{bottom:91.398667pt;}
.y115{bottom:92.821333pt;}
.y18f{bottom:94.441333pt;}
.y84{bottom:95.594667pt;}
.yba{bottom:98.772000pt;}
.y143{bottom:100.594667pt;}
.y1c2{bottom:102.562667pt;}
.y12b{bottom:102.810667pt;}
.y25{bottom:107.298667pt;}
.y1f9{bottom:107.393333pt;}
.y177{bottom:107.592000pt;}
.y105{bottom:107.852000pt;}
.ye5{bottom:109.558667pt;}
.y18e{bottom:111.178667pt;}
.y83{bottom:112.332000pt;}
.yb9{bottom:115.509333pt;}
.y142{bottom:117.332000pt;}
.y1c1{bottom:117.905333pt;}
.y12a{bottom:119.548000pt;}
.y4b{bottom:121.580000pt;}
.y1f8{bottom:122.736000pt;}
.y24{bottom:123.200000pt;}
.y176{bottom:124.329333pt;}
.ye4{bottom:126.296000pt;}
.y18d{bottom:127.916000pt;}
.y104{bottom:128.866667pt;}
.y82{bottom:129.069333pt;}
.yb8{bottom:132.246667pt;}
.y1c0{bottom:133.248000pt;}
.y141{bottom:134.069333pt;}
.y129{bottom:136.285333pt;}
.y1f7{bottom:138.078667pt;}
.y4a{bottom:138.317333pt;}
.y23{bottom:139.100000pt;}
.y175{bottom:141.066667pt;}
.ye3{bottom:143.033333pt;}
.y103{bottom:143.478667pt;}
.y18c{bottom:144.653333pt;}
.y81{bottom:145.806667pt;}
.y1bf{bottom:148.590667pt;}
.yb7{bottom:148.984000pt;}
.y140{bottom:150.806667pt;}
.y128{bottom:153.022667pt;}
.y1f6{bottom:153.421333pt;}
.y22{bottom:155.000000pt;}
.y49{bottom:155.053333pt;}
.y174{bottom:157.804000pt;}
.ye2{bottom:159.770667pt;}
.y18b{bottom:161.390667pt;}
.y80{bottom:162.544000pt;}
.y1be{bottom:163.933333pt;}
.y101{bottom:164.492000pt;}
.yb6{bottom:165.721333pt;}
.y13f{bottom:167.544000pt;}
.y1f5{bottom:168.762667pt;}
.y127{bottom:169.760000pt;}
.y21{bottom:170.901333pt;}
.y48{bottom:171.790667pt;}
.y102{bottom:171.798667pt;}
.y173{bottom:174.541333pt;}
.ye1{bottom:176.508000pt;}
.y18a{bottom:178.128000pt;}
.y100{bottom:179.104000pt;}
.y1bd{bottom:179.276000pt;}
.y7f{bottom:179.281333pt;}
.yb5{bottom:182.458667pt;}
.y1f4{bottom:184.105333pt;}
.y126{bottom:186.497333pt;}
.y20{bottom:186.801333pt;}
.y47{bottom:188.528000pt;}
.y172{bottom:191.278667pt;}
.ye0{bottom:193.245333pt;}
.y1bc{bottom:194.618667pt;}
.y189{bottom:194.865333pt;}
.y7e{bottom:196.018667pt;}
.yb4{bottom:199.196000pt;}
.y1f3{bottom:199.448000pt;}
.yff{bottom:200.118667pt;}
.y1f{bottom:202.701333pt;}
.y46{bottom:205.265333pt;}
.y125{bottom:207.218667pt;}
.y13e{bottom:207.954667pt;}
.y171{bottom:208.016000pt;}
.ydf{bottom:209.982667pt;}
.y188{bottom:211.602667pt;}
.y7d{bottom:212.756000pt;}
.y1bb{bottom:213.945333pt;}
.y1f2{bottom:214.790667pt;}
.yb3{bottom:215.933333pt;}
.yfe{bottom:221.132000pt;}
.y45{bottom:222.002667pt;}
.y13d{bottom:222.566667pt;}
.y124{bottom:223.956000pt;}
.y170{bottom:224.753333pt;}
.yde{bottom:226.720000pt;}
.y187{bottom:228.340000pt;}
.yfd{bottom:228.438667pt;}
.y7c{bottom:229.493333pt;}
.y1f1{bottom:230.133333pt;}
.yb2{bottom:232.670667pt;}
.y13c{bottom:237.178667pt;}
.y44{bottom:238.740000pt;}
.y123{bottom:240.693333pt;}
.y16f{bottom:241.490667pt;}
.ydd{bottom:243.457333pt;}
.y186{bottom:245.077333pt;}
.y1f0{bottom:245.476000pt;}
.y7b{bottom:246.230667pt;}
.y1ba{bottom:246.490667pt;}
.yb1{bottom:249.408000pt;}
.y13b{bottom:251.790667pt;}
.y43{bottom:255.477333pt;}
.y122{bottom:257.430667pt;}
.y16e{bottom:258.228000pt;}
.ydc{bottom:260.194667pt;}
.y1ef{bottom:260.818667pt;}
.y185{bottom:261.814667pt;}
.y1b9{bottom:261.833333pt;}
.y7a{bottom:262.968000pt;}
.yfc{bottom:263.850667pt;}
.yb0{bottom:266.145333pt;}
.y1b8{bottom:266.172000pt;}
.y13a{bottom:266.402667pt;}
.y42{bottom:272.214667pt;}
.y1e{bottom:273.154667pt;}
.y121{bottom:274.168000pt;}
.y16d{bottom:274.965333pt;}
.y1ee{bottom:276.161333pt;}
.ydb{bottom:276.932000pt;}
.y184{bottom:278.552000pt;}
.y79{bottom:279.705333pt;}
.y1b7{bottom:280.170667pt;}
.y139{bottom:281.014667pt;}
.yaf{bottom:284.502667pt;}
.y41{bottom:288.952000pt;}
.y1d{bottom:289.054667pt;}
.y1ed{bottom:291.502667pt;}
.y16c{bottom:291.702667pt;}
.yda{bottom:293.669333pt;}
.y120{bottom:294.890667pt;}
.y183{bottom:295.289333pt;}
.y1b6{bottom:295.513333pt;}
.yfb{bottom:295.688000pt;}
.y78{bottom:296.442667pt;}
.yae{bottom:301.240000pt;}
.y138{bottom:302.028000pt;}
.y1c{bottom:304.954667pt;}
.y40{bottom:305.689333pt;}
.y1ec{bottom:306.845333pt;}
.y16b{bottom:308.440000pt;}
.yd9{bottom:310.406667pt;}
.y1b5{bottom:310.856000pt;}
.y182{bottom:312.026667pt;}
.yfa{bottom:312.425333pt;}
.y77{bottom:313.180000pt;}
.y11f{bottom:315.613333pt;}
.yad{bottom:317.977333pt;}
.y1b{bottom:320.856000pt;}
.y1eb{bottom:322.188000pt;}
.y3f{bottom:322.426667pt;}
.y137{bottom:323.042667pt;}
.y16a{bottom:325.177333pt;}
.y1b4{bottom:326.198667pt;}
.yd8{bottom:327.142667pt;}
.y181{bottom:328.764000pt;}
.yf9{bottom:329.162667pt;}
.y76{bottom:329.917333pt;}
.yac{bottom:334.714667pt;}
.y1ea{bottom:337.530667pt;}
.y136{bottom:337.653333pt;}
.y3e{bottom:339.164000pt;}
.y1b3{bottom:341.541333pt;}
.y169{bottom:341.914667pt;}
.yd7{bottom:343.880000pt;}
.y11e{bottom:345.501333pt;}
.yf8{bottom:345.900000pt;}
.y75{bottom:346.654667pt;}
.yab{bottom:351.452000pt;}
.y135{bottom:352.265333pt;}
.y1e9{bottom:352.873333pt;}
.y1a{bottom:354.688000pt;}
.y3d{bottom:355.901333pt;}
.y1b2{bottom:356.882667pt;}
.y168{bottom:358.652000pt;}
.yd6{bottom:360.617333pt;}
.y1b1{bottom:361.222667pt;}
.y11d{bottom:362.238667pt;}
.yf7{bottom:362.637333pt;}
.y74{bottom:363.390667pt;}
.y134{bottom:366.877333pt;}
.yaa{bottom:368.189333pt;}
.y1e8{bottom:368.216000pt;}
.y19{bottom:370.589333pt;}
.y3c{bottom:372.638667pt;}
.y1b0{bottom:375.221333pt;}
.y167{bottom:375.389333pt;}
.yd5{bottom:377.354667pt;}
.y11c{bottom:378.976000pt;}
.yf6{bottom:379.374667pt;}
.y73{bottom:380.128000pt;}
.y1e7{bottom:383.558667pt;}
.y18{bottom:386.489333pt;}
.ya9{bottom:388.912000pt;}
.y3b{bottom:389.376000pt;}
.y1af{bottom:390.564000pt;}
.y166{bottom:392.126667pt;}
.yd4{bottom:394.092000pt;}
.y1ae{bottom:394.902667pt;}
.y133{bottom:394.984000pt;}
.y11b{bottom:395.713333pt;}
.yf5{bottom:396.112000pt;}
.y72{bottom:396.865333pt;}
.y1e6{bottom:398.901333pt;}
.ya7{bottom:405.649333pt;}
.y165{bottom:408.864000pt;}
.y1ad{bottom:408.901333pt;}
.y3a{bottom:410.098667pt;}
.ya8{bottom:410.470667pt;}
.yd3{bottom:410.829333pt;}
.y11a{bottom:412.450667pt;}
.yf4{bottom:412.848000pt;}
.y71{bottom:413.602667pt;}
.y1e5{bottom:414.244000pt;}
.y17{bottom:418.330667pt;}
.ya6{bottom:422.386667pt;}
.y1ac{bottom:424.244000pt;}
.y164{bottom:425.601333pt;}
.y39{bottom:426.836000pt;}
.yd2{bottom:427.566667pt;}
.y132{bottom:427.965333pt;}
.y1ab{bottom:428.584000pt;}
.y119{bottom:429.188000pt;}
.yf3{bottom:429.585333pt;}
.y70{bottom:430.340000pt;}
.y16{bottom:434.230667pt;}
.ya5{bottom:439.124000pt;}
.y163{bottom:442.338667pt;}
.y1aa{bottom:442.581333pt;}
.y38{bottom:443.573333pt;}
.yd1{bottom:444.304000pt;}
.y131{bottom:444.702667pt;}
.y1e4{bottom:444.928000pt;}
.y118{bottom:445.925333pt;}
.yf2{bottom:446.322667pt;}
.y6f{bottom:447.077333pt;}
.y15{bottom:450.130667pt;}
.ya4{bottom:455.861333pt;}
.y1a9{bottom:457.924000pt;}
.y162{bottom:459.076000pt;}
.y1e3{bottom:460.270667pt;}
.y37{bottom:460.310667pt;}
.yd0{bottom:461.041333pt;}
.y130{bottom:461.440000pt;}
.y117{bottom:462.662667pt;}
.yf1{bottom:463.060000pt;}
.y6e{bottom:463.814667pt;}
.ya3{bottom:472.598667pt;}
.y1a8{bottom:473.266667pt;}
.y1e2{bottom:475.613333pt;}
.y161{bottom:475.813333pt;}
.ycf{bottom:477.778667pt;}
.y12f{bottom:478.177333pt;}
.y180{bottom:479.398667pt;}
.yf0{bottom:479.797333pt;}
.y6d{bottom:480.552000pt;}
.y36{bottom:481.032000pt;}
.y14{bottom:481.972000pt;}
.y116{bottom:483.384000pt;}
.y1a7{bottom:488.609333pt;}
.y1e1{bottom:490.956000pt;}
.y160{bottom:492.549333pt;}
.ya2{bottom:493.320000pt;}
.yce{bottom:494.516000pt;}
.y12e{bottom:494.914667pt;}
.y17f{bottom:496.136000pt;}
.yef{bottom:496.534667pt;}
.y6c{bottom:497.289333pt;}
.y35{bottom:497.769333pt;}
.y13{bottom:497.872000pt;}
.y1a6{bottom:503.952000pt;}
.y1e0{bottom:506.298667pt;}
.y15f{bottom:509.286667pt;}
.ya1{bottom:510.057333pt;}
.ycd{bottom:511.253333pt;}
.y12d{bottom:511.652000pt;}
.y17e{bottom:512.873333pt;}
.yee{bottom:513.272000pt;}
.y12{bottom:513.772000pt;}
.y6b{bottom:514.026667pt;}
.y34{bottom:518.492000pt;}
.y1a5{bottom:519.294667pt;}
.y1df{bottom:521.641333pt;}
.y15e{bottom:526.024000pt;}
.ya0{bottom:526.794667pt;}
.ycc{bottom:527.990667pt;}
.y12c{bottom:528.389333pt;}
.y17d{bottom:529.610667pt;}
.y11{bottom:529.673333pt;}
.yed{bottom:530.009333pt;}
.y6a{bottom:530.764000pt;}
.y1a4{bottom:534.637333pt;}
.y1de{bottom:536.984000pt;}
.y15d{bottom:542.761333pt;}
.y9f{bottom:543.532000pt;}
.ycb{bottom:544.728000pt;}
.y10{bottom:545.573333pt;}
.y17c{bottom:546.348000pt;}
.yec{bottom:546.746667pt;}
.y69{bottom:547.501333pt;}
.y1a3{bottom:549.978667pt;}
.y190{bottom:550.333333pt;}
.y1dd{bottom:552.325333pt;}
.y15c{bottom:559.498667pt;}
.y9e{bottom:560.269333pt;}
.yca{bottom:561.465333pt;}
.yf{bottom:561.473333pt;}
.y17b{bottom:563.085333pt;}
.yeb{bottom:563.484000pt;}
.y68{bottom:564.238667pt;}
.y1a2{bottom:565.321333pt;}
.y1dc{bottom:567.668000pt;}
.y15b{bottom:576.236000pt;}
.y9c{bottom:577.006667pt;}
.ye{bottom:577.374667pt;}
.yc9{bottom:578.202667pt;}
.y17a{bottom:579.822667pt;}
.yea{bottom:580.221333pt;}
.y1a1{bottom:580.664000pt;}
.y66{bottom:580.976000pt;}
.y9d{bottom:581.829333pt;}
.y1db{bottom:583.010667pt;}
.y33{bottom:585.292000pt;}
.y67{bottom:585.797333pt;}
.y15a{bottom:592.973333pt;}
.yc8{bottom:594.940000pt;}
.y9b{bottom:595.365333pt;}
.y1a0{bottom:596.006667pt;}
.ye9{bottom:596.958667pt;}
.yb{bottom:597.259968pt;}
.y1da{bottom:598.353333pt;}
.y65{bottom:599.333333pt;}
.y19f{bottom:600.346667pt;}
.y179{bottom:600.545333pt;}
.y159{bottom:609.710667pt;}
.yc7{bottom:611.677333pt;}
.ye8{bottom:613.696000pt;}
.y19e{bottom:614.344000pt;}
.y64{bottom:616.070667pt;}
.y9a{bottom:616.086667pt;}
.y32{bottom:618.528000pt;}
.y158{bottom:626.448000pt;}
.yc5{bottom:628.414667pt;}
.y1d9{bottom:629.038667pt;}
.y19d{bottom:629.686667pt;}
.ye7{bottom:630.433333pt;}
.y63{bottom:632.808000pt;}
.yc6{bottom:633.236000pt;}
.y99{bottom:634.020000pt;}
.y31{bottom:635.822667pt;}
.y157{bottom:643.185333pt;}
.y1d8{bottom:644.381333pt;}
.y19c{bottom:645.029333pt;}
.y114{bottom:645.152000pt;}
.yc4{bottom:646.772000pt;}
.ye6{bottom:647.170667pt;}
.y19b{bottom:649.369333pt;}
.y62{bottom:649.545333pt;}
.y30{bottom:653.117333pt;}
.y1d7{bottom:659.724000pt;}
.y156{bottom:659.922667pt;}
.y113{bottom:661.889333pt;}
.y19a{bottom:663.368000pt;}
.yc3{bottom:663.509333pt;}
.y98{bottom:663.908000pt;}
.y61{bottom:666.282667pt;}
.y2f{bottom:670.413333pt;}
.y1d6{bottom:675.066667pt;}
.y155{bottom:676.660000pt;}
.y112{bottom:678.626667pt;}
.y199{bottom:678.709333pt;}
.yc2{bottom:680.246667pt;}
.y97{bottom:680.645333pt;}
.y60{bottom:683.020000pt;}
.y2e{bottom:687.708000pt;}
.y1d5{bottom:690.408000pt;}
.y154{bottom:693.397333pt;}
.y198{bottom:694.052000pt;}
.y111{bottom:695.364000pt;}
.yc1{bottom:696.984000pt;}
.y96{bottom:697.382667pt;}
.y5f{bottom:699.757333pt;}
.y2d{bottom:705.004000pt;}
.y1d4{bottom:705.750667pt;}
.y197{bottom:709.394667pt;}
.y153{bottom:710.134667pt;}
.y110{bottom:712.101333pt;}
.yc0{bottom:713.721333pt;}
.y196{bottom:713.734667pt;}
.y95{bottom:714.120000pt;}
.y5e{bottom:716.494667pt;}
.y1d3{bottom:721.093333pt;}
.y2c{bottom:722.298667pt;}
.y152{bottom:726.872000pt;}
.y10e{bottom:728.838667pt;}
.ybf{bottom:730.458667pt;}
.y94{bottom:730.857333pt;}
.y195{bottom:732.530667pt;}
.y5d{bottom:733.232000pt;}
.y10f{bottom:733.660000pt;}
.y1d2{bottom:736.436000pt;}
.y2b{bottom:739.593333pt;}
.y151{bottom:743.609333pt;}
.ybe{bottom:747.196000pt;}
.y93{bottom:747.594667pt;}
.y5c{bottom:749.969333pt;}
.y1d1{bottom:751.778667pt;}
.y2a{bottom:756.889333pt;}
.y150{bottom:760.346667pt;}
.y194{bottom:762.418667pt;}
.ybd{bottom:763.933333pt;}
.y92{bottom:764.332000pt;}
.y5b{bottom:766.706667pt;}
.y1d0{bottom:767.121333pt;}
.y29{bottom:774.184000pt;}
.y14f{bottom:777.084000pt;}
.y10d{bottom:780.670667pt;}
.y91{bottom:781.069333pt;}
.y1cf{bottom:782.464000pt;}
.y5a{bottom:783.444000pt;}
.ybc{bottom:784.656000pt;}
.y193{bottom:786.010667pt;}
.y14e{bottom:793.821333pt;}
.y10c{bottom:797.408000pt;}
.y90{bottom:797.806667pt;}
.y59{bottom:800.181333pt;}
.y192{bottom:809.602667pt;}
.y14d{bottom:810.558667pt;}
.y28{bottom:812.340000pt;}
.y1ce{bottom:813.148000pt;}
.y1fa{bottom:813.149333pt;}
.y10b{bottom:814.145333pt;}
.y8f{bottom:814.544000pt;}
.y58{bottom:816.918667pt;}
.y27{bottom:826.686667pt;}
.y14c{bottom:827.296000pt;}
.y1cd{bottom:828.490667pt;}
.y10a{bottom:830.882667pt;}
.y8e{bottom:831.281333pt;}
.y191{bottom:833.193333pt;}
.y57{bottom:833.656000pt;}
.y1cc{bottom:843.833333pt;}
.y14b{bottom:844.033333pt;}
.y109{bottom:847.620000pt;}
.y8d{bottom:848.018667pt;}
.y56{bottom:850.393333pt;}
.y1cb{bottom:859.176000pt;}
.y14a{bottom:860.770667pt;}
.ya{bottom:862.413333pt;}
.y108{bottom:864.357333pt;}
.y8c{bottom:864.754667pt;}
.y55{bottom:867.130667pt;}
.y1ca{bottom:874.518667pt;}
.y149{bottom:877.508000pt;}
.y8b{bottom:881.492000pt;}
.y54{bottom:883.868000pt;}
.y107{bottom:885.078667pt;}
.y1c9{bottom:889.861333pt;}
.y148{bottom:894.245333pt;}
.y8a{bottom:898.229333pt;}
.y9{bottom:900.404000pt;}
.y53{bottom:900.605333pt;}
.y1c8{bottom:905.204000pt;}
.y147{bottom:910.982667pt;}
.y89{bottom:914.966667pt;}
.y52{bottom:917.342667pt;}
.y1c7{bottom:920.546667pt;}
.y8{bottom:925.510667pt;}
.y146{bottom:927.720000pt;}
.y88{bottom:931.704000pt;}
.y51{bottom:934.080000pt;}
.y1c6{bottom:935.889333pt;}
.y145{bottom:944.456000pt;}
.y87{bottom:948.441333pt;}
.y7{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.y1c5{bottom:951.230667pt;}
.y144{bottom:961.193333pt;}
.y86{bottom:965.178667pt;}
.y1c4{bottom:966.573333pt;}
.y4f{bottom:967.554667pt;}
.y6{bottom:975.722667pt;}
.y85{bottom:981.916000pt;}
.y4e{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4d{bottom:1043.020000pt;}
.h9{height:22.673858pt;}
.h4{height:26.246730pt;}
.h14{height:27.184641pt;}
.h3{height:28.741238pt;}
.hb{height:29.433775pt;}
.hd{height:30.063343pt;}
.ha{height:30.399505pt;}
.he{height:34.430976pt;}
.hc{height:35.073565pt;}
.h13{height:38.080100pt;}
.h10{height:38.256384pt;}
.h12{height:40.084290pt;}
.h6{height:45.004385pt;}
.hf{height:45.095014pt;}
.h2{height:45.233304pt;}
.h8{height:48.360277pt;}
.h11{height:50.105236pt;}
.h1a{height:52.433565pt;}
.h1e{height:56.567014pt;}
.h1f{height:56.572348pt;}
.h15{height:57.365434pt;}
.h1c{height:62.851903pt;}
.h1d{height:62.857236pt;}
.h16{height:63.652309pt;}
.h17{height:63.657643pt;}
.h7{height:68.861952pt;}
.h19{height:74.316348pt;}
.h18{height:74.321681pt;}
.h5{height:79.946609pt;}
.h1b{height:103.543014pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:251.923925pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:25.236320pt;}
.x2{left:28.870570pt;}
.x3{left:38.475895pt;}
.x5{left:45.606984pt;}
.x1{left:48.000000pt;}
.x4f{left:49.161333pt;}
.x51{left:76.092000pt;}
.x50{left:77.885333pt;}
.x52{left:204.005333pt;}
.x15{left:221.026667pt;}
.x6{left:223.020000pt;}
.x3c{left:230.989333pt;}
.x29{left:234.165333pt;}
.x2e{left:236.093333pt;}
.x40{left:238.538667pt;}
.x27{left:245.181333pt;}
.x25{left:246.652000pt;}
.x2c{left:249.982667pt;}
.x8{left:251.365333pt;}
.x28{left:252.485333pt;}
.x2f{left:257.141333pt;}
.x2d{left:260.754667pt;}
.x41{left:263.686667pt;}
.xd{left:267.141333pt;}
.x2a{left:272.236000pt;}
.x7{left:275.549333pt;}
.xe{left:288.898667pt;}
.x26{left:295.290667pt;}
.x2b{left:302.182667pt;}
.xf{left:307.525333pt;}
.x3e{left:308.430667pt;}
.x36{left:312.364000pt;}
.x3f{left:315.960000pt;}
.x3d{left:324.494667pt;}
.x10{left:327.498667pt;}
.x37{left:334.493333pt;}
.x18{left:335.513333pt;}
.x30{left:345.370667pt;}
.x4a{left:348.425333pt;}
.x4d{left:354.317333pt;}
.x19{left:355.978667pt;}
.x31{left:366.137333pt;}
.x4e{left:375.058667pt;}
.x38{left:393.384000pt;}
.x4b{left:399.092000pt;}
.x49{left:409.144000pt;}
.x39{left:414.137333pt;}
.x3b{left:447.921333pt;}
.x23{left:452.446667pt;}
.x24{left:473.190667pt;}
.x44{left:492.374667pt;}
.x16{left:497.781333pt;}
.x1f{left:500.502667pt;}
.x32{left:502.496000pt;}
.x34{left:507.365333pt;}
.x43{left:509.216000pt;}
.x45{left:514.202667pt;}
.x17{left:518.548000pt;}
.x20{left:521.248000pt;}
.x4c{left:522.382667pt;}
.x33{left:524.018667pt;}
.x35{left:528.888000pt;}
.x46{left:534.966667pt;}
.x42{left:554.729333pt;}
.x21{left:560.377333pt;}
.x11{left:562.674667pt;}
.x12{left:576.905333pt;}
.x3a{left:579.428000pt;}
.x22{left:581.132000pt;}
.x13{left:590.388000pt;}
.x14{left:599.406667pt;}
.x53{left:604.716000pt;}
.x1b{left:610.777333pt;}
.x54{left:616.910667pt;}
.x1c{left:632.540000pt;}
.xb{left:671.792000pt;}
.x47{left:676.328000pt;}
.xc{left:680.812000pt;}
.x48{left:697.522667pt;}
.x1d{left:722.029333pt;}
.x9{left:727.922667pt;}
.xa{left:737.341333pt;}
.x1a{left:739.989333pt;}
.x1e{left:742.694667pt;}
}




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