
    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_5afd4f57dc608e2b9cc016cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_33c67af27e27696410a11715.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_cd79d1e021b937527a6a0d4a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_125e16a1f2bd7aa43f841c4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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);}
.m13{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);}
.m14{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);}
.m19{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);}
.m2{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);}
.m22{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);}
.m1c{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);}
.m1d{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);}
.m17{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);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m15{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);}
.m26{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);}
.m1e{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);}
.m5{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);}
.m28{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);}
.m23{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);}
.m20{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);}
.m1f{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);}
.m1a{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);}
.mb{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);}
.m1b{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);}
.m16{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);}
.m10{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);}
.m9{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);}
.md{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m6{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);}
.me{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);}
.mf{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);}
.m11{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);}
.m24{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);}
.m27{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);}
.m7{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);}
.m18{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);}
.m3{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);}
.m29{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:1.374840px;}
.ls9{letter-spacing:1.443582px;}
.lsb{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls15{letter-spacing:16.154370px;}
.lsd{letter-spacing:16.773048px;}
.lsc{letter-spacing:16.841790px;}
.lsf{letter-spacing:16.979274px;}
.ls8{letter-spacing:17.116758px;}
.ls5{letter-spacing:17.185500px;}
.lsa{letter-spacing:17.322984px;}
.ls12{letter-spacing:17.391726px;}
.ls14{letter-spacing:17.460468px;}
.ls13{letter-spacing:17.529210px;}
.ls11{letter-spacing:18.354114px;}
.lse{letter-spacing:18.560340px;}
.ls10{letter-spacing:22.203666px;}
.ls6{letter-spacing:22.959828px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.wsd0{word-spacing:-17.185500px;}
.wsff{word-spacing:-3.849552px;}
.ws11e{word-spacing:-3.780810px;}
.ws38{word-spacing:-3.712068px;}
.wsd9{word-spacing:-3.643326px;}
.wsf3{word-spacing:-3.574584px;}
.wsc7{word-spacing:-3.505842px;}
.ws10b{word-spacing:-3.437100px;}
.ws63{word-spacing:-3.368358px;}
.ws8d{word-spacing:-3.299616px;}
.wsee{word-spacing:-3.230874px;}
.wsc0{word-spacing:-3.162132px;}
.ws91{word-spacing:-3.093390px;}
.ws122{word-spacing:-3.024648px;}
.ws12{word-spacing:-2.988780px;}
.wsfc{word-spacing:-2.955906px;}
.ws95{word-spacing:-2.887164px;}
.ws25{word-spacing:-2.818422px;}
.wsea{word-spacing:-2.749680px;}
.wsfa{word-spacing:-2.680938px;}
.ws5d{word-spacing:-2.612196px;}
.ws37{word-spacing:-2.543454px;}
.ws21{word-spacing:-2.474712px;}
.wseb{word-spacing:-2.405970px;}
.ws4f{word-spacing:-2.337228px;}
.ws16{word-spacing:-2.268486px;}
.ws87{word-spacing:-2.199744px;}
.ws100{word-spacing:-2.131002px;}
.ws5e{word-spacing:-2.062260px;}
.ws4a{word-spacing:-1.993518px;}
.ws3f{word-spacing:-1.924776px;}
.wsd6{word-spacing:-1.856034px;}
.ws71{word-spacing:-1.718550px;}
.ws33{word-spacing:-1.649808px;}
.ws7d{word-spacing:-1.581066px;}
.wsda{word-spacing:-1.512324px;}
.ws2a{word-spacing:-1.443582px;}
.ws8a{word-spacing:-1.374840px;}
.ws121{word-spacing:-1.306098px;}
.ws67{word-spacing:-1.237356px;}
.ws10c{word-spacing:-1.168614px;}
.wsa5{word-spacing:-1.099872px;}
.ws58{word-spacing:-1.031130px;}
.wsc1{word-spacing:-0.962388px;}
.ws36{word-spacing:-0.893646px;}
.wsf8{word-spacing:-0.824904px;}
.ws55{word-spacing:-0.756162px;}
.wsdf{word-spacing:-0.687420px;}
.wsbd{word-spacing:-0.618678px;}
.wscd{word-spacing:-0.549936px;}
.ws11{word-spacing:-0.537980px;}
.wsb9{word-spacing:-0.481194px;}
.ws76{word-spacing:-0.412452px;}
.ws54{word-spacing:-0.343710px;}
.wsf{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.274968px;}
.wsc{word-spacing:-0.239102px;}
.ws2{word-spacing:-0.206585px;}
.ws29{word-spacing:-0.206226px;}
.ws15{word-spacing:-0.137484px;}
.wsa{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.068742px;}
.ws8{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.059776px;}
.ws3c{word-spacing:0.068742px;}
.ws13{word-spacing:0.107597px;}
.ws27{word-spacing:0.137484px;}
.ws1a{word-spacing:0.206226px;}
.ws118{word-spacing:0.215194px;}
.ws5{word-spacing:0.239102px;}
.ws31{word-spacing:0.274968px;}
.ws10{word-spacing:0.298878px;}
.ws22{word-spacing:0.343710px;}
.ws4d{word-spacing:0.412452px;}
.ws69{word-spacing:0.481194px;}
.ws50{word-spacing:0.549936px;}
.wsb2{word-spacing:0.618678px;}
.ws104{word-spacing:0.645581px;}
.ws8e{word-spacing:0.687420px;}
.wsce{word-spacing:0.756162px;}
.ws3e{word-spacing:0.824904px;}
.ws49{word-spacing:0.893646px;}
.wsb{word-spacing:0.896634px;}
.ws7{word-spacing:0.956410px;}
.ws11b{word-spacing:0.962388px;}
.wsd7{word-spacing:1.031130px;}
.ws24{word-spacing:1.099872px;}
.ws4b{word-spacing:1.168614px;}
.wse{word-spacing:1.195512px;}
.wsaa{word-spacing:1.237356px;}
.ws77{word-spacing:1.306098px;}
.ws96{word-spacing:1.374840px;}
.wsac{word-spacing:1.443582px;}
.wsaf{word-spacing:1.512324px;}
.ws41{word-spacing:1.581066px;}
.ws80{word-spacing:1.649808px;}
.wsa8{word-spacing:1.718550px;}
.ws98{word-spacing:1.787292px;}
.wsae{word-spacing:1.856034px;}
.wsf0{word-spacing:1.924776px;}
.wsb3{word-spacing:1.993518px;}
.ws1d{word-spacing:2.062260px;}
.wsd{word-spacing:2.092146px;}
.ws9a{word-spacing:2.131002px;}
.ws45{word-spacing:2.199744px;}
.ws3a{word-spacing:2.268486px;}
.wsad{word-spacing:2.337228px;}
.ws101{word-spacing:2.405970px;}
.wscb{word-spacing:2.474712px;}
.ws81{word-spacing:2.543454px;}
.wsa9{word-spacing:2.612196px;}
.ws34{word-spacing:2.680938px;}
.ws66{word-spacing:2.749680px;}
.ws3b{word-spacing:2.818422px;}
.ws2e{word-spacing:2.887164px;}
.ws93{word-spacing:2.955906px;}
.wsc9{word-spacing:3.024648px;}
.ws6b{word-spacing:3.093390px;}
.wsa6{word-spacing:3.162132px;}
.wsbc{word-spacing:3.230874px;}
.wsbf{word-spacing:3.299616px;}
.wsc8{word-spacing:3.368358px;}
.ws8f{word-spacing:3.437100px;}
.wsf6{word-spacing:3.505842px;}
.ws23{word-spacing:3.574584px;}
.ws2c{word-spacing:3.643326px;}
.ws8c{word-spacing:3.712068px;}
.ws3d{word-spacing:3.780810px;}
.ws9{word-spacing:3.825638px;}
.ws83{word-spacing:3.849552px;}
.ws61{word-spacing:3.918294px;}
.ws35{word-spacing:3.987036px;}
.wsdd{word-spacing:4.055778px;}
.ws2f{word-spacing:4.124520px;}
.ws52{word-spacing:4.193262px;}
.ws18{word-spacing:4.262004px;}
.ws84{word-spacing:4.330746px;}
.ws6d{word-spacing:4.399488px;}
.wsc6{word-spacing:4.468230px;}
.ws85{word-spacing:4.536972px;}
.ws65{word-spacing:4.605714px;}
.ws46{word-spacing:4.674456px;}
.ws40{word-spacing:4.743198px;}
.ws32{word-spacing:4.811940px;}
.ws43{word-spacing:4.880682px;}
.wsba{word-spacing:4.949424px;}
.ws7e{word-spacing:5.018166px;}
.ws78{word-spacing:5.086908px;}
.ws94{word-spacing:5.155650px;}
.ws60{word-spacing:5.224392px;}
.ws39{word-spacing:5.293134px;}
.wsed{word-spacing:5.361876px;}
.ws92{word-spacing:5.430618px;}
.ws7c{word-spacing:5.499360px;}
.wsb8{word-spacing:5.568102px;}
.ws28{word-spacing:5.636844px;}
.ws2d{word-spacing:5.705586px;}
.wsd3{word-spacing:5.774328px;}
.ws5a{word-spacing:5.843070px;}
.wsf1{word-spacing:5.911812px;}
.ws6f{word-spacing:5.980554px;}
.ws57{word-spacing:6.049296px;}
.ws47{word-spacing:6.118038px;}
.wse6{word-spacing:6.186780px;}
.ws1f{word-spacing:6.255522px;}
.ws5c{word-spacing:6.324264px;}
.wsc4{word-spacing:6.393006px;}
.ws2b{word-spacing:6.461748px;}
.ws62{word-spacing:6.530490px;}
.ws1e{word-spacing:6.599232px;}
.ws48{word-spacing:6.667974px;}
.ws7f{word-spacing:6.736716px;}
.ws75{word-spacing:6.805458px;}
.wsb0{word-spacing:6.874200px;}
.ws44{word-spacing:6.942942px;}
.ws26{word-spacing:7.011684px;}
.wse3{word-spacing:7.080426px;}
.ws59{word-spacing:7.149168px;}
.wse2{word-spacing:7.217910px;}
.ws9b{word-spacing:7.286652px;}
.ws107{word-spacing:7.355394px;}
.ws112{word-spacing:7.424136px;}
.ws4e{word-spacing:7.492878px;}
.ws74{word-spacing:7.561620px;}
.ws5f{word-spacing:7.630362px;}
.wsa3{word-spacing:7.699104px;}
.ws53{word-spacing:7.767846px;}
.ws20{word-spacing:7.836588px;}
.ws4c{word-spacing:7.905330px;}
.wsca{word-spacing:7.974072px;}
.wscc{word-spacing:8.042814px;}
.wsa2{word-spacing:8.111556px;}
.wsb1{word-spacing:8.180298px;}
.ws42{word-spacing:8.249040px;}
.ws17{word-spacing:8.317782px;}
.wse5{word-spacing:8.386524px;}
.ws51{word-spacing:8.455266px;}
.ws5b{word-spacing:8.524008px;}
.ws70{word-spacing:8.592750px;}
.wsbe{word-spacing:8.661492px;}
.ws6e{word-spacing:8.730234px;}
.ws7a{word-spacing:8.798976px;}
.ws64{word-spacing:8.867718px;}
.wse1{word-spacing:8.936460px;}
.ws88{word-spacing:9.005202px;}
.ws99{word-spacing:9.073944px;}
.wsdb{word-spacing:9.142686px;}
.ws56{word-spacing:9.211428px;}
.ws19{word-spacing:9.280170px;}
.wse9{word-spacing:9.348912px;}
.wse0{word-spacing:9.417654px;}
.wsa1{word-spacing:9.486396px;}
.ws30{word-spacing:9.555138px;}
.ws86{word-spacing:9.623880px;}
.ws6c{word-spacing:9.692622px;}
.wsd5{word-spacing:9.761364px;}
.wsfb{word-spacing:9.830106px;}
.ws109{word-spacing:9.898848px;}
.ws111{word-spacing:9.967590px;}
.wsf2{word-spacing:10.036332px;}
.ws8b{word-spacing:10.105074px;}
.wsf4{word-spacing:10.242558px;}
.wsd2{word-spacing:10.311300px;}
.wsd4{word-spacing:10.380042px;}
.ws113{word-spacing:10.448784px;}
.ws103{word-spacing:10.517526px;}
.wsb4{word-spacing:10.586268px;}
.wsef{word-spacing:10.655010px;}
.ws9f{word-spacing:10.723752px;}
.wsa7{word-spacing:10.792494px;}
.ws120{word-spacing:10.861236px;}
.wsdc{word-spacing:10.929978px;}
.wscf{word-spacing:10.998720px;}
.ws79{word-spacing:11.067462px;}
.wsc2{word-spacing:11.136204px;}
.ws72{word-spacing:11.273688px;}
.wsc3{word-spacing:11.342430px;}
.ws82{word-spacing:11.411172px;}
.ws102{word-spacing:11.479914px;}
.wse7{word-spacing:11.548656px;}
.ws116{word-spacing:11.617398px;}
.wsab{word-spacing:11.686140px;}
.wsfd{word-spacing:11.892366px;}
.ws97{word-spacing:11.961108px;}
.wsbb{word-spacing:12.029850px;}
.ws117{word-spacing:12.236076px;}
.ws11d{word-spacing:12.304818px;}
.wsfe{word-spacing:12.373560px;}
.ws110{word-spacing:12.511044px;}
.ws114{word-spacing:12.579786px;}
.wse8{word-spacing:12.648528px;}
.ws73{word-spacing:12.717270px;}
.ws89{word-spacing:12.786012px;}
.wsc5{word-spacing:12.854754px;}
.wsa4{word-spacing:12.923496px;}
.ws11c{word-spacing:12.992238px;}
.ws7b{word-spacing:13.060980px;}
.wsa0{word-spacing:13.129722px;}
.ws9e{word-spacing:13.198464px;}
.ws6a{word-spacing:13.267206px;}
.wsec{word-spacing:13.335948px;}
.wsd8{word-spacing:13.404690px;}
.ws10f{word-spacing:13.610916px;}
.ws10a{word-spacing:13.885884px;}
.wsf5{word-spacing:14.023368px;}
.wsb6{word-spacing:14.367078px;}
.wsde{word-spacing:16.154370px;}
.ws11f{word-spacing:16.291854px;}
.wsb5{word-spacing:16.635564px;}
.ws119{word-spacing:16.704306px;}
.ws0{word-spacing:16.880672px;}
.ws11a{word-spacing:17.185500px;}
.wsb7{word-spacing:18.216630px;}
.ws4{word-spacing:18.769538px;}
.wsf9{word-spacing:19.349392px;}
.wsd1{word-spacing:19.385244px;}
.ws10e{word-spacing:20.416374px;}
.ws105{word-spacing:20.622600px;}
.ws68{word-spacing:22.203666px;}
.ws10d{word-spacing:22.959828px;}
.ws90{word-spacing:25.022088px;}
.ws108{word-spacing:32.583708px;}
.wsf7{word-spacing:35.470872px;}
.ws115{word-spacing:35.608356px;}
.ws9d{word-spacing:45.507204px;}
.ws9c{word-spacing:50.181660px;}
.ws14{word-spacing:77.630692px;}
.ws106{word-spacing:940.539258px;}
.wse4{word-spacing:943.119258px;}
._3{margin-left:-13.634597px;}
._5{margin-left:-8.625632px;}
._4{margin-left:-7.230468px;}
._6{margin-left:-6.216672px;}
._a{margin-left:-4.764349px;}
._8{margin-left:-3.586536px;}
._1{margin-left:-1.652678px;}
._0{width:1.386797px;}
._30{width:2.719561px;}
._31{width:4.223381px;}
._2f{width:6.129520px;}
._32{width:8.326393px;}
._b{width:15.102188px;}
._e{width:16.339642px;}
._7{width:18.266956px;}
._9{width:19.785724px;}
._1d{width:20.900438px;}
._10{width:21.934439px;}
._19{width:23.372280px;}
._15{width:24.755731px;}
._13{width:26.011368px;}
._14{width:27.036757px;}
._1a{width:28.734156px;}
._18{width:29.971512px;}
._2{width:31.400890px;}
._f{width:33.325710px;}
._17{width:34.923806px;}
._28{width:36.041959px;}
._1e{width:37.601874px;}
._16{width:38.976714px;}
._1c{width:40.214070px;}
._12{width:41.657652px;}
._29{width:43.044444px;}
._1b{width:45.001988px;}
._21{width:46.813302px;}
._1f{width:48.738078px;}
._26{width:49.793230px;}
._11{width:50.881032px;}
._27{width:52.312662px;}
._24{width:53.836468px;}
._2e{width:55.062342px;}
._23{width:56.190623px;}
._c{width:58.878966px;}
._d{width:59.933888px;}
._2c{width:62.695574px;}
._20{width:67.367160px;}
._22{width:68.742000px;}
._25{width:70.116840px;}
._2b{width:71.766648px;}
._2d{width:77.708400px;}
._2a{width:78.778332px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y7b{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y83{bottom:87.351000px;}
.y141{bottom:87.663000px;}
.y147{bottom:88.677000px;}
.y52{bottom:90.733500px;}
.ycf{bottom:96.321000px;}
.ya0{bottom:96.460500px;}
.ye0{bottom:97.335000px;}
.ybc{bottom:97.474500px;}
.y165{bottom:99.685500px;}
.y7a{bottom:100.462500px;}
.y17e{bottom:100.699500px;}
.y11e{bottom:106.365000px;}
.y121{bottom:107.379000px;}
.yf5{bottom:108.145500px;}
.y25{bottom:108.343500px;}
.y106{bottom:109.159500px;}
.y82{bottom:110.148000px;}
.y140{bottom:110.460000px;}
.y146{bottom:111.474000px;}
.y51{bottom:113.530500px;}
.yce{bottom:119.118000px;}
.y9f{bottom:119.257500px;}
.ydf{bottom:120.132000px;}
.ybb{bottom:120.271500px;}
.y164{bottom:122.482500px;}
.y79{bottom:123.259500px;}
.y17d{bottom:123.496500px;}
.y186{bottom:127.092000px;}
.y11d{bottom:129.163500px;}
.y120{bottom:130.177500px;}
.yf4{bottom:130.942500px;}
.y24{bottom:131.140500px;}
.y105{bottom:131.956500px;}
.y81{bottom:132.946500px;}
.y13f{bottom:133.257000px;}
.y145{bottom:134.271000px;}
.y50{bottom:136.327500px;}
.y149{bottom:136.413000px;}
.ycd{bottom:141.915000px;}
.y9e{bottom:142.054500px;}
.yde{bottom:142.929000px;}
.yba{bottom:143.068500px;}
.y163{bottom:145.279500px;}
.y78{bottom:146.056500px;}
.y17c{bottom:146.293500px;}
.y185{bottom:149.889000px;}
.y11c{bottom:151.960500px;}
.y11f{bottom:152.974500px;}
.yf3{bottom:153.739500px;}
.y23{bottom:153.937500px;}
.y104{bottom:154.753500px;}
.y80{bottom:155.743500px;}
.y13e{bottom:156.054000px;}
.y144{bottom:157.068000px;}
.y4f{bottom:159.124500px;}
.ycc{bottom:164.712000px;}
.y9d{bottom:164.851500px;}
.ydd{bottom:165.726000px;}
.yb9{bottom:165.865500px;}
.y162{bottom:168.076500px;}
.y77{bottom:168.853500px;}
.y17b{bottom:169.090500px;}
.y184{bottom:172.686000px;}
.yf2{bottom:176.536500px;}
.y22{bottom:176.734500px;}
.y103{bottom:177.550500px;}
.y7f{bottom:178.540500px;}
.y13d{bottom:178.851000px;}
.y143{bottom:179.865000px;}
.y4e{bottom:181.921500px;}
.ycb{bottom:187.509000px;}
.y9c{bottom:187.648500px;}
.ydc{bottom:188.523000px;}
.yb8{bottom:188.662500px;}
.y161{bottom:190.873500px;}
.y76{bottom:191.650500px;}
.y17a{bottom:191.887500px;}
.y183{bottom:195.483000px;}
.yf1{bottom:199.333500px;}
.y21{bottom:199.531500px;}
.y102{bottom:200.347500px;}
.y7e{bottom:201.337500px;}
.y13c{bottom:201.648000px;}
.y142{bottom:202.662000px;}
.y4d{bottom:204.718500px;}
.yca{bottom:210.306000px;}
.y9b{bottom:210.445500px;}
.ydb{bottom:211.320000px;}
.yb7{bottom:211.459500px;}
.y11b{bottom:211.636500px;}
.y160{bottom:213.670500px;}
.y75{bottom:214.447500px;}
.y179{bottom:214.684500px;}
.y182{bottom:218.280000px;}
.yf0{bottom:222.130500px;}
.y20{bottom:222.328500px;}
.y101{bottom:223.144500px;}
.y7d{bottom:224.134500px;}
.y4c{bottom:227.515500px;}
.yc9{bottom:233.103000px;}
.y9a{bottom:233.242500px;}
.yda{bottom:234.117000px;}
.yb6{bottom:234.256500px;}
.y11a{bottom:234.433500px;}
.y14a{bottom:234.595500px;}
.y15f{bottom:236.467500px;}
.y74{bottom:237.244500px;}
.y178{bottom:237.481500px;}
.y181{bottom:241.078500px;}
.yef{bottom:244.927500px;}
.y1f{bottom:245.125500px;}
.y100{bottom:245.941500px;}
.y4b{bottom:250.312500px;}
.yc8{bottom:255.900000px;}
.y99{bottom:256.041000px;}
.yd9{bottom:256.914000px;}
.yb5{bottom:257.055000px;}
.y119{bottom:257.230500px;}
.y7c{bottom:257.392500px;}
.y15e{bottom:259.264500px;}
.y73{bottom:260.041500px;}
.y177{bottom:260.278500px;}
.y13b{bottom:261.325500px;}
.y180{bottom:263.875500px;}
.yee{bottom:267.726000px;}
.y1e{bottom:267.924000px;}
.yff{bottom:268.740000px;}
.y4a{bottom:273.109500px;}
.yc7{bottom:278.698500px;}
.y98{bottom:278.838000px;}
.yd8{bottom:279.711000px;}
.yb4{bottom:279.852000px;}
.y118{bottom:280.027500px;}
.y15d{bottom:282.063000px;}
.y72{bottom:282.838500px;}
.y176{bottom:283.077000px;}
.y13a{bottom:284.122500px;}
.yed{bottom:290.523000px;}
.y1d{bottom:290.721000px;}
.yfe{bottom:291.537000px;}
.y49{bottom:295.908000px;}
.y187{bottom:295.993500px;}
.y17f{bottom:297.133500px;}
.yc6{bottom:301.495500px;}
.y97{bottom:301.635000px;}
.yd7{bottom:302.509500px;}
.yb3{bottom:302.649000px;}
.y117{bottom:302.824500px;}
.y15c{bottom:304.860000px;}
.y71{bottom:305.635500px;}
.y175{bottom:305.874000px;}
.y139{bottom:306.919500px;}
.yec{bottom:313.320000px;}
.yfd{bottom:314.334000px;}
.y48{bottom:318.705000px;}
.yc5{bottom:324.292500px;}
.y96{bottom:324.432000px;}
.yd6{bottom:325.306500px;}
.yb2{bottom:325.446000px;}
.y116{bottom:325.621500px;}
.y15b{bottom:327.657000px;}
.y70{bottom:328.432500px;}
.y174{bottom:328.671000px;}
.y138{bottom:329.716500px;}
.yeb{bottom:336.117000px;}
.yfc{bottom:337.131000px;}
.y47{bottom:341.502000px;}
.y148{bottom:341.587500px;}
.y1c{bottom:341.911500px;}
.yc4{bottom:347.089500px;}
.y95{bottom:347.229000px;}
.yd5{bottom:348.103500px;}
.yb1{bottom:348.243000px;}
.y115{bottom:348.418500px;}
.y15a{bottom:350.454000px;}
.y6f{bottom:351.229500px;}
.y173{bottom:351.468000px;}
.y137{bottom:352.513500px;}
.yea{bottom:358.914000px;}
.yfb{bottom:359.928000px;}
.y46{bottom:364.299000px;}
.yc3{bottom:369.886500px;}
.y94{bottom:370.026000px;}
.yd4{bottom:370.900500px;}
.yb0{bottom:371.040000px;}
.y114{bottom:371.217000px;}
.y159{bottom:373.251000px;}
.y6e{bottom:374.028000px;}
.y172{bottom:374.265000px;}
.y136{bottom:375.310500px;}
.ye9{bottom:381.711000px;}
.yfa{bottom:382.725000px;}
.y1b{bottom:383.085000px;}
.y45{bottom:387.096000px;}
.yc2{bottom:392.683500px;}
.y93{bottom:392.823000px;}
.yd3{bottom:393.697500px;}
.yaf{bottom:393.837000px;}
.y113{bottom:394.014000px;}
.y158{bottom:396.048000px;}
.y6d{bottom:396.825000px;}
.y171{bottom:397.062000px;}
.y135{bottom:398.107500px;}
.y1a{bottom:401.659500px;}
.ye8{bottom:404.508000px;}
.yf9{bottom:405.522000px;}
.y44{bottom:409.893000px;}
.yc1{bottom:415.480500px;}
.y19{bottom:415.488000px;}
.y92{bottom:415.620000px;}
.yd2{bottom:416.494500px;}
.yae{bottom:416.634000px;}
.y112{bottom:416.811000px;}
.y157{bottom:418.845000px;}
.y6c{bottom:419.622000px;}
.y170{bottom:419.859000px;}
.y134{bottom:420.904500px;}
.ye7{bottom:427.305000px;}
.yf8{bottom:428.319000px;}
.y43{bottom:432.690000px;}
.y18{bottom:437.440500px;}
.yc0{bottom:438.277500px;}
.y91{bottom:438.417000px;}
.yd1{bottom:439.291500px;}
.yad{bottom:439.431000px;}
.y111{bottom:439.608000px;}
.y156{bottom:441.642000px;}
.y6b{bottom:442.419000px;}
.y16f{bottom:442.656000px;}
.y133{bottom:443.701500px;}
.ye6{bottom:450.102000px;}
.yf7{bottom:451.116000px;}
.y42{bottom:455.487000px;}
.ybf{bottom:461.074500px;}
.y90{bottom:461.214000px;}
.y17{bottom:461.646000px;}
.yd0{bottom:462.088500px;}
.yac{bottom:462.228000px;}
.y110{bottom:462.405000px;}
.y155{bottom:464.439000px;}
.y6a{bottom:465.216000px;}
.y16e{bottom:465.453000px;}
.y132{bottom:466.498500px;}
.ye5{bottom:472.899000px;}
.yf6{bottom:473.913000px;}
.y41{bottom:478.284000px;}
.ybe{bottom:483.871500px;}
.y8f{bottom:484.011000px;}
.yab{bottom:485.025000px;}
.y10f{bottom:485.202000px;}
.y154{bottom:487.236000px;}
.y69{bottom:488.013000px;}
.y16d{bottom:488.250000px;}
.y131{bottom:489.295500px;}
.y16{bottom:497.047500px;}
.y40{bottom:501.081000px;}
.y8e{bottom:506.808000px;}
.yaa{bottom:507.822000px;}
.y10e{bottom:507.999000px;}
.y153{bottom:510.033000px;}
.y68{bottom:510.810000px;}
.y16c{bottom:511.047000px;}
.y130{bottom:512.092500px;}
.ye4{bottom:514.642500px;}
.y15{bottom:519.000000px;}
.y3f{bottom:523.878000px;}
.y189{bottom:523.965000px;}
.y8d{bottom:529.605000px;}
.ya9{bottom:530.619000px;}
.y10d{bottom:530.796000px;}
.y152{bottom:532.830000px;}
.y67{bottom:533.607000px;}
.y16b{bottom:533.844000px;}
.y12f{bottom:534.891000px;}
.ye3{bottom:537.439500px;}
.y14{bottom:540.954000px;}
.y3e{bottom:546.675000px;}
.y8c{bottom:552.402000px;}
.ya8{bottom:553.416000px;}
.y10c{bottom:553.593000px;}
.y151{bottom:555.627000px;}
.y66{bottom:556.404000px;}
.y16a{bottom:556.641000px;}
.y12e{bottom:557.688000px;}
.ye2{bottom:560.238000px;}
.y13{bottom:562.906500px;}
.y3d{bottom:569.472000px;}
.y8b{bottom:575.200500px;}
.ya7{bottom:576.214500px;}
.y10b{bottom:576.390000px;}
.y150{bottom:578.425500px;}
.y65{bottom:579.201000px;}
.y169{bottom:579.438000px;}
.y12d{bottom:580.485000px;}
.y12{bottom:584.859000px;}
.y3c{bottom:592.269000px;}
.ye1{bottom:593.494500px;}
.y8a{bottom:597.997500px;}
.ya6{bottom:599.011500px;}
.y10a{bottom:599.187000px;}
.y14f{bottom:601.222500px;}
.y64{bottom:601.998000px;}
.y168{bottom:602.236500px;}
.y12c{bottom:603.282000px;}
.y11{bottom:606.811500px;}
.y3b{bottom:615.067500px;}
.y89{bottom:620.794500px;}
.ya5{bottom:621.808500px;}
.y109{bottom:621.984000px;}
.y14e{bottom:624.019500px;}
.y63{bottom:624.795000px;}
.y167{bottom:625.033500px;}
.y12b{bottom:626.079000px;}
.y10{bottom:628.764000px;}
.y3a{bottom:637.864500px;}
.y88{bottom:643.591500px;}
.y108{bottom:643.767000px;}
.ya4{bottom:644.605500px;}
.y14d{bottom:646.816500px;}
.y62{bottom:647.592000px;}
.y166{bottom:647.830500px;}
.y12a{bottom:648.876000px;}
.yf{bottom:650.718000px;}
.y39{bottom:660.661500px;}
.y87{bottom:666.388500px;}
.y107{bottom:666.564000px;}
.ya3{bottom:667.402500px;}
.y14c{bottom:669.613500px;}
.y61{bottom:670.390500px;}
.y129{bottom:671.673000px;}
.ye{bottom:672.670500px;}
.y38{bottom:683.458500px;}
.y86{bottom:689.185500px;}
.ya2{bottom:690.199500px;}
.y14b{bottom:692.410500px;}
.y60{bottom:693.187500px;}
.y128{bottom:694.470000px;}
.yd{bottom:694.623000px;}
.y37{bottom:706.255500px;}
.ybd{bottom:706.341000px;}
.y85{bottom:711.982500px;}
.ya1{bottom:712.996500px;}
.y5f{bottom:715.984500px;}
.yc{bottom:716.575500px;}
.y127{bottom:717.267000px;}
.y36{bottom:729.052500px;}
.y84{bottom:734.779500px;}
.yb{bottom:738.528000px;}
.y5e{bottom:738.781500px;}
.y126{bottom:740.064000px;}
.y35{bottom:751.849500px;}
.ya{bottom:760.480500px;}
.y5d{bottom:761.578500px;}
.y125{bottom:762.861000px;}
.y34{bottom:774.646500px;}
.y9{bottom:782.434500px;}
.y5c{bottom:784.375500px;}
.y124{bottom:785.658000px;}
.y33{bottom:797.443500px;}
.y18a{bottom:797.529000px;}
.y8{bottom:804.387000px;}
.y123{bottom:807.441000px;}
.y32{bottom:820.240500px;}
.y5b{bottom:825.105000px;}
.y7{bottom:826.339500px;}
.y122{bottom:830.238000px;}
.y31{bottom:843.037500px;}
.y5a{bottom:847.902000px;}
.y6{bottom:848.292000px;}
.y30{bottom:865.834500px;}
.y59{bottom:870.699000px;}
.y2f{bottom:888.631500px;}
.y58{bottom:893.496000px;}
.y2e{bottom:911.430000px;}
.y57{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.y2d{bottom:934.227000px;}
.y56{bottom:939.090000px;}
.y55{bottom:939.091500px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y2b{bottom:979.821000px;}
.y3{bottom:996.498000px;}
.y2a{bottom:1002.618000px;}
.y29{bottom:1025.415000px;}
.y188{bottom:1048.099500px;}
.y28{bottom:1048.212000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.304940px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.h3{height:53.463379px;}
.h7{height:53.696504px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:125.274000px;}
.x3{left:127.558500px;}
.x25{left:138.270000px;}
.x24{left:139.704000px;}
.x11{left:151.072500px;}
.xb{left:153.070500px;}
.x6{left:178.044000px;}
.x1c{left:181.026000px;}
.xa{left:182.308500px;}
.x19{left:189.657000px;}
.x13{left:190.990500px;}
.x12{left:194.805000px;}
.x8{left:230.886000px;}
.x20{left:243.874500px;}
.x1f{left:245.278500px;}
.x27{left:292.272000px;}
.x26{left:293.706000px;}
.x1e{left:301.408500px;}
.x1d{left:302.844000px;}
.x15{left:312.655500px;}
.x18{left:315.997500px;}
.x4{left:351.670500px;}
.x21{left:367.233000px;}
.x17{left:371.046000px;}
.x5{left:379.330500px;}
.xd{left:404.373000px;}
.x7{left:410.130000px;}
.x9{left:432.396000px;}
.x16{left:447.636000px;}
.xe{left:452.577000px;}
.xc{left:464.346000px;}
.x22{left:487.572000px;}
.x10{left:489.858000px;}
.x2{left:573.774000px;}
.xf{left:578.070000px;}
.x1b{left:585.286500px;}
.x1a{left:586.722000px;}
.x23{left:588.643500px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:1.222080pt;}
.ls9{letter-spacing:1.283184pt;}
.lsb{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls15{letter-spacing:14.359440pt;}
.lsd{letter-spacing:14.909376pt;}
.lsc{letter-spacing:14.970480pt;}
.lsf{letter-spacing:15.092688pt;}
.ls8{letter-spacing:15.214896pt;}
.ls5{letter-spacing:15.276000pt;}
.lsa{letter-spacing:15.398208pt;}
.ls12{letter-spacing:15.459312pt;}
.ls14{letter-spacing:15.520416pt;}
.ls13{letter-spacing:15.581520pt;}
.ls11{letter-spacing:16.314768pt;}
.lse{letter-spacing:16.498080pt;}
.ls10{letter-spacing:19.736592pt;}
.ls6{letter-spacing:20.408736pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.wsd0{word-spacing:-15.276000pt;}
.wsff{word-spacing:-3.421824pt;}
.ws11e{word-spacing:-3.360720pt;}
.ws38{word-spacing:-3.299616pt;}
.wsd9{word-spacing:-3.238512pt;}
.wsf3{word-spacing:-3.177408pt;}
.wsc7{word-spacing:-3.116304pt;}
.ws10b{word-spacing:-3.055200pt;}
.ws63{word-spacing:-2.994096pt;}
.ws8d{word-spacing:-2.932992pt;}
.wsee{word-spacing:-2.871888pt;}
.wsc0{word-spacing:-2.810784pt;}
.ws91{word-spacing:-2.749680pt;}
.ws122{word-spacing:-2.688576pt;}
.ws12{word-spacing:-2.656693pt;}
.wsfc{word-spacing:-2.627472pt;}
.ws95{word-spacing:-2.566368pt;}
.ws25{word-spacing:-2.505264pt;}
.wsea{word-spacing:-2.444160pt;}
.wsfa{word-spacing:-2.383056pt;}
.ws5d{word-spacing:-2.321952pt;}
.ws37{word-spacing:-2.260848pt;}
.ws21{word-spacing:-2.199744pt;}
.wseb{word-spacing:-2.138640pt;}
.ws4f{word-spacing:-2.077536pt;}
.ws16{word-spacing:-2.016432pt;}
.ws87{word-spacing:-1.955328pt;}
.ws100{word-spacing:-1.894224pt;}
.ws5e{word-spacing:-1.833120pt;}
.ws4a{word-spacing:-1.772016pt;}
.ws3f{word-spacing:-1.710912pt;}
.wsd6{word-spacing:-1.649808pt;}
.ws71{word-spacing:-1.527600pt;}
.ws33{word-spacing:-1.466496pt;}
.ws7d{word-spacing:-1.405392pt;}
.wsda{word-spacing:-1.344288pt;}
.ws2a{word-spacing:-1.283184pt;}
.ws8a{word-spacing:-1.222080pt;}
.ws121{word-spacing:-1.160976pt;}
.ws67{word-spacing:-1.099872pt;}
.ws10c{word-spacing:-1.038768pt;}
.wsa5{word-spacing:-0.977664pt;}
.ws58{word-spacing:-0.916560pt;}
.wsc1{word-spacing:-0.855456pt;}
.ws36{word-spacing:-0.794352pt;}
.wsf8{word-spacing:-0.733248pt;}
.ws55{word-spacing:-0.672144pt;}
.wsdf{word-spacing:-0.611040pt;}
.wsbd{word-spacing:-0.549936pt;}
.wscd{word-spacing:-0.488832pt;}
.ws11{word-spacing:-0.478205pt;}
.wsb9{word-spacing:-0.427728pt;}
.ws76{word-spacing:-0.366624pt;}
.ws54{word-spacing:-0.305520pt;}
.wsf{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.244416pt;}
.wsc{word-spacing:-0.212535pt;}
.ws2{word-spacing:-0.183631pt;}
.ws29{word-spacing:-0.183312pt;}
.ws15{word-spacing:-0.122208pt;}
.wsa{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.061104pt;}
.ws8{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.053134pt;}
.ws3c{word-spacing:0.061104pt;}
.ws13{word-spacing:0.095642pt;}
.ws27{word-spacing:0.122208pt;}
.ws1a{word-spacing:0.183312pt;}
.ws118{word-spacing:0.191283pt;}
.ws5{word-spacing:0.212535pt;}
.ws31{word-spacing:0.244416pt;}
.ws10{word-spacing:0.265669pt;}
.ws22{word-spacing:0.305520pt;}
.ws4d{word-spacing:0.366624pt;}
.ws69{word-spacing:0.427728pt;}
.ws50{word-spacing:0.488832pt;}
.wsb2{word-spacing:0.549936pt;}
.ws104{word-spacing:0.573850pt;}
.ws8e{word-spacing:0.611040pt;}
.wsce{word-spacing:0.672144pt;}
.ws3e{word-spacing:0.733248pt;}
.ws49{word-spacing:0.794352pt;}
.wsb{word-spacing:0.797008pt;}
.ws7{word-spacing:0.850142pt;}
.ws11b{word-spacing:0.855456pt;}
.wsd7{word-spacing:0.916560pt;}
.ws24{word-spacing:0.977664pt;}
.ws4b{word-spacing:1.038768pt;}
.wse{word-spacing:1.062677pt;}
.wsaa{word-spacing:1.099872pt;}
.ws77{word-spacing:1.160976pt;}
.ws96{word-spacing:1.222080pt;}
.wsac{word-spacing:1.283184pt;}
.wsaf{word-spacing:1.344288pt;}
.ws41{word-spacing:1.405392pt;}
.ws80{word-spacing:1.466496pt;}
.wsa8{word-spacing:1.527600pt;}
.ws98{word-spacing:1.588704pt;}
.wsae{word-spacing:1.649808pt;}
.wsf0{word-spacing:1.710912pt;}
.wsb3{word-spacing:1.772016pt;}
.ws1d{word-spacing:1.833120pt;}
.wsd{word-spacing:1.859685pt;}
.ws9a{word-spacing:1.894224pt;}
.ws45{word-spacing:1.955328pt;}
.ws3a{word-spacing:2.016432pt;}
.wsad{word-spacing:2.077536pt;}
.ws101{word-spacing:2.138640pt;}
.wscb{word-spacing:2.199744pt;}
.ws81{word-spacing:2.260848pt;}
.wsa9{word-spacing:2.321952pt;}
.ws34{word-spacing:2.383056pt;}
.ws66{word-spacing:2.444160pt;}
.ws3b{word-spacing:2.505264pt;}
.ws2e{word-spacing:2.566368pt;}
.ws93{word-spacing:2.627472pt;}
.wsc9{word-spacing:2.688576pt;}
.ws6b{word-spacing:2.749680pt;}
.wsa6{word-spacing:2.810784pt;}
.wsbc{word-spacing:2.871888pt;}
.wsbf{word-spacing:2.932992pt;}
.wsc8{word-spacing:2.994096pt;}
.ws8f{word-spacing:3.055200pt;}
.wsf6{word-spacing:3.116304pt;}
.ws23{word-spacing:3.177408pt;}
.ws2c{word-spacing:3.238512pt;}
.ws8c{word-spacing:3.299616pt;}
.ws3d{word-spacing:3.360720pt;}
.ws9{word-spacing:3.400567pt;}
.ws83{word-spacing:3.421824pt;}
.ws61{word-spacing:3.482928pt;}
.ws35{word-spacing:3.544032pt;}
.wsdd{word-spacing:3.605136pt;}
.ws2f{word-spacing:3.666240pt;}
.ws52{word-spacing:3.727344pt;}
.ws18{word-spacing:3.788448pt;}
.ws84{word-spacing:3.849552pt;}
.ws6d{word-spacing:3.910656pt;}
.wsc6{word-spacing:3.971760pt;}
.ws85{word-spacing:4.032864pt;}
.ws65{word-spacing:4.093968pt;}
.ws46{word-spacing:4.155072pt;}
.ws40{word-spacing:4.216176pt;}
.ws32{word-spacing:4.277280pt;}
.ws43{word-spacing:4.338384pt;}
.wsba{word-spacing:4.399488pt;}
.ws7e{word-spacing:4.460592pt;}
.ws78{word-spacing:4.521696pt;}
.ws94{word-spacing:4.582800pt;}
.ws60{word-spacing:4.643904pt;}
.ws39{word-spacing:4.705008pt;}
.wsed{word-spacing:4.766112pt;}
.ws92{word-spacing:4.827216pt;}
.ws7c{word-spacing:4.888320pt;}
.wsb8{word-spacing:4.949424pt;}
.ws28{word-spacing:5.010528pt;}
.ws2d{word-spacing:5.071632pt;}
.wsd3{word-spacing:5.132736pt;}
.ws5a{word-spacing:5.193840pt;}
.wsf1{word-spacing:5.254944pt;}
.ws6f{word-spacing:5.316048pt;}
.ws57{word-spacing:5.377152pt;}
.ws47{word-spacing:5.438256pt;}
.wse6{word-spacing:5.499360pt;}
.ws1f{word-spacing:5.560464pt;}
.ws5c{word-spacing:5.621568pt;}
.wsc4{word-spacing:5.682672pt;}
.ws2b{word-spacing:5.743776pt;}
.ws62{word-spacing:5.804880pt;}
.ws1e{word-spacing:5.865984pt;}
.ws48{word-spacing:5.927088pt;}
.ws7f{word-spacing:5.988192pt;}
.ws75{word-spacing:6.049296pt;}
.wsb0{word-spacing:6.110400pt;}
.ws44{word-spacing:6.171504pt;}
.ws26{word-spacing:6.232608pt;}
.wse3{word-spacing:6.293712pt;}
.ws59{word-spacing:6.354816pt;}
.wse2{word-spacing:6.415920pt;}
.ws9b{word-spacing:6.477024pt;}
.ws107{word-spacing:6.538128pt;}
.ws112{word-spacing:6.599232pt;}
.ws4e{word-spacing:6.660336pt;}
.ws74{word-spacing:6.721440pt;}
.ws5f{word-spacing:6.782544pt;}
.wsa3{word-spacing:6.843648pt;}
.ws53{word-spacing:6.904752pt;}
.ws20{word-spacing:6.965856pt;}
.ws4c{word-spacing:7.026960pt;}
.wsca{word-spacing:7.088064pt;}
.wscc{word-spacing:7.149168pt;}
.wsa2{word-spacing:7.210272pt;}
.wsb1{word-spacing:7.271376pt;}
.ws42{word-spacing:7.332480pt;}
.ws17{word-spacing:7.393584pt;}
.wse5{word-spacing:7.454688pt;}
.ws51{word-spacing:7.515792pt;}
.ws5b{word-spacing:7.576896pt;}
.ws70{word-spacing:7.638000pt;}
.wsbe{word-spacing:7.699104pt;}
.ws6e{word-spacing:7.760208pt;}
.ws7a{word-spacing:7.821312pt;}
.ws64{word-spacing:7.882416pt;}
.wse1{word-spacing:7.943520pt;}
.ws88{word-spacing:8.004624pt;}
.ws99{word-spacing:8.065728pt;}
.wsdb{word-spacing:8.126832pt;}
.ws56{word-spacing:8.187936pt;}
.ws19{word-spacing:8.249040pt;}
.wse9{word-spacing:8.310144pt;}
.wse0{word-spacing:8.371248pt;}
.wsa1{word-spacing:8.432352pt;}
.ws30{word-spacing:8.493456pt;}
.ws86{word-spacing:8.554560pt;}
.ws6c{word-spacing:8.615664pt;}
.wsd5{word-spacing:8.676768pt;}
.wsfb{word-spacing:8.737872pt;}
.ws109{word-spacing:8.798976pt;}
.ws111{word-spacing:8.860080pt;}
.wsf2{word-spacing:8.921184pt;}
.ws8b{word-spacing:8.982288pt;}
.wsf4{word-spacing:9.104496pt;}
.wsd2{word-spacing:9.165600pt;}
.wsd4{word-spacing:9.226704pt;}
.ws113{word-spacing:9.287808pt;}
.ws103{word-spacing:9.348912pt;}
.wsb4{word-spacing:9.410016pt;}
.wsef{word-spacing:9.471120pt;}
.ws9f{word-spacing:9.532224pt;}
.wsa7{word-spacing:9.593328pt;}
.ws120{word-spacing:9.654432pt;}
.wsdc{word-spacing:9.715536pt;}
.wscf{word-spacing:9.776640pt;}
.ws79{word-spacing:9.837744pt;}
.wsc2{word-spacing:9.898848pt;}
.ws72{word-spacing:10.021056pt;}
.wsc3{word-spacing:10.082160pt;}
.ws82{word-spacing:10.143264pt;}
.ws102{word-spacing:10.204368pt;}
.wse7{word-spacing:10.265472pt;}
.ws116{word-spacing:10.326576pt;}
.wsab{word-spacing:10.387680pt;}
.wsfd{word-spacing:10.570992pt;}
.ws97{word-spacing:10.632096pt;}
.wsbb{word-spacing:10.693200pt;}
.ws117{word-spacing:10.876512pt;}
.ws11d{word-spacing:10.937616pt;}
.wsfe{word-spacing:10.998720pt;}
.ws110{word-spacing:11.120928pt;}
.ws114{word-spacing:11.182032pt;}
.wse8{word-spacing:11.243136pt;}
.ws73{word-spacing:11.304240pt;}
.ws89{word-spacing:11.365344pt;}
.wsc5{word-spacing:11.426448pt;}
.wsa4{word-spacing:11.487552pt;}
.ws11c{word-spacing:11.548656pt;}
.ws7b{word-spacing:11.609760pt;}
.wsa0{word-spacing:11.670864pt;}
.ws9e{word-spacing:11.731968pt;}
.ws6a{word-spacing:11.793072pt;}
.wsec{word-spacing:11.854176pt;}
.wsd8{word-spacing:11.915280pt;}
.ws10f{word-spacing:12.098592pt;}
.ws10a{word-spacing:12.343008pt;}
.wsf5{word-spacing:12.465216pt;}
.wsb6{word-spacing:12.770736pt;}
.wsde{word-spacing:14.359440pt;}
.ws11f{word-spacing:14.481648pt;}
.wsb5{word-spacing:14.787168pt;}
.ws119{word-spacing:14.848272pt;}
.ws0{word-spacing:15.005042pt;}
.ws11a{word-spacing:15.276000pt;}
.wsb7{word-spacing:16.192560pt;}
.ws4{word-spacing:16.684034pt;}
.wsf9{word-spacing:17.199459pt;}
.wsd1{word-spacing:17.231328pt;}
.ws10e{word-spacing:18.147888pt;}
.ws105{word-spacing:18.331200pt;}
.ws68{word-spacing:19.736592pt;}
.ws10d{word-spacing:20.408736pt;}
.ws90{word-spacing:22.241856pt;}
.ws108{word-spacing:28.963296pt;}
.wsf7{word-spacing:31.529664pt;}
.ws115{word-spacing:31.651872pt;}
.ws9d{word-spacing:40.450848pt;}
.ws9c{word-spacing:44.605920pt;}
.ws14{word-spacing:69.005059pt;}
.ws106{word-spacing:836.034896pt;}
.wse4{word-spacing:838.328229pt;}
._3{margin-left:-12.119642pt;}
._5{margin-left:-7.667229pt;}
._4{margin-left:-6.427083pt;}
._6{margin-left:-5.525931pt;}
._a{margin-left:-4.234977pt;}
._8{margin-left:-3.188032pt;}
._1{margin-left:-1.469047pt;}
._0{width:1.232709pt;}
._30{width:2.417388pt;}
._31{width:3.754116pt;}
._2f{width:5.448462pt;}
._32{width:7.401238pt;}
._b{width:13.424167pt;}
._e{width:14.524126pt;}
._7{width:16.237294pt;}
._9{width:17.587310pt;}
._1d{width:18.578167pt;}
._10{width:19.497279pt;}
._19{width:20.775360pt;}
._15{width:22.005094pt;}
._13{width:23.121216pt;}
._14{width:24.032673pt;}
._1a{width:25.541472pt;}
._18{width:26.641344pt;}
._2{width:27.911902pt;}
._f{width:29.622853pt;}
._17{width:31.043383pt;}
._28{width:32.037297pt;}
._1e{width:33.423888pt;}
._16{width:34.645968pt;}
._1c{width:35.745840pt;}
._12{width:37.029024pt;}
._29{width:38.261728pt;}
._1b{width:40.001767pt;}
._21{width:41.611824pt;}
._1f{width:43.322736pt;}
._26{width:44.260649pt;}
._11{width:45.227584pt;}
._27{width:46.500144pt;}
._24{width:47.854638pt;}
._2e{width:48.944304pt;}
._23{width:49.947220pt;}
._c{width:52.336859pt;}
._d{width:53.274567pt;}
._2c{width:55.729399pt;}
._20{width:59.881920pt;}
._22{width:61.104000pt;}
._25{width:62.326080pt;}
._2b{width:63.792576pt;}
._2d{width:69.074133pt;}
._2a{width:70.025184pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y7b{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y83{bottom:77.645333pt;}
.y141{bottom:77.922667pt;}
.y147{bottom:78.824000pt;}
.y52{bottom:80.652000pt;}
.ycf{bottom:85.618667pt;}
.ya0{bottom:85.742667pt;}
.ye0{bottom:86.520000pt;}
.ybc{bottom:86.644000pt;}
.y165{bottom:88.609333pt;}
.y7a{bottom:89.300000pt;}
.y17e{bottom:89.510667pt;}
.y11e{bottom:94.546667pt;}
.y121{bottom:95.448000pt;}
.yf5{bottom:96.129333pt;}
.y25{bottom:96.305333pt;}
.y106{bottom:97.030667pt;}
.y82{bottom:97.909333pt;}
.y140{bottom:98.186667pt;}
.y146{bottom:99.088000pt;}
.y51{bottom:100.916000pt;}
.yce{bottom:105.882667pt;}
.y9f{bottom:106.006667pt;}
.ydf{bottom:106.784000pt;}
.ybb{bottom:106.908000pt;}
.y164{bottom:108.873333pt;}
.y79{bottom:109.564000pt;}
.y17d{bottom:109.774667pt;}
.y186{bottom:112.970667pt;}
.y11d{bottom:114.812000pt;}
.y120{bottom:115.713333pt;}
.yf4{bottom:116.393333pt;}
.y24{bottom:116.569333pt;}
.y105{bottom:117.294667pt;}
.y81{bottom:118.174667pt;}
.y13f{bottom:118.450667pt;}
.y145{bottom:119.352000pt;}
.y50{bottom:121.180000pt;}
.y149{bottom:121.256000pt;}
.ycd{bottom:126.146667pt;}
.y9e{bottom:126.270667pt;}
.yde{bottom:127.048000pt;}
.yba{bottom:127.172000pt;}
.y163{bottom:129.137333pt;}
.y78{bottom:129.828000pt;}
.y17c{bottom:130.038667pt;}
.y185{bottom:133.234667pt;}
.y11c{bottom:135.076000pt;}
.y11f{bottom:135.977333pt;}
.yf3{bottom:136.657333pt;}
.y23{bottom:136.833333pt;}
.y104{bottom:137.558667pt;}
.y80{bottom:138.438667pt;}
.y13e{bottom:138.714667pt;}
.y144{bottom:139.616000pt;}
.y4f{bottom:141.444000pt;}
.ycc{bottom:146.410667pt;}
.y9d{bottom:146.534667pt;}
.ydd{bottom:147.312000pt;}
.yb9{bottom:147.436000pt;}
.y162{bottom:149.401333pt;}
.y77{bottom:150.092000pt;}
.y17b{bottom:150.302667pt;}
.y184{bottom:153.498667pt;}
.yf2{bottom:156.921333pt;}
.y22{bottom:157.097333pt;}
.y103{bottom:157.822667pt;}
.y7f{bottom:158.702667pt;}
.y13d{bottom:158.978667pt;}
.y143{bottom:159.880000pt;}
.y4e{bottom:161.708000pt;}
.ycb{bottom:166.674667pt;}
.y9c{bottom:166.798667pt;}
.ydc{bottom:167.576000pt;}
.yb8{bottom:167.700000pt;}
.y161{bottom:169.665333pt;}
.y76{bottom:170.356000pt;}
.y17a{bottom:170.566667pt;}
.y183{bottom:173.762667pt;}
.yf1{bottom:177.185333pt;}
.y21{bottom:177.361333pt;}
.y102{bottom:178.086667pt;}
.y7e{bottom:178.966667pt;}
.y13c{bottom:179.242667pt;}
.y142{bottom:180.144000pt;}
.y4d{bottom:181.972000pt;}
.yca{bottom:186.938667pt;}
.y9b{bottom:187.062667pt;}
.ydb{bottom:187.840000pt;}
.yb7{bottom:187.964000pt;}
.y11b{bottom:188.121333pt;}
.y160{bottom:189.929333pt;}
.y75{bottom:190.620000pt;}
.y179{bottom:190.830667pt;}
.y182{bottom:194.026667pt;}
.yf0{bottom:197.449333pt;}
.y20{bottom:197.625333pt;}
.y101{bottom:198.350667pt;}
.y7d{bottom:199.230667pt;}
.y4c{bottom:202.236000pt;}
.yc9{bottom:207.202667pt;}
.y9a{bottom:207.326667pt;}
.yda{bottom:208.104000pt;}
.yb6{bottom:208.228000pt;}
.y11a{bottom:208.385333pt;}
.y14a{bottom:208.529333pt;}
.y15f{bottom:210.193333pt;}
.y74{bottom:210.884000pt;}
.y178{bottom:211.094667pt;}
.y181{bottom:214.292000pt;}
.yef{bottom:217.713333pt;}
.y1f{bottom:217.889333pt;}
.y100{bottom:218.614667pt;}
.y4b{bottom:222.500000pt;}
.yc8{bottom:227.466667pt;}
.y99{bottom:227.592000pt;}
.yd9{bottom:228.368000pt;}
.yb5{bottom:228.493333pt;}
.y119{bottom:228.649333pt;}
.y7c{bottom:228.793333pt;}
.y15e{bottom:230.457333pt;}
.y73{bottom:231.148000pt;}
.y177{bottom:231.358667pt;}
.y13b{bottom:232.289333pt;}
.y180{bottom:234.556000pt;}
.yee{bottom:237.978667pt;}
.y1e{bottom:238.154667pt;}
.yff{bottom:238.880000pt;}
.y4a{bottom:242.764000pt;}
.yc7{bottom:247.732000pt;}
.y98{bottom:247.856000pt;}
.yd8{bottom:248.632000pt;}
.yb4{bottom:248.757333pt;}
.y118{bottom:248.913333pt;}
.y15d{bottom:250.722667pt;}
.y72{bottom:251.412000pt;}
.y176{bottom:251.624000pt;}
.y13a{bottom:252.553333pt;}
.yed{bottom:258.242667pt;}
.y1d{bottom:258.418667pt;}
.yfe{bottom:259.144000pt;}
.y49{bottom:263.029333pt;}
.y187{bottom:263.105333pt;}
.y17f{bottom:264.118667pt;}
.yc6{bottom:267.996000pt;}
.y97{bottom:268.120000pt;}
.yd7{bottom:268.897333pt;}
.yb3{bottom:269.021333pt;}
.y117{bottom:269.177333pt;}
.y15c{bottom:270.986667pt;}
.y71{bottom:271.676000pt;}
.y175{bottom:271.888000pt;}
.y139{bottom:272.817333pt;}
.yec{bottom:278.506667pt;}
.yfd{bottom:279.408000pt;}
.y48{bottom:283.293333pt;}
.yc5{bottom:288.260000pt;}
.y96{bottom:288.384000pt;}
.yd6{bottom:289.161333pt;}
.yb2{bottom:289.285333pt;}
.y116{bottom:289.441333pt;}
.y15b{bottom:291.250667pt;}
.y70{bottom:291.940000pt;}
.y174{bottom:292.152000pt;}
.y138{bottom:293.081333pt;}
.yeb{bottom:298.770667pt;}
.yfc{bottom:299.672000pt;}
.y47{bottom:303.557333pt;}
.y148{bottom:303.633333pt;}
.y1c{bottom:303.921333pt;}
.yc4{bottom:308.524000pt;}
.y95{bottom:308.648000pt;}
.yd5{bottom:309.425333pt;}
.yb1{bottom:309.549333pt;}
.y115{bottom:309.705333pt;}
.y15a{bottom:311.514667pt;}
.y6f{bottom:312.204000pt;}
.y173{bottom:312.416000pt;}
.y137{bottom:313.345333pt;}
.yea{bottom:319.034667pt;}
.yfb{bottom:319.936000pt;}
.y46{bottom:323.821333pt;}
.yc3{bottom:328.788000pt;}
.y94{bottom:328.912000pt;}
.yd4{bottom:329.689333pt;}
.yb0{bottom:329.813333pt;}
.y114{bottom:329.970667pt;}
.y159{bottom:331.778667pt;}
.y6e{bottom:332.469333pt;}
.y172{bottom:332.680000pt;}
.y136{bottom:333.609333pt;}
.ye9{bottom:339.298667pt;}
.yfa{bottom:340.200000pt;}
.y1b{bottom:340.520000pt;}
.y45{bottom:344.085333pt;}
.yc2{bottom:349.052000pt;}
.y93{bottom:349.176000pt;}
.yd3{bottom:349.953333pt;}
.yaf{bottom:350.077333pt;}
.y113{bottom:350.234667pt;}
.y158{bottom:352.042667pt;}
.y6d{bottom:352.733333pt;}
.y171{bottom:352.944000pt;}
.y135{bottom:353.873333pt;}
.y1a{bottom:357.030667pt;}
.ye8{bottom:359.562667pt;}
.yf9{bottom:360.464000pt;}
.y44{bottom:364.349333pt;}
.yc1{bottom:369.316000pt;}
.y19{bottom:369.322667pt;}
.y92{bottom:369.440000pt;}
.yd2{bottom:370.217333pt;}
.yae{bottom:370.341333pt;}
.y112{bottom:370.498667pt;}
.y157{bottom:372.306667pt;}
.y6c{bottom:372.997333pt;}
.y170{bottom:373.208000pt;}
.y134{bottom:374.137333pt;}
.ye7{bottom:379.826667pt;}
.yf8{bottom:380.728000pt;}
.y43{bottom:384.613333pt;}
.y18{bottom:388.836000pt;}
.yc0{bottom:389.580000pt;}
.y91{bottom:389.704000pt;}
.yd1{bottom:390.481333pt;}
.yad{bottom:390.605333pt;}
.y111{bottom:390.762667pt;}
.y156{bottom:392.570667pt;}
.y6b{bottom:393.261333pt;}
.y16f{bottom:393.472000pt;}
.y133{bottom:394.401333pt;}
.ye6{bottom:400.090667pt;}
.yf7{bottom:400.992000pt;}
.y42{bottom:404.877333pt;}
.ybf{bottom:409.844000pt;}
.y90{bottom:409.968000pt;}
.y17{bottom:410.352000pt;}
.yd0{bottom:410.745333pt;}
.yac{bottom:410.869333pt;}
.y110{bottom:411.026667pt;}
.y155{bottom:412.834667pt;}
.y6a{bottom:413.525333pt;}
.y16e{bottom:413.736000pt;}
.y132{bottom:414.665333pt;}
.ye5{bottom:420.354667pt;}
.yf6{bottom:421.256000pt;}
.y41{bottom:425.141333pt;}
.ybe{bottom:430.108000pt;}
.y8f{bottom:430.232000pt;}
.yab{bottom:431.133333pt;}
.y10f{bottom:431.290667pt;}
.y154{bottom:433.098667pt;}
.y69{bottom:433.789333pt;}
.y16d{bottom:434.000000pt;}
.y131{bottom:434.929333pt;}
.y16{bottom:441.820000pt;}
.y40{bottom:445.405333pt;}
.y8e{bottom:450.496000pt;}
.yaa{bottom:451.397333pt;}
.y10e{bottom:451.554667pt;}
.y153{bottom:453.362667pt;}
.y68{bottom:454.053333pt;}
.y16c{bottom:454.264000pt;}
.y130{bottom:455.193333pt;}
.ye4{bottom:457.460000pt;}
.y15{bottom:461.333333pt;}
.y3f{bottom:465.669333pt;}
.y189{bottom:465.746667pt;}
.y8d{bottom:470.760000pt;}
.ya9{bottom:471.661333pt;}
.y10d{bottom:471.818667pt;}
.y152{bottom:473.626667pt;}
.y67{bottom:474.317333pt;}
.y16b{bottom:474.528000pt;}
.y12f{bottom:475.458667pt;}
.ye3{bottom:477.724000pt;}
.y14{bottom:480.848000pt;}
.y3e{bottom:485.933333pt;}
.y8c{bottom:491.024000pt;}
.ya8{bottom:491.925333pt;}
.y10c{bottom:492.082667pt;}
.y151{bottom:493.890667pt;}
.y66{bottom:494.581333pt;}
.y16a{bottom:494.792000pt;}
.y12e{bottom:495.722667pt;}
.ye2{bottom:497.989333pt;}
.y13{bottom:500.361333pt;}
.y3d{bottom:506.197333pt;}
.y8b{bottom:511.289333pt;}
.ya7{bottom:512.190667pt;}
.y10b{bottom:512.346667pt;}
.y150{bottom:514.156000pt;}
.y65{bottom:514.845333pt;}
.y169{bottom:515.056000pt;}
.y12d{bottom:515.986667pt;}
.y12{bottom:519.874667pt;}
.y3c{bottom:526.461333pt;}
.ye1{bottom:527.550667pt;}
.y8a{bottom:531.553333pt;}
.ya6{bottom:532.454667pt;}
.y10a{bottom:532.610667pt;}
.y14f{bottom:534.420000pt;}
.y64{bottom:535.109333pt;}
.y168{bottom:535.321333pt;}
.y12c{bottom:536.250667pt;}
.y11{bottom:539.388000pt;}
.y3b{bottom:546.726667pt;}
.y89{bottom:551.817333pt;}
.ya5{bottom:552.718667pt;}
.y109{bottom:552.874667pt;}
.y14e{bottom:554.684000pt;}
.y63{bottom:555.373333pt;}
.y167{bottom:555.585333pt;}
.y12b{bottom:556.514667pt;}
.y10{bottom:558.901333pt;}
.y3a{bottom:566.990667pt;}
.y88{bottom:572.081333pt;}
.y108{bottom:572.237333pt;}
.ya4{bottom:572.982667pt;}
.y14d{bottom:574.948000pt;}
.y62{bottom:575.637333pt;}
.y166{bottom:575.849333pt;}
.y12a{bottom:576.778667pt;}
.yf{bottom:578.416000pt;}
.y39{bottom:587.254667pt;}
.y87{bottom:592.345333pt;}
.y107{bottom:592.501333pt;}
.ya3{bottom:593.246667pt;}
.y14c{bottom:595.212000pt;}
.y61{bottom:595.902667pt;}
.y129{bottom:597.042667pt;}
.ye{bottom:597.929333pt;}
.y38{bottom:607.518667pt;}
.y86{bottom:612.609333pt;}
.ya2{bottom:613.510667pt;}
.y14b{bottom:615.476000pt;}
.y60{bottom:616.166667pt;}
.y128{bottom:617.306667pt;}
.yd{bottom:617.442667pt;}
.y37{bottom:627.782667pt;}
.ybd{bottom:627.858667pt;}
.y85{bottom:632.873333pt;}
.ya1{bottom:633.774667pt;}
.y5f{bottom:636.430667pt;}
.yc{bottom:636.956000pt;}
.y127{bottom:637.570667pt;}
.y36{bottom:648.046667pt;}
.y84{bottom:653.137333pt;}
.yb{bottom:656.469333pt;}
.y5e{bottom:656.694667pt;}
.y126{bottom:657.834667pt;}
.y35{bottom:668.310667pt;}
.ya{bottom:675.982667pt;}
.y5d{bottom:676.958667pt;}
.y125{bottom:678.098667pt;}
.y34{bottom:688.574667pt;}
.y9{bottom:695.497333pt;}
.y5c{bottom:697.222667pt;}
.y124{bottom:698.362667pt;}
.y33{bottom:708.838667pt;}
.y18a{bottom:708.914667pt;}
.y8{bottom:715.010667pt;}
.y123{bottom:717.725333pt;}
.y32{bottom:729.102667pt;}
.y5b{bottom:733.426667pt;}
.y7{bottom:734.524000pt;}
.y122{bottom:737.989333pt;}
.y31{bottom:749.366667pt;}
.y5a{bottom:753.690667pt;}
.y6{bottom:754.037333pt;}
.y30{bottom:769.630667pt;}
.y59{bottom:773.954667pt;}
.y2f{bottom:789.894667pt;}
.y58{bottom:794.218667pt;}
.y2e{bottom:810.160000pt;}
.y57{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.y2d{bottom:830.424000pt;}
.y56{bottom:834.746667pt;}
.y55{bottom:834.748000pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y2b{bottom:870.952000pt;}
.y3{bottom:885.776000pt;}
.y2a{bottom:891.216000pt;}
.y29{bottom:911.480000pt;}
.y188{bottom:931.644000pt;}
.y28{bottom:931.744000pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.715502pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.h3{height:47.523004pt;}
.h7{height:47.730226pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:111.354667pt;}
.x3{left:113.385333pt;}
.x25{left:122.906667pt;}
.x24{left:124.181333pt;}
.x11{left:134.286667pt;}
.xb{left:136.062667pt;}
.x6{left:158.261333pt;}
.x1c{left:160.912000pt;}
.xa{left:162.052000pt;}
.x19{left:168.584000pt;}
.x13{left:169.769333pt;}
.x12{left:173.160000pt;}
.x8{left:205.232000pt;}
.x20{left:216.777333pt;}
.x1f{left:218.025333pt;}
.x27{left:259.797333pt;}
.x26{left:261.072000pt;}
.x1e{left:267.918667pt;}
.x1d{left:269.194667pt;}
.x15{left:277.916000pt;}
.x18{left:280.886667pt;}
.x4{left:312.596000pt;}
.x21{left:326.429333pt;}
.x17{left:329.818667pt;}
.x5{left:337.182667pt;}
.xd{left:359.442667pt;}
.x7{left:364.560000pt;}
.x9{left:384.352000pt;}
.x16{left:397.898667pt;}
.xe{left:402.290667pt;}
.xc{left:412.752000pt;}
.x22{left:433.397333pt;}
.x10{left:435.429333pt;}
.x2{left:510.021333pt;}
.xf{left:513.840000pt;}
.x1b{left:520.254667pt;}
.x1a{left:521.530667pt;}
.x23{left:523.238667pt;}
.x1{left:618.953333pt;}
}




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