
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7079fa29ee65a08eeda33257.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_56b5b86b75e732a1d6877ce3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_158b31334ecb5645fa24b973.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eafa7fa5d684beecf3b80f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.388000;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_0503b37c8de974858cc6480c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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;}
.m1{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);}
.m7{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);}
.m19{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);}
.m8{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);}
.m22{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);}
.m16{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);}
.m29{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);}
.mf{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);}
.mc{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);}
.m6{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);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m10{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);}
.m15{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);}
.m12{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);}
.me{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);}
.ma{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);}
.m1c{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);}
.m17{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);}
.m20{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);}
.m18{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);}
.m13{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);}
.m26{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);}
.m1b{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);}
.m14{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);}
.m27{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);}
.m1e{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);}
.m25{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);}
.md{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);}
.m5{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);}
.m1d{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);}
.m4{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);}
.m23{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);}
.m3{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);}
.m24{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:39.060000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000292px;}
.lsc{letter-spacing:0.004800px;}
.ls2{letter-spacing:11.960850px;}
.lsf{letter-spacing:13.436004px;}
.ls9{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.454400px;}
.lsd{letter-spacing:13.650908px;}
.ls7{letter-spacing:14.943900px;}
.ls4{letter-spacing:15.063451px;}
.ls6{letter-spacing:17.693578px;}
.ls8{letter-spacing:19.068416px;}
.lsb{letter-spacing:26.900400px;}
.ls0{letter-spacing:70.236600px;}
.ls1{letter-spacing:72.353510px;}
.ls5{letter-spacing:95.644200px;}
.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;}
}
.ws4{word-spacing:-14.943900px;}
.ws7{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws7d{word-spacing:-3.048556px;}
.ws60{word-spacing:-2.958912px;}
.ws54{word-spacing:-2.929004px;}
.wsba{word-spacing:-2.797517px;}
.ws6b{word-spacing:-2.749678px;}
.ws23{word-spacing:-2.391024px;}
.ws72{word-spacing:-2.331248px;}
.ws57{word-spacing:-2.211697px;}
.ws43{word-spacing:-2.151922px;}
.ws63{word-spacing:-2.032370px;}
.ws4f{word-spacing:-1.853044px;}
.ws62{word-spacing:-1.733492px;}
.ws56{word-spacing:-1.673717px;}
.ws53{word-spacing:-1.554166px;}
.ws25{word-spacing:-1.494390px;}
.ws7b{word-spacing:-1.344960px;}
.wsb9{word-spacing:-1.291162px;}
.ws86{word-spacing:-1.255288px;}
.wsb4{word-spacing:-1.237363px;}
.ws7c{word-spacing:-1.129766px;}
.ws10{word-spacing:-1.075961px;}
.wsb8{word-spacing:-1.022170px;}
.ws17{word-spacing:-0.896634px;}
.ws85{word-spacing:-0.777083px;}
.ws35{word-spacing:-0.717307px;}
.ws8e{word-spacing:-0.484186px;}
.ws52{word-spacing:-0.418429px;}
.wsbb{word-spacing:-0.376589px;}
.ws26{word-spacing:-0.358654px;}
.wsc{word-spacing:-0.298878px;}
.wsb7{word-spacing:-0.268992px;}
.wsb{word-spacing:-0.239102px;}
.wsaa{word-spacing:-0.215194px;}
.ws4e{word-spacing:-0.179327px;}
.ws6{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.119551px;}
.ws94{word-spacing:-0.107597px;}
.ws2e{word-spacing:-0.059776px;}
.ws9d{word-spacing:-0.053798px;}
.wsa1{word-spacing:-0.009792px;}
.wsa2{word-spacing:-0.007747px;}
.wsa6{word-spacing:-0.006221px;}
.wsbf{word-spacing:-0.004800px;}
.ws1{word-spacing:-0.001750px;}
.ws99{word-spacing:-0.000979px;}
.ws0{word-spacing:0.000000px;}
.ws5e{word-spacing:0.053798px;}
.ws19{word-spacing:0.059776px;}
.ws5f{word-spacing:0.107597px;}
.ws13{word-spacing:0.119551px;}
.wsb5{word-spacing:0.161395px;}
.ws1a{word-spacing:0.179327px;}
.wsb0{word-spacing:0.215194px;}
.ws1f{word-spacing:0.239102px;}
.wsac{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws12{word-spacing:0.358654px;}
.ws98{word-spacing:0.376589px;}
.ws45{word-spacing:0.418429px;}
.wsab{word-spacing:0.430387px;}
.ws59{word-spacing:0.478205px;}
.ws97{word-spacing:0.484186px;}
.ws40{word-spacing:0.537980px;}
.ws3f{word-spacing:0.597756px;}
.ws69{word-spacing:0.657532px;}
.ws96{word-spacing:0.699379px;}
.ws4a{word-spacing:0.717307px;}
.ws32{word-spacing:0.777083px;}
.ws1c{word-spacing:0.896634px;}
.ws44{word-spacing:0.956410px;}
.wsb2{word-spacing:1.022170px;}
.ws9{word-spacing:1.135736px;}
.ws5a{word-spacing:1.255288px;}
.ws41{word-spacing:1.315063px;}
.ws9f{word-spacing:1.344960px;}
.ws75{word-spacing:1.374839px;}
.wsb6{word-spacing:1.398758px;}
.ws9a{word-spacing:1.452557px;}
.ws14{word-spacing:1.494390px;}
.ws34{word-spacing:1.613941px;}
.ws6c{word-spacing:1.673717px;}
.ws11{word-spacing:1.912819px;}
.ws4d{word-spacing:2.032370px;}
.ws30{word-spacing:2.092146px;}
.ws6f{word-spacing:2.151922px;}
.ws71{word-spacing:2.205734px;}
.ws49{word-spacing:2.211697px;}
.ws46{word-spacing:2.271473px;}
.ws42{word-spacing:2.331248px;}
.ws68{word-spacing:2.391024px;}
.ws70{word-spacing:2.528525px;}
.ws37{word-spacing:2.570351px;}
.ws51{word-spacing:2.630126px;}
.wsd{word-spacing:2.689902px;}
.ws67{word-spacing:2.749678px;}
.ws58{word-spacing:2.809453px;}
.ws74{word-spacing:2.869229px;}
.ws1d{word-spacing:2.869236px;}
.ws55{word-spacing:2.929004px;}
.ws1b{word-spacing:3.108331px;}
.ws50{word-spacing:3.168107px;}
.ws90{word-spacing:3.174106px;}
.ws22{word-spacing:3.227882px;}
.ws8{word-spacing:3.227904px;}
.wsa0{word-spacing:3.229344px;}
.ws89{word-spacing:3.287658px;}
.wsa4{word-spacing:3.335501px;}
.wse{word-spacing:3.347434px;}
.ws2b{word-spacing:3.407209px;}
.ws6a{word-spacing:3.466985px;}
.ws8f{word-spacing:3.496896px;}
.ws5d{word-spacing:3.526760px;}
.wsae{word-spacing:3.550694px;}
.ws18{word-spacing:3.586536px;}
.ws73{word-spacing:3.646312px;}
.ws28{word-spacing:3.706087px;}
.wsad{word-spacing:3.712090px;}
.ws15{word-spacing:3.765863px;}
.wsa8{word-spacing:3.819686px;}
.ws36{word-spacing:3.885414px;}
.ws2a{word-spacing:4.004965px;}
.ws3b{word-spacing:4.064741px;}
.wsa{word-spacing:4.124516px;}
.ws88{word-spacing:4.184292px;}
.wsf{word-spacing:4.244068px;}
.ws9e{word-spacing:4.357670px;}
.ws81{word-spacing:4.363619px;}
.ws24{word-spacing:4.423394px;}
.ws8b{word-spacing:4.483170px;}
.ws66{word-spacing:4.602721px;}
.ws38{word-spacing:4.662497px;}
.ws2f{word-spacing:4.782048px;}
.wsa3{word-spacing:4.788058px;}
.ws29{word-spacing:4.841824px;}
.wsbe{word-spacing:4.949453px;}
.ws82{word-spacing:5.021150px;}
.ws65{word-spacing:5.080926px;}
.ws4b{word-spacing:5.260253px;}
.ws7a{word-spacing:5.320028px;}
.ws47{word-spacing:5.379804px;}
.ws61{word-spacing:5.559131px;}
.ws3e{word-spacing:5.618906px;}
.ws92{word-spacing:5.648832px;}
.ws93{word-spacing:5.702630px;}
.ws20{word-spacing:5.858009px;}
.ws2c{word-spacing:6.216662px;}
.ws80{word-spacing:6.455765px;}
.ws8d{word-spacing:6.509606px;}
.ws48{word-spacing:6.515540px;}
.wsc1{word-spacing:6.617203px;}
.ws76{word-spacing:6.754643px;}
.ws5c{word-spacing:6.874194px;}
.ws5b{word-spacing:6.933970px;}
.ws4c{word-spacing:7.113296px;}
.ws78{word-spacing:7.173072px;}
.ws33{word-spacing:7.232848px;}
.ws84{word-spacing:7.292623px;}
.wsbd{word-spacing:7.477978px;}
.ws79{word-spacing:7.531726px;}
.ws7e{word-spacing:7.711052px;}
.ws3a{word-spacing:7.890379px;}
.ws8c{word-spacing:8.069706px;}
.ws3d{word-spacing:8.189257px;}
.ws83{word-spacing:8.308808px;}
.ws91{word-spacing:8.446349px;}
.ws31{word-spacing:8.488135px;}
.ws77{word-spacing:8.727238px;}
.wsaf{word-spacing:8.769139px;}
.ws7f{word-spacing:9.444545px;}
.ws39{word-spacing:9.743423px;}
.wsa7{word-spacing:9.791309px;}
.ws3c{word-spacing:9.982525px;}
.ws2d{word-spacing:10.042301px;}
.ws87{word-spacing:10.221628px;}
.ws9c{word-spacing:10.275494px;}
.wsc0{word-spacing:10.705882px;}
.wsb3{word-spacing:10.974874px;}
.wsa5{word-spacing:11.190067px;}
.wsc2{word-spacing:11.243866px;}
.ws21{word-spacing:11.357364px;}
.ws9b{word-spacing:12.911616px;}
.ws64{word-spacing:13.628837px;}
.ws8a{word-spacing:13.867939px;}
.wsa9{word-spacing:14.364173px;}
.wsbc{word-spacing:15.171149px;}
.ws6d{word-spacing:15.541656px;}
.ws6e{word-spacing:16.796944px;}
.wsb1{word-spacing:18.560448px;}
.ws5{word-spacing:51.707815px;}
.ws3{word-spacing:51.748445px;}
.ws95{word-spacing:346.623091px;}
._21{margin-left:-20.873779px;}
._c{margin-left:-7.152108px;}
._12{margin-left:-6.037336px;}
._4{margin-left:-4.895654px;}
._e{margin-left:-2.914742px;}
._1{margin-left:-1.063024px;}
._20{width:1.990541px;}
._3{width:4.126750px;}
._0{width:10.165172px;}
._f{width:11.536672px;}
._5{width:12.575881px;}
._1a{width:14.306007px;}
._2e{width:15.613451px;}
._7{width:16.677504px;}
._b{width:18.410885px;}
._a{width:20.370543px;}
._15{width:21.698543px;}
._d{width:23.286610px;}
._1b{width:24.307705px;}
._16{width:25.404630px;}
._18{width:26.779469px;}
._2{width:27.916973px;}
._9{width:29.097780px;}
._17{width:30.173741px;}
._8{width:31.488804px;}
._1f{width:32.538891px;}
._13{width:34.702424px;}
._2d{width:36.744307px;}
._2f{width:38.746144px;}
._19{width:40.360714px;}
._1c{width:41.770207px;}
._1e{width:47.880256px;}
._14{width:49.255094px;}
._6{width:63.858701px;}
._22{width:71.713267px;}
._29{width:248.279616px;}
._24{width:252.744883px;}
._27{width:306.435686px;}
._2c{width:337.315968px;}
._25{width:339.575501px;}
._23{width:351.195955px;}
._2a{width:366.797491px;}
._28{width:370.132992px;}
._2b{width:379.655309px;}
._26{width:387.778867px;}
._10{width:450.976065px;}
._1d{width:1568.569358px;}
._11{width:1592.479358px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs6{font-size:41.842800px;}
.fs5{font-size:45.429600px;}
.fs8{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fs4{font-size:81.772800px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.350457px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y30{bottom:63.780000px;}
.ya4{bottom:108.612000px;}
.y15f{bottom:114.591000px;}
.y8b{bottom:119.863500px;}
.y2f{bottom:125.043000px;}
.ya3{bottom:128.875500px;}
.y15e{bottom:133.957500px;}
.y12e{bottom:135.510000px;}
.yf1{bottom:138.511500px;}
.y8a{bottom:140.128500px;}
.y62{bottom:143.386500px;}
.y2e{bottom:145.308000px;}
.yb0{bottom:147.271500px;}
.ya2{bottom:149.139000px;}
.y12d{bottom:150.708000px;}
.y15d{bottom:153.325500px;}
.yf0{bottom:158.775000px;}
.y89{bottom:160.392000px;}
.yd4{bottom:162.408000px;}
.y61{bottom:163.650000px;}
.y2d{bottom:165.571500px;}
.y12c{bottom:165.906000px;}
.y190{bottom:167.059500px;}
.yaf{bottom:167.535000px;}
.ya1{bottom:169.404000px;}
.y15c{bottom:172.693500px;}
.y88{bottom:180.657000px;}
.yd3{bottom:182.671500px;}
.y60{bottom:183.913500px;}
.y2c{bottom:185.835000px;}
.yae{bottom:185.932500px;}
.y18f{bottom:186.427500px;}
.yef{bottom:188.005500px;}
.ya0{bottom:189.667500px;}
.y15b{bottom:192.060000px;}
.y12b{bottom:199.038000px;}
.y87{bottom:200.920500px;}
.yd2{bottom:202.935000px;}
.y5f{bottom:204.178500px;}
.y18e{bottom:205.794000px;}
.y2b{bottom:206.100000px;}
.yad{bottom:206.196000px;}
.y9f{bottom:209.932500px;}
.y15a{bottom:211.428000px;}
.ybf{bottom:218.898000px;}
.y12a{bottom:219.301500px;}
.y86{bottom:221.184000px;}
.yee{bottom:222.825000px;}
.yd1{bottom:223.200000px;}
.y5e{bottom:224.442000px;}
.yac{bottom:224.592000px;}
.y18d{bottom:225.162000px;}
.y2a{bottom:226.363500px;}
.y9e{bottom:230.196000px;}
.y159{bottom:230.794500px;}
.yfd{bottom:234.945000px;}
.y129{bottom:239.565000px;}
.y85{bottom:241.449000px;}
.yed{bottom:243.090000px;}
.yd0{bottom:243.463500px;}
.y18c{bottom:244.528500px;}
.y5d{bottom:244.707000px;}
.yab{bottom:244.855500px;}
.y158{bottom:250.162500px;}
.y9d{bottom:250.459500px;}
.ybe{bottom:253.717500px;}
.yfc{bottom:255.208500px;}
.y29{bottom:255.594000px;}
.y128{bottom:259.830000px;}
.y84{bottom:261.712500px;}
.yaa{bottom:263.251500px;}
.yec{bottom:263.353500px;}
.ycf{bottom:263.728500px;}
.y18b{bottom:263.896500px;}
.y5c{bottom:264.970500px;}
.y157{bottom:269.530500px;}
.y9c{bottom:270.724500px;}
.ybd{bottom:273.982500px;}
.yfb{bottom:275.473500px;}
.y127{bottom:280.093500px;}
.y83{bottom:281.977500px;}
.y18a{bottom:283.264500px;}
.yeb{bottom:283.617000px;}
.yce{bottom:283.992000px;}
.y5b{bottom:285.234000px;}
.y156{bottom:288.897000px;}
.y10a{bottom:290.988000px;}
.ybc{bottom:294.246000px;}
.yfa{bottom:295.737000px;}
.ya9{bottom:296.592000px;}
.y9b{bottom:299.955000px;}
.y126{bottom:300.358500px;}
.y82{bottom:302.241000px;}
.y189{bottom:302.631000px;}
.yea{bottom:303.882000px;}
.ycd{bottom:304.255500px;}
.y5a{bottom:305.499000px;}
.y155{bottom:308.265000px;}
.y109{bottom:311.253000px;}
.ybb{bottom:314.509500px;}
.yf9{bottom:316.002000px;}
.ya8{bottom:316.857000px;}
.y125{bottom:320.622000px;}
.y188{bottom:321.999000px;}
.y81{bottom:322.504500px;}
.ye9{bottom:324.145500px;}
.ycc{bottom:324.520500px;}
.y59{bottom:325.762500px;}
.y154{bottom:327.631500px;}
.y108{bottom:331.516500px;}
.y28{bottom:332.002500px;}
.y9a{bottom:334.774500px;}
.yf8{bottom:336.265500px;}
.ya7{bottom:337.120500px;}
.y124{bottom:340.885500px;}
.y187{bottom:341.367000px;}
.y80{bottom:342.769500px;}
.ye8{bottom:344.410500px;}
.ycb{bottom:344.784000px;}
.y58{bottom:346.027500px;}
.y153{bottom:346.999500px;}
.y107{bottom:351.780000px;}
.y99{bottom:355.038000px;}
.yf7{bottom:356.529000px;}
.y186{bottom:360.733500px;}
.y123{bottom:361.150500px;}
.y7f{bottom:363.033000px;}
.ye7{bottom:364.674000px;}
.yca{bottom:365.049000px;}
.y57{bottom:366.291000px;}
.y152{bottom:366.367500px;}
.y27{bottom:370.200000px;}
.y106{bottom:372.045000px;}
.y98{bottom:375.303000px;}
.ya6{bottom:375.856500px;}
.yf6{bottom:376.794000px;}
.y185{bottom:380.101500px;}
.y122{bottom:381.414000px;}
.y7e{bottom:383.298000px;}
.ye6{bottom:384.937500px;}
.yc9{bottom:385.312500px;}
.y151{bottom:385.734000px;}
.y56{bottom:386.554500px;}
.y26{bottom:390.463500px;}
.y105{bottom:392.308500px;}
.ya5{bottom:395.089500px;}
.y97{bottom:395.566500px;}
.yf5{bottom:397.057500px;}
.y184{bottom:399.468000px;}
.y121{bottom:401.679000px;}
.y7d{bottom:403.561500px;}
.y150{bottom:405.102000px;}
.ye5{bottom:405.202500px;}
.yc8{bottom:405.576000px;}
.y55{bottom:406.819500px;}
.y25{bottom:410.727000px;}
.y104{bottom:412.573500px;}
.y96{bottom:414.028500px;}
.yf4{bottom:417.322500px;}
.y183{bottom:418.836000px;}
.y120{bottom:421.942500px;}
.y7c{bottom:423.825000px;}
.y14f{bottom:424.468500px;}
.yba{bottom:424.797000px;}
.ye4{bottom:425.466000px;}
.yc7{bottom:425.841000px;}
.y54{bottom:427.083000px;}
.y24{bottom:430.992000px;}
.y103{bottom:432.837000px;}
.y95{bottom:434.292000px;}
.yf3{bottom:437.586000px;}
.y182{bottom:438.204000px;}
.y11f{bottom:442.206000px;}
.y14e{bottom:443.836500px;}
.y7b{bottom:444.090000px;}
.ye3{bottom:445.731000px;}
.yc6{bottom:446.104500px;}
.y53{bottom:447.348000px;}
.y23{bottom:451.255500px;}
.y102{bottom:453.100500px;}
.y94{bottom:454.555500px;}
.y181{bottom:457.570500px;}
.yb9{bottom:459.616500px;}
.y11e{bottom:462.471000px;}
.y14d{bottom:463.204500px;}
.y7a{bottom:464.353500px;}
.ye2{bottom:465.994500px;}
.yc5{bottom:466.369500px;}
.y52{bottom:467.611500px;}
.y22{bottom:471.520500px;}
.y101{bottom:473.365500px;}
.y93{bottom:474.820500px;}
.y180{bottom:476.938500px;}
.yf2{bottom:477.069000px;}
.y14c{bottom:482.571000px;}
.y11d{bottom:482.734500px;}
.y79{bottom:484.618500px;}
.ye1{bottom:486.258000px;}
.yc4{bottom:486.633000px;}
.y51{bottom:487.875000px;}
.y21{bottom:491.784000px;}
.yb8{bottom:492.973500px;}
.y92{bottom:493.281000px;}
.y17f{bottom:496.305000px;}
.y14b{bottom:501.939000px;}
.y100{bottom:502.596000px;}
.y11c{bottom:502.999500px;}
.y78{bottom:504.882000px;}
.ye0{bottom:506.523000px;}
.yc3{bottom:506.896500px;}
.y50{bottom:508.140000px;}
.y20{bottom:512.047500px;}
.y91{bottom:513.546000px;}
.y17e{bottom:515.673000px;}
.y14a{bottom:521.305500px;}
.y11b{bottom:523.263000px;}
.y77{bottom:525.145500px;}
.ydf{bottom:526.786500px;}
.yc2{bottom:527.161500px;}
.y4f{bottom:528.403500px;}
.y90{bottom:532.006500px;}
.y1f{bottom:532.312500px;}
.y17d{bottom:535.041000px;}
.yff{bottom:538.408500px;}
.y149{bottom:540.673500px;}
.y11a{bottom:543.526500px;}
.y76{bottom:545.410500px;}
.yde{bottom:547.051500px;}
.yc1{bottom:547.425000px;}
.y4e{bottom:548.667000px;}
.y8f{bottom:552.271500px;}
.y1e{bottom:552.576000px;}
.y17c{bottom:554.407500px;}
.yfe{bottom:557.641500px;}
.y148{bottom:560.041500px;}
.y119{bottom:563.791500px;}
.y75{bottom:565.674000px;}
.ydd{bottom:567.315000px;}
.y4d{bottom:568.932000px;}
.y8e{bottom:572.535000px;}
.y1d{bottom:572.841000px;}
.y17b{bottom:573.775500px;}
.y147{bottom:579.408000px;}
.y118{bottom:584.055000px;}
.y74{bottom:585.939000px;}
.yc0{bottom:586.909500px;}
.ydc{bottom:587.578500px;}
.y4c{bottom:589.195500px;}
.y8d{bottom:592.800000px;}
.y1c{bottom:593.104500px;}
.y17a{bottom:593.142000px;}
.y146{bottom:598.776000px;}
.y117{bottom:604.320000px;}
.y73{bottom:606.202500px;}
.ydb{bottom:607.843500px;}
.y4b{bottom:609.460500px;}
.y179{bottom:612.510000px;}
.y8c{bottom:613.063500px;}
.y1b{bottom:613.368000px;}
.y116{bottom:624.583500px;}
.y72{bottom:626.466000px;}
.y145{bottom:627.109500px;}
.yda{bottom:628.107000px;}
.y4a{bottom:629.724000px;}
.y178{bottom:631.878000px;}
.y1a{bottom:633.633000px;}
.y115{bottom:644.847000px;}
.y71{bottom:646.731000px;}
.yd9{bottom:648.372000px;}
.y49{bottom:649.987500px;}
.y177{bottom:651.244500px;}
.y19{bottom:653.896500px;}
.y114{bottom:665.112000px;}
.y70{bottom:666.994500px;}
.y144{bottom:667.173000px;}
.yd8{bottom:668.635500px;}
.y48{bottom:670.252500px;}
.y176{bottom:670.612500px;}
.y18{bottom:674.161500px;}
.y143{bottom:685.749000px;}
.y6f{bottom:687.258000px;}
.y175{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y17{bottom:694.425000px;}
.yd7{bottom:697.866000px;}
.y113{bottom:700.320000px;}
.y142{bottom:704.323500px;}
.y6e{bottom:707.523000px;}
.y174{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y16{bottom:714.688500px;}
.y112{bottom:719.089500px;}
.y141{bottom:722.899500px;}
.y6d{bottom:727.786500px;}
.y173{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.yd6{bottom:738.456000px;}
.y111{bottom:739.353000px;}
.y140{bottom:741.474000px;}
.y6c{bottom:748.051500px;}
.y172{bottom:748.081500px;}
.y15{bottom:750.121500px;}
.y44{bottom:751.308000px;}
.yd5{bottom:757.687500px;}
.y110{bottom:759.618000px;}
.y13f{bottom:760.050000px;}
.y171{bottom:767.449500px;}
.y6b{bottom:768.315000px;}
.y43{bottom:771.573000px;}
.y14{bottom:777.244500px;}
.y13e{bottom:778.626000px;}
.y10f{bottom:779.881500px;}
.y170{bottom:786.816000px;}
.y6a{bottom:788.578500px;}
.y42{bottom:791.836500px;}
.y13{bottom:795.402000px;}
.y13d{bottom:797.200500px;}
.y10e{bottom:798.651000px;}
.y16f{bottom:806.184000px;}
.y69{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.y12{bottom:813.558000px;}
.y13c{bottom:815.776500px;}
.y10d{bottom:818.916000px;}
.y16e{bottom:825.552000px;}
.y68{bottom:829.107000px;}
.y11{bottom:831.715500px;}
.y40{bottom:832.365000px;}
.y13b{bottom:834.351000px;}
.y10c{bottom:837.685500px;}
.y16d{bottom:844.918500px;}
.y67{bottom:849.372000px;}
.y10{bottom:849.873000px;}
.y3f{bottom:852.628500px;}
.y13a{bottom:852.927000px;}
.y10b{bottom:857.949000px;}
.y16c{bottom:864.286500px;}
.y66{bottom:869.635500px;}
.y139{bottom:871.503000px;}
.y3e{bottom:872.893500px;}
.yf{bottom:872.911500px;}
.y16b{bottom:883.653000px;}
.ye{bottom:886.186500px;}
.y65{bottom:889.899000px;}
.y138{bottom:890.077500px;}
.y3d{bottom:893.157000px;}
.y16a{bottom:903.021000px;}
.y137{bottom:908.653500px;}
.yd{bottom:909.226500px;}
.y64{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.y169{bottom:922.389000px;}
.yc{bottom:922.500000px;}
.yb7{bottom:930.237000px;}
.y3b{bottom:933.685500px;}
.y136{bottom:938.349000px;}
.y63{bottom:939.394500px;}
.yb{bottom:940.657500px;}
.y168{bottom:941.755500px;}
.ya{bottom:945.540000px;}
.y194{bottom:947.539500px;}
.yb6{bottom:950.500500px;}
.y3a{bottom:953.949000px;}
.y167{bottom:961.123500px;}
.y135{bottom:962.512500px;}
.y193{bottom:966.907500px;}
.y9{bottom:967.780500px;}
.yb5{bottom:970.764000px;}
.y39{bottom:974.214000px;}
.y166{bottom:980.490000px;}
.y192{bottom:986.275500px;}
.y191{bottom:986.680500px;}
.y8{bottom:988.045500px;}
.yb4{bottom:991.029000px;}
.y38{bottom:994.477500px;}
.y165{bottom:999.858000px;}
.y134{bottom:1000.710000px;}
.yb3{bottom:1011.292500px;}
.y37{bottom:1014.742500px;}
.y164{bottom:1019.226000px;}
.y133{bottom:1024.873500px;}
.y36{bottom:1035.006000px;}
.y163{bottom:1038.592500px;}
.y7{bottom:1039.146000px;}
.y132{bottom:1040.071500px;}
.yb2{bottom:1040.523000px;}
.y35{bottom:1055.269500px;}
.y162{bottom:1057.960500px;}
.y131{bottom:1070.467500px;}
.y6{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y161{bottom:1077.327000px;}
.yb1{bottom:1077.850500px;}
.y130{bottom:1085.667000px;}
.y33{bottom:1095.798000px;}
.y160{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y12f{bottom:1100.865000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.hf{height:26.540366px;}
.ha{height:30.461558px;}
.he{height:35.052500px;}
.h10{height:38.734848px;}
.hb{height:39.165235px;}
.h3{height:39.402747px;}
.h11{height:39.434227px;}
.h4{height:41.001535px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h5{height:43.815515px;}
.h2{height:50.931027px;}
.h8{height:54.405312px;}
.h9{height:54.411312px;}
.h6{height:77.469696px;}
.h7{height:97.936416px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:59.014071px;}
.x49{left:112.561500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x5{left:145.995000px;}
.x4c{left:147.075000px;}
.x44{left:148.605000px;}
.x4f{left:150.438000px;}
.x3c{left:152.884500px;}
.x3d{left:167.829000px;}
.x9{left:173.392500px;}
.x14{left:179.560500px;}
.x3b{left:183.285000px;}
.x15{left:187.033500px;}
.x7{left:189.087000px;}
.x16{left:190.695000px;}
.x39{left:192.439500px;}
.xb{left:194.818500px;}
.x1d{left:198.510000px;}
.x8{left:200.353500px;}
.xa{left:202.026000px;}
.x36{left:203.968500px;}
.x17{left:205.638000px;}
.x3a{left:207.382500px;}
.x1e{left:213.454500px;}
.x4a{left:241.075500px;}
.x51{left:254.101500px;}
.x4b{left:258.547500px;}
.x18{left:311.149500px;}
.x35{left:312.156000px;}
.xc{left:317.994000px;}
.xd{left:325.465500px;}
.x1b{left:327.550500px;}
.x1c{left:342.493500px;}
.x12{left:360.508500px;}
.x13{left:367.980000px;}
.x1f{left:383.289000px;}
.x23{left:387.750000px;}
.x20{left:390.760500px;}
.x24{left:402.694500px;}
.x25{left:406.363500px;}
.xe{left:418.060500px;}
.x26{left:421.306500px;}
.xf{left:425.532000px;}
.x27{left:489.615000px;}
.x2f{left:492.064500px;}
.x28{left:504.559500px;}
.x30{left:507.007500px;}
.x31{left:521.074500px;}
.x2d{left:527.701500px;}
.x32{left:536.017500px;}
.x2e{left:542.646000px;}
.x40{left:550.815000px;}
.x41{left:565.759500px;}
.x47{left:603.649500px;}
.x48{left:611.121000px;}
.x3e{left:624.154500px;}
.x3f{left:639.099000px;}
.x19{left:644.214000px;}
.x2b{left:649.615500px;}
.x1a{left:659.158500px;}
.x2c{left:664.558500px;}
.x50{left:683.745000px;}
.x33{left:694.747500px;}
.x37{left:707.493000px;}
.x34{left:709.692000px;}
.x10{left:712.704000px;}
.x11{left:720.175500px;}
.x38{left:722.437500px;}
.x45{left:727.585500px;}
.x42{left:738.141000px;}
.x46{left:742.528500px;}
.x4d{left:749.517000px;}
.x29{left:753.258000px;}
.x43{left:756.895500px;}
.x2a{left:760.731000px;}
.x21{left:764.515500px;}
.x22{left:771.987000px;}
.x4e{left:776.415000px;}
@media print{
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:34.720000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000260pt;}
.lsc{letter-spacing:0.004267pt;}
.ls2{letter-spacing:10.631867pt;}
.lsf{letter-spacing:11.943115pt;}
.ls9{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.959467pt;}
.lsd{letter-spacing:12.134140pt;}
.ls7{letter-spacing:13.283467pt;}
.ls4{letter-spacing:13.389734pt;}
.ls6{letter-spacing:15.727625pt;}
.ls8{letter-spacing:16.949703pt;}
.lsb{letter-spacing:23.911467pt;}
.ls0{letter-spacing:62.432533pt;}
.ls1{letter-spacing:64.314231pt;}
.ls5{letter-spacing:85.017067pt;}
.ws4{word-spacing:-13.283467pt;}
.ws7{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws7d{word-spacing:-2.709827pt;}
.ws60{word-spacing:-2.630144pt;}
.ws54{word-spacing:-2.603559pt;}
.wsba{word-spacing:-2.486682pt;}
.ws6b{word-spacing:-2.444158pt;}
.ws23{word-spacing:-2.125355pt;}
.ws72{word-spacing:-2.072221pt;}
.ws57{word-spacing:-1.965953pt;}
.ws43{word-spacing:-1.912819pt;}
.ws63{word-spacing:-1.806551pt;}
.ws4f{word-spacing:-1.647150pt;}
.ws62{word-spacing:-1.540882pt;}
.ws56{word-spacing:-1.487748pt;}
.ws53{word-spacing:-1.381481pt;}
.ws25{word-spacing:-1.328347pt;}
.ws7b{word-spacing:-1.195520pt;}
.wsb9{word-spacing:-1.147699pt;}
.ws86{word-spacing:-1.115811pt;}
.wsb4{word-spacing:-1.099878pt;}
.ws7c{word-spacing:-1.004237pt;}
.ws10{word-spacing:-0.956410pt;}
.wsb8{word-spacing:-0.908595pt;}
.ws17{word-spacing:-0.797008pt;}
.ws85{word-spacing:-0.690740pt;}
.ws35{word-spacing:-0.637606pt;}
.ws8e{word-spacing:-0.430387pt;}
.ws52{word-spacing:-0.371937pt;}
.wsbb{word-spacing:-0.334746pt;}
.ws26{word-spacing:-0.318803pt;}
.wsc{word-spacing:-0.265669pt;}
.wsb7{word-spacing:-0.239104pt;}
.wsb{word-spacing:-0.212535pt;}
.wsaa{word-spacing:-0.191283pt;}
.ws4e{word-spacing:-0.159402pt;}
.ws6{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.106268pt;}
.ws94{word-spacing:-0.095642pt;}
.ws2e{word-spacing:-0.053134pt;}
.ws9d{word-spacing:-0.047821pt;}
.wsa1{word-spacing:-0.008704pt;}
.wsa2{word-spacing:-0.006886pt;}
.wsa6{word-spacing:-0.005530pt;}
.wsbf{word-spacing:-0.004267pt;}
.ws1{word-spacing:-0.001555pt;}
.ws99{word-spacing:-0.000870pt;}
.ws0{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.047821pt;}
.ws19{word-spacing:0.053134pt;}
.ws5f{word-spacing:0.095642pt;}
.ws13{word-spacing:0.106268pt;}
.wsb5{word-spacing:0.143462pt;}
.ws1a{word-spacing:0.159402pt;}
.wsb0{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.212535pt;}
.wsac{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws12{word-spacing:0.318803pt;}
.ws98{word-spacing:0.334746pt;}
.ws45{word-spacing:0.371937pt;}
.wsab{word-spacing:0.382566pt;}
.ws59{word-spacing:0.425071pt;}
.ws97{word-spacing:0.430387pt;}
.ws40{word-spacing:0.478205pt;}
.ws3f{word-spacing:0.531339pt;}
.ws69{word-spacing:0.584473pt;}
.ws96{word-spacing:0.621670pt;}
.ws4a{word-spacing:0.637606pt;}
.ws32{word-spacing:0.690740pt;}
.ws1c{word-spacing:0.797008pt;}
.ws44{word-spacing:0.850142pt;}
.wsb2{word-spacing:0.908595pt;}
.ws9{word-spacing:1.009543pt;}
.ws5a{word-spacing:1.115811pt;}
.ws41{word-spacing:1.168945pt;}
.ws9f{word-spacing:1.195520pt;}
.ws75{word-spacing:1.222079pt;}
.wsb6{word-spacing:1.243341pt;}
.ws9a{word-spacing:1.291162pt;}
.ws14{word-spacing:1.328347pt;}
.ws34{word-spacing:1.434614pt;}
.ws6c{word-spacing:1.487748pt;}
.ws11{word-spacing:1.700284pt;}
.ws4d{word-spacing:1.806551pt;}
.ws30{word-spacing:1.859685pt;}
.ws6f{word-spacing:1.912819pt;}
.ws71{word-spacing:1.960653pt;}
.ws49{word-spacing:1.965953pt;}
.ws46{word-spacing:2.019087pt;}
.ws42{word-spacing:2.072221pt;}
.ws68{word-spacing:2.125355pt;}
.ws70{word-spacing:2.247578pt;}
.ws37{word-spacing:2.284756pt;}
.ws51{word-spacing:2.337890pt;}
.wsd{word-spacing:2.391024pt;}
.ws67{word-spacing:2.444158pt;}
.ws58{word-spacing:2.497292pt;}
.ws74{word-spacing:2.550426pt;}
.ws1d{word-spacing:2.550432pt;}
.ws55{word-spacing:2.603559pt;}
.ws1b{word-spacing:2.762961pt;}
.ws50{word-spacing:2.816095pt;}
.ws90{word-spacing:2.821427pt;}
.ws22{word-spacing:2.869229pt;}
.ws8{word-spacing:2.869248pt;}
.wsa0{word-spacing:2.870528pt;}
.ws89{word-spacing:2.922363pt;}
.wsa4{word-spacing:2.964890pt;}
.wse{word-spacing:2.975497pt;}
.ws2b{word-spacing:3.028630pt;}
.ws6a{word-spacing:3.081764pt;}
.ws8f{word-spacing:3.108352pt;}
.ws5d{word-spacing:3.134898pt;}
.wsae{word-spacing:3.156173pt;}
.ws18{word-spacing:3.188032pt;}
.ws73{word-spacing:3.241166pt;}
.ws28{word-spacing:3.294300pt;}
.wsad{word-spacing:3.299635pt;}
.ws15{word-spacing:3.347434pt;}
.wsa8{word-spacing:3.395277pt;}
.ws36{word-spacing:3.453701pt;}
.ws2a{word-spacing:3.559969pt;}
.ws3b{word-spacing:3.613103pt;}
.wsa{word-spacing:3.666237pt;}
.ws88{word-spacing:3.719371pt;}
.wsf{word-spacing:3.772505pt;}
.ws9e{word-spacing:3.873485pt;}
.ws81{word-spacing:3.878772pt;}
.ws24{word-spacing:3.931906pt;}
.ws8b{word-spacing:3.985040pt;}
.ws66{word-spacing:4.091308pt;}
.ws38{word-spacing:4.144442pt;}
.ws2f{word-spacing:4.250709pt;}
.wsa3{word-spacing:4.256051pt;}
.ws29{word-spacing:4.303843pt;}
.wsbe{word-spacing:4.399514pt;}
.ws82{word-spacing:4.463245pt;}
.ws65{word-spacing:4.516379pt;}
.ws4b{word-spacing:4.675780pt;}
.ws7a{word-spacing:4.728914pt;}
.ws47{word-spacing:4.782048pt;}
.ws61{word-spacing:4.941450pt;}
.ws3e{word-spacing:4.994583pt;}
.ws92{word-spacing:5.021184pt;}
.ws93{word-spacing:5.069005pt;}
.ws20{word-spacing:5.207119pt;}
.ws2c{word-spacing:5.525922pt;}
.ws80{word-spacing:5.738458pt;}
.ws8d{word-spacing:5.786317pt;}
.ws48{word-spacing:5.791591pt;}
.wsc1{word-spacing:5.881958pt;}
.ws76{word-spacing:6.004127pt;}
.ws5c{word-spacing:6.110395pt;}
.ws5b{word-spacing:6.163529pt;}
.ws4c{word-spacing:6.322930pt;}
.ws78{word-spacing:6.376064pt;}
.ws33{word-spacing:6.429198pt;}
.ws84{word-spacing:6.482332pt;}
.wsbd{word-spacing:6.647091pt;}
.ws79{word-spacing:6.694867pt;}
.ws7e{word-spacing:6.854269pt;}
.ws3a{word-spacing:7.013670pt;}
.ws8c{word-spacing:7.173072pt;}
.ws3d{word-spacing:7.279340pt;}
.ws83{word-spacing:7.385607pt;}
.ws91{word-spacing:7.507866pt;}
.ws31{word-spacing:7.545009pt;}
.ws77{word-spacing:7.757545pt;}
.wsaf{word-spacing:7.794790pt;}
.ws7f{word-spacing:8.395151pt;}
.ws39{word-spacing:8.660820pt;}
.wsa7{word-spacing:8.703386pt;}
.ws3c{word-spacing:8.873356pt;}
.ws2d{word-spacing:8.926490pt;}
.ws87{word-spacing:9.085891pt;}
.ws9c{word-spacing:9.133773pt;}
.wsc0{word-spacing:9.516339pt;}
.wsb3{word-spacing:9.755443pt;}
.wsa5{word-spacing:9.946726pt;}
.wsc2{word-spacing:9.994547pt;}
.ws21{word-spacing:10.095435pt;}
.ws9b{word-spacing:11.476992pt;}
.ws64{word-spacing:12.114522pt;}
.ws8a{word-spacing:12.327057pt;}
.wsa9{word-spacing:12.768154pt;}
.wsbc{word-spacing:13.485466pt;}
.ws6d{word-spacing:13.814805pt;}
.ws6e{word-spacing:14.930617pt;}
.wsb1{word-spacing:16.498176pt;}
.ws5{word-spacing:45.962502pt;}
.ws3{word-spacing:45.998618pt;}
.ws95{word-spacing:308.109414pt;}
._21{margin-left:-18.554470pt;}
._c{margin-left:-6.357429pt;}
._12{margin-left:-5.366521pt;}
._4{margin-left:-4.351693pt;}
._e{margin-left:-2.590881pt;}
._1{margin-left:-0.944910pt;}
._20{width:1.769370pt;}
._3{width:3.668222pt;}
._0{width:9.035708pt;}
._f{width:10.254819pt;}
._5{width:11.178561pt;}
._1a{width:12.716451pt;}
._2e{width:13.878623pt;}
._7{width:14.824448pt;}
._b{width:16.365231pt;}
._a{width:18.107149pt;}
._15{width:19.287594pt;}
._d{width:20.699209pt;}
._1b{width:21.606849pt;}
._16{width:22.581893pt;}
._18{width:23.803972pt;}
._2{width:24.815087pt;}
._9{width:25.864693pt;}
._17{width:26.821103pt;}
._8{width:27.990048pt;}
._1f{width:28.923459pt;}
._13{width:30.846599pt;}
._2d{width:32.661606pt;}
._2f{width:34.441017pt;}
._19{width:35.876190pt;}
._1c{width:37.129073pt;}
._1e{width:42.560227pt;}
._14{width:43.782306pt;}
._6{width:56.763290pt;}
._22{width:63.745126pt;}
._29{width:220.692992pt;}
._24{width:224.662118pt;}
._27{width:272.387277pt;}
._2c{width:299.836416pt;}
._25{width:301.844890pt;}
._23{width:312.174182pt;}
._2a{width:326.042214pt;}
._28{width:329.007104pt;}
._2b{width:337.471386pt;}
._26{width:344.692326pt;}
._10{width:400.867613pt;}
._1d{width:1394.283874pt;}
._11{width:1415.537207pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:40.381867pt;}
.fs8{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fs4{font-size:72.686933pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.644850pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y30{bottom:56.693333pt;}
.ya4{bottom:96.544000pt;}
.y15f{bottom:101.858667pt;}
.y8b{bottom:106.545333pt;}
.y2f{bottom:111.149333pt;}
.ya3{bottom:114.556000pt;}
.y15e{bottom:119.073333pt;}
.y12e{bottom:120.453333pt;}
.yf1{bottom:123.121333pt;}
.y8a{bottom:124.558667pt;}
.y62{bottom:127.454667pt;}
.y2e{bottom:129.162667pt;}
.yb0{bottom:130.908000pt;}
.ya2{bottom:132.568000pt;}
.y12d{bottom:133.962667pt;}
.y15d{bottom:136.289333pt;}
.yf0{bottom:141.133333pt;}
.y89{bottom:142.570667pt;}
.yd4{bottom:144.362667pt;}
.y61{bottom:145.466667pt;}
.y2d{bottom:147.174667pt;}
.y12c{bottom:147.472000pt;}
.y190{bottom:148.497333pt;}
.yaf{bottom:148.920000pt;}
.ya1{bottom:150.581333pt;}
.y15c{bottom:153.505333pt;}
.y88{bottom:160.584000pt;}
.yd3{bottom:162.374667pt;}
.y60{bottom:163.478667pt;}
.y2c{bottom:165.186667pt;}
.yae{bottom:165.273333pt;}
.y18f{bottom:165.713333pt;}
.yef{bottom:167.116000pt;}
.ya0{bottom:168.593333pt;}
.y15b{bottom:170.720000pt;}
.y12b{bottom:176.922667pt;}
.y87{bottom:178.596000pt;}
.yd2{bottom:180.386667pt;}
.y5f{bottom:181.492000pt;}
.y18e{bottom:182.928000pt;}
.y2b{bottom:183.200000pt;}
.yad{bottom:183.285333pt;}
.y9f{bottom:186.606667pt;}
.y15a{bottom:187.936000pt;}
.ybf{bottom:194.576000pt;}
.y12a{bottom:194.934667pt;}
.y86{bottom:196.608000pt;}
.yee{bottom:198.066667pt;}
.yd1{bottom:198.400000pt;}
.y5e{bottom:199.504000pt;}
.yac{bottom:199.637333pt;}
.y18d{bottom:200.144000pt;}
.y2a{bottom:201.212000pt;}
.y9e{bottom:204.618667pt;}
.y159{bottom:205.150667pt;}
.yfd{bottom:208.840000pt;}
.y129{bottom:212.946667pt;}
.y85{bottom:214.621333pt;}
.yed{bottom:216.080000pt;}
.yd0{bottom:216.412000pt;}
.y18c{bottom:217.358667pt;}
.y5d{bottom:217.517333pt;}
.yab{bottom:217.649333pt;}
.y158{bottom:222.366667pt;}
.y9d{bottom:222.630667pt;}
.ybe{bottom:225.526667pt;}
.yfc{bottom:226.852000pt;}
.y29{bottom:227.194667pt;}
.y128{bottom:230.960000pt;}
.y84{bottom:232.633333pt;}
.yaa{bottom:234.001333pt;}
.yec{bottom:234.092000pt;}
.ycf{bottom:234.425333pt;}
.y18b{bottom:234.574667pt;}
.y5c{bottom:235.529333pt;}
.y157{bottom:239.582667pt;}
.y9c{bottom:240.644000pt;}
.ybd{bottom:243.540000pt;}
.yfb{bottom:244.865333pt;}
.y127{bottom:248.972000pt;}
.y83{bottom:250.646667pt;}
.y18a{bottom:251.790667pt;}
.yeb{bottom:252.104000pt;}
.yce{bottom:252.437333pt;}
.y5b{bottom:253.541333pt;}
.y156{bottom:256.797333pt;}
.y10a{bottom:258.656000pt;}
.ybc{bottom:261.552000pt;}
.yfa{bottom:262.877333pt;}
.ya9{bottom:263.637333pt;}
.y9b{bottom:266.626667pt;}
.y126{bottom:266.985333pt;}
.y82{bottom:268.658667pt;}
.y189{bottom:269.005333pt;}
.yea{bottom:270.117333pt;}
.ycd{bottom:270.449333pt;}
.y5a{bottom:271.554667pt;}
.y155{bottom:274.013333pt;}
.y109{bottom:276.669333pt;}
.ybb{bottom:279.564000pt;}
.yf9{bottom:280.890667pt;}
.ya8{bottom:281.650667pt;}
.y125{bottom:284.997333pt;}
.y188{bottom:286.221333pt;}
.y81{bottom:286.670667pt;}
.ye9{bottom:288.129333pt;}
.ycc{bottom:288.462667pt;}
.y59{bottom:289.566667pt;}
.y154{bottom:291.228000pt;}
.y108{bottom:294.681333pt;}
.y28{bottom:295.113333pt;}
.y9a{bottom:297.577333pt;}
.yf8{bottom:298.902667pt;}
.ya7{bottom:299.662667pt;}
.y124{bottom:303.009333pt;}
.y187{bottom:303.437333pt;}
.y80{bottom:304.684000pt;}
.ye8{bottom:306.142667pt;}
.ycb{bottom:306.474667pt;}
.y58{bottom:307.580000pt;}
.y153{bottom:308.444000pt;}
.y107{bottom:312.693333pt;}
.y99{bottom:315.589333pt;}
.yf7{bottom:316.914667pt;}
.y186{bottom:320.652000pt;}
.y123{bottom:321.022667pt;}
.y7f{bottom:322.696000pt;}
.ye7{bottom:324.154667pt;}
.yca{bottom:324.488000pt;}
.y57{bottom:325.592000pt;}
.y152{bottom:325.660000pt;}
.y27{bottom:329.066667pt;}
.y106{bottom:330.706667pt;}
.y98{bottom:333.602667pt;}
.ya6{bottom:334.094667pt;}
.yf6{bottom:334.928000pt;}
.y185{bottom:337.868000pt;}
.y122{bottom:339.034667pt;}
.y7e{bottom:340.709333pt;}
.ye6{bottom:342.166667pt;}
.yc9{bottom:342.500000pt;}
.y151{bottom:342.874667pt;}
.y56{bottom:343.604000pt;}
.y26{bottom:347.078667pt;}
.y105{bottom:348.718667pt;}
.ya5{bottom:351.190667pt;}
.y97{bottom:351.614667pt;}
.yf5{bottom:352.940000pt;}
.y184{bottom:355.082667pt;}
.y121{bottom:357.048000pt;}
.y7d{bottom:358.721333pt;}
.y150{bottom:360.090667pt;}
.ye5{bottom:360.180000pt;}
.yc8{bottom:360.512000pt;}
.y55{bottom:361.617333pt;}
.y25{bottom:365.090667pt;}
.y104{bottom:366.732000pt;}
.y96{bottom:368.025333pt;}
.yf4{bottom:370.953333pt;}
.y183{bottom:372.298667pt;}
.y120{bottom:375.060000pt;}
.y7c{bottom:376.733333pt;}
.y14f{bottom:377.305333pt;}
.yba{bottom:377.597333pt;}
.ye4{bottom:378.192000pt;}
.yc7{bottom:378.525333pt;}
.y54{bottom:379.629333pt;}
.y24{bottom:383.104000pt;}
.y103{bottom:384.744000pt;}
.y95{bottom:386.037333pt;}
.yf3{bottom:388.965333pt;}
.y182{bottom:389.514667pt;}
.y11f{bottom:393.072000pt;}
.y14e{bottom:394.521333pt;}
.y7b{bottom:394.746667pt;}
.ye3{bottom:396.205333pt;}
.yc6{bottom:396.537333pt;}
.y53{bottom:397.642667pt;}
.y23{bottom:401.116000pt;}
.y102{bottom:402.756000pt;}
.y94{bottom:404.049333pt;}
.y181{bottom:406.729333pt;}
.yb9{bottom:408.548000pt;}
.y11e{bottom:411.085333pt;}
.y14d{bottom:411.737333pt;}
.y7a{bottom:412.758667pt;}
.ye2{bottom:414.217333pt;}
.yc5{bottom:414.550667pt;}
.y52{bottom:415.654667pt;}
.y22{bottom:419.129333pt;}
.y101{bottom:420.769333pt;}
.y93{bottom:422.062667pt;}
.y180{bottom:423.945333pt;}
.yf2{bottom:424.061333pt;}
.y14c{bottom:428.952000pt;}
.y11d{bottom:429.097333pt;}
.y79{bottom:430.772000pt;}
.ye1{bottom:432.229333pt;}
.yc4{bottom:432.562667pt;}
.y51{bottom:433.666667pt;}
.y21{bottom:437.141333pt;}
.yb8{bottom:438.198667pt;}
.y92{bottom:438.472000pt;}
.y17f{bottom:441.160000pt;}
.y14b{bottom:446.168000pt;}
.y100{bottom:446.752000pt;}
.y11c{bottom:447.110667pt;}
.y78{bottom:448.784000pt;}
.ye0{bottom:450.242667pt;}
.yc3{bottom:450.574667pt;}
.y50{bottom:451.680000pt;}
.y20{bottom:455.153333pt;}
.y91{bottom:456.485333pt;}
.y17e{bottom:458.376000pt;}
.y14a{bottom:463.382667pt;}
.y11b{bottom:465.122667pt;}
.y77{bottom:466.796000pt;}
.ydf{bottom:468.254667pt;}
.yc2{bottom:468.588000pt;}
.y4f{bottom:469.692000pt;}
.y90{bottom:472.894667pt;}
.y1f{bottom:473.166667pt;}
.y17d{bottom:475.592000pt;}
.yff{bottom:478.585333pt;}
.y149{bottom:480.598667pt;}
.y11a{bottom:483.134667pt;}
.y76{bottom:484.809333pt;}
.yde{bottom:486.268000pt;}
.yc1{bottom:486.600000pt;}
.y4e{bottom:487.704000pt;}
.y8f{bottom:490.908000pt;}
.y1e{bottom:491.178667pt;}
.y17c{bottom:492.806667pt;}
.yfe{bottom:495.681333pt;}
.y148{bottom:497.814667pt;}
.y119{bottom:501.148000pt;}
.y75{bottom:502.821333pt;}
.ydd{bottom:504.280000pt;}
.y4d{bottom:505.717333pt;}
.y8e{bottom:508.920000pt;}
.y1d{bottom:509.192000pt;}
.y17b{bottom:510.022667pt;}
.y147{bottom:515.029333pt;}
.y118{bottom:519.160000pt;}
.y74{bottom:520.834667pt;}
.yc0{bottom:521.697333pt;}
.ydc{bottom:522.292000pt;}
.y4c{bottom:523.729333pt;}
.y8d{bottom:526.933333pt;}
.y1c{bottom:527.204000pt;}
.y17a{bottom:527.237333pt;}
.y146{bottom:532.245333pt;}
.y117{bottom:537.173333pt;}
.y73{bottom:538.846667pt;}
.ydb{bottom:540.305333pt;}
.y4b{bottom:541.742667pt;}
.y179{bottom:544.453333pt;}
.y8c{bottom:544.945333pt;}
.y1b{bottom:545.216000pt;}
.y116{bottom:555.185333pt;}
.y72{bottom:556.858667pt;}
.y145{bottom:557.430667pt;}
.yda{bottom:558.317333pt;}
.y4a{bottom:559.754667pt;}
.y178{bottom:561.669333pt;}
.y1a{bottom:563.229333pt;}
.y115{bottom:573.197333pt;}
.y71{bottom:574.872000pt;}
.yd9{bottom:576.330667pt;}
.y49{bottom:577.766667pt;}
.y177{bottom:578.884000pt;}
.y19{bottom:581.241333pt;}
.y114{bottom:591.210667pt;}
.y70{bottom:592.884000pt;}
.y144{bottom:593.042667pt;}
.yd8{bottom:594.342667pt;}
.y48{bottom:595.780000pt;}
.y176{bottom:596.100000pt;}
.y18{bottom:599.254667pt;}
.y143{bottom:609.554667pt;}
.y6f{bottom:610.896000pt;}
.y175{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y17{bottom:617.266667pt;}
.yd7{bottom:620.325333pt;}
.y113{bottom:622.506667pt;}
.y142{bottom:626.065333pt;}
.y6e{bottom:628.909333pt;}
.y174{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y16{bottom:635.278667pt;}
.y112{bottom:639.190667pt;}
.y141{bottom:642.577333pt;}
.y6d{bottom:646.921333pt;}
.y173{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.yd6{bottom:656.405333pt;}
.y111{bottom:657.202667pt;}
.y140{bottom:659.088000pt;}
.y6c{bottom:664.934667pt;}
.y172{bottom:664.961333pt;}
.y15{bottom:666.774667pt;}
.y44{bottom:667.829333pt;}
.yd5{bottom:673.500000pt;}
.y110{bottom:675.216000pt;}
.y13f{bottom:675.600000pt;}
.y171{bottom:682.177333pt;}
.y6b{bottom:682.946667pt;}
.y43{bottom:685.842667pt;}
.y14{bottom:690.884000pt;}
.y13e{bottom:692.112000pt;}
.y10f{bottom:693.228000pt;}
.y170{bottom:699.392000pt;}
.y6a{bottom:700.958667pt;}
.y42{bottom:703.854667pt;}
.y13{bottom:707.024000pt;}
.y13d{bottom:708.622667pt;}
.y10e{bottom:709.912000pt;}
.y16f{bottom:716.608000pt;}
.y69{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.y12{bottom:723.162667pt;}
.y13c{bottom:725.134667pt;}
.y10d{bottom:727.925333pt;}
.y16e{bottom:733.824000pt;}
.y68{bottom:736.984000pt;}
.y11{bottom:739.302667pt;}
.y40{bottom:739.880000pt;}
.y13b{bottom:741.645333pt;}
.y10c{bottom:744.609333pt;}
.y16d{bottom:751.038667pt;}
.y67{bottom:754.997333pt;}
.y10{bottom:755.442667pt;}
.y3f{bottom:757.892000pt;}
.y13a{bottom:758.157333pt;}
.y10b{bottom:762.621333pt;}
.y16c{bottom:768.254667pt;}
.y66{bottom:773.009333pt;}
.y139{bottom:774.669333pt;}
.y3e{bottom:775.905333pt;}
.yf{bottom:775.921333pt;}
.y16b{bottom:785.469333pt;}
.ye{bottom:787.721333pt;}
.y65{bottom:791.021333pt;}
.y138{bottom:791.180000pt;}
.y3d{bottom:793.917333pt;}
.y16a{bottom:802.685333pt;}
.y137{bottom:807.692000pt;}
.yd{bottom:808.201333pt;}
.y64{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.y169{bottom:819.901333pt;}
.yc{bottom:820.000000pt;}
.yb7{bottom:826.877333pt;}
.y3b{bottom:829.942667pt;}
.y136{bottom:834.088000pt;}
.y63{bottom:835.017333pt;}
.yb{bottom:836.140000pt;}
.y168{bottom:837.116000pt;}
.ya{bottom:840.480000pt;}
.y194{bottom:842.257333pt;}
.yb6{bottom:844.889333pt;}
.y3a{bottom:847.954667pt;}
.y167{bottom:854.332000pt;}
.y135{bottom:855.566667pt;}
.y193{bottom:859.473333pt;}
.y9{bottom:860.249333pt;}
.yb5{bottom:862.901333pt;}
.y39{bottom:865.968000pt;}
.y166{bottom:871.546667pt;}
.y192{bottom:876.689333pt;}
.y191{bottom:877.049333pt;}
.y8{bottom:878.262667pt;}
.yb4{bottom:880.914667pt;}
.y38{bottom:883.980000pt;}
.y165{bottom:888.762667pt;}
.y134{bottom:889.520000pt;}
.yb3{bottom:898.926667pt;}
.y37{bottom:901.993333pt;}
.y164{bottom:905.978667pt;}
.y133{bottom:910.998667pt;}
.y36{bottom:920.005333pt;}
.y163{bottom:923.193333pt;}
.y7{bottom:923.685333pt;}
.y132{bottom:924.508000pt;}
.yb2{bottom:924.909333pt;}
.y35{bottom:938.017333pt;}
.y162{bottom:940.409333pt;}
.y131{bottom:951.526667pt;}
.y6{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y161{bottom:957.624000pt;}
.yb1{bottom:958.089333pt;}
.y130{bottom:965.037333pt;}
.y33{bottom:974.042667pt;}
.y160{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y12f{bottom:978.546667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.hf{height:23.591437pt;}
.ha{height:27.076941pt;}
.he{height:31.157778pt;}
.h10{height:34.430976pt;}
.hb{height:34.813542pt;}
.h3{height:35.024664pt;}
.h11{height:35.052646pt;}
.h4{height:36.445809pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h5{height:38.947124pt;}
.h2{height:45.272024pt;}
.h8{height:48.360277pt;}
.h9{height:48.365611pt;}
.h6{height:68.861952pt;}
.h7{height:87.054592pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.456952pt;}
.x49{left:100.054667pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x5{left:129.773333pt;}
.x4c{left:130.733333pt;}
.x44{left:132.093333pt;}
.x4f{left:133.722667pt;}
.x3c{left:135.897333pt;}
.x3d{left:149.181333pt;}
.x9{left:154.126667pt;}
.x14{left:159.609333pt;}
.x3b{left:162.920000pt;}
.x15{left:166.252000pt;}
.x7{left:168.077333pt;}
.x16{left:169.506667pt;}
.x39{left:171.057333pt;}
.xb{left:173.172000pt;}
.x1d{left:176.453333pt;}
.x8{left:178.092000pt;}
.xa{left:179.578667pt;}
.x36{left:181.305333pt;}
.x17{left:182.789333pt;}
.x3a{left:184.340000pt;}
.x1e{left:189.737333pt;}
.x4a{left:214.289333pt;}
.x51{left:225.868000pt;}
.x4b{left:229.820000pt;}
.x18{left:276.577333pt;}
.x35{left:277.472000pt;}
.xc{left:282.661333pt;}
.xd{left:289.302667pt;}
.x1b{left:291.156000pt;}
.x1c{left:304.438667pt;}
.x12{left:320.452000pt;}
.x13{left:327.093333pt;}
.x1f{left:340.701333pt;}
.x23{left:344.666667pt;}
.x20{left:347.342667pt;}
.x24{left:357.950667pt;}
.x25{left:361.212000pt;}
.xe{left:371.609333pt;}
.x26{left:374.494667pt;}
.xf{left:378.250667pt;}
.x27{left:435.213333pt;}
.x2f{left:437.390667pt;}
.x28{left:448.497333pt;}
.x30{left:450.673333pt;}
.x31{left:463.177333pt;}
.x2d{left:469.068000pt;}
.x32{left:476.460000pt;}
.x2e{left:482.352000pt;}
.x40{left:489.613333pt;}
.x41{left:502.897333pt;}
.x47{left:536.577333pt;}
.x48{left:543.218667pt;}
.x3e{left:554.804000pt;}
.x3f{left:568.088000pt;}
.x19{left:572.634667pt;}
.x2b{left:577.436000pt;}
.x1a{left:585.918667pt;}
.x2c{left:590.718667pt;}
.x50{left:607.773333pt;}
.x33{left:617.553333pt;}
.x37{left:628.882667pt;}
.x34{left:630.837333pt;}
.x10{left:633.514667pt;}
.x11{left:640.156000pt;}
.x38{left:642.166667pt;}
.x45{left:646.742667pt;}
.x42{left:656.125333pt;}
.x46{left:660.025333pt;}
.x4d{left:666.237333pt;}
.x29{left:669.562667pt;}
.x43{left:672.796000pt;}
.x2a{left:676.205333pt;}
.x21{left:679.569333pt;}
.x22{left:686.210667pt;}
.x4e{left:690.146667pt;}
}




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