
    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_517594663aacade4701a7909.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_01abf255d08a6410aeb089f2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_92b4a287a6b60fc7c3235087.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_9e25a1ca2148bedcad9d3b2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_d3680ef78ea30a4204dd246b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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_766131b0cc9b419153df2a17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.110000;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_e3e03f0af4625237277d0695.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.159000;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);}
.m3{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);}
.mc{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);}
.m2{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);}
.m1{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);}
.m1c{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);}
.m12{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);}
.m1e{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);}
.m1b{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);}
.m25{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);}
.m1d{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);}
.m8{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);}
.m9{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);}
.m7{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);}
.m27{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);}
.m21{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);}
.mb{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);}
.md{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);}
.m29{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);}
.m28{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);}
.m14{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);}
.m1f{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1a{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);}
.m18{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);}
.mf{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);}
.m11{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);}
.m20{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);}
.m24{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);}
.m13{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);}
.m10{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);}
.m16{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);}
.m17{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);}
.m6{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);}
.m26{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);}
.m22{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);}
.m23{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);}
.m5{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);}
.ma{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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:23.383163px;}
.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;}
}
.ws1f{word-spacing:-71.731020px;}
.ws48{word-spacing:-65.454540px;}
.ws87{word-spacing:-55.663272px;}
.ws69{word-spacing:-55.448078px;}
.ws73{word-spacing:-55.017692px;}
.ws81{word-spacing:-54.659037px;}
.ws42{word-spacing:-54.587306px;}
.wsa{word-spacing:-54.443844px;}
.ws89{word-spacing:-54.372113px;}
.ws8c{word-spacing:-54.013458px;}
.ws88{word-spacing:-53.798265px;}
.ws3{word-spacing:-53.798250px;}
.ws85{word-spacing:-53.583072px;}
.ws53{word-spacing:-53.296148px;}
.ws43{word-spacing:-52.937493px;}
.ws86{word-spacing:-52.865762px;}
.ws2a{word-spacing:-52.291914px;}
.ws27{word-spacing:-52.148452px;}
.ws68{word-spacing:-52.076721px;}
.ws9{word-spacing:-51.933258px;}
.ws74{word-spacing:-51.144217px;}
.ws77{word-spacing:-50.929024px;}
.ws15{word-spacing:-50.785562px;}
.ws7a{word-spacing:-50.713831px;}
.ws62{word-spacing:-50.642100px;}
.ws6a{word-spacing:-50.570369px;}
.ws3a{word-spacing:-50.283445px;}
.ws2e{word-spacing:-50.211714px;}
.ws8a{word-spacing:-50.068252px;}
.ws5c{word-spacing:-50.018461px;}
.ws26{word-spacing:-49.996521px;}
.ws82{word-spacing:-49.853059px;}
.ws2d{word-spacing:-49.637866px;}
.ws63{word-spacing:-49.566135px;}
.ws8b{word-spacing:-49.494404px;}
.ws4d{word-spacing:-49.422673px;}
.ws70{word-spacing:-49.350942px;}
.ws71{word-spacing:-49.135749px;}
.ws75{word-spacing:-48.992287px;}
.ws34{word-spacing:-48.920556px;}
.ws50{word-spacing:-48.848825px;}
.ws17{word-spacing:-48.777094px;}
.ws8{word-spacing:-48.705363px;}
.ws18{word-spacing:-48.633632px;}
.ws20{word-spacing:-48.561901px;}
.ws1c{word-spacing:-48.490170px;}
.ws21{word-spacing:-48.418439px;}
.ws4{word-spacing:-48.346707px;}
.ws84{word-spacing:-48.345369px;}
.ws1d{word-spacing:-48.343048px;}
.wsd{word-spacing:-48.274976px;}
.wsc{word-spacing:-48.203245px;}
.ws59{word-spacing:-48.158776px;}
.wsb{word-spacing:-48.131514px;}
.ws14{word-spacing:-48.059783px;}
.ws5{word-spacing:-47.988052px;}
.ws5e{word-spacing:-47.967238px;}
.ws12{word-spacing:-47.921353px;}
.ws13{word-spacing:-47.916321px;}
.ws6{word-spacing:-47.844590px;}
.ws1e{word-spacing:-47.820660px;}
.ws7{word-spacing:-47.772859px;}
.ws22{word-spacing:-47.701128px;}
.ws4a{word-spacing:-47.629397px;}
.ws57{word-spacing:-47.557666px;}
.ws2c{word-spacing:-47.485935px;}
.ws3d{word-spacing:-47.342473px;}
.ws38{word-spacing:-47.270742px;}
.ws3e{word-spacing:-47.199011px;}
.ws66{word-spacing:-47.127280px;}
.ws55{word-spacing:-47.055549px;}
.ws28{word-spacing:-46.983818px;}
.ws3b{word-spacing:-46.912087px;}
.ws16{word-spacing:-46.696894px;}
.ws25{word-spacing:-46.625163px;}
.ws35{word-spacing:-46.553432px;}
.ws4e{word-spacing:-46.481701px;}
.ws1b{word-spacing:-46.409970px;}
.ws37{word-spacing:-46.266508px;}
.ws44{word-spacing:-46.194777px;}
.wsf{word-spacing:-46.123046px;}
.ws11{word-spacing:-45.907853px;}
.ws7d{word-spacing:-45.764391px;}
.ws83{word-spacing:-45.620929px;}
.ws61{word-spacing:-45.477467px;}
.ws4f{word-spacing:-45.405736px;}
.ws10{word-spacing:-45.190543px;}
.ws5b{word-spacing:-45.118812px;}
.ws2f{word-spacing:-45.047081px;}
.ws29{word-spacing:-44.975350px;}
.ws65{word-spacing:-44.903619px;}
.ws24{word-spacing:-44.831887px;}
.ws3c{word-spacing:-44.616694px;}
.ws36{word-spacing:-44.473232px;}
.ws31{word-spacing:-44.401501px;}
.ws5f{word-spacing:-44.258039px;}
.ws41{word-spacing:-44.114577px;}
.ws23{word-spacing:-44.042846px;}
.ws7c{word-spacing:-43.971115px;}
.ws6e{word-spacing:-43.919996px;}
.ws1a{word-spacing:-43.899384px;}
.ws64{word-spacing:-43.827653px;}
.ws47{word-spacing:-43.789087px;}
.ws78{word-spacing:-43.755922px;}
.ws6c{word-spacing:-43.723633px;}
.ws32{word-spacing:-43.684191px;}
.ws46{word-spacing:-43.658178px;}
.ws7f{word-spacing:-43.540729px;}
.ws6f{word-spacing:-43.461815px;}
.ws39{word-spacing:-43.397267px;}
.ws49{word-spacing:-43.396360px;}
.ws6d{word-spacing:-43.330905px;}
.ws7b{word-spacing:-43.038612px;}
.ws2b{word-spacing:-42.966881px;}
.ws52{word-spacing:-42.608226px;}
.ws54{word-spacing:-42.321302px;}
.ws33{word-spacing:-42.249571px;}
.ws4b{word-spacing:-42.177840px;}
.ws60{word-spacing:-41.890916px;}
.ws79{word-spacing:-41.819185px;}
.ws72{word-spacing:-41.603992px;}
.ws80{word-spacing:-41.532261px;}
.ws30{word-spacing:-41.173605px;}
.ws40{word-spacing:-40.528026px;}
.ws51{word-spacing:-40.456295px;}
.ws3f{word-spacing:-39.882447px;}
.ws19{word-spacing:-39.810716px;}
.ws67{word-spacing:-39.236868px;}
.ws7e{word-spacing:-38.591289px;}
.ws4c{word-spacing:-38.160903px;}
.ws76{word-spacing:-38.017441px;}
.ws5a{word-spacing:-37.515323px;}
.ws58{word-spacing:-36.881693px;}
.ws5d{word-spacing:-34.072235px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.wse{word-spacing:0.000000px;}
.ws45{word-spacing:143.999988px;}
.ws6b{word-spacing:171.687258px;}
.ws56{word-spacing:202.450892px;}
._14{margin-left:-9.205486px;}
._10{margin-left:-6.742716px;}
._6{margin-left:-5.666751px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._4{width:1.936738px;}
._7{width:2.988791px;}
._c{width:4.709916px;}
._d{width:5.811048px;}
._9{width:11.333505px;}
._8{width:12.552925px;}
._1f{width:17.741469px;}
._20{width:18.984809px;}
._2{width:22.571352px;}
._f{width:23.862518px;}
._5{width:24.938484px;}
._a{width:26.660028px;}
._b{width:27.664262px;}
._e{width:28.692405px;}
._1a{width:33.522298px;}
._1c{width:119.623105px;}
._1e{width:122.727263px;}
._1b{width:134.116352px;}
._1d{width:162.137470px;}
._12{width:172.996349px;}
._13{width:175.025440px;}
._17{width:259.527251px;}
._16{width:285.388369px;}
._18{width:327.207245px;}
._15{width:359.553743px;}
._19{width:439.723600px;}
._11{width:765.294482px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs4{font-size:59.775840px;}
.fs3{font-size:65.454540px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.y6f{bottom:105.934500px;}
.y14e{bottom:107.647500px;}
.ye0{bottom:109.141500px;}
.y176{bottom:110.262000px;}
.y160{bottom:113.251500px;}
.y11b{bottom:120.306000px;}
.y66{bottom:121.096500px;}
.y131{bottom:122.592000px;}
.yad{bottom:123.187500px;}
.yd8{bottom:127.405500px;}
.ybd{bottom:132.655500px;}
.y13c{bottom:132.678000px;}
.y189{bottom:133.798500px;}
.y84{bottom:137.161500px;}
.y6e{bottom:138.438000px;}
.y4a{bottom:139.392000px;}
.y14d{bottom:140.151000px;}
.ydf{bottom:141.645000px;}
.y1e{bottom:142.218000px;}
.y175{bottom:142.765500px;}
.y15f{bottom:145.755000px;}
.yf3{bottom:148.840500px;}
.y11a{bottom:152.809500px;}
.y65{bottom:153.600000px;}
.yac{bottom:155.691000px;}
.ybc{bottom:163.141500px;}
.y130{bottom:164.061000px;}
.y188{bottom:166.302000px;}
.yd7{bottom:168.874500px;}
.y6d{bottom:170.941500px;}
.y14c{bottom:172.653000px;}
.yde{bottom:174.148500px;}
.y1d{bottom:174.721500px;}
.y49{bottom:175.254000px;}
.y174{bottom:175.269000px;}
.y3a{bottom:178.630500px;}
.yf2{bottom:179.326500px;}
.y119{bottom:185.313000px;}
.y64{bottom:186.103500px;}
.y15e{bottom:187.224000px;}
.yab{bottom:188.194500px;}
.y12f{bottom:196.564500px;}
.yd6{bottom:201.378000px;}
.ybb{bottom:201.699000px;}
.y6c{bottom:203.445000px;}
.y14b{bottom:205.156500px;}
.ydd{bottom:206.650500px;}
.y1c{bottom:207.225000px;}
.y187{bottom:207.772500px;}
.yf1{bottom:209.812500px;}
.y83{bottom:211.134000px;}
.y173{bottom:216.738000px;}
.y118{bottom:217.816500px;}
.y63{bottom:218.605500px;}
.y15d{bottom:219.727500px;}
.y39{bottom:220.101000px;}
.y12e{bottom:229.066500px;}
.yaa{bottom:229.663500px;}
.y6b{bottom:235.947000px;}
.yba{bottom:237.561000px;}
.y14a{bottom:237.660000px;}
.y13b{bottom:239.154000px;}
.y1b{bottom:239.728500px;}
.y186{bottom:240.274500px;}
.yf0{bottom:240.298500px;}
.yd5{bottom:242.847000px;}
.y82{bottom:243.637500px;}
.y109{bottom:245.610000px;}
.y92{bottom:248.121000px;}
.y172{bottom:249.241500px;}
.y117{bottom:250.318500px;}
.y15c{bottom:252.229500px;}
.y38{bottom:252.603000px;}
.y62{bottom:260.076000px;}
.y12d{bottom:261.570000px;}
.ya9{bottom:262.167000px;}
.yef{bottom:270.784500px;}
.y6a{bottom:271.440000px;}
.y13a{bottom:271.657500px;}
.y1a{bottom:272.230500px;}
.y185{bottom:272.778000px;}
.yd4{bottom:275.350500px;}
.y108{bottom:276.096000px;}
.y81{bottom:276.141000px;}
.y149{bottom:279.129000px;}
.y91{bottom:280.623000px;}
.yb9{bottom:280.758000px;}
.y171{bottom:281.745000px;}
.y37{bottom:285.106500px;}
.y116{bottom:291.789000px;}
.y61{bottom:292.579500px;}
.y15b{bottom:293.700000px;}
.y12c{bottom:294.073500px;}
.ya8{bottom:294.669000px;}
.yee{bottom:301.269000px;}
.y139{bottom:304.161000px;}
.y184{bottom:305.281500px;}
.y107{bottom:306.580500px;}
.yd3{bottom:307.854000px;}
.y80{bottom:308.643000px;}
.y148{bottom:311.632500px;}
.y90{bottom:313.126500px;}
.yb8{bottom:313.260000px;}
.y19{bottom:313.701000px;}
.y36{bottom:317.610000px;}
.y170{bottom:323.214000px;}
.y115{bottom:324.291000px;}
.y60{bottom:325.081500px;}
.y15a{bottom:326.202000px;}
.y12b{bottom:326.577000px;}
.ya7{bottom:327.172500px;}
.yed{bottom:331.755000px;}
.y138{bottom:336.663000px;}
.y106{bottom:337.066500px;}
.yd2{bottom:340.356000px;}
.y7f{bottom:341.146500px;}
.y69{bottom:342.303000px;}
.y147{bottom:344.136000px;}
.y8f{bottom:345.630000px;}
.yb7{bottom:345.763500px;}
.y18{bottom:346.204500px;}
.y183{bottom:346.750500px;}
.y35{bottom:350.113500px;}
.y16f{bottom:355.717500px;}
.y114{bottom:356.794500px;}
.y5f{bottom:357.585000px;}
.y159{bottom:358.705500px;}
.ya6{bottom:359.676000px;}
.yec{bottom:362.241000px;}
.y105{bottom:367.552500px;}
.y12a{bottom:368.046000px;}
.y137{bottom:369.166500px;}
.y7e{bottom:373.650000px;}
.yd1{bottom:375.849000px;}
.y146{bottom:376.638000px;}
.y8e{bottom:378.133500px;}
.y68{bottom:378.165000px;}
.y17{bottom:378.706500px;}
.y182{bottom:379.254000px;}
.y34{bottom:382.615500px;}
.y16e{bottom:388.219500px;}
.y113{bottom:389.298000px;}
.y5e{bottom:390.088500px;}
.ya5{bottom:392.179500px;}
.yeb{bottom:392.727000px;}
.y104{bottom:398.038500px;}
.y158{bottom:400.176000px;}
.y129{bottom:400.549500px;}
.y7d{bottom:407.647500px;}
.yd0{bottom:408.351000px;}
.y145{bottom:409.141500px;}
.y8d{bottom:410.635500px;}
.y16{bottom:411.210000px;}
.y181{bottom:411.757500px;}
.y67{bottom:414.027000px;}
.y33{bottom:415.119000px;}
.yb6{bottom:418.914000px;}
.y112{bottom:421.801500px;}
.y5d{bottom:422.592000px;}
.yea{bottom:423.211500px;}
.ya4{bottom:424.681500px;}
.y103{bottom:428.524500px;}
.y16d{bottom:429.690000px;}
.y157{bottom:432.678000px;}
.y128{bottom:433.051500px;}
.ycf{bottom:440.854500px;}
.y144{bottom:441.645000px;}
.y8c{bottom:443.139000px;}
.y15{bottom:443.713500px;}
.y32{bottom:447.622500px;}
.y7c{bottom:452.106000px;}
.y180{bottom:453.226500px;}
.ye9{bottom:453.697500px;}
.y111{bottom:454.303500px;}
.yb5{bottom:454.774500px;}
.y5c{bottom:455.094000px;}
.ya3{bottom:458.679000px;}
.y102{bottom:459.009000px;}
.y16c{bottom:462.192000px;}
.y156{bottom:465.181500px;}
.y127{bottom:465.555000px;}
.yce{bottom:473.358000px;}
.ydc{bottom:475.642500px;}
.y31{bottom:480.126000px;}
.y143{bottom:483.114000px;}
.ye8{bottom:484.183500px;}
.y7b{bottom:484.608000px;}
.y14{bottom:485.182500px;}
.y17f{bottom:485.730000px;}
.y5b{bottom:487.597500px;}
.y101{bottom:489.495000px;}
.yb4{bottom:490.636500px;}
.y16b{bottom:494.695500px;}
.y110{bottom:495.774000px;}
.y126{bottom:498.058500px;}
.ya2{bottom:503.137500px;}
.y155{bottom:506.650500px;}
.y136{bottom:508.146000px;}
.ycd{bottom:508.849500px;}
.y30{bottom:512.628000px;}
.ye7{bottom:514.669500px;}
.y142{bottom:515.617500px;}
.y7a{bottom:517.111500px;}
.y13{bottom:517.686000px;}
.y100{bottom:519.981000px;}
.yb3{bottom:520.101000px;}
.y16a{bottom:527.199000px;}
.y10f{bottom:528.276000px;}
.y5a{bottom:529.066500px;}
.y125{bottom:530.562000px;}
.ya1{bottom:535.641000px;}
.y154{bottom:539.154000px;}
.y135{bottom:540.648000px;}
.ycc{bottom:541.353000px;}
.y2f{bottom:545.131500px;}
.ye6{bottom:545.155500px;}
.y141{bottom:548.121000px;}
.y79{bottom:549.615000px;}
.y12{bottom:550.189500px;}
.yff{bottom:550.467000px;}
.yb2{bottom:552.603000px;}
.y169{bottom:559.702500px;}
.y10e{bottom:560.779500px;}
.y59{bottom:561.570000px;}
.y124{bottom:563.064000px;}
.y153{bottom:571.657500px;}
.ycb{bottom:573.856500px;}
.ye5{bottom:575.640000px;}
.y2e{bottom:577.635000px;}
.y140{bottom:580.623000px;}
.yfe{bottom:580.953000px;}
.y78{bottom:582.118500px;}
.y11{bottom:582.691500px;}
.yb1{bottom:585.106500px;}
.y17e{bottom:592.204500px;}
.y48{bottom:592.579500px;}
.y10d{bottom:593.283000px;}
.y58{bottom:594.073500px;}
.y123{bottom:595.567500px;}
.y168{bottom:601.171500px;}
.y152{bottom:604.161000px;}
.ya0{bottom:608.715000px;}
.yca{bottom:609.348000px;}
.y2d{bottom:610.138500px;}
.yfd{bottom:611.437500px;}
.y13f{bottom:613.126500px;}
.ye4{bottom:614.197500px;}
.y77{bottom:614.620500px;}
.y10{bottom:615.195000px;}
.yb0{bottom:617.610000px;}
.y8b{bottom:623.587500px;}
.y17d{bottom:624.708000px;}
.y47{bottom:625.081500px;}
.y10c{bottom:625.786500px;}
.y57{bottom:626.577000px;}
.y122{bottom:628.071000px;}
.y167{bottom:633.675000px;}
.y9f{bottom:639.201000px;}
.yc9{bottom:641.851500px;}
.yfc{bottom:641.923500px;}
.y2c{bottom:642.640500px;}
.y13e{bottom:645.630000px;}
.y76{bottom:647.124000px;}
.yf{bottom:647.698500px;}
.ye3{bottom:650.059500px;}
.y8a{bottom:656.091000px;}
.y46{bottom:657.585000px;}
.y10b{bottom:658.288500px;}
.y56{bottom:659.079000px;}
.y121{bottom:660.574500px;}
.y166{bottom:666.178500px;}
.y9e{bottom:669.687000px;}
.yfb{bottom:672.409500px;}
.y2b{bottom:675.144000px;}
.yc8{bottom:675.849000px;}
.y151{bottom:678.133500px;}
.y75{bottom:679.627500px;}
.y13d{bottom:681.121500px;}
.y89{bottom:688.593000px;}
.ye{bottom:689.167500px;}
.y45{bottom:690.088500px;}
.y10a{bottom:690.792000px;}
.y55{bottom:691.582500px;}
.ye2{bottom:693.076500px;}
.y17c{bottom:698.680500px;}
.y9d{bottom:700.173000px;}
.y120{bottom:702.043500px;}
.yfa{bottom:702.895500px;}
.y2a{bottom:707.647500px;}
.y150{bottom:710.635500px;}
.ydb{bottom:712.131000px;}
.yc7{bottom:713.208000px;}
.y74{bottom:713.625000px;}
.y88{bottom:721.096500px;}
.y44{bottom:722.592000px;}
.y54{bottom:724.086000px;}
.ye1{bottom:725.580000px;}
.yd{bottom:730.636500px;}
.y9c{bottom:730.657500px;}
.y17b{bottom:731.184000px;}
.yf9{bottom:733.381500px;}
.y11f{bottom:734.547000px;}
.y29{bottom:740.151000px;}
.yda{bottom:744.633000px;}
.yc6{bottom:745.711500px;}
.y14f{bottom:746.128500px;}
.y87{bottom:753.600000px;}
.y43{bottom:755.094000px;}
.y53{bottom:756.589500px;}
.y73{bottom:758.083500px;}
.yc{bottom:759.030000px;}
.y9b{bottom:761.143500px;}
.yf8{bottom:763.866000px;}
.y11e{bottom:767.049000px;}
.y28{bottom:772.653000px;}
.y134{bottom:777.136500px;}
.yc5{bottom:778.215000px;}
.yd9{bottom:778.630500px;}
.y86{bottom:786.103500px;}
.y42{bottom:787.597500px;}
.yaf{bottom:789.091500px;}
.y72{bottom:790.587000px;}
.y9a{bottom:791.629500px;}
.yf7{bottom:794.352000px;}
.yb{bottom:794.410500px;}
.y52{bottom:798.058500px;}
.y11d{bottom:799.552500px;}
.y17a{bottom:805.156500px;}
.yc4{bottom:810.717000px;}
.y133{bottom:811.134000px;}
.y27{bottom:814.123500px;}
.y41{bottom:820.101000px;}
.yae{bottom:821.595000px;}
.y99{bottom:822.115500px;}
.y71{bottom:823.089000px;}
.yf6{bottom:824.838000px;}
.ya{bottom:829.791000px;}
.y51{bottom:830.562000px;}
.y11c{bottom:832.056000px;}
.y179{bottom:837.660000px;}
.yc3{bottom:843.220500px;}
.y165{bottom:846.625500px;}
.y98{bottom:852.600000px;}
.y40{bottom:852.603000px;}
.yf5{bottom:855.324000px;}
.y26{bottom:855.592500px;}
.y9{bottom:856.983000px;}
.y50{bottom:863.064000px;}
.y85{bottom:864.559500px;}
.y18a{bottom:870.163500px;}
.y164{bottom:879.129000px;}
.y97{bottom:883.086000px;}
.yf4{bottom:885.808500px;}
.y70{bottom:888.096000px;}
.y8{bottom:892.380000px;}
.y3f{bottom:894.073500px;}
.y4f{bottom:895.567500px;}
.y25{bottom:897.061500px;}
.y178{bottom:911.632500px;}
.y96{bottom:913.572000px;}
.yc2{bottom:916.294500px;}
.y132{bottom:920.598000px;}
.y3e{bottom:926.577000px;}
.y7{bottom:927.580500px;}
.y4e{bottom:928.071000px;}
.y24{bottom:929.565000px;}
.y177{bottom:944.136000px;}
.yc1{bottom:946.780500px;}
.y95{bottom:952.129500px;}
.y163{bottom:953.101500px;}
.y3d{bottom:959.079000px;}
.y4d{bottom:960.574500px;}
.y23{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.yc0{bottom:977.266500px;}
.y162{bottom:985.605000px;}
.y94{bottom:987.991500px;}
.y3c{bottom:991.582500px;}
.y4c{bottom:993.076500px;}
.y22{bottom:994.572000px;}
.ybf{bottom:1007.752500px;}
.y161{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y93{bottom:1023.852000px;}
.y3b{bottom:1024.086000px;}
.y4b{bottom:1025.580000px;}
.y21{bottom:1027.074000px;}
.ybe{bottom:1038.237000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h5{height:51.215948px;}
.h4{height:53.798265px;}
.h7{height:54.336239px;}
.h6{height:59.498177px;}
.h2{height:64.557900px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:103.806000px;}
.xe{left:104.901000px;}
.xc{left:106.299000px;}
.x14{left:128.500500px;}
.x4{left:144.775500px;}
.x15{left:151.131000px;}
.x1a{left:158.542500px;}
.x1b{left:159.690000px;}
.x6{left:160.849500px;}
.x12{left:240.489000px;}
.x10{left:242.404500px;}
.xb{left:249.348000px;}
.x16{left:264.781500px;}
.x13{left:265.783500px;}
.x19{left:376.237500px;}
.x17{left:378.562500px;}
.x5{left:394.506000px;}
.x9{left:515.344500px;}
.x11{left:516.367500px;}
.xa{left:554.043000px;}
.x3{left:567.934500px;}
.x8{left:569.680500px;}
.x18{left:588.129000px;}
.x7{left:630.975000px;}
.x2{left:648.775500px;}
.x1{left:692.794500px;}
.xd{left:785.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:20.785033pt;}
.ws1f{word-spacing:-63.760907pt;}
.ws48{word-spacing:-58.181813pt;}
.ws87{word-spacing:-49.478464pt;}
.ws69{word-spacing:-49.287181pt;}
.ws73{word-spacing:-48.904615pt;}
.ws81{word-spacing:-48.585811pt;}
.ws42{word-spacing:-48.522050pt;}
.wsa{word-spacing:-48.394528pt;}
.ws89{word-spacing:-48.330767pt;}
.ws8c{word-spacing:-48.011963pt;}
.ws88{word-spacing:-47.820680pt;}
.ws3{word-spacing:-47.820667pt;}
.ws85{word-spacing:-47.629397pt;}
.ws53{word-spacing:-47.374354pt;}
.ws43{word-spacing:-47.055549pt;}
.ws86{word-spacing:-46.991788pt;}
.ws2a{word-spacing:-46.481701pt;}
.ws27{word-spacing:-46.354179pt;}
.ws68{word-spacing:-46.290418pt;}
.ws9{word-spacing:-46.162896pt;}
.ws74{word-spacing:-45.461526pt;}
.ws77{word-spacing:-45.270244pt;}
.ws15{word-spacing:-45.142722pt;}
.ws7a{word-spacing:-45.078961pt;}
.ws62{word-spacing:-45.015200pt;}
.ws6a{word-spacing:-44.951439pt;}
.ws3a{word-spacing:-44.696396pt;}
.ws2e{word-spacing:-44.632635pt;}
.ws8a{word-spacing:-44.505113pt;}
.ws5c{word-spacing:-44.460854pt;}
.ws26{word-spacing:-44.441352pt;}
.ws82{word-spacing:-44.313830pt;}
.ws2d{word-spacing:-44.122547pt;}
.ws63{word-spacing:-44.058787pt;}
.ws8b{word-spacing:-43.995026pt;}
.ws4d{word-spacing:-43.931265pt;}
.ws70{word-spacing:-43.867504pt;}
.ws71{word-spacing:-43.676221pt;}
.ws75{word-spacing:-43.548699pt;}
.ws34{word-spacing:-43.484938pt;}
.ws50{word-spacing:-43.421177pt;}
.ws17{word-spacing:-43.357417pt;}
.ws8{word-spacing:-43.293656pt;}
.ws18{word-spacing:-43.229895pt;}
.ws20{word-spacing:-43.166134pt;}
.ws1c{word-spacing:-43.102373pt;}
.ws21{word-spacing:-43.038612pt;}
.ws4{word-spacing:-42.974851pt;}
.ws84{word-spacing:-42.973661pt;}
.ws1d{word-spacing:-42.971599pt;}
.wsd{word-spacing:-42.911090pt;}
.wsc{word-spacing:-42.847329pt;}
.ws59{word-spacing:-42.807801pt;}
.wsb{word-spacing:-42.783568pt;}
.ws14{word-spacing:-42.719807pt;}
.ws5{word-spacing:-42.656047pt;}
.ws5e{word-spacing:-42.637545pt;}
.ws12{word-spacing:-42.596759pt;}
.ws13{word-spacing:-42.592286pt;}
.ws6{word-spacing:-42.528525pt;}
.ws1e{word-spacing:-42.507253pt;}
.ws7{word-spacing:-42.464764pt;}
.ws22{word-spacing:-42.401003pt;}
.ws4a{word-spacing:-42.337242pt;}
.ws57{word-spacing:-42.273481pt;}
.ws2c{word-spacing:-42.209720pt;}
.ws3d{word-spacing:-42.082198pt;}
.ws38{word-spacing:-42.018437pt;}
.ws3e{word-spacing:-41.954677pt;}
.ws66{word-spacing:-41.890916pt;}
.ws55{word-spacing:-41.827155pt;}
.ws28{word-spacing:-41.763394pt;}
.ws3b{word-spacing:-41.699633pt;}
.ws16{word-spacing:-41.508350pt;}
.ws25{word-spacing:-41.444589pt;}
.ws35{word-spacing:-41.380828pt;}
.ws4e{word-spacing:-41.317068pt;}
.ws1b{word-spacing:-41.253307pt;}
.ws37{word-spacing:-41.125785pt;}
.ws44{word-spacing:-41.062024pt;}
.wsf{word-spacing:-40.998263pt;}
.ws11{word-spacing:-40.806980pt;}
.ws7d{word-spacing:-40.679458pt;}
.ws83{word-spacing:-40.551937pt;}
.ws61{word-spacing:-40.424415pt;}
.ws4f{word-spacing:-40.360654pt;}
.ws10{word-spacing:-40.169371pt;}
.ws5b{word-spacing:-40.105610pt;}
.ws2f{word-spacing:-40.041849pt;}
.ws29{word-spacing:-39.978088pt;}
.ws65{word-spacing:-39.914328pt;}
.ws24{word-spacing:-39.850567pt;}
.ws3c{word-spacing:-39.659284pt;}
.ws36{word-spacing:-39.531762pt;}
.ws31{word-spacing:-39.468001pt;}
.ws5f{word-spacing:-39.340479pt;}
.ws41{word-spacing:-39.212958pt;}
.ws23{word-spacing:-39.149197pt;}
.ws7c{word-spacing:-39.085436pt;}
.ws6e{word-spacing:-39.039997pt;}
.ws1a{word-spacing:-39.021675pt;}
.ws64{word-spacing:-38.957914pt;}
.ws47{word-spacing:-38.923633pt;}
.ws78{word-spacing:-38.894153pt;}
.ws6c{word-spacing:-38.865451pt;}
.ws32{word-spacing:-38.830392pt;}
.ws46{word-spacing:-38.807269pt;}
.ws7f{word-spacing:-38.702870pt;}
.ws6f{word-spacing:-38.632724pt;}
.ws39{word-spacing:-38.575349pt;}
.ws49{word-spacing:-38.574542pt;}
.ws6d{word-spacing:-38.516360pt;}
.ws7b{word-spacing:-38.256544pt;}
.ws2b{word-spacing:-38.192783pt;}
.ws52{word-spacing:-37.873979pt;}
.ws54{word-spacing:-37.618935pt;}
.ws33{word-spacing:-37.555174pt;}
.ws4b{word-spacing:-37.491413pt;}
.ws60{word-spacing:-37.236369pt;}
.ws79{word-spacing:-37.172609pt;}
.ws72{word-spacing:-36.981326pt;}
.ws80{word-spacing:-36.917565pt;}
.ws30{word-spacing:-36.598760pt;}
.ws40{word-spacing:-36.024912pt;}
.ws51{word-spacing:-35.961151pt;}
.ws3f{word-spacing:-35.451064pt;}
.ws19{word-spacing:-35.387303pt;}
.ws67{word-spacing:-34.877216pt;}
.ws7e{word-spacing:-34.303368pt;}
.ws4c{word-spacing:-33.920802pt;}
.ws76{word-spacing:-33.793281pt;}
.ws5a{word-spacing:-33.346954pt;}
.ws58{word-spacing:-32.783727pt;}
.ws5d{word-spacing:-30.286431pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.wse{word-spacing:0.000000pt;}
.ws45{word-spacing:127.999989pt;}
.ws6b{word-spacing:152.610896pt;}
.ws56{word-spacing:179.956349pt;}
._14{margin-left:-8.182654pt;}
._10{margin-left:-5.993525pt;}
._6{margin-left:-5.037112pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._4{width:1.721544pt;}
._7{width:2.656703pt;}
._c{width:4.186592pt;}
._d{width:5.165376pt;}
._9{width:10.074226pt;}
._8{width:11.158156pt;}
._1f{width:15.770195pt;}
._20{width:16.875386pt;}
._2{width:20.063424pt;}
._f{width:21.211127pt;}
._5{width:22.167541pt;}
._a{width:23.697803pt;}
._b{width:24.590455pt;}
._e{width:25.504360pt;}
._1a{width:29.797598pt;}
._1c{width:106.331649pt;}
._1e{width:109.090900pt;}
._1b{width:119.214536pt;}
._1d{width:144.122196pt;}
._12{width:153.774533pt;}
._13{width:155.578169pt;}
._17{width:230.690890pt;}
._16{width:253.678550pt;}
._18{width:290.850885pt;}
._15{width:319.603327pt;}
._19{width:390.865422pt;}
._11{width:680.261761pt;}
.fs0{font-size:42.507253pt;}
.fs4{font-size:53.134080pt;}
.fs3{font-size:58.181813pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.y6f{bottom:94.164000pt;}
.y14e{bottom:95.686667pt;}
.ye0{bottom:97.014667pt;}
.y176{bottom:98.010667pt;}
.y160{bottom:100.668000pt;}
.y11b{bottom:106.938667pt;}
.y66{bottom:107.641333pt;}
.y131{bottom:108.970667pt;}
.yad{bottom:109.500000pt;}
.yd8{bottom:113.249333pt;}
.ybd{bottom:117.916000pt;}
.y13c{bottom:117.936000pt;}
.y189{bottom:118.932000pt;}
.y84{bottom:121.921333pt;}
.y6e{bottom:123.056000pt;}
.y4a{bottom:123.904000pt;}
.y14d{bottom:124.578667pt;}
.ydf{bottom:125.906667pt;}
.y1e{bottom:126.416000pt;}
.y175{bottom:126.902667pt;}
.y15f{bottom:129.560000pt;}
.yf3{bottom:132.302667pt;}
.y11a{bottom:135.830667pt;}
.y65{bottom:136.533333pt;}
.yac{bottom:138.392000pt;}
.ybc{bottom:145.014667pt;}
.y130{bottom:145.832000pt;}
.y188{bottom:147.824000pt;}
.yd7{bottom:150.110667pt;}
.y6d{bottom:151.948000pt;}
.y14c{bottom:153.469333pt;}
.yde{bottom:154.798667pt;}
.y1d{bottom:155.308000pt;}
.y49{bottom:155.781333pt;}
.y174{bottom:155.794667pt;}
.y3a{bottom:158.782667pt;}
.yf2{bottom:159.401333pt;}
.y119{bottom:164.722667pt;}
.y64{bottom:165.425333pt;}
.y15e{bottom:166.421333pt;}
.yab{bottom:167.284000pt;}
.y12f{bottom:174.724000pt;}
.yd6{bottom:179.002667pt;}
.ybb{bottom:179.288000pt;}
.y6c{bottom:180.840000pt;}
.y14b{bottom:182.361333pt;}
.ydd{bottom:183.689333pt;}
.y1c{bottom:184.200000pt;}
.y187{bottom:184.686667pt;}
.yf1{bottom:186.500000pt;}
.y83{bottom:187.674667pt;}
.y173{bottom:192.656000pt;}
.y118{bottom:193.614667pt;}
.y63{bottom:194.316000pt;}
.y15d{bottom:195.313333pt;}
.y39{bottom:195.645333pt;}
.y12e{bottom:203.614667pt;}
.yaa{bottom:204.145333pt;}
.y6b{bottom:209.730667pt;}
.yba{bottom:211.165333pt;}
.y14a{bottom:211.253333pt;}
.y13b{bottom:212.581333pt;}
.y1b{bottom:213.092000pt;}
.y186{bottom:213.577333pt;}
.yf0{bottom:213.598667pt;}
.yd5{bottom:215.864000pt;}
.y82{bottom:216.566667pt;}
.y109{bottom:218.320000pt;}
.y92{bottom:220.552000pt;}
.y172{bottom:221.548000pt;}
.y117{bottom:222.505333pt;}
.y15c{bottom:224.204000pt;}
.y38{bottom:224.536000pt;}
.y62{bottom:231.178667pt;}
.y12d{bottom:232.506667pt;}
.ya9{bottom:233.037333pt;}
.yef{bottom:240.697333pt;}
.y6a{bottom:241.280000pt;}
.y13a{bottom:241.473333pt;}
.y1a{bottom:241.982667pt;}
.y185{bottom:242.469333pt;}
.yd4{bottom:244.756000pt;}
.y108{bottom:245.418667pt;}
.y81{bottom:245.458667pt;}
.y149{bottom:248.114667pt;}
.y91{bottom:249.442667pt;}
.yb9{bottom:249.562667pt;}
.y171{bottom:250.440000pt;}
.y37{bottom:253.428000pt;}
.y116{bottom:259.368000pt;}
.y61{bottom:260.070667pt;}
.y15b{bottom:261.066667pt;}
.y12c{bottom:261.398667pt;}
.ya8{bottom:261.928000pt;}
.yee{bottom:267.794667pt;}
.y139{bottom:270.365333pt;}
.y184{bottom:271.361333pt;}
.y107{bottom:272.516000pt;}
.yd3{bottom:273.648000pt;}
.y80{bottom:274.349333pt;}
.y148{bottom:277.006667pt;}
.y90{bottom:278.334667pt;}
.yb8{bottom:278.453333pt;}
.y19{bottom:278.845333pt;}
.y36{bottom:282.320000pt;}
.y170{bottom:287.301333pt;}
.y115{bottom:288.258667pt;}
.y60{bottom:288.961333pt;}
.y15a{bottom:289.957333pt;}
.y12b{bottom:290.290667pt;}
.ya7{bottom:290.820000pt;}
.yed{bottom:294.893333pt;}
.y138{bottom:299.256000pt;}
.y106{bottom:299.614667pt;}
.yd2{bottom:302.538667pt;}
.y7f{bottom:303.241333pt;}
.y69{bottom:304.269333pt;}
.y147{bottom:305.898667pt;}
.y8f{bottom:307.226667pt;}
.yb7{bottom:307.345333pt;}
.y18{bottom:307.737333pt;}
.y183{bottom:308.222667pt;}
.y35{bottom:311.212000pt;}
.y16f{bottom:316.193333pt;}
.y114{bottom:317.150667pt;}
.y5f{bottom:317.853333pt;}
.y159{bottom:318.849333pt;}
.ya6{bottom:319.712000pt;}
.yec{bottom:321.992000pt;}
.y105{bottom:326.713333pt;}
.y12a{bottom:327.152000pt;}
.y137{bottom:328.148000pt;}
.y7e{bottom:332.133333pt;}
.yd1{bottom:334.088000pt;}
.y146{bottom:334.789333pt;}
.y8e{bottom:336.118667pt;}
.y68{bottom:336.146667pt;}
.y17{bottom:336.628000pt;}
.y182{bottom:337.114667pt;}
.y34{bottom:340.102667pt;}
.y16e{bottom:345.084000pt;}
.y113{bottom:346.042667pt;}
.y5e{bottom:346.745333pt;}
.ya5{bottom:348.604000pt;}
.yeb{bottom:349.090667pt;}
.y104{bottom:353.812000pt;}
.y158{bottom:355.712000pt;}
.y129{bottom:356.044000pt;}
.y7d{bottom:362.353333pt;}
.yd0{bottom:362.978667pt;}
.y145{bottom:363.681333pt;}
.y8d{bottom:365.009333pt;}
.y16{bottom:365.520000pt;}
.y181{bottom:366.006667pt;}
.y67{bottom:368.024000pt;}
.y33{bottom:368.994667pt;}
.yb6{bottom:372.368000pt;}
.y112{bottom:374.934667pt;}
.y5d{bottom:375.637333pt;}
.yea{bottom:376.188000pt;}
.ya4{bottom:377.494667pt;}
.y103{bottom:380.910667pt;}
.y16d{bottom:381.946667pt;}
.y157{bottom:384.602667pt;}
.y128{bottom:384.934667pt;}
.ycf{bottom:391.870667pt;}
.y144{bottom:392.573333pt;}
.y8c{bottom:393.901333pt;}
.y15{bottom:394.412000pt;}
.y32{bottom:397.886667pt;}
.y7c{bottom:401.872000pt;}
.y180{bottom:402.868000pt;}
.ye9{bottom:403.286667pt;}
.y111{bottom:403.825333pt;}
.yb5{bottom:404.244000pt;}
.y5c{bottom:404.528000pt;}
.ya3{bottom:407.714667pt;}
.y102{bottom:408.008000pt;}
.y16c{bottom:410.837333pt;}
.y156{bottom:413.494667pt;}
.y127{bottom:413.826667pt;}
.yce{bottom:420.762667pt;}
.ydc{bottom:422.793333pt;}
.y31{bottom:426.778667pt;}
.y143{bottom:429.434667pt;}
.ye8{bottom:430.385333pt;}
.y7b{bottom:430.762667pt;}
.y14{bottom:431.273333pt;}
.y17f{bottom:431.760000pt;}
.y5b{bottom:433.420000pt;}
.y101{bottom:435.106667pt;}
.yb4{bottom:436.121333pt;}
.y16b{bottom:439.729333pt;}
.y110{bottom:440.688000pt;}
.y126{bottom:442.718667pt;}
.ya2{bottom:447.233333pt;}
.y155{bottom:450.356000pt;}
.y136{bottom:451.685333pt;}
.ycd{bottom:452.310667pt;}
.y30{bottom:455.669333pt;}
.ye7{bottom:457.484000pt;}
.y142{bottom:458.326667pt;}
.y7a{bottom:459.654667pt;}
.y13{bottom:460.165333pt;}
.y100{bottom:462.205333pt;}
.yb3{bottom:462.312000pt;}
.y16a{bottom:468.621333pt;}
.y10f{bottom:469.578667pt;}
.y5a{bottom:470.281333pt;}
.y125{bottom:471.610667pt;}
.ya1{bottom:476.125333pt;}
.y154{bottom:479.248000pt;}
.y135{bottom:480.576000pt;}
.ycc{bottom:481.202667pt;}
.y2f{bottom:484.561333pt;}
.ye6{bottom:484.582667pt;}
.y141{bottom:487.218667pt;}
.y79{bottom:488.546667pt;}
.y12{bottom:489.057333pt;}
.yff{bottom:489.304000pt;}
.yb2{bottom:491.202667pt;}
.y169{bottom:497.513333pt;}
.y10e{bottom:498.470667pt;}
.y59{bottom:499.173333pt;}
.y124{bottom:500.501333pt;}
.y153{bottom:508.140000pt;}
.ycb{bottom:510.094667pt;}
.ye5{bottom:511.680000pt;}
.y2e{bottom:513.453333pt;}
.y140{bottom:516.109333pt;}
.yfe{bottom:516.402667pt;}
.y78{bottom:517.438667pt;}
.y11{bottom:517.948000pt;}
.yb1{bottom:520.094667pt;}
.y17e{bottom:526.404000pt;}
.y48{bottom:526.737333pt;}
.y10d{bottom:527.362667pt;}
.y58{bottom:528.065333pt;}
.y123{bottom:529.393333pt;}
.y168{bottom:534.374667pt;}
.y152{bottom:537.032000pt;}
.ya0{bottom:541.080000pt;}
.yca{bottom:541.642667pt;}
.y2d{bottom:542.345333pt;}
.yfd{bottom:543.500000pt;}
.y13f{bottom:545.001333pt;}
.ye4{bottom:545.953333pt;}
.y77{bottom:546.329333pt;}
.y10{bottom:546.840000pt;}
.yb0{bottom:548.986667pt;}
.y8b{bottom:554.300000pt;}
.y17d{bottom:555.296000pt;}
.y47{bottom:555.628000pt;}
.y10c{bottom:556.254667pt;}
.y57{bottom:556.957333pt;}
.y122{bottom:558.285333pt;}
.y167{bottom:563.266667pt;}
.y9f{bottom:568.178667pt;}
.yc9{bottom:570.534667pt;}
.yfc{bottom:570.598667pt;}
.y2c{bottom:571.236000pt;}
.y13e{bottom:573.893333pt;}
.y76{bottom:575.221333pt;}
.yf{bottom:575.732000pt;}
.ye3{bottom:577.830667pt;}
.y8a{bottom:583.192000pt;}
.y46{bottom:584.520000pt;}
.y10b{bottom:585.145333pt;}
.y56{bottom:585.848000pt;}
.y121{bottom:587.177333pt;}
.y166{bottom:592.158667pt;}
.y9e{bottom:595.277333pt;}
.yfb{bottom:597.697333pt;}
.y2b{bottom:600.128000pt;}
.yc8{bottom:600.754667pt;}
.y151{bottom:602.785333pt;}
.y75{bottom:604.113333pt;}
.y13d{bottom:605.441333pt;}
.y89{bottom:612.082667pt;}
.ye{bottom:612.593333pt;}
.y45{bottom:613.412000pt;}
.y10a{bottom:614.037333pt;}
.y55{bottom:614.740000pt;}
.ye2{bottom:616.068000pt;}
.y17c{bottom:621.049333pt;}
.y9d{bottom:622.376000pt;}
.y120{bottom:624.038667pt;}
.yfa{bottom:624.796000pt;}
.y2a{bottom:629.020000pt;}
.y150{bottom:631.676000pt;}
.ydb{bottom:633.005333pt;}
.yc7{bottom:633.962667pt;}
.y74{bottom:634.333333pt;}
.y88{bottom:640.974667pt;}
.y44{bottom:642.304000pt;}
.y54{bottom:643.632000pt;}
.ye1{bottom:644.960000pt;}
.yd{bottom:649.454667pt;}
.y9c{bottom:649.473333pt;}
.y17b{bottom:649.941333pt;}
.yf9{bottom:651.894667pt;}
.y11f{bottom:652.930667pt;}
.y29{bottom:657.912000pt;}
.yda{bottom:661.896000pt;}
.yc6{bottom:662.854667pt;}
.y14f{bottom:663.225333pt;}
.y87{bottom:669.866667pt;}
.y43{bottom:671.194667pt;}
.y53{bottom:672.524000pt;}
.y73{bottom:673.852000pt;}
.yc{bottom:674.693333pt;}
.y9b{bottom:676.572000pt;}
.yf8{bottom:678.992000pt;}
.y11e{bottom:681.821333pt;}
.y28{bottom:686.802667pt;}
.y134{bottom:690.788000pt;}
.yc5{bottom:691.746667pt;}
.yd9{bottom:692.116000pt;}
.y86{bottom:698.758667pt;}
.y42{bottom:700.086667pt;}
.yaf{bottom:701.414667pt;}
.y72{bottom:702.744000pt;}
.y9a{bottom:703.670667pt;}
.yf7{bottom:706.090667pt;}
.yb{bottom:706.142667pt;}
.y52{bottom:709.385333pt;}
.y11d{bottom:710.713333pt;}
.y17a{bottom:715.694667pt;}
.yc4{bottom:720.637333pt;}
.y133{bottom:721.008000pt;}
.y27{bottom:723.665333pt;}
.y41{bottom:728.978667pt;}
.yae{bottom:730.306667pt;}
.y99{bottom:730.769333pt;}
.y71{bottom:731.634667pt;}
.yf6{bottom:733.189333pt;}
.ya{bottom:737.592000pt;}
.y51{bottom:738.277333pt;}
.y11c{bottom:739.605333pt;}
.y179{bottom:744.586667pt;}
.yc3{bottom:749.529333pt;}
.y165{bottom:752.556000pt;}
.y98{bottom:757.866667pt;}
.y40{bottom:757.869333pt;}
.yf5{bottom:760.288000pt;}
.y26{bottom:760.526667pt;}
.y9{bottom:761.762667pt;}
.y50{bottom:767.168000pt;}
.y85{bottom:768.497333pt;}
.y18a{bottom:773.478667pt;}
.y164{bottom:781.448000pt;}
.y97{bottom:784.965333pt;}
.yf4{bottom:787.385333pt;}
.y70{bottom:789.418667pt;}
.y8{bottom:793.226667pt;}
.y3f{bottom:794.732000pt;}
.y4f{bottom:796.060000pt;}
.y25{bottom:797.388000pt;}
.y178{bottom:810.340000pt;}
.y96{bottom:812.064000pt;}
.yc2{bottom:814.484000pt;}
.y132{bottom:818.309333pt;}
.y3e{bottom:823.624000pt;}
.y7{bottom:824.516000pt;}
.y4e{bottom:824.952000pt;}
.y24{bottom:826.280000pt;}
.y177{bottom:839.232000pt;}
.yc1{bottom:841.582667pt;}
.y95{bottom:846.337333pt;}
.y163{bottom:847.201333pt;}
.y3d{bottom:852.514667pt;}
.y4d{bottom:853.844000pt;}
.y23{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.yc0{bottom:868.681333pt;}
.y162{bottom:876.093333pt;}
.y94{bottom:878.214667pt;}
.y3c{bottom:881.406667pt;}
.y4c{bottom:882.734667pt;}
.y22{bottom:884.064000pt;}
.ybf{bottom:895.780000pt;}
.y161{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y93{bottom:910.090667pt;}
.y3b{bottom:910.298667pt;}
.y4b{bottom:911.626667pt;}
.y21{bottom:912.954667pt;}
.ybe{bottom:922.877333pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h5{height:45.525287pt;}
.h4{height:47.820680pt;}
.h7{height:48.298879pt;}
.h6{height:52.887268pt;}
.h2{height:57.384800pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:92.272000pt;}
.xe{left:93.245333pt;}
.xc{left:94.488000pt;}
.x14{left:114.222667pt;}
.x4{left:128.689333pt;}
.x15{left:134.338667pt;}
.x1a{left:140.926667pt;}
.x1b{left:141.946667pt;}
.x6{left:142.977333pt;}
.x12{left:213.768000pt;}
.x10{left:215.470667pt;}
.xb{left:221.642667pt;}
.x16{left:235.361333pt;}
.x13{left:236.252000pt;}
.x19{left:334.433333pt;}
.x17{left:336.500000pt;}
.x5{left:350.672000pt;}
.x9{left:458.084000pt;}
.x11{left:458.993333pt;}
.xa{left:492.482667pt;}
.x3{left:504.830667pt;}
.x8{left:506.382667pt;}
.x18{left:522.781333pt;}
.x7{left:560.866667pt;}
.x2{left:576.689333pt;}
.x1{left:615.817333pt;}
.xd{left:698.080000pt;}
}




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