
    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_fba69ff08040d110c6db5197.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.638000;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_355f943c864781522e1b1832.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f53561245783978c69315187.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7db0c31f45f48d860bb12253.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_02db4a294d3534d1cb48ebdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_fa9c52a1f8b8523722ae81dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_76aec51088d3ca7ed2004153.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.552000;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_bae2fe1cd07a841578ea93d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914000;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_63bb943805d43a0928f56e4c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4864a91129148f37a43c280c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869000;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;}
.m18{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{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.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);}
.m9{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);}
.m5{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);}
.ma{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);}
.m16{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);}
.m21{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);}
.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);}
.m20{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);}
.m1d{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);}
.m2{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);}
.me{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m11{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);}
.m15{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);}
.m6{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);}
.m1e{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);}
.m19{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);}
.m23{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);}
.md{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);}
.mc{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);}
.mb{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);}
.m10{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);}
.m24{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);}
.m17{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);}
.m26{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);}
.m12{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);}
.m28{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m25{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);}
.m1f{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);}
.m1b{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);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v6{vertical-align:-1.213800px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:11.994000px;}
.v1{vertical-align:21.702000px;}
.v8{vertical-align:25.336800px;}
.v7{vertical-align:27.244200px;}
.v3{vertical-align:31.230300px;}
.v5{vertical-align:53.279700px;}
.v4{vertical-align:62.466300px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.988000px;}
.ls24{letter-spacing:10.943305px;}
.ls23{letter-spacing:10.962541px;}
.lsc{letter-spacing:11.432905px;}
.lsb{letter-spacing:11.435353px;}
.ls12{letter-spacing:11.437424px;}
.ls1c{letter-spacing:11.440116px;}
.ls11{letter-spacing:11.441411px;}
.ls1b{letter-spacing:11.442197px;}
.lse{letter-spacing:11.444492px;}
.ls17{letter-spacing:11.447169px;}
.ls21{letter-spacing:11.447455px;}
.ls22{letter-spacing:11.447720px;}
.ls16{letter-spacing:11.450357px;}
.ls1a{letter-spacing:11.450510px;}
.ls25{letter-spacing:11.450826px;}
.ls1f{letter-spacing:11.451081px;}
.ls1e{letter-spacing:11.451418px;}
.ls20{letter-spacing:11.453605px;}
.ls27{letter-spacing:11.456966px;}
.ls26{letter-spacing:11.457935px;}
.ls14{letter-spacing:11.464193px;}
.lsd{letter-spacing:11.467569px;}
.ls15{letter-spacing:11.468605px;}
.ls13{letter-spacing:11.489199px;}
.ls1d{letter-spacing:11.492055px;}
.ls10{letter-spacing:11.642005px;}
.lsf{letter-spacing:11.652031px;}
.ls19{letter-spacing:11.667505px;}
.ls18{letter-spacing:11.691608px;}
.ls6{letter-spacing:11.955000px;}
.ls2b{letter-spacing:13.449000px;}
.ls2a{letter-spacing:13.455000px;}
.ls30{letter-spacing:13.539000px;}
.ls2e{letter-spacing:13.581000px;}
.ls2d{letter-spacing:13.641000px;}
.ls29{letter-spacing:13.869000px;}
.ls28{letter-spacing:14.883000px;}
.ls2{letter-spacing:14.926296px;}
.ls9{letter-spacing:15.123000px;}
.ls2c{letter-spacing:16.209000px;}
.lsa{letter-spacing:16.317000px;}
.ls1{letter-spacing:17.928000px;}
.ls2f{letter-spacing:22.143000px;}
.ls3{letter-spacing:70.236000px;}
.ls4{letter-spacing:72.354576px;}
.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;}
}
.ws7f{word-spacing:-14.944500px;}
.wsa8{word-spacing:-13.449000px;}
.ws41{word-spacing:-12.776550px;}
.ws52{word-spacing:-11.431650px;}
.ws2{word-spacing:-11.358000px;}
.wsb7{word-spacing:-3.819408px;}
.wsc{word-spacing:-3.766074px;}
.ws7e{word-spacing:-3.526663px;}
.ws9c{word-spacing:-3.168413px;}
.ws8d{word-spacing:-3.049037px;}
.ws8f{word-spacing:-2.989020px;}
.ws8e{word-spacing:-2.929002px;}
.ws95{word-spacing:-2.271385px;}
.wsd8{word-spacing:-1.936710px;}
.ws7{word-spacing:-1.908367px;}
.wse2{word-spacing:-1.667945px;}
.ws2b{word-spacing:-1.434971px;}
.ws2c{word-spacing:-1.374954px;}
.ws6{word-spacing:-1.322630px;}
.wse4{word-spacing:-1.291158px;}
.ws9e{word-spacing:-1.255577px;}
.ws28{word-spacing:-1.135543px;}
.ws82{word-spacing:-1.084530px;}
.ws81{word-spacing:-1.076124px;}
.wsa2{word-spacing:-1.021747px;}
.wsab{word-spacing:-0.914371px;}
.ws5b{word-spacing:-0.896730px;}
.wsd{word-spacing:-0.836713px;}
.wse3{word-spacing:-0.806940px;}
.wsbe{word-spacing:-0.699563px;}
.ws9b{word-spacing:-0.657319px;}
.ws29{word-spacing:-0.597900px;}
.ws51{word-spacing:-0.457449px;}
.ws2a{word-spacing:-0.418506px;}
.ws18{word-spacing:-0.358489px;}
.wsd2{word-spacing:-0.322776px;}
.ws89{word-spacing:-0.299129px;}
.ws96{word-spacing:-0.298531px;}
.wse6{word-spacing:-0.269410px;}
.wsaf{word-spacing:-0.268765px;}
.ws12{word-spacing:-0.239112px;}
.wsc6{word-spacing:-0.215399px;}
.ws19{word-spacing:-0.179095px;}
.wsa4{word-spacing:-0.161388px;}
.ws5c{word-spacing:-0.136705px;}
.ws1f{word-spacing:-0.119735px;}
.ws9f{word-spacing:-0.107377px;}
.ws54{word-spacing:-0.063967px;}
.ws1e{word-spacing:-0.060316px;}
.ws1d{word-spacing:-0.059718px;}
.wsde{word-spacing:-0.054011px;}
.ws1{word-spacing:-0.020778px;}
.ws4{word-spacing:-0.017790px;}
.ws3{word-spacing:-0.016151px;}
.ws5d{word-spacing:-0.003967px;}
.ws5{word-spacing:-0.000299px;}
.ws21{word-spacing:-0.000143px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.000299px;}
.ws49{word-spacing:0.004851px;}
.ws6a{word-spacing:0.005916px;}
.ws43{word-spacing:0.006380px;}
.ws45{word-spacing:0.006965px;}
.ws5f{word-spacing:0.007032px;}
.ws4f{word-spacing:0.009941px;}
.ws50{word-spacing:0.010247px;}
.ws46{word-spacing:0.016397px;}
.ws4d{word-spacing:0.045407px;}
.wsbd{word-spacing:0.053419px;}
.wsd9{word-spacing:0.054011px;}
.wse{word-spacing:0.059718px;}
.wsa6{word-spacing:0.107377px;}
.wsdb{word-spacing:0.107969px;}
.ws90{word-spacing:0.113203px;}
.wsa{word-spacing:0.119676px;}
.ws67{word-spacing:0.161388px;}
.ws9{word-spacing:0.179095px;}
.ws13{word-spacing:0.179693px;}
.ws4a{word-spacing:0.183089px;}
.wsdc{word-spacing:0.214807px;}
.wsb5{word-spacing:0.215399px;}
.ws4e{word-spacing:0.228450px;}
.wsb{word-spacing:0.239112px;}
.wscb{word-spacing:0.268765px;}
.ws8{word-spacing:0.298531px;}
.ws2d{word-spacing:0.299129px;}
.ws17{word-spacing:0.358489px;}
.ws2e{word-spacing:0.418506px;}
.wsac{word-spacing:0.484164px;}
.ws59{word-spacing:0.537942px;}
.wsb9{word-spacing:0.645552px;}
.wsdf{word-spacing:0.699563px;}
.ws27{word-spacing:0.717336px;}
.ws25{word-spacing:0.836713px;}
.ws16{word-spacing:0.896730px;}
.wsf{word-spacing:1.016166px;}
.ws8c{word-spacing:1.075526px;}
.ws10{word-spacing:1.076124px;}
.wsbf{word-spacing:1.237147px;}
.ws2f{word-spacing:1.308133px;}
.ws30{word-spacing:1.314937px;}
.wsb4{word-spacing:1.345115px;}
.ws8a{word-spacing:1.434971px;}
.wsb0{word-spacing:1.506557px;}
.wsa1{word-spacing:1.936710px;}
.ws56{word-spacing:1.972554px;}
.ws55{word-spacing:2.032572px;}
.wsba{word-spacing:2.151517px;}
.wsc1{word-spacing:2.205475px;}
.ws33{word-spacing:2.211965px;}
.ws26{word-spacing:2.989020px;}
.wsc9{word-spacing:3.012468px;}
.ws36{word-spacing:3.108396px;}
.ws53{word-spacing:3.347807px;}
.wscd{word-spacing:3.496632px;}
.wsd5{word-spacing:3.550644px;}
.wsd3{word-spacing:3.658020px;}
.ws5a{word-spacing:3.766074px;}
.ws1a{word-spacing:3.826031px;}
.ws34{word-spacing:4.064844px;}
.ws58{word-spacing:4.124861px;}
.ws93{word-spacing:4.244298px;}
.wsb2{word-spacing:4.303626px;}
.wsb8{word-spacing:4.572391px;}
.ws6e{word-spacing:4.572477px;}
.ws6d{word-spacing:4.575853px;}
.wsa0{word-spacing:4.626402px;}
.ws9a{word-spacing:4.781881px;}
.ws99{word-spacing:4.782479px;}
.ws9d{word-spacing:4.841898px;}
.ws86{word-spacing:4.945212px;}
.ws87{word-spacing:4.961275px;}
.wsc2{word-spacing:5.003189px;}
.wsbc{word-spacing:5.379385px;}
.wsb3{word-spacing:5.380572px;}
.wsc4{word-spacing:5.389242px;}
.wsa3{word-spacing:5.389356px;}
.wsc7{word-spacing:5.390844px;}
.ws88{word-spacing:5.559533px;}
.wsad{word-spacing:5.648741px;}
.wsd7{word-spacing:5.756118px;}
.ws3a{word-spacing:5.918321px;}
.ws14{word-spacing:5.959074px;}
.ws15{word-spacing:5.976000px;}
.ws24{word-spacing:5.977740px;}
.wsc3{word-spacing:6.240336px;}
.ws83{word-spacing:6.336528px;}
.wscf{word-spacing:6.885888px;}
.wsaa{word-spacing:7.154707px;}
.ws8b{word-spacing:7.173599px;}
.ws32{word-spacing:7.292976px;}
.ws57{word-spacing:7.472370px;}
.ws92{word-spacing:7.711183px;}
.ws84{word-spacing:8.130047px;}
.wse0{word-spacing:8.231057px;}
.wsd1{word-spacing:8.715221px;}
.wsae{word-spacing:8.822598px;}
.ws37{word-spacing:8.847024px;}
.wscc{word-spacing:8.983986px;}
.ws94{word-spacing:9.026478px;}
.ws80{word-spacing:9.145855px;}
.ws85{word-spacing:9.385266px;}
.ws35{word-spacing:9.982926px;}
.wsc8{word-spacing:10.006379px;}
.ws38{word-spacing:10.640544px;}
.ws98{word-spacing:11.596992px;}
.ws39{word-spacing:11.716368px;}
.ws20{word-spacing:11.911560px;}
.ws31{word-spacing:11.955779px;}
.wsd4{word-spacing:12.104477px;}
.wsce{word-spacing:13.126439px;}
.ws91{word-spacing:13.211058px;}
.wsa5{word-spacing:13.233816px;}
.wsa9{word-spacing:13.395204px;}
.wse5{word-spacing:13.402068px;}
.wsdd{word-spacing:13.405152px;}
.wse1{word-spacing:13.408644px;}
.wsb6{word-spacing:13.610603px;}
.ws1c{word-spacing:13.808658px;}
.wsc0{word-spacing:14.632351px;}
.wsca{word-spacing:15.008923px;}
.wsbb{word-spacing:15.547313px;}
.ws97{word-spacing:15.900948px;}
.ws23{word-spacing:16.379172px;}
.wsd6{word-spacing:16.945848px;}
.wsb1{word-spacing:18.721169px;}
.wsc5{word-spacing:18.774589px;}
.wsda{word-spacing:18.935977px;}
.wsa7{word-spacing:18.989934px;}
.ws1b{word-spacing:22.297194px;}
.ws74{word-spacing:32.465657px;}
.wsd0{word-spacing:39.916417px;}
.ws77{word-spacing:49.521862px;}
.ws7c{word-spacing:49.567726px;}
.ws73{word-spacing:51.533695px;}
.ws61{word-spacing:58.261014px;}
.ws63{word-spacing:58.261606px;}
.ws70{word-spacing:61.410458px;}
.ws7d{word-spacing:77.186592px;}
.ws69{word-spacing:79.134077px;}
.ws48{word-spacing:84.223358px;}
.ws6b{word-spacing:89.731997px;}
.ws3d{word-spacing:91.501139px;}
.ws6f{word-spacing:97.267934px;}
.ws65{word-spacing:103.180997px;}
.ws5e{word-spacing:105.438288px;}
.ws75{word-spacing:109.332484px;}
.ws7b{word-spacing:120.809540px;}
.ws72{word-spacing:121.636784px;}
.ws71{word-spacing:123.870999px;}
.ws7a{word-spacing:127.714119px;}
.ws79{word-spacing:127.714622px;}
.ws78{word-spacing:127.760029px;}
.ws3f{word-spacing:135.486150px;}
.ws76{word-spacing:139.146272px;}
.ws3e{word-spacing:142.916921px;}
.ws3c{word-spacing:151.071238px;}
.ws40{word-spacing:161.367821px;}
.ws44{word-spacing:218.044106px;}
.ws47{word-spacing:222.711198px;}
.ws3b{word-spacing:243.448015px;}
.ws42{word-spacing:254.079506px;}
.ws4c{word-spacing:312.126395px;}
.ws6c{word-spacing:356.673845px;}
.ws60{word-spacing:376.442304px;}
.ws62{word-spacing:430.298100px;}
.ws66{word-spacing:600.933012px;}
.ws68{word-spacing:610.024482px;}
.ws64{word-spacing:669.367524px;}
.ws22{word-spacing:889.953827px;}
.ws4b{word-spacing:1285.334385px;}
._81{margin-left:-23.035157px;}
._69{margin-left:-20.348108px;}
._3{margin-left:-11.943163px;}
._1{margin-left:-7.962037px;}
._4{margin-left:-6.614580px;}
._f{margin-left:-5.560968px;}
._6{margin-left:-4.292736px;}
._2e{margin-left:-3.228132px;}
._2{margin-left:-1.936872px;}
._9{width:1.091170px;}
._5{width:2.998376px;}
._68{width:5.121196px;}
._7e{width:11.185142px;}
._13{width:14.695026px;}
._11{width:15.865863px;}
._7{width:17.860003px;}
._8{width:19.797358px;}
._a{width:21.341045px;}
._7b{width:22.694623px;}
._10{width:23.991255px;}
._b{width:25.357853px;}
._2c{width:27.274927px;}
._80{width:28.565299px;}
._12{width:29.851763px;}
._7d{width:31.661383px;}
._c{width:32.937738px;}
._7c{width:34.694558px;}
._79{width:36.542454px;}
._0{width:37.659408px;}
._7a{width:38.878002px;}
._82{width:40.688598px;}
._2d{width:42.979127px;}
._78{width:45.381344px;}
._14{width:51.289464px;}
._3a{width:58.301095px;}
._55{width:60.999376px;}
._d{width:63.568348px;}
._39{width:64.977727px;}
._38{width:68.452720px;}
._2b{width:72.476432px;}
._51{width:86.514590px;}
._1f{width:87.544665px;}
._3d{width:88.618242px;}
._36{width:95.169529px;}
._3b{width:97.260295px;}
._3c{width:101.056060px;}
._77{width:102.061249px;}
._2f{width:103.235008px;}
._25{width:106.710052px;}
._76{width:111.918017px;}
._66{width:114.087383px;}
._3e{width:115.322668px;}
._57{width:117.090811px;}
._52{width:120.984818px;}
._67{width:123.049869px;}
._74{width:124.345037px;}
._64{width:125.473790px;}
._63{width:127.440300px;}
._23{width:128.634714px;}
._31{width:130.133008px;}
._50{width:132.652729px;}
._45{width:135.350507px;}
._4a{width:136.905943px;}
._44{width:139.146272px;}
._42{width:141.340692px;}
._32{width:143.582008px;}
._33{width:146.432443px;}
._5c{width:147.525762px;}
._1e{width:149.128147px;}
._49{width:150.622826px;}
._3f{width:153.321107px;}
._5f{width:157.424287px;}
._4e{width:159.067948px;}
._1c{width:160.473468px;}
._5a{width:161.825058px;}
._61{width:162.837726px;}
._6f{width:164.935846px;}
._58{width:167.907481px;}
._1a{width:171.512203px;}
._16{width:173.250018px;}
._4b{width:179.646015px;}
._5d{width:181.183774px;}
._20{width:186.129189px;}
._4f{width:188.530955px;}
._4c{width:189.628393px;}
._24{width:192.568213px;}
._27{width:193.846072px;}
._65{width:195.722200px;}
._2a{width:197.121762px;}
._47{width:199.002300px;}
._40{width:205.587114px;}
._22{width:206.622622px;}
._1d{width:210.659756px;}
._17{width:212.486983px;}
._30{width:213.677443px;}
._41{width:214.732022px;}
._54{width:221.865600px;}
._1b{width:226.196092px;}
._72{width:228.144838px;}
._6e{width:229.559134px;}
._73{width:233.355600px;}
._5e{width:238.493218px;}
._6d{width:239.859696px;}
._19{width:246.740836px;}
._26{width:255.377681px;}
._53{width:258.248873px;}
._21{width:268.177271px;}
._6c{width:274.663672px;}
._5b{width:277.634657px;}
._59{width:285.408087px;}
._56{width:288.608225px;}
._29{width:291.293242px;}
._6a{width:292.632380px;}
._75{width:294.224875px;}
._18{width:295.520513px;}
._62{width:296.838574px;}
._48{width:303.378300px;}
._6b{width:310.646467px;}
._60{width:314.169364px;}
._71{width:315.619824px;}
._35{width:317.111316px;}
._46{width:325.507831px;}
._34{width:342.550824px;}
._70{width:365.560034px;}
._28{width:416.284287px;}
._37{width:458.452556px;}
._4d{width:470.082015px;}
._43{width:920.142194px;}
._7f{width:2039.358143px;}
._e{width:2063.268143px;}
._15{width:3542.958143px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(42,62,149);}
.fs4{font-size:41.844000px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.432000px;}
.fsa{font-size:45.726600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820000px;}
.fs9{font-size:51.106200px;}
.fs5{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs2{font-size:107.598000px;}
.fs0{font-size:148.440000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.ye{bottom:14.151273px;}
.y2{bottom:16.661462px;}
.y2f{bottom:63.780000px;}
.y1a6{bottom:108.957000px;}
.y12e{bottom:114.156000px;}
.y2e{bottom:118.141500px;}
.y1a5{bottom:128.325000px;}
.y12d{bottom:134.419500px;}
.y140{bottom:136.467000px;}
.y2d{bottom:138.406500px;}
.y1a4{bottom:147.691500px;}
.y12c{bottom:154.683000px;}
.y172{bottom:157.974000px;}
.y2c{bottom:158.670000px;}
.y13f{bottom:160.632000px;}
.y1a3{bottom:167.059500px;}
.y12b{bottom:174.948000px;}
.y171{bottom:177.340500px;}
.y2b{bottom:178.935000px;}
.y13e{bottom:184.795500px;}
.y1a2{bottom:186.427500px;}
.y12a{bottom:195.211500px;}
.y170{bottom:196.708500px;}
.y2a{bottom:199.198500px;}
.y13d{bottom:199.993500px;}
.y1a1{bottom:205.794000px;}
.yfd{bottom:210.462000px;}
.y13c{bottom:215.191500px;}
.y129{bottom:215.476500px;}
.y16f{bottom:216.076500px;}
.y29{bottom:219.462000px;}
.yfc{bottom:224.659500px;}
.y1a0{bottom:225.162000px;}
.y13b{bottom:230.389500px;}
.y16e{bottom:235.443000px;}
.y128{bottom:235.740000px;}
.y28{bottom:239.727000px;}
.y19f{bottom:244.528500px;}
.yfb{bottom:245.360250px;}
.yfa{bottom:245.360325px;}
.y13a{bottom:245.589000px;}
.y16d{bottom:254.811000px;}
.y127{bottom:256.003500px;}
.yf5{bottom:259.099725px;}
.yf9{bottom:259.636500px;}
.y27{bottom:259.990500px;}
.y5b{bottom:261.712500px;}
.y19e{bottom:263.896500px;}
.yf4{bottom:273.072450px;}
.yf8{bottom:273.912600px;}
.yf7{bottom:273.912675px;}
.y16c{bottom:274.177500px;}
.y126{bottom:276.268500px;}
.y139{bottom:278.719500px;}
.y26{bottom:280.255500px;}
.y5a{bottom:281.977500px;}
.y19d{bottom:283.264500px;}
.yf6{bottom:288.188850px;}
.yeb{bottom:292.062300px;}
.y16b{bottom:293.545500px;}
.y125{bottom:296.532000px;}
.y138{bottom:298.983000px;}
.y25{bottom:300.519000px;}
.y59{bottom:302.241000px;}
.y19c{bottom:302.631000px;}
.yea{bottom:306.034950px;}
.yf3{bottom:308.587500px;}
.yf2{bottom:308.587575px;}
.y16a{bottom:312.913500px;}
.y124{bottom:316.797000px;}
.y137{bottom:319.248000px;}
.y24{bottom:320.782500px;}
.y19b{bottom:321.999000px;}
.yed{bottom:322.326975px;}
.y58{bottom:322.504500px;}
.yf1{bottom:322.863750px;}
.y169{bottom:332.280000px;}
.yec{bottom:336.299700px;}
.y123{bottom:337.060500px;}
.yef{bottom:337.139925px;}
.yf0{bottom:337.140000px;}
.y136{bottom:339.511500px;}
.y23{bottom:341.047500px;}
.y19a{bottom:341.367000px;}
.y57{bottom:342.769500px;}
.ya8{bottom:351.180000px;}
.yee{bottom:351.416100px;}
.y168{bottom:351.648000px;}
.y122{bottom:357.324000px;}
.y199{bottom:360.733500px;}
.y22{bottom:361.311000px;}
.y56{bottom:363.033000px;}
.y135{bottom:368.742000px;}
.y167{bottom:371.014500px;}
.ya7{bottom:371.445000px;}
.ye9{bottom:371.814750px;}
.y121{bottom:377.589000px;}
.y198{bottom:380.101500px;}
.y55{bottom:383.298000px;}
.ye8{bottom:386.090925px;}
.y166{bottom:390.382500px;}
.y21{bottom:390.541500px;}
.ya6{bottom:391.708500px;}
.y120{bottom:397.852500px;}
.y197{bottom:399.468000px;}
.ye7{bottom:400.367100px;}
.ye6{bottom:400.367250px;}
.y54{bottom:403.561500px;}
.y165{bottom:409.750500px;}
.ya5{bottom:411.973500px;}
.ye5{bottom:414.643425px;}
.y11f{bottom:418.117500px;}
.y196{bottom:418.836000px;}
.y53{bottom:423.825000px;}
.ye3{bottom:428.919525px;}
.ye4{bottom:428.919600px;}
.y164{bottom:429.117000px;}
.ya4{bottom:432.237000px;}
.y195{bottom:438.204000px;}
.y11e{bottom:438.381000px;}
.ye2{bottom:443.195700px;}
.ye1{bottom:443.195775px;}
.y52{bottom:444.090000px;}
.y163{bottom:448.485000px;}
.y75{bottom:451.515000px;}
.ya3{bottom:452.500500px;}
.ydf{bottom:457.471875px;}
.ye0{bottom:457.471950px;}
.y194{bottom:457.570500px;}
.y11d{bottom:458.644500px;}
.y51{bottom:464.353500px;}
.y20{bottom:466.957500px;}
.y162{bottom:467.851500px;}
.yde{bottom:471.748050px;}
.ya2{bottom:472.765500px;}
.y74{bottom:472.780200px;}
.y193{bottom:476.938500px;}
.y11c{bottom:478.909500px;}
.y70{bottom:483.605925px;}
.y50{bottom:484.618500px;}
.ydd{bottom:486.024225px;}
.y161{bottom:487.219500px;}
.y73{bottom:488.396850px;}
.ya1{bottom:493.029000px;}
.y192{bottom:496.305000px;}
.y11b{bottom:499.173000px;}
.y6f{bottom:499.222500px;}
.ydc{bottom:500.300400px;}
.ydb{bottom:500.300475px;}
.y4f{bottom:504.882000px;}
.y1f{bottom:505.155000px;}
.y160{bottom:506.587500px;}
.y72{bottom:510.854775px;}
.ya0{bottom:513.294000px;}
.yd9{bottom:514.576575px;}
.yda{bottom:514.576650px;}
.y6e{bottom:514.837650px;}
.y191{bottom:515.673000px;}
.y11a{bottom:519.438000px;}
.y4e{bottom:525.145500px;}
.y1e{bottom:525.418500px;}
.y15f{bottom:525.954000px;}
.y71{bottom:526.471350px;}
.yd7{bottom:528.852675px;}
.yd8{bottom:528.852750px;}
.y9f{bottom:533.557500px;}
.y190{bottom:535.041000px;}
.y119{bottom:539.701500px;}
.yd6{bottom:543.128850px;}
.yd5{bottom:543.128925px;}
.y15e{bottom:545.322000px;}
.y4d{bottom:545.410500px;}
.y1d{bottom:545.682000px;}
.y6d{bottom:548.930775px;}
.y9e{bottom:553.821000px;}
.y18f{bottom:554.407500px;}
.yd4{bottom:557.405100px;}
.yd3{bottom:557.405175px;}
.y69{bottom:559.755075px;}
.y118{bottom:559.965000px;}
.y6c{bottom:564.547350px;}
.y15d{bottom:564.688500px;}
.y4c{bottom:565.674000px;}
.y1c{bottom:565.947000px;}
.yd2{bottom:571.681350px;}
.y18e{bottom:573.775500px;}
.y9d{bottom:574.086000px;}
.y68{bottom:575.371650px;}
.y117{bottom:580.230000px;}
.y15c{bottom:584.056500px;}
.y4b{bottom:585.939000px;}
.yd1{bottom:585.957525px;}
.y1b{bottom:586.210500px;}
.y6b{bottom:587.005350px;}
.y67{bottom:590.988150px;}
.y18d{bottom:593.142000px;}
.y9c{bottom:594.349500px;}
.ycf{bottom:600.233625px;}
.yd0{bottom:600.233700px;}
.y116{bottom:600.493500px;}
.y6a{bottom:602.621925px;}
.y15b{bottom:603.424500px;}
.y4a{bottom:606.202500px;}
.y1a{bottom:606.475500px;}
.y18c{bottom:612.510000px;}
.yce{bottom:614.509800px;}
.y9b{bottom:614.614500px;}
.y115{bottom:620.758500px;}
.y15a{bottom:622.791000px;}
.y66{bottom:625.081350px;}
.y49{bottom:626.466000px;}
.y19{bottom:626.739000px;}
.ycd{bottom:628.785975px;}
.y18b{bottom:631.878000px;}
.y9a{bottom:634.878000px;}
.y65{bottom:640.696500px;}
.y114{bottom:641.022000px;}
.y159{bottom:642.159000px;}
.ycc{bottom:643.062150px;}
.y62{bottom:643.203075px;}
.y48{bottom:646.731000px;}
.y18{bottom:647.002500px;}
.y18a{bottom:651.244500px;}
.y61{bottom:658.819650px;}
.y113{bottom:661.285500px;}
.y158{bottom:661.527000px;}
.y64{bottom:663.155925px;}
.yca{bottom:663.460875px;}
.ycb{bottom:663.460950px;}
.y47{bottom:666.994500px;}
.y17{bottom:667.267500px;}
.y189{bottom:670.612500px;}
.yc9{bottom:671.402850px;}
.y99{bottom:676.452000px;}
.y63{bottom:678.772500px;}
.y157{bottom:680.893500px;}
.y112{bottom:681.550500px;}
.y46{bottom:687.258000px;}
.y16{bottom:687.531000px;}
.y188{bottom:689.979000px;}
.y98{bottom:697.152900px;}
.yc8{bottom:698.135700px;}
.y156{bottom:700.261500px;}
.yc4{bottom:700.736775px;}
.yc6{bottom:701.012175px;}
.y5f{bottom:701.230500px;}
.y111{bottom:701.814000px;}
.y45{bottom:707.523000px;}
.y15{bottom:707.796000px;}
.yc3{bottom:707.898450px;}
.y5e{bottom:709.039500px;}
.y187{bottom:709.347000px;}
.y97{bottom:711.429075px;}
.y94{bottom:712.384125px;}
.yc5{bottom:714.984900px;}
.y60{bottom:716.847075px;}
.yc7{bottom:718.533225px;}
.y155{bottom:719.628000px;}
.y110{bottom:722.077500px;}
.yc2{bottom:724.215000px;}
.y96{bottom:725.705250px;}
.y93{bottom:726.356850px;}
.y44{bottom:727.786500px;}
.y14{bottom:728.059500px;}
.y186{bottom:728.715000px;}
.y154{bottom:738.996000px;}
.y95{bottom:739.981500px;}
.y10f{bottom:742.342500px;}
.yc1{bottom:746.272500px;}
.y5d{bottom:747.622500px;}
.y43{bottom:748.051500px;}
.y185{bottom:748.081500px;}
.y13{bottom:748.323000px;}
.y153{bottom:758.364000px;}
.y92{bottom:760.380150px;}
.y10e{bottom:762.606000px;}
.yc0{bottom:763.068000px;}
.y184{bottom:767.449500px;}
.yb9{bottom:768.211500px;}
.y42{bottom:768.315000px;}
.y12{bottom:768.588000px;}
.y91{bottom:774.656325px;}
.y8e{bottom:775.611300px;}
.y152{bottom:777.730500px;}
.ybf{bottom:779.863500px;}
.y10d{bottom:782.871000px;}
.y183{bottom:786.816000px;}
.y40{bottom:788.578500px;}
.y11{bottom:788.851500px;}
.y90{bottom:788.932500px;}
.y8d{bottom:789.584100px;}
.y41{bottom:794.004000px;}
.ybe{bottom:796.659000px;}
.y151{bottom:797.098500px;}
.y5c{bottom:798.445500px;}
.y10c{bottom:803.134500px;}
.y8f{bottom:803.208675px;}
.y182{bottom:806.184000px;}
.y3f{bottom:808.843500px;}
.y10{bottom:809.116500px;}
.ybd{bottom:813.454500px;}
.y150{bottom:816.465000px;}
.y10b{bottom:823.398000px;}
.y8c{bottom:823.607400px;}
.y181{bottom:825.552000px;}
.y3e{bottom:829.107000px;}
.ybc{bottom:830.250000px;}
.y14f{bottom:835.833000px;}
.y8b{bottom:837.883575px;}
.y10a{bottom:843.663000px;}
.yd{bottom:844.548028px;}
.y88{bottom:844.636050px;}
.y180{bottom:844.918500px;}
.yc{bottom:845.314500px;}
.ybb{bottom:847.047000px;}
.y3d{bottom:849.372000px;}
.y8a{bottom:852.159750px;}
.y14e{bottom:855.201000px;}
.yba{bottom:863.842500px;}
.y109{bottom:863.926500px;}
.y17f{bottom:864.286500px;}
.y89{bottom:866.436000px;}
.y3c{bottom:869.635500px;}
.y14d{bottom:874.567500px;}
.y17e{bottom:883.653000px;}
.y108{bottom:884.191500px;}
.yb{bottom:884.320500px;}
.y87{bottom:886.833375px;}
.yb8{bottom:887.839500px;}
.y3b{bottom:889.899000px;}
.y14c{bottom:893.935500px;}
.y86{bottom:901.109550px;}
.y17d{bottom:903.021000px;}
.y107{bottom:904.455000px;}
.yb7{bottom:904.635000px;}
.ya{bottom:907.359000px;}
.y83{bottom:909.355050px;}
.y3a{bottom:910.164000px;}
.yb0{bottom:910.927500px;}
.y14b{bottom:913.302000px;}
.y85{bottom:915.385800px;}
.y9{bottom:920.634000px;}
.yb6{bottom:921.430500px;}
.y17c{bottom:922.389000px;}
.y106{bottom:924.718500px;}
.y1a9{bottom:928.267500px;}
.y84{bottom:929.663250px;}
.y39{bottom:930.427500px;}
.y14a{bottom:932.670000px;}
.yb5{bottom:938.226000px;}
.y134{bottom:939.394500px;}
.y17b{bottom:941.755500px;}
.y8{bottom:943.674000px;}
.y105{bottom:944.983500px;}
.y1a8{bottom:947.634000px;}
.y82{bottom:950.060700px;}
.y38{bottom:950.692500px;}
.y149{bottom:952.038000px;}
.yb4{bottom:955.021500px;}
.y81{bottom:956.511000px;}
.y17a{bottom:961.123500px;}
.y104{bottom:965.247000px;}
.y7{bottom:965.914500px;}
.y1a7{bottom:967.002000px;}
.y37{bottom:970.956000px;}
.y148{bottom:971.404500px;}
.yb3{bottom:971.817000px;}
.y133{bottom:974.214000px;}
.y179{bottom:980.490000px;}
.y80{bottom:984.432075px;}
.y103{bottom:985.512000px;}
.yb2{bottom:988.612500px;}
.y147{bottom:990.772500px;}
.y36{bottom:991.219500px;}
.y132{bottom:994.477500px;}
.y7f{bottom:998.708250px;}
.y178{bottom:999.858000px;}
.yb1{bottom:1005.408000px;}
.y102{bottom:1005.775500px;}
.y146{bottom:1010.139000px;}
.y6{bottom:1010.451000px;}
.y35{bottom:1011.484500px;}
.y131{bottom:1014.742500px;}
.y7e{bottom:1019.105850px;}
.y177{bottom:1019.226000px;}
.y101{bottom:1026.039000px;}
.yad{bottom:1029.049500px;}
.y145{bottom:1029.507000px;}
.y7c{bottom:1033.381875px;}
.y7d{bottom:1033.381950px;}
.y7b{bottom:1034.338200px;}
.y130{bottom:1035.006000px;}
.yaf{bottom:1037.268000px;}
.y176{bottom:1038.592500px;}
.y34{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.yac{bottom:1045.488000px;}
.y100{bottom:1046.304000px;}
.y144{bottom:1048.875000px;}
.yae{bottom:1053.706500px;}
.y12f{bottom:1055.269500px;}
.ya9{bottom:1057.108500px;}
.y175{bottom:1057.960500px;}
.yab{bottom:1061.926500px;}
.yff{bottom:1066.567500px;}
.y7a{bottom:1068.056850px;}
.y143{bottom:1068.241500px;}
.y78{bottom:1071.231675px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y174{bottom:1077.327000px;}
.y77{bottom:1085.204400px;}
.yaa{bottom:1085.923500px;}
.yfe{bottom:1086.832500px;}
.y142{bottom:1087.609500px;}
.y79{bottom:1088.455650px;}
.y32{bottom:1095.798000px;}
.y173{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y141{bottom:1115.943000px;}
.y31{bottom:1116.063000px;}
.y76{bottom:1117.543500px;}
.y1{bottom:1137.953979px;}
.y30{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h10{height:32.698566px;}
.h1b{height:33.060332px;}
.h24{height:33.060632px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h15{height:36.949783px;}
.h29{height:37.926180px;}
.h7{height:37.994352px;}
.h28{height:38.410344px;}
.h21{height:38.894508px;}
.h1f{height:39.056508px;}
.h20{height:39.217284px;}
.hf{height:41.252256px;}
.h1d{height:41.519753px;}
.h26{height:41.520053px;}
.hc{height:43.219494px;}
.he{height:43.420560px;}
.h4{height:43.817274px;}
.h17{height:46.404430px;}
.h19{height:46.404730px;}
.h8{height:48.846768px;}
.h2{height:50.330809px;}
.hd{height:54.278424px;}
.h6{height:54.549336px;}
.h23{height:55.418732px;}
.h22{height:60.304532px;}
.h27{height:60.840768px;}
.h25{height:66.856553px;}
.h13{height:68.180083px;}
.h16{height:68.185783px;}
.h1e{height:72.823553px;}
.h18{height:77.634730px;}
.h1a{height:77.640430px;}
.h5{height:77.793354px;}
.h3{height:92.775000px;}
.h1c{height:94.799453px;}
.h14{height:99.416083px;}
.h11{height:892.914000px;}
.h12{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:173.920654px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:56.429466px;}
.x1{left:114.802506px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x2f{left:126.270450px;}
.x5c{left:132.446400px;}
.x4b{left:133.964850px;}
.x5d{left:136.384800px;}
.x4{left:146.170500px;}
.x2c{left:147.653700px;}
.x35{left:150.115500px;}
.x9{left:152.757000px;}
.x2b{left:155.824650px;}
.x13{left:158.745000px;}
.xa{left:160.228500px;}
.x5a{left:161.515050px;}
.x56{left:163.933725px;}
.x53{left:168.866700px;}
.x55{left:173.719350px;}
.x54{left:176.463150px;}
.x59{left:178.514625px;}
.x63{left:179.986500px;}
.x58{left:182.853450px;}
.x68{left:184.537500px;}
.x50{left:185.682600px;}
.x60{left:187.804200px;}
.x8{left:188.965500px;}
.x41{left:190.099500px;}
.x5e{left:191.542575px;}
.x69{left:199.482000px;}
.x5b{left:201.413625px;}
.x2e{left:205.852500px;}
.x86{left:223.029000px;}
.x32{left:230.502900px;}
.x14{left:237.885000px;}
.x80{left:239.017500px;}
.x28{left:240.884325px;}
.x31{left:247.498800px;}
.x2a{left:250.307850px;}
.x15{left:251.403000px;}
.x8e{left:254.101500px;}
.x24{left:256.639200px;}
.x29{left:259.903800px;}
.x66{left:265.545000px;}
.x8d{left:267.238500px;}
.x20{left:269.833500px;}
.x23{left:279.184500px;}
.x67{left:280.488000px;}
.x21{left:283.144500px;}
.x84{left:284.572500px;}
.x85{left:288.433500px;}
.x70{left:302.892000px;}
.x11{left:309.885000px;}
.x12{left:317.358000px;}
.x8c{left:324.499500px;}
.x47{left:326.157075px;}
.x2d{left:335.076000px;}
.x5f{left:339.177300px;}
.x6c{left:348.387000px;}
.x1d{left:355.837500px;}
.x33{left:362.275500px;}
.x6d{left:363.330000px;}
.x16{left:368.847000px;}
.x17{left:382.365000px;}
.x3b{left:383.517000px;}
.x49{left:387.770175px;}
.x3a{left:390.996000px;}
.x43{left:395.518500px;}
.x82{left:401.488500px;}
.x48{left:411.228900px;}
.x30{left:430.145025px;}
.x46{left:432.279000px;}
.x83{left:439.233000px;}
.x87{left:454.225500px;}
.x88{left:460.950000px;}
.x42{left:486.291000px;}
.x3d{left:496.078500px;}
.x89{left:503.635500px;}
.x3c{left:505.230000px;}
.x22{left:507.415500px;}
.x76{left:510.364500px;}
.x39{left:518.347500px;}
.x1e{left:520.176000px;}
.x4c{left:528.318525px;}
.x34{left:530.769225px;}
.x1a{left:532.228500px;}
.x1f{left:533.889000px;}
.x8a{left:535.563000px;}
.xf{left:537.202500px;}
.x36{left:539.841000px;}
.x10{left:544.675500px;}
.x1b{left:545.973000px;}
.x37{left:547.387500px;}
.x6a{left:553.759500px;}
.x38{left:562.330500px;}
.x6b{left:568.704000px;}
.x61{left:569.992500px;}
.x62{left:574.969500px;}
.x6e{left:576.897000px;}
.x6f{left:581.073000px;}
.x44{left:586.552500px;}
.xb{left:588.867000px;}
.x3f{left:591.108000px;}
.xc{left:596.340000px;}
.x3e{left:605.491500px;}
.x8b{left:611.427000px;}
.x4d{left:620.513850px;}
.x4a{left:626.580225px;}
.x45{left:631.284000px;}
.x73{left:657.979500px;}
.x74{left:665.452500px;}
.x4e{left:666.988800px;}
.x7f{left:670.249500px;}
.x75{left:672.841500px;}
.x7d{left:677.092500px;}
.x18{left:681.490500px;}
.xd{left:684.660000px;}
.x25{left:686.598675px;}
.x40{left:688.732500px;}
.xe{left:692.131500px;}
.x19{left:695.008500px;}
.x1c{left:697.981500px;}
.x6{left:701.339978px;}
.x7e{left:703.992000px;}
.x64{left:707.284500px;}
.x79{left:708.816000px;}
.x81{left:710.584500px;}
.x4f{left:712.961550px;}
.x65{left:714.757500px;}
.x71{left:720.388500px;}
.x72{left:727.860000px;}
.x7b{left:729.778500px;}
.x77{left:749.571000px;}
.x7a{left:755.080500px;}
.x7c{left:756.678000px;}
.x78{left:776.469000px;}
.x26{left:867.680550px;}
.x27{left:970.098150px;}
.x51{left:1063.741950px;}
.x52{left:1104.242400px;}
.x57{left:1106.272200px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v6{vertical-align:-1.078933pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:10.661333pt;}
.v1{vertical-align:19.290667pt;}
.v8{vertical-align:22.521600pt;}
.v7{vertical-align:24.217067pt;}
.v3{vertical-align:27.760267pt;}
.v5{vertical-align:47.359733pt;}
.v4{vertical-align:55.525600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.656000pt;}
.ls24{letter-spacing:9.727382pt;}
.ls23{letter-spacing:9.744481pt;}
.lsc{letter-spacing:10.162582pt;}
.lsb{letter-spacing:10.164758pt;}
.ls12{letter-spacing:10.166599pt;}
.ls1c{letter-spacing:10.168992pt;}
.ls11{letter-spacing:10.170143pt;}
.ls1b{letter-spacing:10.170842pt;}
.lse{letter-spacing:10.172882pt;}
.ls17{letter-spacing:10.175262pt;}
.ls21{letter-spacing:10.175515pt;}
.ls22{letter-spacing:10.175751pt;}
.ls16{letter-spacing:10.178095pt;}
.ls1a{letter-spacing:10.178231pt;}
.ls25{letter-spacing:10.178512pt;}
.ls1f{letter-spacing:10.178739pt;}
.ls1e{letter-spacing:10.179038pt;}
.ls20{letter-spacing:10.180983pt;}
.ls27{letter-spacing:10.183970pt;}
.ls26{letter-spacing:10.184831pt;}
.ls14{letter-spacing:10.190393pt;}
.lsd{letter-spacing:10.193395pt;}
.ls15{letter-spacing:10.194315pt;}
.ls13{letter-spacing:10.212621pt;}
.ls1d{letter-spacing:10.215160pt;}
.ls10{letter-spacing:10.348449pt;}
.lsf{letter-spacing:10.357361pt;}
.ls19{letter-spacing:10.371115pt;}
.ls18{letter-spacing:10.392540pt;}
.ls6{letter-spacing:10.626667pt;}
.ls2b{letter-spacing:11.954667pt;}
.ls2a{letter-spacing:11.960000pt;}
.ls30{letter-spacing:12.034667pt;}
.ls2e{letter-spacing:12.072000pt;}
.ls2d{letter-spacing:12.125333pt;}
.ls29{letter-spacing:12.328000pt;}
.ls28{letter-spacing:13.229333pt;}
.ls2{letter-spacing:13.267819pt;}
.ls9{letter-spacing:13.442667pt;}
.ls2c{letter-spacing:14.408000pt;}
.lsa{letter-spacing:14.504000pt;}
.ls1{letter-spacing:15.936000pt;}
.ls2f{letter-spacing:19.682667pt;}
.ls3{letter-spacing:62.432000pt;}
.ls4{letter-spacing:64.315179pt;}
.ws7f{word-spacing:-13.284000pt;}
.wsa8{word-spacing:-11.954667pt;}
.ws41{word-spacing:-11.356933pt;}
.ws52{word-spacing:-10.161467pt;}
.ws2{word-spacing:-10.096000pt;}
.wsb7{word-spacing:-3.395030pt;}
.wsc{word-spacing:-3.347621pt;}
.ws7e{word-spacing:-3.134811pt;}
.ws9c{word-spacing:-2.816367pt;}
.ws8d{word-spacing:-2.710255pt;}
.ws8f{word-spacing:-2.656906pt;}
.ws8e{word-spacing:-2.603558pt;}
.ws95{word-spacing:-2.019009pt;}
.wsd8{word-spacing:-1.721520pt;}
.ws7{word-spacing:-1.696326pt;}
.wse2{word-spacing:-1.482618pt;}
.ws2b{word-spacing:-1.275530pt;}
.ws2c{word-spacing:-1.222181pt;}
.ws6{word-spacing:-1.175671pt;}
.wse4{word-spacing:-1.147696pt;}
.ws9e{word-spacing:-1.116069pt;}
.ws28{word-spacing:-1.009371pt;}
.ws82{word-spacing:-0.964027pt;}
.ws81{word-spacing:-0.956554pt;}
.wsa2{word-spacing:-0.908220pt;}
.wsab{word-spacing:-0.812774pt;}
.ws5b{word-spacing:-0.797093pt;}
.wsd{word-spacing:-0.743745pt;}
.wse3{word-spacing:-0.717280pt;}
.wsbe{word-spacing:-0.621834pt;}
.ws9b{word-spacing:-0.584283pt;}
.ws29{word-spacing:-0.531466pt;}
.ws51{word-spacing:-0.406621pt;}
.ws2a{word-spacing:-0.372005pt;}
.ws18{word-spacing:-0.318657pt;}
.wsd2{word-spacing:-0.286912pt;}
.ws89{word-spacing:-0.265893pt;}
.ws96{word-spacing:-0.265361pt;}
.wse6{word-spacing:-0.239476pt;}
.wsaf{word-spacing:-0.238902pt;}
.ws12{word-spacing:-0.212544pt;}
.wsc6{word-spacing:-0.191466pt;}
.ws19{word-spacing:-0.159195pt;}
.wsa4{word-spacing:-0.143456pt;}
.ws5c{word-spacing:-0.121515pt;}
.ws1f{word-spacing:-0.106431pt;}
.ws9f{word-spacing:-0.095446pt;}
.ws54{word-spacing:-0.056859pt;}
.ws1e{word-spacing:-0.053614pt;}
.ws1d{word-spacing:-0.053083pt;}
.wsde{word-spacing:-0.048010pt;}
.ws1{word-spacing:-0.018469pt;}
.ws4{word-spacing:-0.015813pt;}
.ws3{word-spacing:-0.014356pt;}
.ws5d{word-spacing:-0.003526pt;}
.ws5{word-spacing:-0.000266pt;}
.ws21{word-spacing:-0.000128pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.000266pt;}
.ws49{word-spacing:0.004312pt;}
.ws6a{word-spacing:0.005259pt;}
.ws43{word-spacing:0.005671pt;}
.ws45{word-spacing:0.006191pt;}
.ws5f{word-spacing:0.006251pt;}
.ws4f{word-spacing:0.008836pt;}
.ws50{word-spacing:0.009108pt;}
.ws46{word-spacing:0.014575pt;}
.ws4d{word-spacing:0.040361pt;}
.wsbd{word-spacing:0.047484pt;}
.wsd9{word-spacing:0.048010pt;}
.wse{word-spacing:0.053083pt;}
.wsa6{word-spacing:0.095446pt;}
.wsdb{word-spacing:0.095972pt;}
.ws90{word-spacing:0.100625pt;}
.wsa{word-spacing:0.106378pt;}
.ws67{word-spacing:0.143456pt;}
.ws9{word-spacing:0.159195pt;}
.ws13{word-spacing:0.159727pt;}
.ws4a{word-spacing:0.162746pt;}
.wsdc{word-spacing:0.190940pt;}
.wsb5{word-spacing:0.191466pt;}
.ws4e{word-spacing:0.203067pt;}
.wsb{word-spacing:0.212544pt;}
.wscb{word-spacing:0.238902pt;}
.ws8{word-spacing:0.265361pt;}
.ws2d{word-spacing:0.265893pt;}
.ws17{word-spacing:0.318657pt;}
.ws2e{word-spacing:0.372005pt;}
.wsac{word-spacing:0.430368pt;}
.ws59{word-spacing:0.478171pt;}
.wsb9{word-spacing:0.573824pt;}
.wsdf{word-spacing:0.621834pt;}
.ws27{word-spacing:0.637632pt;}
.ws25{word-spacing:0.743745pt;}
.ws16{word-spacing:0.797093pt;}
.wsf{word-spacing:0.903259pt;}
.ws8c{word-spacing:0.956023pt;}
.ws10{word-spacing:0.956554pt;}
.wsbf{word-spacing:1.099686pt;}
.ws2f{word-spacing:1.162785pt;}
.ws30{word-spacing:1.168833pt;}
.wsb4{word-spacing:1.195658pt;}
.ws8a{word-spacing:1.275530pt;}
.wsb0{word-spacing:1.339162pt;}
.wsa1{word-spacing:1.721520pt;}
.ws56{word-spacing:1.753382pt;}
.ws55{word-spacing:1.806730pt;}
.wsba{word-spacing:1.912460pt;}
.wsc1{word-spacing:1.960422pt;}
.ws33{word-spacing:1.966191pt;}
.ws26{word-spacing:2.656906pt;}
.wsc9{word-spacing:2.677750pt;}
.ws36{word-spacing:2.763019pt;}
.ws53{word-spacing:2.975829pt;}
.wscd{word-spacing:3.108118pt;}
.wsd5{word-spacing:3.156128pt;}
.wsd3{word-spacing:3.251574pt;}
.ws5a{word-spacing:3.347621pt;}
.ws1a{word-spacing:3.400917pt;}
.ws34{word-spacing:3.613195pt;}
.ws58{word-spacing:3.666543pt;}
.ws93{word-spacing:3.772709pt;}
.wsb2{word-spacing:3.825446pt;}
.wsb8{word-spacing:4.064348pt;}
.ws6e{word-spacing:4.064424pt;}
.ws6d{word-spacing:4.067425pt;}
.wsa0{word-spacing:4.112358pt;}
.ws9a{word-spacing:4.250561pt;}
.ws99{word-spacing:4.251093pt;}
.ws9d{word-spacing:4.303910pt;}
.ws86{word-spacing:4.395744pt;}
.ws87{word-spacing:4.410022pt;}
.wsc2{word-spacing:4.447279pt;}
.wsbc{word-spacing:4.781675pt;}
.wsb3{word-spacing:4.782731pt;}
.wsc4{word-spacing:4.790437pt;}
.wsa3{word-spacing:4.790539pt;}
.wsc7{word-spacing:4.791861pt;}
.ws88{word-spacing:4.941807pt;}
.wsad{word-spacing:5.021103pt;}
.wsd7{word-spacing:5.116550pt;}
.ws3a{word-spacing:5.260730pt;}
.ws14{word-spacing:5.296955pt;}
.ws15{word-spacing:5.312000pt;}
.ws24{word-spacing:5.313547pt;}
.wsc3{word-spacing:5.546965pt;}
.ws83{word-spacing:5.632469pt;}
.wscf{word-spacing:6.120789pt;}
.wsaa{word-spacing:6.359739pt;}
.ws8b{word-spacing:6.376533pt;}
.ws32{word-spacing:6.482645pt;}
.ws57{word-spacing:6.642106pt;}
.ws92{word-spacing:6.854385pt;}
.ws84{word-spacing:7.226709pt;}
.wse0{word-spacing:7.316495pt;}
.wsd1{word-spacing:7.746863pt;}
.wsae{word-spacing:7.842309pt;}
.ws37{word-spacing:7.864022pt;}
.wscc{word-spacing:7.985765pt;}
.ws94{word-spacing:8.023536pt;}
.ws80{word-spacing:8.129649pt;}
.ws85{word-spacing:8.342458pt;}
.ws35{word-spacing:8.873712pt;}
.wsc8{word-spacing:8.894559pt;}
.ws38{word-spacing:9.458261pt;}
.ws98{word-spacing:10.308437pt;}
.ws39{word-spacing:10.414550pt;}
.ws20{word-spacing:10.588053pt;}
.ws31{word-spacing:10.627359pt;}
.wsd4{word-spacing:10.759535pt;}
.wsce{word-spacing:11.667946pt;}
.ws91{word-spacing:11.743162pt;}
.wsa5{word-spacing:11.763392pt;}
.wsa9{word-spacing:11.906848pt;}
.wse5{word-spacing:11.912949pt;}
.wsdd{word-spacing:11.915691pt;}
.wse1{word-spacing:11.918795pt;}
.wsb6{word-spacing:12.098314pt;}
.ws1c{word-spacing:12.274363pt;}
.wsc0{word-spacing:13.006534pt;}
.wsca{word-spacing:13.341265pt;}
.wsbb{word-spacing:13.819834pt;}
.ws97{word-spacing:14.134176pt;}
.ws23{word-spacing:14.559264pt;}
.wsd6{word-spacing:15.062976pt;}
.wsb1{word-spacing:16.641039pt;}
.wsc5{word-spacing:16.688523pt;}
.wsda{word-spacing:16.831979pt;}
.wsa7{word-spacing:16.879942pt;}
.ws1b{word-spacing:19.819728pt;}
.ws74{word-spacing:28.858362pt;}
.wsd0{word-spacing:35.481259pt;}
.ws77{word-spacing:44.019433pt;}
.ws7c{word-spacing:44.060201pt;}
.ws73{word-spacing:45.807729pt;}
.ws61{word-spacing:51.787568pt;}
.ws63{word-spacing:51.788094pt;}
.ws70{word-spacing:54.587074pt;}
.ws7d{word-spacing:68.610304pt;}
.ws69{word-spacing:70.341402pt;}
.ws48{word-spacing:74.865207pt;}
.ws6b{word-spacing:79.761775pt;}
.ws3d{word-spacing:81.334346pt;}
.ws6f{word-spacing:86.460386pt;}
.ws65{word-spacing:91.716442pt;}
.ws5e{word-spacing:93.722923pt;}
.ws75{word-spacing:97.184430pt;}
.ws7b{word-spacing:107.386258pt;}
.ws72{word-spacing:108.121586pt;}
.ws71{word-spacing:110.107554pt;}
.ws7a{word-spacing:113.523662pt;}
.ws79{word-spacing:113.524109pt;}
.ws78{word-spacing:113.564470pt;}
.ws3f{word-spacing:120.432133pt;}
.ws76{word-spacing:123.685575pt;}
.ws3e{word-spacing:127.037263pt;}
.ws3c{word-spacing:134.285545pt;}
.ws40{word-spacing:143.438063pt;}
.ws44{word-spacing:193.816983pt;}
.ws47{word-spacing:197.965509pt;}
.ws3b{word-spacing:216.398235pt;}
.ws42{word-spacing:225.848450pt;}
.ws4c{word-spacing:277.445685pt;}
.ws6c{word-spacing:317.043418pt;}
.ws60{word-spacing:334.615381pt;}
.ws62{word-spacing:382.487200pt;}
.ws66{word-spacing:534.162677pt;}
.ws68{word-spacing:542.243984pt;}
.ws64{word-spacing:594.993355pt;}
.ws22{word-spacing:791.070068pt;}
.ws4b{word-spacing:1142.519453pt;}
._81{margin-left:-20.475695pt;}
._69{margin-left:-18.087207pt;}
._3{margin-left:-10.616145pt;}
._1{margin-left:-7.077366pt;}
._4{margin-left:-5.879627pt;}
._f{margin-left:-4.943083pt;}
._6{margin-left:-3.815765pt;}
._2e{margin-left:-2.869450pt;}
._2{margin-left:-1.721664pt;}
._9{width:0.969929pt;}
._5{width:2.665223pt;}
._68{width:4.552174pt;}
._7e{width:9.942348pt;}
._13{width:13.062245pt;}
._11{width:14.102989pt;}
._7{width:15.875558pt;}
._8{width:17.597652pt;}
._a{width:18.969818pt;}
._7b{width:20.172998pt;}
._10{width:21.325560pt;}
._b{width:22.540314pt;}
._2c{width:24.244380pt;}
._80{width:25.391377pt;}
._12{width:26.534900pt;}
._7d{width:28.143451pt;}
._c{width:29.277989pt;}
._7c{width:30.839607pt;}
._79{width:32.482181pt;}
._0{width:33.475029pt;}
._7a{width:34.558224pt;}
._82{width:36.167643pt;}
._2d{width:38.203668pt;}
._78{width:40.338973pt;}
._14{width:45.590635pt;}
._3a{width:51.823195pt;}
._55{width:54.221667pt;}
._d{width:56.505198pt;}
._39{width:57.757980pt;}
._38{width:60.846862pt;}
._2b{width:64.423495pt;}
._51{width:76.901858pt;}
._1f{width:77.817480pt;}
._3d{width:78.771771pt;}
._36{width:84.595137pt;}
._3b{width:86.453596pt;}
._3c{width:89.827609pt;}
._77{width:90.721111pt;}
._2f{width:91.764452pt;}
._25{width:94.853380pt;}
._76{width:99.482682pt;}
._66{width:101.411007pt;}
._3e{width:102.509038pt;}
._57{width:104.080721pt;}
._52{width:107.542061pt;}
._67{width:109.377661pt;}
._74{width:110.528922pt;}
._64{width:111.532258pt;}
._63{width:113.280267pt;}
._23{width:114.341968pt;}
._31{width:115.673785pt;}
._50{width:117.913537pt;}
._45{width:120.311562pt;}
._4a{width:121.694172pt;}
._44{width:123.685575pt;}
._42{width:125.636171pt;}
._32{width:127.628452pt;}
._33{width:130.162172pt;}
._5c{width:131.134011pt;}
._1e{width:132.558353pt;}
._49{width:133.886956pt;}
._3f{width:136.285428pt;}
._5f{width:139.932699pt;}
._4e{width:141.393732pt;}
._1c{width:142.643083pt;}
._5a{width:143.844496pt;}
._61{width:144.744646pt;}
._6f{width:146.609641pt;}
._58{width:149.251094pt;}
._1a{width:152.455291pt;}
._16{width:154.000016pt;}
._4b{width:159.685347pt;}
._5d{width:161.052244pt;}
._20{width:165.448168pt;}
._4f{width:167.583071pt;}
._4c{width:168.558572pt;}
._24{width:171.171745pt;}
._27{width:172.307620pt;}
._65{width:173.975288pt;}
._2a{width:175.219344pt;}
._47{width:176.890934pt;}
._40{width:182.744101pt;}
._22{width:183.664553pt;}
._1d{width:187.253117pt;}
._17{width:188.877318pt;}
._30{width:189.935505pt;}
._41{width:190.872909pt;}
._54{width:197.213867pt;}
._1b{width:201.063193pt;}
._72{width:202.795412pt;}
._6e{width:204.052564pt;}
._73{width:207.427200pt;}
._5e{width:211.993971pt;}
._6d{width:213.208618pt;}
._19{width:219.325187pt;}
._26{width:227.002383pt;}
._53{width:229.554554pt;}
._21{width:238.379796pt;}
._6c{width:244.145486pt;}
._5b{width:246.786362pt;}
._59{width:253.696077pt;}
._56{width:256.540644pt;}
._29{width:258.927326pt;}
._6a{width:260.117671pt;}
._75{width:261.533222pt;}
._18{width:262.684900pt;}
._62{width:263.856510pt;}
._48{width:269.669600pt;}
._6b{width:276.130193pt;}
._60{width:279.261657pt;}
._71{width:280.550955pt;}
._35{width:281.876725pt;}
._46{width:289.340294pt;}
._34{width:304.489621pt;}
._70{width:324.942252pt;}
._28{width:370.030477pt;}
._37{width:407.513383pt;}
._4d{width:417.850680pt;}
._43{width:817.904172pt;}
._7f{width:1812.762794pt;}
._e{width:1834.016128pt;}
._15{width:3149.296128pt;}
.fs4{font-size:37.194667pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.384000pt;}
.fsa{font-size:40.645867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.506667pt;}
.fs9{font-size:45.427733pt;}
.fs5{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs2{font-size:95.642667pt;}
.fs0{font-size:131.946667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:14.810189pt;}
.y2f{bottom:56.693333pt;}
.y1a6{bottom:96.850667pt;}
.y12e{bottom:101.472000pt;}
.y2e{bottom:105.014667pt;}
.y1a5{bottom:114.066667pt;}
.y12d{bottom:119.484000pt;}
.y140{bottom:121.304000pt;}
.y2d{bottom:123.028000pt;}
.y1a4{bottom:131.281333pt;}
.y12c{bottom:137.496000pt;}
.y172{bottom:140.421333pt;}
.y2c{bottom:141.040000pt;}
.y13f{bottom:142.784000pt;}
.y1a3{bottom:148.497333pt;}
.y12b{bottom:155.509333pt;}
.y171{bottom:157.636000pt;}
.y2b{bottom:159.053333pt;}
.y13e{bottom:164.262667pt;}
.y1a2{bottom:165.713333pt;}
.y12a{bottom:173.521333pt;}
.y170{bottom:174.852000pt;}
.y2a{bottom:177.065333pt;}
.y13d{bottom:177.772000pt;}
.y1a1{bottom:182.928000pt;}
.yfd{bottom:187.077333pt;}
.y13c{bottom:191.281333pt;}
.y129{bottom:191.534667pt;}
.y16f{bottom:192.068000pt;}
.y29{bottom:195.077333pt;}
.yfc{bottom:199.697333pt;}
.y1a0{bottom:200.144000pt;}
.y13b{bottom:204.790667pt;}
.y16e{bottom:209.282667pt;}
.y128{bottom:209.546667pt;}
.y28{bottom:213.090667pt;}
.y19f{bottom:217.358667pt;}
.yfb{bottom:218.098000pt;}
.yfa{bottom:218.098067pt;}
.y13a{bottom:218.301333pt;}
.y16d{bottom:226.498667pt;}
.y127{bottom:227.558667pt;}
.yf5{bottom:230.310867pt;}
.yf9{bottom:230.788000pt;}
.y27{bottom:231.102667pt;}
.y5b{bottom:232.633333pt;}
.y19e{bottom:234.574667pt;}
.yf4{bottom:242.731067pt;}
.yf8{bottom:243.477867pt;}
.yf7{bottom:243.477933pt;}
.y16c{bottom:243.713333pt;}
.y126{bottom:245.572000pt;}
.y139{bottom:247.750667pt;}
.y26{bottom:249.116000pt;}
.y5a{bottom:250.646667pt;}
.y19d{bottom:251.790667pt;}
.yf6{bottom:256.167867pt;}
.yeb{bottom:259.610933pt;}
.y16b{bottom:260.929333pt;}
.y125{bottom:263.584000pt;}
.y138{bottom:265.762667pt;}
.y25{bottom:267.128000pt;}
.y59{bottom:268.658667pt;}
.y19c{bottom:269.005333pt;}
.yea{bottom:272.031067pt;}
.yf3{bottom:274.300000pt;}
.yf2{bottom:274.300067pt;}
.y16a{bottom:278.145333pt;}
.y124{bottom:281.597333pt;}
.y137{bottom:283.776000pt;}
.y24{bottom:285.140000pt;}
.y19b{bottom:286.221333pt;}
.yed{bottom:286.512867pt;}
.y58{bottom:286.670667pt;}
.yf1{bottom:286.990000pt;}
.y169{bottom:295.360000pt;}
.yec{bottom:298.933067pt;}
.y123{bottom:299.609333pt;}
.yef{bottom:299.679933pt;}
.yf0{bottom:299.680000pt;}
.y136{bottom:301.788000pt;}
.y23{bottom:303.153333pt;}
.y19a{bottom:303.437333pt;}
.y57{bottom:304.684000pt;}
.ya8{bottom:312.160000pt;}
.yee{bottom:312.369867pt;}
.y168{bottom:312.576000pt;}
.y122{bottom:317.621333pt;}
.y199{bottom:320.652000pt;}
.y22{bottom:321.165333pt;}
.y56{bottom:322.696000pt;}
.y135{bottom:327.770667pt;}
.y167{bottom:329.790667pt;}
.ya7{bottom:330.173333pt;}
.ye9{bottom:330.502000pt;}
.y121{bottom:335.634667pt;}
.y198{bottom:337.868000pt;}
.y55{bottom:340.709333pt;}
.ye8{bottom:343.191933pt;}
.y166{bottom:347.006667pt;}
.y21{bottom:347.148000pt;}
.ya6{bottom:348.185333pt;}
.y120{bottom:353.646667pt;}
.y197{bottom:355.082667pt;}
.ye7{bottom:355.881867pt;}
.ye6{bottom:355.882000pt;}
.y54{bottom:358.721333pt;}
.y165{bottom:364.222667pt;}
.ya5{bottom:366.198667pt;}
.ye5{bottom:368.571933pt;}
.y11f{bottom:371.660000pt;}
.y196{bottom:372.298667pt;}
.y53{bottom:376.733333pt;}
.ye3{bottom:381.261800pt;}
.ye4{bottom:381.261867pt;}
.y164{bottom:381.437333pt;}
.ya4{bottom:384.210667pt;}
.y195{bottom:389.514667pt;}
.y11e{bottom:389.672000pt;}
.ye2{bottom:393.951733pt;}
.ye1{bottom:393.951800pt;}
.y52{bottom:394.746667pt;}
.y163{bottom:398.653333pt;}
.y75{bottom:401.346667pt;}
.ya3{bottom:402.222667pt;}
.ydf{bottom:406.641667pt;}
.ye0{bottom:406.641733pt;}
.y194{bottom:406.729333pt;}
.y11d{bottom:407.684000pt;}
.y51{bottom:412.758667pt;}
.y20{bottom:415.073333pt;}
.y162{bottom:415.868000pt;}
.yde{bottom:419.331600pt;}
.ya2{bottom:420.236000pt;}
.y74{bottom:420.249067pt;}
.y193{bottom:423.945333pt;}
.y11c{bottom:425.697333pt;}
.y70{bottom:429.871933pt;}
.y50{bottom:430.772000pt;}
.ydd{bottom:432.021533pt;}
.y161{bottom:433.084000pt;}
.y73{bottom:434.130533pt;}
.ya1{bottom:438.248000pt;}
.y192{bottom:441.160000pt;}
.y11b{bottom:443.709333pt;}
.y6f{bottom:443.753333pt;}
.ydc{bottom:444.711467pt;}
.ydb{bottom:444.711533pt;}
.y4f{bottom:448.784000pt;}
.y1f{bottom:449.026667pt;}
.y160{bottom:450.300000pt;}
.y72{bottom:454.093133pt;}
.ya0{bottom:456.261333pt;}
.yd9{bottom:457.401400pt;}
.yda{bottom:457.401467pt;}
.y6e{bottom:457.633467pt;}
.y191{bottom:458.376000pt;}
.y11a{bottom:461.722667pt;}
.y4e{bottom:466.796000pt;}
.y1e{bottom:467.038667pt;}
.y15f{bottom:467.514667pt;}
.y71{bottom:467.974533pt;}
.yd7{bottom:470.091267pt;}
.yd8{bottom:470.091333pt;}
.y9f{bottom:474.273333pt;}
.y190{bottom:475.592000pt;}
.y119{bottom:479.734667pt;}
.yd6{bottom:482.781200pt;}
.yd5{bottom:482.781267pt;}
.y15e{bottom:484.730667pt;}
.y4d{bottom:484.809333pt;}
.y1d{bottom:485.050667pt;}
.y6d{bottom:487.938467pt;}
.y9e{bottom:492.285333pt;}
.y18f{bottom:492.806667pt;}
.yd4{bottom:495.471200pt;}
.yd3{bottom:495.471267pt;}
.y69{bottom:497.560067pt;}
.y118{bottom:497.746667pt;}
.y6c{bottom:501.819867pt;}
.y15d{bottom:501.945333pt;}
.y4c{bottom:502.821333pt;}
.y1c{bottom:503.064000pt;}
.yd2{bottom:508.161200pt;}
.y18e{bottom:510.022667pt;}
.y9d{bottom:510.298667pt;}
.y68{bottom:511.441467pt;}
.y117{bottom:515.760000pt;}
.y15c{bottom:519.161333pt;}
.y4b{bottom:520.834667pt;}
.yd1{bottom:520.851133pt;}
.y1b{bottom:521.076000pt;}
.y6b{bottom:521.782533pt;}
.y67{bottom:525.322800pt;}
.y18d{bottom:527.237333pt;}
.y9c{bottom:528.310667pt;}
.ycf{bottom:533.541000pt;}
.yd0{bottom:533.541067pt;}
.y116{bottom:533.772000pt;}
.y6a{bottom:535.663933pt;}
.y15b{bottom:536.377333pt;}
.y4a{bottom:538.846667pt;}
.y1a{bottom:539.089333pt;}
.y18c{bottom:544.453333pt;}
.yce{bottom:546.230933pt;}
.y9b{bottom:546.324000pt;}
.y115{bottom:551.785333pt;}
.y15a{bottom:553.592000pt;}
.y66{bottom:555.627867pt;}
.y49{bottom:556.858667pt;}
.y19{bottom:557.101333pt;}
.ycd{bottom:558.920867pt;}
.y18b{bottom:561.669333pt;}
.y9a{bottom:564.336000pt;}
.y65{bottom:569.508000pt;}
.y114{bottom:569.797333pt;}
.y159{bottom:570.808000pt;}
.ycc{bottom:571.610800pt;}
.y62{bottom:571.736067pt;}
.y48{bottom:574.872000pt;}
.y18{bottom:575.113333pt;}
.y18a{bottom:578.884000pt;}
.y61{bottom:585.617467pt;}
.y113{bottom:587.809333pt;}
.y158{bottom:588.024000pt;}
.y64{bottom:589.471933pt;}
.yca{bottom:589.743000pt;}
.ycb{bottom:589.743067pt;}
.y47{bottom:592.884000pt;}
.y17{bottom:593.126667pt;}
.y189{bottom:596.100000pt;}
.yc9{bottom:596.802533pt;}
.y99{bottom:601.290667pt;}
.y63{bottom:603.353333pt;}
.y157{bottom:605.238667pt;}
.y112{bottom:605.822667pt;}
.y46{bottom:610.896000pt;}
.y16{bottom:611.138667pt;}
.y188{bottom:613.314667pt;}
.y98{bottom:619.691467pt;}
.yc8{bottom:620.565067pt;}
.y156{bottom:622.454667pt;}
.yc4{bottom:622.877133pt;}
.yc6{bottom:623.121933pt;}
.y5f{bottom:623.316000pt;}
.y111{bottom:623.834667pt;}
.y45{bottom:628.909333pt;}
.y15{bottom:629.152000pt;}
.yc3{bottom:629.243067pt;}
.y5e{bottom:630.257333pt;}
.y187{bottom:630.530667pt;}
.y97{bottom:632.381400pt;}
.y94{bottom:633.230333pt;}
.yc5{bottom:635.542133pt;}
.y60{bottom:637.197400pt;}
.yc7{bottom:638.696200pt;}
.y155{bottom:639.669333pt;}
.y110{bottom:641.846667pt;}
.yc2{bottom:643.746667pt;}
.y96{bottom:645.071333pt;}
.y93{bottom:645.650533pt;}
.y44{bottom:646.921333pt;}
.y14{bottom:647.164000pt;}
.y186{bottom:647.746667pt;}
.y154{bottom:656.885333pt;}
.y95{bottom:657.761333pt;}
.y10f{bottom:659.860000pt;}
.yc1{bottom:663.353333pt;}
.y5d{bottom:664.553333pt;}
.y43{bottom:664.934667pt;}
.y185{bottom:664.961333pt;}
.y13{bottom:665.176000pt;}
.y153{bottom:674.101333pt;}
.y92{bottom:675.893467pt;}
.y10e{bottom:677.872000pt;}
.yc0{bottom:678.282667pt;}
.y184{bottom:682.177333pt;}
.yb9{bottom:682.854667pt;}
.y42{bottom:682.946667pt;}
.y12{bottom:683.189333pt;}
.y91{bottom:688.583400pt;}
.y8e{bottom:689.432267pt;}
.y152{bottom:691.316000pt;}
.ybf{bottom:693.212000pt;}
.y10d{bottom:695.885333pt;}
.y183{bottom:699.392000pt;}
.y40{bottom:700.958667pt;}
.y11{bottom:701.201333pt;}
.y90{bottom:701.273333pt;}
.y8d{bottom:701.852533pt;}
.y41{bottom:705.781333pt;}
.ybe{bottom:708.141333pt;}
.y151{bottom:708.532000pt;}
.y5c{bottom:709.729333pt;}
.y10c{bottom:713.897333pt;}
.y8f{bottom:713.963267pt;}
.y182{bottom:716.608000pt;}
.y3f{bottom:718.972000pt;}
.y10{bottom:719.214667pt;}
.ybd{bottom:723.070667pt;}
.y150{bottom:725.746667pt;}
.y10b{bottom:731.909333pt;}
.y8c{bottom:732.095467pt;}
.y181{bottom:733.824000pt;}
.y3e{bottom:736.984000pt;}
.ybc{bottom:738.000000pt;}
.y14f{bottom:742.962667pt;}
.y8b{bottom:744.785400pt;}
.y10a{bottom:749.922667pt;}
.yd{bottom:750.709358pt;}
.y88{bottom:750.787600pt;}
.y180{bottom:751.038667pt;}
.yc{bottom:751.390667pt;}
.ybb{bottom:752.930667pt;}
.y3d{bottom:754.997333pt;}
.y8a{bottom:757.475333pt;}
.y14e{bottom:760.178667pt;}
.yba{bottom:767.860000pt;}
.y109{bottom:767.934667pt;}
.y17f{bottom:768.254667pt;}
.y89{bottom:770.165333pt;}
.y3c{bottom:773.009333pt;}
.y14d{bottom:777.393333pt;}
.y17e{bottom:785.469333pt;}
.y108{bottom:785.948000pt;}
.yb{bottom:786.062667pt;}
.y87{bottom:788.296333pt;}
.yb8{bottom:789.190667pt;}
.y3b{bottom:791.021333pt;}
.y14c{bottom:794.609333pt;}
.y86{bottom:800.986267pt;}
.y17d{bottom:802.685333pt;}
.y107{bottom:803.960000pt;}
.yb7{bottom:804.120000pt;}
.ya{bottom:806.541333pt;}
.y83{bottom:808.315600pt;}
.y3a{bottom:809.034667pt;}
.yb0{bottom:809.713333pt;}
.y14b{bottom:811.824000pt;}
.y85{bottom:813.676267pt;}
.y9{bottom:818.341333pt;}
.yb6{bottom:819.049333pt;}
.y17c{bottom:819.901333pt;}
.y106{bottom:821.972000pt;}
.y1a9{bottom:825.126667pt;}
.y84{bottom:826.367333pt;}
.y39{bottom:827.046667pt;}
.y14a{bottom:829.040000pt;}
.yb5{bottom:833.978667pt;}
.y134{bottom:835.017333pt;}
.y17b{bottom:837.116000pt;}
.y8{bottom:838.821333pt;}
.y105{bottom:839.985333pt;}
.y1a8{bottom:842.341333pt;}
.y82{bottom:844.498400pt;}
.y38{bottom:845.060000pt;}
.y149{bottom:846.256000pt;}
.yb4{bottom:848.908000pt;}
.y81{bottom:850.232000pt;}
.y17a{bottom:854.332000pt;}
.y104{bottom:857.997333pt;}
.y7{bottom:858.590667pt;}
.y1a7{bottom:859.557333pt;}
.y37{bottom:863.072000pt;}
.y148{bottom:863.470667pt;}
.yb3{bottom:863.837333pt;}
.y133{bottom:865.968000pt;}
.y179{bottom:871.546667pt;}
.y80{bottom:875.050733pt;}
.y103{bottom:876.010667pt;}
.yb2{bottom:878.766667pt;}
.y147{bottom:880.686667pt;}
.y36{bottom:881.084000pt;}
.y132{bottom:883.980000pt;}
.y7f{bottom:887.740667pt;}
.y178{bottom:888.762667pt;}
.yb1{bottom:893.696000pt;}
.y102{bottom:894.022667pt;}
.y146{bottom:897.901333pt;}
.y6{bottom:898.178667pt;}
.y35{bottom:899.097333pt;}
.y131{bottom:901.993333pt;}
.y7e{bottom:905.871867pt;}
.y177{bottom:905.978667pt;}
.y101{bottom:912.034667pt;}
.yad{bottom:914.710667pt;}
.y145{bottom:915.117333pt;}
.y7c{bottom:918.561667pt;}
.y7d{bottom:918.561733pt;}
.y7b{bottom:919.411733pt;}
.y130{bottom:920.005333pt;}
.yaf{bottom:922.016000pt;}
.y176{bottom:923.193333pt;}
.y34{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.yac{bottom:929.322667pt;}
.y100{bottom:930.048000pt;}
.y144{bottom:932.333333pt;}
.yae{bottom:936.628000pt;}
.y12f{bottom:938.017333pt;}
.ya9{bottom:939.652000pt;}
.y175{bottom:940.409333pt;}
.yab{bottom:943.934667pt;}
.yff{bottom:948.060000pt;}
.y7a{bottom:949.383867pt;}
.y143{bottom:949.548000pt;}
.y78{bottom:952.205933pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y174{bottom:957.624000pt;}
.y77{bottom:964.626133pt;}
.yaa{bottom:965.265333pt;}
.yfe{bottom:966.073333pt;}
.y142{bottom:966.764000pt;}
.y79{bottom:967.516133pt;}
.y32{bottom:974.042667pt;}
.y173{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y141{bottom:991.949333pt;}
.y31{bottom:992.056000pt;}
.y76{bottom:993.372000pt;}
.y1{bottom:1011.514648pt;}
.y30{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h10{height:29.065392pt;}
.h1b{height:29.386962pt;}
.h24{height:29.387228pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h15{height:32.844251pt;}
.h29{height:33.712160pt;}
.h7{height:33.772757pt;}
.h28{height:34.142528pt;}
.h21{height:34.572896pt;}
.h1f{height:34.716896pt;}
.h20{height:34.859808pt;}
.hf{height:36.668672pt;}
.h1d{height:36.906447pt;}
.h26{height:36.906714pt;}
.hc{height:38.417328pt;}
.he{height:38.596053pt;}
.h4{height:38.948688pt;}
.h17{height:41.248382pt;}
.h19{height:41.248649pt;}
.h8{height:43.419349pt;}
.h2{height:44.738497pt;}
.hd{height:48.247488pt;}
.h6{height:48.488299pt;}
.h23{height:49.261095pt;}
.h22{height:53.604028pt;}
.h27{height:54.080683pt;}
.h25{height:59.428047pt;}
.h13{height:60.604518pt;}
.h16{height:60.609585pt;}
.h1e{height:64.732047pt;}
.h18{height:69.008649pt;}
.h1a{height:69.013715pt;}
.h5{height:69.149648pt;}
.h3{height:82.466667pt;}
.h1c{height:84.266180pt;}
.h14{height:88.369851pt;}
.h11{height:793.701333pt;}
.h12{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.596137pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.159525pt;}
.x1{left:102.046672pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x2f{left:112.240400pt;}
.x5c{left:117.730133pt;}
.x4b{left:119.079867pt;}
.x5d{left:121.230933pt;}
.x4{left:129.929333pt;}
.x2c{left:131.247733pt;}
.x35{left:133.436000pt;}
.x9{left:135.784000pt;}
.x2b{left:138.510800pt;}
.x13{left:141.106667pt;}
.xa{left:142.425333pt;}
.x5a{left:143.568933pt;}
.x56{left:145.718867pt;}
.x53{left:150.103733pt;}
.x55{left:154.417200pt;}
.x54{left:156.856133pt;}
.x59{left:158.679667pt;}
.x63{left:159.988000pt;}
.x58{left:162.536400pt;}
.x68{left:164.033333pt;}
.x50{left:165.051200pt;}
.x60{left:166.937067pt;}
.x8{left:167.969333pt;}
.x41{left:168.977333pt;}
.x5e{left:170.260067pt;}
.x69{left:177.317333pt;}
.x5b{left:179.034333pt;}
.x2e{left:182.980000pt;}
.x86{left:198.248000pt;}
.x32{left:204.891467pt;}
.x14{left:211.453333pt;}
.x80{left:212.460000pt;}
.x28{left:214.119400pt;}
.x31{left:219.998933pt;}
.x2a{left:222.495867pt;}
.x15{left:223.469333pt;}
.x8e{left:225.868000pt;}
.x24{left:228.123733pt;}
.x29{left:231.025600pt;}
.x66{left:236.040000pt;}
.x8d{left:237.545333pt;}
.x20{left:239.852000pt;}
.x23{left:248.164000pt;}
.x67{left:249.322667pt;}
.x21{left:251.684000pt;}
.x84{left:252.953333pt;}
.x85{left:256.385333pt;}
.x70{left:269.237333pt;}
.x11{left:275.453333pt;}
.x12{left:282.096000pt;}
.x8c{left:288.444000pt;}
.x47{left:289.917400pt;}
.x2d{left:297.845333pt;}
.x5f{left:301.490933pt;}
.x6c{left:309.677333pt;}
.x1d{left:316.300000pt;}
.x33{left:322.022667pt;}
.x6d{left:322.960000pt;}
.x16{left:327.864000pt;}
.x17{left:339.880000pt;}
.x3b{left:340.904000pt;}
.x49{left:344.684600pt;}
.x3a{left:347.552000pt;}
.x43{left:351.572000pt;}
.x82{left:356.878667pt;}
.x48{left:365.536800pt;}
.x30{left:382.351133pt;}
.x46{left:384.248000pt;}
.x83{left:390.429333pt;}
.x87{left:403.756000pt;}
.x88{left:409.733333pt;}
.x42{left:432.258667pt;}
.x3d{left:440.958667pt;}
.x89{left:447.676000pt;}
.x3c{left:449.093333pt;}
.x22{left:451.036000pt;}
.x76{left:453.657333pt;}
.x39{left:460.753333pt;}
.x1e{left:462.378667pt;}
.x4c{left:469.616467pt;}
.x34{left:471.794867pt;}
.x1a{left:473.092000pt;}
.x1f{left:474.568000pt;}
.x8a{left:476.056000pt;}
.xf{left:477.513333pt;}
.x36{left:479.858667pt;}
.x10{left:484.156000pt;}
.x1b{left:485.309333pt;}
.x37{left:486.566667pt;}
.x6a{left:492.230667pt;}
.x38{left:499.849333pt;}
.x6b{left:505.514667pt;}
.x61{left:506.660000pt;}
.x62{left:511.084000pt;}
.x6e{left:512.797333pt;}
.x6f{left:516.509333pt;}
.x44{left:521.380000pt;}
.xb{left:523.437333pt;}
.x3f{left:525.429333pt;}
.xc{left:530.080000pt;}
.x3e{left:538.214667pt;}
.x8b{left:543.490667pt;}
.x4d{left:551.567867pt;}
.x4a{left:556.960200pt;}
.x45{left:561.141333pt;}
.x73{left:584.870667pt;}
.x74{left:591.513333pt;}
.x4e{left:592.878933pt;}
.x7f{left:595.777333pt;}
.x75{left:598.081333pt;}
.x7d{left:601.860000pt;}
.x18{left:605.769333pt;}
.xd{left:608.586667pt;}
.x25{left:610.309933pt;}
.x40{left:612.206667pt;}
.xe{left:615.228000pt;}
.x19{left:617.785333pt;}
.x1c{left:620.428000pt;}
.x6{left:623.413314pt;}
.x7e{left:625.770667pt;}
.x64{left:628.697333pt;}
.x79{left:630.058667pt;}
.x81{left:631.630667pt;}
.x4f{left:633.743600pt;}
.x65{left:635.340000pt;}
.x71{left:640.345333pt;}
.x72{left:646.986667pt;}
.x7b{left:648.692000pt;}
.x77{left:666.285333pt;}
.x7a{left:671.182667pt;}
.x7c{left:672.602667pt;}
.x78{left:690.194667pt;}
.x26{left:771.271600pt;}
.x27{left:862.309467pt;}
.x51{left:945.548400pt;}
.x52{left:981.548800pt;}
.x57{left:983.353067pt;}
}




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