
    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_165db4b1522f0316e4ae239b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.887000;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_fd2b4c3bcbf432cd15be07df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.250000;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_633512ea33f629eb57223dd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.028000;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_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.015000;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_5611a72665626b393a2ccf4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.830000;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_35e6e7cb9cfd4f2cafdf92d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_9196fe1ca5be71e71abba871.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107000;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:ff9;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.015000;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:ffb;src:url('chunks/assets/font_9acec32e98b985b7f098fcea.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.015000;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:ffe;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.fff{font-family:fff;line-height:1.015000;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:ff10;src:url('chunks/assets/font_8e2a2b2fc1d36ebeab02071b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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:ff11;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.015000;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:ff13;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.015000;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:ff15;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.015000;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:ff17;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.015000;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:ff19;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.015000;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:ff1c;src:url('chunks/assets/font_b8c3d7d78378088a53a3220e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_8e612249fbe47be98eca350e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.015000;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:ff1e;src:url('chunks/assets/font_b0bbf8975384e5da2a6b424b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.239076,0.000000,-0.073094,0.239076,0,0);-ms-transform:matrix(0.239076,0.000000,-0.073094,0.239076,0,0);-webkit-transform:matrix(0.239076,0.000000,-0.073094,0.239076,0,0);}
.m2{transform:matrix(0.239076,0.000000,-0.073093,0.239076,0,0);-ms-transform:matrix(0.239076,0.000000,-0.073093,0.239076,0,0);-webkit-transform:matrix(0.239076,0.000000,-0.073093,0.239076,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-25.974000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.974000px;}
.ls1a{letter-spacing:-2.496000px;}
.ls1f{letter-spacing:-1.296000px;}
.ls1d{letter-spacing:-1.248000px;}
.ls21{letter-spacing:-1.152000px;}
.ls1e{letter-spacing:-1.092000px;}
.ls13{letter-spacing:-1.014000px;}
.ls15{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.924000px;}
.ls22{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.780000px;}
.ls1b{letter-spacing:-0.702000px;}
.ls14{letter-spacing:-0.546000px;}
.ls19{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.454740px;}
.ls18{letter-spacing:-0.330000px;}
.lsa{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000324px;}
.ls4{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.050600px;}
.ls5{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.505797px;}
.ls6{letter-spacing:1.559400px;}
.lsd{letter-spacing:1.560000px;}
.ls12{letter-spacing:1.631279px;}
.lsf{letter-spacing:2.858400px;}
.ls3{letter-spacing:3.360000px;}
.ls1{letter-spacing:3.600000px;}
.ls2{letter-spacing:3.840000px;}
.lsc{letter-spacing:4.320000px;}
.lsb{letter-spacing:5.038800px;}
.lse{letter-spacing:5.039400px;}
.ls0{letter-spacing:6.900000px;}
.ls20{letter-spacing:6.949800px;}
.ls8{letter-spacing:70.800000px;}
.ls7{letter-spacing:195.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;}
}
.ws2{word-spacing:-195.000000px;}
.ws69{word-spacing:-20.309426px;}
.ws0{word-spacing:-18.288000px;}
.ws82{word-spacing:-18.000000px;}
.ws4a{word-spacing:-17.550000px;}
.ws9e{word-spacing:-17.004000px;}
.ws114{word-spacing:-16.920000px;}
.ws102{word-spacing:-16.848000px;}
.ws106{word-spacing:-16.770000px;}
.ws6a{word-spacing:-16.536000px;}
.ws125{word-spacing:-16.458000px;}
.ws10c{word-spacing:-16.302000px;}
.ws81{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.408000px;}
.ws13f{word-spacing:-15.048000px;}
.ws126{word-spacing:-14.904000px;}
.ws23{word-spacing:-14.850000px;}
.wsf6{word-spacing:-14.520000px;}
.wsf7{word-spacing:-14.388000px;}
.wsf5{word-spacing:-13.926000px;}
.ws22{word-spacing:-10.231650px;}
.wsf4{word-spacing:-9.776910px;}
.ws112{word-spacing:-7.488000px;}
.ws113{word-spacing:-4.758000px;}
.ws4{word-spacing:-3.960000px;}
.ws18{word-spacing:-3.816000px;}
.ws10d{word-spacing:-3.666000px;}
.ws16{word-spacing:-3.600000px;}
.wscc{word-spacing:-3.510000px;}
.ws104{word-spacing:-3.432000px;}
.ws128{word-spacing:-3.354000px;}
.ws91{word-spacing:-3.276000px;}
.ws89{word-spacing:-3.240000px;}
.wsae{word-spacing:-3.234000px;}
.ws79{word-spacing:-3.198000px;}
.ws143{word-spacing:-3.168000px;}
.ws127{word-spacing:-3.120000px;}
.wsa6{word-spacing:-3.042000px;}
.ws147{word-spacing:-3.024000px;}
.ws9d{word-spacing:-2.964000px;}
.wscb{word-spacing:-2.886000px;}
.ws25{word-spacing:-2.880000px;}
.wscd{word-spacing:-2.838000px;}
.ws144{word-spacing:-2.808000px;}
.wsaf{word-spacing:-2.772000px;}
.ws120{word-spacing:-2.730000px;}
.wsd2{word-spacing:-2.640000px;}
.wscf{word-spacing:-2.574000px;}
.wsef{word-spacing:-2.508000px;}
.wsd6{word-spacing:-2.496000px;}
.ws1c{word-spacing:-2.448000px;}
.ws66{word-spacing:-2.442000px;}
.wsa2{word-spacing:-2.418000px;}
.ws94{word-spacing:-2.340000px;}
.ws1b{word-spacing:-2.304000px;}
.ws7c{word-spacing:-2.262000px;}
.ws123{word-spacing:-2.244000px;}
.wsd7{word-spacing:-2.184000px;}
.ws80{word-spacing:-2.178000px;}
.ws13c{word-spacing:-2.160000px;}
.wsf3{word-spacing:-2.112000px;}
.ws8c{word-spacing:-2.106000px;}
.wsc{word-spacing:-2.088000px;}
.ws50{word-spacing:-2.028000px;}
.ws35{word-spacing:-1.980000px;}
.ws115{word-spacing:-1.950000px;}
.ws148{word-spacing:-1.944000px;}
.ws27{word-spacing:-1.872000px;}
.ws65{word-spacing:-1.848000px;}
.wsa1{word-spacing:-1.794000px;}
.ws110{word-spacing:-1.728000px;}
.wsc3{word-spacing:-1.716000px;}
.wsdb{word-spacing:-1.656000px;}
.ws38{word-spacing:-1.650000px;}
.ws2d{word-spacing:-1.638000px;}
.ws11b{word-spacing:-1.584000px;}
.ws26{word-spacing:-1.560000px;}
.ws3d{word-spacing:-1.518000px;}
.ws19{word-spacing:-1.505797px;}
.ws7a{word-spacing:-1.482000px;}
.wsc1{word-spacing:-1.386000px;}
.ws15{word-spacing:-1.368000px;}
.ws6f{word-spacing:-1.326000px;}
.wse2{word-spacing:-1.320000px;}
.ws5b{word-spacing:-1.254000px;}
.wsc9{word-spacing:-1.248000px;}
.ws13b{word-spacing:-1.224000px;}
.ws11f{word-spacing:-1.170000px;}
.wsb4{word-spacing:-1.122000px;}
.wsb8{word-spacing:-1.092000px;}
.ws140{word-spacing:-1.080000px;}
.ws93{word-spacing:-1.014000px;}
.ws146{word-spacing:-1.008000px;}
.ws3c{word-spacing:-0.990000px;}
.ws92{word-spacing:-0.936000px;}
.ws12e{word-spacing:-0.864000px;}
.ws58{word-spacing:-0.858000px;}
.ws6b{word-spacing:-0.780000px;}
.ws36{word-spacing:-0.726000px;}
.ws132{word-spacing:-0.720000px;}
.ws9f{word-spacing:-0.702000px;}
.wsf0{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.648000px;}
.wsc6{word-spacing:-0.624000px;}
.wsa{word-spacing:-0.602319px;}
.ws9{word-spacing:-0.576000px;}
.ws6c{word-spacing:-0.546000px;}
.ws7f{word-spacing:-0.528000px;}
.ws2b{word-spacing:-0.468000px;}
.ws1a{word-spacing:-0.432000px;}
.ws46{word-spacing:-0.396000px;}
.wsdd{word-spacing:-0.390000px;}
.wsed{word-spacing:-0.330000px;}
.wsc2{word-spacing:-0.312000px;}
.ws135{word-spacing:-0.288000px;}
.ws48{word-spacing:-0.264000px;}
.ws61{word-spacing:-0.198000px;}
.wsb6{word-spacing:-0.156000px;}
.ws8{word-spacing:-0.144000px;}
.ws60{word-spacing:-0.132000px;}
.ws8f{word-spacing:-0.078000px;}
.ws63{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.wse9{word-spacing:0.066000px;}
.ws83{word-spacing:0.072000px;}
.ws59{word-spacing:0.078000px;}
.ws101{word-spacing:0.132000px;}
.ws8a{word-spacing:0.144000px;}
.ws8d{word-spacing:0.156000px;}
.ws6d{word-spacing:0.234000px;}
.ws124{word-spacing:0.264000px;}
.ws139{word-spacing:0.288000px;}
.ws56{word-spacing:0.312000px;}
.wsf1{word-spacing:0.330000px;}
.ws14a{word-spacing:0.360000px;}
.ws4d{word-spacing:0.390000px;}
.ws67{word-spacing:0.396000px;}
.ws88{word-spacing:0.432000px;}
.ws11a{word-spacing:0.462000px;}
.ws99{word-spacing:0.468000px;}
.wsfc{word-spacing:0.504000px;}
.ws7d{word-spacing:0.546000px;}
.wse6{word-spacing:0.594000px;}
.wsa7{word-spacing:0.624000px;}
.ws5{word-spacing:0.648000px;}
.wsf8{word-spacing:0.702000px;}
.ws17{word-spacing:0.720000px;}
.ws33{word-spacing:0.726000px;}
.ws53{word-spacing:0.780000px;}
.ws1f{word-spacing:0.792000px;}
.ws2c{word-spacing:0.858000px;}
.ws142{word-spacing:0.864000px;}
.ws40{word-spacing:0.924000px;}
.wsf{word-spacing:0.936000px;}
.ws68{word-spacing:0.990000px;}
.ws87{word-spacing:1.008000px;}
.ws9b{word-spacing:1.014000px;}
.ws37{word-spacing:1.056000px;}
.wsff{word-spacing:1.092000px;}
.ws34{word-spacing:1.122000px;}
.ws1e{word-spacing:1.152000px;}
.ws77{word-spacing:1.170000px;}
.wsb3{word-spacing:1.188000px;}
.ws149{word-spacing:1.224000px;}
.ws62{word-spacing:1.320000px;}
.ws9a{word-spacing:1.326000px;}
.ws116{word-spacing:1.368000px;}
.ws64{word-spacing:1.386000px;}
.wsa3{word-spacing:1.404000px;}
.ws24{word-spacing:1.440000px;}
.wseb{word-spacing:1.452000px;}
.wsbd{word-spacing:1.482000px;}
.wsd1{word-spacing:1.518000px;}
.ws55{word-spacing:1.560000px;}
.wsb5{word-spacing:1.584000px;}
.ws75{word-spacing:1.638000px;}
.ws7e{word-spacing:1.650000px;}
.ws1d{word-spacing:1.656000px;}
.ws7b{word-spacing:1.716000px;}
.ws10f{word-spacing:1.728000px;}
.ws43{word-spacing:1.782000px;}
.ws2f{word-spacing:1.794000px;}
.wsb1{word-spacing:1.848000px;}
.ws8b{word-spacing:1.872000px;}
.ws3e{word-spacing:1.914000px;}
.ws118{word-spacing:1.944000px;}
.ws12b{word-spacing:1.950000px;}
.wsc0{word-spacing:1.980000px;}
.wsf9{word-spacing:2.028000px;}
.wse8{word-spacing:2.046000px;}
.ws136{word-spacing:2.088000px;}
.ws54{word-spacing:2.106000px;}
.wsd0{word-spacing:2.112000px;}
.wse4{word-spacing:2.184000px;}
.ws7{word-spacing:2.232000px;}
.wsbf{word-spacing:2.244000px;}
.ws11e{word-spacing:2.262000px;}
.ws14b{word-spacing:2.304000px;}
.ws6e{word-spacing:2.340000px;}
.ws47{word-spacing:2.376000px;}
.ws4c{word-spacing:2.418000px;}
.ws137{word-spacing:2.448000px;}
.wsa0{word-spacing:2.496000px;}
.ws44{word-spacing:2.508000px;}
.ws5d{word-spacing:2.574000px;}
.ws78{word-spacing:2.652000px;}
.wsee{word-spacing:2.706000px;}
.ws51{word-spacing:2.730000px;}
.ws20{word-spacing:2.736000px;}
.wse7{word-spacing:2.772000px;}
.ws95{word-spacing:2.808000px;}
.ws14c{word-spacing:2.880000px;}
.wsca{word-spacing:2.886000px;}
.wsb0{word-spacing:2.904000px;}
.ws76{word-spacing:2.964000px;}
.ws41{word-spacing:2.970000px;}
.ws131{word-spacing:3.024000px;}
.ws31{word-spacing:3.036000px;}
.ws10b{word-spacing:3.042000px;}
.ws85{word-spacing:3.096000px;}
.ws29{word-spacing:3.120000px;}
.ws100{word-spacing:3.168000px;}
.ws30{word-spacing:3.198000px;}
.ws133{word-spacing:3.240000px;}
.ws98{word-spacing:3.276000px;}
.ws105{word-spacing:3.300000px;}
.ws12d{word-spacing:3.312000px;}
.ws90{word-spacing:3.354000px;}
.wsd9{word-spacing:3.384000px;}
.ws5e{word-spacing:3.432000px;}
.ws3f{word-spacing:3.564000px;}
.ws57{word-spacing:3.588000px;}
.ws103{word-spacing:3.666000px;}
.ws14d{word-spacing:3.672000px;}
.wsba{word-spacing:3.744000px;}
.ws5c{word-spacing:3.762000px;}
.ws84{word-spacing:3.816000px;}
.wse1{word-spacing:3.822000px;}
.ws5f{word-spacing:3.828000px;}
.ws117{word-spacing:3.888000px;}
.ws119{word-spacing:3.894000px;}
.ws4f{word-spacing:3.900000px;}
.wsc7{word-spacing:3.978000px;}
.ws107{word-spacing:4.056000px;}
.ws2a{word-spacing:4.134000px;}
.ws130{word-spacing:4.158000px;}
.wsad{word-spacing:4.212000px;}
.wsec{word-spacing:4.224000px;}
.wsa4{word-spacing:4.290000px;}
.ws70{word-spacing:4.368000px;}
.ws14e{word-spacing:4.392000px;}
.wse3{word-spacing:4.446000px;}
.ws122{word-spacing:4.488000px;}
.ws145{word-spacing:4.536000px;}
.wsdf{word-spacing:4.602000px;}
.wsfd{word-spacing:4.608000px;}
.wsa5{word-spacing:4.680000px;}
.ws71{word-spacing:4.758000px;}
.ws52{word-spacing:4.914000px;}
.ws86{word-spacing:4.968000px;}
.ws12a{word-spacing:4.992000px;}
.wsb2{word-spacing:5.016000px;}
.wsa9{word-spacing:5.070000px;}
.ws45{word-spacing:5.082000px;}
.ws129{word-spacing:5.226000px;}
.wsb9{word-spacing:5.304000px;}
.ws73{word-spacing:5.382000px;}
.wse5{word-spacing:5.412000px;}
.ws97{word-spacing:5.460000px;}
.ws8e{word-spacing:5.538000px;}
.ws111{word-spacing:5.616000px;}
.wsea{word-spacing:5.676000px;}
.wsd8{word-spacing:5.688000px;}
.wsfe{word-spacing:5.694000px;}
.wsb{word-spacing:5.760000px;}
.ws9c{word-spacing:5.772000px;}
.ws141{word-spacing:5.832000px;}
.wse0{word-spacing:5.850000px;}
.ws3a{word-spacing:5.874000px;}
.ws2e{word-spacing:5.928000px;}
.ws6{word-spacing:5.976000px;}
.ws96{word-spacing:6.006000px;}
.ws49{word-spacing:6.072000px;}
.wsaa{word-spacing:6.084000px;}
.wsf2{word-spacing:6.138000px;}
.wsde{word-spacing:6.240000px;}
.ws13a{word-spacing:6.264000px;}
.ws4b{word-spacing:6.318000px;}
.wsd4{word-spacing:6.396000px;}
.ws13e{word-spacing:6.408000px;}
.ws39{word-spacing:6.534000px;}
.wsdc{word-spacing:6.624000px;}
.ws72{word-spacing:6.630000px;}
.ws121{word-spacing:6.666000px;}
.ws11d{word-spacing:6.708000px;}
.ws10e{word-spacing:6.786000px;}
.ws32{word-spacing:6.798000px;}
.ws138{word-spacing:6.984000px;}
.wsd5{word-spacing:7.020000px;}
.wsc8{word-spacing:7.098000px;}
.ws13d{word-spacing:7.200000px;}
.wsbe{word-spacing:7.254000px;}
.wsce{word-spacing:7.260000px;}
.wsbc{word-spacing:7.410000px;}
.ws11{word-spacing:7.416000px;}
.ws12c{word-spacing:7.488000px;}
.ws28{word-spacing:7.566000px;}
.wsd{word-spacing:7.632000px;}
.wsc5{word-spacing:7.722000px;}
.ws14{word-spacing:7.848000px;}
.ws11c{word-spacing:7.878000px;}
.wsfb{word-spacing:7.920000px;}
.wsab{word-spacing:7.956000px;}
.ws5a{word-spacing:8.034000px;}
.ws10a{word-spacing:8.112000px;}
.ws3b{word-spacing:8.184000px;}
.wsbb{word-spacing:8.190000px;}
.ws12f{word-spacing:8.208000px;}
.wsd3{word-spacing:8.346000px;}
.wsc4{word-spacing:8.424000px;}
.ws42{word-spacing:8.844000px;}
.ws109{word-spacing:8.970000px;}
.ws74{word-spacing:9.126000px;}
.wse{word-spacing:9.504000px;}
.ws108{word-spacing:9.516000px;}
.wsfa{word-spacing:9.792000px;}
.wsda{word-spacing:10.080000px;}
.wsac{word-spacing:10.140000px;}
.ws4e{word-spacing:10.218000px;}
.wsb7{word-spacing:10.296000px;}
.ws134{word-spacing:10.440000px;}
.ws13{word-spacing:10.584000px;}
.wsa8{word-spacing:11.310000px;}
.ws12{word-spacing:25.848000px;}
.ws21{word-spacing:31.968000px;}
._2{margin-left:-7.866000px;}
._0{margin-left:-6.486000px;}
._6{margin-left:-4.872000px;}
._4{margin-left:-3.792000px;}
._3{margin-left:-2.496000px;}
._1{margin-left:-1.104000px;}
._5{width:1.696800px;}
._11{width:2.849400px;}
._f{width:3.991200px;}
._10{width:7.714800px;}
._9{width:86.983200px;}
._7{width:190.475400px;}
._8{width:199.843200px;}
._d{width:2266.275600px;}
._a{width:2267.833800px;}
._b{width:2269.083600px;}
._c{width:2276.181600px;}
._e{width:2280.861600px;}
.fc2{color:rgb(156,39,45);}
.fc1{color:rgb(93,78,148);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:45.474000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:75.289862px;}
.fs6{font-size:78.000000px;}
.fsa{font-size:81.563959px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:138.000000px;}
.fs0{font-size:390.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:74.691300px;}
.y16d{bottom:127.559250px;}
.y180{bottom:127.559400px;}
.y106{bottom:128.622150px;}
.yf1{bottom:128.622300px;}
.ya7{bottom:129.685050px;}
.y86{bottom:129.685200px;}
.y74{bottom:129.685350px;}
.yfa{bottom:131.811150px;}
.y58{bottom:131.811300px;}
.ybd{bottom:132.555300px;}
.y151{bottom:146.055150px;}
.y16c{bottom:147.059250px;}
.y17f{bottom:147.059550px;}
.y105{bottom:148.122150px;}
.yf0{bottom:148.122300px;}
.y85{bottom:149.185200px;}
.y73{bottom:149.185350px;}
.ya6{bottom:151.285050px;}
.yf9{bottom:151.311150px;}
.y57{bottom:151.311300px;}
.y155{bottom:153.411150px;}
.ybc{bottom:159.555300px;}
.y16b{bottom:166.559250px;}
.y17e{bottom:166.559550px;}
.y104{bottom:167.622150px;}
.yef{bottom:167.622300px;}
.y84{bottom:168.685200px;}
.y72{bottom:168.685350px;}
.yf8{bottom:170.811150px;}
.y56{bottom:170.811300px;}
.yd5{bottom:173.055150px;}
.y154{bottom:175.011150px;}
.y16a{bottom:186.059250px;}
.y17d{bottom:186.059550px;}
.ybb{bottom:186.555300px;}
.y11f{bottom:187.122150px;}
.yee{bottom:187.122300px;}
.y83{bottom:188.185200px;}
.y71{bottom:188.185350px;}
.y17a{bottom:190.311150px;}
.yf7{bottom:190.311300px;}
.y55{bottom:190.311450px;}
.y153{bottom:197.511300px;}
.yd4{bottom:200.055150px;}
.y17c{bottom:205.559550px;}
.y11e{bottom:206.622150px;}
.yed{bottom:206.622300px;}
.yf6{bottom:206.622450px;}
.y82{bottom:207.685200px;}
.y70{bottom:207.685350px;}
.y169{bottom:208.559400px;}
.y179{bottom:209.811150px;}
.y54{bottom:209.811450px;}
.y103{bottom:213.555150px;}
.yba{bottom:213.555300px;}
.ya5{bottom:214.051200px;}
.y11d{bottom:226.122150px;}
.y142{bottom:226.122300px;}
.yec{bottom:226.122450px;}
.yd3{bottom:227.055150px;}
.y81{bottom:227.185200px;}
.y6f{bottom:227.185350px;}
.y168{bottom:228.059400px;}
.y178{bottom:229.311150px;}
.y53{bottom:229.311450px;}
.y1d{bottom:238.398000px;}
.y102{bottom:240.555150px;}
.yb9{bottom:240.555300px;}
.ya4{bottom:241.051200px;}
.y11c{bottom:245.622150px;}
.y141{bottom:245.622300px;}
.yeb{bottom:245.622450px;}
.y6e{bottom:246.685350px;}
.y167{bottom:247.559400px;}
.y177{bottom:248.811150px;}
.y52{bottom:248.811450px;}
.yd2{bottom:254.055150px;}
.y2d{bottom:259.061550px;}
.y1c{bottom:259.398000px;}
.y11b{bottom:265.122150px;}
.y140{bottom:265.122300px;}
.yea{bottom:265.122450px;}
.y6d{bottom:266.185350px;}
.y166{bottom:267.059400px;}
.y101{bottom:267.555150px;}
.yb8{bottom:267.555300px;}
.ya3{bottom:268.051200px;}
.y176{bottom:268.311150px;}
.y51{bottom:268.311450px;}
.y2c{bottom:280.061550px;}
.yd1{bottom:281.055150px;}
.y11a{bottom:284.622150px;}
.ye9{bottom:284.622450px;}
.y6c{bottom:285.685350px;}
.y165{bottom:286.559400px;}
.y175{bottom:287.811150px;}
.y50{bottom:287.811450px;}
.ya2{bottom:292.051200px;}
.y80{bottom:294.555150px;}
.yb7{bottom:294.555300px;}
.y1b{bottom:301.398000px;}
.y119{bottom:304.122150px;}
.ye8{bottom:304.122450px;}
.y6b{bottom:305.185350px;}
.y164{bottom:306.059400px;}
.y174{bottom:307.311150px;}
.y4f{bottom:307.311450px;}
.yd0{bottom:308.055150px;}
.y7f{bottom:321.555150px;}
.yb6{bottom:321.555300px;}
.y2b{bottom:322.061550px;}
.y1a{bottom:322.398000px;}
.y118{bottom:323.622150px;}
.ye7{bottom:323.622450px;}
.y6a{bottom:324.685350px;}
.y173{bottom:326.811150px;}
.y4e{bottom:326.811450px;}
.yf5{bottom:335.055150px;}
.ya1{bottom:340.051200px;}
.y2a{bottom:343.061550px;}
.y117{bottom:343.122150px;}
.ye6{bottom:343.122450px;}
.y19{bottom:343.398000px;}
.y69{bottom:344.185350px;}
.y172{bottom:346.311300px;}
.y4d{bottom:346.311450px;}
.y7e{bottom:348.555150px;}
.yb5{bottom:348.555300px;}
.ycf{bottom:353.551050px;}
.yf4{bottom:362.055150px;}
.y116{bottom:362.622150px;}
.ye5{bottom:362.622450px;}
.y68{bottom:363.685500px;}
.ya0{bottom:364.051200px;}
.y29{bottom:364.061550px;}
.y18{bottom:364.398000px;}
.y171{bottom:365.811300px;}
.y4c{bottom:365.811450px;}
.y7d{bottom:375.555150px;}
.yce{bottom:377.551200px;}
.y115{bottom:382.122150px;}
.ye4{bottom:382.122450px;}
.y67{bottom:383.185500px;}
.y28{bottom:385.061550px;}
.y170{bottom:385.311300px;}
.y4b{bottom:385.311450px;}
.y17{bottom:385.398000px;}
.y9f{bottom:388.051200px;}
.yf3{bottom:389.055150px;}
.ycd{bottom:401.551200px;}
.y114{bottom:401.622150px;}
.ye3{bottom:401.622450px;}
.y7c{bottom:402.555150px;}
.y66{bottom:402.685500px;}
.y16f{bottom:404.811300px;}
.y4a{bottom:404.811450px;}
.y27{bottom:406.061550px;}
.y16{bottom:406.398000px;}
.y9e{bottom:412.051200px;}
.yf2{bottom:416.055150px;}
.y113{bottom:421.122150px;}
.y65{bottom:422.185500px;}
.y16e{bottom:424.311300px;}
.y49{bottom:424.311450px;}
.ycc{bottom:425.551200px;}
.y26{bottom:427.061550px;}
.y15{bottom:427.398000px;}
.y7b{bottom:429.555150px;}
.y150{bottom:431.551200px;}
.y15e{bottom:434.551200px;}
.y112{bottom:440.622150px;}
.y64{bottom:441.685500px;}
.ye2{bottom:443.055150px;}
.y48{bottom:443.811450px;}
.y25{bottom:448.061550px;}
.y14{bottom:448.398000px;}
.y14f{bottom:455.551200px;}
.y7a{bottom:456.555150px;}
.y15d{bottom:458.551200px;}
.y9d{bottom:460.051200px;}
.y111{bottom:460.122150px;}
.y63{bottom:461.185500px;}
.y47{bottom:463.311450px;}
.y24{bottom:469.061550px;}
.y13{bottom:469.398000px;}
.ye1{bottom:470.055150px;}
.ycb{bottom:473.551200px;}
.y14e{bottom:479.551200px;}
.yb4{bottom:479.551350px;}
.y110{bottom:479.622150px;}
.y62{bottom:480.685500px;}
.y163{bottom:482.055150px;}
.y15c{bottom:482.551200px;}
.y46{bottom:482.811450px;}
.y79{bottom:483.555150px;}
.y9c{bottom:484.051200px;}
.y23{bottom:490.061550px;}
.y12{bottom:490.398000px;}
.ye0{bottom:497.055150px;}
.yca{bottom:497.551200px;}
.y10f{bottom:499.122150px;}
.y45{bottom:502.311450px;}
.y61{bottom:503.185650px;}
.yb3{bottom:503.551350px;}
.y162{bottom:506.055150px;}
.y15b{bottom:506.551200px;}
.y9b{bottom:508.051200px;}
.y78{bottom:510.555150px;}
.y22{bottom:511.061550px;}
.y11{bottom:511.398000px;}
.y12d{bottom:512.055150px;}
.y10e{bottom:518.622150px;}
.yc9{bottom:521.551200px;}
.y44{bottom:521.811450px;}
.y60{bottom:522.685650px;}
.ydf{bottom:524.055150px;}
.y14d{bottom:527.551200px;}
.yb2{bottom:527.551350px;}
.y161{bottom:530.055150px;}
.y15a{bottom:530.551200px;}
.y9a{bottom:532.051200px;}
.y21{bottom:532.061550px;}
.y10{bottom:532.398000px;}
.y12c{bottom:536.055150px;}
.y77{bottom:537.555150px;}
.y10d{bottom:538.122150px;}
.y43{bottom:541.311450px;}
.y5f{bottom:542.185650px;}
.yc8{bottom:545.551200px;}
.yde{bottom:551.055150px;}
.y14c{bottom:551.551200px;}
.yb1{bottom:551.551350px;}
.y20{bottom:553.061550px;}
.yf{bottom:553.398000px;}
.y160{bottom:554.055150px;}
.y159{bottom:554.551200px;}
.y10c{bottom:557.622150px;}
.y12b{bottom:560.055150px;}
.y42{bottom:560.811450px;}
.y5e{bottom:561.685650px;}
.y76{bottom:564.555150px;}
.y1f{bottom:574.061550px;}
.ye{bottom:574.398000px;}
.y14b{bottom:575.551200px;}
.y10b{bottom:577.122150px;}
.yc7{bottom:578.055150px;}
.y158{bottom:578.551200px;}
.y17b{bottom:579.555150px;}
.y41{bottom:580.311450px;}
.y5d{bottom:581.185650px;}
.y12a{bottom:584.055150px;}
.y99{bottom:591.555150px;}
.y1e{bottom:595.061550px;}
.yd{bottom:595.398000px;}
.y10a{bottom:596.622150px;}
.y14a{bottom:599.551200px;}
.yb0{bottom:599.551350px;}
.y40{bottom:599.811450px;}
.y157{bottom:602.551200px;}
.yc6{bottom:605.055150px;}
.y75{bottom:606.555150px;}
.y129{bottom:608.055150px;}
.y109{bottom:616.122150px;}
.y98{bottom:618.555150px;}
.y3f{bottom:619.311450px;}
.y152{bottom:623.551200px;}
.yaf{bottom:623.551350px;}
.y156{bottom:626.551200px;}
.y5c{bottom:632.055150px;}
.y108{bottom:635.622150px;}
.y3e{bottom:641.811600px;}
.y97{bottom:645.555150px;}
.y149{bottom:647.551200px;}
.yae{bottom:647.551350px;}
.y13f{bottom:650.551200px;}
.y107{bottom:655.122150px;}
.yc{bottom:659.055150px;}
.y3d{bottom:661.311600px;}
.y100{bottom:663.555150px;}
.y148{bottom:671.551200px;}
.yad{bottom:671.551350px;}
.y96{bottom:672.555150px;}
.y13e{bottom:674.551200px;}
.y3c{bottom:680.811600px;}
.yb{bottom:686.055150px;}
.yff{bottom:687.555150px;}
.y147{bottom:695.551200px;}
.y13d{bottom:698.551200px;}
.y95{bottom:699.555150px;}
.y3b{bottom:700.311600px;}
.yfe{bottom:711.555150px;}
.ya{bottom:713.055150px;}
.yac{bottom:719.551350px;}
.y13c{bottom:722.551200px;}
.y94{bottom:726.555150px;}
.yfd{bottom:735.555150px;}
.y5b{bottom:740.055150px;}
.y146{bottom:743.551200px;}
.yab{bottom:743.551350px;}
.y13b{bottom:746.551200px;}
.y93{bottom:753.555150px;}
.yfc{bottom:759.555150px;}
.y9{bottom:767.055150px;}
.y145{bottom:767.551200px;}
.yaa{bottom:767.551350px;}
.y13a{bottom:770.551200px;}
.y92{bottom:780.555150px;}
.yfb{bottom:783.555150px;}
.y144{bottom:791.551200px;}
.ya9{bottom:791.551350px;}
.y8{bottom:794.055150px;}
.y139{bottom:794.551200px;}
.y91{bottom:807.555150px;}
.y143{bottom:815.551200px;}
.ya8{bottom:815.551350px;}
.y138{bottom:818.551200px;}
.y3a{bottom:821.055150px;}
.yc5{bottom:833.551050px;}
.y90{bottom:834.555150px;}
.ydd{bottom:836.551350px;}
.y137{bottom:842.551200px;}
.y7{bottom:846.982050px;}
.y39{bottom:848.055150px;}
.yc4{bottom:860.551050px;}
.y8f{bottom:861.555150px;}
.ydc{bottom:863.551350px;}
.y136{bottom:866.551200px;}
.y38{bottom:875.055150px;}
.y6{bottom:876.982050px;}
.yc3{bottom:884.551050px;}
.ydb{bottom:887.551350px;}
.y128{bottom:888.555150px;}
.y135{bottom:890.551200px;}
.y37{bottom:902.055150px;}
.y5{bottom:906.982050px;}
.yc2{bottom:908.551050px;}
.yda{bottom:911.551350px;}
.y134{bottom:914.551200px;}
.y127{bottom:915.555150px;}
.y8e{bottom:926.055150px;}
.y36{bottom:929.055150px;}
.yc1{bottom:932.551050px;}
.y133{bottom:938.551200px;}
.y126{bottom:942.555150px;}
.y4{bottom:945.982050px;}
.y8d{bottom:950.055150px;}
.y35{bottom:956.055150px;}
.yc0{bottom:956.551050px;}
.y15f{bottom:957.555150px;}
.yd9{bottom:959.551350px;}
.y132{bottom:962.551200px;}
.y125{bottom:969.555150px;}
.y8c{bottom:974.055150px;}
.ybf{bottom:980.551050px;}
.y34{bottom:983.055150px;}
.yd8{bottom:983.551350px;}
.y3{bottom:984.982050px;}
.y131{bottom:986.551200px;}
.y124{bottom:996.555150px;}
.y8b{bottom:998.055150px;}
.ybe{bottom:1004.551050px;}
.yd7{bottom:1007.551350px;}
.y33{bottom:1010.055150px;}
.y130{bottom:1010.551200px;}
.y8a{bottom:1022.055150px;}
.y123{bottom:1023.555150px;}
.yd6{bottom:1031.551350px;}
.y12f{bottom:1034.551200px;}
.y32{bottom:1037.055150px;}
.y89{bottom:1046.055150px;}
.y122{bottom:1050.555150px;}
.y12e{bottom:1058.551200px;}
.y31{bottom:1064.055150px;}
.y2{bottom:1064.439000px;}
.y88{bottom:1070.055150px;}
.y121{bottom:1077.555150px;}
.y5a{bottom:1091.055150px;}
.y87{bottom:1094.055150px;}
.y1{bottom:1113.939000px;}
.y30{bottom:1114.014150px;}
.y59{bottom:1118.055150px;}
.y120{bottom:1118.266050px;}
.y2f{bottom:1177.875600px;}
.h11{height:49.992188px;}
.h12{height:50.027344px;}
.he{height:56.826000px;}
.h5{height:60.336000px;}
.h10{height:61.992000px;}
.h9{height:63.092905px;}
.hb{height:63.554400px;}
.h8{height:65.364000px;}
.hd{height:67.158000px;}
.ha{height:68.964000px;}
.hc{height:82.368000px;}
.hf{height:86.131541px;}
.h7{height:88.704000px;}
.h6{height:101.376000px;}
.h3{height:104.400000px;}
.h4{height:145.728000px;}
.h2{height:339.300000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xb{left:93.543450px;}
.xa{left:95.669400px;}
.xc{left:114.803100px;}
.xf{left:136.063050px;}
.xd{left:182.969100px;}
.xe{left:187.086600px;}
.x5{left:368.077200px;}
.x6{left:435.826800px;}
.x7{left:457.086600px;}
.x4{left:550.336650px;}
.x3{left:561.891750px;}
.x2{left:564.537450px;}
.x8{left:565.688550px;}
.x9{left:629.911050px;}
@media print{
.v2{vertical-align:-23.088000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.088000pt;}
.ls1a{letter-spacing:-2.218667pt;}
.ls1f{letter-spacing:-1.152000pt;}
.ls1d{letter-spacing:-1.109333pt;}
.ls21{letter-spacing:-1.024000pt;}
.ls1e{letter-spacing:-0.970667pt;}
.ls13{letter-spacing:-0.901333pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.693333pt;}
.ls1b{letter-spacing:-0.624000pt;}
.ls14{letter-spacing:-0.485333pt;}
.ls19{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.404213pt;}
.ls18{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000288pt;}
.ls4{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.933867pt;}
.ls5{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.338486pt;}
.ls6{letter-spacing:1.386133pt;}
.lsd{letter-spacing:1.386667pt;}
.ls12{letter-spacing:1.450026pt;}
.lsf{letter-spacing:2.540800pt;}
.ls3{letter-spacing:2.986667pt;}
.ls1{letter-spacing:3.200000pt;}
.ls2{letter-spacing:3.413333pt;}
.lsc{letter-spacing:3.840000pt;}
.lsb{letter-spacing:4.478933pt;}
.lse{letter-spacing:4.479467pt;}
.ls0{letter-spacing:6.133333pt;}
.ls20{letter-spacing:6.177600pt;}
.ls8{letter-spacing:62.933333pt;}
.ls7{letter-spacing:173.333333pt;}
.ws2{word-spacing:-173.333333pt;}
.ws69{word-spacing:-18.052823pt;}
.ws0{word-spacing:-16.256000pt;}
.ws82{word-spacing:-16.000000pt;}
.ws4a{word-spacing:-15.600000pt;}
.ws9e{word-spacing:-15.114667pt;}
.ws114{word-spacing:-15.040000pt;}
.ws102{word-spacing:-14.976000pt;}
.ws106{word-spacing:-14.906667pt;}
.ws6a{word-spacing:-14.698667pt;}
.ws125{word-spacing:-14.629333pt;}
.ws10c{word-spacing:-14.490667pt;}
.ws81{word-spacing:-14.400000pt;}
.ws1{word-spacing:-13.696000pt;}
.ws13f{word-spacing:-13.376000pt;}
.ws126{word-spacing:-13.248000pt;}
.ws23{word-spacing:-13.200000pt;}
.wsf6{word-spacing:-12.906667pt;}
.wsf7{word-spacing:-12.789333pt;}
.wsf5{word-spacing:-12.378667pt;}
.ws22{word-spacing:-9.094800pt;}
.wsf4{word-spacing:-8.690587pt;}
.ws112{word-spacing:-6.656000pt;}
.ws113{word-spacing:-4.229333pt;}
.ws4{word-spacing:-3.520000pt;}
.ws18{word-spacing:-3.392000pt;}
.ws10d{word-spacing:-3.258667pt;}
.ws16{word-spacing:-3.200000pt;}
.wscc{word-spacing:-3.120000pt;}
.ws104{word-spacing:-3.050667pt;}
.ws128{word-spacing:-2.981333pt;}
.ws91{word-spacing:-2.912000pt;}
.ws89{word-spacing:-2.880000pt;}
.wsae{word-spacing:-2.874667pt;}
.ws79{word-spacing:-2.842667pt;}
.ws143{word-spacing:-2.816000pt;}
.ws127{word-spacing:-2.773333pt;}
.wsa6{word-spacing:-2.704000pt;}
.ws147{word-spacing:-2.688000pt;}
.ws9d{word-spacing:-2.634667pt;}
.wscb{word-spacing:-2.565333pt;}
.ws25{word-spacing:-2.560000pt;}
.wscd{word-spacing:-2.522667pt;}
.ws144{word-spacing:-2.496000pt;}
.wsaf{word-spacing:-2.464000pt;}
.ws120{word-spacing:-2.426667pt;}
.wsd2{word-spacing:-2.346667pt;}
.wscf{word-spacing:-2.288000pt;}
.wsef{word-spacing:-2.229333pt;}
.wsd6{word-spacing:-2.218667pt;}
.ws1c{word-spacing:-2.176000pt;}
.ws66{word-spacing:-2.170667pt;}
.wsa2{word-spacing:-2.149333pt;}
.ws94{word-spacing:-2.080000pt;}
.ws1b{word-spacing:-2.048000pt;}
.ws7c{word-spacing:-2.010667pt;}
.ws123{word-spacing:-1.994667pt;}
.wsd7{word-spacing:-1.941333pt;}
.ws80{word-spacing:-1.936000pt;}
.ws13c{word-spacing:-1.920000pt;}
.wsf3{word-spacing:-1.877333pt;}
.ws8c{word-spacing:-1.872000pt;}
.wsc{word-spacing:-1.856000pt;}
.ws50{word-spacing:-1.802667pt;}
.ws35{word-spacing:-1.760000pt;}
.ws115{word-spacing:-1.733333pt;}
.ws148{word-spacing:-1.728000pt;}
.ws27{word-spacing:-1.664000pt;}
.ws65{word-spacing:-1.642667pt;}
.wsa1{word-spacing:-1.594667pt;}
.ws110{word-spacing:-1.536000pt;}
.wsc3{word-spacing:-1.525333pt;}
.wsdb{word-spacing:-1.472000pt;}
.ws38{word-spacing:-1.466667pt;}
.ws2d{word-spacing:-1.456000pt;}
.ws11b{word-spacing:-1.408000pt;}
.ws26{word-spacing:-1.386667pt;}
.ws3d{word-spacing:-1.349333pt;}
.ws19{word-spacing:-1.338486pt;}
.ws7a{word-spacing:-1.317333pt;}
.wsc1{word-spacing:-1.232000pt;}
.ws15{word-spacing:-1.216000pt;}
.ws6f{word-spacing:-1.178667pt;}
.wse2{word-spacing:-1.173333pt;}
.ws5b{word-spacing:-1.114667pt;}
.wsc9{word-spacing:-1.109333pt;}
.ws13b{word-spacing:-1.088000pt;}
.ws11f{word-spacing:-1.040000pt;}
.wsb4{word-spacing:-0.997333pt;}
.wsb8{word-spacing:-0.970667pt;}
.ws140{word-spacing:-0.960000pt;}
.ws93{word-spacing:-0.901333pt;}
.ws146{word-spacing:-0.896000pt;}
.ws3c{word-spacing:-0.880000pt;}
.ws92{word-spacing:-0.832000pt;}
.ws12e{word-spacing:-0.768000pt;}
.ws58{word-spacing:-0.762667pt;}
.ws6b{word-spacing:-0.693333pt;}
.ws36{word-spacing:-0.645333pt;}
.ws132{word-spacing:-0.640000pt;}
.ws9f{word-spacing:-0.624000pt;}
.wsf0{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.576000pt;}
.wsc6{word-spacing:-0.554667pt;}
.wsa{word-spacing:-0.535395pt;}
.ws9{word-spacing:-0.512000pt;}
.ws6c{word-spacing:-0.485333pt;}
.ws7f{word-spacing:-0.469333pt;}
.ws2b{word-spacing:-0.416000pt;}
.ws1a{word-spacing:-0.384000pt;}
.ws46{word-spacing:-0.352000pt;}
.wsdd{word-spacing:-0.346667pt;}
.wsed{word-spacing:-0.293333pt;}
.wsc2{word-spacing:-0.277333pt;}
.ws135{word-spacing:-0.256000pt;}
.ws48{word-spacing:-0.234667pt;}
.ws61{word-spacing:-0.176000pt;}
.wsb6{word-spacing:-0.138667pt;}
.ws8{word-spacing:-0.128000pt;}
.ws60{word-spacing:-0.117333pt;}
.ws8f{word-spacing:-0.069333pt;}
.ws63{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.wse9{word-spacing:0.058667pt;}
.ws83{word-spacing:0.064000pt;}
.ws59{word-spacing:0.069333pt;}
.ws101{word-spacing:0.117333pt;}
.ws8a{word-spacing:0.128000pt;}
.ws8d{word-spacing:0.138667pt;}
.ws6d{word-spacing:0.208000pt;}
.ws124{word-spacing:0.234667pt;}
.ws139{word-spacing:0.256000pt;}
.ws56{word-spacing:0.277333pt;}
.wsf1{word-spacing:0.293333pt;}
.ws14a{word-spacing:0.320000pt;}
.ws4d{word-spacing:0.346667pt;}
.ws67{word-spacing:0.352000pt;}
.ws88{word-spacing:0.384000pt;}
.ws11a{word-spacing:0.410667pt;}
.ws99{word-spacing:0.416000pt;}
.wsfc{word-spacing:0.448000pt;}
.ws7d{word-spacing:0.485333pt;}
.wse6{word-spacing:0.528000pt;}
.wsa7{word-spacing:0.554667pt;}
.ws5{word-spacing:0.576000pt;}
.wsf8{word-spacing:0.624000pt;}
.ws17{word-spacing:0.640000pt;}
.ws33{word-spacing:0.645333pt;}
.ws53{word-spacing:0.693333pt;}
.ws1f{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.762667pt;}
.ws142{word-spacing:0.768000pt;}
.ws40{word-spacing:0.821333pt;}
.wsf{word-spacing:0.832000pt;}
.ws68{word-spacing:0.880000pt;}
.ws87{word-spacing:0.896000pt;}
.ws9b{word-spacing:0.901333pt;}
.ws37{word-spacing:0.938667pt;}
.wsff{word-spacing:0.970667pt;}
.ws34{word-spacing:0.997333pt;}
.ws1e{word-spacing:1.024000pt;}
.ws77{word-spacing:1.040000pt;}
.wsb3{word-spacing:1.056000pt;}
.ws149{word-spacing:1.088000pt;}
.ws62{word-spacing:1.173333pt;}
.ws9a{word-spacing:1.178667pt;}
.ws116{word-spacing:1.216000pt;}
.ws64{word-spacing:1.232000pt;}
.wsa3{word-spacing:1.248000pt;}
.ws24{word-spacing:1.280000pt;}
.wseb{word-spacing:1.290667pt;}
.wsbd{word-spacing:1.317333pt;}
.wsd1{word-spacing:1.349333pt;}
.ws55{word-spacing:1.386667pt;}
.wsb5{word-spacing:1.408000pt;}
.ws75{word-spacing:1.456000pt;}
.ws7e{word-spacing:1.466667pt;}
.ws1d{word-spacing:1.472000pt;}
.ws7b{word-spacing:1.525333pt;}
.ws10f{word-spacing:1.536000pt;}
.ws43{word-spacing:1.584000pt;}
.ws2f{word-spacing:1.594667pt;}
.wsb1{word-spacing:1.642667pt;}
.ws8b{word-spacing:1.664000pt;}
.ws3e{word-spacing:1.701333pt;}
.ws118{word-spacing:1.728000pt;}
.ws12b{word-spacing:1.733333pt;}
.wsc0{word-spacing:1.760000pt;}
.wsf9{word-spacing:1.802667pt;}
.wse8{word-spacing:1.818667pt;}
.ws136{word-spacing:1.856000pt;}
.ws54{word-spacing:1.872000pt;}
.wsd0{word-spacing:1.877333pt;}
.wse4{word-spacing:1.941333pt;}
.ws7{word-spacing:1.984000pt;}
.wsbf{word-spacing:1.994667pt;}
.ws11e{word-spacing:2.010667pt;}
.ws14b{word-spacing:2.048000pt;}
.ws6e{word-spacing:2.080000pt;}
.ws47{word-spacing:2.112000pt;}
.ws4c{word-spacing:2.149333pt;}
.ws137{word-spacing:2.176000pt;}
.wsa0{word-spacing:2.218667pt;}
.ws44{word-spacing:2.229333pt;}
.ws5d{word-spacing:2.288000pt;}
.ws78{word-spacing:2.357333pt;}
.wsee{word-spacing:2.405333pt;}
.ws51{word-spacing:2.426667pt;}
.ws20{word-spacing:2.432000pt;}
.wse7{word-spacing:2.464000pt;}
.ws95{word-spacing:2.496000pt;}
.ws14c{word-spacing:2.560000pt;}
.wsca{word-spacing:2.565333pt;}
.wsb0{word-spacing:2.581333pt;}
.ws76{word-spacing:2.634667pt;}
.ws41{word-spacing:2.640000pt;}
.ws131{word-spacing:2.688000pt;}
.ws31{word-spacing:2.698667pt;}
.ws10b{word-spacing:2.704000pt;}
.ws85{word-spacing:2.752000pt;}
.ws29{word-spacing:2.773333pt;}
.ws100{word-spacing:2.816000pt;}
.ws30{word-spacing:2.842667pt;}
.ws133{word-spacing:2.880000pt;}
.ws98{word-spacing:2.912000pt;}
.ws105{word-spacing:2.933333pt;}
.ws12d{word-spacing:2.944000pt;}
.ws90{word-spacing:2.981333pt;}
.wsd9{word-spacing:3.008000pt;}
.ws5e{word-spacing:3.050667pt;}
.ws3f{word-spacing:3.168000pt;}
.ws57{word-spacing:3.189333pt;}
.ws103{word-spacing:3.258667pt;}
.ws14d{word-spacing:3.264000pt;}
.wsba{word-spacing:3.328000pt;}
.ws5c{word-spacing:3.344000pt;}
.ws84{word-spacing:3.392000pt;}
.wse1{word-spacing:3.397333pt;}
.ws5f{word-spacing:3.402667pt;}
.ws117{word-spacing:3.456000pt;}
.ws119{word-spacing:3.461333pt;}
.ws4f{word-spacing:3.466667pt;}
.wsc7{word-spacing:3.536000pt;}
.ws107{word-spacing:3.605333pt;}
.ws2a{word-spacing:3.674667pt;}
.ws130{word-spacing:3.696000pt;}
.wsad{word-spacing:3.744000pt;}
.wsec{word-spacing:3.754667pt;}
.wsa4{word-spacing:3.813333pt;}
.ws70{word-spacing:3.882667pt;}
.ws14e{word-spacing:3.904000pt;}
.wse3{word-spacing:3.952000pt;}
.ws122{word-spacing:3.989333pt;}
.ws145{word-spacing:4.032000pt;}
.wsdf{word-spacing:4.090667pt;}
.wsfd{word-spacing:4.096000pt;}
.wsa5{word-spacing:4.160000pt;}
.ws71{word-spacing:4.229333pt;}
.ws52{word-spacing:4.368000pt;}
.ws86{word-spacing:4.416000pt;}
.ws12a{word-spacing:4.437333pt;}
.wsb2{word-spacing:4.458667pt;}
.wsa9{word-spacing:4.506667pt;}
.ws45{word-spacing:4.517333pt;}
.ws129{word-spacing:4.645333pt;}
.wsb9{word-spacing:4.714667pt;}
.ws73{word-spacing:4.784000pt;}
.wse5{word-spacing:4.810667pt;}
.ws97{word-spacing:4.853333pt;}
.ws8e{word-spacing:4.922667pt;}
.ws111{word-spacing:4.992000pt;}
.wsea{word-spacing:5.045333pt;}
.wsd8{word-spacing:5.056000pt;}
.wsfe{word-spacing:5.061333pt;}
.wsb{word-spacing:5.120000pt;}
.ws9c{word-spacing:5.130667pt;}
.ws141{word-spacing:5.184000pt;}
.wse0{word-spacing:5.200000pt;}
.ws3a{word-spacing:5.221333pt;}
.ws2e{word-spacing:5.269333pt;}
.ws6{word-spacing:5.312000pt;}
.ws96{word-spacing:5.338667pt;}
.ws49{word-spacing:5.397333pt;}
.wsaa{word-spacing:5.408000pt;}
.wsf2{word-spacing:5.456000pt;}
.wsde{word-spacing:5.546667pt;}
.ws13a{word-spacing:5.568000pt;}
.ws4b{word-spacing:5.616000pt;}
.wsd4{word-spacing:5.685333pt;}
.ws13e{word-spacing:5.696000pt;}
.ws39{word-spacing:5.808000pt;}
.wsdc{word-spacing:5.888000pt;}
.ws72{word-spacing:5.893333pt;}
.ws121{word-spacing:5.925333pt;}
.ws11d{word-spacing:5.962667pt;}
.ws10e{word-spacing:6.032000pt;}
.ws32{word-spacing:6.042667pt;}
.ws138{word-spacing:6.208000pt;}
.wsd5{word-spacing:6.240000pt;}
.wsc8{word-spacing:6.309333pt;}
.ws13d{word-spacing:6.400000pt;}
.wsbe{word-spacing:6.448000pt;}
.wsce{word-spacing:6.453333pt;}
.wsbc{word-spacing:6.586667pt;}
.ws11{word-spacing:6.592000pt;}
.ws12c{word-spacing:6.656000pt;}
.ws28{word-spacing:6.725333pt;}
.wsd{word-spacing:6.784000pt;}
.wsc5{word-spacing:6.864000pt;}
.ws14{word-spacing:6.976000pt;}
.ws11c{word-spacing:7.002667pt;}
.wsfb{word-spacing:7.040000pt;}
.wsab{word-spacing:7.072000pt;}
.ws5a{word-spacing:7.141333pt;}
.ws10a{word-spacing:7.210667pt;}
.ws3b{word-spacing:7.274667pt;}
.wsbb{word-spacing:7.280000pt;}
.ws12f{word-spacing:7.296000pt;}
.wsd3{word-spacing:7.418667pt;}
.wsc4{word-spacing:7.488000pt;}
.ws42{word-spacing:7.861333pt;}
.ws109{word-spacing:7.973333pt;}
.ws74{word-spacing:8.112000pt;}
.wse{word-spacing:8.448000pt;}
.ws108{word-spacing:8.458667pt;}
.wsfa{word-spacing:8.704000pt;}
.wsda{word-spacing:8.960000pt;}
.wsac{word-spacing:9.013333pt;}
.ws4e{word-spacing:9.082667pt;}
.wsb7{word-spacing:9.152000pt;}
.ws134{word-spacing:9.280000pt;}
.ws13{word-spacing:9.408000pt;}
.wsa8{word-spacing:10.053333pt;}
.ws12{word-spacing:22.976000pt;}
.ws21{word-spacing:28.416000pt;}
._2{margin-left:-6.992000pt;}
._0{margin-left:-5.765333pt;}
._6{margin-left:-4.330667pt;}
._4{margin-left:-3.370667pt;}
._3{margin-left:-2.218667pt;}
._1{margin-left:-0.981333pt;}
._5{width:1.508267pt;}
._11{width:2.532800pt;}
._f{width:3.547733pt;}
._10{width:6.857600pt;}
._9{width:77.318400pt;}
._7{width:169.311467pt;}
._8{width:177.638400pt;}
._d{width:2014.467200pt;}
._a{width:2015.852267pt;}
._b{width:2016.963200pt;}
._c{width:2023.272533pt;}
._e{width:2027.432533pt;}
.fs9{font-size:40.421333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:66.924322pt;}
.fs6{font-size:69.333333pt;}
.fsa{font-size:72.501297pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:122.666667pt;}
.fs0{font-size:346.666667pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:66.392267pt;}
.y16d{bottom:113.386000pt;}
.y180{bottom:113.386133pt;}
.y106{bottom:114.330800pt;}
.yf1{bottom:114.330933pt;}
.ya7{bottom:115.275600pt;}
.y86{bottom:115.275733pt;}
.y74{bottom:115.275867pt;}
.yfa{bottom:117.165467pt;}
.y58{bottom:117.165600pt;}
.ybd{bottom:117.826933pt;}
.y151{bottom:129.826800pt;}
.y16c{bottom:130.719333pt;}
.y17f{bottom:130.719600pt;}
.y105{bottom:131.664133pt;}
.yf0{bottom:131.664267pt;}
.y85{bottom:132.609067pt;}
.y73{bottom:132.609200pt;}
.ya6{bottom:134.475600pt;}
.yf9{bottom:134.498800pt;}
.y57{bottom:134.498933pt;}
.y155{bottom:136.365467pt;}
.ybc{bottom:141.826933pt;}
.y16b{bottom:148.052667pt;}
.y17e{bottom:148.052933pt;}
.y104{bottom:148.997467pt;}
.yef{bottom:148.997600pt;}
.y84{bottom:149.942400pt;}
.y72{bottom:149.942533pt;}
.yf8{bottom:151.832133pt;}
.y56{bottom:151.832267pt;}
.yd5{bottom:153.826800pt;}
.y154{bottom:155.565467pt;}
.y16a{bottom:165.386000pt;}
.y17d{bottom:165.386267pt;}
.ybb{bottom:165.826933pt;}
.y11f{bottom:166.330800pt;}
.yee{bottom:166.330933pt;}
.y83{bottom:167.275733pt;}
.y71{bottom:167.275867pt;}
.y17a{bottom:169.165467pt;}
.yf7{bottom:169.165600pt;}
.y55{bottom:169.165733pt;}
.y153{bottom:175.565600pt;}
.yd4{bottom:177.826800pt;}
.y17c{bottom:182.719600pt;}
.y11e{bottom:183.664133pt;}
.yed{bottom:183.664267pt;}
.yf6{bottom:183.664400pt;}
.y82{bottom:184.609067pt;}
.y70{bottom:184.609200pt;}
.y169{bottom:185.386133pt;}
.y179{bottom:186.498800pt;}
.y54{bottom:186.499067pt;}
.y103{bottom:189.826800pt;}
.yba{bottom:189.826933pt;}
.ya5{bottom:190.267733pt;}
.y11d{bottom:200.997467pt;}
.y142{bottom:200.997600pt;}
.yec{bottom:200.997733pt;}
.yd3{bottom:201.826800pt;}
.y81{bottom:201.942400pt;}
.y6f{bottom:201.942533pt;}
.y168{bottom:202.719467pt;}
.y178{bottom:203.832133pt;}
.y53{bottom:203.832400pt;}
.y1d{bottom:211.909333pt;}
.y102{bottom:213.826800pt;}
.yb9{bottom:213.826933pt;}
.ya4{bottom:214.267733pt;}
.y11c{bottom:218.330800pt;}
.y141{bottom:218.330933pt;}
.yeb{bottom:218.331067pt;}
.y6e{bottom:219.275867pt;}
.y167{bottom:220.052800pt;}
.y177{bottom:221.165467pt;}
.y52{bottom:221.165733pt;}
.yd2{bottom:225.826800pt;}
.y2d{bottom:230.276933pt;}
.y1c{bottom:230.576000pt;}
.y11b{bottom:235.664133pt;}
.y140{bottom:235.664267pt;}
.yea{bottom:235.664400pt;}
.y6d{bottom:236.609200pt;}
.y166{bottom:237.386133pt;}
.y101{bottom:237.826800pt;}
.yb8{bottom:237.826933pt;}
.ya3{bottom:238.267733pt;}
.y176{bottom:238.498800pt;}
.y51{bottom:238.499067pt;}
.y2c{bottom:248.943600pt;}
.yd1{bottom:249.826800pt;}
.y11a{bottom:252.997467pt;}
.ye9{bottom:252.997733pt;}
.y6c{bottom:253.942533pt;}
.y165{bottom:254.719467pt;}
.y175{bottom:255.832133pt;}
.y50{bottom:255.832400pt;}
.ya2{bottom:259.601067pt;}
.y80{bottom:261.826800pt;}
.yb7{bottom:261.826933pt;}
.y1b{bottom:267.909333pt;}
.y119{bottom:270.330800pt;}
.ye8{bottom:270.331067pt;}
.y6b{bottom:271.275867pt;}
.y164{bottom:272.052800pt;}
.y174{bottom:273.165467pt;}
.y4f{bottom:273.165733pt;}
.yd0{bottom:273.826800pt;}
.y7f{bottom:285.826800pt;}
.yb6{bottom:285.826933pt;}
.y2b{bottom:286.276933pt;}
.y1a{bottom:286.576000pt;}
.y118{bottom:287.664133pt;}
.ye7{bottom:287.664400pt;}
.y6a{bottom:288.609200pt;}
.y173{bottom:290.498800pt;}
.y4e{bottom:290.499067pt;}
.yf5{bottom:297.826800pt;}
.ya1{bottom:302.267733pt;}
.y2a{bottom:304.943600pt;}
.y117{bottom:304.997467pt;}
.ye6{bottom:304.997733pt;}
.y19{bottom:305.242667pt;}
.y69{bottom:305.942533pt;}
.y172{bottom:307.832267pt;}
.y4d{bottom:307.832400pt;}
.y7e{bottom:309.826800pt;}
.yb5{bottom:309.826933pt;}
.ycf{bottom:314.267600pt;}
.yf4{bottom:321.826800pt;}
.y116{bottom:322.330800pt;}
.ye5{bottom:322.331067pt;}
.y68{bottom:323.276000pt;}
.ya0{bottom:323.601067pt;}
.y29{bottom:323.610267pt;}
.y18{bottom:323.909333pt;}
.y171{bottom:325.165600pt;}
.y4c{bottom:325.165733pt;}
.y7d{bottom:333.826800pt;}
.yce{bottom:335.601067pt;}
.y115{bottom:339.664133pt;}
.ye4{bottom:339.664400pt;}
.y67{bottom:340.609333pt;}
.y28{bottom:342.276933pt;}
.y170{bottom:342.498933pt;}
.y4b{bottom:342.499067pt;}
.y17{bottom:342.576000pt;}
.y9f{bottom:344.934400pt;}
.yf3{bottom:345.826800pt;}
.ycd{bottom:356.934400pt;}
.y114{bottom:356.997467pt;}
.ye3{bottom:356.997733pt;}
.y7c{bottom:357.826800pt;}
.y66{bottom:357.942667pt;}
.y16f{bottom:359.832267pt;}
.y4a{bottom:359.832400pt;}
.y27{bottom:360.943600pt;}
.y16{bottom:361.242667pt;}
.y9e{bottom:366.267733pt;}
.yf2{bottom:369.826800pt;}
.y113{bottom:374.330800pt;}
.y65{bottom:375.276000pt;}
.y16e{bottom:377.165600pt;}
.y49{bottom:377.165733pt;}
.ycc{bottom:378.267733pt;}
.y26{bottom:379.610267pt;}
.y15{bottom:379.909333pt;}
.y7b{bottom:381.826800pt;}
.y150{bottom:383.601067pt;}
.y15e{bottom:386.267733pt;}
.y112{bottom:391.664133pt;}
.y64{bottom:392.609333pt;}
.ye2{bottom:393.826800pt;}
.y48{bottom:394.499067pt;}
.y25{bottom:398.276933pt;}
.y14{bottom:398.576000pt;}
.y14f{bottom:404.934400pt;}
.y7a{bottom:405.826800pt;}
.y15d{bottom:407.601067pt;}
.y9d{bottom:408.934400pt;}
.y111{bottom:408.997467pt;}
.y63{bottom:409.942667pt;}
.y47{bottom:411.832400pt;}
.y24{bottom:416.943600pt;}
.y13{bottom:417.242667pt;}
.ye1{bottom:417.826800pt;}
.ycb{bottom:420.934400pt;}
.y14e{bottom:426.267733pt;}
.yb4{bottom:426.267867pt;}
.y110{bottom:426.330800pt;}
.y62{bottom:427.276000pt;}
.y163{bottom:428.493467pt;}
.y15c{bottom:428.934400pt;}
.y46{bottom:429.165733pt;}
.y79{bottom:429.826800pt;}
.y9c{bottom:430.267733pt;}
.y23{bottom:435.610267pt;}
.y12{bottom:435.909333pt;}
.ye0{bottom:441.826800pt;}
.yca{bottom:442.267733pt;}
.y10f{bottom:443.664133pt;}
.y45{bottom:446.499067pt;}
.y61{bottom:447.276133pt;}
.yb3{bottom:447.601200pt;}
.y162{bottom:449.826800pt;}
.y15b{bottom:450.267733pt;}
.y9b{bottom:451.601067pt;}
.y78{bottom:453.826800pt;}
.y22{bottom:454.276933pt;}
.y11{bottom:454.576000pt;}
.y12d{bottom:455.160133pt;}
.y10e{bottom:460.997467pt;}
.yc9{bottom:463.601067pt;}
.y44{bottom:463.832400pt;}
.y60{bottom:464.609467pt;}
.ydf{bottom:465.826800pt;}
.y14d{bottom:468.934400pt;}
.yb2{bottom:468.934533pt;}
.y161{bottom:471.160133pt;}
.y15a{bottom:471.601067pt;}
.y9a{bottom:472.934400pt;}
.y21{bottom:472.943600pt;}
.y10{bottom:473.242667pt;}
.y12c{bottom:476.493467pt;}
.y77{bottom:477.826800pt;}
.y10d{bottom:478.330800pt;}
.y43{bottom:481.165733pt;}
.y5f{bottom:481.942800pt;}
.yc8{bottom:484.934400pt;}
.yde{bottom:489.826800pt;}
.y14c{bottom:490.267733pt;}
.yb1{bottom:490.267867pt;}
.y20{bottom:491.610267pt;}
.yf{bottom:491.909333pt;}
.y160{bottom:492.493467pt;}
.y159{bottom:492.934400pt;}
.y10c{bottom:495.664133pt;}
.y12b{bottom:497.826800pt;}
.y42{bottom:498.499067pt;}
.y5e{bottom:499.276133pt;}
.y76{bottom:501.826800pt;}
.y1f{bottom:510.276933pt;}
.ye{bottom:510.576000pt;}
.y14b{bottom:511.601067pt;}
.y10b{bottom:512.997467pt;}
.yc7{bottom:513.826800pt;}
.y158{bottom:514.267733pt;}
.y17b{bottom:515.160133pt;}
.y41{bottom:515.832400pt;}
.y5d{bottom:516.609467pt;}
.y12a{bottom:519.160133pt;}
.y99{bottom:525.826800pt;}
.y1e{bottom:528.943600pt;}
.yd{bottom:529.242667pt;}
.y10a{bottom:530.330800pt;}
.y14a{bottom:532.934400pt;}
.yb0{bottom:532.934533pt;}
.y40{bottom:533.165733pt;}
.y157{bottom:535.601067pt;}
.yc6{bottom:537.826800pt;}
.y75{bottom:539.160133pt;}
.y129{bottom:540.493467pt;}
.y109{bottom:547.664133pt;}
.y98{bottom:549.826800pt;}
.y3f{bottom:550.499067pt;}
.y152{bottom:554.267733pt;}
.yaf{bottom:554.267867pt;}
.y156{bottom:556.934400pt;}
.y5c{bottom:561.826800pt;}
.y108{bottom:564.997467pt;}
.y3e{bottom:570.499200pt;}
.y97{bottom:573.826800pt;}
.y149{bottom:575.601067pt;}
.yae{bottom:575.601200pt;}
.y13f{bottom:578.267733pt;}
.y107{bottom:582.330800pt;}
.yc{bottom:585.826800pt;}
.y3d{bottom:587.832533pt;}
.y100{bottom:589.826800pt;}
.y148{bottom:596.934400pt;}
.yad{bottom:596.934533pt;}
.y96{bottom:597.826800pt;}
.y13e{bottom:599.601067pt;}
.y3c{bottom:605.165867pt;}
.yb{bottom:609.826800pt;}
.yff{bottom:611.160133pt;}
.y147{bottom:618.267733pt;}
.y13d{bottom:620.934400pt;}
.y95{bottom:621.826800pt;}
.y3b{bottom:622.499200pt;}
.yfe{bottom:632.493467pt;}
.ya{bottom:633.826800pt;}
.yac{bottom:639.601200pt;}
.y13c{bottom:642.267733pt;}
.y94{bottom:645.826800pt;}
.yfd{bottom:653.826800pt;}
.y5b{bottom:657.826800pt;}
.y146{bottom:660.934400pt;}
.yab{bottom:660.934533pt;}
.y13b{bottom:663.601067pt;}
.y93{bottom:669.826800pt;}
.yfc{bottom:675.160133pt;}
.y9{bottom:681.826800pt;}
.y145{bottom:682.267733pt;}
.yaa{bottom:682.267867pt;}
.y13a{bottom:684.934400pt;}
.y92{bottom:693.826800pt;}
.yfb{bottom:696.493467pt;}
.y144{bottom:703.601067pt;}
.ya9{bottom:703.601200pt;}
.y8{bottom:705.826800pt;}
.y139{bottom:706.267733pt;}
.y91{bottom:717.826800pt;}
.y143{bottom:724.934400pt;}
.ya8{bottom:724.934533pt;}
.y138{bottom:727.601067pt;}
.y3a{bottom:729.826800pt;}
.yc5{bottom:740.934267pt;}
.y90{bottom:741.826800pt;}
.ydd{bottom:743.601200pt;}
.y137{bottom:748.934400pt;}
.y7{bottom:752.872933pt;}
.y39{bottom:753.826800pt;}
.yc4{bottom:764.934267pt;}
.y8f{bottom:765.826800pt;}
.ydc{bottom:767.601200pt;}
.y136{bottom:770.267733pt;}
.y38{bottom:777.826800pt;}
.y6{bottom:779.539600pt;}
.yc3{bottom:786.267600pt;}
.ydb{bottom:788.934533pt;}
.y128{bottom:789.826800pt;}
.y135{bottom:791.601067pt;}
.y37{bottom:801.826800pt;}
.y5{bottom:806.206267pt;}
.yc2{bottom:807.600933pt;}
.yda{bottom:810.267867pt;}
.y134{bottom:812.934400pt;}
.y127{bottom:813.826800pt;}
.y8e{bottom:823.160133pt;}
.y36{bottom:825.826800pt;}
.yc1{bottom:828.934267pt;}
.y133{bottom:834.267733pt;}
.y126{bottom:837.826800pt;}
.y4{bottom:840.872933pt;}
.y8d{bottom:844.493467pt;}
.y35{bottom:849.826800pt;}
.yc0{bottom:850.267600pt;}
.y15f{bottom:851.160133pt;}
.yd9{bottom:852.934533pt;}
.y132{bottom:855.601067pt;}
.y125{bottom:861.826800pt;}
.y8c{bottom:865.826800pt;}
.ybf{bottom:871.600933pt;}
.y34{bottom:873.826800pt;}
.yd8{bottom:874.267867pt;}
.y3{bottom:875.539600pt;}
.y131{bottom:876.934400pt;}
.y124{bottom:885.826800pt;}
.y8b{bottom:887.160133pt;}
.ybe{bottom:892.934267pt;}
.yd7{bottom:895.601200pt;}
.y33{bottom:897.826800pt;}
.y130{bottom:898.267733pt;}
.y8a{bottom:908.493467pt;}
.y123{bottom:909.826800pt;}
.yd6{bottom:916.934533pt;}
.y12f{bottom:919.601067pt;}
.y32{bottom:921.826800pt;}
.y89{bottom:929.826800pt;}
.y122{bottom:933.826800pt;}
.y12e{bottom:940.934400pt;}
.y31{bottom:945.826800pt;}
.y2{bottom:946.168000pt;}
.y88{bottom:951.160133pt;}
.y121{bottom:957.826800pt;}
.y5a{bottom:969.826800pt;}
.y87{bottom:972.493467pt;}
.y1{bottom:990.168000pt;}
.y30{bottom:990.234800pt;}
.y59{bottom:993.826800pt;}
.y120{bottom:994.014267pt;}
.y2f{bottom:1047.000533pt;}
.h11{height:44.437500pt;}
.h12{height:44.468750pt;}
.he{height:50.512000pt;}
.h5{height:53.632000pt;}
.h10{height:55.104000pt;}
.h9{height:56.082582pt;}
.hb{height:56.492800pt;}
.h8{height:58.101333pt;}
.hd{height:59.696000pt;}
.ha{height:61.301333pt;}
.hc{height:73.216000pt;}
.hf{height:76.561370pt;}
.h7{height:78.848000pt;}
.h6{height:90.112000pt;}
.h3{height:92.800000pt;}
.h4{height:129.536000pt;}
.h2{height:301.600000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xb{left:83.149733pt;}
.xa{left:85.039467pt;}
.xc{left:102.047200pt;}
.xf{left:120.944933pt;}
.xd{left:162.639200pt;}
.xe{left:166.299200pt;}
.x5{left:327.179733pt;}
.x6{left:387.401600pt;}
.x7{left:406.299200pt;}
.x4{left:489.188133pt;}
.x3{left:499.459333pt;}
.x2{left:501.811067pt;}
.x8{left:502.834267pt;}
.x9{left:559.920933pt;}
}




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