
    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_dc3509c3f0fda88fc56bf47f.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_f07e957421e7a7a587890e47.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_00d72fdc0ee5b2e8c44d1ddd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_355c06a8babdd48346233ee7.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_36906e88b2154f1b63b6d756.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_7ee06cc630ec219e98e4f14e.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2bc2414bd8c5dcafc788cd1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b0a88e0440f0eb5717c11065.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727000;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;}
.m5{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);}
.ma{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);}
.m11{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);}
.m28{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.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);}
.m1b{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);}
.m26{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);}
.m27{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);}
.m13{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);}
.m23{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);}
.m25{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);}
.m8{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);}
.m1f{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);}
.mf{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);}
.m10{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);}
.m16{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);}
.m18{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);}
.m1c{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);}
.m24{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);}
.m15{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);}
.m12{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);}
.m3{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);}
.m9{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);}
.m17{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);}
.m1e{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);}
.m1{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);}
.m19{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);}
.me{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);}
.m1d{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);}
.m1a{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);}
.m6{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);}
.mc{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);}
.m22{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);}
.md{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);}
.m21{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);}
.m20{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);}
.m4{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);}
.m7{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;}
.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;}
}
.ws1b{word-spacing:-71.731020px;}
.ws53{word-spacing:-65.454540px;}
.ws75{word-spacing:-55.663272px;}
.ws6a{word-spacing:-55.304616px;}
.ws26{word-spacing:-54.874230px;}
.ws57{word-spacing:-54.802499px;}
.ws28{word-spacing:-54.730768px;}
.ws2c{word-spacing:-54.659037px;}
.ws74{word-spacing:-54.300382px;}
.ws32{word-spacing:-54.013458px;}
.ws3{word-spacing:-53.798250px;}
.ws2b{word-spacing:-53.726534px;}
.ws76{word-spacing:-53.654803px;}
.ws6e{word-spacing:-53.583072px;}
.ws8f{word-spacing:-53.367879px;}
.ws51{word-spacing:-53.296148px;}
.ws88{word-spacing:-53.224417px;}
.ws87{word-spacing:-53.080955px;}
.ws35{word-spacing:-53.009224px;}
.ws21{word-spacing:-52.937493px;}
.ws67{word-spacing:-52.794031px;}
.ws72{word-spacing:-52.650569px;}
.ws30{word-spacing:-52.578838px;}
.ws31{word-spacing:-52.507107px;}
.ws7f{word-spacing:-52.435376px;}
.ws4a{word-spacing:-52.220183px;}
.ws5a{word-spacing:-52.148452px;}
.ws10{word-spacing:-52.076721px;}
.wsf{word-spacing:-52.028459px;}
.ws77{word-spacing:-52.004989px;}
.ws39{word-spacing:-51.861527px;}
.ws8e{word-spacing:-51.789796px;}
.ws20{word-spacing:-51.718065px;}
.ws68{word-spacing:-51.574603px;}
.ws14{word-spacing:-51.431141px;}
.ws95{word-spacing:-51.359410px;}
.ws50{word-spacing:-51.215948px;}
.ws91{word-spacing:-51.144217px;}
.ws9{word-spacing:-51.000755px;}
.ws69{word-spacing:-50.785562px;}
.ws2d{word-spacing:-50.713831px;}
.ws6f{word-spacing:-50.570369px;}
.ws94{word-spacing:-50.426907px;}
.wse{word-spacing:-50.139983px;}
.ws7b{word-spacing:-49.996521px;}
.ws6d{word-spacing:-49.924790px;}
.ws86{word-spacing:-49.853059px;}
.ws7c{word-spacing:-49.781328px;}
.ws34{word-spacing:-49.709597px;}
.ws33{word-spacing:-49.637866px;}
.ws90{word-spacing:-49.566135px;}
.ws4c{word-spacing:-49.494404px;}
.ws4b{word-spacing:-49.422673px;}
.ws8a{word-spacing:-49.350942px;}
.ws78{word-spacing:-49.207480px;}
.ws2e{word-spacing:-49.135749px;}
.ws80{word-spacing:-49.064018px;}
.ws3a{word-spacing:-48.992287px;}
.ws56{word-spacing:-48.920556px;}
.ws2a{word-spacing:-48.848825px;}
.ws18{word-spacing:-48.777094px;}
.ws1c{word-spacing:-48.705363px;}
.ws5{word-spacing:-48.633632px;}
.ws19{word-spacing:-48.566167px;}
.ws1a{word-spacing:-48.561901px;}
.ws7{word-spacing:-48.490170px;}
.ws16{word-spacing:-48.418439px;}
.ws93{word-spacing:-48.347474px;}
.ws4{word-spacing:-48.346707px;}
.ws22{word-spacing:-48.274976px;}
.ws15{word-spacing:-48.203245px;}
.ws3b{word-spacing:-48.131514px;}
.ws17{word-spacing:-48.059783px;}
.ws6{word-spacing:-47.988052px;}
.ws36{word-spacing:-47.916321px;}
.ws1d{word-spacing:-47.844590px;}
.ws25{word-spacing:-47.820660px;}
.wsd{word-spacing:-47.772859px;}
.ws41{word-spacing:-47.701128px;}
.ws82{word-spacing:-47.629397px;}
.ws5c{word-spacing:-47.414204px;}
.ws4d{word-spacing:-47.199011px;}
.wsc{word-spacing:-47.127280px;}
.ws13{word-spacing:-47.055549px;}
.ws47{word-spacing:-46.983818px;}
.ws4f{word-spacing:-46.840356px;}
.ws3d{word-spacing:-46.625163px;}
.ws8{word-spacing:-46.553432px;}
.ws92{word-spacing:-46.409970px;}
.ws42{word-spacing:-46.266508px;}
.ws1e{word-spacing:-46.123046px;}
.ws84{word-spacing:-46.051315px;}
.ws27{word-spacing:-45.907853px;}
.ws5b{word-spacing:-45.836122px;}
.ws59{word-spacing:-45.692660px;}
.ws79{word-spacing:-45.620929px;}
.ws63{word-spacing:-45.556360px;}
.ws6c{word-spacing:-45.549198px;}
.ws73{word-spacing:-45.477467px;}
.ws38{word-spacing:-45.334005px;}
.wsb{word-spacing:-45.262274px;}
.ws44{word-spacing:-45.190543px;}
.ws7a{word-spacing:-45.118812px;}
.ws46{word-spacing:-44.975350px;}
.ws45{word-spacing:-44.903619px;}
.ws3c{word-spacing:-44.831887px;}
.ws66{word-spacing:-44.705451px;}
.ws8b{word-spacing:-44.688425px;}
.ws65{word-spacing:-44.509087px;}
.ws29{word-spacing:-44.473232px;}
.ws81{word-spacing:-44.401501px;}
.ws24{word-spacing:-44.329770px;}
.ws89{word-spacing:-44.186308px;}
.ws8d{word-spacing:-44.114577px;}
.ws62{word-spacing:-44.050905px;}
.ws49{word-spacing:-44.042846px;}
.ws7e{word-spacing:-43.899384px;}
.wsa{word-spacing:-43.755922px;}
.ws55{word-spacing:-43.723633px;}
.ws37{word-spacing:-43.684191px;}
.ws3e{word-spacing:-43.658178px;}
.ws48{word-spacing:-43.612460px;}
.ws5e{word-spacing:-43.592724px;}
.ws4e{word-spacing:-43.540729px;}
.ws5f{word-spacing:-43.527269px;}
.ws6b{word-spacing:-43.468998px;}
.ws64{word-spacing:-43.461815px;}
.ws61{word-spacing:-43.396360px;}
.ws60{word-spacing:-43.330905px;}
.ws23{word-spacing:-43.253805px;}
.ws7d{word-spacing:-43.110343px;}
.ws97{word-spacing:-42.966881px;}
.ws70{word-spacing:-42.608226px;}
.ws98{word-spacing:-42.536495px;}
.ws83{word-spacing:-42.464764px;}
.ws8c{word-spacing:-42.106109px;}
.ws43{word-spacing:-42.034378px;}
.ws3f{word-spacing:-41.675723px;}
.ws1f{word-spacing:-41.388799px;}
.ws85{word-spacing:-41.173605px;}
.ws96{word-spacing:-40.671488px;}
.ws5d{word-spacing:-40.647269px;}
.ws52{word-spacing:-40.385451px;}
.ws71{word-spacing:-40.312833px;}
.ws40{word-spacing:-40.241102px;}
.ws12{word-spacing:-39.954178px;}
.ws58{word-spacing:-39.595523px;}
.ws2f{word-spacing:-37.802248px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws11{word-spacing:0.000000px;}
.ws54{word-spacing:156.763623px;}
._d{margin-left:-9.219828px;}
._5{margin-left:-5.920201px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._6{width:1.382018px;}
._4{width:2.668393px;}
._a{width:4.447321px;}
._9{width:6.369712px;}
._18{width:12.462069px;}
._1a{width:16.024708px;}
._1c{width:18.458780px;}
._8{width:19.663862px;}
._c{width:21.069791px;}
._2{width:22.571352px;}
._7{width:24.484178px;}
._b{width:26.851308px;}
._1d{width:28.582420px;}
._1b{width:30.394821px;}
._1e{width:32.092456px;}
._19{width:72.981812px;}
._14{width:227.912708px;}
._12{width:241.461798px;}
._e{width:381.992695px;}
._13{width:390.239967px;}
._15{width:396.523603px;}
._f{width:404.770875px;}
._11{width:405.818148px;}
._17{width:419.432692px;}
._10{width:430.559964px;}
._16{width:444.174508px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs3{font-size:65.454540px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y3c{bottom:43.525500px;}
.y1f{bottom:57.723000px;}
.y1e{bottom:71.919000px;}
.y3b{bottom:107.647500px;}
.y92{bottom:110.689500px;}
.y7b{bottom:112.131000px;}
.yd0{bottom:114.574500px;}
.y4e{bottom:116.613000px;}
.yad{bottom:118.108500px;}
.y14b{bottom:119.602500px;}
.y11d{bottom:122.592000px;}
.y118{bottom:126.186000px;}
.y162{bottom:127.821000px;}
.y177{bottom:133.798500px;}
.y3a{bottom:140.151000px;}
.y91{bottom:143.193000px;}
.y7a{bottom:144.633000px;}
.ycf{bottom:147.076500px;}
.y4d{bottom:149.116500px;}
.yac{bottom:150.610500px;}
.y5f{bottom:155.094000px;}
.y117{bottom:158.689500px;}
.y14a{bottom:161.071500px;}
.y176{bottom:166.302000px;}
.y108{bottom:166.533000px;}
.y161{bottom:169.291500px;}
.y39{bottom:172.653000px;}
.y90{bottom:175.696500px;}
.y1d{bottom:176.112000px;}
.y79{bottom:177.136500px;}
.y12f{bottom:178.630500px;}
.y4c{bottom:181.620000px;}
.yab{bottom:183.114000px;}
.y5e{bottom:187.597500px;}
.y116{bottom:191.193000px;}
.y149{bottom:193.575000px;}
.y107{bottom:197.019000px;}
.y175{bottom:198.805500px;}
.y160{bottom:201.793500px;}
.y38{bottom:205.156500px;}
.y17a{bottom:207.772500px;}
.y8f{bottom:208.200000px;}
.y1c{bottom:208.614000px;}
.y78{bottom:209.640000px;}
.y12e{bottom:211.134000px;}
.y4b{bottom:214.123500px;}
.yaa{bottom:215.617500px;}
.y5d{bottom:220.101000px;}
.yce{bottom:220.152000px;}
.y115{bottom:223.695000px;}
.y148{bottom:226.078500px;}
.y106{bottom:227.505000px;}
.y15f{bottom:234.297000px;}
.y37{bottom:237.660000px;}
.y174{bottom:240.274500px;}
.y8e{bottom:240.702000px;}
.y77{bottom:242.143500px;}
.y12d{bottom:243.637500px;}
.y4a{bottom:246.625500px;}
.ya9{bottom:248.121000px;}
.y1b{bottom:250.084500px;}
.ycd{bottom:250.636500px;}
.y5c{bottom:252.603000px;}
.y114{bottom:256.198500px;}
.y105{bottom:257.989500px;}
.y147{bottom:258.582000px;}
.y36{bottom:270.163500px;}
.y173{bottom:272.778000px;}
.y76{bottom:274.645500px;}
.y15e{bottom:275.767500px;}
.y12c{bottom:276.141000px;}
.y49{bottom:279.129000px;}
.ya8{bottom:280.623000px;}
.ycc{bottom:281.122500px;}
.y8d{bottom:282.172500px;}
.y1a{bottom:282.588000px;}
.y5b{bottom:285.106500px;}
.y104{bottom:288.475500px;}
.y113{bottom:288.702000px;}
.y146{bottom:291.084000px;}
.yb2{bottom:294.073500px;}
.y172{bottom:305.281500px;}
.y75{bottom:307.149000px;}
.y15d{bottom:308.269500px;}
.y12b{bottom:308.643000px;}
.ycb{bottom:311.608500px;}
.y35{bottom:311.632500px;}
.ya7{bottom:313.126500px;}
.y179{bottom:314.247000px;}
.y8c{bottom:314.674500px;}
.y19{bottom:315.090000px;}
.y5a{bottom:317.610000px;}
.y103{bottom:318.961500px;}
.y112{bottom:321.205500px;}
.y145{bottom:323.587500px;}
.yb1{bottom:326.577000px;}
.y15c{bottom:340.773000px;}
.y12a{bottom:341.146500px;}
.yca{bottom:342.094500px;}
.yea{bottom:342.192000px;}
.y34{bottom:344.136000px;}
.ya6{bottom:345.630000px;}
.y171{bottom:346.750500px;}
.y8b{bottom:347.178000px;}
.y18{bottom:347.593500px;}
.y74{bottom:348.618000px;}
.y102{bottom:349.447500px;}
.y11c{bottom:350.113500px;}
.y48{bottom:353.101500px;}
.y111{bottom:353.707500px;}
.yd4{bottom:354.595500px;}
.y144{bottom:356.091000px;}
.y59{bottom:359.079000px;}
.yc9{bottom:372.580500px;}
.ye9{bottom:372.678000px;}
.y33{bottom:376.638000px;}
.ya5{bottom:378.133500px;}
.y170{bottom:379.254000px;}
.y8a{bottom:379.681500px;}
.y101{bottom:379.933500px;}
.y17{bottom:380.097000px;}
.y73{bottom:381.121500px;}
.y15b{bottom:382.242000px;}
.y129{bottom:382.615500px;}
.y47{bottom:385.605000px;}
.y110{bottom:386.211000px;}
.yd3{bottom:387.099000px;}
.y143{bottom:388.593000px;}
.y58{bottom:391.582500px;}
.yc8{bottom:403.065000px;}
.ye8{bottom:403.164000px;}
.y32{bottom:409.141500px;}
.y100{bottom:410.418000px;}
.ya4{bottom:410.635500px;}
.y16f{bottom:411.757500px;}
.y89{bottom:412.185000px;}
.y16{bottom:412.600500px;}
.y72{bottom:413.625000px;}
.y128{bottom:415.119000px;}
.y46{bottom:418.108500px;}
.y10f{bottom:418.714500px;}
.yd2{bottom:419.602500px;}
.y142{bottom:421.096500px;}
.y15a{bottom:423.712500px;}
.y57{bottom:424.086000px;}
.yc7{bottom:433.551000px;}
.ye7{bottom:433.650000px;}
.yff{bottom:440.904000px;}
.y31{bottom:441.645000px;}
.y88{bottom:444.687000px;}
.y15{bottom:445.102500px;}
.y71{bottom:446.128500px;}
.y127{bottom:447.622500px;}
.y45{bottom:450.610500px;}
.y10e{bottom:451.218000px;}
.ya3{bottom:452.106000px;}
.y16e{bottom:453.226500px;}
.y56{bottom:456.589500px;}
.y141{bottom:462.567000px;}
.yc6{bottom:464.037000px;}
.ye6{bottom:464.134500px;}
.y159{bottom:465.181500px;}
.yfe{bottom:471.390000px;}
.y30{bottom:474.148500px;}
.y87{bottom:477.190500px;}
.y14{bottom:477.606000px;}
.y126{bottom:480.126000px;}
.y44{bottom:483.114000px;}
.y10d{bottom:483.720000px;}
.ya2{bottom:484.608000px;}
.y16d{bottom:485.730000px;}
.y70{bottom:487.597500px;}
.y55{bottom:489.091500px;}
.yc5{bottom:494.523000px;}
.ye5{bottom:494.620500px;}
.y140{bottom:495.069000px;}
.y158{bottom:497.685000px;}
.yfd{bottom:501.876000px;}
.y2f{bottom:506.650500px;}
.y13{bottom:510.109500px;}
.y125{bottom:512.628000px;}
.y43{bottom:515.617500px;}
.y10c{bottom:516.223500px;}
.ya1{bottom:517.111500px;}
.y178{bottom:518.232000px;}
.y6f{bottom:520.101000px;}
.y54{bottom:521.595000px;}
.yc4{bottom:525.009000px;}
.ye4{bottom:525.106500px;}
.y16c{bottom:527.199000px;}
.y13f{bottom:527.572500px;}
.y157{bottom:530.188500px;}
.yfc{bottom:532.362000px;}
.y2e{bottom:539.154000px;}
.y12{bottom:542.611500px;}
.y124{bottom:545.131500px;}
.y42{bottom:548.121000px;}
.y10b{bottom:548.727000px;}
.ya0{bottom:549.615000px;}
.y86{bottom:550.264500px;}
.y53{bottom:554.098500px;}
.yc3{bottom:555.493500px;}
.ye3{bottom:555.592500px;}
.y16b{bottom:559.702500px;}
.y13e{bottom:560.076000px;}
.y6e{bottom:561.570000px;}
.yfb{bottom:562.846500px;}
.y156{bottom:571.657500px;}
.y2d{bottom:574.645500px;}
.y11{bottom:575.115000px;}
.y123{bottom:577.635000px;}
.y41{bottom:580.623000px;}
.y85{bottom:580.750500px;}
.y10a{bottom:581.230500px;}
.y9f{bottom:582.118500px;}
.yc2{bottom:585.979500px;}
.ye2{bottom:586.077000px;}
.y52{bottom:586.600500px;}
.y13d{bottom:592.579500px;}
.yfa{bottom:593.332500px;}
.y6d{bottom:594.073500px;}
.y11b{bottom:595.567500px;}
.y16a{bottom:601.171500px;}
.y155{bottom:604.161000px;}
.y10{bottom:607.618500px;}
.y84{bottom:611.236500px;}
.y40{bottom:613.126500px;}
.y9e{bottom:614.620500px;}
.yc1{bottom:616.465500px;}
.ye1{bottom:616.563000px;}
.y2c{bottom:619.104000px;}
.yd1{bottom:623.587500px;}
.yf9{bottom:623.818500px;}
.y13c{bottom:625.081500px;}
.y6c{bottom:626.577000px;}
.y51{bottom:628.071000px;}
.y169{bottom:633.675000px;}
.y83{bottom:641.722500px;}
.y154{bottom:645.630000px;}
.yc0{bottom:646.951500px;}
.ye0{bottom:647.049000px;}
.y3f{bottom:648.618000px;}
.yf{bottom:649.087500px;}
.y2b{bottom:651.607500px;}
.yf8{bottom:654.304500px;}
.y9d{bottom:656.091000px;}
.y13b{bottom:657.585000px;}
.y6b{bottom:659.079000px;}
.y50{bottom:660.574500px;}
.y168{bottom:666.178500px;}
.y82{bottom:672.207000px;}
.ybf{bottom:677.436000px;}
.ydf{bottom:677.535000px;}
.y153{bottom:678.133500px;}
.y11e{bottom:684.111000px;}
.yf7{bottom:684.789000px;}
.y109{bottom:684.790500px;}
.y9c{bottom:688.593000px;}
.y13a{bottom:690.088500px;}
.ye{bottom:690.558000px;}
.y6a{bottom:691.582500px;}
.y2a{bottom:693.076500px;}
.y81{bottom:702.693000px;}
.y167{bottom:707.647500px;}
.ybe{bottom:707.922000px;}
.yde{bottom:708.021000px;}
.y152{bottom:710.635500px;}
.yf6{bottom:715.275000px;}
.y122{bottom:716.613000px;}
.yd{bottom:718.126500px;}
.y9b{bottom:721.096500px;}
.y69{bottom:724.086000px;}
.y29{bottom:725.580000px;}
.y139{bottom:731.557500px;}
.y80{bottom:733.179000px;}
.ybd{bottom:738.408000px;}
.ydd{bottom:738.505500px;}
.y166{bottom:740.151000px;}
.y151{bottom:743.139000px;}
.yf5{bottom:745.761000px;}
.y121{bottom:749.116500px;}
.yc{bottom:753.505500px;}
.y9a{bottom:753.600000px;}
.y68{bottom:756.589500px;}
.y28{bottom:758.083500px;}
.y7f{bottom:763.665000px;}
.y138{bottom:764.061000px;}
.y11a{bottom:767.049000px;}
.ybc{bottom:768.894000px;}
.ydc{bottom:768.991500px;}
.y165{bottom:772.653000px;}
.yf4{bottom:776.247000px;}
.y120{bottom:781.620000px;}
.y150{bottom:784.608000px;}
.y99{bottom:786.103500px;}
.yb{bottom:788.886000px;}
.y27{bottom:790.587000px;}
.y137{bottom:796.564500px;}
.y67{bottom:798.058500px;}
.ybb{bottom:799.380000px;}
.ydb{bottom:799.477500px;}
.y119{bottom:799.552500px;}
.y7e{bottom:803.163000px;}
.yf3{bottom:806.733000px;}
.y11f{bottom:814.123500px;}
.ya{bottom:816.633000px;}
.y14f{bottom:817.111500px;}
.y98{bottom:818.605500px;}
.y26{bottom:823.089000px;}
.y136{bottom:829.066500px;}
.yda{bottom:829.963500px;}
.y66{bottom:830.562000px;}
.yb0{bottom:832.056000px;}
.yf2{bottom:837.217500px;}
.yb6{bottom:838.876500px;}
.y7d{bottom:841.719000px;}
.y164{bottom:846.625500px;}
.y14e{bottom:849.615000px;}
.y97{bottom:851.109000px;}
.y9{bottom:851.833500px;}
.y25{bottom:855.592500px;}
.yd9{bottom:860.449500px;}
.y135{bottom:861.570000px;}
.y65{bottom:863.064000px;}
.yaf{bottom:864.559500px;}
.yf1{bottom:867.703500px;}
.yb5{bottom:869.362500px;}
.y7c{bottom:877.581000px;}
.y163{bottom:879.129000px;}
.y14d{bottom:882.118500px;}
.y96{bottom:883.612500px;}
.y8{bottom:887.232000px;}
.y24{bottom:888.096000px;}
.yd8{bottom:890.934000px;}
.y134{bottom:894.073500px;}
.y64{bottom:895.567500px;}
.yae{bottom:897.061500px;}
.yf0{bottom:898.189500px;}
.yb7{bottom:899.848500px;}
.y17b{bottom:911.632500px;}
.y95{bottom:916.116000px;}
.y14c{bottom:917.610000px;}
.y23{bottom:920.598000px;}
.y133{bottom:926.577000px;}
.y63{bottom:928.071000px;}
.yef{bottom:928.675500px;}
.y7{bottom:929.565000px;}
.yba{bottom:930.334500px;}
.yd6{bottom:930.432000px;}
.y94{bottom:948.618000px;}
.y22{bottom:953.101500px;}
.y132{bottom:959.079000px;}
.yee{bottom:959.161500px;}
.y62{bottom:960.574500px;}
.yb9{bottom:960.820500px;}
.yd5{bottom:960.918000px;}
.y4f{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y93{bottom:982.615500px;}
.y21{bottom:985.605000px;}
.yb8{bottom:991.305000px;}
.yd7{bottom:991.404000px;}
.y131{bottom:991.582500px;}
.y61{bottom:993.076500px;}
.y3e{bottom:994.572000px;}
.yec{bottom:998.658000px;}
.y20{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.yb4{bottom:1020.042000px;}
.y130{bottom:1024.086000px;}
.y60{bottom:1025.580000px;}
.y3d{bottom:1027.074000px;}
.yeb{bottom:1029.144000px;}
.yb3{bottom:1055.904000px;}
.y4{bottom:1059.577500px;}
.yed{bottom:1059.630000px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h8{height:46.145451px;}
.h7{height:49.090905px;}
.h4{height:50.498638px;}
.h5{height:51.215948px;}
.h6{height:59.498177px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:104.254500px;}
.xd{left:106.299000px;}
.x12{left:107.434500px;}
.x4{left:111.054000px;}
.x6{left:113.023500px;}
.x13{left:125.508000px;}
.x11{left:149.403000px;}
.x10{left:151.726500px;}
.x28{left:158.542500px;}
.x27{left:160.299000px;}
.x21{left:212.946000px;}
.x5{left:220.437000px;}
.x15{left:226.801500px;}
.x14{left:233.035500px;}
.x16{left:237.052500px;}
.xc{left:248.917500px;}
.x7{left:277.075500px;}
.x26{left:317.710500px;}
.x22{left:319.591500px;}
.x17{left:327.318000px;}
.x18{left:344.427000px;}
.x19{left:448.362000px;}
.x25{left:454.198500px;}
.x23{left:455.835000px;}
.x1a{left:463.957500px;}
.x9{left:515.344500px;}
.xb{left:554.043000px;}
.x3{left:567.934500px;}
.x1e{left:572.490000px;}
.x1b{left:575.878500px;}
.x1d{left:579.805500px;}
.x8{left:589.389000px;}
.x1c{left:599.065500px;}
.x1f{left:601.552500px;}
.xa{left:631.135500px;}
.x24{left:642.763500px;}
.x2{left:648.775500px;}
.x20{left:680.371500px;}
.x1{left:692.794500px;}
.xe{left:794.127000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1b{word-spacing:-63.760907pt;}
.ws53{word-spacing:-58.181813pt;}
.ws75{word-spacing:-49.478464pt;}
.ws6a{word-spacing:-49.159659pt;}
.ws26{word-spacing:-48.777094pt;}
.ws57{word-spacing:-48.713333pt;}
.ws28{word-spacing:-48.649572pt;}
.ws2c{word-spacing:-48.585811pt;}
.ws74{word-spacing:-48.267006pt;}
.ws32{word-spacing:-48.011963pt;}
.ws3{word-spacing:-47.820667pt;}
.ws2b{word-spacing:-47.756919pt;}
.ws76{word-spacing:-47.693158pt;}
.ws6e{word-spacing:-47.629397pt;}
.ws8f{word-spacing:-47.438115pt;}
.ws51{word-spacing:-47.374354pt;}
.ws88{word-spacing:-47.310593pt;}
.ws87{word-spacing:-47.183071pt;}
.ws35{word-spacing:-47.119310pt;}
.ws21{word-spacing:-47.055549pt;}
.ws67{word-spacing:-46.928027pt;}
.ws72{word-spacing:-46.800505pt;}
.ws30{word-spacing:-46.736745pt;}
.ws31{word-spacing:-46.672984pt;}
.ws7f{word-spacing:-46.609223pt;}
.ws4a{word-spacing:-46.417940pt;}
.ws5a{word-spacing:-46.354179pt;}
.ws10{word-spacing:-46.290418pt;}
.wsf{word-spacing:-46.247519pt;}
.ws77{word-spacing:-46.226657pt;}
.ws39{word-spacing:-46.099136pt;}
.ws8e{word-spacing:-46.035375pt;}
.ws20{word-spacing:-45.971614pt;}
.ws68{word-spacing:-45.844092pt;}
.ws14{word-spacing:-45.716570pt;}
.ws95{word-spacing:-45.652809pt;}
.ws50{word-spacing:-45.525287pt;}
.ws91{word-spacing:-45.461526pt;}
.ws9{word-spacing:-45.334005pt;}
.ws69{word-spacing:-45.142722pt;}
.ws2d{word-spacing:-45.078961pt;}
.ws6f{word-spacing:-44.951439pt;}
.ws94{word-spacing:-44.823917pt;}
.wse{word-spacing:-44.568874pt;}
.ws7b{word-spacing:-44.441352pt;}
.ws6d{word-spacing:-44.377591pt;}
.ws86{word-spacing:-44.313830pt;}
.ws7c{word-spacing:-44.250069pt;}
.ws34{word-spacing:-44.186308pt;}
.ws33{word-spacing:-44.122547pt;}
.ws90{word-spacing:-44.058787pt;}
.ws4c{word-spacing:-43.995026pt;}
.ws4b{word-spacing:-43.931265pt;}
.ws8a{word-spacing:-43.867504pt;}
.ws78{word-spacing:-43.739982pt;}
.ws2e{word-spacing:-43.676221pt;}
.ws80{word-spacing:-43.612460pt;}
.ws3a{word-spacing:-43.548699pt;}
.ws56{word-spacing:-43.484938pt;}
.ws2a{word-spacing:-43.421177pt;}
.ws18{word-spacing:-43.357417pt;}
.ws1c{word-spacing:-43.293656pt;}
.ws5{word-spacing:-43.229895pt;}
.ws19{word-spacing:-43.169926pt;}
.ws1a{word-spacing:-43.166134pt;}
.ws7{word-spacing:-43.102373pt;}
.ws16{word-spacing:-43.038612pt;}
.ws93{word-spacing:-42.975532pt;}
.ws4{word-spacing:-42.974851pt;}
.ws22{word-spacing:-42.911090pt;}
.ws15{word-spacing:-42.847329pt;}
.ws3b{word-spacing:-42.783568pt;}
.ws17{word-spacing:-42.719807pt;}
.ws6{word-spacing:-42.656047pt;}
.ws36{word-spacing:-42.592286pt;}
.ws1d{word-spacing:-42.528525pt;}
.ws25{word-spacing:-42.507253pt;}
.wsd{word-spacing:-42.464764pt;}
.ws41{word-spacing:-42.401003pt;}
.ws82{word-spacing:-42.337242pt;}
.ws5c{word-spacing:-42.145959pt;}
.ws4d{word-spacing:-41.954677pt;}
.wsc{word-spacing:-41.890916pt;}
.ws13{word-spacing:-41.827155pt;}
.ws47{word-spacing:-41.763394pt;}
.ws4f{word-spacing:-41.635872pt;}
.ws3d{word-spacing:-41.444589pt;}
.ws8{word-spacing:-41.380828pt;}
.ws92{word-spacing:-41.253307pt;}
.ws42{word-spacing:-41.125785pt;}
.ws1e{word-spacing:-40.998263pt;}
.ws84{word-spacing:-40.934502pt;}
.ws27{word-spacing:-40.806980pt;}
.ws5b{word-spacing:-40.743219pt;}
.ws59{word-spacing:-40.615698pt;}
.ws79{word-spacing:-40.551937pt;}
.ws63{word-spacing:-40.494542pt;}
.ws6c{word-spacing:-40.488176pt;}
.ws73{word-spacing:-40.424415pt;}
.ws38{word-spacing:-40.296893pt;}
.wsb{word-spacing:-40.233132pt;}
.ws44{word-spacing:-40.169371pt;}
.ws7a{word-spacing:-40.105610pt;}
.ws46{word-spacing:-39.978088pt;}
.ws45{word-spacing:-39.914328pt;}
.ws3c{word-spacing:-39.850567pt;}
.ws66{word-spacing:-39.738179pt;}
.ws8b{word-spacing:-39.723045pt;}
.ws65{word-spacing:-39.563633pt;}
.ws29{word-spacing:-39.531762pt;}
.ws81{word-spacing:-39.468001pt;}
.ws24{word-spacing:-39.404240pt;}
.ws89{word-spacing:-39.276719pt;}
.ws8d{word-spacing:-39.212958pt;}
.ws62{word-spacing:-39.156360pt;}
.ws49{word-spacing:-39.149197pt;}
.ws7e{word-spacing:-39.021675pt;}
.wsa{word-spacing:-38.894153pt;}
.ws55{word-spacing:-38.865451pt;}
.ws37{word-spacing:-38.830392pt;}
.ws3e{word-spacing:-38.807269pt;}
.ws48{word-spacing:-38.766631pt;}
.ws5e{word-spacing:-38.749088pt;}
.ws4e{word-spacing:-38.702870pt;}
.ws5f{word-spacing:-38.690906pt;}
.ws6b{word-spacing:-38.639109pt;}
.ws64{word-spacing:-38.632724pt;}
.ws61{word-spacing:-38.574542pt;}
.ws60{word-spacing:-38.516360pt;}
.ws23{word-spacing:-38.447827pt;}
.ws7d{word-spacing:-38.320305pt;}
.ws97{word-spacing:-38.192783pt;}
.ws70{word-spacing:-37.873979pt;}
.ws98{word-spacing:-37.810218pt;}
.ws83{word-spacing:-37.746457pt;}
.ws8c{word-spacing:-37.427652pt;}
.ws43{word-spacing:-37.363891pt;}
.ws3f{word-spacing:-37.045087pt;}
.ws1f{word-spacing:-36.790043pt;}
.ws85{word-spacing:-36.598760pt;}
.ws96{word-spacing:-36.152434pt;}
.ws5d{word-spacing:-36.130906pt;}
.ws52{word-spacing:-35.898179pt;}
.ws71{word-spacing:-35.833630pt;}
.ws40{word-spacing:-35.769869pt;}
.ws12{word-spacing:-35.514825pt;}
.ws58{word-spacing:-35.196020pt;}
.ws2f{word-spacing:-33.601998pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws11{word-spacing:0.000000pt;}
.ws54{word-spacing:139.345443pt;}
._d{margin-left:-8.195403pt;}
._5{margin-left:-5.262400pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._6{width:1.228460pt;}
._4{width:2.371905pt;}
._a{width:3.953175pt;}
._9{width:5.661966pt;}
._18{width:11.077395pt;}
._1a{width:14.244185pt;}
._1c{width:16.407804pt;}
._8{width:17.478989pt;}
._c{width:18.728703pt;}
._2{width:20.063424pt;}
._7{width:21.763714pt;}
._b{width:23.867830pt;}
._1d{width:25.406595pt;}
._1b{width:27.017618pt;}
._1e{width:28.526628pt;}
._19{width:64.872722pt;}
._14{width:202.589074pt;}
._12{width:214.632709pt;}
._e{width:339.549063pt;}
._13{width:346.879971pt;}
._15{width:352.465425pt;}
._f{width:359.796334pt;}
._11{width:360.727243pt;}
._17{width:372.829060pt;}
._10{width:382.719968pt;}
._16{width:394.821785pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:58.181813pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:38.689333pt;}
.y1f{bottom:51.309333pt;}
.y1e{bottom:63.928000pt;}
.y3b{bottom:95.686667pt;}
.y92{bottom:98.390667pt;}
.y7b{bottom:99.672000pt;}
.yd0{bottom:101.844000pt;}
.y4e{bottom:103.656000pt;}
.yad{bottom:104.985333pt;}
.y14b{bottom:106.313333pt;}
.y11d{bottom:108.970667pt;}
.y118{bottom:112.165333pt;}
.y162{bottom:113.618667pt;}
.y177{bottom:118.932000pt;}
.y3a{bottom:124.578667pt;}
.y91{bottom:127.282667pt;}
.y7a{bottom:128.562667pt;}
.ycf{bottom:130.734667pt;}
.y4d{bottom:132.548000pt;}
.yac{bottom:133.876000pt;}
.y5f{bottom:137.861333pt;}
.y117{bottom:141.057333pt;}
.y14a{bottom:143.174667pt;}
.y176{bottom:147.824000pt;}
.y108{bottom:148.029333pt;}
.y161{bottom:150.481333pt;}
.y39{bottom:153.469333pt;}
.y90{bottom:156.174667pt;}
.y1d{bottom:156.544000pt;}
.y79{bottom:157.454667pt;}
.y12f{bottom:158.782667pt;}
.y4c{bottom:161.440000pt;}
.yab{bottom:162.768000pt;}
.y5e{bottom:166.753333pt;}
.y116{bottom:169.949333pt;}
.y149{bottom:172.066667pt;}
.y107{bottom:175.128000pt;}
.y175{bottom:176.716000pt;}
.y160{bottom:179.372000pt;}
.y38{bottom:182.361333pt;}
.y17a{bottom:184.686667pt;}
.y8f{bottom:185.066667pt;}
.y1c{bottom:185.434667pt;}
.y78{bottom:186.346667pt;}
.y12e{bottom:187.674667pt;}
.y4b{bottom:190.332000pt;}
.yaa{bottom:191.660000pt;}
.y5d{bottom:195.645333pt;}
.yce{bottom:195.690667pt;}
.y115{bottom:198.840000pt;}
.y148{bottom:200.958667pt;}
.y106{bottom:202.226667pt;}
.y15f{bottom:208.264000pt;}
.y37{bottom:211.253333pt;}
.y174{bottom:213.577333pt;}
.y8e{bottom:213.957333pt;}
.y77{bottom:215.238667pt;}
.y12d{bottom:216.566667pt;}
.y4a{bottom:219.222667pt;}
.ya9{bottom:220.552000pt;}
.y1b{bottom:222.297333pt;}
.ycd{bottom:222.788000pt;}
.y5c{bottom:224.536000pt;}
.y114{bottom:227.732000pt;}
.y105{bottom:229.324000pt;}
.y147{bottom:229.850667pt;}
.y36{bottom:240.145333pt;}
.y173{bottom:242.469333pt;}
.y76{bottom:244.129333pt;}
.y15e{bottom:245.126667pt;}
.y12c{bottom:245.458667pt;}
.y49{bottom:248.114667pt;}
.ya8{bottom:249.442667pt;}
.ycc{bottom:249.886667pt;}
.y8d{bottom:250.820000pt;}
.y1a{bottom:251.189333pt;}
.y5b{bottom:253.428000pt;}
.y104{bottom:256.422667pt;}
.y113{bottom:256.624000pt;}
.y146{bottom:258.741333pt;}
.yb2{bottom:261.398667pt;}
.y172{bottom:271.361333pt;}
.y75{bottom:273.021333pt;}
.y15d{bottom:274.017333pt;}
.y12b{bottom:274.349333pt;}
.ycb{bottom:276.985333pt;}
.y35{bottom:277.006667pt;}
.ya7{bottom:278.334667pt;}
.y179{bottom:279.330667pt;}
.y8c{bottom:279.710667pt;}
.y19{bottom:280.080000pt;}
.y5a{bottom:282.320000pt;}
.y103{bottom:283.521333pt;}
.y112{bottom:285.516000pt;}
.y145{bottom:287.633333pt;}
.yb1{bottom:290.290667pt;}
.y15c{bottom:302.909333pt;}
.y12a{bottom:303.241333pt;}
.yca{bottom:304.084000pt;}
.yea{bottom:304.170667pt;}
.y34{bottom:305.898667pt;}
.ya6{bottom:307.226667pt;}
.y171{bottom:308.222667pt;}
.y8b{bottom:308.602667pt;}
.y18{bottom:308.972000pt;}
.y74{bottom:309.882667pt;}
.y102{bottom:310.620000pt;}
.y11c{bottom:311.212000pt;}
.y48{bottom:313.868000pt;}
.y111{bottom:314.406667pt;}
.yd4{bottom:315.196000pt;}
.y144{bottom:316.525333pt;}
.y59{bottom:319.181333pt;}
.yc9{bottom:331.182667pt;}
.ye9{bottom:331.269333pt;}
.y33{bottom:334.789333pt;}
.ya5{bottom:336.118667pt;}
.y170{bottom:337.114667pt;}
.y8a{bottom:337.494667pt;}
.y101{bottom:337.718667pt;}
.y17{bottom:337.864000pt;}
.y73{bottom:338.774667pt;}
.y15b{bottom:339.770667pt;}
.y129{bottom:340.102667pt;}
.y47{bottom:342.760000pt;}
.y110{bottom:343.298667pt;}
.yd3{bottom:344.088000pt;}
.y143{bottom:345.416000pt;}
.y58{bottom:348.073333pt;}
.yc8{bottom:358.280000pt;}
.ye8{bottom:358.368000pt;}
.y32{bottom:363.681333pt;}
.y100{bottom:364.816000pt;}
.ya4{bottom:365.009333pt;}
.y16f{bottom:366.006667pt;}
.y89{bottom:366.386667pt;}
.y16{bottom:366.756000pt;}
.y72{bottom:367.666667pt;}
.y128{bottom:368.994667pt;}
.y46{bottom:371.652000pt;}
.y10f{bottom:372.190667pt;}
.yd2{bottom:372.980000pt;}
.y142{bottom:374.308000pt;}
.y15a{bottom:376.633333pt;}
.y57{bottom:376.965333pt;}
.yc7{bottom:385.378667pt;}
.ye7{bottom:385.466667pt;}
.yff{bottom:391.914667pt;}
.y31{bottom:392.573333pt;}
.y88{bottom:395.277333pt;}
.y15{bottom:395.646667pt;}
.y71{bottom:396.558667pt;}
.y127{bottom:397.886667pt;}
.y45{bottom:400.542667pt;}
.y10e{bottom:401.082667pt;}
.ya3{bottom:401.872000pt;}
.y16e{bottom:402.868000pt;}
.y56{bottom:405.857333pt;}
.y141{bottom:411.170667pt;}
.yc6{bottom:412.477333pt;}
.ye6{bottom:412.564000pt;}
.y159{bottom:413.494667pt;}
.yfe{bottom:419.013333pt;}
.y30{bottom:421.465333pt;}
.y87{bottom:424.169333pt;}
.y14{bottom:424.538667pt;}
.y126{bottom:426.778667pt;}
.y44{bottom:429.434667pt;}
.y10d{bottom:429.973333pt;}
.ya2{bottom:430.762667pt;}
.y16d{bottom:431.760000pt;}
.y70{bottom:433.420000pt;}
.y55{bottom:434.748000pt;}
.yc5{bottom:439.576000pt;}
.ye5{bottom:439.662667pt;}
.y140{bottom:440.061333pt;}
.y158{bottom:442.386667pt;}
.yfd{bottom:446.112000pt;}
.y2f{bottom:450.356000pt;}
.y13{bottom:453.430667pt;}
.y125{bottom:455.669333pt;}
.y43{bottom:458.326667pt;}
.y10c{bottom:458.865333pt;}
.ya1{bottom:459.654667pt;}
.y178{bottom:460.650667pt;}
.y6f{bottom:462.312000pt;}
.y54{bottom:463.640000pt;}
.yc4{bottom:466.674667pt;}
.ye4{bottom:466.761333pt;}
.y16c{bottom:468.621333pt;}
.y13f{bottom:468.953333pt;}
.y157{bottom:471.278667pt;}
.yfc{bottom:473.210667pt;}
.y2e{bottom:479.248000pt;}
.y12{bottom:482.321333pt;}
.y124{bottom:484.561333pt;}
.y42{bottom:487.218667pt;}
.y10b{bottom:487.757333pt;}
.ya0{bottom:488.546667pt;}
.y86{bottom:489.124000pt;}
.y53{bottom:492.532000pt;}
.yc3{bottom:493.772000pt;}
.ye3{bottom:493.860000pt;}
.y16b{bottom:497.513333pt;}
.y13e{bottom:497.845333pt;}
.y6e{bottom:499.173333pt;}
.yfb{bottom:500.308000pt;}
.y156{bottom:508.140000pt;}
.y2d{bottom:510.796000pt;}
.y11{bottom:511.213333pt;}
.y123{bottom:513.453333pt;}
.y41{bottom:516.109333pt;}
.y85{bottom:516.222667pt;}
.y10a{bottom:516.649333pt;}
.y9f{bottom:517.438667pt;}
.yc2{bottom:520.870667pt;}
.ye2{bottom:520.957333pt;}
.y52{bottom:521.422667pt;}
.y13d{bottom:526.737333pt;}
.yfa{bottom:527.406667pt;}
.y6d{bottom:528.065333pt;}
.y11b{bottom:529.393333pt;}
.y16a{bottom:534.374667pt;}
.y155{bottom:537.032000pt;}
.y10{bottom:540.105333pt;}
.y84{bottom:543.321333pt;}
.y40{bottom:545.001333pt;}
.y9e{bottom:546.329333pt;}
.yc1{bottom:547.969333pt;}
.ye1{bottom:548.056000pt;}
.y2c{bottom:550.314667pt;}
.yd1{bottom:554.300000pt;}
.yf9{bottom:554.505333pt;}
.y13c{bottom:555.628000pt;}
.y6c{bottom:556.957333pt;}
.y51{bottom:558.285333pt;}
.y169{bottom:563.266667pt;}
.y83{bottom:570.420000pt;}
.y154{bottom:573.893333pt;}
.yc0{bottom:575.068000pt;}
.ye0{bottom:575.154667pt;}
.y3f{bottom:576.549333pt;}
.yf{bottom:576.966667pt;}
.y2b{bottom:579.206667pt;}
.yf8{bottom:581.604000pt;}
.y9d{bottom:583.192000pt;}
.y13b{bottom:584.520000pt;}
.y6b{bottom:585.848000pt;}
.y50{bottom:587.177333pt;}
.y168{bottom:592.158667pt;}
.y82{bottom:597.517333pt;}
.ybf{bottom:602.165333pt;}
.ydf{bottom:602.253333pt;}
.y153{bottom:602.785333pt;}
.y11e{bottom:608.098667pt;}
.yf7{bottom:608.701333pt;}
.y109{bottom:608.702667pt;}
.y9c{bottom:612.082667pt;}
.y13a{bottom:613.412000pt;}
.ye{bottom:613.829333pt;}
.y6a{bottom:614.740000pt;}
.y2a{bottom:616.068000pt;}
.y81{bottom:624.616000pt;}
.y167{bottom:629.020000pt;}
.ybe{bottom:629.264000pt;}
.yde{bottom:629.352000pt;}
.y152{bottom:631.676000pt;}
.yf6{bottom:635.800000pt;}
.y122{bottom:636.989333pt;}
.yd{bottom:638.334667pt;}
.y9b{bottom:640.974667pt;}
.y69{bottom:643.632000pt;}
.y29{bottom:644.960000pt;}
.y139{bottom:650.273333pt;}
.y80{bottom:651.714667pt;}
.ybd{bottom:656.362667pt;}
.ydd{bottom:656.449333pt;}
.y166{bottom:657.912000pt;}
.y151{bottom:660.568000pt;}
.yf5{bottom:662.898667pt;}
.y121{bottom:665.881333pt;}
.yc{bottom:669.782667pt;}
.y9a{bottom:669.866667pt;}
.y68{bottom:672.524000pt;}
.y28{bottom:673.852000pt;}
.y7f{bottom:678.813333pt;}
.y138{bottom:679.165333pt;}
.y11a{bottom:681.821333pt;}
.ybc{bottom:683.461333pt;}
.ydc{bottom:683.548000pt;}
.y165{bottom:686.802667pt;}
.yf4{bottom:689.997333pt;}
.y120{bottom:694.773333pt;}
.y150{bottom:697.429333pt;}
.y99{bottom:698.758667pt;}
.yb{bottom:701.232000pt;}
.y27{bottom:702.744000pt;}
.y137{bottom:708.057333pt;}
.y67{bottom:709.385333pt;}
.ybb{bottom:710.560000pt;}
.ydb{bottom:710.646667pt;}
.y119{bottom:710.713333pt;}
.y7e{bottom:713.922667pt;}
.yf3{bottom:717.096000pt;}
.y11f{bottom:723.665333pt;}
.ya{bottom:725.896000pt;}
.y14f{bottom:726.321333pt;}
.y98{bottom:727.649333pt;}
.y26{bottom:731.634667pt;}
.y136{bottom:736.948000pt;}
.yda{bottom:737.745333pt;}
.y66{bottom:738.277333pt;}
.yb0{bottom:739.605333pt;}
.yf2{bottom:744.193333pt;}
.yb6{bottom:745.668000pt;}
.y7d{bottom:748.194667pt;}
.y164{bottom:752.556000pt;}
.y14e{bottom:755.213333pt;}
.y97{bottom:756.541333pt;}
.y9{bottom:757.185333pt;}
.y25{bottom:760.526667pt;}
.yd9{bottom:764.844000pt;}
.y135{bottom:765.840000pt;}
.y65{bottom:767.168000pt;}
.yaf{bottom:768.497333pt;}
.yf1{bottom:771.292000pt;}
.yb5{bottom:772.766667pt;}
.y7c{bottom:780.072000pt;}
.y163{bottom:781.448000pt;}
.y14d{bottom:784.105333pt;}
.y96{bottom:785.433333pt;}
.y8{bottom:788.650667pt;}
.y24{bottom:789.418667pt;}
.yd8{bottom:791.941333pt;}
.y134{bottom:794.732000pt;}
.y64{bottom:796.060000pt;}
.yae{bottom:797.388000pt;}
.yf0{bottom:798.390667pt;}
.yb7{bottom:799.865333pt;}
.y17b{bottom:810.340000pt;}
.y95{bottom:814.325333pt;}
.y14c{bottom:815.653333pt;}
.y23{bottom:818.309333pt;}
.y133{bottom:823.624000pt;}
.y63{bottom:824.952000pt;}
.yef{bottom:825.489333pt;}
.y7{bottom:826.280000pt;}
.yba{bottom:826.964000pt;}
.yd6{bottom:827.050667pt;}
.y94{bottom:843.216000pt;}
.y22{bottom:847.201333pt;}
.y132{bottom:852.514667pt;}
.yee{bottom:852.588000pt;}
.y62{bottom:853.844000pt;}
.yb9{bottom:854.062667pt;}
.yd5{bottom:854.149333pt;}
.y4f{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y93{bottom:873.436000pt;}
.y21{bottom:876.093333pt;}
.yb8{bottom:881.160000pt;}
.yd7{bottom:881.248000pt;}
.y131{bottom:881.406667pt;}
.y61{bottom:882.734667pt;}
.y3e{bottom:884.064000pt;}
.yec{bottom:887.696000pt;}
.y20{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.yb4{bottom:906.704000pt;}
.y130{bottom:910.298667pt;}
.y60{bottom:911.626667pt;}
.y3d{bottom:912.954667pt;}
.yeb{bottom:914.794667pt;}
.yb3{bottom:938.581333pt;}
.y4{bottom:941.846667pt;}
.yed{bottom:941.893333pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h8{height:41.018178pt;}
.h7{height:43.636360pt;}
.h4{height:44.887678pt;}
.h5{height:45.525287pt;}
.h6{height:52.887268pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:92.670667pt;}
.xd{left:94.488000pt;}
.x12{left:95.497333pt;}
.x4{left:98.714667pt;}
.x6{left:100.465333pt;}
.x13{left:111.562667pt;}
.x11{left:132.802667pt;}
.x10{left:134.868000pt;}
.x28{left:140.926667pt;}
.x27{left:142.488000pt;}
.x21{left:189.285333pt;}
.x5{left:195.944000pt;}
.x15{left:201.601333pt;}
.x14{left:207.142667pt;}
.x16{left:210.713333pt;}
.xc{left:221.260000pt;}
.x7{left:246.289333pt;}
.x26{left:282.409333pt;}
.x22{left:284.081333pt;}
.x17{left:290.949333pt;}
.x18{left:306.157333pt;}
.x19{left:398.544000pt;}
.x25{left:403.732000pt;}
.x23{left:405.186667pt;}
.x1a{left:412.406667pt;}
.x9{left:458.084000pt;}
.xb{left:492.482667pt;}
.x3{left:504.830667pt;}
.x1e{left:508.880000pt;}
.x1b{left:511.892000pt;}
.x1d{left:515.382667pt;}
.x8{left:523.901333pt;}
.x1c{left:532.502667pt;}
.x1f{left:534.713333pt;}
.xa{left:561.009333pt;}
.x24{left:571.345333pt;}
.x2{left:576.689333pt;}
.x20{left:604.774667pt;}
.x1{left:615.817333pt;}
.xe{left:705.890667pt;}
}




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