
    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_51f8d1b2d75b905018d61ca4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a2ae728c0250d4ce4cb062b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_e7160ccf12544461213da046.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.111000;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_b91f95e447d3cc4de4b050d0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.733000;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_a2ae728c0250d4ce4cb062b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_2007a3a18266a9bb5f1359e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_f4149fbe4a3cce0dbce2e16e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111000;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_118d082514f334ac8f0d89a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.733000;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_71638f066b32ac4967f5962e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.101000;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_a2ae728c0250d4ce4cb062b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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_2007a3a18266a9bb5f1359e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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_ec3ca6d34c1e1312bbaed9e6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_91a8106d6c695e86b755f6ce.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2998ed6dd98949289464940e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.941000;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_ec3ca6d34c1e1312bbaed9e6.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a2ae728c0250d4ce4cb062b7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.923000;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_e7160ccf12544461213da046.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.111000;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_b91f95e447d3cc4de4b050d0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.733000;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_8a5a6d538360ff6bb631ed56.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.935000;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_6419fd554e91375c83693ffb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.748000;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.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m6{transform:matrix(0.193780,-0.193780,0.176777,0.176777,0,0);-ms-transform:matrix(0.193780,-0.193780,0.176777,0.176777,0,0);-webkit-transform:matrix(0.193780,-0.193780,0.176777,0.176777,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.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);}
.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);}
.m1{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);}
.v1{vertical-align:-37.417200px;}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.078800px;}
.v3{vertical-align:17.820000px;}
.v4{vertical-align:41.051815px;}
.ls21{letter-spacing:-5.724000px;}
.ls1{letter-spacing:-4.080000px;}
.ls14{letter-spacing:-3.834000px;}
.ls1b{letter-spacing:-3.120000px;}
.ls1c{letter-spacing:-3.024000px;}
.ls11{letter-spacing:-2.880000px;}
.ls28{letter-spacing:-2.394000px;}
.ls1e{letter-spacing:-1.026000px;}
.ls29{letter-spacing:-0.420000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls20{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.168000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.042000px;}
.ls4{letter-spacing:0.132000px;}
.ls1d{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.450000px;}
.ls15{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.588000px;}
.ls13{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.630000px;}
.ls10{letter-spacing:0.648000px;}
.ls22{letter-spacing:0.660000px;}
.ls7{letter-spacing:0.714000px;}
.ls2{letter-spacing:0.720000px;}
.lse{letter-spacing:0.756000px;}
.ls25{letter-spacing:0.798000px;}
.ls3{letter-spacing:0.840000px;}
.ls19{letter-spacing:0.882000px;}
.ls12{letter-spacing:0.918000px;}
.ls1a{letter-spacing:0.924000px;}
.lsf{letter-spacing:0.972000px;}
.ls2c{letter-spacing:1.008000px;}
.lsb{letter-spacing:1.026000px;}
.ls18{letter-spacing:1.050000px;}
.ls17{letter-spacing:1.092000px;}
.ls2b{letter-spacing:1.302000px;}
.ls24{letter-spacing:1.512000px;}
.ls27{letter-spacing:1.806000px;}
.ls2d{letter-spacing:2.310000px;}
.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;}
}
.ws4f{word-spacing:-15.984000px;}
.ws75{word-spacing:-15.930000px;}
.ws77{word-spacing:-15.444000px;}
.ws100{word-spacing:-15.228000px;}
.ws76{word-spacing:-15.012000px;}
.ws129{word-spacing:-13.986000px;}
.ws123{word-spacing:-13.482000px;}
.ws121{word-spacing:-13.188000px;}
.ws127{word-spacing:-12.978000px;}
.wsa3{word-spacing:-12.768000px;}
.ws128{word-spacing:-12.684000px;}
.wsa6{word-spacing:-12.558000px;}
.wsa4{word-spacing:-12.516000px;}
.ws122{word-spacing:-12.474000px;}
.ws120{word-spacing:-12.432000px;}
.wsa5{word-spacing:-12.390000px;}
.ws126{word-spacing:-12.012000px;}
.wsa2{word-spacing:-11.676000px;}
.ws78{word-spacing:-11.648311px;}
.ws125{word-spacing:-11.256000px;}
.ws51{word-spacing:-11.221637px;}
.ws124{word-spacing:-9.282000px;}
.ws50{word-spacing:-8.706960px;}
.ws91{word-spacing:-3.834000px;}
.ws9b{word-spacing:-3.456000px;}
.wsb1{word-spacing:-3.402000px;}
.wsb8{word-spacing:-3.186000px;}
.ws7{word-spacing:-3.150000px;}
.ws49{word-spacing:-3.078000px;}
.ws6{word-spacing:-2.970000px;}
.ws115{word-spacing:-2.862000px;}
.ws1e{word-spacing:-2.754000px;}
.wsdd{word-spacing:-2.646000px;}
.wse5{word-spacing:-2.592000px;}
.ws28{word-spacing:-2.538000px;}
.ws85{word-spacing:-2.484000px;}
.ws8a{word-spacing:-2.430000px;}
.ws47{word-spacing:-2.376000px;}
.wsba{word-spacing:-2.322000px;}
.ws152{word-spacing:-2.304000px;}
.wsd3{word-spacing:-2.268000px;}
.wsd2{word-spacing:-2.226000px;}
.ws1f{word-spacing:-2.160000px;}
.wsaa{word-spacing:-2.106000px;}
.wsd6{word-spacing:-2.100000px;}
.wsd4{word-spacing:-2.058000px;}
.ws16{word-spacing:-2.052000px;}
.ws4{word-spacing:-2.016000px;}
.wsa8{word-spacing:-1.998000px;}
.ws5{word-spacing:-1.980000px;}
.ws141{word-spacing:-1.974000px;}
.ws35{word-spacing:-1.944000px;}
.ws55{word-spacing:-1.932000px;}
.wsc{word-spacing:-1.890000px;}
.wsae{word-spacing:-1.836000px;}
.wsa{word-spacing:-1.806000px;}
.ws8e{word-spacing:-1.728000px;}
.ws148{word-spacing:-1.722000px;}
.wsf5{word-spacing:-1.674000px;}
.wsaf{word-spacing:-1.620000px;}
.ws68{word-spacing:-1.566000px;}
.ws21{word-spacing:-1.512000px;}
.wsda{word-spacing:-1.458000px;}
.ws62{word-spacing:-1.404000px;}
.ws110{word-spacing:-1.350000px;}
.ws14f{word-spacing:-1.344000px;}
.ws94{word-spacing:-1.296000px;}
.ws13b{word-spacing:-1.260000px;}
.ws4c{word-spacing:-1.242000px;}
.wsd5{word-spacing:-1.218000px;}
.ws154{word-spacing:-1.200000px;}
.ws3{word-spacing:-1.176000px;}
.wsa1{word-spacing:-1.080000px;}
.wsd{word-spacing:-1.026000px;}
.ws12c{word-spacing:-1.008000px;}
.ws3a{word-spacing:-0.810000px;}
.ws1{word-spacing:-0.780000px;}
.ws116{word-spacing:-0.756000px;}
.ws5e{word-spacing:-0.702000px;}
.ws12a{word-spacing:-0.660000px;}
.wscc{word-spacing:-0.594000px;}
.wsd0{word-spacing:-0.462000px;}
.wsab{word-spacing:-0.378000px;}
.ws14d{word-spacing:-0.336000px;}
.ws11{word-spacing:-0.270000px;}
.ws74{word-spacing:-0.216000px;}
.ws13f{word-spacing:-0.210000px;}
.ws34{word-spacing:-0.108000px;}
.wsf7{word-spacing:-0.054000px;}
.wsd1{word-spacing:-0.042000px;}
.ws54{word-spacing:-0.041725px;}
.ws0{word-spacing:0.000000px;}
.ws11f{word-spacing:0.042000px;}
.ws14b{word-spacing:0.084000px;}
.ws29{word-spacing:0.108000px;}
.ws93{word-spacing:0.162000px;}
.ws10f{word-spacing:0.216000px;}
.ws146{word-spacing:0.252000px;}
.ws14c{word-spacing:0.294000px;}
.wsc2{word-spacing:0.324000px;}
.ws5a{word-spacing:0.378000px;}
.ws143{word-spacing:0.420000px;}
.ws6d{word-spacing:0.486000px;}
.ws20{word-spacing:0.540000px;}
.wsf9{word-spacing:0.594000px;}
.ws136{word-spacing:0.630000px;}
.ws24{word-spacing:0.648000px;}
.ws11e{word-spacing:0.672000px;}
.ws26{word-spacing:0.702000px;}
.ws22{word-spacing:0.810000px;}
.ws151{word-spacing:0.864000px;}
.wsee{word-spacing:0.918000px;}
.ws1a{word-spacing:0.972000px;}
.ws32{word-spacing:1.026000px;}
.ws147{word-spacing:1.050000px;}
.ws9a{word-spacing:1.080000px;}
.ws6c{word-spacing:1.134000px;}
.ws12b{word-spacing:1.176000px;}
.ws57{word-spacing:1.188000px;}
.wsf6{word-spacing:1.242000px;}
.wse6{word-spacing:1.350000px;}
.ws14{word-spacing:1.620000px;}
.ws86{word-spacing:1.674000px;}
.ws13c{word-spacing:1.680000px;}
.wsce{word-spacing:1.728000px;}
.ws31{word-spacing:1.836000px;}
.ws10{word-spacing:1.890000px;}
.ws39{word-spacing:1.944000px;}
.wscd{word-spacing:1.998000px;}
.ws153{word-spacing:2.016000px;}
.ws8b{word-spacing:2.052000px;}
.ws4b{word-spacing:2.106000px;}
.ws69{word-spacing:2.160000px;}
.ws70{word-spacing:2.268000px;}
.ws140{word-spacing:2.310000px;}
.ws23{word-spacing:2.322000px;}
.ws1c{word-spacing:2.430000px;}
.ws92{word-spacing:2.538000px;}
.ws3e{word-spacing:2.592000px;}
.ws139{word-spacing:2.646000px;}
.ws144{word-spacing:2.772000px;}
.ws150{word-spacing:2.784000px;}
.wsef{word-spacing:2.808000px;}
.ws83{word-spacing:2.862000px;}
.ws79{word-spacing:2.880000px;}
.wsea{word-spacing:2.970000px;}
.wsf0{word-spacing:3.024000px;}
.ws9e{word-spacing:3.078000px;}
.wsd7{word-spacing:3.120000px;}
.ws98{word-spacing:3.132000px;}
.ws2a{word-spacing:3.186000px;}
.ws132{word-spacing:3.192000px;}
.ws27{word-spacing:3.240000px;}
.wsf{word-spacing:3.294000px;}
.ws25{word-spacing:3.348000px;}
.wseb{word-spacing:3.456000px;}
.ws130{word-spacing:3.528000px;}
.ws103{word-spacing:3.564000px;}
.ws145{word-spacing:3.570000px;}
.ws113{word-spacing:3.618000px;}
.ws64{word-spacing:3.780000px;}
.ws9f{word-spacing:3.834000px;}
.wsb6{word-spacing:3.888000px;}
.wsdf{word-spacing:3.942000px;}
.ws8d{word-spacing:4.050000px;}
.ws2{word-spacing:4.080000px;}
.ws90{word-spacing:4.104000px;}
.ws3c{word-spacing:4.158000px;}
.ws5f{word-spacing:4.212000px;}
.wsc0{word-spacing:4.266000px;}
.ws44{word-spacing:4.320000px;}
.wsbb{word-spacing:4.374000px;}
.ws36{word-spacing:4.428000px;}
.ws6e{word-spacing:4.482000px;}
.wsdb{word-spacing:4.536000px;}
.wsf1{word-spacing:4.590000px;}
.ws82{word-spacing:4.644000px;}
.ws112{word-spacing:4.698000px;}
.ws12e{word-spacing:4.704000px;}
.ws30{word-spacing:4.806000px;}
.ws8f{word-spacing:4.860000px;}
.ws3f{word-spacing:4.914000px;}
.ws5b{word-spacing:5.022000px;}
.ws95{word-spacing:5.076000px;}
.ws135{word-spacing:5.124000px;}
.wsa9{word-spacing:5.130000px;}
.wsb9{word-spacing:5.184000px;}
.ws10a{word-spacing:5.238000px;}
.ws9{word-spacing:5.292000px;}
.wsd9{word-spacing:5.346000px;}
.ws60{word-spacing:5.400000px;}
.ws12f{word-spacing:5.460000px;}
.ws61{word-spacing:5.562000px;}
.wsed{word-spacing:5.616000px;}
.ws11d{word-spacing:5.712000px;}
.ws7f{word-spacing:5.724000px;}
.ws13e{word-spacing:5.754000px;}
.ws65{word-spacing:5.778000px;}
.wsbc{word-spacing:5.832000px;}
.ws134{word-spacing:5.838000px;}
.ws17{word-spacing:5.886000px;}
.ws41{word-spacing:5.994000px;}
.wsa7{word-spacing:6.048000px;}
.ws99{word-spacing:6.156000px;}
.wsa0{word-spacing:6.210000px;}
.ws3b{word-spacing:6.264000px;}
.wsad{word-spacing:6.318000px;}
.wsc9{word-spacing:6.372000px;}
.ws118{word-spacing:6.426000px;}
.ws13a{word-spacing:6.468000px;}
.ws19{word-spacing:6.480000px;}
.ws101{word-spacing:6.534000px;}
.ws46{word-spacing:6.642000px;}
.ws43{word-spacing:6.696000px;}
.ws4d{word-spacing:6.750000px;}
.wse9{word-spacing:6.858000px;}
.ws149{word-spacing:6.888000px;}
.wsf8{word-spacing:6.966000px;}
.wsbd{word-spacing:7.128000px;}
.ws12{word-spacing:7.182000px;}
.ws7c{word-spacing:7.344000px;}
.wse3{word-spacing:7.452000px;}
.ws2e{word-spacing:7.506000px;}
.ws133{word-spacing:7.560000px;}
.ws87{word-spacing:7.614000px;}
.ws13d{word-spacing:7.644000px;}
.ws7d{word-spacing:7.668000px;}
.wsca{word-spacing:7.722000px;}
.ws14a{word-spacing:7.770000px;}
.ws137{word-spacing:7.812000px;}
.ws4e{word-spacing:7.830000px;}
.wsb3{word-spacing:7.992000px;}
.wsdc{word-spacing:8.100000px;}
.wscf{word-spacing:8.208000px;}
.ws7a{word-spacing:8.370000px;}
.ws13{word-spacing:8.424000px;}
.ws9c{word-spacing:8.532000px;}
.wsb4{word-spacing:8.640000px;}
.ws2c{word-spacing:8.748000px;}
.ws8c{word-spacing:8.802000px;}
.ws8{word-spacing:8.820000px;}
.wsac{word-spacing:8.856000px;}
.ws138{word-spacing:8.862000px;}
.ws38{word-spacing:8.910000px;}
.ws131{word-spacing:8.946000px;}
.ws33{word-spacing:8.964000px;}
.ws5c{word-spacing:9.072000px;}
.ws109{word-spacing:9.234000px;}
.ws10e{word-spacing:9.288000px;}
.wse0{word-spacing:9.342000px;}
.ws1d{word-spacing:9.450000px;}
.ws88{word-spacing:9.558000px;}
.ws12d{word-spacing:9.744000px;}
.ws89{word-spacing:9.774000px;}
.ws67{word-spacing:9.828000px;}
.ws2f{word-spacing:9.936000px;}
.ws48{word-spacing:9.990000px;}
.ws2d{word-spacing:10.044000px;}
.ws142{word-spacing:10.122000px;}
.wsb0{word-spacing:10.152000px;}
.ws15{word-spacing:10.206000px;}
.wsfa{word-spacing:10.368000px;}
.wsfd{word-spacing:10.422000px;}
.ws72{word-spacing:10.476000px;}
.wsc1{word-spacing:10.584000px;}
.wsff{word-spacing:10.638000px;}
.ws10b{word-spacing:10.692000px;}
.ws11b{word-spacing:10.800000px;}
.ws4a{word-spacing:10.854000px;}
.wse4{word-spacing:10.908000px;}
.wsf3{word-spacing:11.016000px;}
.wse{word-spacing:11.070000px;}
.wsb{word-spacing:11.256000px;}
.wsb7{word-spacing:11.340000px;}
.ws119{word-spacing:11.556000px;}
.ws97{word-spacing:11.610000px;}
.ws84{word-spacing:11.772000px;}
.wsbf{word-spacing:11.988000px;}
.wse1{word-spacing:12.042000px;}
.ws66{word-spacing:12.096000px;}
.ws105{word-spacing:12.204000px;}
.ws7e{word-spacing:12.258000px;}
.ws37{word-spacing:12.366000px;}
.wsfc{word-spacing:12.420000px;}
.ws6a{word-spacing:12.474000px;}
.wsd8{word-spacing:12.690000px;}
.wsec{word-spacing:12.798000px;}
.ws5d{word-spacing:13.284000px;}
.wse8{word-spacing:13.554000px;}
.wse7{word-spacing:13.608000px;}
.ws9d{word-spacing:13.770000px;}
.ws10d{word-spacing:13.824000px;}
.ws59{word-spacing:14.040000px;}
.ws7b{word-spacing:14.094000px;}
.ws106{word-spacing:14.148000px;}
.ws1b{word-spacing:14.472000px;}
.wsde{word-spacing:14.580000px;}
.wsf2{word-spacing:14.742000px;}
.wsc7{word-spacing:14.796000px;}
.ws56{word-spacing:14.850000px;}
.wsbe{word-spacing:14.904000px;}
.wsb5{word-spacing:15.066000px;}
.ws6b{word-spacing:15.174000px;}
.ws114{word-spacing:15.336000px;}
.wsfb{word-spacing:15.498000px;}
.ws80{word-spacing:15.714000px;}
.ws11a{word-spacing:15.876000px;}
.ws10c{word-spacing:16.092000px;}
.ws11c{word-spacing:16.200000px;}
.ws73{word-spacing:16.686000px;}
.ws14e{word-spacing:16.968000px;}
.ws40{word-spacing:17.442000px;}
.ws58{word-spacing:17.712000px;}
.ws102{word-spacing:17.766000px;}
.wse2{word-spacing:17.928000px;}
.ws71{word-spacing:18.036000px;}
.wsc8{word-spacing:18.198000px;}
.ws18{word-spacing:18.630000px;}
.ws45{word-spacing:18.792000px;}
.wscb{word-spacing:19.170000px;}
.ws81{word-spacing:19.818000px;}
.ws107{word-spacing:20.196000px;}
.wsb2{word-spacing:20.250000px;}
.ws6f{word-spacing:20.790000px;}
.ws42{word-spacing:20.844000px;}
.wsf4{word-spacing:21.114000px;}
.ws2b{word-spacing:21.762000px;}
.ws111{word-spacing:21.816000px;}
.wsc5{word-spacing:22.032000px;}
.ws104{word-spacing:22.086000px;}
.ws117{word-spacing:22.842000px;}
.wsc3{word-spacing:23.760000px;}
.ws63{word-spacing:23.868000px;}
.ws3d{word-spacing:23.922000px;}
.wsfe{word-spacing:27.216000px;}
.ws96{word-spacing:28.620000px;}
.wsc4{word-spacing:30.024000px;}
.wsc6{word-spacing:33.048000px;}
.ws108{word-spacing:36.288000px;}
.ws53{word-spacing:108.441994px;}
.ws52{word-spacing:139.786073px;}
._1c{margin-left:-22.032000px;}
._19{margin-left:-20.412000px;}
._a{margin-left:-18.144000px;}
._1e{margin-left:-16.929000px;}
._1d{margin-left:-15.795000px;}
._17{margin-left:-14.634000px;}
._12{margin-left:-12.960000px;}
._4{margin-left:-9.996000px;}
._b{margin-left:-8.262000px;}
._2{margin-left:-6.498000px;}
._6{margin-left:-5.022000px;}
._7{margin-left:-3.958200px;}
._8{margin-left:-2.835000px;}
._1{margin-left:-1.728000px;}
._0{width:1.296000px;}
._3{width:2.511000px;}
._15{width:4.444200px;}
._1f{width:5.724000px;}
._1b{width:7.983600px;}
._1a{width:10.035600px;}
._18{width:11.520600px;}
._20{width:13.707600px;}
._11{width:26.706788px;}
._5{width:45.108000px;}
._f{width:81.215587px;}
._10{width:108.341270px;}
._e{width:146.204203px;}
._13{width:173.567578px;}
._c{width:179.061802px;}
._d{width:191.292578px;}
._16{width:206.397000px;}
._14{width:277.129246px;}
._9{width:1935.067800px;}
.fc7{color:rgb(143,55,122);}
.fc6{color:rgb(125,203,41);}
.fc5{color:rgb(143,174,224);}
.fc4{color:rgb(112,109,110);}
.fc3{color:rgb(23,111,192);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.320000px;}
.fse{font-size:38.224496px;}
.fs9{font-size:40.365600px;}
.fsa{font-size:41.725200px;}
.fsb{font-size:41.725523px;}
.fsc{font-size:41.900400px;}
.fsd{font-size:41.901168px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:16.511850px;}
.y20{bottom:29.763750px;}
.y5{bottom:66.525004px;}
.y6f{bottom:95.244000px;}
.y83{bottom:95.244150px;}
.yfb{bottom:95.244300px;}
.y4{bottom:97.125005px;}
.y79{bottom:98.140800px;}
.yfa{bottom:108.744300px;}
.y6e{bottom:113.244000px;}
.y82{bottom:113.244150px;}
.y9e{bottom:116.127150px;}
.yf9{bottom:122.244300px;}
.y6d{bottom:131.244000px;}
.y81{bottom:131.244150px;}
.y72{bottom:133.959600px;}
.yf8{bottom:135.744300px;}
.y1f{bottom:139.264499px;}
.y91{bottom:140.662200px;}
.y6c{bottom:149.244000px;}
.y80{bottom:149.244150px;}
.yf7{bottom:149.244300px;}
.y99{bottom:150.999618px;}
.y71{bottom:154.959600px;}
.y92{bottom:158.687486px;}
.y6b{bottom:167.244000px;}
.y7f{bottom:167.244150px;}
.y70{bottom:175.959600px;}
.y93{bottom:176.723204px;}
.y9b{bottom:184.108564px;}
.y6a{bottom:185.244000px;}
.y7e{bottom:185.244150px;}
.y94{bottom:194.748491px;}
.y16{bottom:196.933500px;}
.y69{bottom:203.244000px;}
.y7d{bottom:203.244150px;}
.y9a{bottom:204.345286px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y95{bottom:212.773777px;}
.y9d{bottom:218.677893px;}
.y68{bottom:221.244000px;}
.y7c{bottom:221.244150px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y96{bottom:230.809495px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y7b{bottom:239.244150px;}
.y97{bottom:248.834781px;}
.y2c{bottom:253.018800px;}
.y67{bottom:257.244000px;}
.ya1{bottom:257.244150px;}
.y9c{bottom:257.659661px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y2b{bottom:266.518800px;}
.y98{bottom:266.860067px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y66{bottom:275.244000px;}
.y7a{bottom:275.244150px;}
.y9f{bottom:280.125750px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y2a{bottom:287.459850px;}
.y65{bottom:293.244000px;}
.y78{bottom:293.244150px;}
.y29{bottom:300.959850px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y64{bottom:311.244000px;}
.y77{bottom:311.244150px;}
.y28{bottom:314.459850px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y63{bottom:329.244000px;}
.y76{bottom:329.244150px;}
.y62{bottom:347.244000px;}
.y4c{bottom:347.244150px;}
.yd{bottom:348.133500px;}
.y61{bottom:365.244000px;}
.y4b{bottom:365.244150px;}
.y60{bottom:383.244000px;}
.y4a{bottom:383.244150px;}
.yc{bottom:386.785499px;}
.y5f{bottom:401.244000px;}
.y49{bottom:401.244150px;}
.yb{bottom:408.044999px;}
.y5e{bottom:419.244000px;}
.y48{bottom:419.244150px;}
.y5d{bottom:437.244000px;}
.y47{bottom:437.244150px;}
.y5c{bottom:455.244000px;}
.y46{bottom:455.244150px;}
.y5b{bottom:473.244000px;}
.y45{bottom:473.244150px;}
.y5a{bottom:491.244000px;}
.y44{bottom:491.244150px;}
.ya{bottom:502.864502px;}
.y59{bottom:509.244000px;}
.y43{bottom:509.244150px;}
.y9{bottom:520.864502px;}
.y58{bottom:527.244000px;}
.y84{bottom:527.244150px;}
.y8{bottom:538.864499px;}
.y57{bottom:545.244000px;}
.y42{bottom:545.244150px;}
.y7{bottom:556.864499px;}
.y56{bottom:563.244000px;}
.y41{bottom:563.244150px;}
.y55{bottom:581.244000px;}
.y40{bottom:581.244150px;}
.y54{bottom:599.244000px;}
.y3f{bottom:599.244150px;}
.y53{bottom:617.244000px;}
.y3e{bottom:617.244150px;}
.y52{bottom:635.244000px;}
.y3d{bottom:635.244150px;}
.y11b{bottom:641.247300px;}
.y138{bottom:650.303250px;}
.y3c{bottom:653.244150px;}
.y11a{bottom:654.747300px;}
.y137{bottom:663.803250px;}
.y119{bottom:668.247300px;}
.y51{bottom:671.244000px;}
.y3b{bottom:671.244150px;}
.y136{bottom:677.303250px;}
.y118{bottom:681.747300px;}
.y3a{bottom:689.244150px;}
.y135{bottom:690.803250px;}
.y117{bottom:695.247300px;}
.ydf{bottom:701.814150px;}
.y134{bottom:704.303250px;}
.y50{bottom:707.244000px;}
.y39{bottom:707.244150px;}
.y116{bottom:708.747300px;}
.y133{bottom:717.803250px;}
.y115{bottom:722.247300px;}
.yf4{bottom:723.588000px;}
.y4f{bottom:725.244000px;}
.y38{bottom:725.244150px;}
.y6{bottom:726.298500px;}
.y132{bottom:731.303250px;}
.y114{bottom:735.747300px;}
.yf3{bottom:737.088000px;}
.y4e{bottom:743.244000px;}
.yf6{bottom:743.244150px;}
.y131{bottom:744.803250px;}
.y113{bottom:749.247300px;}
.yf2{bottom:750.588000px;}
.y3{bottom:752.599495px;}
.y130{bottom:758.303250px;}
.y4d{bottom:761.244000px;}
.y37{bottom:761.244150px;}
.y112{bottom:762.747300px;}
.yf1{bottom:764.088000px;}
.y75{bottom:770.306250px;}
.y12f{bottom:771.803250px;}
.y111{bottom:776.247300px;}
.yf0{bottom:777.588000px;}
.y36{bottom:779.244000px;}
.yde{bottom:779.244150px;}
.y12e{bottom:785.303250px;}
.ya0{bottom:785.913900px;}
.y110{bottom:789.747300px;}
.y90{bottom:790.394700px;}
.yef{bottom:791.088000px;}
.y35{bottom:797.244000px;}
.ydd{bottom:797.244150px;}
.y12d{bottom:798.803250px;}
.y10f{bottom:803.247300px;}
.yb2{bottom:803.679600px;}
.yb9{bottom:804.178174px;}
.yb8{bottom:804.179951px;}
.yb3{bottom:804.180300px;}
.ybf{bottom:804.181029px;}
.ybb{bottom:804.181378px;}
.yb7{bottom:804.181727px;}
.yb4{bottom:804.182077px;}
.ybe{bottom:804.182806px;}
.yba{bottom:804.183155px;}
.yb6{bottom:804.183504px;}
.yc1{bottom:804.184233px;}
.ybd{bottom:804.184582px;}
.yb5{bottom:804.185281px;}
.yc0{bottom:804.186010px;}
.ybc{bottom:804.186359px;}
.yc2{bottom:804.338700px;}
.yee{bottom:804.588000px;}
.yc3{bottom:804.840900px;}
.yc4{bottom:804.842677px;}
.yc5{bottom:804.845881px;}
.yc7{bottom:804.849085px;}
.yc6{bottom:804.850861px;}
.yc9{bottom:804.852289px;}
.yc8{bottom:804.854065px;}
.ycf{bottom:804.855143px;}
.ycb{bottom:804.855493px;}
.yce{bottom:804.856920px;}
.yca{bottom:804.857269px;}
.yd1{bottom:804.858347px;}
.ycd{bottom:804.858697px;}
.yd0{bottom:804.860124px;}
.ycc{bottom:804.860473px;}
.y85{bottom:806.032950px;}
.y12c{bottom:812.303250px;}
.y34{bottom:815.244000px;}
.ydc{bottom:815.244150px;}
.y10e{bottom:816.747300px;}
.yed{bottom:818.088000px;}
.y12b{bottom:825.803250px;}
.ya2{bottom:827.927400px;}
.y10d{bottom:830.247300px;}
.y86{bottom:830.353224px;}
.yec{bottom:831.588000px;}
.y33{bottom:833.244000px;}
.ydb{bottom:833.244150px;}
.yaa{bottom:836.788500px;}
.y12a{bottom:839.303250px;}
.y10c{bottom:843.747300px;}
.yab{bottom:848.109431px;}
.ya3{bottom:848.228144px;}
.y32{bottom:851.244000px;}
.yda{bottom:851.244150px;}
.yeb{bottom:851.840850px;}
.y129{bottom:852.803250px;}
.y87{bottom:854.673498px;}
.y10b{bottom:857.247300px;}
.yea{bottom:865.340850px;}
.y128{bottom:866.303250px;}
.yac{bottom:868.410174px;}
.ya4{bottom:868.528888px;}
.y31{bottom:869.244000px;}
.yd9{bottom:869.244150px;}
.y10a{bottom:870.747300px;}
.ye9{bottom:878.840850px;}
.y88{bottom:878.993772px;}
.y2{bottom:879.369000px;}
.y127{bottom:879.803250px;}
.y109{bottom:884.247300px;}
.y30{bottom:887.244000px;}
.yd8{bottom:887.244150px;}
.yad{bottom:888.700443px;}
.ya5{bottom:888.819156px;}
.ye8{bottom:892.340850px;}
.y126{bottom:893.303250px;}
.y108{bottom:897.747300px;}
.y89{bottom:903.314046px;}
.y2f{bottom:905.244000px;}
.yd7{bottom:905.244150px;}
.ye7{bottom:905.840850px;}
.y125{bottom:906.803250px;}
.yae{bottom:909.001187px;}
.ya6{bottom:909.119900px;}
.y107{bottom:911.247300px;}
.ye6{bottom:919.340850px;}
.y124{bottom:920.303250px;}
.y2e{bottom:923.244000px;}
.yd6{bottom:923.244150px;}
.y106{bottom:924.747300px;}
.y8a{bottom:927.634320px;}
.yaf{bottom:929.301931px;}
.ya7{bottom:929.420644px;}
.ye5{bottom:932.840850px;}
.y123{bottom:933.803250px;}
.y105{bottom:938.247300px;}
.y2d{bottom:941.244000px;}
.yd5{bottom:941.244150px;}
.ye4{bottom:946.340850px;}
.y122{bottom:947.303250px;}
.ya8{bottom:949.721388px;}
.y104{bottom:951.747300px;}
.y8b{bottom:951.954594px;}
.yd4{bottom:959.244150px;}
.ye3{bottom:959.840850px;}
.y121{bottom:960.803250px;}
.y103{bottom:965.247300px;}
.y1{bottom:966.726000px;}
.ya9{bottom:970.022131px;}
.ye2{bottom:973.340850px;}
.y120{bottom:974.303250px;}
.y8c{bottom:976.274868px;}
.yd3{bottom:977.244150px;}
.y102{bottom:978.747300px;}
.yb1{bottom:981.771707px;}
.y8e{bottom:986.366268px;}
.ye1{bottom:986.840850px;}
.y11f{bottom:987.803250px;}
.y27{bottom:987.992100px;}
.y101{bottom:992.247300px;}
.y8f{bottom:993.490796px;}
.yb0{bottom:994.677030px;}
.yd2{bottom:995.244150px;}
.y8d{bottom:996.629222px;}
.y11e{bottom:1001.303250px;}
.y100{bottom:1005.747300px;}
.ye0{bottom:1007.093700px;}
.yf5{bottom:1013.244150px;}
.y74{bottom:1014.744150px;}
.y11d{bottom:1014.803250px;}
.y26{bottom:1016.492100px;}
.yff{bottom:1019.247300px;}
.y11c{bottom:1028.303250px;}
.y73{bottom:1031.244150px;}
.yfe{bottom:1032.747300px;}
.yfd{bottom:1046.247300px;}
.y25{bottom:1049.244150px;}
.yfc{bottom:1059.747300px;}
.y24{bottom:1098.992100px;}
.y23{bottom:1117.511850px;}
.y22{bottom:1143.779550px;}
.h19{height:30.702000px;}
.h7{height:32.130000px;}
.h18{height:34.287372px;}
.h1a{height:35.088000px;}
.h11{height:36.207943px;}
.h13{height:37.427504px;}
.h14{height:37.427794px;}
.h15{height:37.584659px;}
.h17{height:37.585348px;}
.hc{height:37.674000px;}
.h16{height:38.663459px;}
.h10{height:38.772000px;}
.hb{height:43.080000px;}
.h6{height:45.900000px;}
.hd{height:47.388000px;}
.h3{height:48.195000px;}
.ha{height:48.438000px;}
.hf{height:48.870000px;}
.h2{height:55.080000px;}
.h12{height:77.259758px;}
.h5{height:78.030000px;}
.he{height:81.450000px;}
.h4{height:119.055004px;}
.h9{height:1177.500000px;}
.h8{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.xe{left:63.779550px;}
.xd{left:67.287450px;}
.x11{left:71.290529px;}
.x14{left:72.814330px;}
.x10{left:76.840799px;}
.x4b{left:80.787450px;}
.xa{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2b{left:107.309894px;}
.x2a{left:113.134050px;}
.xb{left:114.803100px;}
.x12{left:119.719157px;}
.x31{left:122.846489px;}
.x30{left:143.292000px;}
.x32{left:163.730753px;}
.x33{left:184.176264px;}
.x2c{left:195.552450px;}
.x4{left:203.484001px;}
.x34{left:204.621775px;}
.x35{left:225.067285px;}
.x36{left:245.512796px;}
.x37{left:265.951549px;}
.x38{left:286.397060px;}
.x39{left:306.835813px;}
.x3a{left:327.281324px;}
.x15{left:345.019800px;}
.x3b{left:347.726834px;}
.x3c{left:368.172345px;}
.x3d{left:388.611098px;}
.x13{left:395.991415px;}
.x3e{left:409.056609px;}
.x2f{left:429.697350px;}
.xf{left:446.456700px;}
.x16{left:450.131700px;}
.x3{left:454.959000px;}
.x17{left:458.862698px;}
.x4c{left:463.464600px;}
.x2e{left:469.239418px;}
.x1d{left:470.570850px;}
.x2d{left:475.063573px;}
.xc{left:480.472350px;}
.x40{left:490.194389px;}
.x1e{left:494.793962px;}
.x29{left:497.480250px;}
.x1c{left:510.768847px;}
.x1a{left:517.173665px;}
.x1f{left:519.017075px;}
.x41{left:531.078653px;}
.x20{left:543.240187px;}
.x42{left:551.517407px;}
.x18{left:561.631866px;}
.x21{left:567.463300px;}
.x43{left:571.962917px;}
.x22{left:591.686412px;}
.x19{left:610.565094px;}
.x44{left:612.847181px;}
.x4d{left:614.409450px;}
.x23{left:615.909524px;}
.x45{left:633.285935px;}
.x1b{left:637.144046px;}
.x24{left:640.132637px;}
.x7{left:654.294150px;}
.x25{left:664.355749px;}
.x5{left:667.999650px;}
.x46{left:674.170199px;}
.x26{left:688.578862px;}
.x9{left:694.078650px;}
.x27{left:712.801974px;}
.x47{left:715.061220px;}
.x48{left:735.506731px;}
.x8{left:737.022150px;}
.x49{left:755.945484px;}
.x28{left:761.248199px;}
.x4a{left:776.390995px;}
.x3f{left:797.045250px;}
@media print{
.v1{vertical-align:-33.259733pt;}
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.958933pt;}
.v3{vertical-align:15.840000pt;}
.v4{vertical-align:36.490502pt;}
.ls21{letter-spacing:-5.088000pt;}
.ls1{letter-spacing:-3.626667pt;}
.ls14{letter-spacing:-3.408000pt;}
.ls1b{letter-spacing:-2.773333pt;}
.ls1c{letter-spacing:-2.688000pt;}
.ls11{letter-spacing:-2.560000pt;}
.ls28{letter-spacing:-2.128000pt;}
.ls1e{letter-spacing:-0.912000pt;}
.ls29{letter-spacing:-0.373333pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.149333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.037333pt;}
.ls4{letter-spacing:0.117333pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.400000pt;}
.ls15{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.522667pt;}
.ls13{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.560000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls22{letter-spacing:0.586667pt;}
.ls7{letter-spacing:0.634667pt;}
.ls2{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.672000pt;}
.ls25{letter-spacing:0.709333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls19{letter-spacing:0.784000pt;}
.ls12{letter-spacing:0.816000pt;}
.ls1a{letter-spacing:0.821333pt;}
.lsf{letter-spacing:0.864000pt;}
.ls2c{letter-spacing:0.896000pt;}
.lsb{letter-spacing:0.912000pt;}
.ls18{letter-spacing:0.933333pt;}
.ls17{letter-spacing:0.970667pt;}
.ls2b{letter-spacing:1.157333pt;}
.ls24{letter-spacing:1.344000pt;}
.ls27{letter-spacing:1.605333pt;}
.ls2d{letter-spacing:2.053333pt;}
.ws4f{word-spacing:-14.208000pt;}
.ws75{word-spacing:-14.160000pt;}
.ws77{word-spacing:-13.728000pt;}
.ws100{word-spacing:-13.536000pt;}
.ws76{word-spacing:-13.344000pt;}
.ws129{word-spacing:-12.432000pt;}
.ws123{word-spacing:-11.984000pt;}
.ws121{word-spacing:-11.722667pt;}
.ws127{word-spacing:-11.536000pt;}
.wsa3{word-spacing:-11.349333pt;}
.ws128{word-spacing:-11.274667pt;}
.wsa6{word-spacing:-11.162667pt;}
.wsa4{word-spacing:-11.125333pt;}
.ws122{word-spacing:-11.088000pt;}
.ws120{word-spacing:-11.050667pt;}
.wsa5{word-spacing:-11.013333pt;}
.ws126{word-spacing:-10.677333pt;}
.wsa2{word-spacing:-10.378667pt;}
.ws78{word-spacing:-10.354054pt;}
.ws125{word-spacing:-10.005333pt;}
.ws51{word-spacing:-9.974788pt;}
.ws124{word-spacing:-8.250667pt;}
.ws50{word-spacing:-7.739520pt;}
.ws91{word-spacing:-3.408000pt;}
.ws9b{word-spacing:-3.072000pt;}
.wsb1{word-spacing:-3.024000pt;}
.wsb8{word-spacing:-2.832000pt;}
.ws7{word-spacing:-2.800000pt;}
.ws49{word-spacing:-2.736000pt;}
.ws6{word-spacing:-2.640000pt;}
.ws115{word-spacing:-2.544000pt;}
.ws1e{word-spacing:-2.448000pt;}
.wsdd{word-spacing:-2.352000pt;}
.wse5{word-spacing:-2.304000pt;}
.ws28{word-spacing:-2.256000pt;}
.ws85{word-spacing:-2.208000pt;}
.ws8a{word-spacing:-2.160000pt;}
.ws47{word-spacing:-2.112000pt;}
.wsba{word-spacing:-2.064000pt;}
.ws152{word-spacing:-2.048000pt;}
.wsd3{word-spacing:-2.016000pt;}
.wsd2{word-spacing:-1.978667pt;}
.ws1f{word-spacing:-1.920000pt;}
.wsaa{word-spacing:-1.872000pt;}
.wsd6{word-spacing:-1.866667pt;}
.wsd4{word-spacing:-1.829333pt;}
.ws16{word-spacing:-1.824000pt;}
.ws4{word-spacing:-1.792000pt;}
.wsa8{word-spacing:-1.776000pt;}
.ws5{word-spacing:-1.760000pt;}
.ws141{word-spacing:-1.754667pt;}
.ws35{word-spacing:-1.728000pt;}
.ws55{word-spacing:-1.717333pt;}
.wsc{word-spacing:-1.680000pt;}
.wsae{word-spacing:-1.632000pt;}
.wsa{word-spacing:-1.605333pt;}
.ws8e{word-spacing:-1.536000pt;}
.ws148{word-spacing:-1.530667pt;}
.wsf5{word-spacing:-1.488000pt;}
.wsaf{word-spacing:-1.440000pt;}
.ws68{word-spacing:-1.392000pt;}
.ws21{word-spacing:-1.344000pt;}
.wsda{word-spacing:-1.296000pt;}
.ws62{word-spacing:-1.248000pt;}
.ws110{word-spacing:-1.200000pt;}
.ws14f{word-spacing:-1.194667pt;}
.ws94{word-spacing:-1.152000pt;}
.ws13b{word-spacing:-1.120000pt;}
.ws4c{word-spacing:-1.104000pt;}
.wsd5{word-spacing:-1.082667pt;}
.ws154{word-spacing:-1.066667pt;}
.ws3{word-spacing:-1.045333pt;}
.wsa1{word-spacing:-0.960000pt;}
.wsd{word-spacing:-0.912000pt;}
.ws12c{word-spacing:-0.896000pt;}
.ws3a{word-spacing:-0.720000pt;}
.ws1{word-spacing:-0.693333pt;}
.ws116{word-spacing:-0.672000pt;}
.ws5e{word-spacing:-0.624000pt;}
.ws12a{word-spacing:-0.586667pt;}
.wscc{word-spacing:-0.528000pt;}
.wsd0{word-spacing:-0.410667pt;}
.wsab{word-spacing:-0.336000pt;}
.ws14d{word-spacing:-0.298667pt;}
.ws11{word-spacing:-0.240000pt;}
.ws74{word-spacing:-0.192000pt;}
.ws13f{word-spacing:-0.186667pt;}
.ws34{word-spacing:-0.096000pt;}
.wsf7{word-spacing:-0.048000pt;}
.wsd1{word-spacing:-0.037333pt;}
.ws54{word-spacing:-0.037089pt;}
.ws0{word-spacing:0.000000pt;}
.ws11f{word-spacing:0.037333pt;}
.ws14b{word-spacing:0.074667pt;}
.ws29{word-spacing:0.096000pt;}
.ws93{word-spacing:0.144000pt;}
.ws10f{word-spacing:0.192000pt;}
.ws146{word-spacing:0.224000pt;}
.ws14c{word-spacing:0.261333pt;}
.wsc2{word-spacing:0.288000pt;}
.ws5a{word-spacing:0.336000pt;}
.ws143{word-spacing:0.373333pt;}
.ws6d{word-spacing:0.432000pt;}
.ws20{word-spacing:0.480000pt;}
.wsf9{word-spacing:0.528000pt;}
.ws136{word-spacing:0.560000pt;}
.ws24{word-spacing:0.576000pt;}
.ws11e{word-spacing:0.597333pt;}
.ws26{word-spacing:0.624000pt;}
.ws22{word-spacing:0.720000pt;}
.ws151{word-spacing:0.768000pt;}
.wsee{word-spacing:0.816000pt;}
.ws1a{word-spacing:0.864000pt;}
.ws32{word-spacing:0.912000pt;}
.ws147{word-spacing:0.933333pt;}
.ws9a{word-spacing:0.960000pt;}
.ws6c{word-spacing:1.008000pt;}
.ws12b{word-spacing:1.045333pt;}
.ws57{word-spacing:1.056000pt;}
.wsf6{word-spacing:1.104000pt;}
.wse6{word-spacing:1.200000pt;}
.ws14{word-spacing:1.440000pt;}
.ws86{word-spacing:1.488000pt;}
.ws13c{word-spacing:1.493333pt;}
.wsce{word-spacing:1.536000pt;}
.ws31{word-spacing:1.632000pt;}
.ws10{word-spacing:1.680000pt;}
.ws39{word-spacing:1.728000pt;}
.wscd{word-spacing:1.776000pt;}
.ws153{word-spacing:1.792000pt;}
.ws8b{word-spacing:1.824000pt;}
.ws4b{word-spacing:1.872000pt;}
.ws69{word-spacing:1.920000pt;}
.ws70{word-spacing:2.016000pt;}
.ws140{word-spacing:2.053333pt;}
.ws23{word-spacing:2.064000pt;}
.ws1c{word-spacing:2.160000pt;}
.ws92{word-spacing:2.256000pt;}
.ws3e{word-spacing:2.304000pt;}
.ws139{word-spacing:2.352000pt;}
.ws144{word-spacing:2.464000pt;}
.ws150{word-spacing:2.474667pt;}
.wsef{word-spacing:2.496000pt;}
.ws83{word-spacing:2.544000pt;}
.ws79{word-spacing:2.560000pt;}
.wsea{word-spacing:2.640000pt;}
.wsf0{word-spacing:2.688000pt;}
.ws9e{word-spacing:2.736000pt;}
.wsd7{word-spacing:2.773333pt;}
.ws98{word-spacing:2.784000pt;}
.ws2a{word-spacing:2.832000pt;}
.ws132{word-spacing:2.837333pt;}
.ws27{word-spacing:2.880000pt;}
.wsf{word-spacing:2.928000pt;}
.ws25{word-spacing:2.976000pt;}
.wseb{word-spacing:3.072000pt;}
.ws130{word-spacing:3.136000pt;}
.ws103{word-spacing:3.168000pt;}
.ws145{word-spacing:3.173333pt;}
.ws113{word-spacing:3.216000pt;}
.ws64{word-spacing:3.360000pt;}
.ws9f{word-spacing:3.408000pt;}
.wsb6{word-spacing:3.456000pt;}
.wsdf{word-spacing:3.504000pt;}
.ws8d{word-spacing:3.600000pt;}
.ws2{word-spacing:3.626667pt;}
.ws90{word-spacing:3.648000pt;}
.ws3c{word-spacing:3.696000pt;}
.ws5f{word-spacing:3.744000pt;}
.wsc0{word-spacing:3.792000pt;}
.ws44{word-spacing:3.840000pt;}
.wsbb{word-spacing:3.888000pt;}
.ws36{word-spacing:3.936000pt;}
.ws6e{word-spacing:3.984000pt;}
.wsdb{word-spacing:4.032000pt;}
.wsf1{word-spacing:4.080000pt;}
.ws82{word-spacing:4.128000pt;}
.ws112{word-spacing:4.176000pt;}
.ws12e{word-spacing:4.181333pt;}
.ws30{word-spacing:4.272000pt;}
.ws8f{word-spacing:4.320000pt;}
.ws3f{word-spacing:4.368000pt;}
.ws5b{word-spacing:4.464000pt;}
.ws95{word-spacing:4.512000pt;}
.ws135{word-spacing:4.554667pt;}
.wsa9{word-spacing:4.560000pt;}
.wsb9{word-spacing:4.608000pt;}
.ws10a{word-spacing:4.656000pt;}
.ws9{word-spacing:4.704000pt;}
.wsd9{word-spacing:4.752000pt;}
.ws60{word-spacing:4.800000pt;}
.ws12f{word-spacing:4.853333pt;}
.ws61{word-spacing:4.944000pt;}
.wsed{word-spacing:4.992000pt;}
.ws11d{word-spacing:5.077333pt;}
.ws7f{word-spacing:5.088000pt;}
.ws13e{word-spacing:5.114667pt;}
.ws65{word-spacing:5.136000pt;}
.wsbc{word-spacing:5.184000pt;}
.ws134{word-spacing:5.189333pt;}
.ws17{word-spacing:5.232000pt;}
.ws41{word-spacing:5.328000pt;}
.wsa7{word-spacing:5.376000pt;}
.ws99{word-spacing:5.472000pt;}
.wsa0{word-spacing:5.520000pt;}
.ws3b{word-spacing:5.568000pt;}
.wsad{word-spacing:5.616000pt;}
.wsc9{word-spacing:5.664000pt;}
.ws118{word-spacing:5.712000pt;}
.ws13a{word-spacing:5.749333pt;}
.ws19{word-spacing:5.760000pt;}
.ws101{word-spacing:5.808000pt;}
.ws46{word-spacing:5.904000pt;}
.ws43{word-spacing:5.952000pt;}
.ws4d{word-spacing:6.000000pt;}
.wse9{word-spacing:6.096000pt;}
.ws149{word-spacing:6.122667pt;}
.wsf8{word-spacing:6.192000pt;}
.wsbd{word-spacing:6.336000pt;}
.ws12{word-spacing:6.384000pt;}
.ws7c{word-spacing:6.528000pt;}
.wse3{word-spacing:6.624000pt;}
.ws2e{word-spacing:6.672000pt;}
.ws133{word-spacing:6.720000pt;}
.ws87{word-spacing:6.768000pt;}
.ws13d{word-spacing:6.794667pt;}
.ws7d{word-spacing:6.816000pt;}
.wsca{word-spacing:6.864000pt;}
.ws14a{word-spacing:6.906667pt;}
.ws137{word-spacing:6.944000pt;}
.ws4e{word-spacing:6.960000pt;}
.wsb3{word-spacing:7.104000pt;}
.wsdc{word-spacing:7.200000pt;}
.wscf{word-spacing:7.296000pt;}
.ws7a{word-spacing:7.440000pt;}
.ws13{word-spacing:7.488000pt;}
.ws9c{word-spacing:7.584000pt;}
.wsb4{word-spacing:7.680000pt;}
.ws2c{word-spacing:7.776000pt;}
.ws8c{word-spacing:7.824000pt;}
.ws8{word-spacing:7.840000pt;}
.wsac{word-spacing:7.872000pt;}
.ws138{word-spacing:7.877333pt;}
.ws38{word-spacing:7.920000pt;}
.ws131{word-spacing:7.952000pt;}
.ws33{word-spacing:7.968000pt;}
.ws5c{word-spacing:8.064000pt;}
.ws109{word-spacing:8.208000pt;}
.ws10e{word-spacing:8.256000pt;}
.wse0{word-spacing:8.304000pt;}
.ws1d{word-spacing:8.400000pt;}
.ws88{word-spacing:8.496000pt;}
.ws12d{word-spacing:8.661333pt;}
.ws89{word-spacing:8.688000pt;}
.ws67{word-spacing:8.736000pt;}
.ws2f{word-spacing:8.832000pt;}
.ws48{word-spacing:8.880000pt;}
.ws2d{word-spacing:8.928000pt;}
.ws142{word-spacing:8.997333pt;}
.wsb0{word-spacing:9.024000pt;}
.ws15{word-spacing:9.072000pt;}
.wsfa{word-spacing:9.216000pt;}
.wsfd{word-spacing:9.264000pt;}
.ws72{word-spacing:9.312000pt;}
.wsc1{word-spacing:9.408000pt;}
.wsff{word-spacing:9.456000pt;}
.ws10b{word-spacing:9.504000pt;}
.ws11b{word-spacing:9.600000pt;}
.ws4a{word-spacing:9.648000pt;}
.wse4{word-spacing:9.696000pt;}
.wsf3{word-spacing:9.792000pt;}
.wse{word-spacing:9.840000pt;}
.wsb{word-spacing:10.005333pt;}
.wsb7{word-spacing:10.080000pt;}
.ws119{word-spacing:10.272000pt;}
.ws97{word-spacing:10.320000pt;}
.ws84{word-spacing:10.464000pt;}
.wsbf{word-spacing:10.656000pt;}
.wse1{word-spacing:10.704000pt;}
.ws66{word-spacing:10.752000pt;}
.ws105{word-spacing:10.848000pt;}
.ws7e{word-spacing:10.896000pt;}
.ws37{word-spacing:10.992000pt;}
.wsfc{word-spacing:11.040000pt;}
.ws6a{word-spacing:11.088000pt;}
.wsd8{word-spacing:11.280000pt;}
.wsec{word-spacing:11.376000pt;}
.ws5d{word-spacing:11.808000pt;}
.wse8{word-spacing:12.048000pt;}
.wse7{word-spacing:12.096000pt;}
.ws9d{word-spacing:12.240000pt;}
.ws10d{word-spacing:12.288000pt;}
.ws59{word-spacing:12.480000pt;}
.ws7b{word-spacing:12.528000pt;}
.ws106{word-spacing:12.576000pt;}
.ws1b{word-spacing:12.864000pt;}
.wsde{word-spacing:12.960000pt;}
.wsf2{word-spacing:13.104000pt;}
.wsc7{word-spacing:13.152000pt;}
.ws56{word-spacing:13.200000pt;}
.wsbe{word-spacing:13.248000pt;}
.wsb5{word-spacing:13.392000pt;}
.ws6b{word-spacing:13.488000pt;}
.ws114{word-spacing:13.632000pt;}
.wsfb{word-spacing:13.776000pt;}
.ws80{word-spacing:13.968000pt;}
.ws11a{word-spacing:14.112000pt;}
.ws10c{word-spacing:14.304000pt;}
.ws11c{word-spacing:14.400000pt;}
.ws73{word-spacing:14.832000pt;}
.ws14e{word-spacing:15.082667pt;}
.ws40{word-spacing:15.504000pt;}
.ws58{word-spacing:15.744000pt;}
.ws102{word-spacing:15.792000pt;}
.wse2{word-spacing:15.936000pt;}
.ws71{word-spacing:16.032000pt;}
.wsc8{word-spacing:16.176000pt;}
.ws18{word-spacing:16.560000pt;}
.ws45{word-spacing:16.704000pt;}
.wscb{word-spacing:17.040000pt;}
.ws81{word-spacing:17.616000pt;}
.ws107{word-spacing:17.952000pt;}
.wsb2{word-spacing:18.000000pt;}
.ws6f{word-spacing:18.480000pt;}
.ws42{word-spacing:18.528000pt;}
.wsf4{word-spacing:18.768000pt;}
.ws2b{word-spacing:19.344000pt;}
.ws111{word-spacing:19.392000pt;}
.wsc5{word-spacing:19.584000pt;}
.ws104{word-spacing:19.632000pt;}
.ws117{word-spacing:20.304000pt;}
.wsc3{word-spacing:21.120000pt;}
.ws63{word-spacing:21.216000pt;}
.ws3d{word-spacing:21.264000pt;}
.wsfe{word-spacing:24.192000pt;}
.ws96{word-spacing:25.440000pt;}
.wsc4{word-spacing:26.688000pt;}
.wsc6{word-spacing:29.376000pt;}
.ws108{word-spacing:32.256000pt;}
.ws53{word-spacing:96.392883pt;}
.ws52{word-spacing:124.254287pt;}
._1c{margin-left:-19.584000pt;}
._19{margin-left:-18.144000pt;}
._a{margin-left:-16.128000pt;}
._1e{margin-left:-15.048000pt;}
._1d{margin-left:-14.040000pt;}
._17{margin-left:-13.008000pt;}
._12{margin-left:-11.520000pt;}
._4{margin-left:-8.885333pt;}
._b{margin-left:-7.344000pt;}
._2{margin-left:-5.776000pt;}
._6{margin-left:-4.464000pt;}
._7{margin-left:-3.518400pt;}
._8{margin-left:-2.520000pt;}
._1{margin-left:-1.536000pt;}
._0{width:1.152000pt;}
._3{width:2.232000pt;}
._15{width:3.950400pt;}
._1f{width:5.088000pt;}
._1b{width:7.096533pt;}
._1a{width:8.920533pt;}
._18{width:10.240533pt;}
._20{width:12.184533pt;}
._11{width:23.739367pt;}
._5{width:40.096000pt;}
._f{width:72.191633pt;}
._10{width:96.303351pt;}
._e{width:129.959292pt;}
._13{width:154.282291pt;}
._c{width:159.166046pt;}
._d{width:170.037847pt;}
._16{width:183.464000pt;}
._14{width:246.337107pt;}
._9{width:1720.060267pt;}
.fs8{font-size:27.840000pt;}
.fse{font-size:33.977329pt;}
.fs9{font-size:35.880533pt;}
.fsa{font-size:37.089067pt;}
.fsb{font-size:37.089353pt;}
.fsc{font-size:37.244800pt;}
.fsd{font-size:37.245483pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:14.677200pt;}
.y20{bottom:26.456667pt;}
.y5{bottom:59.133337pt;}
.y6f{bottom:84.661333pt;}
.y83{bottom:84.661467pt;}
.yfb{bottom:84.661600pt;}
.y4{bottom:86.333337pt;}
.y79{bottom:87.236267pt;}
.yfa{bottom:96.661600pt;}
.y6e{bottom:100.661333pt;}
.y82{bottom:100.661467pt;}
.y9e{bottom:103.224133pt;}
.yf9{bottom:108.661600pt;}
.y6d{bottom:116.661333pt;}
.y81{bottom:116.661467pt;}
.y72{bottom:119.075200pt;}
.yf8{bottom:120.661600pt;}
.y1f{bottom:123.790666pt;}
.y91{bottom:125.033067pt;}
.y6c{bottom:132.661333pt;}
.y80{bottom:132.661467pt;}
.yf7{bottom:132.661600pt;}
.y99{bottom:134.221883pt;}
.y71{bottom:137.741867pt;}
.y92{bottom:141.055543pt;}
.y6b{bottom:148.661333pt;}
.y7f{bottom:148.661467pt;}
.y70{bottom:156.408533pt;}
.y93{bottom:157.087293pt;}
.y9b{bottom:163.652057pt;}
.y6a{bottom:164.661333pt;}
.y7e{bottom:164.661467pt;}
.y94{bottom:173.109769pt;}
.y16{bottom:175.052000pt;}
.y69{bottom:180.661333pt;}
.y7d{bottom:180.661467pt;}
.y9a{bottom:181.640255pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y95{bottom:189.132246pt;}
.y9d{bottom:194.380349pt;}
.y68{bottom:196.661333pt;}
.y7c{bottom:196.661467pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y96{bottom:205.163995pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y7b{bottom:212.661467pt;}
.y97{bottom:221.186472pt;}
.y2c{bottom:224.905600pt;}
.y67{bottom:228.661333pt;}
.ya1{bottom:228.661467pt;}
.y9c{bottom:229.030810pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y2b{bottom:236.905600pt;}
.y98{bottom:237.208949pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y66{bottom:244.661333pt;}
.y7a{bottom:244.661467pt;}
.y9f{bottom:249.000667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y2a{bottom:255.519867pt;}
.y65{bottom:260.661333pt;}
.y78{bottom:260.661467pt;}
.y29{bottom:267.519867pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y64{bottom:276.661333pt;}
.y77{bottom:276.661467pt;}
.y28{bottom:279.519867pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y63{bottom:292.661333pt;}
.y76{bottom:292.661467pt;}
.y62{bottom:308.661333pt;}
.y4c{bottom:308.661467pt;}
.yd{bottom:309.452000pt;}
.y61{bottom:324.661333pt;}
.y4b{bottom:324.661467pt;}
.y60{bottom:340.661333pt;}
.y4a{bottom:340.661467pt;}
.yc{bottom:343.809333pt;}
.y5f{bottom:356.661333pt;}
.y49{bottom:356.661467pt;}
.yb{bottom:362.706666pt;}
.y5e{bottom:372.661333pt;}
.y48{bottom:372.661467pt;}
.y5d{bottom:388.661333pt;}
.y47{bottom:388.661467pt;}
.y5c{bottom:404.661333pt;}
.y46{bottom:404.661467pt;}
.y5b{bottom:420.661333pt;}
.y45{bottom:420.661467pt;}
.y5a{bottom:436.661333pt;}
.y44{bottom:436.661467pt;}
.ya{bottom:446.990669pt;}
.y59{bottom:452.661333pt;}
.y43{bottom:452.661467pt;}
.y9{bottom:462.990669pt;}
.y58{bottom:468.661333pt;}
.y84{bottom:468.661467pt;}
.y8{bottom:478.990666pt;}
.y57{bottom:484.661333pt;}
.y42{bottom:484.661467pt;}
.y7{bottom:494.990666pt;}
.y56{bottom:500.661333pt;}
.y41{bottom:500.661467pt;}
.y55{bottom:516.661333pt;}
.y40{bottom:516.661467pt;}
.y54{bottom:532.661333pt;}
.y3f{bottom:532.661467pt;}
.y53{bottom:548.661333pt;}
.y3e{bottom:548.661467pt;}
.y52{bottom:564.661333pt;}
.y3d{bottom:564.661467pt;}
.y11b{bottom:569.997600pt;}
.y138{bottom:578.047333pt;}
.y3c{bottom:580.661467pt;}
.y11a{bottom:581.997600pt;}
.y137{bottom:590.047333pt;}
.y119{bottom:593.997600pt;}
.y51{bottom:596.661333pt;}
.y3b{bottom:596.661467pt;}
.y136{bottom:602.047333pt;}
.y118{bottom:605.997600pt;}
.y3a{bottom:612.661467pt;}
.y135{bottom:614.047333pt;}
.y117{bottom:617.997600pt;}
.ydf{bottom:623.834800pt;}
.y134{bottom:626.047333pt;}
.y50{bottom:628.661333pt;}
.y39{bottom:628.661467pt;}
.y116{bottom:629.997600pt;}
.y133{bottom:638.047333pt;}
.y115{bottom:641.997600pt;}
.yf4{bottom:643.189333pt;}
.y4f{bottom:644.661333pt;}
.y38{bottom:644.661467pt;}
.y6{bottom:645.598667pt;}
.y132{bottom:650.047333pt;}
.y114{bottom:653.997600pt;}
.yf3{bottom:655.189333pt;}
.y4e{bottom:660.661333pt;}
.yf6{bottom:660.661467pt;}
.y131{bottom:662.047333pt;}
.y113{bottom:665.997600pt;}
.yf2{bottom:667.189333pt;}
.y3{bottom:668.977329pt;}
.y130{bottom:674.047333pt;}
.y4d{bottom:676.661333pt;}
.y37{bottom:676.661467pt;}
.y112{bottom:677.997600pt;}
.yf1{bottom:679.189333pt;}
.y75{bottom:684.716667pt;}
.y12f{bottom:686.047333pt;}
.y111{bottom:689.997600pt;}
.yf0{bottom:691.189333pt;}
.y36{bottom:692.661333pt;}
.yde{bottom:692.661467pt;}
.y12e{bottom:698.047333pt;}
.ya0{bottom:698.590133pt;}
.y110{bottom:701.997600pt;}
.y90{bottom:702.573067pt;}
.yef{bottom:703.189333pt;}
.y35{bottom:708.661333pt;}
.ydd{bottom:708.661467pt;}
.y12d{bottom:710.047333pt;}
.y10f{bottom:713.997600pt;}
.yb2{bottom:714.381867pt;}
.yb9{bottom:714.825044pt;}
.yb8{bottom:714.826623pt;}
.yb3{bottom:714.826933pt;}
.ybf{bottom:714.827581pt;}
.ybb{bottom:714.827892pt;}
.yb7{bottom:714.828202pt;}
.yb4{bottom:714.828513pt;}
.ybe{bottom:714.829161pt;}
.yba{bottom:714.829471pt;}
.yb6{bottom:714.829781pt;}
.yc1{bottom:714.830429pt;}
.ybd{bottom:714.830740pt;}
.yb5{bottom:714.831361pt;}
.yc0{bottom:714.832009pt;}
.ybc{bottom:714.832319pt;}
.yc2{bottom:714.967733pt;}
.yee{bottom:715.189333pt;}
.yc3{bottom:715.414133pt;}
.yc4{bottom:715.415713pt;}
.yc5{bottom:715.418561pt;}
.yc7{bottom:715.421409pt;}
.yc6{bottom:715.422988pt;}
.yc9{bottom:715.424257pt;}
.yc8{bottom:715.425836pt;}
.ycf{bottom:715.426794pt;}
.ycb{bottom:715.427105pt;}
.yce{bottom:715.428373pt;}
.yca{bottom:715.428684pt;}
.yd1{bottom:715.429642pt;}
.ycd{bottom:715.429953pt;}
.yd0{bottom:715.431221pt;}
.ycc{bottom:715.431532pt;}
.y85{bottom:716.473733pt;}
.y12c{bottom:722.047333pt;}
.y34{bottom:724.661333pt;}
.ydc{bottom:724.661467pt;}
.y10e{bottom:725.997600pt;}
.yed{bottom:727.189333pt;}
.y12b{bottom:734.047333pt;}
.ya2{bottom:735.935467pt;}
.y10d{bottom:737.997600pt;}
.y86{bottom:738.091755pt;}
.yec{bottom:739.189333pt;}
.y33{bottom:740.661333pt;}
.ydb{bottom:740.661467pt;}
.yaa{bottom:743.812000pt;}
.y12a{bottom:746.047333pt;}
.y10c{bottom:749.997600pt;}
.yab{bottom:753.875049pt;}
.ya3{bottom:753.980572pt;}
.y32{bottom:756.661333pt;}
.yda{bottom:756.661467pt;}
.yeb{bottom:757.191867pt;}
.y129{bottom:758.047333pt;}
.y87{bottom:759.709776pt;}
.y10b{bottom:761.997600pt;}
.yea{bottom:769.191867pt;}
.y128{bottom:770.047333pt;}
.yac{bottom:771.920155pt;}
.ya4{bottom:772.025678pt;}
.y31{bottom:772.661333pt;}
.yd9{bottom:772.661467pt;}
.y10a{bottom:773.997600pt;}
.ye9{bottom:781.191867pt;}
.y88{bottom:781.327797pt;}
.y2{bottom:781.661334pt;}
.y127{bottom:782.047333pt;}
.y109{bottom:785.997600pt;}
.y30{bottom:788.661333pt;}
.yd8{bottom:788.661467pt;}
.yad{bottom:789.955949pt;}
.ya5{bottom:790.061472pt;}
.ye8{bottom:793.191867pt;}
.y126{bottom:794.047333pt;}
.y108{bottom:797.997600pt;}
.y89{bottom:802.945819pt;}
.y2f{bottom:804.661333pt;}
.yd7{bottom:804.661467pt;}
.ye7{bottom:805.191867pt;}
.y125{bottom:806.047333pt;}
.yae{bottom:808.001055pt;}
.ya6{bottom:808.106578pt;}
.y107{bottom:809.997600pt;}
.ye6{bottom:817.191867pt;}
.y124{bottom:818.047333pt;}
.y2e{bottom:820.661333pt;}
.yd6{bottom:820.661467pt;}
.y106{bottom:821.997600pt;}
.y8a{bottom:824.563840pt;}
.yaf{bottom:826.046161pt;}
.ya7{bottom:826.151683pt;}
.ye5{bottom:829.191867pt;}
.y123{bottom:830.047333pt;}
.y105{bottom:833.997600pt;}
.y2d{bottom:836.661333pt;}
.yd5{bottom:836.661467pt;}
.ye4{bottom:841.191867pt;}
.y122{bottom:842.047333pt;}
.ya8{bottom:844.196789pt;}
.y104{bottom:845.997600pt;}
.y8b{bottom:846.181861pt;}
.yd4{bottom:852.661467pt;}
.ye3{bottom:853.191867pt;}
.y121{bottom:854.047333pt;}
.y103{bottom:857.997600pt;}
.y1{bottom:859.312000pt;}
.ya9{bottom:862.241895pt;}
.ye2{bottom:865.191867pt;}
.y120{bottom:866.047333pt;}
.y8c{bottom:867.799883pt;}
.yd3{bottom:868.661467pt;}
.y102{bottom:869.997600pt;}
.yb1{bottom:872.685961pt;}
.y8e{bottom:876.770016pt;}
.ye1{bottom:877.191867pt;}
.y11f{bottom:878.047333pt;}
.y27{bottom:878.215200pt;}
.y101{bottom:881.997600pt;}
.y8f{bottom:883.102930pt;}
.yb0{bottom:884.157360pt;}
.yd2{bottom:884.661467pt;}
.y8d{bottom:885.892642pt;}
.y11e{bottom:890.047333pt;}
.y100{bottom:893.997600pt;}
.ye0{bottom:895.194400pt;}
.yf5{bottom:900.661467pt;}
.y74{bottom:901.994800pt;}
.y11d{bottom:902.047333pt;}
.y26{bottom:903.548533pt;}
.yff{bottom:905.997600pt;}
.y11c{bottom:914.047333pt;}
.y73{bottom:916.661467pt;}
.yfe{bottom:917.997600pt;}
.yfd{bottom:929.997600pt;}
.y25{bottom:932.661467pt;}
.yfc{bottom:941.997600pt;}
.y24{bottom:976.881867pt;}
.y23{bottom:993.343867pt;}
.y22{bottom:1016.692933pt;}
.h19{height:27.290667pt;}
.h7{height:28.560000pt;}
.h18{height:30.477664pt;}
.h1a{height:31.189333pt;}
.h11{height:32.184838pt;}
.h13{height:33.268893pt;}
.h14{height:33.269150pt;}
.h15{height:33.408586pt;}
.h17{height:33.409198pt;}
.hc{height:33.488000pt;}
.h16{height:34.367519pt;}
.h10{height:34.464000pt;}
.hb{height:38.293333pt;}
.h6{height:40.800000pt;}
.hd{height:42.122667pt;}
.h3{height:42.840000pt;}
.ha{height:43.056000pt;}
.hf{height:43.440000pt;}
.h2{height:48.960000pt;}
.h12{height:68.675341pt;}
.h5{height:69.360000pt;}
.he{height:72.400000pt;}
.h4{height:105.826671pt;}
.h9{height:1046.666667pt;}
.h8{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.xe{left:56.692933pt;}
.xd{left:59.811067pt;}
.x11{left:63.369359pt;}
.x14{left:64.723849pt;}
.x10{left:68.302932pt;}
.x4b{left:71.811067pt;}
.xa{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2b{left:95.386573pt;}
.x2a{left:100.563600pt;}
.xb{left:102.047200pt;}
.x12{left:106.417029pt;}
.x31{left:109.196879pt;}
.x30{left:127.370667pt;}
.x32{left:145.538447pt;}
.x33{left:163.712235pt;}
.x2c{left:173.824400pt;}
.x4{left:180.874667pt;}
.x34{left:181.886022pt;}
.x35{left:200.059809pt;}
.x36{left:218.233596pt;}
.x37{left:236.401377pt;}
.x38{left:254.575164pt;}
.x39{left:272.742945pt;}
.x3a{left:290.916732pt;}
.x15{left:306.684267pt;}
.x3b{left:309.090519pt;}
.x3c{left:327.264307pt;}
.x3d{left:345.432087pt;}
.x13{left:351.992369pt;}
.x3e{left:363.605875pt;}
.x2f{left:381.953200pt;}
.xf{left:396.850400pt;}
.x16{left:400.117067pt;}
.x3{left:404.408000pt;}
.x17{left:407.877954pt;}
.x4c{left:411.968533pt;}
.x2e{left:417.101705pt;}
.x1d{left:418.285200pt;}
.x2d{left:422.278732pt;}
.xc{left:427.086533pt;}
.x40{left:435.728346pt;}
.x1e{left:439.816855pt;}
.x29{left:442.204667pt;}
.x1c{left:454.016753pt;}
.x1a{left:459.709925pt;}
.x1f{left:461.348511pt;}
.x41{left:472.069914pt;}
.x20{left:482.880166pt;}
.x42{left:490.237695pt;}
.x18{left:499.228325pt;}
.x21{left:504.411822pt;}
.x43{left:508.411482pt;}
.x22{left:525.943477pt;}
.x19{left:542.724528pt;}
.x44{left:544.753050pt;}
.x4d{left:546.141733pt;}
.x23{left:547.475133pt;}
.x45{left:562.920831pt;}
.x1b{left:566.350263pt;}
.x24{left:569.006788pt;}
.x7{left:581.594800pt;}
.x25{left:590.538444pt;}
.x5{left:593.777467pt;}
.x46{left:599.262399pt;}
.x26{left:612.070099pt;}
.x9{left:616.958800pt;}
.x27{left:633.601755pt;}
.x47{left:635.609973pt;}
.x48{left:653.783761pt;}
.x8{left:655.130800pt;}
.x49{left:671.951541pt;}
.x28{left:676.665066pt;}
.x4a{left:690.125329pt;}
.x3f{left:708.484667pt;}
}




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