
    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_ca3c06e004812cb186763763.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_d0ff95ced81e5bf2d2b704a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_984d1948e5380dc5a6ea4fad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_34d18aa83b45ae618bcacec2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_e1edf78fb883983f02b91217.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_00227c1c48f62abb9e5b7b5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_94d67c4e9704a28e561334f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.162000;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_ba91decb7aa4c4dd48f4deeb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_1c6518486563c4af4d8b79dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_984d1948e5380dc5a6ea4fad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ce97db667780ed91408de217.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_f1b3198b1f3c9c4d8afe40ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;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_0c97bd93e53bce9d315d61c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_d0ff95ced81e5bf2d2b704a3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_984d1948e5380dc5a6ea4fad.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_34d18aa83b45ae618bcacec2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_d0ff95ced81e5bf2d2b704a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.919000;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_984d1948e5380dc5a6ea4fad.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_34d18aa83b45ae618bcacec2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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_ddc041d99674ecdd46749c55.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.940000;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_d0ff95ced81e5bf2d2b704a3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919000;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_984d1948e5380dc5a6ea4fad.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_34d18aa83b45ae618bcacec2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912000;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_7cf72062d751b74703780330.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.m2{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);}
.v5{vertical-align:-21.600000px;}
.v4{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.029400px;}
.v1{vertical-align:29.700000px;}
.v3{vertical-align:54.000000px;}
.ls8{letter-spacing:-1.776000px;}
.ls9{letter-spacing:-0.810000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000228px;}
.ls3{letter-spacing:0.000552px;}
.lsf{letter-spacing:0.004200px;}
.lsb{letter-spacing:0.198600px;}
.lsd{letter-spacing:0.198900px;}
.ls5{letter-spacing:0.300000px;}
.lse{letter-spacing:0.397402px;}
.ls12{letter-spacing:0.449550px;}
.lsc{letter-spacing:0.599400px;}
.ls0{letter-spacing:3.780000px;}
.ls4{letter-spacing:17.200200px;}
.ls1{letter-spacing:21.567276px;}
.ls6{letter-spacing:24.492000px;}
.ls11{letter-spacing:421.956000px;}
.ls10{letter-spacing:469.638000px;}
.lsa{letter-spacing:1592.687400px;}
.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;}
}
.ws1{word-spacing:-20.460000px;}
.ws2e{word-spacing:-16.199400px;}
.ws2c{word-spacing:-15.900000px;}
.ws4{word-spacing:-15.600000px;}
.ws6{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.400000px;}
.ws5{word-spacing:-12.960000px;}
.ws106{word-spacing:-12.374550px;}
.ws0{word-spacing:-12.164724px;}
.ws9{word-spacing:-11.520480px;}
.ws2f{word-spacing:-10.740202px;}
.ws2d{word-spacing:-10.541700px;}
.ws3{word-spacing:-10.342800px;}
.ws9c{word-spacing:-8.751996px;}
.wsc3{word-spacing:-8.262000px;}
.wsdd{word-spacing:-7.637760px;}
.wsa2{word-spacing:-5.100600px;}
.wseb{word-spacing:-5.040000px;}
.wsea{word-spacing:-4.560000px;}
.wse8{word-spacing:-4.140000px;}
.wsdb{word-spacing:-4.079400px;}
.ws103{word-spacing:-3.959400px;}
.ws47{word-spacing:-3.900000px;}
.ws82{word-spacing:-3.780000px;}
.ws101{word-spacing:-3.480000px;}
.wsaf{word-spacing:-3.360000px;}
.ws11{word-spacing:-3.120000px;}
.ws9a{word-spacing:-2.880000px;}
.wsd7{word-spacing:-2.820000px;}
.ws99{word-spacing:-2.580000px;}
.wsd8{word-spacing:-2.520600px;}
.ws12{word-spacing:-2.399400px;}
.wsa1{word-spacing:-2.160000px;}
.wsf5{word-spacing:-2.040000px;}
.ws104{word-spacing:-1.776000px;}
.wsbb{word-spacing:-1.560000px;}
.ws7a{word-spacing:-1.499400px;}
.ws41{word-spacing:-1.440000px;}
.ws85{word-spacing:-1.320000px;}
.wsb7{word-spacing:-1.260000px;}
.ws44{word-spacing:-1.140000px;}
.ws73{word-spacing:-1.080600px;}
.wsf8{word-spacing:-0.960600px;}
.ws25{word-spacing:-0.918000px;}
.ws9b{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.840600px;}
.ws98{word-spacing:-0.719400px;}
.wsa4{word-spacing:-0.660000px;}
.wsfe{word-spacing:-0.599400px;}
.ws3a{word-spacing:-0.480000px;}
.ws107{word-spacing:-0.449550px;}
.ws27{word-spacing:-0.378000px;}
.ws15{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.300000px;}
.ws23{word-spacing:-0.270000px;}
.wse3{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.238680px;}
.ws3e{word-spacing:-0.198900px;}
.wscd{word-spacing:-0.120000px;}
.ws75{word-spacing:-0.060600px;}
.ws7{word-spacing:0.000000px;}
.ws7d{word-spacing:0.060600px;}
.wsc5{word-spacing:0.120000px;}
.ws6c{word-spacing:0.180600px;}
.wsa3{word-spacing:0.240000px;}
.ws46{word-spacing:0.360000px;}
.wsa0{word-spacing:0.420000px;}
.ws57{word-spacing:0.480000px;}
.ws14{word-spacing:0.540000px;}
.wsb2{word-spacing:0.599400px;}
.wsf4{word-spacing:0.660000px;}
.wse9{word-spacing:0.780000px;}
.wsa{word-spacing:0.810000px;}
.wsec{word-spacing:0.840600px;}
.ws90{word-spacing:0.900000px;}
.ws17{word-spacing:0.960600px;}
.wsae{word-spacing:1.020000px;}
.ws36{word-spacing:1.140000px;}
.ws95{word-spacing:1.260000px;}
.ws7e{word-spacing:1.320000px;}
.ws5c{word-spacing:1.379400px;}
.ws84{word-spacing:1.440000px;}
.ws19{word-spacing:1.499400px;}
.wsb3{word-spacing:1.560000px;}
.ws6d{word-spacing:1.740600px;}
.ws8{word-spacing:1.776000px;}
.wsf7{word-spacing:1.800000px;}
.ws26{word-spacing:1.836000px;}
.ws4c{word-spacing:1.860600px;}
.ws68{word-spacing:1.920000px;}
.wsfb{word-spacing:2.040000px;}
.ws20{word-spacing:2.100000px;}
.ws62{word-spacing:2.160000px;}
.wsa8{word-spacing:2.187502px;}
.ws53{word-spacing:2.279400px;}
.ws92{word-spacing:2.340000px;}
.ws3d{word-spacing:2.460000px;}
.wsf6{word-spacing:2.520600px;}
.ws87{word-spacing:2.640600px;}
.ws93{word-spacing:2.760600px;}
.ws59{word-spacing:2.820000px;}
.ws8c{word-spacing:3.000000px;}
.ws9f{word-spacing:3.059400px;}
.ws65{word-spacing:3.120000px;}
.ws72{word-spacing:3.240000px;}
.wsa7{word-spacing:3.299400px;}
.ws96{word-spacing:3.360000px;}
.wsdf{word-spacing:3.480000px;}
.ws54{word-spacing:3.600000px;}
.ws13{word-spacing:3.660000px;}
.ws8e{word-spacing:3.720000px;}
.ws42{word-spacing:3.780000px;}
.ws49{word-spacing:3.840000px;}
.ws40{word-spacing:3.959400px;}
.wsf1{word-spacing:4.020000px;}
.wscb{word-spacing:4.079400px;}
.wsde{word-spacing:4.140000px;}
.wsdc{word-spacing:4.200600px;}
.ws64{word-spacing:4.260000px;}
.ws37{word-spacing:4.320600px;}
.ws43{word-spacing:4.440600px;}
.wsf9{word-spacing:4.500000px;}
.wsca{word-spacing:4.560000px;}
.ws97{word-spacing:4.680000px;}
.wse7{word-spacing:4.739400px;}
.ws102{word-spacing:4.979400px;}
.ws5b{word-spacing:5.160000px;}
.wsf{word-spacing:5.220600px;}
.ws94{word-spacing:5.280000px;}
.ws50{word-spacing:5.400000px;}
.wsfd{word-spacing:5.460000px;}
.ws61{word-spacing:5.940000px;}
.ws10{word-spacing:6.060000px;}
.wse2{word-spacing:6.325020px;}
.ws6f{word-spacing:6.539400px;}
.wsaa{word-spacing:6.600000px;}
.wsb6{word-spacing:6.659400px;}
.wsd0{word-spacing:6.720000px;}
.ws24{word-spacing:6.912540px;}
.ws70{word-spacing:6.960000px;}
.ws3c{word-spacing:7.020000px;}
.wsd9{word-spacing:7.080000px;}
.wsa5{word-spacing:7.140000px;}
.wsd1{word-spacing:7.260000px;}
.wsa6{word-spacing:7.439400px;}
.ws28{word-spacing:7.560000px;}
.wsb9{word-spacing:7.680600px;}
.wsba{word-spacing:7.740000px;}
.wsbd{word-spacing:7.800000px;}
.ws4a{word-spacing:7.860000px;}
.wsb1{word-spacing:7.980000px;}
.ws6b{word-spacing:8.099400px;}
.ws91{word-spacing:8.160000px;}
.ws4f{word-spacing:8.400000px;}
.wsbc{word-spacing:8.460600px;}
.ws7f{word-spacing:8.580600px;}
.ws66{word-spacing:8.640000px;}
.ws74{word-spacing:8.760000px;}
.ws32{word-spacing:8.879400px;}
.ws3b{word-spacing:8.940000px;}
.wscc{word-spacing:8.999400px;}
.wsb8{word-spacing:9.060000px;}
.wsf2{word-spacing:9.119400px;}
.ws4b{word-spacing:9.180000px;}
.ws69{word-spacing:9.240600px;}
.ws1d{word-spacing:9.300000px;}
.wsc9{word-spacing:9.360600px;}
.wsa9{word-spacing:9.420000px;}
.wsab{word-spacing:9.480000px;}
.ws7b{word-spacing:9.540000px;}
.ws3f{word-spacing:9.720000px;}
.wse6{word-spacing:9.960000px;}
.ws48{word-spacing:10.080000px;}
.ws58{word-spacing:10.140600px;}
.ws77{word-spacing:10.200000px;}
.ws81{word-spacing:10.320000px;}
.wse5{word-spacing:10.500000px;}
.wsb5{word-spacing:10.679400px;}
.ws2a{word-spacing:10.746540px;}
.wsff{word-spacing:10.920600px;}
.ws45{word-spacing:11.040600px;}
.ws34{word-spacing:11.280000px;}
.ws67{word-spacing:11.400000px;}
.ws56{word-spacing:11.459400px;}
.wsee{word-spacing:11.640000px;}
.wsd6{word-spacing:11.700600px;}
.ws63{word-spacing:11.760000px;}
.ws4e{word-spacing:11.820600px;}
.wsbe{word-spacing:12.120000px;}
.wse{word-spacing:12.180000px;}
.wsd4{word-spacing:12.420000px;}
.ws8b{word-spacing:12.600600px;}
.ws105{word-spacing:12.645450px;}
.wsc0{word-spacing:12.720600px;}
.ws80{word-spacing:12.840000px;}
.wsf3{word-spacing:13.080000px;}
.ws30{word-spacing:13.139400px;}
.wsad{word-spacing:13.440000px;}
.wsb4{word-spacing:13.620600px;}
.wsce{word-spacing:13.680000px;}
.ws35{word-spacing:13.919400px;}
.ws71{word-spacing:13.980000px;}
.wsfa{word-spacing:14.100000px;}
.ws39{word-spacing:14.159400px;}
.wse4{word-spacing:14.280600px;}
.ws78{word-spacing:14.400600px;}
.wsed{word-spacing:14.460000px;}
.wsf0{word-spacing:14.520000px;}
.ws5a{word-spacing:14.640000px;}
.ws38{word-spacing:14.700000px;}
.ws51{word-spacing:15.000000px;}
.ws31{word-spacing:15.120000px;}
.ws100{word-spacing:15.480000px;}
.ws86{word-spacing:15.660000px;}
.wsc8{word-spacing:15.900000px;}
.wsb0{word-spacing:15.960600px;}
.ws60{word-spacing:16.020000px;}
.ws21{word-spacing:16.200000px;}
.ws8d{word-spacing:16.320000px;}
.ws76{word-spacing:16.440000px;}
.ws88{word-spacing:16.920000px;}
.wsb{word-spacing:17.160000px;}
.ws55{word-spacing:17.279400px;}
.ws29{word-spacing:17.334000px;}
.wscf{word-spacing:17.520600px;}
.ws18{word-spacing:17.580000px;}
.ws33{word-spacing:17.700000px;}
.ws1f{word-spacing:17.820000px;}
.ws83{word-spacing:17.940000px;}
.wsfc{word-spacing:18.059400px;}
.ws4d{word-spacing:18.420600px;}
.wsc7{word-spacing:18.600000px;}
.wse1{word-spacing:18.780000px;}
.ws79{word-spacing:19.079400px;}
.wsd2{word-spacing:19.260000px;}
.wsc6{word-spacing:19.560000px;}
.ws52{word-spacing:19.859400px;}
.wsd5{word-spacing:20.160000px;}
.ws6a{word-spacing:21.000600px;}
.ws8a{word-spacing:21.480000px;}
.ws6e{word-spacing:21.960000px;}
.ws2b{word-spacing:22.194000px;}
.ws22{word-spacing:23.058000px;}
.wse0{word-spacing:23.400000px;}
.wsbf{word-spacing:23.760000px;}
.ws7c{word-spacing:23.820000px;}
.wsac{word-spacing:25.080000px;}
.wsc{word-spacing:25.740000px;}
.wsda{word-spacing:26.579400px;}
.wsef{word-spacing:27.960000px;}
.ws1e{word-spacing:28.860000px;}
.wsd3{word-spacing:28.919400px;}
.ws8f{word-spacing:30.420000px;}
.ws89{word-spacing:31.320000px;}
.wsd{word-spacing:31.440000px;}
.ws1c{word-spacing:33.360000px;}
.wsc4{word-spacing:38.988000px;}
.ws5e{word-spacing:227.502000px;}
.ws5f{word-spacing:257.526000px;}
.ws5d{word-spacing:285.606000px;}
.wsc2{word-spacing:387.018000px;}
.ws9e{word-spacing:400.464000px;}
.wsc1{word-spacing:406.674000px;}
.ws9d{word-spacing:410.940000px;}
._b{margin-left:-2971.508760px;}
._a{margin-left:-1983.796920px;}
._8{margin-left:-59.040000px;}
._4{margin-left:-47.970000px;}
._d{margin-left:-19.764000px;}
._49{margin-left:-17.643600px;}
._4a{margin-left:-15.720000px;}
._1c{margin-left:-14.040000px;}
._50{margin-left:-12.959550px;}
._6{margin-left:-11.520000px;}
._4e{margin-left:-9.045000px;}
._2{margin-left:-7.384716px;}
._e{margin-left:-5.994000px;}
._1{margin-left:-4.903848px;}
._3{margin-left:-3.552000px;}
._0{margin-left:-1.780800px;}
._5{width:1.334400px;}
._3a{width:2.423448px;}
._26{width:8.580000px;}
._4c{width:11.520000px;}
._4b{width:12.960000px;}
._7{width:14.040000px;}
._51{width:18.856800px;}
._4d{width:20.610000px;}
._4f{width:32.894100px;}
._c{width:38.016000px;}
._11{width:54.000000px;}
._21{width:111.618000px;}
._1a{width:195.750000px;}
._23{width:209.518800px;}
._10{width:212.544000px;}
._42{width:220.320000px;}
._20{width:222.750000px;}
._19{width:242.514000px;}
._9{width:255.256380px;}
._24{width:272.538000px;}
._1f{width:275.670000px;}
._22{width:276.696000px;}
._3c{width:303.264000px;}
._2a{width:312.444000px;}
._2c{width:322.920000px;}
._1e{width:329.724000px;}
._1d{width:333.774000px;}
._2e{width:342.468000px;}
._2b{width:352.890000px;}
._14{width:354.564000px;}
._15{width:355.644000px;}
._33{width:372.492000px;}
._43{width:374.922000px;}
._34{width:382.968000px;}
._3e{width:391.662000px;}
._30{width:394.092000px;}
._40{width:400.032000px;}
._28{width:415.584000px;}
._37{width:425.952000px;}
._f{width:446.634000px;}
._3d{width:450.846000px;}
._36{width:455.922000px;}
._16{width:466.614000px;}
._17{width:467.694000px;}
._39{width:476.982000px;}
._1b{width:498.744000px;}
._46{width:507.978000px;}
._25{width:511.758000px;}
._48{width:518.722800px;}
._18{width:532.710000px;}
._45{width:560.898000px;}
._47{width:615.924000px;}
._2f{width:617.058000px;}
._2d{width:621.108000px;}
._12{width:624.228000px;}
._38{width:647.028000px;}
._32{width:651.078000px;}
._29{width:670.086000px;}
._13{width:700.704000px;}
._44{width:730.944000px;}
._41{width:734.994000px;}
._3b{width:752.760000px;}
._3f{width:783.972000px;}
._31{width:849.570000px;}
._35{width:926.046000px;}
._27{width:943.056000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs8{font-size:31.482000px;}
.fs9{font-size:31.824000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fsa{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y1ba{bottom:81.571350px;}
.y108{bottom:81.601200px;}
.y69{bottom:81.604650px;}
.y175{bottom:81.607500px;}
.y120{bottom:81.610800px;}
.y24{bottom:81.637800px;}
.y18e{bottom:81.967500px;}
.y99{bottom:81.997050px;}
.yb5{bottom:82.072050px;}
.y53{bottom:90.837300px;}
.y138{bottom:90.931650px;}
.y1d7{bottom:95.971350px;}
.y23{bottom:96.637800px;}
.y1b9{bottom:99.571350px;}
.y107{bottom:99.601200px;}
.y68{bottom:99.604650px;}
.y174{bottom:99.607500px;}
.y11f{bottom:99.610800px;}
.y98{bottom:100.447050px;}
.y18d{bottom:100.537500px;}
.yb4{bottom:101.107050px;}
.y52{bottom:108.837300px;}
.y1d6{bottom:110.371350px;}
.y137{bottom:111.073650px;}
.y22{bottom:111.637800px;}
.y1b8{bottom:117.571350px;}
.y106{bottom:117.601200px;}
.y67{bottom:117.604650px;}
.y173{bottom:117.607500px;}
.y11e{bottom:117.610800px;}
.y97{bottom:118.897050px;}
.y18c{bottom:119.107500px;}
.yb3{bottom:120.142050px;}
.y1d5{bottom:124.771350px;}
.y51{bottom:126.837300px;}
.y136{bottom:132.714150px;}
.y1b7{bottom:135.571350px;}
.y105{bottom:135.601200px;}
.y66{bottom:135.604650px;}
.y172{bottom:135.607500px;}
.y11d{bottom:135.610800px;}
.y96{bottom:137.347050px;}
.y18b{bottom:137.677500px;}
.y1d4{bottom:139.171350px;}
.yb2{bottom:139.177050px;}
.y21{bottom:140.137800px;}
.y1b6{bottom:153.571350px;}
.y104{bottom:153.601200px;}
.y65{bottom:153.604650px;}
.y171{bottom:153.607500px;}
.y11c{bottom:153.610800px;}
.y135{bottom:154.354650px;}
.y20{bottom:155.137800px;}
.y95{bottom:155.797050px;}
.y18a{bottom:156.247500px;}
.y50{bottom:160.948800px;}
.y1d3{bottom:167.971350px;}
.y1b5{bottom:171.571350px;}
.y103{bottom:171.601200px;}
.y64{bottom:171.604650px;}
.y170{bottom:171.607500px;}
.y11b{bottom:171.610800px;}
.y2a{bottom:174.205650px;}
.y94{bottom:174.247050px;}
.y189{bottom:174.817500px;}
.y134{bottom:175.995150px;}
.y4f{bottom:177.445800px;}
.yb1{bottom:178.762050px;}
.y1d2{bottom:188.371350px;}
.y29{bottom:188.605650px;}
.y1b4{bottom:189.571350px;}
.y102{bottom:189.601200px;}
.y63{bottom:189.604650px;}
.y16f{bottom:189.607500px;}
.y11a{bottom:189.610800px;}
.y93{bottom:192.697050px;}
.y188{bottom:193.387500px;}
.y4e{bottom:193.942800px;}
.y133{bottom:197.635650px;}
.yb0{bottom:197.797050px;}
.y1d1{bottom:202.771350px;}
.y28{bottom:203.005650px;}
.y1b3{bottom:207.571350px;}
.y101{bottom:207.601200px;}
.y62{bottom:207.604650px;}
.y16e{bottom:207.607500px;}
.y119{bottom:207.610800px;}
.y4d{bottom:210.439800px;}
.y92{bottom:211.147050px;}
.y187{bottom:211.957500px;}
.yaf{bottom:216.832050px;}
.y1d0{bottom:217.171350px;}
.y27{bottom:217.405650px;}
.y132{bottom:219.276150px;}
.y1b2{bottom:225.571350px;}
.y100{bottom:225.601200px;}
.y61{bottom:225.604650px;}
.y118{bottom:225.610800px;}
.y4c{bottom:226.936800px;}
.y91{bottom:229.597050px;}
.y186{bottom:230.527500px;}
.y1cf{bottom:231.571350px;}
.y26{bottom:231.805650px;}
.yae{bottom:235.867050px;}
.y131{bottom:240.916650px;}
.y4b{bottom:243.433800px;}
.y1b1{bottom:243.571350px;}
.yff{bottom:243.601200px;}
.y60{bottom:243.604650px;}
.y117{bottom:243.610800px;}
.y1ce{bottom:245.971350px;}
.y25{bottom:246.205650px;}
.y90{bottom:248.047050px;}
.y185{bottom:249.097500px;}
.yad{bottom:254.902050px;}
.y16d{bottom:258.217500px;}
.y4a{bottom:259.930800px;}
.y1cd{bottom:260.371350px;}
.y1b0{bottom:261.571350px;}
.yfe{bottom:261.601200px;}
.y5f{bottom:261.604650px;}
.y116{bottom:261.610800px;}
.y130{bottom:262.557150px;}
.y8f{bottom:266.497050px;}
.y184{bottom:267.667500px;}
.yac{bottom:273.937050px;}
.y16c{bottom:276.217500px;}
.y49{bottom:276.427800px;}
.y1af{bottom:279.571350px;}
.yfd{bottom:279.601200px;}
.y5e{bottom:279.604650px;}
.y115{bottom:279.610800px;}
.y1cc{bottom:280.771350px;}
.y12f{bottom:284.197650px;}
.y8e{bottom:284.947050px;}
.y183{bottom:286.237500px;}
.y48{bottom:292.924800px;}
.yab{bottom:292.972050px;}
.y16b{bottom:294.217500px;}
.y1cb{bottom:295.171350px;}
.y1ae{bottom:297.571350px;}
.yfc{bottom:297.601200px;}
.y5d{bottom:297.604650px;}
.y114{bottom:297.610800px;}
.y8d{bottom:303.397050px;}
.y182{bottom:304.807500px;}
.y12e{bottom:305.838150px;}
.y20f{bottom:306.659850px;}
.y24d{bottom:307.672350px;}
.y47{bottom:309.421800px;}
.yaa{bottom:312.007050px;}
.y16a{bottom:312.217500px;}
.y1ad{bottom:315.571350px;}
.yfb{bottom:315.601200px;}
.y5c{bottom:315.604650px;}
.y113{bottom:315.610800px;}
.y20e{bottom:319.406100px;}
.y24c{bottom:320.823600px;}
.y8c{bottom:321.847050px;}
.y181{bottom:323.377500px;}
.y46{bottom:325.918800px;}
.y12d{bottom:327.478650px;}
.y169{bottom:330.217500px;}
.ya9{bottom:331.042050px;}
.y20d{bottom:332.152350px;}
.y1ac{bottom:333.571350px;}
.yfa{bottom:333.601200px;}
.y5b{bottom:333.604650px;}
.y112{bottom:333.616200px;}
.y24b{bottom:333.974850px;}
.y8b{bottom:340.297050px;}
.y180{bottom:341.947500px;}
.y45{bottom:342.415800px;}
.y20c{bottom:344.898600px;}
.y24a{bottom:347.126100px;}
.y168{bottom:348.217500px;}
.y1ca{bottom:348.571350px;}
.y12c{bottom:349.119150px;}
.ya8{bottom:350.077050px;}
.y1ab{bottom:351.571350px;}
.yf9{bottom:351.601200px;}
.y5a{bottom:351.604650px;}
.y111{bottom:351.616200px;}
.y20b{bottom:357.644850px;}
.y8a{bottom:358.747050px;}
.y44{bottom:358.912800px;}
.y249{bottom:360.277350px;}
.y17f{bottom:360.517500px;}
.y167{bottom:366.217500px;}
.y1c9{bottom:368.971350px;}
.ya7{bottom:369.112050px;}
.y1aa{bottom:369.571350px;}
.yf8{bottom:369.601200px;}
.y59{bottom:369.604650px;}
.y110{bottom:369.616200px;}
.y20a{bottom:370.391100px;}
.y12b{bottom:370.759650px;}
.y248{bottom:373.428600px;}
.y43{bottom:375.409800px;}
.y89{bottom:377.197050px;}
.y1c8{bottom:378.571350px;}
.y17e{bottom:379.087500px;}
.y209{bottom:383.137350px;}
.y166{bottom:384.217500px;}
.y247{bottom:386.579850px;}
.y1a9{bottom:387.571350px;}
.yf7{bottom:387.601200px;}
.y58{bottom:387.604650px;}
.y10f{bottom:387.616200px;}
.ya6{bottom:388.147050px;}
.y42{bottom:391.906800px;}
.y12a{bottom:392.400150px;}
.y88{bottom:395.647050px;}
.y208{bottom:395.883600px;}
.y17d{bottom:397.657500px;}
.y1c7{bottom:398.971350px;}
.y246{bottom:399.731100px;}
.y165{bottom:402.217500px;}
.y1a8{bottom:405.571350px;}
.yf6{bottom:405.601200px;}
.y57{bottom:405.604650px;}
.y10e{bottom:405.616200px;}
.ya5{bottom:407.182050px;}
.y41{bottom:408.403800px;}
.y1c6{bottom:408.571350px;}
.y207{bottom:408.629850px;}
.y245{bottom:412.882350px;}
.y129{bottom:414.040650px;}
.y87{bottom:414.097050px;}
.y17c{bottom:416.227500px;}
.y164{bottom:420.217500px;}
.y206{bottom:421.376100px;}
.y1a7{bottom:423.571350px;}
.yf5{bottom:423.601200px;}
.y56{bottom:423.604650px;}
.y10d{bottom:423.616200px;}
.y40{bottom:424.900800px;}
.y244{bottom:426.033600px;}
.ya4{bottom:426.217050px;}
.y1c5{bottom:428.971350px;}
.y86{bottom:432.547050px;}
.y205{bottom:434.122350px;}
.y17b{bottom:434.797500px;}
.y128{bottom:435.681150px;}
.y163{bottom:438.217500px;}
.y1c4{bottom:438.571350px;}
.y243{bottom:439.184850px;}
.y3f{bottom:441.397800px;}
.y1a6{bottom:441.571350px;}
.yf4{bottom:441.601200px;}
.y55{bottom:441.604650px;}
.y10c{bottom:441.616200px;}
.ya3{bottom:445.252050px;}
.y204{bottom:446.868600px;}
.y85{bottom:450.997050px;}
.y242{bottom:452.336100px;}
.y17a{bottom:453.367500px;}
.y127{bottom:455.823150px;}
.y162{bottom:456.217500px;}
.y3e{bottom:457.894800px;}
.y1c3{bottom:458.971350px;}
.y1a5{bottom:459.571350px;}
.y54{bottom:459.597300px;}
.yf3{bottom:459.601200px;}
.y203{bottom:459.614850px;}
.ya2{bottom:464.287050px;}
.y241{bottom:465.487350px;}
.y1f{bottom:465.934650px;}
.y1c2{bottom:468.571350px;}
.y84{bottom:469.447050px;}
.y179{bottom:471.937500px;}
.y202{bottom:472.361100px;}
.y10b{bottom:473.116200px;}
.y161{bottom:474.217500px;}
.y3d{bottom:474.391800px;}
.y1a4{bottom:477.571350px;}
.yf2{bottom:477.601200px;}
.y240{bottom:478.638600px;}
.y123{bottom:480.460650px;}
.y1e{bottom:480.934650px;}
.ya1{bottom:483.322050px;}
.y201{bottom:485.107350px;}
.y83{bottom:487.897050px;}
.y1c1{bottom:488.971350px;}
.y178{bottom:490.507500px;}
.y3c{bottom:490.888800px;}
.y10a{bottom:491.116200px;}
.y23f{bottom:491.789850px;}
.y160{bottom:492.217500px;}
.y1a3{bottom:495.571350px;}
.yf1{bottom:495.601200px;}
.y1d{bottom:495.934650px;}
.y126{bottom:496.660650px;}
.y200{bottom:497.853600px;}
.ya0{bottom:502.357050px;}
.y1c0{bottom:503.971350px;}
.y23e{bottom:504.941100px;}
.y82{bottom:506.347050px;}
.y3b{bottom:507.385800px;}
.y177{bottom:509.077500px;}
.y109{bottom:509.116200px;}
.y15f{bottom:510.217500px;}
.y1ff{bottom:510.599850px;}
.y125{bottom:512.860650px;}
.y1a2{bottom:513.571350px;}
.yf0{bottom:513.601350px;}
.y78{bottom:516.115500px;}
.y23d{bottom:518.092350px;}
.y9f{bottom:521.392050px;}
.y1fe{bottom:523.346100px;}
.y3a{bottom:523.882800px;}
.y1c{bottom:524.434650px;}
.y81{bottom:524.797050px;}
.y176{bottom:527.647500px;}
.y15e{bottom:528.217500px;}
.y124{bottom:529.060650px;}
.y23c{bottom:531.243600px;}
.y1a1{bottom:531.571350px;}
.yef{bottom:531.601350px;}
.y77{bottom:532.612500px;}
.y1bf{bottom:533.971350px;}
.y1fd{bottom:536.092350px;}
.y1b{bottom:539.434650px;}
.y39{bottom:540.379800px;}
.y9e{bottom:540.427050px;}
.y80{bottom:543.247050px;}
.y23b{bottom:544.394850px;}
.y15d{bottom:546.217500px;}
.y1fc{bottom:548.838600px;}
.y1be{bottom:548.971350px;}
.y76{bottom:549.109500px;}
.y1a0{bottom:549.571350px;}
.yee{bottom:549.601350px;}
.y122{bottom:551.077500px;}
.y1a{bottom:554.434650px;}
.y38{bottom:556.876800px;}
.y23a{bottom:557.546100px;}
.y1bd{bottom:558.571350px;}
.ycf{bottom:558.775800px;}
.y9d{bottom:559.462050px;}
.y1fb{bottom:561.584850px;}
.y7f{bottom:561.697050px;}
.y75{bottom:565.618500px;}
.y19f{bottom:567.571350px;}
.y121{bottom:567.574500px;}
.yed{bottom:567.601350px;}
.y19{bottom:569.434650px;}
.y239{bottom:570.697350px;}
.y37{bottom:573.373800px;}
.y1fa{bottom:574.331100px;}
.y9c{bottom:578.497050px;}
.y1bc{bottom:578.971350px;}
.y7e{bottom:580.147050px;}
.y74{bottom:582.115500px;}
.y238{bottom:583.848600px;}
.y18{bottom:584.434650px;}
.yce{bottom:585.309150px;}
.y19e{bottom:585.571350px;}
.yec{bottom:585.601350px;}
.y1f9{bottom:587.077350px;}
.y1bb{bottom:588.571350px;}
.y36{bottom:589.870800px;}
.y15c{bottom:593.692350px;}
.y237{bottom:596.999850px;}
.y9b{bottom:597.532050px;}
.y7d{bottom:598.597050px;}
.y73{bottom:598.612500px;}
.y17{bottom:599.434650px;}
.y1f8{bottom:599.823600px;}
.y19d{bottom:603.571350px;}
.yeb{bottom:603.601350px;}
.ycd{bottom:605.451150px;}
.y35{bottom:606.367800px;}
.y15b{bottom:608.692350px;}
.y236{bottom:610.151100px;}
.y1f7{bottom:612.569850px;}
.y16{bottom:614.434650px;}
.y72{bottom:615.109500px;}
.y9a{bottom:616.567050px;}
.y7c{bottom:617.047050px;}
.y19c{bottom:621.571350px;}
.yea{bottom:621.601350px;}
.y34{bottom:622.864800px;}
.y235{bottom:623.302350px;}
.y15a{bottom:623.692350px;}
.y1f6{bottom:625.316100px;}
.y153{bottom:626.071350px;}
.ycc{bottom:627.091650px;}
.y71{bottom:631.612500px;}
.y234{bottom:636.453600px;}
.y1f5{bottom:638.062350px;}
.y15{bottom:638.434650px;}
.y33{bottom:639.361800px;}
.y19b{bottom:639.571350px;}
.ye9{bottom:639.601350px;}
.y152{bottom:644.071350px;}
.y70{bottom:648.109500px;}
.ycb{bottom:648.732150px;}
.y233{bottom:649.604850px;}
.y159{bottom:650.230650px;}
.y1f4{bottom:650.808600px;}
.y14{bottom:653.434650px;}
.y32{bottom:655.858800px;}
.y19a{bottom:657.571350px;}
.ye8{bottom:657.601350px;}
.y151{bottom:662.071350px;}
.y232{bottom:662.756100px;}
.y1f3{bottom:663.554850px;}
.y6f{bottom:664.621500px;}
.y13{bottom:668.434650px;}
.yca{bottom:670.372650px;}
.y7b{bottom:670.461900px;}
.y31{bottom:672.355800px;}
.y199{bottom:675.571350px;}
.ye7{bottom:675.601350px;}
.y231{bottom:675.907350px;}
.y1f2{bottom:676.301100px;}
.y150{bottom:680.071350px;}
.y6e{bottom:681.118500px;}
.y12{bottom:683.434650px;}
.y30{bottom:688.852800px;}
.y1f1{bottom:689.047350px;}
.y230{bottom:689.058600px;}
.yc9{bottom:692.013150px;}
.y198{bottom:693.571350px;}
.ye6{bottom:693.601350px;}
.y6d{bottom:697.615500px;}
.y14f{bottom:698.071350px;}
.y11{bottom:698.434650px;}
.y1f0{bottom:701.793600px;}
.y22f{bottom:702.209850px;}
.y2f{bottom:705.349800px;}
.y197{bottom:711.571350px;}
.ye5{bottom:711.601350px;}
.y10{bottom:713.434650px;}
.yc8{bottom:713.653650px;}
.y6c{bottom:714.112500px;}
.y1ef{bottom:714.539850px;}
.y22e{bottom:715.361100px;}
.y14e{bottom:716.071350px;}
.y2e{bottom:721.846800px;}
.y1ee{bottom:727.286100px;}
.yf{bottom:728.434650px;}
.y22d{bottom:728.512350px;}
.y196{bottom:729.571350px;}
.y79{bottom:730.181745px;}
.y6b{bottom:730.609500px;}
.y14d{bottom:734.071350px;}
.yc7{bottom:735.294150px;}
.y2d{bottom:738.343800px;}
.y1ed{bottom:740.032350px;}
.y22c{bottom:741.663600px;}
.ye{bottom:743.434650px;}
.ye4{bottom:747.091350px;}
.y195{bottom:747.571350px;}
.y14c{bottom:752.071350px;}
.y1ec{bottom:752.778600px;}
.y22b{bottom:754.814850px;}
.y2c{bottom:754.840800px;}
.yc6{bottom:756.934650px;}
.yd{bottom:758.434650px;}
.y6a{bottom:762.340800px;}
.ye3{bottom:765.091350px;}
.y1eb{bottom:765.524850px;}
.y194{bottom:765.571350px;}
.y22a{bottom:767.966100px;}
.y14b{bottom:770.071350px;}
.y2b{bottom:771.340800px;}
.yc{bottom:773.434650px;}
.y1ea{bottom:778.274850px;}
.yc5{bottom:778.575150px;}
.y229{bottom:781.117350px;}
.ye2{bottom:783.091350px;}
.y193{bottom:783.571350px;}
.y14a{bottom:788.071350px;}
.y228{bottom:794.268600px;}
.yc4{bottom:800.215650px;}
.ye1{bottom:801.091350px;}
.y192{bottom:801.571350px;}
.y149{bottom:806.071350px;}
.y227{bottom:807.419850px;}
.ye0{bottom:819.091350px;}
.y191{bottom:819.571350px;}
.y226{bottom:820.571100px;}
.yc3{bottom:821.856150px;}
.y148{bottom:824.071350px;}
.y1e9{bottom:827.833350px;}
.y225{bottom:833.722350px;}
.ydf{bottom:837.091350px;}
.y190{bottom:837.571350px;}
.yb{bottom:840.337650px;}
.y147{bottom:842.071350px;}
.y1e8{bottom:842.233350px;}
.yc2{bottom:843.496650px;}
.y224{bottom:846.873600px;}
.yde{bottom:855.091350px;}
.y18f{bottom:855.571350px;}
.y1e7{bottom:856.633350px;}
.ya{bottom:859.837650px;}
.y223{bottom:860.024850px;}
.y158{bottom:860.071350px;}
.yc1{bottom:865.137150px;}
.y1e6{bottom:871.033350px;}
.ydd{bottom:873.091350px;}
.y222{bottom:873.176100px;}
.y146{bottom:873.571350px;}
.y157{bottom:878.071350px;}
.y9{bottom:879.340650px;}
.y1e5{bottom:885.433350px;}
.y221{bottom:886.327350px;}
.yc0{bottom:886.777650px;}
.ydc{bottom:891.091350px;}
.y145{bottom:891.571350px;}
.y156{bottom:896.071350px;}
.y220{bottom:899.478600px;}
.y1e4{bottom:899.833350px;}
.ybf{bottom:908.418150px;}
.ydb{bottom:909.091350px;}
.y144{bottom:909.571350px;}
.y21f{bottom:912.629850px;}
.y155{bottom:914.071350px;}
.y1e3{bottom:920.233350px;}
.y21e{bottom:925.781100px;}
.yda{bottom:927.091350px;}
.y143{bottom:927.571350px;}
.ybe{bottom:930.058650px;}
.y154{bottom:932.071350px;}
.y8{bottom:937.816650px;}
.y21d{bottom:938.932350px;}
.y1e2{bottom:940.633350px;}
.yd9{bottom:945.091350px;}
.y142{bottom:945.571350px;}
.ybd{bottom:951.699150px;}
.y21c{bottom:952.083600px;}
.y1e1{bottom:961.033350px;}
.yd8{bottom:963.091350px;}
.y141{bottom:963.571350px;}
.y21b{bottom:965.234850px;}
.ybc{bottom:973.339650px;}
.y1e0{bottom:975.433350px;}
.y7{bottom:976.822650px;}
.y21a{bottom:978.386100px;}
.yd7{bottom:981.091350px;}
.y140{bottom:981.571350px;}
.y219{bottom:991.537350px;}
.ybb{bottom:994.980150px;}
.y1df{bottom:995.833350px;}
.yd6{bottom:999.091350px;}
.y13f{bottom:999.571350px;}
.y218{bottom:1004.688600px;}
.yba{bottom:1015.122150px;}
.y6{bottom:1015.828650px;}
.y1de{bottom:1016.833350px;}
.yd5{bottom:1017.091350px;}
.y13e{bottom:1017.571350px;}
.y217{bottom:1017.839850px;}
.y216{bottom:1030.991100px;}
.yd4{bottom:1035.091350px;}
.y13d{bottom:1035.571350px;}
.y1dd{bottom:1037.233350px;}
.yb8{bottom:1039.759650px;}
.y215{bottom:1044.142350px;}
.y1dc{bottom:1051.633350px;}
.yd3{bottom:1053.091350px;}
.y13c{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y214{bottom:1057.293600px;}
.yb9{bottom:1061.400150px;}
.y1db{bottom:1066.033350px;}
.y213{bottom:1070.444850px;}
.yd2{bottom:1071.091350px;}
.y13b{bottom:1071.571350px;}
.y1da{bottom:1080.433350px;}
.yb7{bottom:1083.415350px;}
.y212{bottom:1083.596100px;}
.yd1{bottom:1089.091350px;}
.y13a{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y1d9{bottom:1094.833350px;}
.y211{bottom:1096.747350px;}
.yb6{bottom:1099.912350px;}
.yd0{bottom:1107.091350px;}
.y139{bottom:1107.571350px;}
.y1d8{bottom:1109.233350px;}
.y210{bottom:1109.898600px;}
.y3{bottom:1140.946200px;}
.y7a{bottom:1140.946350px;}
.h14{height:23.390640px;}
.h16{height:32.895000px;}
.h9{height:34.944000px;}
.h3{height:35.280000px;}
.h8{height:36.000000px;}
.h10{height:39.474000px;}
.ha{height:39.690000px;}
.h15{height:42.840000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.hb{height:44.040000px;}
.h11{height:45.696000px;}
.hf{height:51.408000px;}
.h13{height:56.176920px;}
.h12{height:56.197920px;}
.hd{height:56.198520px;}
.hc{height:56.227920px;}
.h6{height:71.357616px;}
.h7{height:71.369616px;}
.h5{height:95.906250px;}
.he{height:110.320312px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.250000px;}
.x19{left:84.678750px;}
.x4{left:220.379400px;}
.x2{left:263.436000px;}
.x13{left:317.256000px;}
.x18{left:353.247000px;}
.x14{left:451.162800px;}
.xf{left:460.335000px;}
.x11{left:466.331850px;}
.x17{left:473.839050px;}
.x1a{left:484.143750px;}
.x8{left:537.524400px;}
.xa{left:546.518850px;}
.x9{left:551.011350px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x15{left:580.162800px;}
.x12{left:674.002350px;}
.x16{left:709.162800px;}
.x10{left:723.708900px;}
.x7{left:752.065200px;}
.x1{left:824.963400px;}
.xd{left:853.499955px;}
@media print{
.v5{vertical-align:-19.200000pt;}
.v4{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.026133pt;}
.v1{vertical-align:26.400000pt;}
.v3{vertical-align:48.000000pt;}
.ls8{letter-spacing:-1.578667pt;}
.ls9{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000203pt;}
.ls3{letter-spacing:0.000491pt;}
.lsf{letter-spacing:0.003733pt;}
.lsb{letter-spacing:0.176533pt;}
.lsd{letter-spacing:0.176800pt;}
.ls5{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.353246pt;}
.ls12{letter-spacing:0.399600pt;}
.lsc{letter-spacing:0.532800pt;}
.ls0{letter-spacing:3.360000pt;}
.ls4{letter-spacing:15.289067pt;}
.ls1{letter-spacing:19.170912pt;}
.ls6{letter-spacing:21.770667pt;}
.ls11{letter-spacing:375.072000pt;}
.ls10{letter-spacing:417.456000pt;}
.lsa{letter-spacing:1415.722133pt;}
.ws1{word-spacing:-18.186667pt;}
.ws2e{word-spacing:-14.399467pt;}
.ws2c{word-spacing:-14.133333pt;}
.ws4{word-spacing:-13.866667pt;}
.ws6{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.800000pt;}
.ws5{word-spacing:-11.520000pt;}
.ws106{word-spacing:-10.999600pt;}
.ws0{word-spacing:-10.813088pt;}
.ws9{word-spacing:-10.240427pt;}
.ws2f{word-spacing:-9.546846pt;}
.ws2d{word-spacing:-9.370400pt;}
.ws3{word-spacing:-9.193600pt;}
.ws9c{word-spacing:-7.779552pt;}
.wsc3{word-spacing:-7.344000pt;}
.wsdd{word-spacing:-6.789120pt;}
.wsa2{word-spacing:-4.533867pt;}
.wseb{word-spacing:-4.480000pt;}
.wsea{word-spacing:-4.053333pt;}
.wse8{word-spacing:-3.680000pt;}
.wsdb{word-spacing:-3.626133pt;}
.ws103{word-spacing:-3.519467pt;}
.ws47{word-spacing:-3.466667pt;}
.ws82{word-spacing:-3.360000pt;}
.ws101{word-spacing:-3.093333pt;}
.wsaf{word-spacing:-2.986667pt;}
.ws11{word-spacing:-2.773333pt;}
.ws9a{word-spacing:-2.560000pt;}
.wsd7{word-spacing:-2.506667pt;}
.ws99{word-spacing:-2.293333pt;}
.wsd8{word-spacing:-2.240533pt;}
.ws12{word-spacing:-2.132800pt;}
.wsa1{word-spacing:-1.920000pt;}
.wsf5{word-spacing:-1.813333pt;}
.ws104{word-spacing:-1.578667pt;}
.wsbb{word-spacing:-1.386667pt;}
.ws7a{word-spacing:-1.332800pt;}
.ws41{word-spacing:-1.280000pt;}
.ws85{word-spacing:-1.173333pt;}
.wsb7{word-spacing:-1.120000pt;}
.ws44{word-spacing:-1.013333pt;}
.ws73{word-spacing:-0.960533pt;}
.wsf8{word-spacing:-0.853867pt;}
.ws25{word-spacing:-0.816000pt;}
.ws9b{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.747200pt;}
.ws98{word-spacing:-0.639467pt;}
.wsa4{word-spacing:-0.586667pt;}
.wsfe{word-spacing:-0.532800pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws107{word-spacing:-0.399600pt;}
.ws27{word-spacing:-0.336000pt;}
.ws15{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws23{word-spacing:-0.240000pt;}
.wse3{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.212160pt;}
.ws3e{word-spacing:-0.176800pt;}
.wscd{word-spacing:-0.106667pt;}
.ws75{word-spacing:-0.053867pt;}
.ws7{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.053867pt;}
.wsc5{word-spacing:0.106667pt;}
.ws6c{word-spacing:0.160533pt;}
.wsa3{word-spacing:0.213333pt;}
.ws46{word-spacing:0.320000pt;}
.wsa0{word-spacing:0.373333pt;}
.ws57{word-spacing:0.426667pt;}
.ws14{word-spacing:0.480000pt;}
.wsb2{word-spacing:0.532800pt;}
.wsf4{word-spacing:0.586667pt;}
.wse9{word-spacing:0.693333pt;}
.wsa{word-spacing:0.720000pt;}
.wsec{word-spacing:0.747200pt;}
.ws90{word-spacing:0.800000pt;}
.ws17{word-spacing:0.853867pt;}
.wsae{word-spacing:0.906667pt;}
.ws36{word-spacing:1.013333pt;}
.ws95{word-spacing:1.120000pt;}
.ws7e{word-spacing:1.173333pt;}
.ws5c{word-spacing:1.226133pt;}
.ws84{word-spacing:1.280000pt;}
.ws19{word-spacing:1.332800pt;}
.wsb3{word-spacing:1.386667pt;}
.ws6d{word-spacing:1.547200pt;}
.ws8{word-spacing:1.578667pt;}
.wsf7{word-spacing:1.600000pt;}
.ws26{word-spacing:1.632000pt;}
.ws4c{word-spacing:1.653867pt;}
.ws68{word-spacing:1.706667pt;}
.wsfb{word-spacing:1.813333pt;}
.ws20{word-spacing:1.866667pt;}
.ws62{word-spacing:1.920000pt;}
.wsa8{word-spacing:1.944446pt;}
.ws53{word-spacing:2.026133pt;}
.ws92{word-spacing:2.080000pt;}
.ws3d{word-spacing:2.186667pt;}
.wsf6{word-spacing:2.240533pt;}
.ws87{word-spacing:2.347200pt;}
.ws93{word-spacing:2.453867pt;}
.ws59{word-spacing:2.506667pt;}
.ws8c{word-spacing:2.666667pt;}
.ws9f{word-spacing:2.719467pt;}
.ws65{word-spacing:2.773333pt;}
.ws72{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.932800pt;}
.ws96{word-spacing:2.986667pt;}
.wsdf{word-spacing:3.093333pt;}
.ws54{word-spacing:3.200000pt;}
.ws13{word-spacing:3.253333pt;}
.ws8e{word-spacing:3.306667pt;}
.ws42{word-spacing:3.360000pt;}
.ws49{word-spacing:3.413333pt;}
.ws40{word-spacing:3.519467pt;}
.wsf1{word-spacing:3.573333pt;}
.wscb{word-spacing:3.626133pt;}
.wsde{word-spacing:3.680000pt;}
.wsdc{word-spacing:3.733867pt;}
.ws64{word-spacing:3.786667pt;}
.ws37{word-spacing:3.840533pt;}
.ws43{word-spacing:3.947200pt;}
.wsf9{word-spacing:4.000000pt;}
.wsca{word-spacing:4.053333pt;}
.ws97{word-spacing:4.160000pt;}
.wse7{word-spacing:4.212800pt;}
.ws102{word-spacing:4.426133pt;}
.ws5b{word-spacing:4.586667pt;}
.wsf{word-spacing:4.640533pt;}
.ws94{word-spacing:4.693333pt;}
.ws50{word-spacing:4.800000pt;}
.wsfd{word-spacing:4.853333pt;}
.ws61{word-spacing:5.280000pt;}
.ws10{word-spacing:5.386667pt;}
.wse2{word-spacing:5.622240pt;}
.ws6f{word-spacing:5.812800pt;}
.wsaa{word-spacing:5.866667pt;}
.wsb6{word-spacing:5.919467pt;}
.wsd0{word-spacing:5.973333pt;}
.ws24{word-spacing:6.144480pt;}
.ws70{word-spacing:6.186667pt;}
.ws3c{word-spacing:6.240000pt;}
.wsd9{word-spacing:6.293333pt;}
.wsa5{word-spacing:6.346667pt;}
.wsd1{word-spacing:6.453333pt;}
.wsa6{word-spacing:6.612800pt;}
.ws28{word-spacing:6.720000pt;}
.wsb9{word-spacing:6.827200pt;}
.wsba{word-spacing:6.880000pt;}
.wsbd{word-spacing:6.933333pt;}
.ws4a{word-spacing:6.986667pt;}
.wsb1{word-spacing:7.093333pt;}
.ws6b{word-spacing:7.199467pt;}
.ws91{word-spacing:7.253333pt;}
.ws4f{word-spacing:7.466667pt;}
.wsbc{word-spacing:7.520533pt;}
.ws7f{word-spacing:7.627200pt;}
.ws66{word-spacing:7.680000pt;}
.ws74{word-spacing:7.786667pt;}
.ws32{word-spacing:7.892800pt;}
.ws3b{word-spacing:7.946667pt;}
.wscc{word-spacing:7.999467pt;}
.wsb8{word-spacing:8.053333pt;}
.wsf2{word-spacing:8.106133pt;}
.ws4b{word-spacing:8.160000pt;}
.ws69{word-spacing:8.213867pt;}
.ws1d{word-spacing:8.266667pt;}
.wsc9{word-spacing:8.320533pt;}
.wsa9{word-spacing:8.373333pt;}
.wsab{word-spacing:8.426667pt;}
.ws7b{word-spacing:8.480000pt;}
.ws3f{word-spacing:8.640000pt;}
.wse6{word-spacing:8.853333pt;}
.ws48{word-spacing:8.960000pt;}
.ws58{word-spacing:9.013867pt;}
.ws77{word-spacing:9.066667pt;}
.ws81{word-spacing:9.173333pt;}
.wse5{word-spacing:9.333333pt;}
.wsb5{word-spacing:9.492800pt;}
.ws2a{word-spacing:9.552480pt;}
.wsff{word-spacing:9.707200pt;}
.ws45{word-spacing:9.813867pt;}
.ws34{word-spacing:10.026667pt;}
.ws67{word-spacing:10.133333pt;}
.ws56{word-spacing:10.186133pt;}
.wsee{word-spacing:10.346667pt;}
.wsd6{word-spacing:10.400533pt;}
.ws63{word-spacing:10.453333pt;}
.ws4e{word-spacing:10.507200pt;}
.wsbe{word-spacing:10.773333pt;}
.wse{word-spacing:10.826667pt;}
.wsd4{word-spacing:11.040000pt;}
.ws8b{word-spacing:11.200533pt;}
.ws105{word-spacing:11.240400pt;}
.wsc0{word-spacing:11.307200pt;}
.ws80{word-spacing:11.413333pt;}
.wsf3{word-spacing:11.626667pt;}
.ws30{word-spacing:11.679467pt;}
.wsad{word-spacing:11.946667pt;}
.wsb4{word-spacing:12.107200pt;}
.wsce{word-spacing:12.160000pt;}
.ws35{word-spacing:12.372800pt;}
.ws71{word-spacing:12.426667pt;}
.wsfa{word-spacing:12.533333pt;}
.ws39{word-spacing:12.586133pt;}
.wse4{word-spacing:12.693867pt;}
.ws78{word-spacing:12.800533pt;}
.wsed{word-spacing:12.853333pt;}
.wsf0{word-spacing:12.906667pt;}
.ws5a{word-spacing:13.013333pt;}
.ws38{word-spacing:13.066667pt;}
.ws51{word-spacing:13.333333pt;}
.ws31{word-spacing:13.440000pt;}
.ws100{word-spacing:13.760000pt;}
.ws86{word-spacing:13.920000pt;}
.wsc8{word-spacing:14.133333pt;}
.wsb0{word-spacing:14.187200pt;}
.ws60{word-spacing:14.240000pt;}
.ws21{word-spacing:14.400000pt;}
.ws8d{word-spacing:14.506667pt;}
.ws76{word-spacing:14.613333pt;}
.ws88{word-spacing:15.040000pt;}
.wsb{word-spacing:15.253333pt;}
.ws55{word-spacing:15.359467pt;}
.ws29{word-spacing:15.408000pt;}
.wscf{word-spacing:15.573867pt;}
.ws18{word-spacing:15.626667pt;}
.ws33{word-spacing:15.733333pt;}
.ws1f{word-spacing:15.840000pt;}
.ws83{word-spacing:15.946667pt;}
.wsfc{word-spacing:16.052800pt;}
.ws4d{word-spacing:16.373867pt;}
.wsc7{word-spacing:16.533333pt;}
.wse1{word-spacing:16.693333pt;}
.ws79{word-spacing:16.959467pt;}
.wsd2{word-spacing:17.120000pt;}
.wsc6{word-spacing:17.386667pt;}
.ws52{word-spacing:17.652800pt;}
.wsd5{word-spacing:17.920000pt;}
.ws6a{word-spacing:18.667200pt;}
.ws8a{word-spacing:19.093333pt;}
.ws6e{word-spacing:19.520000pt;}
.ws2b{word-spacing:19.728000pt;}
.ws22{word-spacing:20.496000pt;}
.wse0{word-spacing:20.800000pt;}
.wsbf{word-spacing:21.120000pt;}
.ws7c{word-spacing:21.173333pt;}
.wsac{word-spacing:22.293333pt;}
.wsc{word-spacing:22.880000pt;}
.wsda{word-spacing:23.626133pt;}
.wsef{word-spacing:24.853333pt;}
.ws1e{word-spacing:25.653333pt;}
.wsd3{word-spacing:25.706133pt;}
.ws8f{word-spacing:27.040000pt;}
.ws89{word-spacing:27.840000pt;}
.wsd{word-spacing:27.946667pt;}
.ws1c{word-spacing:29.653333pt;}
.wsc4{word-spacing:34.656000pt;}
.ws5e{word-spacing:202.224000pt;}
.ws5f{word-spacing:228.912000pt;}
.ws5d{word-spacing:253.872000pt;}
.wsc2{word-spacing:344.016000pt;}
.ws9e{word-spacing:355.968000pt;}
.wsc1{word-spacing:361.488000pt;}
.ws9d{word-spacing:365.280000pt;}
._b{margin-left:-2641.341120pt;}
._a{margin-left:-1763.375040pt;}
._8{margin-left:-52.480000pt;}
._4{margin-left:-42.640000pt;}
._d{margin-left:-17.568000pt;}
._49{margin-left:-15.683200pt;}
._4a{margin-left:-13.973333pt;}
._1c{margin-left:-12.480000pt;}
._50{margin-left:-11.519600pt;}
._6{margin-left:-10.240000pt;}
._4e{margin-left:-8.040000pt;}
._2{margin-left:-6.564192pt;}
._e{margin-left:-5.328000pt;}
._1{margin-left:-4.358976pt;}
._3{margin-left:-3.157333pt;}
._0{margin-left:-1.582933pt;}
._5{width:1.186133pt;}
._3a{width:2.154176pt;}
._26{width:7.626667pt;}
._4c{width:10.240000pt;}
._4b{width:11.520000pt;}
._7{width:12.480000pt;}
._51{width:16.761600pt;}
._4d{width:18.320000pt;}
._4f{width:29.239200pt;}
._c{width:33.792000pt;}
._11{width:48.000000pt;}
._21{width:99.216000pt;}
._1a{width:174.000000pt;}
._23{width:186.238933pt;}
._10{width:188.928000pt;}
._42{width:195.840000pt;}
._20{width:198.000000pt;}
._19{width:215.568000pt;}
._9{width:226.894560pt;}
._24{width:242.256000pt;}
._1f{width:245.040000pt;}
._22{width:245.952000pt;}
._3c{width:269.568000pt;}
._2a{width:277.728000pt;}
._2c{width:287.040000pt;}
._1e{width:293.088000pt;}
._1d{width:296.688000pt;}
._2e{width:304.416000pt;}
._2b{width:313.680000pt;}
._14{width:315.168000pt;}
._15{width:316.128000pt;}
._33{width:331.104000pt;}
._43{width:333.264000pt;}
._34{width:340.416000pt;}
._3e{width:348.144000pt;}
._30{width:350.304000pt;}
._40{width:355.584000pt;}
._28{width:369.408000pt;}
._37{width:378.624000pt;}
._f{width:397.008000pt;}
._3d{width:400.752000pt;}
._36{width:405.264000pt;}
._16{width:414.768000pt;}
._17{width:415.728000pt;}
._39{width:423.984000pt;}
._1b{width:443.328000pt;}
._46{width:451.536000pt;}
._25{width:454.896000pt;}
._48{width:461.086933pt;}
._18{width:473.520000pt;}
._45{width:498.576000pt;}
._47{width:547.488000pt;}
._2f{width:548.496000pt;}
._2d{width:552.096000pt;}
._12{width:554.869333pt;}
._38{width:575.136000pt;}
._32{width:578.736000pt;}
._29{width:595.632000pt;}
._13{width:622.848000pt;}
._44{width:649.728000pt;}
._41{width:653.328000pt;}
._3b{width:669.120000pt;}
._3f{width:696.864000pt;}
._31{width:755.173333pt;}
._35{width:823.152000pt;}
._27{width:838.272000pt;}
.fs8{font-size:27.984000pt;}
.fs9{font-size:28.288000pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fsa{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y1ba{bottom:72.507867pt;}
.y108{bottom:72.534400pt;}
.y69{bottom:72.537467pt;}
.y175{bottom:72.540000pt;}
.y120{bottom:72.542933pt;}
.y24{bottom:72.566933pt;}
.y18e{bottom:72.860000pt;}
.y99{bottom:72.886267pt;}
.yb5{bottom:72.952933pt;}
.y53{bottom:80.744267pt;}
.y138{bottom:80.828133pt;}
.y1d7{bottom:85.307867pt;}
.y23{bottom:85.900267pt;}
.y1b9{bottom:88.507867pt;}
.y107{bottom:88.534400pt;}
.y68{bottom:88.537467pt;}
.y174{bottom:88.540000pt;}
.y11f{bottom:88.542933pt;}
.y98{bottom:89.286267pt;}
.y18d{bottom:89.366667pt;}
.yb4{bottom:89.872933pt;}
.y52{bottom:96.744267pt;}
.y1d6{bottom:98.107867pt;}
.y137{bottom:98.732133pt;}
.y22{bottom:99.233600pt;}
.y1b8{bottom:104.507867pt;}
.y106{bottom:104.534400pt;}
.y67{bottom:104.537467pt;}
.y173{bottom:104.540000pt;}
.y11e{bottom:104.542933pt;}
.y97{bottom:105.686267pt;}
.y18c{bottom:105.873333pt;}
.yb3{bottom:106.792933pt;}
.y1d5{bottom:110.907867pt;}
.y51{bottom:112.744267pt;}
.y136{bottom:117.968133pt;}
.y1b7{bottom:120.507867pt;}
.y105{bottom:120.534400pt;}
.y66{bottom:120.537467pt;}
.y172{bottom:120.540000pt;}
.y11d{bottom:120.542933pt;}
.y96{bottom:122.086267pt;}
.y18b{bottom:122.380000pt;}
.y1d4{bottom:123.707867pt;}
.yb2{bottom:123.712933pt;}
.y21{bottom:124.566933pt;}
.y1b6{bottom:136.507867pt;}
.y104{bottom:136.534400pt;}
.y65{bottom:136.537467pt;}
.y171{bottom:136.540000pt;}
.y11c{bottom:136.542933pt;}
.y135{bottom:137.204133pt;}
.y20{bottom:137.900267pt;}
.y95{bottom:138.486267pt;}
.y18a{bottom:138.886667pt;}
.y50{bottom:143.065600pt;}
.y1d3{bottom:149.307867pt;}
.y1b5{bottom:152.507867pt;}
.y103{bottom:152.534400pt;}
.y64{bottom:152.537467pt;}
.y170{bottom:152.540000pt;}
.y11b{bottom:152.542933pt;}
.y2a{bottom:154.849467pt;}
.y94{bottom:154.886267pt;}
.y189{bottom:155.393333pt;}
.y134{bottom:156.440133pt;}
.y4f{bottom:157.729600pt;}
.yb1{bottom:158.899600pt;}
.y1d2{bottom:167.441200pt;}
.y29{bottom:167.649467pt;}
.y1b4{bottom:168.507867pt;}
.y102{bottom:168.534400pt;}
.y63{bottom:168.537467pt;}
.y16f{bottom:168.540000pt;}
.y11a{bottom:168.542933pt;}
.y93{bottom:171.286267pt;}
.y188{bottom:171.900000pt;}
.y4e{bottom:172.393600pt;}
.y133{bottom:175.676133pt;}
.yb0{bottom:175.819600pt;}
.y1d1{bottom:180.241200pt;}
.y28{bottom:180.449467pt;}
.y1b3{bottom:184.507867pt;}
.y101{bottom:184.534400pt;}
.y62{bottom:184.537467pt;}
.y16e{bottom:184.540000pt;}
.y119{bottom:184.542933pt;}
.y4d{bottom:187.057600pt;}
.y92{bottom:187.686267pt;}
.y187{bottom:188.406667pt;}
.yaf{bottom:192.739600pt;}
.y1d0{bottom:193.041200pt;}
.y27{bottom:193.249467pt;}
.y132{bottom:194.912133pt;}
.y1b2{bottom:200.507867pt;}
.y100{bottom:200.534400pt;}
.y61{bottom:200.537467pt;}
.y118{bottom:200.542933pt;}
.y4c{bottom:201.721600pt;}
.y91{bottom:204.086267pt;}
.y186{bottom:204.913333pt;}
.y1cf{bottom:205.841200pt;}
.y26{bottom:206.049467pt;}
.yae{bottom:209.659600pt;}
.y131{bottom:214.148133pt;}
.y4b{bottom:216.385600pt;}
.y1b1{bottom:216.507867pt;}
.yff{bottom:216.534400pt;}
.y60{bottom:216.537467pt;}
.y117{bottom:216.542933pt;}
.y1ce{bottom:218.641200pt;}
.y25{bottom:218.849467pt;}
.y90{bottom:220.486267pt;}
.y185{bottom:221.420000pt;}
.yad{bottom:226.579600pt;}
.y16d{bottom:229.526667pt;}
.y4a{bottom:231.049600pt;}
.y1cd{bottom:231.441200pt;}
.y1b0{bottom:232.507867pt;}
.yfe{bottom:232.534400pt;}
.y5f{bottom:232.537467pt;}
.y116{bottom:232.542933pt;}
.y130{bottom:233.384133pt;}
.y8f{bottom:236.886267pt;}
.y184{bottom:237.926667pt;}
.yac{bottom:243.499600pt;}
.y16c{bottom:245.526667pt;}
.y49{bottom:245.713600pt;}
.y1af{bottom:248.507867pt;}
.yfd{bottom:248.534400pt;}
.y5e{bottom:248.537467pt;}
.y115{bottom:248.542933pt;}
.y1cc{bottom:249.574533pt;}
.y12f{bottom:252.620133pt;}
.y8e{bottom:253.286267pt;}
.y183{bottom:254.433333pt;}
.y48{bottom:260.377600pt;}
.yab{bottom:260.419600pt;}
.y16b{bottom:261.526667pt;}
.y1cb{bottom:262.374533pt;}
.y1ae{bottom:264.507867pt;}
.yfc{bottom:264.534400pt;}
.y5d{bottom:264.537467pt;}
.y114{bottom:264.542933pt;}
.y8d{bottom:269.686267pt;}
.y182{bottom:270.940000pt;}
.y12e{bottom:271.856133pt;}
.y20f{bottom:272.586533pt;}
.y24d{bottom:273.486533pt;}
.y47{bottom:275.041600pt;}
.yaa{bottom:277.339600pt;}
.y16a{bottom:277.526667pt;}
.y1ad{bottom:280.507867pt;}
.yfb{bottom:280.534400pt;}
.y5c{bottom:280.537467pt;}
.y113{bottom:280.542933pt;}
.y20e{bottom:283.916533pt;}
.y24c{bottom:285.176533pt;}
.y8c{bottom:286.086267pt;}
.y181{bottom:287.446667pt;}
.y46{bottom:289.705600pt;}
.y12d{bottom:291.092133pt;}
.y169{bottom:293.526667pt;}
.ya9{bottom:294.259600pt;}
.y20d{bottom:295.246533pt;}
.y1ac{bottom:296.507867pt;}
.yfa{bottom:296.534400pt;}
.y5b{bottom:296.537467pt;}
.y112{bottom:296.547733pt;}
.y24b{bottom:296.866533pt;}
.y8b{bottom:302.486267pt;}
.y180{bottom:303.953333pt;}
.y45{bottom:304.369600pt;}
.y20c{bottom:306.576533pt;}
.y24a{bottom:308.556533pt;}
.y168{bottom:309.526667pt;}
.y1ca{bottom:309.841200pt;}
.y12c{bottom:310.328133pt;}
.ya8{bottom:311.179600pt;}
.y1ab{bottom:312.507867pt;}
.yf9{bottom:312.534400pt;}
.y5a{bottom:312.537467pt;}
.y111{bottom:312.547733pt;}
.y20b{bottom:317.906533pt;}
.y8a{bottom:318.886267pt;}
.y44{bottom:319.033600pt;}
.y249{bottom:320.246533pt;}
.y17f{bottom:320.460000pt;}
.y167{bottom:325.526667pt;}
.y1c9{bottom:327.974533pt;}
.ya7{bottom:328.099600pt;}
.y1aa{bottom:328.507867pt;}
.yf8{bottom:328.534400pt;}
.y59{bottom:328.537467pt;}
.y110{bottom:328.547733pt;}
.y20a{bottom:329.236533pt;}
.y12b{bottom:329.564133pt;}
.y248{bottom:331.936533pt;}
.y43{bottom:333.697600pt;}
.y89{bottom:335.286267pt;}
.y1c8{bottom:336.507867pt;}
.y17e{bottom:336.966667pt;}
.y209{bottom:340.566533pt;}
.y166{bottom:341.526667pt;}
.y247{bottom:343.626533pt;}
.y1a9{bottom:344.507867pt;}
.yf7{bottom:344.534400pt;}
.y58{bottom:344.537467pt;}
.y10f{bottom:344.547733pt;}
.ya6{bottom:345.019600pt;}
.y42{bottom:348.361600pt;}
.y12a{bottom:348.800133pt;}
.y88{bottom:351.686267pt;}
.y208{bottom:351.896533pt;}
.y17d{bottom:353.473333pt;}
.y1c7{bottom:354.641200pt;}
.y246{bottom:355.316533pt;}
.y165{bottom:357.526667pt;}
.y1a8{bottom:360.507867pt;}
.yf6{bottom:360.534400pt;}
.y57{bottom:360.537467pt;}
.y10e{bottom:360.547733pt;}
.ya5{bottom:361.939600pt;}
.y41{bottom:363.025600pt;}
.y1c6{bottom:363.174533pt;}
.y207{bottom:363.226533pt;}
.y245{bottom:367.006533pt;}
.y129{bottom:368.036133pt;}
.y87{bottom:368.086267pt;}
.y17c{bottom:369.980000pt;}
.y164{bottom:373.526667pt;}
.y206{bottom:374.556533pt;}
.y1a7{bottom:376.507867pt;}
.yf5{bottom:376.534400pt;}
.y56{bottom:376.537467pt;}
.y10d{bottom:376.547733pt;}
.y40{bottom:377.689600pt;}
.y244{bottom:378.696533pt;}
.ya4{bottom:378.859600pt;}
.y1c5{bottom:381.307867pt;}
.y86{bottom:384.486267pt;}
.y205{bottom:385.886533pt;}
.y17b{bottom:386.486667pt;}
.y128{bottom:387.272133pt;}
.y163{bottom:389.526667pt;}
.y1c4{bottom:389.841200pt;}
.y243{bottom:390.386533pt;}
.y3f{bottom:392.353600pt;}
.y1a6{bottom:392.507867pt;}
.yf4{bottom:392.534400pt;}
.y55{bottom:392.537467pt;}
.y10c{bottom:392.547733pt;}
.ya3{bottom:395.779600pt;}
.y204{bottom:397.216533pt;}
.y85{bottom:400.886267pt;}
.y242{bottom:402.076533pt;}
.y17a{bottom:402.993333pt;}
.y127{bottom:405.176133pt;}
.y162{bottom:405.526667pt;}
.y3e{bottom:407.017600pt;}
.y1c3{bottom:407.974533pt;}
.y1a5{bottom:408.507867pt;}
.y54{bottom:408.530933pt;}
.yf3{bottom:408.534400pt;}
.y203{bottom:408.546533pt;}
.ya2{bottom:412.699600pt;}
.y241{bottom:413.766533pt;}
.y1f{bottom:414.164133pt;}
.y1c2{bottom:416.507867pt;}
.y84{bottom:417.286267pt;}
.y179{bottom:419.500000pt;}
.y202{bottom:419.876533pt;}
.y10b{bottom:420.547733pt;}
.y161{bottom:421.526667pt;}
.y3d{bottom:421.681600pt;}
.y1a4{bottom:424.507867pt;}
.yf2{bottom:424.534400pt;}
.y240{bottom:425.456533pt;}
.y123{bottom:427.076133pt;}
.y1e{bottom:427.497467pt;}
.ya1{bottom:429.619600pt;}
.y201{bottom:431.206533pt;}
.y83{bottom:433.686267pt;}
.y1c1{bottom:434.641200pt;}
.y178{bottom:436.006667pt;}
.y3c{bottom:436.345600pt;}
.y10a{bottom:436.547733pt;}
.y23f{bottom:437.146533pt;}
.y160{bottom:437.526667pt;}
.y1a3{bottom:440.507867pt;}
.yf1{bottom:440.534400pt;}
.y1d{bottom:440.830800pt;}
.y126{bottom:441.476133pt;}
.y200{bottom:442.536533pt;}
.ya0{bottom:446.539600pt;}
.y1c0{bottom:447.974533pt;}
.y23e{bottom:448.836533pt;}
.y82{bottom:450.086267pt;}
.y3b{bottom:451.009600pt;}
.y177{bottom:452.513333pt;}
.y109{bottom:452.547733pt;}
.y15f{bottom:453.526667pt;}
.y1ff{bottom:453.866533pt;}
.y125{bottom:455.876133pt;}
.y1a2{bottom:456.507867pt;}
.yf0{bottom:456.534533pt;}
.y78{bottom:458.769333pt;}
.y23d{bottom:460.526533pt;}
.y9f{bottom:463.459600pt;}
.y1fe{bottom:465.196533pt;}
.y3a{bottom:465.673600pt;}
.y1c{bottom:466.164133pt;}
.y81{bottom:466.486267pt;}
.y176{bottom:469.020000pt;}
.y15e{bottom:469.526667pt;}
.y124{bottom:470.276133pt;}
.y23c{bottom:472.216533pt;}
.y1a1{bottom:472.507867pt;}
.yef{bottom:472.534533pt;}
.y77{bottom:473.433333pt;}
.y1bf{bottom:474.641200pt;}
.y1fd{bottom:476.526533pt;}
.y1b{bottom:479.497467pt;}
.y39{bottom:480.337600pt;}
.y9e{bottom:480.379600pt;}
.y80{bottom:482.886267pt;}
.y23b{bottom:483.906533pt;}
.y15d{bottom:485.526667pt;}
.y1fc{bottom:487.856533pt;}
.y1be{bottom:487.974533pt;}
.y76{bottom:488.097333pt;}
.y1a0{bottom:488.507867pt;}
.yee{bottom:488.534533pt;}
.y122{bottom:489.846667pt;}
.y1a{bottom:492.830800pt;}
.y38{bottom:495.001600pt;}
.y23a{bottom:495.596533pt;}
.y1bd{bottom:496.507867pt;}
.ycf{bottom:496.689600pt;}
.y9d{bottom:497.299600pt;}
.y1fb{bottom:499.186533pt;}
.y7f{bottom:499.286267pt;}
.y75{bottom:502.772000pt;}
.y19f{bottom:504.507867pt;}
.y121{bottom:504.510667pt;}
.yed{bottom:504.534533pt;}
.y19{bottom:506.164133pt;}
.y239{bottom:507.286533pt;}
.y37{bottom:509.665600pt;}
.y1fa{bottom:510.516533pt;}
.y9c{bottom:514.219600pt;}
.y1bc{bottom:514.641200pt;}
.y7e{bottom:515.686267pt;}
.y74{bottom:517.436000pt;}
.y238{bottom:518.976533pt;}
.y18{bottom:519.497467pt;}
.yce{bottom:520.274800pt;}
.y19e{bottom:520.507867pt;}
.yec{bottom:520.534533pt;}
.y1f9{bottom:521.846533pt;}
.y1bb{bottom:523.174533pt;}
.y36{bottom:524.329600pt;}
.y15c{bottom:527.726533pt;}
.y237{bottom:530.666533pt;}
.y9b{bottom:531.139600pt;}
.y7d{bottom:532.086267pt;}
.y73{bottom:532.100000pt;}
.y17{bottom:532.830800pt;}
.y1f8{bottom:533.176533pt;}
.y19d{bottom:536.507867pt;}
.yeb{bottom:536.534533pt;}
.ycd{bottom:538.178800pt;}
.y35{bottom:538.993600pt;}
.y15b{bottom:541.059867pt;}
.y236{bottom:542.356533pt;}
.y1f7{bottom:544.506533pt;}
.y16{bottom:546.164133pt;}
.y72{bottom:546.764000pt;}
.y9a{bottom:548.059600pt;}
.y7c{bottom:548.486267pt;}
.y19c{bottom:552.507867pt;}
.yea{bottom:552.534533pt;}
.y34{bottom:553.657600pt;}
.y235{bottom:554.046533pt;}
.y15a{bottom:554.393200pt;}
.y1f6{bottom:555.836533pt;}
.y153{bottom:556.507867pt;}
.ycc{bottom:557.414800pt;}
.y71{bottom:561.433333pt;}
.y234{bottom:565.736533pt;}
.y1f5{bottom:567.166533pt;}
.y15{bottom:567.497467pt;}
.y33{bottom:568.321600pt;}
.y19b{bottom:568.507867pt;}
.ye9{bottom:568.534533pt;}
.y152{bottom:572.507867pt;}
.y70{bottom:576.097333pt;}
.ycb{bottom:576.650800pt;}
.y233{bottom:577.426533pt;}
.y159{bottom:577.982800pt;}
.y1f4{bottom:578.496533pt;}
.y14{bottom:580.830800pt;}
.y32{bottom:582.985600pt;}
.y19a{bottom:584.507867pt;}
.ye8{bottom:584.534533pt;}
.y151{bottom:588.507867pt;}
.y232{bottom:589.116533pt;}
.y1f3{bottom:589.826533pt;}
.y6f{bottom:590.774667pt;}
.y13{bottom:594.164133pt;}
.yca{bottom:595.886800pt;}
.y7b{bottom:595.966133pt;}
.y31{bottom:597.649600pt;}
.y199{bottom:600.507867pt;}
.ye7{bottom:600.534533pt;}
.y231{bottom:600.806533pt;}
.y1f2{bottom:601.156533pt;}
.y150{bottom:604.507867pt;}
.y6e{bottom:605.438667pt;}
.y12{bottom:607.497467pt;}
.y30{bottom:612.313600pt;}
.y1f1{bottom:612.486533pt;}
.y230{bottom:612.496533pt;}
.yc9{bottom:615.122800pt;}
.y198{bottom:616.507867pt;}
.ye6{bottom:616.534533pt;}
.y6d{bottom:620.102667pt;}
.y14f{bottom:620.507867pt;}
.y11{bottom:620.830800pt;}
.y1f0{bottom:623.816533pt;}
.y22f{bottom:624.186533pt;}
.y2f{bottom:626.977600pt;}
.y197{bottom:632.507867pt;}
.ye5{bottom:632.534533pt;}
.y10{bottom:634.164133pt;}
.yc8{bottom:634.358800pt;}
.y6c{bottom:634.766667pt;}
.y1ef{bottom:635.146533pt;}
.y22e{bottom:635.876533pt;}
.y14e{bottom:636.507867pt;}
.y2e{bottom:641.641600pt;}
.y1ee{bottom:646.476533pt;}
.yf{bottom:647.497467pt;}
.y22d{bottom:647.566533pt;}
.y196{bottom:648.507867pt;}
.y79{bottom:649.050440pt;}
.y6b{bottom:649.430667pt;}
.y14d{bottom:652.507867pt;}
.yc7{bottom:653.594800pt;}
.y2d{bottom:656.305600pt;}
.y1ed{bottom:657.806533pt;}
.y22c{bottom:659.256533pt;}
.ye{bottom:660.830800pt;}
.ye4{bottom:664.081200pt;}
.y195{bottom:664.507867pt;}
.y14c{bottom:668.507867pt;}
.y1ec{bottom:669.136533pt;}
.y22b{bottom:670.946533pt;}
.y2c{bottom:670.969600pt;}
.yc6{bottom:672.830800pt;}
.yd{bottom:674.164133pt;}
.y6a{bottom:677.636267pt;}
.ye3{bottom:680.081200pt;}
.y1eb{bottom:680.466533pt;}
.y194{bottom:680.507867pt;}
.y22a{bottom:682.636533pt;}
.y14b{bottom:684.507867pt;}
.y2b{bottom:685.636267pt;}
.yc{bottom:687.497467pt;}
.y1ea{bottom:691.799867pt;}
.yc5{bottom:692.066800pt;}
.y229{bottom:694.326533pt;}
.ye2{bottom:696.081200pt;}
.y193{bottom:696.507867pt;}
.y14a{bottom:700.507867pt;}
.y228{bottom:706.016533pt;}
.yc4{bottom:711.302800pt;}
.ye1{bottom:712.081200pt;}
.y192{bottom:712.507867pt;}
.y149{bottom:716.507867pt;}
.y227{bottom:717.706533pt;}
.ye0{bottom:728.081200pt;}
.y191{bottom:728.507867pt;}
.y226{bottom:729.396533pt;}
.yc3{bottom:730.538800pt;}
.y148{bottom:732.507867pt;}
.y1e9{bottom:735.851867pt;}
.y225{bottom:741.086533pt;}
.ydf{bottom:744.081200pt;}
.y190{bottom:744.507867pt;}
.yb{bottom:746.966800pt;}
.y147{bottom:748.507867pt;}
.y1e8{bottom:748.651867pt;}
.yc2{bottom:749.774800pt;}
.y224{bottom:752.776533pt;}
.yde{bottom:760.081200pt;}
.y18f{bottom:760.507867pt;}
.y1e7{bottom:761.451867pt;}
.ya{bottom:764.300133pt;}
.y223{bottom:764.466533pt;}
.y158{bottom:764.507867pt;}
.yc1{bottom:769.010800pt;}
.y1e6{bottom:774.251867pt;}
.ydd{bottom:776.081200pt;}
.y222{bottom:776.156533pt;}
.y146{bottom:776.507867pt;}
.y157{bottom:780.507867pt;}
.y9{bottom:781.636133pt;}
.y1e5{bottom:787.051867pt;}
.y221{bottom:787.846533pt;}
.yc0{bottom:788.246800pt;}
.ydc{bottom:792.081200pt;}
.y145{bottom:792.507867pt;}
.y156{bottom:796.507867pt;}
.y220{bottom:799.536533pt;}
.y1e4{bottom:799.851867pt;}
.ybf{bottom:807.482800pt;}
.ydb{bottom:808.081200pt;}
.y144{bottom:808.507867pt;}
.y21f{bottom:811.226533pt;}
.y155{bottom:812.507867pt;}
.y1e3{bottom:817.985200pt;}
.y21e{bottom:822.916533pt;}
.yda{bottom:824.081200pt;}
.y143{bottom:824.507867pt;}
.ybe{bottom:826.718800pt;}
.y154{bottom:828.507867pt;}
.y8{bottom:833.614800pt;}
.y21d{bottom:834.606533pt;}
.y1e2{bottom:836.118533pt;}
.yd9{bottom:840.081200pt;}
.y142{bottom:840.507867pt;}
.ybd{bottom:845.954800pt;}
.y21c{bottom:846.296533pt;}
.y1e1{bottom:854.251867pt;}
.yd8{bottom:856.081200pt;}
.y141{bottom:856.507867pt;}
.y21b{bottom:857.986533pt;}
.ybc{bottom:865.190800pt;}
.y1e0{bottom:867.051867pt;}
.y7{bottom:868.286800pt;}
.y21a{bottom:869.676533pt;}
.yd7{bottom:872.081200pt;}
.y140{bottom:872.507867pt;}
.y219{bottom:881.366533pt;}
.ybb{bottom:884.426800pt;}
.y1df{bottom:885.185200pt;}
.yd6{bottom:888.081200pt;}
.y13f{bottom:888.507867pt;}
.y218{bottom:893.056533pt;}
.yba{bottom:902.330800pt;}
.y6{bottom:902.958800pt;}
.y1de{bottom:903.851867pt;}
.yd5{bottom:904.081200pt;}
.y13e{bottom:904.507867pt;}
.y217{bottom:904.746533pt;}
.y216{bottom:916.436533pt;}
.yd4{bottom:920.081200pt;}
.y13d{bottom:920.507867pt;}
.y1dd{bottom:921.985200pt;}
.yb8{bottom:924.230800pt;}
.y215{bottom:928.126533pt;}
.y1dc{bottom:934.785200pt;}
.yd3{bottom:936.081200pt;}
.y13c{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y214{bottom:939.816533pt;}
.yb9{bottom:943.466800pt;}
.y1db{bottom:947.585200pt;}
.y213{bottom:951.506533pt;}
.yd2{bottom:952.081200pt;}
.y13b{bottom:952.507867pt;}
.y1da{bottom:960.385200pt;}
.yb7{bottom:963.035867pt;}
.y212{bottom:963.196533pt;}
.yd1{bottom:968.081200pt;}
.y13a{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y1d9{bottom:973.185200pt;}
.y211{bottom:974.886533pt;}
.yb6{bottom:977.699867pt;}
.yd0{bottom:984.081200pt;}
.y139{bottom:984.507867pt;}
.y1d8{bottom:985.985200pt;}
.y210{bottom:986.576533pt;}
.y3{bottom:1014.174400pt;}
.y7a{bottom:1014.174533pt;}
.h14{height:20.791680pt;}
.h16{height:29.240000pt;}
.h9{height:31.061333pt;}
.h3{height:31.360000pt;}
.h8{height:32.000000pt;}
.h10{height:35.088000pt;}
.ha{height:35.280000pt;}
.h15{height:38.080000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.hb{height:39.146667pt;}
.h11{height:40.618667pt;}
.hf{height:45.696000pt;}
.h13{height:49.935040pt;}
.h12{height:49.953707pt;}
.hd{height:49.954240pt;}
.hc{height:49.980373pt;}
.h6{height:63.428992pt;}
.h7{height:63.439659pt;}
.h5{height:85.250000pt;}
.he{height:98.062500pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:66.000000pt;}
.x19{left:75.270000pt;}
.x4{left:195.892800pt;}
.x2{left:234.165333pt;}
.x13{left:282.005333pt;}
.x18{left:313.997333pt;}
.x14{left:401.033600pt;}
.xf{left:409.186667pt;}
.x11{left:414.517200pt;}
.x17{left:421.190267pt;}
.x1a{left:430.350000pt;}
.x8{left:477.799467pt;}
.xa{left:485.794533pt;}
.x9{left:489.787867pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x15{left:515.700267pt;}
.x12{left:599.113200pt;}
.x16{left:630.366933pt;}
.x10{left:643.296800pt;}
.x7{left:668.502400pt;}
.x1{left:733.300800pt;}
.xd{left:758.666627pt;}
}




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