
    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_7423c3ac0156eb9e49e75cfc.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_1c21b8a4a0f962f1a3a16a50.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_c29f5b3e2630bf265b966010.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_a83bf0878775585e9f492a7f.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_16ebf9d3eba15b47c690267c.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_addca0f3687c291811691703.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.987793;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_832ffa4050ee56f9aa2dbb22.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985000;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_1e90cfc1cd6510626329e592.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_cc3892e9a34a26a275f25c09.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_c29f5b3e2630bf265b966010.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_7fa4eb373520c66d18e55fc8.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_994155538719578a3ea3ba3e.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_9d1b56671f154da61f9fed9e.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_1c21b8a4a0f962f1a3a16a50.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936000;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_c29f5b3e2630bf265b966010.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_a83bf0878775585e9f492a7f.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_1c21b8a4a0f962f1a3a16a50.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936000;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_c29f5b3e2630bf265b966010.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_a83bf0878775585e9f492a7f.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_1c21b8a4a0f962f1a3a16a50.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.936000;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_c29f5b3e2630bf265b966010.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_a83bf0878775585e9f492a7f.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_898d04e8cfaf55207c12d89d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.680176;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_af1a6ac1f0c0cfeaaa139fed.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);}
.m3{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);}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.v3{vertical-align:54.000000px;}
.ls4{letter-spacing:-1.776000px;}
.ls6{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.596700px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.397200px;}
.lsa{letter-spacing:0.397402px;}
.ls7{letter-spacing:0.599400px;}
.lsb{letter-spacing:0.720000px;}
.ls0{letter-spacing:3.780000px;}
.ls1{letter-spacing:17.200200px;}
.ls2{letter-spacing:24.492000px;}
.ls5{letter-spacing:1594.030800px;}
.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;}
}
.ws8{word-spacing:-18.348000px;}
.ws4{word-spacing:-15.600000px;}
.ws5{word-spacing:-15.012000px;}
.wscf{word-spacing:-14.700000px;}
.ws1{word-spacing:-14.400000px;}
.wsa9{word-spacing:-13.344000px;}
.ws2{word-spacing:-12.960000px;}
.wsf8{word-spacing:-12.240000px;}
.ws0{word-spacing:-12.164724px;}
.ws9{word-spacing:-11.520480px;}
.wsf3{word-spacing:-11.520000px;}
.wsd0{word-spacing:-10.740202px;}
.ws3{word-spacing:-10.342800px;}
.wsce{word-spacing:-9.746100px;}
.wsf2{word-spacing:-7.637760px;}
.ws25{word-spacing:-5.820000px;}
.wscc{word-spacing:-5.040000px;}
.wsca{word-spacing:-4.500000px;}
.wse4{word-spacing:-4.440600px;}
.wsa3{word-spacing:-4.079400px;}
.ws77{word-spacing:-3.840000px;}
.ws7d{word-spacing:-3.360000px;}
.ws44{word-spacing:-3.240000px;}
.ws28{word-spacing:-3.059400px;}
.wsd1{word-spacing:-3.000000px;}
.ws26{word-spacing:-2.760600px;}
.ws50{word-spacing:-2.640600px;}
.wsba{word-spacing:-2.520600px;}
.ws4f{word-spacing:-2.460000px;}
.ws7e{word-spacing:-2.340000px;}
.ws73{word-spacing:-2.220000px;}
.ws5d{word-spacing:-2.160000px;}
.ws1b{word-spacing:-2.100000px;}
.ws7c{word-spacing:-2.040000px;}
.wsa5{word-spacing:-1.920000px;}
.wsec{word-spacing:-1.800000px;}
.wsa{word-spacing:-1.776000px;}
.ws22{word-spacing:-1.619400px;}
.ws6e{word-spacing:-1.440000px;}
.wsf6{word-spacing:-1.379400px;}
.ws5b{word-spacing:-1.260000px;}
.ws83{word-spacing:-1.200000px;}
.wsc7{word-spacing:-1.020000px;}
.wse5{word-spacing:-0.960600px;}
.ws42{word-spacing:-0.840600px;}
.wsde{word-spacing:-0.780000px;}
.ws23{word-spacing:-0.660000px;}
.ws78{word-spacing:-0.599400px;}
.ws30{word-spacing:-0.594000px;}
.wsa0{word-spacing:-0.540000px;}
.wscd{word-spacing:-0.300000px;}
.ws19{word-spacing:-0.240000px;}
.ws27{word-spacing:-0.180600px;}
.ws63{word-spacing:-0.120000px;}
.ws2f{word-spacing:-0.054540px;}
.ws6{word-spacing:0.000000px;}
.ws91{word-spacing:0.060600px;}
.ws3e{word-spacing:0.240000px;}
.wse3{word-spacing:0.360000px;}
.ws69{word-spacing:0.420000px;}
.ws18{word-spacing:0.540000px;}
.ws2b{word-spacing:0.594000px;}
.wsf1{word-spacing:0.596700px;}
.wsc3{word-spacing:0.599400px;}
.ws8c{word-spacing:0.660000px;}
.ws3a{word-spacing:0.719400px;}
.wsa6{word-spacing:0.780000px;}
.wsd4{word-spacing:0.840600px;}
.ws1a{word-spacing:0.900000px;}
.ws3b{word-spacing:0.960600px;}
.wsea{word-spacing:1.080600px;}
.ws47{word-spacing:1.260000px;}
.wsc6{word-spacing:1.440000px;}
.wsb{word-spacing:1.560000px;}
.ws1e{word-spacing:1.619400px;}
.wsd7{word-spacing:1.740600px;}
.ws7{word-spacing:1.776000px;}
.wsf{word-spacing:1.800000px;}
.wsef{word-spacing:2.279400px;}
.ws70{word-spacing:2.340000px;}
.wsdd{word-spacing:2.580000px;}
.ws3f{word-spacing:2.640600px;}
.ws99{word-spacing:2.704642px;}
.ws17{word-spacing:2.880000px;}
.ws55{word-spacing:2.940000px;}
.ws71{word-spacing:3.000000px;}
.ws79{word-spacing:3.120000px;}
.wsbd{word-spacing:3.179400px;}
.wse6{word-spacing:3.240000px;}
.wsc{word-spacing:3.299400px;}
.ws29{word-spacing:3.420600px;}
.wse9{word-spacing:3.540600px;}
.ws6a{word-spacing:3.660000px;}
.wsa7{word-spacing:3.780000px;}
.ws4d{word-spacing:3.840000px;}
.ws5c{word-spacing:3.900000px;}
.ws3d{word-spacing:3.959400px;}
.ws4b{word-spacing:4.079400px;}
.ws41{word-spacing:4.140000px;}
.ws9b{word-spacing:4.200600px;}
.wsbc{word-spacing:4.260000px;}
.wsd8{word-spacing:4.320600px;}
.wsc1{word-spacing:4.375800px;}
.ws59{word-spacing:4.380000px;}
.wsc9{word-spacing:4.440600px;}
.wsc2{word-spacing:4.500000px;}
.ws43{word-spacing:4.560000px;}
.ws9c{word-spacing:4.620000px;}
.ws38{word-spacing:4.739400px;}
.ws64{word-spacing:4.859400px;}
.ws9f{word-spacing:5.040000px;}
.ws32{word-spacing:5.075460px;}
.wse7{word-spacing:5.100600px;}
.wsf0{word-spacing:5.220600px;}
.ws96{word-spacing:5.280000px;}
.ws49{word-spacing:5.340000px;}
.ws7f{word-spacing:5.460000px;}
.ws5f{word-spacing:5.759400px;}
.ws37{word-spacing:5.940000px;}
.ws81{word-spacing:6.000600px;}
.wsda{word-spacing:6.060000px;}
.ws82{word-spacing:6.120600px;}
.ws52{word-spacing:6.180000px;}
.wsdf{word-spacing:6.240000px;}
.wsc5{word-spacing:6.364800px;}
.ws97{word-spacing:6.419400px;}
.ws66{word-spacing:6.480000px;}
.ws21{word-spacing:6.539400px;}
.wsc0{word-spacing:6.600000px;}
.ws85{word-spacing:6.780600px;}
.ws65{word-spacing:6.840000px;}
.ws6b{word-spacing:6.900600px;}
.ws87{word-spacing:6.960000px;}
.ws8b{word-spacing:7.080000px;}
.ws8f{word-spacing:7.200000px;}
.wsa8{word-spacing:7.260000px;}
.wsed{word-spacing:7.380000px;}
.wsdb{word-spacing:7.439400px;}
.ws31{word-spacing:7.614540px;}
.ws95{word-spacing:7.620000px;}
.ws2a{word-spacing:7.722540px;}
.wsc8{word-spacing:7.740000px;}
.ws51{word-spacing:8.040000px;}
.ws4a{word-spacing:8.160000px;}
.wsa4{word-spacing:8.340600px;}
.ws4e{word-spacing:8.460600px;}
.ws75{word-spacing:8.580600px;}
.ws90{word-spacing:8.640000px;}
.wsd3{word-spacing:8.700000px;}
.ws3c{word-spacing:8.760000px;}
.ws94{word-spacing:9.119400px;}
.ws14{word-spacing:9.180000px;}
.wscb{word-spacing:9.240600px;}
.ws6d{word-spacing:9.420000px;}
.ws72{word-spacing:9.540000px;}
.wsc4{word-spacing:9.600000px;}
.ws88{word-spacing:9.779400px;}
.ws16{word-spacing:9.899400px;}
.wsb7{word-spacing:9.960000px;}
.ws58{word-spacing:10.080000px;}
.ws13{word-spacing:10.140600px;}
.wsf5{word-spacing:10.200000px;}
.ws86{word-spacing:10.380000px;}
.ws46{word-spacing:10.679400px;}
.wsa1{word-spacing:10.740000px;}
.ws2d{word-spacing:10.800000px;}
.wsd2{word-spacing:11.160000px;}
.ws40{word-spacing:11.459400px;}
.ws61{word-spacing:11.579400px;}
.ws56{word-spacing:11.700600px;}
.wsd6{word-spacing:12.000000px;}
.ws11{word-spacing:12.060000px;}
.ws2c{word-spacing:12.150540px;}
.wse2{word-spacing:12.239400px;}
.ws1d{word-spacing:12.292418px;}
.ws93{word-spacing:12.300000px;}
.ws45{word-spacing:12.420000px;}
.ws8d{word-spacing:12.540000px;}
.wsbf{word-spacing:12.600600px;}
.ws7a{word-spacing:12.720600px;}
.ws68{word-spacing:12.840000px;}
.wsd{word-spacing:13.080000px;}
.ws9a{word-spacing:13.200000px;}
.ws6f{word-spacing:13.440000px;}
.wsdc{word-spacing:13.560000px;}
.ws8a{word-spacing:13.680000px;}
.ws80{word-spacing:13.740000px;}
.ws84{word-spacing:13.860000px;}
.wsee{word-spacing:14.159400px;}
.ws1f{word-spacing:14.220000px;}
.ws4c{word-spacing:14.280600px;}
.wsa2{word-spacing:14.340000px;}
.wse{word-spacing:14.400600px;}
.wsf7{word-spacing:14.520000px;}
.ws39{word-spacing:14.640000px;}
.wsbb{word-spacing:14.760000px;}
.ws98{word-spacing:14.880000px;}
.wseb{word-spacing:14.939400px;}
.ws89{word-spacing:15.120000px;}
.ws2e{word-spacing:15.444000px;}
.ws8e{word-spacing:15.540000px;}
.ws24{word-spacing:15.660000px;}
.ws92{word-spacing:15.719400px;}
.ws67{word-spacing:15.900000px;}
.ws9e{word-spacing:16.080600px;}
.ws76{word-spacing:16.140000px;}
.ws57{word-spacing:16.379400px;}
.wsb9{word-spacing:16.560000px;}
.wsb8{word-spacing:16.740600px;}
.ws5a{word-spacing:17.040000px;}
.ws54{word-spacing:17.880000px;}
.ws7b{word-spacing:18.059400px;}
.wse1{word-spacing:18.480000px;}
.ws1c{word-spacing:18.540600px;}
.ws48{word-spacing:18.720000px;}
.ws62{word-spacing:19.140000px;}
.wsd9{word-spacing:19.200600px;}
.wsbe{word-spacing:19.320600px;}
.ws6c{word-spacing:20.220600px;}
.ws9d{word-spacing:21.480000px;}
.wsf4{word-spacing:21.600000px;}
.ws15{word-spacing:23.700000px;}
.wsd5{word-spacing:24.180000px;}
.wse0{word-spacing:24.540000px;}
.ws12{word-spacing:25.920600px;}
.ws10{word-spacing:26.700600px;}
.ws20{word-spacing:27.000000px;}
.ws74{word-spacing:27.300000px;}
.ws60{word-spacing:28.680000px;}
.ws5e{word-spacing:30.120000px;}
.wsb6{word-spacing:34.656000px;}
.wse8{word-spacing:40.500000px;}
.wsb1{word-spacing:41.616000px;}
.ws53{word-spacing:42.720600px;}
.wsb5{word-spacing:45.264000px;}
.wsad{word-spacing:49.152000px;}
.wsaf{word-spacing:55.152000px;}
.wsb2{word-spacing:61.728000px;}
.wsac{word-spacing:65.616000px;}
.wsb3{word-spacing:67.920000px;}
.wsab{word-spacing:68.448000px;}
.wsae{word-spacing:71.616000px;}
.wsb0{word-spacing:75.264000px;}
.wsaa{word-spacing:75.936000px;}
.ws35{word-spacing:77.814000px;}
.ws33{word-spacing:94.122000px;}
.ws36{word-spacing:106.650000px;}
.ws34{word-spacing:119.826000px;}
.wsb4{word-spacing:222.912000px;}
._e{margin-left:-2965.460220px;}
._d{margin-left:-1983.796920px;}
._b{margin-left:-59.040000px;}
._8{margin-left:-47.970000px;}
._4f{margin-left:-13.320000px;}
._9{margin-left:-11.520000px;}
._4c{margin-left:-8.460000px;}
._24{margin-left:-6.206400px;}
._3{margin-left:-5.103888px;}
._5{margin-left:-3.552000px;}
._0{margin-left:-2.164800px;}
._7{margin-left:-1.156800px;}
._6{width:1.248000px;}
._25{width:2.454000px;}
._4d{width:12.960000px;}
._a{width:14.040000px;}
._2{width:18.348000px;}
._4e{width:20.610000px;}
._31{width:32.496000px;}
._f{width:38.097888px;}
._26{width:39.200400px;}
._28{width:42.384000px;}
._43{width:48.000000px;}
._2b{width:53.136000px;}
._23{width:62.910000px;}
._1{width:68.667000px;}
._4{width:69.672000px;}
._20{width:73.872000px;}
._42{width:78.585888px;}
._47{width:82.488000px;}
._33{width:84.561888px;}
._44{width:85.694112px;}
._3c{width:87.830112px;}
._3e{width:89.280000px;}
._2f{width:91.440000px;}
._16{width:92.826000px;}
._32{width:94.944000px;}
._29{width:100.944000px;}
._27{width:106.944000px;}
._2e{width:108.960000px;}
._4b{width:111.552000px;}
._3d{width:112.670112px;}
._2a{width:114.240000px;}
._3a{width:116.880000px;}
._1c{width:121.662000px;}
._35{width:126.000000px;}
._1a{width:134.838000px;}
._40{width:147.984000px;}
._11{width:148.986000px;}
._15{width:158.814000px;}
._3b{width:166.458000px;}
._17{width:169.722000px;}
._37{width:173.910000px;}
._34{width:180.000000px;}
._1d{width:185.868000px;}
._21{width:189.918000px;}
._30{width:192.090000px;}
._2c{width:193.146000px;}
._1f{width:194.886000px;}
._48{width:197.040000px;}
._36{width:198.441888px;}
._1e{width:200.934000px;}
._45{width:206.808000px;}
._38{width:208.416000px;}
._46{width:210.408000px;}
._49{width:215.256000px;}
._3f{width:220.262112px;}
._41{width:221.544000px;}
._12{width:222.966000px;}
._39{width:223.982112px;}
._18{width:225.936000px;}
._2d{width:236.654112px;}
._22{width:239.922000px;}
._13{width:245.916000px;}
._c{width:252.231840px;}
._1b{width:260.928000px;}
._4a{width:264.618000px;}
._14{width:270.000000px;}
._19{width:314.820000px;}
._10{width:782.784000px;}
.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);}
.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;}
.fs8{font-size:45.600000px;}
.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;}
.y17f{bottom:81.598500px;}
.y141{bottom:81.601350px;}
.y15d{bottom:81.603150px;}
.y53{bottom:81.610800px;}
.y10c{bottom:81.631350px;}
.y6e{bottom:81.634650px;}
.y1f{bottom:81.637800px;}
.y19e{bottom:81.928500px;}
.yd6{bottom:82.058850px;}
.yb5{bottom:82.073850px;}
.y142{bottom:87.586200px;}
.y1e{bottom:96.637800px;}
.y17e{bottom:99.598500px;}
.y140{bottom:99.601350px;}
.y15c{bottom:99.603150px;}
.y52{bottom:99.610800px;}
.y10b{bottom:99.631350px;}
.y6d{bottom:99.694650px;}
.yb4{bottom:100.103850px;}
.y19d{bottom:100.498500px;}
.y1d{bottom:111.637800px;}
.y226{bottom:112.880100px;}
.y1d8{bottom:112.891350px;}
.y17d{bottom:117.598500px;}
.y13f{bottom:117.601350px;}
.y15b{bottom:117.603150px;}
.y51{bottom:117.610800px;}
.y10a{bottom:117.631350px;}
.y6c{bottom:117.754650px;}
.yb3{bottom:118.133850px;}
.yd5{bottom:118.148850px;}
.y19c{bottom:119.068500px;}
.y225{bottom:125.626350px;}
.y1d7{bottom:127.711350px;}
.y17c{bottom:135.598500px;}
.y13e{bottom:135.601350px;}
.y15a{bottom:135.603150px;}
.y50{bottom:135.610800px;}
.y109{bottom:135.631350px;}
.y6b{bottom:135.814650px;}
.yb2{bottom:136.163850px;}
.yd4{bottom:136.193850px;}
.y19b{bottom:137.638500px;}
.y224{bottom:138.372600px;}
.y1c{bottom:140.137800px;}
.y1d6{bottom:142.531350px;}
.y223{bottom:151.118850px;}
.y17b{bottom:153.598500px;}
.y13d{bottom:153.601350px;}
.y159{bottom:153.603150px;}
.y4f{bottom:153.610800px;}
.y108{bottom:153.631350px;}
.y6a{bottom:153.874650px;}
.yb1{bottom:154.193850px;}
.yd3{bottom:154.238850px;}
.y1b{bottom:155.137800px;}
.y19a{bottom:156.208500px;}
.y143{bottom:156.586200px;}
.y1d5{bottom:157.351350px;}
.y222{bottom:163.865100px;}
.y14c{bottom:168.586200px;}
.y17a{bottom:171.598500px;}
.y13c{bottom:171.601350px;}
.y158{bottom:171.603150px;}
.y4e{bottom:171.610800px;}
.y107{bottom:171.631350px;}
.y69{bottom:171.934650px;}
.yb0{bottom:172.223850px;}
.yd2{bottom:172.283850px;}
.y25{bottom:174.205650px;}
.y199{bottom:174.778500px;}
.y221{bottom:176.611350px;}
.y1d4{bottom:184.171350px;}
.y24{bottom:188.605650px;}
.y220{bottom:189.357600px;}
.y179{bottom:189.598500px;}
.y13b{bottom:189.601350px;}
.y157{bottom:189.603150px;}
.y4d{bottom:189.610800px;}
.y106{bottom:189.631350px;}
.y68{bottom:189.994650px;}
.yaf{bottom:190.253850px;}
.yd1{bottom:190.328850px;}
.y198{bottom:193.348650px;}
.y1d3{bottom:198.991350px;}
.y21f{bottom:202.103850px;}
.y23{bottom:203.005650px;}
.y178{bottom:207.598500px;}
.y13a{bottom:207.601350px;}
.y156{bottom:207.603150px;}
.y4c{bottom:207.610800px;}
.y105{bottom:207.631350px;}
.y67{bottom:208.054650px;}
.yae{bottom:208.283850px;}
.yd0{bottom:208.373850px;}
.y197{bottom:211.918650px;}
.y144{bottom:212.086200px;}
.y1d2{bottom:213.811350px;}
.y21e{bottom:214.850100px;}
.y22{bottom:217.405650px;}
.y177{bottom:225.598500px;}
.y139{bottom:225.601350px;}
.y155{bottom:225.603150px;}
.y104{bottom:225.631350px;}
.y66{bottom:226.114650px;}
.yad{bottom:226.313850px;}
.ycf{bottom:226.418850px;}
.y21d{bottom:227.596350px;}
.y1d1{bottom:228.631350px;}
.y196{bottom:230.488650px;}
.y21{bottom:231.805650px;}
.y21c{bottom:240.342600px;}
.y1d0{bottom:243.451350px;}
.y176{bottom:243.598500px;}
.y138{bottom:243.601350px;}
.y154{bottom:243.603150px;}
.y103{bottom:243.631350px;}
.y65{bottom:244.174650px;}
.yac{bottom:244.343850px;}
.yce{bottom:244.463850px;}
.y20{bottom:246.205650px;}
.y195{bottom:249.058650px;}
.y21b{bottom:253.088850px;}
.y1cf{bottom:258.271350px;}
.y4b{bottom:258.448800px;}
.y175{bottom:261.598500px;}
.y137{bottom:261.601350px;}
.y153{bottom:261.603150px;}
.y102{bottom:261.631350px;}
.y64{bottom:262.234650px;}
.yab{bottom:262.373850px;}
.ycd{bottom:262.508850px;}
.y21a{bottom:265.835100px;}
.y194{bottom:267.628650px;}
.y1ce{bottom:273.091350px;}
.y4a{bottom:274.945800px;}
.y219{bottom:278.581350px;}
.y174{bottom:279.598500px;}
.y136{bottom:279.601350px;}
.y152{bottom:279.603150px;}
.y63{bottom:280.294650px;}
.yaa{bottom:280.403850px;}
.ycc{bottom:280.553850px;}
.y145{bottom:284.086200px;}
.y193{bottom:286.198650px;}
.y218{bottom:291.327600px;}
.y49{bottom:291.442800px;}
.y1cd{bottom:293.911350px;}
.y101{bottom:295.921350px;}
.y173{bottom:297.598500px;}
.y135{bottom:297.601350px;}
.y151{bottom:297.603150px;}
.y62{bottom:298.354650px;}
.ya9{bottom:298.433850px;}
.ycb{bottom:298.598850px;}
.y217{bottom:304.073850px;}
.y192{bottom:304.768650px;}
.y48{bottom:307.939800px;}
.y1cc{bottom:308.311350px;}
.y100{bottom:313.921350px;}
.y172{bottom:315.598500px;}
.y134{bottom:315.601350px;}
.y150{bottom:315.603150px;}
.y61{bottom:316.414650px;}
.ya8{bottom:316.463850px;}
.yca{bottom:316.643850px;}
.y216{bottom:316.820100px;}
.y191{bottom:323.338650px;}
.y47{bottom:324.436800px;}
.y1cb{bottom:328.711350px;}
.y215{bottom:329.566350px;}
.yff{bottom:331.921350px;}
.y171{bottom:333.598500px;}
.y133{bottom:333.601350px;}
.y14f{bottom:333.603150px;}
.y60{bottom:334.474650px;}
.ya7{bottom:334.493850px;}
.yc9{bottom:334.688850px;}
.y46{bottom:340.933800px;}
.y190{bottom:341.908650px;}
.y214{bottom:342.312600px;}
.y1ca{bottom:349.531350px;}
.yfe{bottom:349.921350px;}
.y170{bottom:351.598500px;}
.y132{bottom:351.601350px;}
.y14e{bottom:351.603150px;}
.ya6{bottom:352.523850px;}
.y5f{bottom:352.534650px;}
.yc8{bottom:352.733850px;}
.y213{bottom:355.058850px;}
.y149{bottom:355.798200px;}
.y45{bottom:357.430800px;}
.y18f{bottom:360.478500px;}
.y1c9{bottom:364.351350px;}
.y212{bottom:367.805100px;}
.yfd{bottom:367.921350px;}
.y16f{bottom:369.598500px;}
.y131{bottom:369.601350px;}
.ya5{bottom:370.553850px;}
.y5e{bottom:370.594650px;}
.yc7{bottom:370.778850px;}
.y44{bottom:373.927800px;}
.y18e{bottom:379.048500px;}
.y211{bottom:380.551350px;}
.y1c8{bottom:385.171350px;}
.yfc{bottom:385.921350px;}
.y16e{bottom:387.598500px;}
.y130{bottom:387.601350px;}
.ya4{bottom:388.583850px;}
.y5d{bottom:388.654650px;}
.yc6{bottom:388.823850px;}
.y43{bottom:390.424800px;}
.y210{bottom:393.297600px;}
.y14d{bottom:396.603000px;}
.y18d{bottom:397.618500px;}
.yfb{bottom:403.921350px;}
.y16d{bottom:405.598500px;}
.y12f{bottom:405.601350px;}
.y20f{bottom:406.043850px;}
.y1c7{bottom:406.591350px;}
.ya3{bottom:406.613850px;}
.y5c{bottom:406.714650px;}
.yc5{bottom:406.868850px;}
.y42{bottom:406.921800px;}
.y18c{bottom:416.188500px;}
.y20e{bottom:418.790100px;}
.yfa{bottom:421.921350px;}
.y41{bottom:423.418800px;}
.y16c{bottom:423.598500px;}
.y12e{bottom:423.601350px;}
.ya2{bottom:424.643850px;}
.y5b{bottom:424.774650px;}
.y14a{bottom:424.798200px;}
.yc4{bottom:424.913850px;}
.y1c6{bottom:426.991350px;}
.y20d{bottom:431.536350px;}
.y18b{bottom:434.758500px;}
.y40{bottom:439.915800px;}
.yf9{bottom:439.921350px;}
.y16b{bottom:441.598500px;}
.y12d{bottom:441.601350px;}
.y1c5{bottom:441.811350px;}
.ya1{bottom:442.673850px;}
.y5a{bottom:442.834650px;}
.yc3{bottom:442.958850px;}
.y20c{bottom:444.282600px;}
.y18a{bottom:453.328500px;}
.y3f{bottom:456.412800px;}
.y20b{bottom:457.028850px;}
.yf8{bottom:457.921350px;}
.y16a{bottom:459.598500px;}
.y12c{bottom:459.601350px;}
.ya0{bottom:460.703850px;}
.y59{bottom:460.894650px;}
.yc2{bottom:461.003850px;}
.y1c4{bottom:462.631350px;}
.y20a{bottom:469.775100px;}
.y189{bottom:471.898500px;}
.y3e{bottom:472.909800px;}
.yf7{bottom:475.921350px;}
.y1c3{bottom:477.031350px;}
.y169{bottom:477.598500px;}
.y12b{bottom:477.601350px;}
.y9f{bottom:478.733850px;}
.y58{bottom:478.954650px;}
.yc1{bottom:479.048850px;}
.y209{bottom:482.521350px;}
.y3d{bottom:489.406800px;}
.y188{bottom:490.468500px;}
.y1c2{bottom:491.431350px;}
.yf6{bottom:493.921350px;}
.y208{bottom:495.267600px;}
.y168{bottom:495.598500px;}
.y12a{bottom:495.601350px;}
.y9e{bottom:496.763850px;}
.y57{bottom:497.014650px;}
.yc0{bottom:497.093850px;}
.y1c1{bottom:505.831350px;}
.y3c{bottom:505.903800px;}
.y207{bottom:508.013850px;}
.y187{bottom:509.038500px;}
.yf5{bottom:511.921350px;}
.y167{bottom:513.598500px;}
.y129{bottom:513.601350px;}
.y9d{bottom:514.793850px;}
.y56{bottom:515.080800px;}
.ybf{bottom:515.138850px;}
.y1c0{bottom:520.231350px;}
.y206{bottom:520.760100px;}
.y3b{bottom:522.400800px;}
.y186{bottom:527.608500px;}
.yf4{bottom:529.921350px;}
.y166{bottom:531.598500px;}
.y128{bottom:531.601350px;}
.y9c{bottom:532.823850px;}
.y55{bottom:533.140800px;}
.ybe{bottom:533.183850px;}
.y205{bottom:533.506350px;}
.y3a{bottom:538.897800px;}
.y185{bottom:546.178500px;}
.y204{bottom:546.252600px;}
.yf3{bottom:547.921350px;}
.y165{bottom:549.598500px;}
.y127{bottom:549.601350px;}
.y9b{bottom:550.853850px;}
.y54{bottom:551.200800px;}
.ybd{bottom:551.228850px;}
.y39{bottom:555.394800px;}
.y203{bottom:558.998850px;}
.y1bf{bottom:559.051350px;}
.y184{bottom:564.748500px;}
.yf2{bottom:565.921350px;}
.y164{bottom:567.598500px;}
.y126{bottom:567.601350px;}
.y9a{bottom:568.883850px;}
.y1be{bottom:569.071350px;}
.ybc{bottom:569.273850px;}
.y202{bottom:571.745100px;}
.y38{bottom:571.891800px;}
.y183{bottom:583.318500px;}
.yf1{bottom:583.921350px;}
.y201{bottom:584.491350px;}
.y163{bottom:585.598500px;}
.y125{bottom:585.601350px;}
.y99{bottom:586.913850px;}
.ybb{bottom:587.318850px;}
.y37{bottom:588.388800px;}
.y1bd{bottom:589.891350px;}
.y1a{bottom:593.434650px;}
.y200{bottom:597.237600px;}
.y182{bottom:601.888500px;}
.yf0{bottom:601.921350px;}
.y162{bottom:603.598500px;}
.y124{bottom:603.601350px;}
.y36{bottom:604.885800px;}
.y98{bottom:604.943850px;}
.y1bc{bottom:605.311350px;}
.yba{bottom:605.363850px;}
.y19{bottom:608.434650px;}
.y1ff{bottom:609.983850px;}
.y7d{bottom:613.612350px;}
.yef{bottom:619.921350px;}
.y181{bottom:620.458500px;}
.y1bb{bottom:620.731350px;}
.y35{bottom:621.382800px;}
.y161{bottom:621.598500px;}
.y123{bottom:621.601350px;}
.y1fe{bottom:622.730100px;}
.y97{bottom:622.973850px;}
.yb9{bottom:623.408850px;}
.y18{bottom:623.434650px;}
.y7c{bottom:630.109350px;}
.y1ba{bottom:630.751350px;}
.y1fd{bottom:635.476350px;}
.y34{bottom:637.879800px;}
.yee{bottom:637.921350px;}
.y180{bottom:639.028500px;}
.y160{bottom:639.598500px;}
.y122{bottom:639.601350px;}
.y96{bottom:641.003850px;}
.yb8{bottom:641.453850px;}
.y7b{bottom:646.612350px;}
.y1fc{bottom:648.222600px;}
.y1b9{bottom:651.571350px;}
.y17{bottom:651.934650px;}
.y33{bottom:654.376800px;}
.yed{bottom:655.921350px;}
.y15f{bottom:657.598500px;}
.y121{bottom:657.601350px;}
.y95{bottom:659.033850px;}
.yb7{bottom:659.498850px;}
.y1fb{bottom:660.968850px;}
.y1b8{bottom:661.591350px;}
.y7a{bottom:663.109350px;}
.y16{bottom:666.934650px;}
.y32{bottom:670.873800px;}
.y146{bottom:672.298200px;}
.y1fa{bottom:673.715100px;}
.yec{bottom:673.921350px;}
.y120{bottom:675.601350px;}
.y94{bottom:677.063850px;}
.yb6{bottom:677.543850px;}
.y79{bottom:679.618350px;}
.y15{bottom:681.934650px;}
.y1b7{bottom:682.411350px;}
.y1f9{bottom:686.461350px;}
.y31{bottom:687.370800px;}
.yeb{bottom:691.921350px;}
.y11f{bottom:693.601350px;}
.y78{bottom:696.115350px;}
.y14{bottom:696.934650px;}
.y1b6{bottom:697.831350px;}
.y1f8{bottom:699.207600px;}
.y30{bottom:703.867800px;}
.y1b5{bottom:707.851350px;}
.yea{bottom:709.921350px;}
.y15e{bottom:710.818500px;}
.y11e{bottom:711.601350px;}
.y13{bottom:711.934650px;}
.y1f7{bottom:711.953850px;}
.y77{bottom:712.612350px;}
.y2f{bottom:720.364800px;}
.y1f6{bottom:724.700100px;}
.y12{bottom:726.934650px;}
.ye9{bottom:727.921350px;}
.y1b4{bottom:728.671350px;}
.y76{bottom:729.109350px;}
.y11d{bottom:729.601350px;}
.y7e{bottom:730.181745px;}
.y2e{bottom:736.861800px;}
.y1f5{bottom:737.446350px;}
.y1b3{bottom:738.691350px;}
.y93{bottom:739.958700px;}
.y11{bottom:741.934650px;}
.y75{bottom:745.618350px;}
.y147{bottom:745.798200px;}
.ye8{bottom:745.921350px;}
.y11c{bottom:747.601350px;}
.y1f4{bottom:750.192600px;}
.y2d{bottom:753.358800px;}
.y92{bottom:754.958700px;}
.y1b2{bottom:759.511350px;}
.y74{bottom:762.115350px;}
.y1f3{bottom:762.938850px;}
.ye7{bottom:763.921350px;}
.y11b{bottom:765.601350px;}
.y10{bottom:765.934650px;}
.y1b1{bottom:769.531350px;}
.y2c{bottom:769.855800px;}
.y91{bottom:769.958700px;}
.y1f2{bottom:775.685100px;}
.y73{bottom:778.612350px;}
.yf{bottom:780.934650px;}
.ye6{bottom:781.921350px;}
.y11a{bottom:783.601350px;}
.y2b{bottom:786.352800px;}
.y1f1{bottom:788.431350px;}
.y1b0{bottom:790.351350px;}
.y72{bottom:795.109350px;}
.ye{bottom:795.934650px;}
.y90{bottom:796.516650px;}
.ye5{bottom:799.921350px;}
.y1f0{bottom:801.177600px;}
.y119{bottom:801.601350px;}
.y2a{bottom:802.849800px;}
.y1af{bottom:805.771350px;}
.yd{bottom:810.934650px;}
.y71{bottom:811.612350px;}
.y8f{bottom:812.716650px;}
.y1ef{bottom:813.923850px;}
.y1ae{bottom:815.791350px;}
.y148{bottom:817.798200px;}
.ye4{bottom:817.921350px;}
.y29{bottom:819.346800px;}
.y118{bottom:819.601350px;}
.yc{bottom:825.934650px;}
.y1ee{bottom:826.670100px;}
.y70{bottom:828.109350px;}
.y8e{bottom:832.858650px;}
.y28{bottom:835.843800px;}
.ye3{bottom:835.921350px;}
.y117{bottom:837.601350px;}
.y1ed{bottom:839.416350px;}
.yb{bottom:840.934650px;}
.y8d{bottom:849.058650px;}
.y1ad{bottom:849.211350px;}
.y1ec{bottom:852.162600px;}
.y27{bottom:852.340800px;}
.ye2{bottom:853.921350px;}
.y116{bottom:855.601350px;}
.ya{bottom:855.934650px;}
.y6f{bottom:859.840650px;}
.y1eb{bottom:864.908850px;}
.y1ac{bottom:867.631350px;}
.y26{bottom:868.840800px;}
.y8c{bottom:870.699150px;}
.y9{bottom:870.934650px;}
.ye1{bottom:871.921350px;}
.y1ea{bottom:877.655100px;}
.y14b{bottom:885.298200px;}
.y1ab{bottom:886.051350px;}
.ye0{bottom:889.921350px;}
.y1e9{bottom:890.401350px;}
.y8b{bottom:892.339650px;}
.y1e8{bottom:903.147600px;}
.y1aa{bottom:904.471350px;}
.ydf{bottom:907.921350px;}
.y115{bottom:909.571350px;}
.y8a{bottom:913.980150px;}
.y1e7{bottom:915.893850px;}
.y1a9{bottom:922.891350px;}
.yde{bottom:925.921350px;}
.y114{bottom:927.571350px;}
.y1e6{bottom:928.640100px;}
.y89{bottom:934.122150px;}
.y8{bottom:937.837650px;}
.y1a8{bottom:941.311350px;}
.y1e5{bottom:941.386350px;}
.ydd{bottom:943.921350px;}
.y113{bottom:945.571350px;}
.y88{bottom:950.322150px;}
.y1e4{bottom:954.132600px;}
.y7{bottom:957.340650px;}
.y1a7{bottom:959.731350px;}
.y112{bottom:963.571350px;}
.y1e3{bottom:966.878850px;}
.y82{bottom:974.959650px;}
.y1a6{bottom:978.151350px;}
.y1e2{bottom:979.625100px;}
.y111{bottom:981.571350px;}
.y84{bottom:991.159650px;}
.y1e1{bottom:992.371350px;}
.y1a5{bottom:996.571350px;}
.y110{bottom:999.571350px;}
.ydc{bottom:1001.281350px;}
.y1e0{bottom:1005.117600px;}
.y85{bottom:1007.359650px;}
.y1a4{bottom:1014.991350px;}
.y6{bottom:1015.828650px;}
.y10f{bottom:1017.571350px;}
.y1df{bottom:1017.863850px;}
.ydb{bottom:1019.281350px;}
.y87{bottom:1023.559650px;}
.y1de{bottom:1030.610100px;}
.y1a3{bottom:1033.411350px;}
.y10e{bottom:1035.571350px;}
.yda{bottom:1037.281350px;}
.y86{bottom:1039.759650px;}
.y1dd{bottom:1043.356350px;}
.y1a2{bottom:1051.831350px;}
.y10d{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y1dc{bottom:1056.102600px;}
.y83{bottom:1061.400150px;}
.y1db{bottom:1068.848850px;}
.y1a1{bottom:1070.251350px;}
.yd9{bottom:1071.571350px;}
.y1da{bottom:1081.595100px;}
.y81{bottom:1083.415350px;}
.y1a0{bottom:1088.671350px;}
.yd8{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y1d9{bottom:1094.341350px;}
.y80{bottom:1099.912350px;}
.y19f{bottom:1107.091350px;}
.yd7{bottom:1107.571350px;}
.y3{bottom:1140.946200px;}
.y7f{bottom:1140.946350px;}
.h16{height:23.931648px;}
.h17{height:34.875000px;}
.h8{height:34.944000px;}
.h11{height:35.088000px;}
.h13{height:35.340000px;}
.h3{height:36.096000px;}
.h10{height:37.200000px;}
.h12{height:37.213200px;}
.hf{height:39.474000px;}
.h9{height:40.608000px;}
.he{height:41.850000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.ha{height:44.040000px;}
.hc{height:56.173920px;}
.h15{height:56.197920px;}
.hb{height:56.198520px;}
.h14{height:56.199120px;}
.h6{height:63.612450px;}
.h7{height:63.624450px;}
.h5{height:95.906250px;}
.hd{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;}
.x16{left:74.250000px;}
.x1a{left:97.433850px;}
.x1d{left:118.376550px;}
.x1c{left:138.944550px;}
.xe{left:145.481700px;}
.x1b{left:153.344550px;}
.x15{left:160.547700px;}
.x1e{left:176.912550px;}
.x1f{left:195.980550px;}
.x20{left:216.548550px;}
.x4{left:220.379400px;}
.x12{left:236.984700px;}
.x21{left:257.684550px;}
.x2{left:263.603850px;}
.x22{left:278.252550px;}
.x23{left:298.820550px;}
.x24{left:319.388550px;}
.x13{left:326.989200px;}
.x25{left:339.956550px;}
.x26{left:360.524550px;}
.x27{left:381.092550px;}
.x28{left:401.660550px;}
.x29{left:422.228550px;}
.x2a{left:442.796550px;}
.x17{left:460.333200px;}
.x2b{left:463.364550px;}
.x18{left:473.833200px;}
.x2c{left:477.764550px;}
.x3d{left:484.249500px;}
.x14{left:497.993700px;}
.x2d{left:518.900550px;}
.x8{left:537.523500px;}
.x2e{left:539.468550px;}
.xa{left:546.518850px;}
.x9{left:551.017800px;}
.xb{left:558.395850px;}
.x2f{left:560.036550px;}
.xc{left:564.518850px;}
.x30{left:580.604550px;}
.x31{left:595.004550px;}
.x32{left:615.572550px;}
.x33{left:636.140550px;}
.xf{left:643.469700px;}
.x34{left:656.708550px;}
.x35{left:677.276550px;}
.x7{left:688.870650px;}
.x36{left:697.844550px;}
.x37{left:718.409250px;}
.x19{left:723.708900px;}
.x38{left:737.477250px;}
.x10{left:743.977200px;}
.x39{left:763.616550px;}
.x3a{left:777.296550px;}
.x3b{left:790.976550px;}
.x11{left:793.157700px;}
.x3c{left:804.656550px;}
.x1{left:824.963400px;}
.xd{left:853.499955px;}
@media print{
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.v3{vertical-align:48.000000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.530400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.353067pt;}
.lsa{letter-spacing:0.353246pt;}
.ls7{letter-spacing:0.532800pt;}
.lsb{letter-spacing:0.640000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls1{letter-spacing:15.289067pt;}
.ls2{letter-spacing:21.770667pt;}
.ls5{letter-spacing:1416.916267pt;}
.ws8{word-spacing:-16.309333pt;}
.ws4{word-spacing:-13.866667pt;}
.ws5{word-spacing:-13.344000pt;}
.wscf{word-spacing:-13.066667pt;}
.ws1{word-spacing:-12.800000pt;}
.wsa9{word-spacing:-11.861333pt;}
.ws2{word-spacing:-11.520000pt;}
.wsf8{word-spacing:-10.880000pt;}
.ws0{word-spacing:-10.813088pt;}
.ws9{word-spacing:-10.240427pt;}
.wsf3{word-spacing:-10.240000pt;}
.wsd0{word-spacing:-9.546846pt;}
.ws3{word-spacing:-9.193600pt;}
.wsce{word-spacing:-8.663200pt;}
.wsf2{word-spacing:-6.789120pt;}
.ws25{word-spacing:-5.173333pt;}
.wscc{word-spacing:-4.480000pt;}
.wsca{word-spacing:-4.000000pt;}
.wse4{word-spacing:-3.947200pt;}
.wsa3{word-spacing:-3.626133pt;}
.ws77{word-spacing:-3.413333pt;}
.ws7d{word-spacing:-2.986667pt;}
.ws44{word-spacing:-2.880000pt;}
.ws28{word-spacing:-2.719467pt;}
.wsd1{word-spacing:-2.666667pt;}
.ws26{word-spacing:-2.453867pt;}
.ws50{word-spacing:-2.347200pt;}
.wsba{word-spacing:-2.240533pt;}
.ws4f{word-spacing:-2.186667pt;}
.ws7e{word-spacing:-2.080000pt;}
.ws73{word-spacing:-1.973333pt;}
.ws5d{word-spacing:-1.920000pt;}
.ws1b{word-spacing:-1.866667pt;}
.ws7c{word-spacing:-1.813333pt;}
.wsa5{word-spacing:-1.706667pt;}
.wsec{word-spacing:-1.600000pt;}
.wsa{word-spacing:-1.578667pt;}
.ws22{word-spacing:-1.439467pt;}
.ws6e{word-spacing:-1.280000pt;}
.wsf6{word-spacing:-1.226133pt;}
.ws5b{word-spacing:-1.120000pt;}
.ws83{word-spacing:-1.066667pt;}
.wsc7{word-spacing:-0.906667pt;}
.wse5{word-spacing:-0.853867pt;}
.ws42{word-spacing:-0.747200pt;}
.wsde{word-spacing:-0.693333pt;}
.ws23{word-spacing:-0.586667pt;}
.ws78{word-spacing:-0.532800pt;}
.ws30{word-spacing:-0.528000pt;}
.wsa0{word-spacing:-0.480000pt;}
.wscd{word-spacing:-0.266667pt;}
.ws19{word-spacing:-0.213333pt;}
.ws27{word-spacing:-0.160533pt;}
.ws63{word-spacing:-0.106667pt;}
.ws2f{word-spacing:-0.048480pt;}
.ws6{word-spacing:0.000000pt;}
.ws91{word-spacing:0.053867pt;}
.ws3e{word-spacing:0.213333pt;}
.wse3{word-spacing:0.320000pt;}
.ws69{word-spacing:0.373333pt;}
.ws18{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.528000pt;}
.wsf1{word-spacing:0.530400pt;}
.wsc3{word-spacing:0.532800pt;}
.ws8c{word-spacing:0.586667pt;}
.ws3a{word-spacing:0.639467pt;}
.wsa6{word-spacing:0.693333pt;}
.wsd4{word-spacing:0.747200pt;}
.ws1a{word-spacing:0.800000pt;}
.ws3b{word-spacing:0.853867pt;}
.wsea{word-spacing:0.960533pt;}
.ws47{word-spacing:1.120000pt;}
.wsc6{word-spacing:1.280000pt;}
.wsb{word-spacing:1.386667pt;}
.ws1e{word-spacing:1.439467pt;}
.wsd7{word-spacing:1.547200pt;}
.ws7{word-spacing:1.578667pt;}
.wsf{word-spacing:1.600000pt;}
.wsef{word-spacing:2.026133pt;}
.ws70{word-spacing:2.080000pt;}
.wsdd{word-spacing:2.293333pt;}
.ws3f{word-spacing:2.347200pt;}
.ws99{word-spacing:2.404126pt;}
.ws17{word-spacing:2.560000pt;}
.ws55{word-spacing:2.613333pt;}
.ws71{word-spacing:2.666667pt;}
.ws79{word-spacing:2.773333pt;}
.wsbd{word-spacing:2.826133pt;}
.wse6{word-spacing:2.880000pt;}
.wsc{word-spacing:2.932800pt;}
.ws29{word-spacing:3.040533pt;}
.wse9{word-spacing:3.147200pt;}
.ws6a{word-spacing:3.253333pt;}
.wsa7{word-spacing:3.360000pt;}
.ws4d{word-spacing:3.413333pt;}
.ws5c{word-spacing:3.466667pt;}
.ws3d{word-spacing:3.519467pt;}
.ws4b{word-spacing:3.626133pt;}
.ws41{word-spacing:3.680000pt;}
.ws9b{word-spacing:3.733867pt;}
.wsbc{word-spacing:3.786667pt;}
.wsd8{word-spacing:3.840533pt;}
.wsc1{word-spacing:3.889600pt;}
.ws59{word-spacing:3.893333pt;}
.wsc9{word-spacing:3.947200pt;}
.wsc2{word-spacing:4.000000pt;}
.ws43{word-spacing:4.053333pt;}
.ws9c{word-spacing:4.106667pt;}
.ws38{word-spacing:4.212800pt;}
.ws64{word-spacing:4.319467pt;}
.ws9f{word-spacing:4.480000pt;}
.ws32{word-spacing:4.511520pt;}
.wse7{word-spacing:4.533867pt;}
.wsf0{word-spacing:4.640533pt;}
.ws96{word-spacing:4.693333pt;}
.ws49{word-spacing:4.746667pt;}
.ws7f{word-spacing:4.853333pt;}
.ws5f{word-spacing:5.119467pt;}
.ws37{word-spacing:5.280000pt;}
.ws81{word-spacing:5.333867pt;}
.wsda{word-spacing:5.386667pt;}
.ws82{word-spacing:5.440533pt;}
.ws52{word-spacing:5.493333pt;}
.wsdf{word-spacing:5.546667pt;}
.wsc5{word-spacing:5.657600pt;}
.ws97{word-spacing:5.706133pt;}
.ws66{word-spacing:5.760000pt;}
.ws21{word-spacing:5.812800pt;}
.wsc0{word-spacing:5.866667pt;}
.ws85{word-spacing:6.027200pt;}
.ws65{word-spacing:6.080000pt;}
.ws6b{word-spacing:6.133867pt;}
.ws87{word-spacing:6.186667pt;}
.ws8b{word-spacing:6.293333pt;}
.ws8f{word-spacing:6.400000pt;}
.wsa8{word-spacing:6.453333pt;}
.wsed{word-spacing:6.560000pt;}
.wsdb{word-spacing:6.612800pt;}
.ws31{word-spacing:6.768480pt;}
.ws95{word-spacing:6.773333pt;}
.ws2a{word-spacing:6.864480pt;}
.wsc8{word-spacing:6.880000pt;}
.ws51{word-spacing:7.146667pt;}
.ws4a{word-spacing:7.253333pt;}
.wsa4{word-spacing:7.413867pt;}
.ws4e{word-spacing:7.520533pt;}
.ws75{word-spacing:7.627200pt;}
.ws90{word-spacing:7.680000pt;}
.wsd3{word-spacing:7.733333pt;}
.ws3c{word-spacing:7.786667pt;}
.ws94{word-spacing:8.106133pt;}
.ws14{word-spacing:8.160000pt;}
.wscb{word-spacing:8.213867pt;}
.ws6d{word-spacing:8.373333pt;}
.ws72{word-spacing:8.480000pt;}
.wsc4{word-spacing:8.533333pt;}
.ws88{word-spacing:8.692800pt;}
.ws16{word-spacing:8.799467pt;}
.wsb7{word-spacing:8.853333pt;}
.ws58{word-spacing:8.960000pt;}
.ws13{word-spacing:9.013867pt;}
.wsf5{word-spacing:9.066667pt;}
.ws86{word-spacing:9.226667pt;}
.ws46{word-spacing:9.492800pt;}
.wsa1{word-spacing:9.546667pt;}
.ws2d{word-spacing:9.600000pt;}
.wsd2{word-spacing:9.920000pt;}
.ws40{word-spacing:10.186133pt;}
.ws61{word-spacing:10.292800pt;}
.ws56{word-spacing:10.400533pt;}
.wsd6{word-spacing:10.666667pt;}
.ws11{word-spacing:10.720000pt;}
.ws2c{word-spacing:10.800480pt;}
.wse2{word-spacing:10.879467pt;}
.ws1d{word-spacing:10.926594pt;}
.ws93{word-spacing:10.933333pt;}
.ws45{word-spacing:11.040000pt;}
.ws8d{word-spacing:11.146667pt;}
.wsbf{word-spacing:11.200533pt;}
.ws7a{word-spacing:11.307200pt;}
.ws68{word-spacing:11.413333pt;}
.wsd{word-spacing:11.626667pt;}
.ws9a{word-spacing:11.733333pt;}
.ws6f{word-spacing:11.946667pt;}
.wsdc{word-spacing:12.053333pt;}
.ws8a{word-spacing:12.160000pt;}
.ws80{word-spacing:12.213333pt;}
.ws84{word-spacing:12.320000pt;}
.wsee{word-spacing:12.586133pt;}
.ws1f{word-spacing:12.640000pt;}
.ws4c{word-spacing:12.693867pt;}
.wsa2{word-spacing:12.746667pt;}
.wse{word-spacing:12.800533pt;}
.wsf7{word-spacing:12.906667pt;}
.ws39{word-spacing:13.013333pt;}
.wsbb{word-spacing:13.120000pt;}
.ws98{word-spacing:13.226667pt;}
.wseb{word-spacing:13.279467pt;}
.ws89{word-spacing:13.440000pt;}
.ws2e{word-spacing:13.728000pt;}
.ws8e{word-spacing:13.813333pt;}
.ws24{word-spacing:13.920000pt;}
.ws92{word-spacing:13.972800pt;}
.ws67{word-spacing:14.133333pt;}
.ws9e{word-spacing:14.293867pt;}
.ws76{word-spacing:14.346667pt;}
.ws57{word-spacing:14.559467pt;}
.wsb9{word-spacing:14.720000pt;}
.wsb8{word-spacing:14.880533pt;}
.ws5a{word-spacing:15.146667pt;}
.ws54{word-spacing:15.893333pt;}
.ws7b{word-spacing:16.052800pt;}
.wse1{word-spacing:16.426667pt;}
.ws1c{word-spacing:16.480533pt;}
.ws48{word-spacing:16.640000pt;}
.ws62{word-spacing:17.013333pt;}
.wsd9{word-spacing:17.067200pt;}
.wsbe{word-spacing:17.173867pt;}
.ws6c{word-spacing:17.973867pt;}
.ws9d{word-spacing:19.093333pt;}
.wsf4{word-spacing:19.200000pt;}
.ws15{word-spacing:21.066667pt;}
.wsd5{word-spacing:21.493333pt;}
.wse0{word-spacing:21.813333pt;}
.ws12{word-spacing:23.040533pt;}
.ws10{word-spacing:23.733867pt;}
.ws20{word-spacing:24.000000pt;}
.ws74{word-spacing:24.266667pt;}
.ws60{word-spacing:25.493333pt;}
.ws5e{word-spacing:26.773333pt;}
.wsb6{word-spacing:30.805333pt;}
.wse8{word-spacing:36.000000pt;}
.wsb1{word-spacing:36.992000pt;}
.ws53{word-spacing:37.973867pt;}
.wsb5{word-spacing:40.234667pt;}
.wsad{word-spacing:43.690667pt;}
.wsaf{word-spacing:49.024000pt;}
.wsb2{word-spacing:54.869333pt;}
.wsac{word-spacing:58.325333pt;}
.wsb3{word-spacing:60.373333pt;}
.wsab{word-spacing:60.842667pt;}
.wsae{word-spacing:63.658667pt;}
.wsb0{word-spacing:66.901333pt;}
.wsaa{word-spacing:67.498667pt;}
.ws35{word-spacing:69.168000pt;}
.ws33{word-spacing:83.664000pt;}
.ws36{word-spacing:94.800000pt;}
.ws34{word-spacing:106.512000pt;}
.wsb4{word-spacing:198.144000pt;}
._e{margin-left:-2635.964640pt;}
._d{margin-left:-1763.375040pt;}
._b{margin-left:-52.480000pt;}
._8{margin-left:-42.640000pt;}
._4f{margin-left:-11.840000pt;}
._9{margin-left:-10.240000pt;}
._4c{margin-left:-7.520000pt;}
._24{margin-left:-5.516800pt;}
._3{margin-left:-4.536789pt;}
._5{margin-left:-3.157333pt;}
._0{margin-left:-1.924267pt;}
._7{margin-left:-1.028267pt;}
._6{width:1.109333pt;}
._25{width:2.181333pt;}
._4d{width:11.520000pt;}
._a{width:12.480000pt;}
._2{width:16.309333pt;}
._4e{width:18.320000pt;}
._31{width:28.885333pt;}
._f{width:33.864789pt;}
._26{width:34.844800pt;}
._28{width:37.674667pt;}
._43{width:42.666667pt;}
._2b{width:47.232000pt;}
._23{width:55.920000pt;}
._1{width:61.037333pt;}
._4{width:61.930667pt;}
._20{width:65.664000pt;}
._42{width:69.854123pt;}
._47{width:73.322667pt;}
._33{width:75.166123pt;}
._44{width:76.172544pt;}
._3c{width:78.071211pt;}
._3e{width:79.360000pt;}
._2f{width:81.280000pt;}
._16{width:82.512000pt;}
._32{width:84.394667pt;}
._29{width:89.728000pt;}
._27{width:95.061333pt;}
._2e{width:96.853333pt;}
._4b{width:99.157333pt;}
._3d{width:100.151211pt;}
._2a{width:101.546667pt;}
._3a{width:103.893333pt;}
._1c{width:108.144000pt;}
._35{width:112.000000pt;}
._1a{width:119.856000pt;}
._40{width:131.541333pt;}
._11{width:132.432000pt;}
._15{width:141.168000pt;}
._3b{width:147.962667pt;}
._17{width:150.864000pt;}
._37{width:154.586667pt;}
._34{width:160.000000pt;}
._1d{width:165.216000pt;}
._21{width:168.816000pt;}
._30{width:170.746667pt;}
._2c{width:171.685333pt;}
._1f{width:173.232000pt;}
._48{width:175.146667pt;}
._36{width:176.392789pt;}
._1e{width:178.608000pt;}
._45{width:183.829333pt;}
._38{width:185.258667pt;}
._46{width:187.029333pt;}
._49{width:191.338667pt;}
._3f{width:195.788544pt;}
._41{width:196.928000pt;}
._12{width:198.192000pt;}
._39{width:199.095211pt;}
._18{width:200.832000pt;}
._2d{width:210.359211pt;}
._22{width:213.264000pt;}
._13{width:218.592000pt;}
._c{width:224.206080pt;}
._1b{width:231.936000pt;}
._4a{width:235.216000pt;}
._14{width:240.000000pt;}
._19{width:279.840000pt;}
._10{width:695.808000pt;}
.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;}
.fs8{font-size:40.533333pt;}
.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;}
.y17f{bottom:72.532000pt;}
.y141{bottom:72.534533pt;}
.y15d{bottom:72.536133pt;}
.y53{bottom:72.542933pt;}
.y10c{bottom:72.561200pt;}
.y6e{bottom:72.564133pt;}
.y1f{bottom:72.566933pt;}
.y19e{bottom:72.825333pt;}
.yd6{bottom:72.941200pt;}
.yb5{bottom:72.954533pt;}
.y142{bottom:77.854400pt;}
.y1e{bottom:85.900267pt;}
.y17e{bottom:88.532000pt;}
.y140{bottom:88.534533pt;}
.y15c{bottom:88.536133pt;}
.y52{bottom:88.542933pt;}
.y10b{bottom:88.561200pt;}
.y6d{bottom:88.617467pt;}
.yb4{bottom:88.981200pt;}
.y19d{bottom:89.332000pt;}
.y1d{bottom:99.233600pt;}
.y226{bottom:100.337867pt;}
.y1d8{bottom:100.347867pt;}
.y17d{bottom:104.532000pt;}
.y13f{bottom:104.534533pt;}
.y15b{bottom:104.536133pt;}
.y51{bottom:104.542933pt;}
.y10a{bottom:104.561200pt;}
.y6c{bottom:104.670800pt;}
.yb3{bottom:105.007867pt;}
.yd5{bottom:105.021200pt;}
.y19c{bottom:105.838667pt;}
.y225{bottom:111.667867pt;}
.y1d7{bottom:113.521200pt;}
.y17c{bottom:120.532000pt;}
.y13e{bottom:120.534533pt;}
.y15a{bottom:120.536133pt;}
.y50{bottom:120.542933pt;}
.y109{bottom:120.561200pt;}
.y6b{bottom:120.724133pt;}
.yb2{bottom:121.034533pt;}
.yd4{bottom:121.061200pt;}
.y19b{bottom:122.345333pt;}
.y224{bottom:122.997867pt;}
.y1c{bottom:124.566933pt;}
.y1d6{bottom:126.694533pt;}
.y223{bottom:134.327867pt;}
.y17b{bottom:136.532000pt;}
.y13d{bottom:136.534533pt;}
.y159{bottom:136.536133pt;}
.y4f{bottom:136.542933pt;}
.y108{bottom:136.561200pt;}
.y6a{bottom:136.777467pt;}
.yb1{bottom:137.061200pt;}
.yd3{bottom:137.101200pt;}
.y1b{bottom:137.900267pt;}
.y19a{bottom:138.852000pt;}
.y143{bottom:139.187733pt;}
.y1d5{bottom:139.867867pt;}
.y222{bottom:145.657867pt;}
.y14c{bottom:149.854400pt;}
.y17a{bottom:152.532000pt;}
.y13c{bottom:152.534533pt;}
.y158{bottom:152.536133pt;}
.y4e{bottom:152.542933pt;}
.y107{bottom:152.561200pt;}
.y69{bottom:152.830800pt;}
.yb0{bottom:153.087867pt;}
.yd2{bottom:153.141200pt;}
.y25{bottom:154.849467pt;}
.y199{bottom:155.358667pt;}
.y221{bottom:156.987867pt;}
.y1d4{bottom:163.707867pt;}
.y24{bottom:167.649467pt;}
.y220{bottom:168.317867pt;}
.y179{bottom:168.532000pt;}
.y13b{bottom:168.534533pt;}
.y157{bottom:168.536133pt;}
.y4d{bottom:168.542933pt;}
.y106{bottom:168.561200pt;}
.y68{bottom:168.884133pt;}
.yaf{bottom:169.114533pt;}
.yd1{bottom:169.181200pt;}
.y198{bottom:171.865467pt;}
.y1d3{bottom:176.881200pt;}
.y21f{bottom:179.647867pt;}
.y23{bottom:180.449467pt;}
.y178{bottom:184.532000pt;}
.y13a{bottom:184.534533pt;}
.y156{bottom:184.536133pt;}
.y4c{bottom:184.542933pt;}
.y105{bottom:184.561200pt;}
.y67{bottom:184.937467pt;}
.yae{bottom:185.141200pt;}
.yd0{bottom:185.221200pt;}
.y197{bottom:188.372133pt;}
.y144{bottom:188.521067pt;}
.y1d2{bottom:190.054533pt;}
.y21e{bottom:190.977867pt;}
.y22{bottom:193.249467pt;}
.y177{bottom:200.532000pt;}
.y139{bottom:200.534533pt;}
.y155{bottom:200.536133pt;}
.y104{bottom:200.561200pt;}
.y66{bottom:200.990800pt;}
.yad{bottom:201.167867pt;}
.ycf{bottom:201.261200pt;}
.y21d{bottom:202.307867pt;}
.y1d1{bottom:203.227867pt;}
.y196{bottom:204.878800pt;}
.y21{bottom:206.049467pt;}
.y21c{bottom:213.637867pt;}
.y1d0{bottom:216.401200pt;}
.y176{bottom:216.532000pt;}
.y138{bottom:216.534533pt;}
.y154{bottom:216.536133pt;}
.y103{bottom:216.561200pt;}
.y65{bottom:217.044133pt;}
.yac{bottom:217.194533pt;}
.yce{bottom:217.301200pt;}
.y20{bottom:218.849467pt;}
.y195{bottom:221.385467pt;}
.y21b{bottom:224.967867pt;}
.y1cf{bottom:229.574533pt;}
.y4b{bottom:229.732267pt;}
.y175{bottom:232.532000pt;}
.y137{bottom:232.534533pt;}
.y153{bottom:232.536133pt;}
.y102{bottom:232.561200pt;}
.y64{bottom:233.097467pt;}
.yab{bottom:233.221200pt;}
.ycd{bottom:233.341200pt;}
.y21a{bottom:236.297867pt;}
.y194{bottom:237.892133pt;}
.y1ce{bottom:242.747867pt;}
.y4a{bottom:244.396267pt;}
.y219{bottom:247.627867pt;}
.y174{bottom:248.532000pt;}
.y136{bottom:248.534533pt;}
.y152{bottom:248.536133pt;}
.y63{bottom:249.150800pt;}
.yaa{bottom:249.247867pt;}
.ycc{bottom:249.381200pt;}
.y145{bottom:252.521067pt;}
.y193{bottom:254.398800pt;}
.y218{bottom:258.957867pt;}
.y49{bottom:259.060267pt;}
.y1cd{bottom:261.254533pt;}
.y101{bottom:263.041200pt;}
.y173{bottom:264.532000pt;}
.y135{bottom:264.534533pt;}
.y151{bottom:264.536133pt;}
.y62{bottom:265.204133pt;}
.ya9{bottom:265.274533pt;}
.ycb{bottom:265.421200pt;}
.y217{bottom:270.287867pt;}
.y192{bottom:270.905467pt;}
.y48{bottom:273.724267pt;}
.y1cc{bottom:274.054533pt;}
.y100{bottom:279.041200pt;}
.y172{bottom:280.532000pt;}
.y134{bottom:280.534533pt;}
.y150{bottom:280.536133pt;}
.y61{bottom:281.257467pt;}
.ya8{bottom:281.301200pt;}
.yca{bottom:281.461200pt;}
.y216{bottom:281.617867pt;}
.y191{bottom:287.412133pt;}
.y47{bottom:288.388267pt;}
.y1cb{bottom:292.187867pt;}
.y215{bottom:292.947867pt;}
.yff{bottom:295.041200pt;}
.y171{bottom:296.532000pt;}
.y133{bottom:296.534533pt;}
.y14f{bottom:296.536133pt;}
.y60{bottom:297.310800pt;}
.ya7{bottom:297.327867pt;}
.yc9{bottom:297.501200pt;}
.y46{bottom:303.052267pt;}
.y190{bottom:303.918800pt;}
.y214{bottom:304.277867pt;}
.y1ca{bottom:310.694533pt;}
.yfe{bottom:311.041200pt;}
.y170{bottom:312.532000pt;}
.y132{bottom:312.534533pt;}
.y14e{bottom:312.536133pt;}
.ya6{bottom:313.354533pt;}
.y5f{bottom:313.364133pt;}
.yc8{bottom:313.541200pt;}
.y213{bottom:315.607867pt;}
.y149{bottom:316.265067pt;}
.y45{bottom:317.716267pt;}
.y18f{bottom:320.425333pt;}
.y1c9{bottom:323.867867pt;}
.y212{bottom:326.937867pt;}
.yfd{bottom:327.041200pt;}
.y16f{bottom:328.532000pt;}
.y131{bottom:328.534533pt;}
.ya5{bottom:329.381200pt;}
.y5e{bottom:329.417467pt;}
.yc7{bottom:329.581200pt;}
.y44{bottom:332.380267pt;}
.y18e{bottom:336.932000pt;}
.y211{bottom:338.267867pt;}
.y1c8{bottom:342.374533pt;}
.yfc{bottom:343.041200pt;}
.y16e{bottom:344.532000pt;}
.y130{bottom:344.534533pt;}
.ya4{bottom:345.407867pt;}
.y5d{bottom:345.470800pt;}
.yc6{bottom:345.621200pt;}
.y43{bottom:347.044267pt;}
.y210{bottom:349.597867pt;}
.y14d{bottom:352.536000pt;}
.y18d{bottom:353.438667pt;}
.yfb{bottom:359.041200pt;}
.y16d{bottom:360.532000pt;}
.y12f{bottom:360.534533pt;}
.y20f{bottom:360.927867pt;}
.y1c7{bottom:361.414533pt;}
.ya3{bottom:361.434533pt;}
.y5c{bottom:361.524133pt;}
.yc5{bottom:361.661200pt;}
.y42{bottom:361.708267pt;}
.y18c{bottom:369.945333pt;}
.y20e{bottom:372.257867pt;}
.yfa{bottom:375.041200pt;}
.y41{bottom:376.372267pt;}
.y16c{bottom:376.532000pt;}
.y12e{bottom:376.534533pt;}
.ya2{bottom:377.461200pt;}
.y5b{bottom:377.577467pt;}
.y14a{bottom:377.598400pt;}
.yc4{bottom:377.701200pt;}
.y1c6{bottom:379.547867pt;}
.y20d{bottom:383.587867pt;}
.y18b{bottom:386.452000pt;}
.y40{bottom:391.036267pt;}
.yf9{bottom:391.041200pt;}
.y16b{bottom:392.532000pt;}
.y12d{bottom:392.534533pt;}
.y1c5{bottom:392.721200pt;}
.ya1{bottom:393.487867pt;}
.y5a{bottom:393.630800pt;}
.yc3{bottom:393.741200pt;}
.y20c{bottom:394.917867pt;}
.y18a{bottom:402.958667pt;}
.y3f{bottom:405.700267pt;}
.y20b{bottom:406.247867pt;}
.yf8{bottom:407.041200pt;}
.y16a{bottom:408.532000pt;}
.y12c{bottom:408.534533pt;}
.ya0{bottom:409.514533pt;}
.y59{bottom:409.684133pt;}
.yc2{bottom:409.781200pt;}
.y1c4{bottom:411.227867pt;}
.y20a{bottom:417.577867pt;}
.y189{bottom:419.465333pt;}
.y3e{bottom:420.364267pt;}
.yf7{bottom:423.041200pt;}
.y1c3{bottom:424.027867pt;}
.y169{bottom:424.532000pt;}
.y12b{bottom:424.534533pt;}
.y9f{bottom:425.541200pt;}
.y58{bottom:425.737467pt;}
.yc1{bottom:425.821200pt;}
.y209{bottom:428.907867pt;}
.y3d{bottom:435.028267pt;}
.y188{bottom:435.972000pt;}
.y1c2{bottom:436.827867pt;}
.yf6{bottom:439.041200pt;}
.y208{bottom:440.237867pt;}
.y168{bottom:440.532000pt;}
.y12a{bottom:440.534533pt;}
.y9e{bottom:441.567867pt;}
.y57{bottom:441.790800pt;}
.yc0{bottom:441.861200pt;}
.y1c1{bottom:449.627867pt;}
.y3c{bottom:449.692267pt;}
.y207{bottom:451.567867pt;}
.y187{bottom:452.478667pt;}
.yf5{bottom:455.041200pt;}
.y167{bottom:456.532000pt;}
.y129{bottom:456.534533pt;}
.y9d{bottom:457.594533pt;}
.y56{bottom:457.849600pt;}
.ybf{bottom:457.901200pt;}
.y1c0{bottom:462.427867pt;}
.y206{bottom:462.897867pt;}
.y3b{bottom:464.356267pt;}
.y186{bottom:468.985333pt;}
.yf4{bottom:471.041200pt;}
.y166{bottom:472.532000pt;}
.y128{bottom:472.534533pt;}
.y9c{bottom:473.621200pt;}
.y55{bottom:473.902933pt;}
.ybe{bottom:473.941200pt;}
.y205{bottom:474.227867pt;}
.y3a{bottom:479.020267pt;}
.y185{bottom:485.492000pt;}
.y204{bottom:485.557867pt;}
.yf3{bottom:487.041200pt;}
.y165{bottom:488.532000pt;}
.y127{bottom:488.534533pt;}
.y9b{bottom:489.647867pt;}
.y54{bottom:489.956267pt;}
.ybd{bottom:489.981200pt;}
.y39{bottom:493.684267pt;}
.y203{bottom:496.887867pt;}
.y1bf{bottom:496.934533pt;}
.y184{bottom:501.998667pt;}
.yf2{bottom:503.041200pt;}
.y164{bottom:504.532000pt;}
.y126{bottom:504.534533pt;}
.y9a{bottom:505.674533pt;}
.y1be{bottom:505.841200pt;}
.ybc{bottom:506.021200pt;}
.y202{bottom:508.217867pt;}
.y38{bottom:508.348267pt;}
.y183{bottom:518.505333pt;}
.yf1{bottom:519.041200pt;}
.y201{bottom:519.547867pt;}
.y163{bottom:520.532000pt;}
.y125{bottom:520.534533pt;}
.y99{bottom:521.701200pt;}
.ybb{bottom:522.061200pt;}
.y37{bottom:523.012267pt;}
.y1bd{bottom:524.347867pt;}
.y1a{bottom:527.497467pt;}
.y200{bottom:530.877867pt;}
.y182{bottom:535.012000pt;}
.yf0{bottom:535.041200pt;}
.y162{bottom:536.532000pt;}
.y124{bottom:536.534533pt;}
.y36{bottom:537.676267pt;}
.y98{bottom:537.727867pt;}
.y1bc{bottom:538.054533pt;}
.yba{bottom:538.101200pt;}
.y19{bottom:540.830800pt;}
.y1ff{bottom:542.207867pt;}
.y7d{bottom:545.433200pt;}
.yef{bottom:551.041200pt;}
.y181{bottom:551.518667pt;}
.y1bb{bottom:551.761200pt;}
.y35{bottom:552.340267pt;}
.y161{bottom:552.532000pt;}
.y123{bottom:552.534533pt;}
.y1fe{bottom:553.537867pt;}
.y97{bottom:553.754533pt;}
.yb9{bottom:554.141200pt;}
.y18{bottom:554.164133pt;}
.y7c{bottom:560.097200pt;}
.y1ba{bottom:560.667867pt;}
.y1fd{bottom:564.867867pt;}
.y34{bottom:567.004267pt;}
.yee{bottom:567.041200pt;}
.y180{bottom:568.025333pt;}
.y160{bottom:568.532000pt;}
.y122{bottom:568.534533pt;}
.y96{bottom:569.781200pt;}
.yb8{bottom:570.181200pt;}
.y7b{bottom:574.766533pt;}
.y1fc{bottom:576.197867pt;}
.y1b9{bottom:579.174533pt;}
.y17{bottom:579.497467pt;}
.y33{bottom:581.668267pt;}
.yed{bottom:583.041200pt;}
.y15f{bottom:584.532000pt;}
.y121{bottom:584.534533pt;}
.y95{bottom:585.807867pt;}
.yb7{bottom:586.221200pt;}
.y1fb{bottom:587.527867pt;}
.y1b8{bottom:588.081200pt;}
.y7a{bottom:589.430533pt;}
.y16{bottom:592.830800pt;}
.y32{bottom:596.332267pt;}
.y146{bottom:597.598400pt;}
.y1fa{bottom:598.857867pt;}
.yec{bottom:599.041200pt;}
.y120{bottom:600.534533pt;}
.y94{bottom:601.834533pt;}
.yb6{bottom:602.261200pt;}
.y79{bottom:604.105200pt;}
.y15{bottom:606.164133pt;}
.y1b7{bottom:606.587867pt;}
.y1f9{bottom:610.187867pt;}
.y31{bottom:610.996267pt;}
.yeb{bottom:615.041200pt;}
.y11f{bottom:616.534533pt;}
.y78{bottom:618.769200pt;}
.y14{bottom:619.497467pt;}
.y1b6{bottom:620.294533pt;}
.y1f8{bottom:621.517867pt;}
.y30{bottom:625.660267pt;}
.y1b5{bottom:629.201200pt;}
.yea{bottom:631.041200pt;}
.y15e{bottom:631.838667pt;}
.y11e{bottom:632.534533pt;}
.y13{bottom:632.830800pt;}
.y1f7{bottom:632.847867pt;}
.y77{bottom:633.433200pt;}
.y2f{bottom:640.324267pt;}
.y1f6{bottom:644.177867pt;}
.y12{bottom:646.164133pt;}
.ye9{bottom:647.041200pt;}
.y1b4{bottom:647.707867pt;}
.y76{bottom:648.097200pt;}
.y11d{bottom:648.534533pt;}
.y7e{bottom:649.050440pt;}
.y2e{bottom:654.988267pt;}
.y1f5{bottom:655.507867pt;}
.y1b3{bottom:656.614533pt;}
.y93{bottom:657.741067pt;}
.y11{bottom:659.497467pt;}
.y75{bottom:662.771867pt;}
.y147{bottom:662.931733pt;}
.ye8{bottom:663.041200pt;}
.y11c{bottom:664.534533pt;}
.y1f4{bottom:666.837867pt;}
.y2d{bottom:669.652267pt;}
.y92{bottom:671.074400pt;}
.y1b2{bottom:675.121200pt;}
.y74{bottom:677.435867pt;}
.y1f3{bottom:678.167867pt;}
.ye7{bottom:679.041200pt;}
.y11b{bottom:680.534533pt;}
.y10{bottom:680.830800pt;}
.y1b1{bottom:684.027867pt;}
.y2c{bottom:684.316267pt;}
.y91{bottom:684.407733pt;}
.y1f2{bottom:689.497867pt;}
.y73{bottom:692.099867pt;}
.yf{bottom:694.164133pt;}
.ye6{bottom:695.041200pt;}
.y11a{bottom:696.534533pt;}
.y2b{bottom:698.980267pt;}
.y1f1{bottom:700.827867pt;}
.y1b0{bottom:702.534533pt;}
.y72{bottom:706.763867pt;}
.ye{bottom:707.497467pt;}
.y90{bottom:708.014800pt;}
.ye5{bottom:711.041200pt;}
.y1f0{bottom:712.157867pt;}
.y119{bottom:712.534533pt;}
.y2a{bottom:713.644267pt;}
.y1af{bottom:716.241200pt;}
.yd{bottom:720.830800pt;}
.y71{bottom:721.433200pt;}
.y8f{bottom:722.414800pt;}
.y1ef{bottom:723.487867pt;}
.y1ae{bottom:725.147867pt;}
.y148{bottom:726.931733pt;}
.ye4{bottom:727.041200pt;}
.y29{bottom:728.308267pt;}
.y118{bottom:728.534533pt;}
.yc{bottom:734.164133pt;}
.y1ee{bottom:734.817867pt;}
.y70{bottom:736.097200pt;}
.y8e{bottom:740.318800pt;}
.y28{bottom:742.972267pt;}
.ye3{bottom:743.041200pt;}
.y117{bottom:744.534533pt;}
.y1ed{bottom:746.147867pt;}
.yb{bottom:747.497467pt;}
.y8d{bottom:754.718800pt;}
.y1ad{bottom:754.854533pt;}
.y1ec{bottom:757.477867pt;}
.y27{bottom:757.636267pt;}
.ye2{bottom:759.041200pt;}
.y116{bottom:760.534533pt;}
.ya{bottom:760.830800pt;}
.y6f{bottom:764.302800pt;}
.y1eb{bottom:768.807867pt;}
.y1ac{bottom:771.227867pt;}
.y26{bottom:772.302933pt;}
.y8c{bottom:773.954800pt;}
.y9{bottom:774.164133pt;}
.ye1{bottom:775.041200pt;}
.y1ea{bottom:780.137867pt;}
.y14b{bottom:786.931733pt;}
.y1ab{bottom:787.601200pt;}
.ye0{bottom:791.041200pt;}
.y1e9{bottom:791.467867pt;}
.y8b{bottom:793.190800pt;}
.y1e8{bottom:802.797867pt;}
.y1aa{bottom:803.974533pt;}
.ydf{bottom:807.041200pt;}
.y115{bottom:808.507867pt;}
.y8a{bottom:812.426800pt;}
.y1e7{bottom:814.127867pt;}
.y1a9{bottom:820.347867pt;}
.yde{bottom:823.041200pt;}
.y114{bottom:824.507867pt;}
.y1e6{bottom:825.457867pt;}
.y89{bottom:830.330800pt;}
.y8{bottom:833.633467pt;}
.y1a8{bottom:836.721200pt;}
.y1e5{bottom:836.787867pt;}
.ydd{bottom:839.041200pt;}
.y113{bottom:840.507867pt;}
.y88{bottom:844.730800pt;}
.y1e4{bottom:848.117867pt;}
.y7{bottom:850.969467pt;}
.y1a7{bottom:853.094533pt;}
.y112{bottom:856.507867pt;}
.y1e3{bottom:859.447867pt;}
.y82{bottom:866.630800pt;}
.y1a6{bottom:869.467867pt;}
.y1e2{bottom:870.777867pt;}
.y111{bottom:872.507867pt;}
.y84{bottom:881.030800pt;}
.y1e1{bottom:882.107867pt;}
.y1a5{bottom:885.841200pt;}
.y110{bottom:888.507867pt;}
.ydc{bottom:890.027867pt;}
.y1e0{bottom:893.437867pt;}
.y85{bottom:895.430800pt;}
.y1a4{bottom:902.214533pt;}
.y6{bottom:902.958800pt;}
.y10f{bottom:904.507867pt;}
.y1df{bottom:904.767867pt;}
.ydb{bottom:906.027867pt;}
.y87{bottom:909.830800pt;}
.y1de{bottom:916.097867pt;}
.y1a3{bottom:918.587867pt;}
.y10e{bottom:920.507867pt;}
.yda{bottom:922.027867pt;}
.y86{bottom:924.230800pt;}
.y1dd{bottom:927.427867pt;}
.y1a2{bottom:934.961200pt;}
.y10d{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y1dc{bottom:938.757867pt;}
.y83{bottom:943.466800pt;}
.y1db{bottom:950.087867pt;}
.y1a1{bottom:951.334533pt;}
.yd9{bottom:952.507867pt;}
.y1da{bottom:961.417867pt;}
.y81{bottom:963.035867pt;}
.y1a0{bottom:967.707867pt;}
.yd8{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y1d9{bottom:972.747867pt;}
.y80{bottom:977.699867pt;}
.y19f{bottom:984.081200pt;}
.yd7{bottom:984.507867pt;}
.y3{bottom:1014.174400pt;}
.y7f{bottom:1014.174533pt;}
.h16{height:21.272576pt;}
.h17{height:31.000000pt;}
.h8{height:31.061333pt;}
.h11{height:31.189333pt;}
.h13{height:31.413333pt;}
.h3{height:32.085333pt;}
.h10{height:33.066667pt;}
.h12{height:33.078400pt;}
.hf{height:35.088000pt;}
.h9{height:36.096000pt;}
.he{height:37.200000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.ha{height:39.146667pt;}
.hc{height:49.932373pt;}
.h15{height:49.953707pt;}
.hb{height:49.954240pt;}
.h14{height:49.954773pt;}
.h6{height:56.544400pt;}
.h7{height:56.555067pt;}
.h5{height:85.250000pt;}
.hd{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;}
.x16{left:66.000000pt;}
.x1a{left:86.607867pt;}
.x1d{left:105.223600pt;}
.x1c{left:123.506267pt;}
.xe{left:129.317067pt;}
.x1b{left:136.306267pt;}
.x15{left:142.709067pt;}
.x1e{left:157.255600pt;}
.x1f{left:174.204933pt;}
.x20{left:192.487600pt;}
.x4{left:195.892800pt;}
.x12{left:210.653067pt;}
.x21{left:229.052933pt;}
.x2{left:234.314533pt;}
.x22{left:247.335600pt;}
.x23{left:265.618267pt;}
.x24{left:283.900933pt;}
.x13{left:290.657067pt;}
.x25{left:302.183600pt;}
.x26{left:320.466267pt;}
.x27{left:338.748933pt;}
.x28{left:357.031600pt;}
.x29{left:375.314267pt;}
.x2a{left:393.596933pt;}
.x17{left:409.185067pt;}
.x2b{left:411.879600pt;}
.x18{left:421.185067pt;}
.x2c{left:424.679600pt;}
.x3d{left:430.444000pt;}
.x14{left:442.661067pt;}
.x2d{left:461.244933pt;}
.x8{left:477.798667pt;}
.x2e{left:479.527600pt;}
.xa{left:485.794533pt;}
.x9{left:489.793600pt;}
.xb{left:496.351867pt;}
.x2f{left:497.810267pt;}
.xc{left:501.794533pt;}
.x30{left:516.092933pt;}
.x31{left:528.892933pt;}
.x32{left:547.175600pt;}
.x33{left:565.458267pt;}
.xf{left:571.973067pt;}
.x34{left:583.740933pt;}
.x35{left:602.023600pt;}
.x7{left:612.329467pt;}
.x36{left:620.306267pt;}
.x37{left:638.586000pt;}
.x19{left:643.296800pt;}
.x38{left:655.535333pt;}
.x10{left:661.313067pt;}
.x39{left:678.770267pt;}
.x3a{left:690.930267pt;}
.x3b{left:703.090267pt;}
.x11{left:705.029067pt;}
.x3c{left:715.250267pt;}
.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; }
  