
    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_339ae2885c7ef5a4a0feaedb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_88c062487d75e15ba75a0339.woff')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_f187d2b4598d38f5a934e87c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.852000;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_de971bf9b2505619f5647976.woff')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_d10e052d32aed506db9ecb5a.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a132815f8b43d155f91c1ce2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.431000;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_6d870411e8921f1e290964b2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904000;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m15{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);}
.me{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);}
.m24{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);}
.ma{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);}
.m10{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);}
.m19{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);}
.md{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);}
.m22{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);}
.m21{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);}
.m28{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);}
.m8{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);}
.m13{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);}
.m7{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);}
.m1b{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);}
.m1f{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);}
.m12{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);}
.m16{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);}
.m3{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);}
.m6{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);}
.m5{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);}
.m1e{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m18{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);}
.m20{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);}
.m27{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m29{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1c{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);}
.m1d{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);}
.m14{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);}
.m1{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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987468px;}
.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;}
}
.ws64{word-spacing:-17.932800px;}
.ws61{word-spacing:-14.943900px;}
.ws43{word-spacing:-12.230686px;}
.ws1a{word-spacing:-3.108331px;}
.ws27{word-spacing:-2.929004px;}
.ws8d{word-spacing:-2.689902px;}
.ws28{word-spacing:-2.630126px;}
.ws8a{word-spacing:-2.570351px;}
.ws7{word-spacing:-2.510575px;}
.ws6{word-spacing:-2.391024px;}
.ws1e{word-spacing:-2.271473px;}
.ws11{word-spacing:-2.211697px;}
.ws50{word-spacing:-1.972595px;}
.ws91{word-spacing:-1.793268px;}
.ws57{word-spacing:-1.673717px;}
.ws5b{word-spacing:-1.554166px;}
.ws52{word-spacing:-1.494390px;}
.ws59{word-spacing:-1.374839px;}
.ws39{word-spacing:-1.195512px;}
.ws2c{word-spacing:-1.135736px;}
.ws79{word-spacing:-1.075961px;}
.ws5{word-spacing:-1.016185px;}
.ws68{word-spacing:-0.956410px;}
.ws38{word-spacing:-0.836858px;}
.ws34{word-spacing:-0.657532px;}
.ws71{word-spacing:-0.597756px;}
.ws1c{word-spacing:-0.418429px;}
.ws21{word-spacing:-0.358654px;}
.ws1b{word-spacing:-0.298878px;}
.ws2a{word-spacing:-0.239102px;}
.ws3{word-spacing:-0.179327px;}
.ws4{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.059776px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.059776px;}
.ws46{word-spacing:0.097845px;}
.wsb{word-spacing:0.119551px;}
.ws19{word-spacing:0.179327px;}
.ws15{word-spacing:0.239102px;}
.wsd{word-spacing:0.298878px;}
.ws16{word-spacing:0.358654px;}
.wsa{word-spacing:0.418429px;}
.ws3f{word-spacing:0.478205px;}
.ws5c{word-spacing:0.537980px;}
.ws2e{word-spacing:0.597756px;}
.ws77{word-spacing:0.657532px;}
.ws25{word-spacing:0.717307px;}
.ws41{word-spacing:0.777083px;}
.ws10{word-spacing:0.836858px;}
.ws4e{word-spacing:0.896634px;}
.wsc{word-spacing:0.956410px;}
.ws66{word-spacing:1.016185px;}
.ws65{word-spacing:1.135736px;}
.ws26{word-spacing:1.255288px;}
.ws31{word-spacing:1.374839px;}
.ws2b{word-spacing:1.434614px;}
.ws51{word-spacing:1.494390px;}
.ws2f{word-spacing:1.554166px;}
.ws2d{word-spacing:1.613941px;}
.ws29{word-spacing:1.733492px;}
.ws67{word-spacing:1.793268px;}
.ws40{word-spacing:1.853044px;}
.ws3d{word-spacing:1.912819px;}
.ws8b{word-spacing:2.032370px;}
.ws74{word-spacing:2.211697px;}
.ws36{word-spacing:2.331248px;}
.ws76{word-spacing:2.391024px;}
.ws55{word-spacing:2.630126px;}
.ws23{word-spacing:2.689902px;}
.ws56{word-spacing:2.749678px;}
.ws7b{word-spacing:2.929004px;}
.ws44{word-spacing:2.935365px;}
.ws12{word-spacing:2.988780px;}
.ws93{word-spacing:3.048556px;}
.ws86{word-spacing:3.168107px;}
.ws85{word-spacing:3.227882px;}
.ws2{word-spacing:3.347434px;}
.ws35{word-spacing:3.466985px;}
.ws4a{word-spacing:3.586536px;}
.ws48{word-spacing:3.646312px;}
.ws5a{word-spacing:3.706087px;}
.ws14{word-spacing:3.765863px;}
.ws53{word-spacing:3.885414px;}
.ws54{word-spacing:3.945190px;}
.ws24{word-spacing:4.064741px;}
.ws37{word-spacing:4.184292px;}
.ws3e{word-spacing:4.244068px;}
.ws70{word-spacing:4.303843px;}
.ws3b{word-spacing:4.542946px;}
.ws58{word-spacing:4.722272px;}
.ws4c{word-spacing:4.841824px;}
.ws73{word-spacing:4.901599px;}
.ws83{word-spacing:5.200477px;}
.ws22{word-spacing:5.260253px;}
.ws1d{word-spacing:5.320028px;}
.ws62{word-spacing:5.439580px;}
.wse{word-spacing:5.618906px;}
.ws8{word-spacing:5.738458px;}
.ws5e{word-spacing:5.858009px;}
.ws49{word-spacing:6.037336px;}
.ws7e{word-spacing:6.097111px;}
.ws20{word-spacing:6.156887px;}
.ws92{word-spacing:6.515540px;}
.ws72{word-spacing:6.575316px;}
.ws6b{word-spacing:6.814418px;}
.ws78{word-spacing:7.053521px;}
.ws6a{word-spacing:7.352399px;}
.ws5f{word-spacing:7.711052px;}
.ws7a{word-spacing:7.830604px;}
.ws90{word-spacing:8.189257px;}
.ws30{word-spacing:8.846789px;}
.ws94{word-spacing:8.966340px;}
.ws8f{word-spacing:10.161852px;}
.ws1f{word-spacing:12.552876px;}
.ws69{word-spacing:13.867939px;}
.ws6c{word-spacing:14.525471px;}
.ws81{word-spacing:14.585246px;}
.ws6f{word-spacing:14.645022px;}
.ws33{word-spacing:14.704798px;}
.ws63{word-spacing:14.764573px;}
.ws80{word-spacing:14.824349px;}
.ws17{word-spacing:14.884124px;}
.ws4f{word-spacing:14.943900px;}
.ws6e{word-spacing:15.063451px;}
.ws18{word-spacing:15.242778px;}
.ws5d{word-spacing:15.422105px;}
.ws84{word-spacing:15.541656px;}
.ws88{word-spacing:15.900310px;}
.ws7f{word-spacing:16.199188px;}
.ws32{word-spacing:16.258963px;}
.ws82{word-spacing:16.438290px;}
.ws8c{word-spacing:16.856719px;}
.ws8e{word-spacing:17.215373px;}
.ws75{word-spacing:17.633802px;}
.ws3c{word-spacing:17.813129px;}
.ws13{word-spacing:17.872904px;}
.ws87{word-spacing:18.052231px;}
.ws89{word-spacing:18.410885px;}
.ws4b{word-spacing:18.590212px;}
.ws6d{word-spacing:19.128192px;}
.ws4d{word-spacing:19.725948px;}
.ws3a{word-spacing:20.622582px;}
.ws7d{word-spacing:20.981236px;}
.ws7c{word-spacing:21.399665px;}
.ws60{word-spacing:22.595177px;}
.ws95{word-spacing:23.790689px;}
.wsf{word-spacing:53.798400px;}
.ws42{word-spacing:174.743153px;}
.ws47{word-spacing:266.722500px;}
.ws45{word-spacing:277.340436px;}
._26{margin-left:-7.770828px;}
._20{margin-left:-6.754643px;}
._6{margin-left:-5.748017px;}
._2{margin-left:-3.821819px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.032924px;}
._f{width:1.506349px;}
._9{width:2.530674px;}
._12{width:13.270183px;}
._c{width:14.992420px;}
._a{width:17.004968px;}
._5{width:18.649987px;}
._4{width:20.244810px;}
._8{width:22.236523px;}
._1c{width:23.850464px;}
._11{width:24.891528px;}
._1d{width:26.198452px;}
._21{width:27.928124px;}
._22{width:29.887800px;}
._e{width:31.023536px;}
._1{width:32.743691px;}
._1e{width:33.861688px;}
._d{width:35.024682px;}
._7{width:36.343565px;}
._25{width:38.665234px;}
._24{width:39.870325px;}
._1f{width:42.022247px;}
._23{width:43.524776px;}
._27{width:45.211872px;}
._28{width:46.492498px;}
._29{width:48.982974px;}
._2a{width:50.450606px;}
._10{width:71.731200px;}
._19{width:97.156276px;}
._1a{width:133.653277px;}
._18{width:159.379392px;}
._15{width:182.852631px;}
._17{width:188.496185px;}
._16{width:302.799110px;}
._13{width:336.781567px;}
._14{width:351.280445px;}
._1b{width:358.434080px;}
._b{width:640.837648px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs6{font-size:48.362645px;}
.fs7{font-size:48.922742px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y62{bottom:63.168000px;}
.y2c{bottom:78.184500px;}
.y61{bottom:108.000000px;}
.y60{bottom:124.363500px;}
.y2b{bottom:125.430000px;}
.y5f{bottom:140.727000px;}
.y2a{bottom:145.360500px;}
.yb7{bottom:147.031500px;}
.y8b{bottom:157.090500px;}
.y29{bottom:161.724000px;}
.yb6{bottom:163.395000px;}
.y5e{bottom:165.310500px;}
.y184{bottom:170.517000px;}
.y15e{bottom:171.550500px;}
.y8a{bottom:173.454000px;}
.y28{bottom:178.087500px;}
.yb5{bottom:179.758500px;}
.y5d{bottom:181.674000px;}
.y133{bottom:184.209000px;}
.y183{bottom:186.880500px;}
.y15d{bottom:187.914000px;}
.ye1{bottom:189.817500px;}
.y27{bottom:194.451000px;}
.y5c{bottom:198.037500px;}
.y132{bottom:200.572500px;}
.y10b{bottom:201.924000px;}
.y182{bottom:203.244000px;}
.y15c{bottom:204.277500px;}
.ye0{bottom:206.182500px;}
.y26{bottom:210.814500px;}
.yb4{bottom:213.634500px;}
.y5b{bottom:214.401000px;}
.y10a{bottom:218.287500px;}
.y15b{bottom:220.641000px;}
.ydf{bottom:222.546000px;}
.y131{bottom:227.689500px;}
.yb3{bottom:229.998000px;}
.y5a{bottom:230.764500px;}
.y181{bottom:233.034000px;}
.y109{bottom:234.651000px;}
.y25{bottom:235.398000px;}
.yde{bottom:238.909500px;}
.y130{bottom:244.053000px;}
.y59{bottom:247.128000px;}
.y180{bottom:249.397500px;}
.y15a{bottom:251.463000px;}
.y24{bottom:251.761500px;}
.ydd{bottom:255.273000px;}
.y108{bottom:263.119500px;}
.y58{bottom:263.491500px;}
.y159{bottom:267.826500px;}
.y23{bottom:268.125000px;}
.yb2{bottom:269.145000px;}
.y12f{bottom:271.171500px;}
.ydc{bottom:271.636500px;}
.y17f{bottom:279.187500px;}
.y107{bottom:279.483000px;}
.y57{bottom:279.855000px;}
.y158{bottom:284.190000px;}
.y22{bottom:284.488500px;}
.y12e{bottom:287.535000px;}
.ydb{bottom:288.000000px;}
.y17e{bottom:295.551000px;}
.y106{bottom:295.846500px;}
.y56{bottom:296.218500px;}
.y21{bottom:300.852000px;}
.y12d{bottom:303.898500px;}
.y55{bottom:312.583500px;}
.y157{bottom:315.013500px;}
.y20{bottom:317.215500px;}
.yb1{bottom:319.194000px;}
.y105{bottom:324.316500px;}
.y17d{bottom:325.341000px;}
.y89{bottom:328.947000px;}
.y12c{bottom:331.017000px;}
.y156{bottom:331.377000px;}
.y1f{bottom:333.579000px;}
.yb0{bottom:335.559000px;}
.y17c{bottom:341.704500px;}
.y88{bottom:345.310500px;}
.y12b{bottom:347.380500px;}
.y54{bottom:347.403000px;}
.y155{bottom:347.740500px;}
.y1e{bottom:349.944000px;}
.yaf{bottom:351.922500px;}
.y104{bottom:352.785000px;}
.y17b{bottom:358.068000px;}
.y87{bottom:361.674000px;}
.y12a{bottom:363.744000px;}
.y154{bottom:364.104000px;}
.y1d{bottom:366.307500px;}
.yae{bottom:368.286000px;}
.y86{bottom:378.037500px;}
.y153{bottom:380.467500px;}
.y103{bottom:381.253500px;}
.y1c{bottom:382.671000px;}
.yad{bottom:384.649500px;}
.y17a{bottom:387.858000px;}
.y53{bottom:390.243000px;}
.y129{bottom:390.861000px;}
.yda{bottom:394.401000px;}
.y102{bottom:397.618500px;}
.y85{bottom:402.619500px;}
.y179{bottom:404.221500px;}
.y52{bottom:406.606500px;}
.y128{bottom:407.226000px;}
.yac{bottom:409.231500px;}
.yd9{bottom:410.764500px;}
.y152{bottom:411.289500px;}
.y101{bottom:413.982000px;}
.y1b{bottom:416.899500px;}
.y84{bottom:418.983000px;}
.y178{bottom:420.585000px;}
.y51{bottom:422.971500px;}
.y127{bottom:423.589500px;}
.yab{bottom:425.595000px;}
.yd8{bottom:427.128000px;}
.y151{bottom:427.653000px;}
.y83{bottom:435.348000px;}
.y50{bottom:439.335000px;}
.yaa{bottom:441.958500px;}
.y100{bottom:442.450500px;}
.yd7{bottom:443.491500px;}
.y150{bottom:444.016500px;}
.y177{bottom:450.375000px;}
.y126{bottom:450.706500px;}
.y4f{bottom:455.698500px;}
.ya9{bottom:458.323500px;}
.yff{bottom:458.814000px;}
.yd6{bottom:459.855000px;}
.y14f{bottom:460.381500px;}
.y1a{bottom:465.298500px;}
.y176{bottom:466.738500px;}
.y125{bottom:467.070000px;}
.y82{bottom:470.124000px;}
.y19f{bottom:470.959500px;}
.y4e{bottom:472.062000px;}
.ya8{bottom:474.687000px;}
.yfe{bottom:475.177500px;}
.y14e{bottom:476.745000px;}
.y19{bottom:481.662000px;}
.y175{bottom:483.102000px;}
.y124{bottom:483.433500px;}
.yd5{bottom:484.438500px;}
.y19e{bottom:487.323000px;}
.y4d{bottom:488.425500px;}
.ya7{bottom:491.050500px;}
.y14d{bottom:493.108500px;}
.y18{bottom:498.025500px;}
.y174{bottom:499.465500px;}
.yd4{bottom:500.802000px;}
.yfd{bottom:503.647500px;}
.y19d{bottom:503.686500px;}
.y4c{bottom:504.789000px;}
.ya6{bottom:507.414000px;}
.y123{bottom:510.552000px;}
.y81{bottom:512.892000px;}
.y17{bottom:514.389000px;}
.yd3{bottom:517.165500px;}
.y4b{bottom:521.152500px;}
.ya5{bottom:523.777500px;}
.y14c{bottom:523.930500px;}
.y122{bottom:526.915500px;}
.y80{bottom:529.255500px;}
.y16{bottom:530.752500px;}
.y19c{bottom:532.005000px;}
.yfc{bottom:532.116000px;}
.yd2{bottom:533.529000px;}
.y4a{bottom:537.516000px;}
.ya4{bottom:540.141000px;}
.y14b{bottom:540.294000px;}
.y121{bottom:543.279000px;}
.y7f{bottom:545.619000px;}
.y15{bottom:547.116000px;}
.y19b{bottom:548.368500px;}
.yfb{bottom:548.479500px;}
.yd1{bottom:549.892500px;}
.y49{bottom:553.879500px;}
.ya3{bottom:556.504500px;}
.y14a{bottom:556.657500px;}
.y7e{bottom:561.982500px;}
.y14{bottom:563.479500px;}
.y19a{bottom:564.732000px;}
.yfa{bottom:564.843000px;}
.yd0{bottom:566.256000px;}
.y48{bottom:570.243000px;}
.y120{bottom:570.397500px;}
.ya2{bottom:572.868000px;}
.y149{bottom:573.021000px;}
.y7d{bottom:578.346000px;}
.y13{bottom:579.844500px;}
.y47{bottom:586.606500px;}
.y11f{bottom:586.761000px;}
.ya1{bottom:589.231500px;}
.y199{bottom:593.050500px;}
.yf9{bottom:593.311500px;}
.y7c{bottom:594.709500px;}
.y12{bottom:596.208000px;}
.ycf{bottom:602.803500px;}
.y148{bottom:603.844500px;}
.ya0{bottom:605.595000px;}
.y173{bottom:608.136000px;}
.y198{bottom:609.415500px;}
.yf8{bottom:609.675000px;}
.y7b{bottom:611.073000px;}
.y46{bottom:611.190000px;}
.y11{bottom:612.571500px;}
.y11e{bottom:613.878000px;}
.y147{bottom:620.208000px;}
.y9f{bottom:621.958500px;}
.y172{bottom:624.499500px;}
.yf7{bottom:626.040000px;}
.y7a{bottom:627.436500px;}
.y45{bottom:627.553500px;}
.y10{bottom:628.935000px;}
.y11d{bottom:630.241500px;}
.y146{bottom:636.571500px;}
.y197{bottom:637.734000px;}
.y9e{bottom:638.323500px;}
.y171{bottom:640.863000px;}
.yf6{bottom:642.403500px;}
.y79{bottom:643.800000px;}
.y44{bottom:643.917000px;}
.yf{bottom:645.298500px;}
.y11c{bottom:646.605000px;}
.yce{bottom:648.522000px;}
.y145{bottom:652.935000px;}
.y196{bottom:654.097500px;}
.y9d{bottom:654.687000px;}
.y78{bottom:660.165000px;}
.y43{bottom:660.280500px;}
.ye{bottom:661.662000px;}
.ycd{bottom:664.885500px;}
.y144{bottom:669.298500px;}
.y170{bottom:670.653000px;}
.yf5{bottom:670.872000px;}
.y9c{bottom:671.050500px;}
.y11b{bottom:673.723500px;}
.y42{bottom:676.644000px;}
.yd{bottom:678.025500px;}
.ycc{bottom:681.249000px;}
.y195{bottom:682.416000px;}
.y77{bottom:684.747000px;}
.y143{bottom:685.662000px;}
.y16f{bottom:687.016500px;}
.yf4{bottom:687.235500px;}
.y41{bottom:693.007500px;}
.yc{bottom:694.389000px;}
.ycb{bottom:697.614000px;}
.y194{bottom:698.779500px;}
.y11a{bottom:700.840500px;}
.y76{bottom:701.110500px;}
.y16e{bottom:703.380000px;}
.yf3{bottom:703.599000px;}
.y40{bottom:709.372500px;}
.y9b{bottom:710.196000px;}
.yb{bottom:710.752500px;}
.yca{bottom:713.977500px;}
.y193{bottom:715.143000px;}
.y142{bottom:716.484000px;}
.y75{bottom:717.474000px;}
.y3f{bottom:725.736000px;}
.ya{bottom:727.116000px;}
.y119{bottom:727.959000px;}
.yc9{bottom:730.341000px;}
.yf2{bottom:732.069000px;}
.y141{bottom:732.849000px;}
.y16d{bottom:733.170000px;}
.y74{bottom:733.837500px;}
.y3e{bottom:742.099500px;}
.y192{bottom:743.461500px;}
.y9{bottom:743.479500px;}
.yc8{bottom:746.704500px;}
.yf1{bottom:748.432500px;}
.y16c{bottom:749.533500px;}
.y73{bottom:750.201000px;}
.y118{bottom:755.076000px;}
.y3d{bottom:758.463000px;}
.y191{bottom:759.825000px;}
.y9a{bottom:760.246500px;}
.yc7{bottom:763.068000px;}
.y140{bottom:763.671000px;}
.yf0{bottom:764.796000px;}
.y72{bottom:766.566000px;}
.y190{bottom:776.190000px;}
.y99{bottom:776.610000px;}
.y8{bottom:777.673500px;}
.y16b{bottom:779.323500px;}
.yc6{bottom:779.431500px;}
.y13f{bottom:780.034500px;}
.yef{bottom:781.159500px;}
.y117{bottom:782.194500px;}
.y71{bottom:782.929500px;}
.y3c{bottom:783.045000px;}
.y98{bottom:792.973500px;}
.y16a{bottom:795.687000px;}
.yc5{bottom:795.795000px;}
.y70{bottom:799.293000px;}
.y3b{bottom:799.408500px;}
.y18f{bottom:804.508500px;}
.yee{bottom:807.660000px;}
.y116{bottom:809.311500px;}
.y97{bottom:809.337000px;}
.y13e{bottom:810.856500px;}
.yc4{bottom:812.158500px;}
.y6f{bottom:815.656500px;}
.y3a{bottom:815.772000px;}
.y18e{bottom:820.872000px;}
.y169{bottom:825.477000px;}
.y115{bottom:825.676500px;}
.y96{bottom:825.700500px;}
.y13d{bottom:827.220000px;}
.y6e{bottom:832.020000px;}
.y39{bottom:832.137000px;}
.yc3{bottom:836.742000px;}
.y7{bottom:839.446500px;}
.y168{bottom:841.840500px;}
.y95{bottom:842.064000px;}
.y13c{bottom:843.583500px;}
.y6d{bottom:848.383500px;}
.y38{bottom:848.500500px;}
.y18d{bottom:849.190500px;}
.yed{bottom:850.335000px;}
.y114{bottom:852.793500px;}
.yc2{bottom:853.105500px;}
.y6{bottom:855.810000px;}
.y167{bottom:858.204000px;}
.y18c{bottom:865.554000px;}
.yec{bottom:866.698500px;}
.y113{bottom:869.157000px;}
.yc1{bottom:869.469000px;}
.y5{bottom:872.173500px;}
.y6c{bottom:872.967000px;}
.y13b{bottom:874.407000px;}
.y166{bottom:874.567500px;}
.yeb{bottom:883.062000px;}
.y37{bottom:884.034000px;}
.y112{bottom:885.520500px;}
.yc0{bottom:885.832500px;}
.y4{bottom:888.537000px;}
.y94{bottom:889.174130px;}
.y6b{bottom:889.330500px;}
.y13a{bottom:890.770500px;}
.y165{bottom:890.931000px;}
.y18b{bottom:893.872500px;}
.yea{bottom:899.427000px;}
.y36{bottom:900.397500px;}
.ybf{bottom:902.196000px;}
.y3{bottom:904.900500px;}
.y6a{bottom:905.694000px;}
.y164{bottom:907.294500px;}
.y18a{bottom:910.236000px;}
.y111{bottom:912.639000px;}
.y93{bottom:912.974774px;}
.ye9{bottom:915.790500px;}
.y35{bottom:916.761000px;}
.ybe{bottom:918.559500px;}
.y139{bottom:921.592500px;}
.y69{bottom:922.057500px;}
.y189{bottom:926.601000px;}
.y110{bottom:929.002500px;}
.ye8{bottom:932.154000px;}
.y34{bottom:933.124500px;}
.ybd{bottom:934.923000px;}
.y92{bottom:936.775419px;}
.y163{bottom:937.084500px;}
.y138{bottom:937.956000px;}
.y68{bottom:938.421000px;}
.y188{bottom:942.964500px;}
.y10f{bottom:945.366000px;}
.ye7{bottom:948.517500px;}
.y33{bottom:949.488000px;}
.ybc{bottom:951.286500px;}
.y162{bottom:953.448000px;}
.y137{bottom:954.319500px;}
.y67{bottom:954.784500px;}
.y91{bottom:960.577291px;}
.ye6{bottom:964.881000px;}
.ybb{bottom:967.650000px;}
.y161{bottom:969.811500px;}
.y66{bottom:971.148000px;}
.y187{bottom:971.283000px;}
.y10e{bottom:972.483000px;}
.ye5{bottom:981.244500px;}
.yba{bottom:984.013500px;}
.y90{bottom:984.377935px;}
.y136{bottom:985.143000px;}
.y160{bottom:986.175000px;}
.y186{bottom:987.646500px;}
.y2{bottom:988.542000px;}
.y10d{bottom:988.848000px;}
.y31{bottom:992.341795px;}
.ye4{bottom:997.608000px;}
.y8f{bottom:997.770478px;}
.yb9{bottom:1000.378500px;}
.y135{bottom:1001.506500px;}
.y15f{bottom:1002.538500px;}
.y185{bottom:1004.010000px;}
.y10c{bottom:1005.211500px;}
.y30{bottom:1005.581012px;}
.y65{bottom:1005.924000px;}
.ye3{bottom:1013.971500px;}
.y134{bottom:1017.870000px;}
.y1{bottom:1018.429500px;}
.y2f{bottom:1018.820229px;}
.y8e{bottom:1021.571123px;}
.ye2{bottom:1030.335000px;}
.y2e{bottom:1032.059446px;}
.yb8{bottom:1032.328500px;}
.y32{bottom:1032.815522px;}
.y64{bottom:1048.692000px;}
.y8d{bottom:1053.504000px;}
.y2d{bottom:1056.421352px;}
.y63{bottom:1065.055500px;}
.y8c{bottom:1069.867500px;}
.h6{height:16.677504px;}
.h9{height:33.273500px;}
.h8{height:33.563675px;}
.hc{height:33.658847px;}
.hb{height:33.952383px;}
.h7{height:37.013299px;}
.h4{height:37.299974px;}
.hd{height:41.006062px;}
.h3{height:41.125613px;}
.h2{height:41.484266px;}
.ha{height:41.783144px;}
.h5{height:49.781453px;}
.h1{height:71.684926px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:162.000000px;}
.xa6{left:169.471500px;}
.x1{left:171.448500px;}
.xa4{left:174.463500px;}
.x7a{left:176.944500px;}
.x2e{left:179.733000px;}
.x7b{left:184.428000px;}
.x66{left:189.466500px;}
.xa7{left:193.248000px;}
.x30{left:194.458263px;}
.x7c{left:199.372500px;}
.x67{left:204.411000px;}
.x5d{left:207.384000px;}
.xa3{left:209.220000px;}
.x68{left:211.843500px;}
.xe{left:215.335500px;}
.x2f{left:216.736410px;}
.x7d{left:221.802000px;}
.x4{left:223.374000px;}
.x69{left:226.788000px;}
.x5{left:228.642000px;}
.x5e{left:230.031000px;}
.x2{left:233.656500px;}
.x3d{left:236.292000px;}
.x5f{left:237.735000px;}
.x3e{left:244.276500px;}
.x3f{left:251.748000px;}
.x40{left:259.731000px;}
.x7{left:264.774000px;}
.x7e{left:266.659500px;}
.x8c{left:273.100500px;}
.x41{left:274.675500px;}
.x42{left:282.658500px;}
.x6{left:286.242000px;}
.x8d{left:288.045000px;}
.x7f{left:289.087500px;}
.x82{left:290.193000px;}
.x3{left:292.048500px;}
.x8e{left:295.429500px;}
.x80{left:296.572500px;}
.x43{left:297.603000px;}
.x22{left:301.639500px;}
.x44{left:305.586000px;}
.x8f{left:310.374000px;}
.x81{left:311.517000px;}
.x83{left:313.201500px;}
.x23{left:316.584000px;}
.x90{left:317.758500px;}
.x9e{left:319.296207px;}
.x45{left:320.529000px;}
.x24{left:323.979000px;}
.x46{left:328.513500px;}
.x91{left:332.703000px;}
.x84{left:336.210000px;}
.x25{left:338.923500px;}
.x92{left:340.087500px;}
.x47{left:343.456500px;}
.x16{left:347.590500px;}
.x48{left:351.441000px;}
.x17{left:355.062000px;}
.x85{left:359.218500px;}
.x18{left:362.500500px;}
.x49{left:366.384000px;}
.x19{left:369.973500px;}
.x4a{left:374.367000px;}
.x1a{left:377.412000px;}
.x6a{left:381.202500px;}
.x86{left:382.227000px;}
.x1b{left:384.883500px;}
.x4b{left:389.311500px;}
.x1c{left:392.323500px;}
.x6b{left:396.145500px;}
.x4c{left:397.294500px;}
.x1d{left:399.795000px;}
.x87{left:405.235500px;}
.x37{left:407.644500px;}
.x8a{left:410.104500px;}
.x4d{left:412.239000px;}
.x8b{left:418.893000px;}
.x4e{left:420.222000px;}
.x38{left:422.587500px;}
.xd{left:425.637000px;}
.x4f{left:427.693500px;}
.x39{left:430.123500px;}
.x31{left:432.811499px;}
.x50{left:435.678000px;}
.x9f{left:438.371861px;}
.x88{left:443.187000px;}
.x3a{left:445.066500px;}
.x51{left:450.621000px;}
.x3b{left:452.602500px;}
.x36{left:455.263500px;}
.xa0{left:457.347000px;}
.x6c{left:459.186000px;}
.xa1{left:464.790000px;}
.x89{left:466.195500px;}
.x3c{left:467.547000px;}
.x6d{left:474.129000px;}
.xa2{left:479.734500px;}
.x6e{left:482.512500px;}
.x93{left:489.007500px;}
.xa5{left:490.264500px;}
.x9{left:494.170500px;}
.x6f{left:497.457000px;}
.xa{left:499.438500px;}
.x70{left:505.840500px;}
.xc{left:512.040000px;}
.x52{left:516.138000px;}
.x71{left:520.783500px;}
.x2a{left:529.381500px;}
.x53{left:531.082500px;}
.x54{left:538.512000px;}
.x2b{left:544.324500px;}
.x8{left:546.966000px;}
.x2c{left:551.841000px;}
.x55{left:553.411500px;}
.xb{left:557.038500px;}
.x56{left:560.884500px;}
.x2d{left:566.785500px;}
.x57{left:568.312500px;}
.x58{left:575.784000px;}
.x59{left:583.213500px;}
.x5a{left:590.685000px;}
.x60{left:591.987000px;}
.x5b{left:598.114500px;}
.x72{left:599.149500px;}
.x94{left:605.152500px;}
.x61{left:606.931500px;}
.x1e{left:609.834000px;}
.x5c{left:613.057500px;}
.x62{left:614.956500px;}
.x1f{left:617.305500px;}
.x95{left:620.095500px;}
.x73{left:622.476000px;}
.x20{left:624.744000px;}
.x96{left:627.502500px;}
.x63{left:629.899500px;}
.x21{left:632.217000px;}
.x26{left:635.845500px;}
.x64{left:637.924500px;}
.x97{left:642.445500px;}
.x74{left:645.804000px;}
.x27{left:650.788500px;}
.x65{left:652.869000px;}
.x28{left:658.185000px;}
.x10{left:661.602000px;}
.x98{left:664.795500px;}
.x11{left:669.073500px;}
.x29{left:673.128000px;}
.x12{left:676.542000px;}
.x13{left:684.013500px;}
.x99{left:687.145500px;}
.x14{left:691.482000px;}
.x9a{left:694.552500px;}
.x15{left:698.953500px;}
.x75{left:707.403000px;}
.x9b{left:709.495500px;}
.x32{left:713.580000px;}
.x76{left:715.786500px;}
.x9c{left:716.901000px;}
.x33{left:728.524500px;}
.x77{left:730.729500px;}
.x9d{left:731.845500px;}
.x34{left:735.133500px;}
.x78{left:739.113000px;}
.x35{left:750.076500px;}
.x79{left:754.057500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655527pt;}
.ws64{word-spacing:-15.940267pt;}
.ws61{word-spacing:-13.283467pt;}
.ws43{word-spacing:-10.871720pt;}
.ws1a{word-spacing:-2.762961pt;}
.ws27{word-spacing:-2.603559pt;}
.ws8d{word-spacing:-2.391024pt;}
.ws28{word-spacing:-2.337890pt;}
.ws8a{word-spacing:-2.284756pt;}
.ws7{word-spacing:-2.231622pt;}
.ws6{word-spacing:-2.125355pt;}
.ws1e{word-spacing:-2.019087pt;}
.ws11{word-spacing:-1.965953pt;}
.ws50{word-spacing:-1.753418pt;}
.ws91{word-spacing:-1.594016pt;}
.ws57{word-spacing:-1.487748pt;}
.ws5b{word-spacing:-1.381481pt;}
.ws52{word-spacing:-1.328347pt;}
.ws59{word-spacing:-1.222079pt;}
.ws39{word-spacing:-1.062677pt;}
.ws2c{word-spacing:-1.009543pt;}
.ws79{word-spacing:-0.956410pt;}
.ws5{word-spacing:-0.903276pt;}
.ws68{word-spacing:-0.850142pt;}
.ws38{word-spacing:-0.743874pt;}
.ws34{word-spacing:-0.584473pt;}
.ws71{word-spacing:-0.531339pt;}
.ws1c{word-spacing:-0.371937pt;}
.ws21{word-spacing:-0.318803pt;}
.ws1b{word-spacing:-0.265669pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws3{word-spacing:-0.159402pt;}
.ws4{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.053134pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053134pt;}
.ws46{word-spacing:0.086974pt;}
.wsb{word-spacing:0.106268pt;}
.ws19{word-spacing:0.159402pt;}
.ws15{word-spacing:0.212535pt;}
.wsd{word-spacing:0.265669pt;}
.ws16{word-spacing:0.318803pt;}
.wsa{word-spacing:0.371937pt;}
.ws3f{word-spacing:0.425071pt;}
.ws5c{word-spacing:0.478205pt;}
.ws2e{word-spacing:0.531339pt;}
.ws77{word-spacing:0.584473pt;}
.ws25{word-spacing:0.637606pt;}
.ws41{word-spacing:0.690740pt;}
.ws10{word-spacing:0.743874pt;}
.ws4e{word-spacing:0.797008pt;}
.wsc{word-spacing:0.850142pt;}
.ws66{word-spacing:0.903276pt;}
.ws65{word-spacing:1.009543pt;}
.ws26{word-spacing:1.115811pt;}
.ws31{word-spacing:1.222079pt;}
.ws2b{word-spacing:1.275213pt;}
.ws51{word-spacing:1.328347pt;}
.ws2f{word-spacing:1.381481pt;}
.ws2d{word-spacing:1.434614pt;}
.ws29{word-spacing:1.540882pt;}
.ws67{word-spacing:1.594016pt;}
.ws40{word-spacing:1.647150pt;}
.ws3d{word-spacing:1.700284pt;}
.ws8b{word-spacing:1.806551pt;}
.ws74{word-spacing:1.965953pt;}
.ws36{word-spacing:2.072221pt;}
.ws76{word-spacing:2.125355pt;}
.ws55{word-spacing:2.337890pt;}
.ws23{word-spacing:2.391024pt;}
.ws56{word-spacing:2.444158pt;}
.ws7b{word-spacing:2.603559pt;}
.ws44{word-spacing:2.609213pt;}
.ws12{word-spacing:2.656693pt;}
.ws93{word-spacing:2.709827pt;}
.ws86{word-spacing:2.816095pt;}
.ws85{word-spacing:2.869229pt;}
.ws2{word-spacing:2.975497pt;}
.ws35{word-spacing:3.081764pt;}
.ws4a{word-spacing:3.188032pt;}
.ws48{word-spacing:3.241166pt;}
.ws5a{word-spacing:3.294300pt;}
.ws14{word-spacing:3.347434pt;}
.ws53{word-spacing:3.453701pt;}
.ws54{word-spacing:3.506835pt;}
.ws24{word-spacing:3.613103pt;}
.ws37{word-spacing:3.719371pt;}
.ws3e{word-spacing:3.772505pt;}
.ws70{word-spacing:3.825638pt;}
.ws3b{word-spacing:4.038174pt;}
.ws58{word-spacing:4.197575pt;}
.ws4c{word-spacing:4.303843pt;}
.ws73{word-spacing:4.356977pt;}
.ws83{word-spacing:4.622646pt;}
.ws22{word-spacing:4.675780pt;}
.ws1d{word-spacing:4.728914pt;}
.ws62{word-spacing:4.835182pt;}
.wse{word-spacing:4.994583pt;}
.ws8{word-spacing:5.100851pt;}
.ws5e{word-spacing:5.207119pt;}
.ws49{word-spacing:5.366521pt;}
.ws7e{word-spacing:5.419654pt;}
.ws20{word-spacing:5.472788pt;}
.ws92{word-spacing:5.791591pt;}
.ws72{word-spacing:5.844725pt;}
.ws6b{word-spacing:6.057261pt;}
.ws78{word-spacing:6.269796pt;}
.ws6a{word-spacing:6.535466pt;}
.ws5f{word-spacing:6.854269pt;}
.ws7a{word-spacing:6.960537pt;}
.ws90{word-spacing:7.279340pt;}
.ws30{word-spacing:7.863812pt;}
.ws94{word-spacing:7.970080pt;}
.ws8f{word-spacing:9.032757pt;}
.ws1f{word-spacing:11.158112pt;}
.ws69{word-spacing:12.327057pt;}
.ws6c{word-spacing:12.911530pt;}
.ws81{word-spacing:12.964663pt;}
.ws6f{word-spacing:13.017797pt;}
.ws33{word-spacing:13.070931pt;}
.ws63{word-spacing:13.124065pt;}
.ws80{word-spacing:13.177199pt;}
.ws17{word-spacing:13.230333pt;}
.ws4f{word-spacing:13.283467pt;}
.ws6e{word-spacing:13.389734pt;}
.ws18{word-spacing:13.549136pt;}
.ws5d{word-spacing:13.708538pt;}
.ws84{word-spacing:13.814805pt;}
.ws88{word-spacing:14.133609pt;}
.ws7f{word-spacing:14.399278pt;}
.ws32{word-spacing:14.452412pt;}
.ws82{word-spacing:14.611813pt;}
.ws8c{word-spacing:14.983750pt;}
.ws8e{word-spacing:15.302554pt;}
.ws75{word-spacing:15.674491pt;}
.ws3c{word-spacing:15.833892pt;}
.ws13{word-spacing:15.887026pt;}
.ws87{word-spacing:16.046428pt;}
.ws89{word-spacing:16.365231pt;}
.ws4b{word-spacing:16.524633pt;}
.ws6d{word-spacing:17.002837pt;}
.ws4d{word-spacing:17.534176pt;}
.ws3a{word-spacing:18.331184pt;}
.ws7d{word-spacing:18.649987pt;}
.ws7c{word-spacing:19.021924pt;}
.ws60{word-spacing:20.084602pt;}
.ws95{word-spacing:21.147279pt;}
.wsf{word-spacing:47.820800pt;}
.ws42{word-spacing:155.327247pt;}
.ws47{word-spacing:237.086666pt;}
.ws45{word-spacing:246.524832pt;}
._26{margin-left:-6.907403pt;}
._20{margin-left:-6.004127pt;}
._6{margin-left:-5.109348pt;}
._2{margin-left:-3.397172pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-0.918155pt;}
._f{width:1.338977pt;}
._9{width:2.249488pt;}
._12{width:11.795718pt;}
._c{width:13.326595pt;}
._a{width:15.115527pt;}
._5{width:16.577766pt;}
._4{width:17.995387pt;}
._8{width:19.765798pt;}
._1c{width:21.200413pt;}
._11{width:22.125803pt;}
._1d{width:23.287513pt;}
._21{width:24.824999pt;}
._22{width:26.566933pt;}
._e{width:27.576477pt;}
._1{width:29.105503pt;}
._1e{width:30.099278pt;}
._d{width:31.133051pt;}
._7{width:32.305391pt;}
._25{width:34.369097pt;}
._24{width:35.440289pt;}
._1f{width:37.353108pt;}
._23{width:38.688690pt;}
._27{width:40.188331pt;}
._28{width:41.326665pt;}
._29{width:43.540421pt;}
._2a{width:44.844983pt;}
._10{width:63.761067pt;}
._19{width:86.361134pt;}
._1a{width:118.802913pt;}
._18{width:141.670571pt;}
._15{width:162.535672pt;}
._17{width:167.552165pt;}
._16{width:269.154764pt;}
._13{width:299.361393pt;}
._14{width:312.249285pt;}
._1b{width:318.608071pt;}
._b{width:569.633465pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs6{font-size:42.989018pt;}
.fs7{font-size:43.486882pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:56.149333pt;}
.y2c{bottom:69.497333pt;}
.y61{bottom:96.000000pt;}
.y60{bottom:110.545333pt;}
.y2b{bottom:111.493333pt;}
.y5f{bottom:125.090667pt;}
.y2a{bottom:129.209333pt;}
.yb7{bottom:130.694667pt;}
.y8b{bottom:139.636000pt;}
.y29{bottom:143.754667pt;}
.yb6{bottom:145.240000pt;}
.y5e{bottom:146.942667pt;}
.y184{bottom:151.570667pt;}
.y15e{bottom:152.489333pt;}
.y8a{bottom:154.181333pt;}
.y28{bottom:158.300000pt;}
.yb5{bottom:159.785333pt;}
.y5d{bottom:161.488000pt;}
.y133{bottom:163.741333pt;}
.y183{bottom:166.116000pt;}
.y15d{bottom:167.034667pt;}
.ye1{bottom:168.726667pt;}
.y27{bottom:172.845333pt;}
.y5c{bottom:176.033333pt;}
.y132{bottom:178.286667pt;}
.y10b{bottom:179.488000pt;}
.y182{bottom:180.661333pt;}
.y15c{bottom:181.580000pt;}
.ye0{bottom:183.273333pt;}
.y26{bottom:187.390667pt;}
.yb4{bottom:189.897333pt;}
.y5b{bottom:190.578667pt;}
.y10a{bottom:194.033333pt;}
.y15b{bottom:196.125333pt;}
.ydf{bottom:197.818667pt;}
.y131{bottom:202.390667pt;}
.yb3{bottom:204.442667pt;}
.y5a{bottom:205.124000pt;}
.y181{bottom:207.141333pt;}
.y109{bottom:208.578667pt;}
.y25{bottom:209.242667pt;}
.yde{bottom:212.364000pt;}
.y130{bottom:216.936000pt;}
.y59{bottom:219.669333pt;}
.y180{bottom:221.686667pt;}
.y15a{bottom:223.522667pt;}
.y24{bottom:223.788000pt;}
.ydd{bottom:226.909333pt;}
.y108{bottom:233.884000pt;}
.y58{bottom:234.214667pt;}
.y159{bottom:238.068000pt;}
.y23{bottom:238.333333pt;}
.yb2{bottom:239.240000pt;}
.y12f{bottom:241.041333pt;}
.ydc{bottom:241.454667pt;}
.y17f{bottom:248.166667pt;}
.y107{bottom:248.429333pt;}
.y57{bottom:248.760000pt;}
.y158{bottom:252.613333pt;}
.y22{bottom:252.878667pt;}
.y12e{bottom:255.586667pt;}
.ydb{bottom:256.000000pt;}
.y17e{bottom:262.712000pt;}
.y106{bottom:262.974667pt;}
.y56{bottom:263.305333pt;}
.y21{bottom:267.424000pt;}
.y12d{bottom:270.132000pt;}
.y55{bottom:277.852000pt;}
.y157{bottom:280.012000pt;}
.y20{bottom:281.969333pt;}
.yb1{bottom:283.728000pt;}
.y105{bottom:288.281333pt;}
.y17d{bottom:289.192000pt;}
.y89{bottom:292.397333pt;}
.y12c{bottom:294.237333pt;}
.y156{bottom:294.557333pt;}
.y1f{bottom:296.514667pt;}
.yb0{bottom:298.274667pt;}
.y17c{bottom:303.737333pt;}
.y88{bottom:306.942667pt;}
.y12b{bottom:308.782667pt;}
.y54{bottom:308.802667pt;}
.y155{bottom:309.102667pt;}
.y1e{bottom:311.061333pt;}
.yaf{bottom:312.820000pt;}
.y104{bottom:313.586667pt;}
.y17b{bottom:318.282667pt;}
.y87{bottom:321.488000pt;}
.y12a{bottom:323.328000pt;}
.y154{bottom:323.648000pt;}
.y1d{bottom:325.606667pt;}
.yae{bottom:327.365333pt;}
.y86{bottom:336.033333pt;}
.y153{bottom:338.193333pt;}
.y103{bottom:338.892000pt;}
.y1c{bottom:340.152000pt;}
.yad{bottom:341.910667pt;}
.y17a{bottom:344.762667pt;}
.y53{bottom:346.882667pt;}
.y129{bottom:347.432000pt;}
.yda{bottom:350.578667pt;}
.y102{bottom:353.438667pt;}
.y85{bottom:357.884000pt;}
.y179{bottom:359.308000pt;}
.y52{bottom:361.428000pt;}
.y128{bottom:361.978667pt;}
.yac{bottom:363.761333pt;}
.yd9{bottom:365.124000pt;}
.y152{bottom:365.590667pt;}
.y101{bottom:367.984000pt;}
.y1b{bottom:370.577333pt;}
.y84{bottom:372.429333pt;}
.y178{bottom:373.853333pt;}
.y51{bottom:375.974667pt;}
.y127{bottom:376.524000pt;}
.yab{bottom:378.306667pt;}
.yd8{bottom:379.669333pt;}
.y151{bottom:380.136000pt;}
.y83{bottom:386.976000pt;}
.y50{bottom:390.520000pt;}
.yaa{bottom:392.852000pt;}
.y100{bottom:393.289333pt;}
.yd7{bottom:394.214667pt;}
.y150{bottom:394.681333pt;}
.y177{bottom:400.333333pt;}
.y126{bottom:400.628000pt;}
.y4f{bottom:405.065333pt;}
.ya9{bottom:407.398667pt;}
.yff{bottom:407.834667pt;}
.yd6{bottom:408.760000pt;}
.y14f{bottom:409.228000pt;}
.y1a{bottom:413.598667pt;}
.y176{bottom:414.878667pt;}
.y125{bottom:415.173333pt;}
.y82{bottom:417.888000pt;}
.y19f{bottom:418.630667pt;}
.y4e{bottom:419.610667pt;}
.ya8{bottom:421.944000pt;}
.yfe{bottom:422.380000pt;}
.y14e{bottom:423.773333pt;}
.y19{bottom:428.144000pt;}
.y175{bottom:429.424000pt;}
.y124{bottom:429.718667pt;}
.yd5{bottom:430.612000pt;}
.y19e{bottom:433.176000pt;}
.y4d{bottom:434.156000pt;}
.ya7{bottom:436.489333pt;}
.y14d{bottom:438.318667pt;}
.y18{bottom:442.689333pt;}
.y174{bottom:443.969333pt;}
.yd4{bottom:445.157333pt;}
.yfd{bottom:447.686667pt;}
.y19d{bottom:447.721333pt;}
.y4c{bottom:448.701333pt;}
.ya6{bottom:451.034667pt;}
.y123{bottom:453.824000pt;}
.y81{bottom:455.904000pt;}
.y17{bottom:457.234667pt;}
.yd3{bottom:459.702667pt;}
.y4b{bottom:463.246667pt;}
.ya5{bottom:465.580000pt;}
.y14c{bottom:465.716000pt;}
.y122{bottom:468.369333pt;}
.y80{bottom:470.449333pt;}
.y16{bottom:471.780000pt;}
.y19c{bottom:472.893333pt;}
.yfc{bottom:472.992000pt;}
.yd2{bottom:474.248000pt;}
.y4a{bottom:477.792000pt;}
.ya4{bottom:480.125333pt;}
.y14b{bottom:480.261333pt;}
.y121{bottom:482.914667pt;}
.y7f{bottom:484.994667pt;}
.y15{bottom:486.325333pt;}
.y19b{bottom:487.438667pt;}
.yfb{bottom:487.537333pt;}
.yd1{bottom:488.793333pt;}
.y49{bottom:492.337333pt;}
.ya3{bottom:494.670667pt;}
.y14a{bottom:494.806667pt;}
.y7e{bottom:499.540000pt;}
.y14{bottom:500.870667pt;}
.y19a{bottom:501.984000pt;}
.yfa{bottom:502.082667pt;}
.yd0{bottom:503.338667pt;}
.y48{bottom:506.882667pt;}
.y120{bottom:507.020000pt;}
.ya2{bottom:509.216000pt;}
.y149{bottom:509.352000pt;}
.y7d{bottom:514.085333pt;}
.y13{bottom:515.417333pt;}
.y47{bottom:521.428000pt;}
.y11f{bottom:521.565333pt;}
.ya1{bottom:523.761333pt;}
.y199{bottom:527.156000pt;}
.yf9{bottom:527.388000pt;}
.y7c{bottom:528.630667pt;}
.y12{bottom:529.962667pt;}
.ycf{bottom:535.825333pt;}
.y148{bottom:536.750667pt;}
.ya0{bottom:538.306667pt;}
.y173{bottom:540.565333pt;}
.y198{bottom:541.702667pt;}
.yf8{bottom:541.933333pt;}
.y7b{bottom:543.176000pt;}
.y46{bottom:543.280000pt;}
.y11{bottom:544.508000pt;}
.y11e{bottom:545.669333pt;}
.y147{bottom:551.296000pt;}
.y9f{bottom:552.852000pt;}
.y172{bottom:555.110667pt;}
.yf7{bottom:556.480000pt;}
.y7a{bottom:557.721333pt;}
.y45{bottom:557.825333pt;}
.y10{bottom:559.053333pt;}
.y11d{bottom:560.214667pt;}
.y146{bottom:565.841333pt;}
.y197{bottom:566.874667pt;}
.y9e{bottom:567.398667pt;}
.y171{bottom:569.656000pt;}
.yf6{bottom:571.025333pt;}
.y79{bottom:572.266667pt;}
.y44{bottom:572.370667pt;}
.yf{bottom:573.598667pt;}
.y11c{bottom:574.760000pt;}
.yce{bottom:576.464000pt;}
.y145{bottom:580.386667pt;}
.y196{bottom:581.420000pt;}
.y9d{bottom:581.944000pt;}
.y78{bottom:586.813333pt;}
.y43{bottom:586.916000pt;}
.ye{bottom:588.144000pt;}
.ycd{bottom:591.009333pt;}
.y144{bottom:594.932000pt;}
.y170{bottom:596.136000pt;}
.yf5{bottom:596.330667pt;}
.y9c{bottom:596.489333pt;}
.y11b{bottom:598.865333pt;}
.y42{bottom:601.461333pt;}
.yd{bottom:602.689333pt;}
.ycc{bottom:605.554667pt;}
.y195{bottom:606.592000pt;}
.y77{bottom:608.664000pt;}
.y143{bottom:609.477333pt;}
.y16f{bottom:610.681333pt;}
.yf4{bottom:610.876000pt;}
.y41{bottom:616.006667pt;}
.yc{bottom:617.234667pt;}
.ycb{bottom:620.101333pt;}
.y194{bottom:621.137333pt;}
.y11a{bottom:622.969333pt;}
.y76{bottom:623.209333pt;}
.y16e{bottom:625.226667pt;}
.yf3{bottom:625.421333pt;}
.y40{bottom:630.553333pt;}
.y9b{bottom:631.285333pt;}
.yb{bottom:631.780000pt;}
.yca{bottom:634.646667pt;}
.y193{bottom:635.682667pt;}
.y142{bottom:636.874667pt;}
.y75{bottom:637.754667pt;}
.y3f{bottom:645.098667pt;}
.ya{bottom:646.325333pt;}
.y119{bottom:647.074667pt;}
.yc9{bottom:649.192000pt;}
.yf2{bottom:650.728000pt;}
.y141{bottom:651.421333pt;}
.y16d{bottom:651.706667pt;}
.y74{bottom:652.300000pt;}
.y3e{bottom:659.644000pt;}
.y192{bottom:660.854667pt;}
.y9{bottom:660.870667pt;}
.yc8{bottom:663.737333pt;}
.yf1{bottom:665.273333pt;}
.y16c{bottom:666.252000pt;}
.y73{bottom:666.845333pt;}
.y118{bottom:671.178667pt;}
.y3d{bottom:674.189333pt;}
.y191{bottom:675.400000pt;}
.y9a{bottom:675.774667pt;}
.yc7{bottom:678.282667pt;}
.y140{bottom:678.818667pt;}
.yf0{bottom:679.818667pt;}
.y72{bottom:681.392000pt;}
.y190{bottom:689.946667pt;}
.y99{bottom:690.320000pt;}
.y8{bottom:691.265333pt;}
.y16b{bottom:692.732000pt;}
.yc6{bottom:692.828000pt;}
.y13f{bottom:693.364000pt;}
.yef{bottom:694.364000pt;}
.y117{bottom:695.284000pt;}
.y71{bottom:695.937333pt;}
.y3c{bottom:696.040000pt;}
.y98{bottom:704.865333pt;}
.y16a{bottom:707.277333pt;}
.yc5{bottom:707.373333pt;}
.y70{bottom:710.482667pt;}
.y3b{bottom:710.585333pt;}
.y18f{bottom:715.118667pt;}
.yee{bottom:717.920000pt;}
.y116{bottom:719.388000pt;}
.y97{bottom:719.410667pt;}
.y13e{bottom:720.761333pt;}
.yc4{bottom:721.918667pt;}
.y6f{bottom:725.028000pt;}
.y3a{bottom:725.130667pt;}
.y18e{bottom:729.664000pt;}
.y169{bottom:733.757333pt;}
.y115{bottom:733.934667pt;}
.y96{bottom:733.956000pt;}
.y13d{bottom:735.306667pt;}
.y6e{bottom:739.573333pt;}
.y39{bottom:739.677333pt;}
.yc3{bottom:743.770667pt;}
.y7{bottom:746.174667pt;}
.y168{bottom:748.302667pt;}
.y95{bottom:748.501333pt;}
.y13c{bottom:749.852000pt;}
.y6d{bottom:754.118667pt;}
.y38{bottom:754.222667pt;}
.y18d{bottom:754.836000pt;}
.yed{bottom:755.853333pt;}
.y114{bottom:758.038667pt;}
.yc2{bottom:758.316000pt;}
.y6{bottom:760.720000pt;}
.y167{bottom:762.848000pt;}
.y18c{bottom:769.381333pt;}
.yec{bottom:770.398667pt;}
.y113{bottom:772.584000pt;}
.yc1{bottom:772.861333pt;}
.y5{bottom:775.265333pt;}
.y6c{bottom:775.970667pt;}
.y13b{bottom:777.250667pt;}
.y166{bottom:777.393333pt;}
.yeb{bottom:784.944000pt;}
.y37{bottom:785.808000pt;}
.y112{bottom:787.129333pt;}
.yc0{bottom:787.406667pt;}
.y4{bottom:789.810667pt;}
.y94{bottom:790.377004pt;}
.y6b{bottom:790.516000pt;}
.y13a{bottom:791.796000pt;}
.y165{bottom:791.938667pt;}
.y18b{bottom:794.553333pt;}
.yea{bottom:799.490667pt;}
.y36{bottom:800.353333pt;}
.ybf{bottom:801.952000pt;}
.y3{bottom:804.356000pt;}
.y6a{bottom:805.061333pt;}
.y164{bottom:806.484000pt;}
.y18a{bottom:809.098667pt;}
.y111{bottom:811.234667pt;}
.y93{bottom:811.533133pt;}
.ye9{bottom:814.036000pt;}
.y35{bottom:814.898667pt;}
.ybe{bottom:816.497333pt;}
.y139{bottom:819.193333pt;}
.y69{bottom:819.606667pt;}
.y189{bottom:823.645333pt;}
.y110{bottom:825.780000pt;}
.ye8{bottom:828.581333pt;}
.y34{bottom:829.444000pt;}
.ybd{bottom:831.042667pt;}
.y92{bottom:832.689261pt;}
.y163{bottom:832.964000pt;}
.y138{bottom:833.738667pt;}
.y68{bottom:834.152000pt;}
.y188{bottom:838.190667pt;}
.y10f{bottom:840.325333pt;}
.ye7{bottom:843.126667pt;}
.y33{bottom:843.989333pt;}
.ybc{bottom:845.588000pt;}
.y162{bottom:847.509333pt;}
.y137{bottom:848.284000pt;}
.y67{bottom:848.697333pt;}
.y91{bottom:853.846481pt;}
.ye6{bottom:857.672000pt;}
.ybb{bottom:860.133333pt;}
.y161{bottom:862.054667pt;}
.y66{bottom:863.242667pt;}
.y187{bottom:863.362667pt;}
.y10e{bottom:864.429333pt;}
.ye5{bottom:872.217333pt;}
.yba{bottom:874.678667pt;}
.y90{bottom:875.002609pt;}
.y136{bottom:875.682667pt;}
.y160{bottom:876.600000pt;}
.y186{bottom:877.908000pt;}
.y2{bottom:878.704000pt;}
.y10d{bottom:878.976000pt;}
.y31{bottom:882.081595pt;}
.ye4{bottom:886.762667pt;}
.y8f{bottom:886.907092pt;}
.yb9{bottom:889.225333pt;}
.y135{bottom:890.228000pt;}
.y15f{bottom:891.145333pt;}
.y185{bottom:892.453333pt;}
.y10c{bottom:893.521333pt;}
.y30{bottom:893.849788pt;}
.y65{bottom:894.154667pt;}
.ye3{bottom:901.308000pt;}
.y134{bottom:904.773333pt;}
.y1{bottom:905.270667pt;}
.y2f{bottom:905.617981pt;}
.y8e{bottom:908.063220pt;}
.ye2{bottom:915.853333pt;}
.y2e{bottom:917.386174pt;}
.yb8{bottom:917.625333pt;}
.y32{bottom:918.058241pt;}
.y64{bottom:932.170667pt;}
.y8d{bottom:936.448000pt;}
.y2d{bottom:939.041202pt;}
.y63{bottom:946.716000pt;}
.y8c{bottom:950.993333pt;}
.h6{height:14.824448pt;}
.h9{height:29.576444pt;}
.h8{height:29.834378pt;}
.hc{height:29.918975pt;}
.hb{height:30.179896pt;}
.h7{height:32.900710pt;}
.h4{height:33.155533pt;}
.hd{height:36.449833pt;}
.h3{height:36.556100pt;}
.h2{height:36.874903pt;}
.ha{height:37.140573pt;}
.h5{height:44.250180pt;}
.h1{height:63.719934pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:144.000000pt;}
.xa6{left:150.641333pt;}
.x1{left:152.398667pt;}
.xa4{left:155.078667pt;}
.x7a{left:157.284000pt;}
.x2e{left:159.762667pt;}
.x7b{left:163.936000pt;}
.x66{left:168.414667pt;}
.xa7{left:171.776000pt;}
.x30{left:172.851789pt;}
.x7c{left:177.220000pt;}
.x67{left:181.698667pt;}
.x5d{left:184.341333pt;}
.xa3{left:185.973333pt;}
.x68{left:188.305333pt;}
.xe{left:191.409333pt;}
.x2f{left:192.654587pt;}
.x7d{left:197.157333pt;}
.x4{left:198.554667pt;}
.x69{left:201.589333pt;}
.x5{left:203.237333pt;}
.x5e{left:204.472000pt;}
.x2{left:207.694667pt;}
.x3d{left:210.037333pt;}
.x5f{left:211.320000pt;}
.x3e{left:217.134667pt;}
.x3f{left:223.776000pt;}
.x40{left:230.872000pt;}
.x7{left:235.354667pt;}
.x7e{left:237.030667pt;}
.x8c{left:242.756000pt;}
.x41{left:244.156000pt;}
.x42{left:251.252000pt;}
.x6{left:254.437333pt;}
.x8d{left:256.040000pt;}
.x7f{left:256.966667pt;}
.x82{left:257.949333pt;}
.x3{left:259.598667pt;}
.x8e{left:262.604000pt;}
.x80{left:263.620000pt;}
.x43{left:264.536000pt;}
.x22{left:268.124000pt;}
.x44{left:271.632000pt;}
.x8f{left:275.888000pt;}
.x81{left:276.904000pt;}
.x83{left:278.401333pt;}
.x23{left:281.408000pt;}
.x90{left:282.452000pt;}
.x9e{left:283.818850pt;}
.x45{left:284.914667pt;}
.x24{left:287.981333pt;}
.x46{left:292.012000pt;}
.x91{left:295.736000pt;}
.x84{left:298.853333pt;}
.x25{left:301.265333pt;}
.x92{left:302.300000pt;}
.x47{left:305.294667pt;}
.x16{left:308.969333pt;}
.x48{left:312.392000pt;}
.x17{left:315.610667pt;}
.x85{left:319.305333pt;}
.x18{left:322.222667pt;}
.x49{left:325.674667pt;}
.x19{left:328.865333pt;}
.x4a{left:332.770667pt;}
.x1a{left:335.477333pt;}
.x6a{left:338.846667pt;}
.x86{left:339.757333pt;}
.x1b{left:342.118667pt;}
.x4b{left:346.054667pt;}
.x1c{left:348.732000pt;}
.x6b{left:352.129333pt;}
.x4c{left:353.150667pt;}
.x1d{left:355.373333pt;}
.x87{left:360.209333pt;}
.x37{left:362.350667pt;}
.x8a{left:364.537333pt;}
.x4d{left:366.434667pt;}
.x8b{left:372.349333pt;}
.x4e{left:373.530667pt;}
.x38{left:375.633333pt;}
.xd{left:378.344000pt;}
.x4f{left:380.172000pt;}
.x39{left:382.332000pt;}
.x31{left:384.721332pt;}
.x50{left:387.269333pt;}
.x9f{left:389.663876pt;}
.x88{left:393.944000pt;}
.x3a{left:395.614667pt;}
.x51{left:400.552000pt;}
.x3b{left:402.313333pt;}
.x36{left:404.678667pt;}
.xa0{left:406.530667pt;}
.x6c{left:408.165333pt;}
.xa1{left:413.146667pt;}
.x89{left:414.396000pt;}
.x3c{left:415.597333pt;}
.x6d{left:421.448000pt;}
.xa2{left:426.430667pt;}
.x6e{left:428.900000pt;}
.x93{left:434.673333pt;}
.xa5{left:435.790667pt;}
.x9{left:439.262667pt;}
.x6f{left:442.184000pt;}
.xa{left:443.945333pt;}
.x70{left:449.636000pt;}
.xc{left:455.146667pt;}
.x52{left:458.789333pt;}
.x71{left:462.918667pt;}
.x2a{left:470.561333pt;}
.x53{left:472.073333pt;}
.x54{left:478.677333pt;}
.x2b{left:483.844000pt;}
.x8{left:486.192000pt;}
.x2c{left:490.525333pt;}
.x55{left:491.921333pt;}
.xb{left:495.145333pt;}
.x56{left:498.564000pt;}
.x2d{left:503.809333pt;}
.x57{left:505.166667pt;}
.x58{left:511.808000pt;}
.x59{left:518.412000pt;}
.x5a{left:525.053333pt;}
.x60{left:526.210667pt;}
.x5b{left:531.657333pt;}
.x72{left:532.577333pt;}
.x94{left:537.913333pt;}
.x61{left:539.494667pt;}
.x1e{left:542.074667pt;}
.x5c{left:544.940000pt;}
.x62{left:546.628000pt;}
.x1f{left:548.716000pt;}
.x95{left:551.196000pt;}
.x73{left:553.312000pt;}
.x20{left:555.328000pt;}
.x96{left:557.780000pt;}
.x63{left:559.910667pt;}
.x21{left:561.970667pt;}
.x26{left:565.196000pt;}
.x64{left:567.044000pt;}
.x97{left:571.062667pt;}
.x74{left:574.048000pt;}
.x27{left:578.478667pt;}
.x65{left:580.328000pt;}
.x28{left:585.053333pt;}
.x10{left:588.090667pt;}
.x98{left:590.929333pt;}
.x11{left:594.732000pt;}
.x29{left:598.336000pt;}
.x12{left:601.370667pt;}
.x13{left:608.012000pt;}
.x99{left:610.796000pt;}
.x14{left:614.650667pt;}
.x9a{left:617.380000pt;}
.x15{left:621.292000pt;}
.x75{left:628.802667pt;}
.x9b{left:630.662667pt;}
.x32{left:634.293333pt;}
.x76{left:636.254667pt;}
.x9c{left:637.245333pt;}
.x33{left:647.577333pt;}
.x77{left:649.537333pt;}
.x9d{left:650.529333pt;}
.x34{left:653.452000pt;}
.x78{left:656.989333pt;}
.x35{left:666.734667pt;}
.x79{left:670.273333pt;}
}




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