
    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_eb87efbe533396f0e7d5accd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_714404a8c0069dc84a71b0b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d447b73149fdcb1808bb41a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_a08b77f8bb4bbaafa2ac7243.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_68d07515e890348b886aa82c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_a1aa4738c53051b85bcdcb67.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_887515028b7e764e5681d292.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_97a413775c7a2d54d8bc1db8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_44edd2b74e0430cc0a2c2992.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_abff77cbfe6a31e7f68638da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_eb87efbe533396f0e7d5accd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_8e53f7509c8d47072c054c4b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_abff77cbfe6a31e7f68638da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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_eb87efbe533396f0e7d5accd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958008;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_0534d36b15ea5f62709d6b1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.958008;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_ef618d3e79c394e2e6b9d5ee.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958008;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_6ec7c9f33e226edd54373ac9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.959473;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_e92ee571015e0de1b26b767f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.742676;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-17.880000px;}
.v2{vertical-align:-12.840000px;}
.v5{vertical-align:-5.880000px;}
.v3{vertical-align:-1.038000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.840000px;}
.v4{vertical-align:16.860000px;}
.v6{vertical-align:17.880000px;}
.lsa{letter-spacing:-5.664000px;}
.ls22{letter-spacing:-5.358000px;}
.ls8{letter-spacing:-5.184000px;}
.ls21{letter-spacing:-4.342800px;}
.ls7{letter-spacing:-3.744000px;}
.lsb{letter-spacing:-3.264000px;}
.ls1{letter-spacing:-1.326000px;}
.ls3{letter-spacing:-0.882000px;}
.ls9{letter-spacing:-0.726000px;}
.lsc{letter-spacing:-0.594000px;}
.ls1b{letter-spacing:-0.564000px;}
.ls4{letter-spacing:-0.528000px;}
.lsd{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.432600px;}
.ls1e{letter-spacing:-0.394800px;}
.ls5{letter-spacing:-0.384000px;}
.ls1a{letter-spacing:-0.338400px;}
.ls14{letter-spacing:-0.285000px;}
.ls6{letter-spacing:-0.264000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls0{letter-spacing:-0.195000px;}
.ls19{letter-spacing:-0.169200px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.005400px;}
.ls18{letter-spacing:0.599400px;}
.ls17{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.610200px;}
.ls20{letter-spacing:0.672000px;}
.ls1d{letter-spacing:0.816000px;}
.lse{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.260000px;}
.lsf{letter-spacing:1.848000px;}
.ls13{letter-spacing:2.856000px;}
.ls11{letter-spacing:3.234000px;}
.ls12{letter-spacing:3.444000px;}
.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;}
}
.ws96{word-spacing:-48.000000px;}
.ws98{word-spacing:-26.400000px;}
.ws10e{word-spacing:-14.100000px;}
.wsed{word-spacing:-13.930800px;}
.wsa9{word-spacing:-13.761600px;}
.ws9{word-spacing:-13.356000px;}
.ws95{word-spacing:-13.344000px;}
.wsa{word-spacing:-12.996000px;}
.ws3{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.616000px;}
.ws24{word-spacing:-11.250000px;}
.ws0{word-spacing:-10.842000px;}
.ws1{word-spacing:-10.647000px;}
.ws8{word-spacing:-10.500000px;}
.ws9a{word-spacing:-10.008000px;}
.ws10d{word-spacing:-9.757200px;}
.wsc{word-spacing:-9.477000px;}
.ws12c{word-spacing:-8.742000px;}
.ws7{word-spacing:-8.736000px;}
.ws4{word-spacing:-8.256000px;}
.ws5{word-spacing:-6.816000px;}
.ws6{word-spacing:-6.336000px;}
.ws115{word-spacing:-5.696400px;}
.ws97{word-spacing:-5.088000px;}
.ws116{word-spacing:-4.681200px;}
.wsf7{word-spacing:-4.399200px;}
.wsf5{word-spacing:-4.342800px;}
.wsee{word-spacing:-4.117200px;}
.wsaf{word-spacing:-3.722400px;}
.ws19{word-spacing:-3.444000px;}
.ws48{word-spacing:-3.440400px;}
.wsad{word-spacing:-3.384000px;}
.ws18{word-spacing:-3.234000px;}
.wsab{word-spacing:-3.158400px;}
.ws101{word-spacing:-2.989200px;}
.wsaa{word-spacing:-2.932800px;}
.ws3e{word-spacing:-2.876400px;}
.wsd5{word-spacing:-2.820000px;}
.ws91{word-spacing:-2.763600px;}
.wsa6{word-spacing:-2.707200px;}
.wsce{word-spacing:-2.650800px;}
.wscc{word-spacing:-2.640000px;}
.wsb2{word-spacing:-2.594400px;}
.ws33{word-spacing:-2.538000px;}
.ws4c{word-spacing:-2.481600px;}
.wsf0{word-spacing:-2.425200px;}
.wsb3{word-spacing:-2.368800px;}
.ws57{word-spacing:-2.312400px;}
.wsba{word-spacing:-2.256000px;}
.ws4e{word-spacing:-2.199600px;}
.wsd{word-spacing:-2.145000px;}
.ws94{word-spacing:-2.143200px;}
.wse8{word-spacing:-2.086800px;}
.ws92{word-spacing:-2.030400px;}
.ws8d{word-spacing:-1.974000px;}
.ws35{word-spacing:-1.917600px;}
.ws39{word-spacing:-1.861200px;}
.ws16{word-spacing:-1.848000px;}
.wsda{word-spacing:-1.804800px;}
.ws47{word-spacing:-1.748400px;}
.wsbf{word-spacing:-1.692000px;}
.ws3a{word-spacing:-1.635600px;}
.ws8e{word-spacing:-1.579200px;}
.ws42{word-spacing:-1.522800px;}
.ws67{word-spacing:-1.466400px;}
.ws63{word-spacing:-1.421400px;}
.ws27{word-spacing:-1.410000px;}
.ws90{word-spacing:-1.353600px;}
.ws28{word-spacing:-1.311000px;}
.ws78{word-spacing:-1.297200px;}
.ws17{word-spacing:-1.260000px;}
.wsbc{word-spacing:-1.240800px;}
.ws102{word-spacing:-1.184400px;}
.wsbd{word-spacing:-1.128000px;}
.ws44{word-spacing:-1.071600px;}
.ws36{word-spacing:-1.015200px;}
.ws15{word-spacing:-1.008000px;}
.ws1a{word-spacing:-0.988800px;}
.ws7b{word-spacing:-0.958800px;}
.ws5e{word-spacing:-0.927000px;}
.wsd2{word-spacing:-0.912000px;}
.ws4a{word-spacing:-0.902400px;}
.ws9f{word-spacing:-0.846000px;}
.wscb{word-spacing:-0.816000px;}
.wse2{word-spacing:-0.789600px;}
.ws83{word-spacing:-0.733200px;}
.ws93{word-spacing:-0.676800px;}
.ws53{word-spacing:-0.620400px;}
.ws2d{word-spacing:-0.564000px;}
.ws7c{word-spacing:-0.507600px;}
.ws60{word-spacing:-0.494400px;}
.ws2e{word-spacing:-0.394800px;}
.wsd0{word-spacing:-0.338400px;}
.ws10f{word-spacing:-0.282000px;}
.wsf{word-spacing:-0.264000px;}
.ws32{word-spacing:-0.225600px;}
.wsc6{word-spacing:-0.169200px;}
.wsff{word-spacing:-0.112800px;}
.ws21{word-spacing:-0.078000px;}
.ws3f{word-spacing:-0.056400px;}
.ws99{word-spacing:-0.048000px;}
.wsb{word-spacing:0.000000px;}
.ws54{word-spacing:0.056400px;}
.ws12{word-spacing:0.066000px;}
.ws59{word-spacing:0.112800px;}
.ws37{word-spacing:0.169200px;}
.wse{word-spacing:0.195000px;}
.ws11{word-spacing:0.198000px;}
.ws64{word-spacing:0.225600px;}
.wsd3{word-spacing:0.240000px;}
.wsa4{word-spacing:0.282000px;}
.ws7e{word-spacing:0.285000px;}
.wsd1{word-spacing:0.288000px;}
.ws2c{word-spacing:0.338400px;}
.ws13{word-spacing:0.384000px;}
.wsa7{word-spacing:0.394800px;}
.wsec{word-spacing:0.451200px;}
.ws14{word-spacing:0.480000px;}
.ws49{word-spacing:0.507600px;}
.ws10{word-spacing:0.528000px;}
.ws40{word-spacing:0.564000px;}
.ws84{word-spacing:0.620400px;}
.ws5a{word-spacing:0.676800px;}
.ws38{word-spacing:0.733200px;}
.wsc5{word-spacing:0.789600px;}
.ws71{word-spacing:0.846000px;}
.wsae{word-spacing:0.902400px;}
.wsc2{word-spacing:0.958800px;}
.wsc8{word-spacing:1.015200px;}
.ws25{word-spacing:1.053000px;}
.ws81{word-spacing:1.071600px;}
.ws66{word-spacing:1.128000px;}
.ws5d{word-spacing:1.174200px;}
.ws9d{word-spacing:1.184400px;}
.wsc1{word-spacing:1.240800px;}
.wsb8{word-spacing:1.297200px;}
.ws20{word-spacing:1.297800px;}
.ws51{word-spacing:1.353600px;}
.wsb0{word-spacing:1.410000px;}
.ws7d{word-spacing:1.522800px;}
.ws46{word-spacing:1.579200px;}
.ws1f{word-spacing:1.606800px;}
.ws76{word-spacing:1.635600px;}
.ws62{word-spacing:1.668600px;}
.ws103{word-spacing:1.692000px;}
.wscf{word-spacing:1.748400px;}
.wsdc{word-spacing:1.804800px;}
.ws31{word-spacing:1.861200px;}
.ws70{word-spacing:1.917600px;}
.ws45{word-spacing:1.974000px;}
.wsdd{word-spacing:2.030400px;}
.wsd6{word-spacing:2.086800px;}
.ws3c{word-spacing:2.143200px;}
.wsfd{word-spacing:2.199600px;}
.ws128{word-spacing:2.256000px;}
.ws86{word-spacing:2.312400px;}
.ws88{word-spacing:2.368800px;}
.ws34{word-spacing:2.425200px;}
.wsa3{word-spacing:2.481600px;}
.ws1e{word-spacing:2.533800px;}
.ws23{word-spacing:2.535000px;}
.wse7{word-spacing:2.538000px;}
.ws87{word-spacing:2.594400px;}
.ws43{word-spacing:2.650800px;}
.ws74{word-spacing:2.707200px;}
.ws77{word-spacing:2.763600px;}
.wse6{word-spacing:2.820000px;}
.ws1c{word-spacing:2.842800px;}
.wsbb{word-spacing:2.876400px;}
.ws52{word-spacing:2.932800px;}
.ws1d{word-spacing:2.966400px;}
.ws100{word-spacing:2.989200px;}
.ws69{word-spacing:3.045600px;}
.wse0{word-spacing:3.102000px;}
.ws6d{word-spacing:3.158400px;}
.wsa5{word-spacing:3.214800px;}
.ws4b{word-spacing:3.271200px;}
.ws26{word-spacing:3.327600px;}
.ws3b{word-spacing:3.384000px;}
.ws10a{word-spacing:3.440400px;}
.ws89{word-spacing:3.496800px;}
.wsb9{word-spacing:3.553200px;}
.ws2a{word-spacing:3.609600px;}
.ws6f{word-spacing:3.666000px;}
.ws56{word-spacing:3.722400px;}
.wse9{word-spacing:3.778800px;}
.wsa1{word-spacing:3.835200px;}
.wsc7{word-spacing:3.891600px;}
.wsb7{word-spacing:4.004400px;}
.wseb{word-spacing:4.060800px;}
.wsbe{word-spacing:4.117200px;}
.ws6b{word-spacing:4.173600px;}
.wsb4{word-spacing:4.230000px;}
.ws124{word-spacing:4.286400px;}
.ws11a{word-spacing:4.342800px;}
.wsdb{word-spacing:4.399200px;}
.ws8f{word-spacing:4.455600px;}
.ws3d{word-spacing:4.512000px;}
.ws9c{word-spacing:4.568400px;}
.wsd9{word-spacing:4.624800px;}
.wsd4{word-spacing:4.681200px;}
.ws5b{word-spacing:4.737600px;}
.ws72{word-spacing:4.794000px;}
.ws8c{word-spacing:4.850400px;}
.wsc3{word-spacing:4.906800px;}
.ws68{word-spacing:4.963200px;}
.wsb1{word-spacing:5.019600px;}
.ws8b{word-spacing:5.076000px;}
.wsd8{word-spacing:5.132400px;}
.wsef{word-spacing:5.188800px;}
.ws4d{word-spacing:5.245200px;}
.ws12b{word-spacing:5.301600px;}
.ws2f{word-spacing:5.358000px;}
.wsde{word-spacing:5.414400px;}
.ws108{word-spacing:5.470800px;}
.ws109{word-spacing:5.527200px;}
.ws30{word-spacing:5.583600px;}
.ws61{word-spacing:5.685600px;}
.ws9e{word-spacing:5.696400px;}
.wsc4{word-spacing:5.752800px;}
.ws7a{word-spacing:5.809200px;}
.ws80{word-spacing:5.865600px;}
.ws131{word-spacing:5.922000px;}
.ws5f{word-spacing:5.932800px;}
.ws8a{word-spacing:5.978400px;}
.wsb6{word-spacing:6.034800px;}
.ws82{word-spacing:6.091200px;}
.ws2b{word-spacing:6.204000px;}
.ws6c{word-spacing:6.260400px;}
.ws6e{word-spacing:6.486000px;}
.ws50{word-spacing:6.598800px;}
.wsdf{word-spacing:6.655200px;}
.ws5c{word-spacing:6.674400px;}
.ws129{word-spacing:6.824400px;}
.wsea{word-spacing:6.937200px;}
.ws12d{word-spacing:6.993600px;}
.ws10c{word-spacing:7.050000px;}
.wsca{word-spacing:7.162800px;}
.ws7f{word-spacing:7.219200px;}
.ws65{word-spacing:7.388400px;}
.wsc0{word-spacing:7.501200px;}
.wsd7{word-spacing:7.557600px;}
.ws123{word-spacing:7.614000px;}
.ws29{word-spacing:7.670400px;}
.wscd{word-spacing:7.726800px;}
.wsfe{word-spacing:7.839600px;}
.wsa2{word-spacing:8.008800px;}
.ws104{word-spacing:8.065200px;}
.wsa0{word-spacing:8.121600px;}
.wse1{word-spacing:8.234400px;}
.wsac{word-spacing:8.403600px;}
.ws130{word-spacing:8.460000px;}
.wsb5{word-spacing:8.516400px;}
.ws58{word-spacing:8.572800px;}
.wsf9{word-spacing:8.798400px;}
.ws10b{word-spacing:8.854800px;}
.ws73{word-spacing:8.967600px;}
.ws1b{word-spacing:9.022800px;}
.ws55{word-spacing:9.024000px;}
.ws4f{word-spacing:9.080400px;}
.wsf6{word-spacing:9.249600px;}
.ws6a{word-spacing:9.362400px;}
.ws125{word-spacing:9.418800px;}
.ws107{word-spacing:9.475200px;}
.wsc9{word-spacing:9.588000px;}
.wsf8{word-spacing:9.700800px;}
.ws11b{word-spacing:10.039200px;}
.ws85{word-spacing:10.208400px;}
.ws132{word-spacing:10.264800px;}
.wsf3{word-spacing:10.716000px;}
.ws126{word-spacing:11.054400px;}
.ws41{word-spacing:11.280000px;}
.ws111{word-spacing:11.618400px;}
.ws105{word-spacing:12.126000px;}
.ws79{word-spacing:12.577200px;}
.ws9b{word-spacing:12.840000px;}
.ws22{word-spacing:13.338000px;}
.ws75{word-spacing:13.705200px;}
.wsf1{word-spacing:13.818000px;}
.ws120{word-spacing:14.212800px;}
.ws117{word-spacing:14.269200px;}
.wse5{word-spacing:14.382000px;}
.ws119{word-spacing:14.438400px;}
.wsf2{word-spacing:14.664000px;}
.ws127{word-spacing:14.833200px;}
.wse4{word-spacing:14.889600px;}
.wse3{word-spacing:15.904800px;}
.ws113{word-spacing:16.017600px;}
.ws11c{word-spacing:16.186800px;}
.ws106{word-spacing:16.243200px;}
.ws11d{word-spacing:16.299600px;}
.ws12e{word-spacing:16.807200px;}
.ws133{word-spacing:17.540400px;}
.ws12f{word-spacing:17.935200px;}
.ws112{word-spacing:19.006800px;}
.wsfb{word-spacing:19.740000px;}
.ws121{word-spacing:19.852800px;}
.wsf4{word-spacing:20.191200px;}
.ws118{word-spacing:20.642400px;}
.ws134{word-spacing:22.447200px;}
.ws122{word-spacing:23.462400px;}
.ws12a{word-spacing:23.744400px;}
.ws11f{word-spacing:23.913600px;}
.wsfa{word-spacing:26.395200px;}
.ws114{word-spacing:29.722800px;}
.ws110{word-spacing:30.850800px;}
.ws11e{word-spacing:32.260800px;}
.wsfc{word-spacing:34.122000px;}
.wsa8{word-spacing:58.224000px;}
._1f{margin-left:-47.201779px;}
._22{margin-left:-29.895973px;}
._23{margin-left:-23.094679px;}
._16{margin-left:-22.032679px;}
._10{margin-left:-20.047543px;}
._11{margin-left:-18.987079px;}
._1d{margin-left:-16.889467px;}
._18{margin-left:-15.091837px;}
._b{margin-left:-13.898820px;}
._e{margin-left:-11.593400px;}
._a{margin-left:-10.152300px;}
._d{margin-left:-8.256960px;}
._9{margin-left:-6.182400px;}
._3{margin-left:-5.019300px;}
._8{margin-left:-3.996300px;}
._2{margin-left:-2.882100px;}
._0{margin-left:-1.836900px;}
._1{width:1.622400px;}
._4{width:3.086400px;}
._f{width:4.149235px;}
._7{width:5.248442px;}
._5{width:6.308652px;}
._6{width:7.449903px;}
._12{width:8.704131px;}
._20{width:11.939640px;}
._13{width:13.039680px;}
._1c{width:15.408480px;}
._24{width:17.464200px;}
._1e{width:19.545479px;}
._14{width:21.600000px;}
._21{width:23.664255px;}
._15{width:58.224000px;}
._17{width:61.106100px;}
._1a{width:174.638400px;}
._19{width:1148.594100px;}
._1b{width:1720.641600px;}
._c{width:2495.083800px;}
.fc2{color:rgb(19,122,201);}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:56.400000px;}
.fs6{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:50.773200px;}
.y1{bottom:50.994450px;}
.y43{bottom:51.032700px;}
.ya{bottom:93.129000px;}
.y77{bottom:94.349850px;}
.y98{bottom:95.428350px;}
.y9{bottom:103.629000px;}
.y76{bottom:104.849850px;}
.y1df{bottom:109.701300px;}
.y1de{bottom:109.701450px;}
.y97{bottom:110.180250px;}
.y8{bottom:114.129000px;}
.y1e1{bottom:114.432150px;}
.y75{bottom:115.349850px;}
.y96{bottom:124.313250px;}
.y7{bottom:124.629000px;}
.y166{bottom:126.437100px;}
.y168{bottom:126.801300px;}
.y18d{bottom:126.801450px;}
.y1b1{bottom:128.134650px;}
.y1da{bottom:128.156400px;}
.y148{bottom:128.681250px;}
.y103{bottom:130.689000px;}
.ycf{bottom:132.933150px;}
.y6{bottom:135.129000px;}
.y95{bottom:139.065300px;}
.y165{bottom:141.437100px;}
.y147{bottom:143.681250px;}
.y167{bottom:143.901300px;}
.y18c{bottom:143.901450px;}
.y102{bottom:145.689000px;}
.y1b0{bottom:147.386700px;}
.y1d9{bottom:147.408300px;}
.yce{bottom:147.933150px;}
.y3f{bottom:152.136900px;}
.y5{bottom:154.132950px;}
.y164{bottom:156.437100px;}
.y146{bottom:158.681250px;}
.y101{bottom:160.689000px;}
.y69{bottom:161.001300px;}
.y18b{bottom:161.001450px;}
.y3e{bottom:162.636900px;}
.ycd{bottom:162.933150px;}
.y1af{bottom:166.638600px;}
.y1d8{bottom:166.660350px;}
.y163{bottom:171.437100px;}
.y4{bottom:173.136900px;}
.y145{bottom:173.681250px;}
.y100{bottom:175.689000px;}
.y155{bottom:177.933150px;}
.y68{bottom:178.101300px;}
.y8e{bottom:178.101450px;}
.y11f{bottom:182.185050px;}
.ycc{bottom:182.185200px;}
.y3{bottom:183.636900px;}
.y1ae{bottom:185.890500px;}
.y1d7{bottom:185.912250px;}
.y162{bottom:186.437100px;}
.yff{bottom:190.689000px;}
.y144{bottom:192.933150px;}
.y67{bottom:195.201300px;}
.y18a{bottom:195.201450px;}
.y161{bottom:201.437100px;}
.y1ad{bottom:205.142550px;}
.y1d6{bottom:205.164300px;}
.yfe{bottom:205.689000px;}
.y15d{bottom:207.933150px;}
.y41{bottom:209.667750px;}
.y11e{bottom:212.185050px;}
.ycb{bottom:212.185200px;}
.y66{bottom:212.301150px;}
.y8d{bottom:212.301300px;}
.y189{bottom:212.301450px;}
.y40{bottom:220.167750px;}
.yfd{bottom:220.689000px;}
.y143{bottom:222.933150px;}
.y1ac{bottom:224.394450px;}
.y1d5{bottom:224.416200px;}
.y11d{bottom:227.185050px;}
.yca{bottom:227.185200px;}
.y65{bottom:229.401150px;}
.y8c{bottom:229.401300px;}
.y188{bottom:229.401450px;}
.y160{bottom:235.689000px;}
.y142{bottom:237.933150px;}
.yfc{bottom:239.941050px;}
.y11c{bottom:242.185050px;}
.yc9{bottom:242.185200px;}
.y1d4{bottom:243.668100px;}
.y64{bottom:246.501150px;}
.y8b{bottom:246.501300px;}
.y187{bottom:246.501450px;}
.y15f{bottom:250.689000px;}
.y141{bottom:252.933150px;}
.y11b{bottom:257.185050px;}
.y1ab{bottom:258.646500px;}
.y1d3{bottom:258.668100px;}
.yc8{bottom:261.437100px;}
.y63{bottom:263.601150px;}
.y3d{bottom:263.601300px;}
.y186{bottom:263.601450px;}
.y15e{bottom:265.689000px;}
.y140{bottom:267.933150px;}
.yfb{bottom:269.941050px;}
.y11a{bottom:272.185050px;}
.yc7{bottom:276.437100px;}
.y1aa{bottom:277.898400px;}
.y1d2{bottom:277.920150px;}
.y62{bottom:280.701150px;}
.y3c{bottom:280.701300px;}
.y185{bottom:280.701450px;}
.y13f{bottom:282.933150px;}
.yfa{bottom:284.941050px;}
.y119{bottom:287.185200px;}
.yc6{bottom:295.689150px;}
.y1a9{bottom:297.150450px;}
.y1d1{bottom:297.172050px;}
.y61{bottom:297.801150px;}
.y3b{bottom:297.801300px;}
.y13e{bottom:297.933150px;}
.yf9{bottom:299.941050px;}
.y118{bottom:302.185200px;}
.yc5{bottom:310.689150px;}
.y60{bottom:314.901150px;}
.y3a{bottom:314.901300px;}
.yf8{bottom:314.941050px;}
.y1a8{bottom:316.402350px;}
.y1d0{bottom:316.424100px;}
.y117{bottom:317.185200px;}
.y154{bottom:321.437100px;}
.yc4{bottom:329.941050px;}
.y5f{bottom:332.001150px;}
.y39{bottom:332.001300px;}
.y116{bottom:332.185200px;}
.y1a7{bottom:335.654400px;}
.y1cf{bottom:335.676000px;}
.y153{bottom:336.437100px;}
.yc3{bottom:344.941050px;}
.y115{bottom:347.185200px;}
.y5e{bottom:349.101150px;}
.y38{bottom:349.101300px;}
.y152{bottom:351.437100px;}
.y1a6{bottom:354.906300px;}
.y1ce{bottom:354.928050px;}
.yf7{bottom:359.941050px;}
.y114{bottom:362.185200px;}
.yc2{bottom:364.192950px;}
.y5d{bottom:366.201150px;}
.y37{bottom:366.201300px;}
.y151{bottom:366.437100px;}
.y1a5{bottom:374.158200px;}
.y1cd{bottom:374.179950px;}
.yf6{bottom:374.941050px;}
.yc1{bottom:379.192950px;}
.y113{bottom:381.437100px;}
.y36{bottom:383.301150px;}
.y184{bottom:383.301300px;}
.yf5{bottom:389.941050px;}
.y1a4{bottom:393.410250px;}
.y1cc{bottom:393.432000px;}
.yc0{bottom:394.192950px;}
.y112{bottom:396.437100px;}
.y5c{bottom:400.401150px;}
.y183{bottom:400.401300px;}
.yf4{bottom:404.941050px;}
.ybf{bottom:409.192950px;}
.y13d{bottom:411.437100px;}
.y1a3{bottom:412.662300px;}
.y1cb{bottom:412.683900px;}
.y111{bottom:415.689000px;}
.y5b{bottom:417.501150px;}
.y8a{bottom:417.501300px;}
.y89{bottom:421.716300px;}
.y172{bottom:422.185200px;}
.ybe{bottom:424.192950px;}
.y13c{bottom:426.437100px;}
.y110{bottom:430.689000px;}
.y1a2{bottom:431.914200px;}
.y1ca{bottom:431.935800px;}
.y5a{bottom:434.601150px;}
.y182{bottom:434.601300px;}
.y171{bottom:437.185200px;}
.ybd{bottom:439.192950px;}
.y13b{bottom:441.437100px;}
.y150{bottom:445.689000px;}
.y35{bottom:448.908900px;}
.y10f{bottom:449.941050px;}
.y1dd{bottom:451.187850px;}
.y59{bottom:451.701150px;}
.y94{bottom:451.701300px;}
.y170{bottom:452.185200px;}
.ybc{bottom:454.192950px;}
.y93{bottom:455.916300px;}
.y13a{bottom:456.437100px;}
.y14f{bottom:460.689000px;}
.y33{bottom:464.658900px;}
.y10e{bottom:464.941050px;}
.y1a1{bottom:466.166100px;}
.y1c9{bottom:466.187850px;}
.y34{bottom:468.123900px;}
.y58{bottom:468.801150px;}
.y181{bottom:468.801300px;}
.ybb{bottom:469.192950px;}
.y139{bottom:471.437100px;}
.y10d{bottom:479.941050px;}
.y32{bottom:480.408900px;}
.y31{bottom:483.873900px;}
.yba{bottom:484.192950px;}
.y1c8{bottom:485.439900px;}
.y57{bottom:485.901150px;}
.y180{bottom:485.901300px;}
.y138{bottom:486.437100px;}
.y92{bottom:490.116150px;}
.y15c{bottom:490.689000px;}
.y10c{bottom:494.941050px;}
.y2f{bottom:496.158900px;}
.yb9{bottom:499.192950px;}
.y30{bottom:499.623900px;}
.y1c7{bottom:500.439900px;}
.y16f{bottom:501.437100px;}
.y56{bottom:503.001000px;}
.y88{bottom:503.001150px;}
.y17f{bottom:503.001300px;}
.yf3{bottom:503.445000px;}
.y137{bottom:505.689000px;}
.y10b{bottom:509.941050px;}
.y2d{bottom:511.908900px;}
.yb8{bottom:514.192950px;}
.y2e{bottom:515.373900px;}
.y1dc{bottom:515.439750px;}
.y16e{bottom:516.437100px;}
.yf2{bottom:518.445000px;}
.y55{bottom:520.101000px;}
.y87{bottom:520.101150px;}
.y17e{bottom:520.101300px;}
.y136{bottom:520.689000px;}
.y14e{bottom:524.941050px;}
.y2b{bottom:527.658900px;}
.yb7{bottom:529.192950px;}
.y1c6{bottom:530.439750px;}
.y2c{bottom:531.123900px;}
.yf1{bottom:533.445000px;}
.y135{bottom:535.689000px;}
.y54{bottom:537.201000px;}
.y91{bottom:537.201150px;}
.y17d{bottom:537.201300px;}
.y14d{bottom:539.941050px;}
.y29{bottom:543.408900px;}
.yb6{bottom:544.192950px;}
.y1c5{bottom:545.439750px;}
.y2a{bottom:546.873900px;}
.yf0{bottom:548.445000px;}
.y134{bottom:550.689000px;}
.y53{bottom:554.301000px;}
.y86{bottom:554.301150px;}
.y14c{bottom:554.941050px;}
.y27{bottom:559.158900px;}
.yb5{bottom:559.192950px;}
.y1db{bottom:560.439750px;}
.y28{bottom:562.623900px;}
.yef{bottom:563.445000px;}
.y133{bottom:565.689000px;}
.y15b{bottom:569.941050px;}
.y52{bottom:571.401000px;}
.y85{bottom:571.401150px;}
.yb4{bottom:574.192950px;}
.y25{bottom:574.908900px;}
.y1c4{bottom:575.439750px;}
.y26{bottom:578.373900px;}
.yee{bottom:578.445000px;}
.y132{bottom:580.689000px;}
.y15a{bottom:584.941050px;}
.y51{bottom:588.501000px;}
.y90{bottom:588.501150px;}
.yb3{bottom:589.192950px;}
.y1c3{bottom:590.439750px;}
.y24{bottom:590.658900px;}
.yed{bottom:593.445000px;}
.y23{bottom:594.123900px;}
.y16d{bottom:595.689000px;}
.y131{bottom:599.941050px;}
.yb2{bottom:604.192950px;}
.y1c2{bottom:605.439750px;}
.y50{bottom:605.601000px;}
.y8f{bottom:605.601150px;}
.y21{bottom:606.408900px;}
.yec{bottom:608.445000px;}
.y22{bottom:609.873900px;}
.y130{bottom:614.941050px;}
.yb1{bottom:619.192950px;}
.y1c1{bottom:620.439750px;}
.y1f{bottom:622.158900px;}
.y4f{bottom:622.701000px;}
.y84{bottom:622.701150px;}
.yeb{bottom:623.445000px;}
.y20{bottom:625.623900px;}
.y12f{bottom:629.941050px;}
.yb0{bottom:634.192950px;}
.y1a0{bottom:635.418150px;}
.y1c0{bottom:635.439750px;}
.y1e{bottom:637.908900px;}
.y10a{bottom:638.445000px;}
.y4e{bottom:639.801000px;}
.y83{bottom:639.801150px;}
.y1d{bottom:641.373900px;}
.yea{bottom:642.696900px;}
.y16c{bottom:644.941050px;}
.yaf{bottom:649.192950px;}
.y109{bottom:653.445000px;}
.y1b{bottom:653.658900px;}
.y19f{bottom:654.670050px;}
.y1bf{bottom:654.691800px;}
.y4d{bottom:656.901000px;}
.y82{bottom:656.901150px;}
.y1c{bottom:657.123900px;}
.ye9{bottom:657.696900px;}
.y12e{bottom:664.192950px;}
.yae{bottom:668.445000px;}
.y19{bottom:669.408900px;}
.ye8{bottom:672.696900px;}
.y1a{bottom:672.873900px;}
.y19e{bottom:673.922100px;}
.y1be{bottom:673.943700px;}
.y4c{bottom:674.001000px;}
.y17c{bottom:674.001150px;}
.y12d{bottom:679.192950px;}
.yad{bottom:683.445000px;}
.y17{bottom:685.158900px;}
.ye7{bottom:687.696900px;}
.y18{bottom:688.623900px;}
.y4b{bottom:691.101000px;}
.y81{bottom:691.101150px;}
.y19d{bottom:693.174000px;}
.y1bd{bottom:693.195750px;}
.y12c{bottom:694.192950px;}
.y14b{bottom:698.445000px;}
.y16{bottom:700.908900px;}
.ye6{bottom:702.696900px;}
.yac{bottom:702.697050px;}
.y15{bottom:704.373900px;}
.y4a{bottom:708.201000px;}
.y17b{bottom:708.201150px;}
.y12b{bottom:709.192950px;}
.y19c{bottom:712.426050px;}
.y1bc{bottom:712.447650px;}
.y14a{bottom:713.445000px;}
.ye5{bottom:717.696900px;}
.yab{bottom:717.697050px;}
.y14{bottom:720.910950px;}
.y12a{bottom:724.192950px;}
.y49{bottom:725.301000px;}
.y80{bottom:725.301150px;}
.y149{bottom:728.445000px;}
.y19b{bottom:731.677950px;}
.y1bb{bottom:731.699700px;}
.ye4{bottom:732.696900px;}
.yaa{bottom:736.948950px;}
.y16b{bottom:739.192950px;}
.y13{bottom:741.910950px;}
.y48{bottom:742.401000px;}
.y17a{bottom:742.401150px;}
.y129{bottom:743.445000px;}
.ye3{bottom:747.696900px;}
.y19a{bottom:750.930000px;}
.y1ba{bottom:750.951600px;}
.ya9{bottom:751.948950px;}
.y16a{bottom:754.192950px;}
.y128{bottom:758.445000px;}
.y6c{bottom:759.501000px;}
.y179{bottom:759.501150px;}
.ye2{bottom:762.696900px;}
.y12{bottom:762.910950px;}
.y169{bottom:769.192950px;}
.y1b9{bottom:770.203650px;}
.ya8{bottom:771.200850px;}
.y127{bottom:773.445000px;}
.y47{bottom:776.600850px;}
.y7f{bottom:776.601000px;}
.y178{bottom:776.601150px;}
.ye1{bottom:777.696900px;}
.y11{bottom:783.910950px;}
.y1b8{bottom:785.203650px;}
.y126{bottom:788.445000px;}
.y108{bottom:792.696900px;}
.y46{bottom:793.700850px;}
.y7e{bottom:793.701000px;}
.ye0{bottom:796.948950px;}
.y1e0{bottom:797.916000px;}
.y1b7{bottom:800.203650px;}
.ya7{bottom:801.200850px;}
.y159{bottom:803.445000px;}
.y10{bottom:804.910950px;}
.y107{bottom:807.696900px;}
.y6b{bottom:810.800850px;}
.y7d{bottom:810.801000px;}
.y177{bottom:810.801150px;}
.ydf{bottom:811.948950px;}
.y1b6{bottom:815.203650px;}
.ya6{bottom:816.200850px;}
.y158{bottom:818.445000px;}
.y106{bottom:822.696900px;}
.yf{bottom:825.910950px;}
.yde{bottom:826.948950px;}
.y6a{bottom:827.901000px;}
.y176{bottom:827.901150px;}
.y1b5{bottom:830.203650px;}
.ya5{bottom:831.200850px;}
.y157{bottom:833.445000px;}
.y125{bottom:837.696900px;}
.ydd{bottom:841.948950px;}
.y45{bottom:845.000850px;}
.y7c{bottom:845.001000px;}
.y1b4{bottom:845.203650px;}
.ya4{bottom:846.200850px;}
.ye{bottom:846.910950px;}
.y124{bottom:852.696900px;}
.ydc{bottom:856.948950px;}
.y1b3{bottom:860.203650px;}
.ya3{bottom:861.200850px;}
.y44{bottom:862.100850px;}
.y7b{bottom:862.101000px;}
.y123{bottom:867.696900px;}
.ydb{bottom:871.948950px;}
.ya2{bottom:876.200850px;}
.y7a{bottom:879.201000px;}
.y199{bottom:879.433800px;}
.y1b2{bottom:879.455550px;}
.yd{bottom:880.666800px;}
.y122{bottom:882.696900px;}
.yda{bottom:886.948950px;}
.ya1{bottom:891.200850px;}
.y1e5{bottom:896.300850px;}
.y79{bottom:896.301000px;}
.y175{bottom:896.301150px;}
.y121{bottom:897.696900px;}
.y198{bottom:900.781350px;}
.yd9{bottom:901.948950px;}
.ya0{bottom:906.200850px;}
.yc{bottom:910.666800px;}
.y120{bottom:912.696900px;}
.y78{bottom:913.401000px;}
.y197{bottom:915.781350px;}
.yd8{bottom:916.948950px;}
.y9f{bottom:921.200850px;}
.y1e4{bottom:930.500850px;}
.y74{bottom:930.501000px;}
.yd7{bottom:931.948950px;}
.y9e{bottom:936.200850px;}
.yb{bottom:940.666800px;}
.y196{bottom:945.038250px;}
.yd6{bottom:946.948950px;}
.y73{bottom:947.600850px;}
.y174{bottom:947.601000px;}
.y9d{bottom:955.452900px;}
.y195{bottom:960.038250px;}
.yd5{bottom:961.948950px;}
.y1e3{bottom:964.700850px;}
.y72{bottom:964.701000px;}
.y9c{bottom:970.452900px;}
.y194{bottom:975.038250px;}
.yd4{bottom:976.948950px;}
.y156{bottom:981.200850px;}
.y71{bottom:981.800850px;}
.y173{bottom:981.801000px;}
.y9b{bottom:989.704800px;}
.y193{bottom:990.038250px;}
.y105{bottom:991.948950px;}
.yd3{bottom:996.200850px;}
.y1e2{bottom:998.900850px;}
.y70{bottom:998.901000px;}
.y192{bottom:1005.038250px;}
.y104{bottom:1006.948950px;}
.yd2{bottom:1011.200850px;}
.y6f{bottom:1016.000850px;}
.y18e{bottom:1016.001000px;}
.y191{bottom:1020.038250px;}
.yd1{bottom:1026.200850px;}
.y6e{bottom:1033.100850px;}
.y9a{bottom:1034.704800px;}
.y190{bottom:1035.038250px;}
.yd0{bottom:1041.200850px;}
.y99{bottom:1049.704800px;}
.y18f{bottom:1050.038250px;}
.y6d{bottom:1050.200850px;}
.y42{bottom:1139.391000px;}
.hf{height:26.525391px;}
.h2{height:28.735840px;}
.h4{height:28.926270px;}
.h7{height:29.182617px;}
.h8{height:33.351562px;}
.h12{height:35.367188px;}
.h10{height:35.601562px;}
.hc{height:38.150086px;}
.h11{height:38.405391px;}
.hd{height:39.160547px;}
.h3{height:39.188086px;}
.hb{height:40.634766px;}
.h9{height:42.180000px;}
.h13{height:44.405391px;}
.ha{height:45.793800px;}
.he{height:46.042617px;}
.h6{height:46.168125px;}
.h5{height:93.240000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:63.179400px;}
.x35{left:76.535550px;}
.x2{left:84.289350px;}
.x39{left:86.539350px;}
.x3{left:90.898350px;}
.x38{left:93.516900px;}
.x18{left:95.873550px;}
.x3f{left:97.795350px;}
.x22{left:114.481800px;}
.x23{left:125.797200px;}
.x48{left:138.189000px;}
.x16{left:141.105450px;}
.x17{left:151.747050px;}
.x29{left:175.710150px;}
.x2a{left:187.787400px;}
.x40{left:192.330900px;}
.x47{left:203.726100px;}
.x8{left:222.022050px;}
.x9{left:227.955450px;}
.x43{left:238.553250px;}
.x44{left:244.073550px;}
.x4a{left:249.910500px;}
.x4b{left:254.748300px;}
.x36{left:265.346550px;}
.x1d{left:292.630200px;}
.x41{left:300.123750px;}
.x1e{left:303.725400px;}
.x42{left:305.342250px;}
.x25{left:309.142200px;}
.x26{left:320.894400px;}
.x2f{left:326.731350px;}
.x30{left:338.245950px;}
.x20{left:357.789300px;}
.x21{left:369.288150px;}
.x10{left:376.738800px;}
.x11{left:382.669800px;}
.x37{left:425.196900px;}
.x34{left:446.456700px;}
.x19{left:453.084150px;}
.xe{left:460.041600px;}
.x1a{left:463.637550px;}
.xf{left:465.802200px;}
.x31{left:467.716500px;}
.x24{left:471.902550px;}
.x3a{left:480.472500px;}
.x45{left:488.267850px;}
.x2d{left:489.455250px;}
.xa{left:497.067900px;}
.x2e{left:500.450250px;}
.xb{left:502.829700px;}
.x6{left:527.714700px;}
.x14{left:529.734000px;}
.x7{left:533.687700px;}
.x15{left:540.129600px;}
.x3b{left:564.144300px;}
.x49{left:572.952750px;}
.x2b{left:587.014050px;}
.x2c{left:597.822600px;}
.x3c{left:608.739150px;}
.x46{left:640.090950px;}
.x12{left:648.896550px;}
.x13{left:660.181200px;}
.x3d{left:707.663400px;}
.x3e{left:713.511900px;}
.x1f{left:717.353250px;}
.x27{left:719.579100px;}
.xc{left:721.611000px;}
.x32{left:725.765250px;}
.xd{left:727.480800px;}
.x28{left:731.650800px;}
.x1b{left:735.987300px;}
.x1c{left:746.274900px;}
.x1{left:747.483600px;}
.x4{left:760.052700px;}
.x5{left:766.179300px;}
@media print{
.v7{vertical-align:-15.893333pt;}
.v2{vertical-align:-11.413333pt;}
.v5{vertical-align:-5.226667pt;}
.v3{vertical-align:-0.922667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:11.413333pt;}
.v4{vertical-align:14.986667pt;}
.v6{vertical-align:15.893333pt;}
.lsa{letter-spacing:-5.034667pt;}
.ls22{letter-spacing:-4.762667pt;}
.ls8{letter-spacing:-4.608000pt;}
.ls21{letter-spacing:-3.860267pt;}
.ls7{letter-spacing:-3.328000pt;}
.lsb{letter-spacing:-2.901333pt;}
.ls1{letter-spacing:-1.178667pt;}
.ls3{letter-spacing:-0.784000pt;}
.ls9{letter-spacing:-0.645333pt;}
.lsc{letter-spacing:-0.528000pt;}
.ls1b{letter-spacing:-0.501333pt;}
.ls4{letter-spacing:-0.469333pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.384533pt;}
.ls1e{letter-spacing:-0.350933pt;}
.ls5{letter-spacing:-0.341333pt;}
.ls1a{letter-spacing:-0.300800pt;}
.ls14{letter-spacing:-0.253333pt;}
.ls6{letter-spacing:-0.234667pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:-0.173333pt;}
.ls19{letter-spacing:-0.150400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.004800pt;}
.ls18{letter-spacing:0.532800pt;}
.ls17{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.542400pt;}
.ls20{letter-spacing:0.597333pt;}
.ls1d{letter-spacing:0.725333pt;}
.lse{letter-spacing:0.896000pt;}
.ls10{letter-spacing:1.120000pt;}
.lsf{letter-spacing:1.642667pt;}
.ls13{letter-spacing:2.538667pt;}
.ls11{letter-spacing:2.874667pt;}
.ls12{letter-spacing:3.061333pt;}
.ws96{word-spacing:-42.666667pt;}
.ws98{word-spacing:-23.466667pt;}
.ws10e{word-spacing:-12.533333pt;}
.wsed{word-spacing:-12.382933pt;}
.wsa9{word-spacing:-12.232533pt;}
.ws9{word-spacing:-11.872000pt;}
.ws95{word-spacing:-11.861333pt;}
.wsa{word-spacing:-11.552000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.325333pt;}
.ws24{word-spacing:-10.000000pt;}
.ws0{word-spacing:-9.637333pt;}
.ws1{word-spacing:-9.464000pt;}
.ws8{word-spacing:-9.333333pt;}
.ws9a{word-spacing:-8.896000pt;}
.ws10d{word-spacing:-8.673067pt;}
.wsc{word-spacing:-8.424000pt;}
.ws12c{word-spacing:-7.770667pt;}
.ws7{word-spacing:-7.765333pt;}
.ws4{word-spacing:-7.338667pt;}
.ws5{word-spacing:-6.058667pt;}
.ws6{word-spacing:-5.632000pt;}
.ws115{word-spacing:-5.063467pt;}
.ws97{word-spacing:-4.522667pt;}
.ws116{word-spacing:-4.161067pt;}
.wsf7{word-spacing:-3.910400pt;}
.wsf5{word-spacing:-3.860267pt;}
.wsee{word-spacing:-3.659733pt;}
.wsaf{word-spacing:-3.308800pt;}
.ws19{word-spacing:-3.061333pt;}
.ws48{word-spacing:-3.058133pt;}
.wsad{word-spacing:-3.008000pt;}
.ws18{word-spacing:-2.874667pt;}
.wsab{word-spacing:-2.807467pt;}
.ws101{word-spacing:-2.657067pt;}
.wsaa{word-spacing:-2.606933pt;}
.ws3e{word-spacing:-2.556800pt;}
.wsd5{word-spacing:-2.506667pt;}
.ws91{word-spacing:-2.456533pt;}
.wsa6{word-spacing:-2.406400pt;}
.wsce{word-spacing:-2.356267pt;}
.wscc{word-spacing:-2.346667pt;}
.wsb2{word-spacing:-2.306133pt;}
.ws33{word-spacing:-2.256000pt;}
.ws4c{word-spacing:-2.205867pt;}
.wsf0{word-spacing:-2.155733pt;}
.wsb3{word-spacing:-2.105600pt;}
.ws57{word-spacing:-2.055467pt;}
.wsba{word-spacing:-2.005333pt;}
.ws4e{word-spacing:-1.955200pt;}
.wsd{word-spacing:-1.906667pt;}
.ws94{word-spacing:-1.905067pt;}
.wse8{word-spacing:-1.854933pt;}
.ws92{word-spacing:-1.804800pt;}
.ws8d{word-spacing:-1.754667pt;}
.ws35{word-spacing:-1.704533pt;}
.ws39{word-spacing:-1.654400pt;}
.ws16{word-spacing:-1.642667pt;}
.wsda{word-spacing:-1.604267pt;}
.ws47{word-spacing:-1.554133pt;}
.wsbf{word-spacing:-1.504000pt;}
.ws3a{word-spacing:-1.453867pt;}
.ws8e{word-spacing:-1.403733pt;}
.ws42{word-spacing:-1.353600pt;}
.ws67{word-spacing:-1.303467pt;}
.ws63{word-spacing:-1.263467pt;}
.ws27{word-spacing:-1.253333pt;}
.ws90{word-spacing:-1.203200pt;}
.ws28{word-spacing:-1.165333pt;}
.ws78{word-spacing:-1.153067pt;}
.ws17{word-spacing:-1.120000pt;}
.wsbc{word-spacing:-1.102933pt;}
.ws102{word-spacing:-1.052800pt;}
.wsbd{word-spacing:-1.002667pt;}
.ws44{word-spacing:-0.952533pt;}
.ws36{word-spacing:-0.902400pt;}
.ws15{word-spacing:-0.896000pt;}
.ws1a{word-spacing:-0.878933pt;}
.ws7b{word-spacing:-0.852267pt;}
.ws5e{word-spacing:-0.824000pt;}
.wsd2{word-spacing:-0.810667pt;}
.ws4a{word-spacing:-0.802133pt;}
.ws9f{word-spacing:-0.752000pt;}
.wscb{word-spacing:-0.725333pt;}
.wse2{word-spacing:-0.701867pt;}
.ws83{word-spacing:-0.651733pt;}
.ws93{word-spacing:-0.601600pt;}
.ws53{word-spacing:-0.551467pt;}
.ws2d{word-spacing:-0.501333pt;}
.ws7c{word-spacing:-0.451200pt;}
.ws60{word-spacing:-0.439467pt;}
.ws2e{word-spacing:-0.350933pt;}
.wsd0{word-spacing:-0.300800pt;}
.ws10f{word-spacing:-0.250667pt;}
.wsf{word-spacing:-0.234667pt;}
.ws32{word-spacing:-0.200533pt;}
.wsc6{word-spacing:-0.150400pt;}
.wsff{word-spacing:-0.100267pt;}
.ws21{word-spacing:-0.069333pt;}
.ws3f{word-spacing:-0.050133pt;}
.ws99{word-spacing:-0.042667pt;}
.wsb{word-spacing:0.000000pt;}
.ws54{word-spacing:0.050133pt;}
.ws12{word-spacing:0.058667pt;}
.ws59{word-spacing:0.100267pt;}
.ws37{word-spacing:0.150400pt;}
.wse{word-spacing:0.173333pt;}
.ws11{word-spacing:0.176000pt;}
.ws64{word-spacing:0.200533pt;}
.wsd3{word-spacing:0.213333pt;}
.wsa4{word-spacing:0.250667pt;}
.ws7e{word-spacing:0.253333pt;}
.wsd1{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.300800pt;}
.ws13{word-spacing:0.341333pt;}
.wsa7{word-spacing:0.350933pt;}
.wsec{word-spacing:0.401067pt;}
.ws14{word-spacing:0.426667pt;}
.ws49{word-spacing:0.451200pt;}
.ws10{word-spacing:0.469333pt;}
.ws40{word-spacing:0.501333pt;}
.ws84{word-spacing:0.551467pt;}
.ws5a{word-spacing:0.601600pt;}
.ws38{word-spacing:0.651733pt;}
.wsc5{word-spacing:0.701867pt;}
.ws71{word-spacing:0.752000pt;}
.wsae{word-spacing:0.802133pt;}
.wsc2{word-spacing:0.852267pt;}
.wsc8{word-spacing:0.902400pt;}
.ws25{word-spacing:0.936000pt;}
.ws81{word-spacing:0.952533pt;}
.ws66{word-spacing:1.002667pt;}
.ws5d{word-spacing:1.043733pt;}
.ws9d{word-spacing:1.052800pt;}
.wsc1{word-spacing:1.102933pt;}
.wsb8{word-spacing:1.153067pt;}
.ws20{word-spacing:1.153600pt;}
.ws51{word-spacing:1.203200pt;}
.wsb0{word-spacing:1.253333pt;}
.ws7d{word-spacing:1.353600pt;}
.ws46{word-spacing:1.403733pt;}
.ws1f{word-spacing:1.428267pt;}
.ws76{word-spacing:1.453867pt;}
.ws62{word-spacing:1.483200pt;}
.ws103{word-spacing:1.504000pt;}
.wscf{word-spacing:1.554133pt;}
.wsdc{word-spacing:1.604267pt;}
.ws31{word-spacing:1.654400pt;}
.ws70{word-spacing:1.704533pt;}
.ws45{word-spacing:1.754667pt;}
.wsdd{word-spacing:1.804800pt;}
.wsd6{word-spacing:1.854933pt;}
.ws3c{word-spacing:1.905067pt;}
.wsfd{word-spacing:1.955200pt;}
.ws128{word-spacing:2.005333pt;}
.ws86{word-spacing:2.055467pt;}
.ws88{word-spacing:2.105600pt;}
.ws34{word-spacing:2.155733pt;}
.wsa3{word-spacing:2.205867pt;}
.ws1e{word-spacing:2.252267pt;}
.ws23{word-spacing:2.253333pt;}
.wse7{word-spacing:2.256000pt;}
.ws87{word-spacing:2.306133pt;}
.ws43{word-spacing:2.356267pt;}
.ws74{word-spacing:2.406400pt;}
.ws77{word-spacing:2.456533pt;}
.wse6{word-spacing:2.506667pt;}
.ws1c{word-spacing:2.526933pt;}
.wsbb{word-spacing:2.556800pt;}
.ws52{word-spacing:2.606933pt;}
.ws1d{word-spacing:2.636800pt;}
.ws100{word-spacing:2.657067pt;}
.ws69{word-spacing:2.707200pt;}
.wse0{word-spacing:2.757333pt;}
.ws6d{word-spacing:2.807467pt;}
.wsa5{word-spacing:2.857600pt;}
.ws4b{word-spacing:2.907733pt;}
.ws26{word-spacing:2.957867pt;}
.ws3b{word-spacing:3.008000pt;}
.ws10a{word-spacing:3.058133pt;}
.ws89{word-spacing:3.108267pt;}
.wsb9{word-spacing:3.158400pt;}
.ws2a{word-spacing:3.208533pt;}
.ws6f{word-spacing:3.258667pt;}
.ws56{word-spacing:3.308800pt;}
.wse9{word-spacing:3.358933pt;}
.wsa1{word-spacing:3.409067pt;}
.wsc7{word-spacing:3.459200pt;}
.wsb7{word-spacing:3.559467pt;}
.wseb{word-spacing:3.609600pt;}
.wsbe{word-spacing:3.659733pt;}
.ws6b{word-spacing:3.709867pt;}
.wsb4{word-spacing:3.760000pt;}
.ws124{word-spacing:3.810133pt;}
.ws11a{word-spacing:3.860267pt;}
.wsdb{word-spacing:3.910400pt;}
.ws8f{word-spacing:3.960533pt;}
.ws3d{word-spacing:4.010667pt;}
.ws9c{word-spacing:4.060800pt;}
.wsd9{word-spacing:4.110933pt;}
.wsd4{word-spacing:4.161067pt;}
.ws5b{word-spacing:4.211200pt;}
.ws72{word-spacing:4.261333pt;}
.ws8c{word-spacing:4.311467pt;}
.wsc3{word-spacing:4.361600pt;}
.ws68{word-spacing:4.411733pt;}
.wsb1{word-spacing:4.461867pt;}
.ws8b{word-spacing:4.512000pt;}
.wsd8{word-spacing:4.562133pt;}
.wsef{word-spacing:4.612267pt;}
.ws4d{word-spacing:4.662400pt;}
.ws12b{word-spacing:4.712533pt;}
.ws2f{word-spacing:4.762667pt;}
.wsde{word-spacing:4.812800pt;}
.ws108{word-spacing:4.862933pt;}
.ws109{word-spacing:4.913067pt;}
.ws30{word-spacing:4.963200pt;}
.ws61{word-spacing:5.053867pt;}
.ws9e{word-spacing:5.063467pt;}
.wsc4{word-spacing:5.113600pt;}
.ws7a{word-spacing:5.163733pt;}
.ws80{word-spacing:5.213867pt;}
.ws131{word-spacing:5.264000pt;}
.ws5f{word-spacing:5.273600pt;}
.ws8a{word-spacing:5.314133pt;}
.wsb6{word-spacing:5.364267pt;}
.ws82{word-spacing:5.414400pt;}
.ws2b{word-spacing:5.514667pt;}
.ws6c{word-spacing:5.564800pt;}
.ws6e{word-spacing:5.765333pt;}
.ws50{word-spacing:5.865600pt;}
.wsdf{word-spacing:5.915733pt;}
.ws5c{word-spacing:5.932800pt;}
.ws129{word-spacing:6.066133pt;}
.wsea{word-spacing:6.166400pt;}
.ws12d{word-spacing:6.216533pt;}
.ws10c{word-spacing:6.266667pt;}
.wsca{word-spacing:6.366933pt;}
.ws7f{word-spacing:6.417067pt;}
.ws65{word-spacing:6.567467pt;}
.wsc0{word-spacing:6.667733pt;}
.wsd7{word-spacing:6.717867pt;}
.ws123{word-spacing:6.768000pt;}
.ws29{word-spacing:6.818133pt;}
.wscd{word-spacing:6.868267pt;}
.wsfe{word-spacing:6.968533pt;}
.wsa2{word-spacing:7.118933pt;}
.ws104{word-spacing:7.169067pt;}
.wsa0{word-spacing:7.219200pt;}
.wse1{word-spacing:7.319467pt;}
.wsac{word-spacing:7.469867pt;}
.ws130{word-spacing:7.520000pt;}
.wsb5{word-spacing:7.570133pt;}
.ws58{word-spacing:7.620267pt;}
.wsf9{word-spacing:7.820800pt;}
.ws10b{word-spacing:7.870933pt;}
.ws73{word-spacing:7.971200pt;}
.ws1b{word-spacing:8.020267pt;}
.ws55{word-spacing:8.021333pt;}
.ws4f{word-spacing:8.071467pt;}
.wsf6{word-spacing:8.221867pt;}
.ws6a{word-spacing:8.322133pt;}
.ws125{word-spacing:8.372267pt;}
.ws107{word-spacing:8.422400pt;}
.wsc9{word-spacing:8.522667pt;}
.wsf8{word-spacing:8.622933pt;}
.ws11b{word-spacing:8.923733pt;}
.ws85{word-spacing:9.074133pt;}
.ws132{word-spacing:9.124267pt;}
.wsf3{word-spacing:9.525333pt;}
.ws126{word-spacing:9.826133pt;}
.ws41{word-spacing:10.026667pt;}
.ws111{word-spacing:10.327467pt;}
.ws105{word-spacing:10.778667pt;}
.ws79{word-spacing:11.179733pt;}
.ws9b{word-spacing:11.413333pt;}
.ws22{word-spacing:11.856000pt;}
.ws75{word-spacing:12.182400pt;}
.wsf1{word-spacing:12.282667pt;}
.ws120{word-spacing:12.633600pt;}
.ws117{word-spacing:12.683733pt;}
.wse5{word-spacing:12.784000pt;}
.ws119{word-spacing:12.834133pt;}
.wsf2{word-spacing:13.034667pt;}
.ws127{word-spacing:13.185067pt;}
.wse4{word-spacing:13.235200pt;}
.wse3{word-spacing:14.137600pt;}
.ws113{word-spacing:14.237867pt;}
.ws11c{word-spacing:14.388267pt;}
.ws106{word-spacing:14.438400pt;}
.ws11d{word-spacing:14.488533pt;}
.ws12e{word-spacing:14.939733pt;}
.ws133{word-spacing:15.591467pt;}
.ws12f{word-spacing:15.942400pt;}
.ws112{word-spacing:16.894933pt;}
.wsfb{word-spacing:17.546667pt;}
.ws121{word-spacing:17.646933pt;}
.wsf4{word-spacing:17.947733pt;}
.ws118{word-spacing:18.348800pt;}
.ws134{word-spacing:19.953067pt;}
.ws122{word-spacing:20.855467pt;}
.ws12a{word-spacing:21.106133pt;}
.ws11f{word-spacing:21.256533pt;}
.wsfa{word-spacing:23.462400pt;}
.ws114{word-spacing:26.420267pt;}
.ws110{word-spacing:27.422933pt;}
.ws11e{word-spacing:28.676267pt;}
.wsfc{word-spacing:30.330667pt;}
.wsa8{word-spacing:51.754667pt;}
._1f{margin-left:-41.957137pt;}
._22{margin-left:-26.574198pt;}
._23{margin-left:-20.528603pt;}
._16{margin-left:-19.584603pt;}
._10{margin-left:-17.820038pt;}
._11{margin-left:-16.877403pt;}
._1d{margin-left:-15.012859pt;}
._18{margin-left:-13.414966pt;}
._b{margin-left:-12.354507pt;}
._e{margin-left:-10.305244pt;}
._a{margin-left:-9.024267pt;}
._d{margin-left:-7.339520pt;}
._9{margin-left:-5.495467pt;}
._3{margin-left:-4.461600pt;}
._8{margin-left:-3.552267pt;}
._2{margin-left:-2.561867pt;}
._0{margin-left:-1.632800pt;}
._1{width:1.442133pt;}
._4{width:2.743467pt;}
._f{width:3.688209pt;}
._7{width:4.665282pt;}
._5{width:5.607690pt;}
._6{width:6.622136pt;}
._12{width:7.737005pt;}
._20{width:10.613013pt;}
._13{width:11.590827pt;}
._1c{width:13.696427pt;}
._24{width:15.523733pt;}
._1e{width:17.373759pt;}
._14{width:19.200000pt;}
._21{width:21.034893pt;}
._15{width:51.754667pt;}
._17{width:54.316533pt;}
._1a{width:155.234133pt;}
._19{width:1020.972533pt;}
._1b{width:1529.459200pt;}
._c{width:2217.852267pt;}
.fsa{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:50.133333pt;}
.fs6{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:45.131733pt;}
.y1{bottom:45.328400pt;}
.y43{bottom:45.362400pt;}
.ya{bottom:82.781333pt;}
.y77{bottom:83.866533pt;}
.y98{bottom:84.825200pt;}
.y9{bottom:92.114667pt;}
.y76{bottom:93.199867pt;}
.y1df{bottom:97.512267pt;}
.y1de{bottom:97.512400pt;}
.y97{bottom:97.938000pt;}
.y8{bottom:101.448000pt;}
.y1e1{bottom:101.717467pt;}
.y75{bottom:102.533200pt;}
.y96{bottom:110.500667pt;}
.y7{bottom:110.781333pt;}
.y166{bottom:112.388533pt;}
.y168{bottom:112.712267pt;}
.y18d{bottom:112.712400pt;}
.y1b1{bottom:113.897467pt;}
.y1da{bottom:113.916800pt;}
.y148{bottom:114.383333pt;}
.y103{bottom:116.168000pt;}
.ycf{bottom:118.162800pt;}
.y6{bottom:120.114667pt;}
.y95{bottom:123.613600pt;}
.y165{bottom:125.721867pt;}
.y147{bottom:127.716667pt;}
.y167{bottom:127.912267pt;}
.y18c{bottom:127.912400pt;}
.y102{bottom:129.501333pt;}
.y1b0{bottom:131.010400pt;}
.y1d9{bottom:131.029600pt;}
.yce{bottom:131.496133pt;}
.y3f{bottom:135.232800pt;}
.y5{bottom:137.007067pt;}
.y164{bottom:139.055200pt;}
.y146{bottom:141.050000pt;}
.y101{bottom:142.834667pt;}
.y69{bottom:143.112267pt;}
.y18b{bottom:143.112400pt;}
.y3e{bottom:144.566133pt;}
.ycd{bottom:144.829467pt;}
.y1af{bottom:148.123200pt;}
.y1d8{bottom:148.142533pt;}
.y163{bottom:152.388533pt;}
.y4{bottom:153.899467pt;}
.y145{bottom:154.383333pt;}
.y100{bottom:156.168000pt;}
.y155{bottom:158.162800pt;}
.y68{bottom:158.312267pt;}
.y8e{bottom:158.312400pt;}
.y11f{bottom:161.942267pt;}
.ycc{bottom:161.942400pt;}
.y3{bottom:163.232800pt;}
.y1ae{bottom:165.236000pt;}
.y1d7{bottom:165.255333pt;}
.y162{bottom:165.721867pt;}
.yff{bottom:169.501333pt;}
.y144{bottom:171.496133pt;}
.y67{bottom:173.512267pt;}
.y18a{bottom:173.512400pt;}
.y161{bottom:179.055200pt;}
.y1ad{bottom:182.348933pt;}
.y1d6{bottom:182.368267pt;}
.yfe{bottom:182.834667pt;}
.y15d{bottom:184.829467pt;}
.y41{bottom:186.371333pt;}
.y11e{bottom:188.608933pt;}
.ycb{bottom:188.609067pt;}
.y66{bottom:188.712133pt;}
.y8d{bottom:188.712267pt;}
.y189{bottom:188.712400pt;}
.y40{bottom:195.704667pt;}
.yfd{bottom:196.168000pt;}
.y143{bottom:198.162800pt;}
.y1ac{bottom:199.461733pt;}
.y1d5{bottom:199.481067pt;}
.y11d{bottom:201.942267pt;}
.yca{bottom:201.942400pt;}
.y65{bottom:203.912133pt;}
.y8c{bottom:203.912267pt;}
.y188{bottom:203.912400pt;}
.y160{bottom:209.501333pt;}
.y142{bottom:211.496133pt;}
.yfc{bottom:213.280933pt;}
.y11c{bottom:215.275600pt;}
.yc9{bottom:215.275733pt;}
.y1d4{bottom:216.593867pt;}
.y64{bottom:219.112133pt;}
.y8b{bottom:219.112267pt;}
.y187{bottom:219.112400pt;}
.y15f{bottom:222.834667pt;}
.y141{bottom:224.829467pt;}
.y11b{bottom:228.608933pt;}
.y1ab{bottom:229.908000pt;}
.y1d3{bottom:229.927200pt;}
.yc8{bottom:232.388533pt;}
.y63{bottom:234.312133pt;}
.y3d{bottom:234.312267pt;}
.y186{bottom:234.312400pt;}
.y15e{bottom:236.168000pt;}
.y140{bottom:238.162800pt;}
.yfb{bottom:239.947600pt;}
.y11a{bottom:241.942267pt;}
.yc7{bottom:245.721867pt;}
.y1aa{bottom:247.020800pt;}
.y1d2{bottom:247.040133pt;}
.y62{bottom:249.512133pt;}
.y3c{bottom:249.512267pt;}
.y185{bottom:249.512400pt;}
.y13f{bottom:251.496133pt;}
.yfa{bottom:253.280933pt;}
.y119{bottom:255.275733pt;}
.yc6{bottom:262.834800pt;}
.y1a9{bottom:264.133733pt;}
.y1d1{bottom:264.152933pt;}
.y61{bottom:264.712133pt;}
.y3b{bottom:264.712267pt;}
.y13e{bottom:264.829467pt;}
.yf9{bottom:266.614267pt;}
.y118{bottom:268.609067pt;}
.yc5{bottom:276.168133pt;}
.y60{bottom:279.912133pt;}
.y3a{bottom:279.912267pt;}
.yf8{bottom:279.947600pt;}
.y1a8{bottom:281.246533pt;}
.y1d0{bottom:281.265867pt;}
.y117{bottom:281.942400pt;}
.y154{bottom:285.721867pt;}
.yc4{bottom:293.280933pt;}
.y5f{bottom:295.112133pt;}
.y39{bottom:295.112267pt;}
.y116{bottom:295.275733pt;}
.y1a7{bottom:298.359467pt;}
.y1cf{bottom:298.378667pt;}
.y153{bottom:299.055200pt;}
.yc3{bottom:306.614267pt;}
.y115{bottom:308.609067pt;}
.y5e{bottom:310.312133pt;}
.y38{bottom:310.312267pt;}
.y152{bottom:312.388533pt;}
.y1a6{bottom:315.472267pt;}
.y1ce{bottom:315.491600pt;}
.yf7{bottom:319.947600pt;}
.y114{bottom:321.942400pt;}
.yc2{bottom:323.727067pt;}
.y5d{bottom:325.512133pt;}
.y37{bottom:325.512267pt;}
.y151{bottom:325.721867pt;}
.y1a5{bottom:332.585067pt;}
.y1cd{bottom:332.604400pt;}
.yf6{bottom:333.280933pt;}
.yc1{bottom:337.060400pt;}
.y113{bottom:339.055200pt;}
.y36{bottom:340.712133pt;}
.y184{bottom:340.712267pt;}
.yf5{bottom:346.614267pt;}
.y1a4{bottom:349.698000pt;}
.y1cc{bottom:349.717333pt;}
.yc0{bottom:350.393733pt;}
.y112{bottom:352.388533pt;}
.y5c{bottom:355.912133pt;}
.y183{bottom:355.912267pt;}
.yf4{bottom:359.947600pt;}
.ybf{bottom:363.727067pt;}
.y13d{bottom:365.721867pt;}
.y1a3{bottom:366.810933pt;}
.y1cb{bottom:366.830133pt;}
.y111{bottom:369.501333pt;}
.y5b{bottom:371.112133pt;}
.y8a{bottom:371.112267pt;}
.y89{bottom:374.858933pt;}
.y172{bottom:375.275733pt;}
.ybe{bottom:377.060400pt;}
.y13c{bottom:379.055200pt;}
.y110{bottom:382.834667pt;}
.y1a2{bottom:383.923733pt;}
.y1ca{bottom:383.942933pt;}
.y5a{bottom:386.312133pt;}
.y182{bottom:386.312267pt;}
.y171{bottom:388.609067pt;}
.ybd{bottom:390.393733pt;}
.y13b{bottom:392.388533pt;}
.y150{bottom:396.168000pt;}
.y35{bottom:399.030133pt;}
.y10f{bottom:399.947600pt;}
.y1dd{bottom:401.055867pt;}
.y59{bottom:401.512133pt;}
.y94{bottom:401.512267pt;}
.y170{bottom:401.942400pt;}
.ybc{bottom:403.727067pt;}
.y93{bottom:405.258933pt;}
.y13a{bottom:405.721867pt;}
.y14f{bottom:409.501333pt;}
.y33{bottom:413.030133pt;}
.y10e{bottom:413.280933pt;}
.y1a1{bottom:414.369867pt;}
.y1c9{bottom:414.389200pt;}
.y34{bottom:416.110133pt;}
.y58{bottom:416.712133pt;}
.y181{bottom:416.712267pt;}
.ybb{bottom:417.060400pt;}
.y139{bottom:419.055200pt;}
.y10d{bottom:426.614267pt;}
.y32{bottom:427.030133pt;}
.y31{bottom:430.110133pt;}
.yba{bottom:430.393733pt;}
.y1c8{bottom:431.502133pt;}
.y57{bottom:431.912133pt;}
.y180{bottom:431.912267pt;}
.y138{bottom:432.388533pt;}
.y92{bottom:435.658800pt;}
.y15c{bottom:436.168000pt;}
.y10c{bottom:439.947600pt;}
.y2f{bottom:441.030133pt;}
.yb9{bottom:443.727067pt;}
.y30{bottom:444.110133pt;}
.y1c7{bottom:444.835467pt;}
.y16f{bottom:445.721867pt;}
.y56{bottom:447.112000pt;}
.y88{bottom:447.112133pt;}
.y17f{bottom:447.112267pt;}
.yf3{bottom:447.506667pt;}
.y137{bottom:449.501333pt;}
.y10b{bottom:453.280933pt;}
.y2d{bottom:455.030133pt;}
.yb8{bottom:457.060400pt;}
.y2e{bottom:458.110133pt;}
.y1dc{bottom:458.168667pt;}
.y16e{bottom:459.055200pt;}
.yf2{bottom:460.840000pt;}
.y55{bottom:462.312000pt;}
.y87{bottom:462.312133pt;}
.y17e{bottom:462.312267pt;}
.y136{bottom:462.834667pt;}
.y14e{bottom:466.614267pt;}
.y2b{bottom:469.030133pt;}
.yb7{bottom:470.393733pt;}
.y1c6{bottom:471.502000pt;}
.y2c{bottom:472.110133pt;}
.yf1{bottom:474.173333pt;}
.y135{bottom:476.168000pt;}
.y54{bottom:477.512000pt;}
.y91{bottom:477.512133pt;}
.y17d{bottom:477.512267pt;}
.y14d{bottom:479.947600pt;}
.y29{bottom:483.030133pt;}
.yb6{bottom:483.727067pt;}
.y1c5{bottom:484.835333pt;}
.y2a{bottom:486.110133pt;}
.yf0{bottom:487.506667pt;}
.y134{bottom:489.501333pt;}
.y53{bottom:492.712000pt;}
.y86{bottom:492.712133pt;}
.y14c{bottom:493.280933pt;}
.y27{bottom:497.030133pt;}
.yb5{bottom:497.060400pt;}
.y1db{bottom:498.168667pt;}
.y28{bottom:500.110133pt;}
.yef{bottom:500.840000pt;}
.y133{bottom:502.834667pt;}
.y15b{bottom:506.614267pt;}
.y52{bottom:507.912000pt;}
.y85{bottom:507.912133pt;}
.yb4{bottom:510.393733pt;}
.y25{bottom:511.030133pt;}
.y1c4{bottom:511.502000pt;}
.y26{bottom:514.110133pt;}
.yee{bottom:514.173333pt;}
.y132{bottom:516.168000pt;}
.y15a{bottom:519.947600pt;}
.y51{bottom:523.112000pt;}
.y90{bottom:523.112133pt;}
.yb3{bottom:523.727067pt;}
.y1c3{bottom:524.835333pt;}
.y24{bottom:525.030133pt;}
.yed{bottom:527.506667pt;}
.y23{bottom:528.110133pt;}
.y16d{bottom:529.501333pt;}
.y131{bottom:533.280933pt;}
.yb2{bottom:537.060400pt;}
.y1c2{bottom:538.168667pt;}
.y50{bottom:538.312000pt;}
.y8f{bottom:538.312133pt;}
.y21{bottom:539.030133pt;}
.yec{bottom:540.840000pt;}
.y22{bottom:542.110133pt;}
.y130{bottom:546.614267pt;}
.yb1{bottom:550.393733pt;}
.y1c1{bottom:551.502000pt;}
.y1f{bottom:553.030133pt;}
.y4f{bottom:553.512000pt;}
.y84{bottom:553.512133pt;}
.yeb{bottom:554.173333pt;}
.y20{bottom:556.110133pt;}
.y12f{bottom:559.947600pt;}
.yb0{bottom:563.727067pt;}
.y1a0{bottom:564.816133pt;}
.y1c0{bottom:564.835333pt;}
.y1e{bottom:567.030133pt;}
.y10a{bottom:567.506667pt;}
.y4e{bottom:568.712000pt;}
.y83{bottom:568.712133pt;}
.y1d{bottom:570.110133pt;}
.yea{bottom:571.286133pt;}
.y16c{bottom:573.280933pt;}
.yaf{bottom:577.060400pt;}
.y109{bottom:580.840000pt;}
.y1b{bottom:581.030133pt;}
.y19f{bottom:581.928933pt;}
.y1bf{bottom:581.948267pt;}
.y4d{bottom:583.912000pt;}
.y82{bottom:583.912133pt;}
.y1c{bottom:584.110133pt;}
.ye9{bottom:584.619467pt;}
.y12e{bottom:590.393733pt;}
.yae{bottom:594.173333pt;}
.y19{bottom:595.030133pt;}
.ye8{bottom:597.952800pt;}
.y1a{bottom:598.110133pt;}
.y19e{bottom:599.041867pt;}
.y1be{bottom:599.061067pt;}
.y4c{bottom:599.112000pt;}
.y17c{bottom:599.112133pt;}
.y12d{bottom:603.727067pt;}
.yad{bottom:607.506667pt;}
.y17{bottom:609.030133pt;}
.ye7{bottom:611.286133pt;}
.y18{bottom:612.110133pt;}
.y4b{bottom:614.312000pt;}
.y81{bottom:614.312133pt;}
.y19d{bottom:616.154667pt;}
.y1bd{bottom:616.174000pt;}
.y12c{bottom:617.060400pt;}
.y14b{bottom:620.840000pt;}
.y16{bottom:623.030133pt;}
.ye6{bottom:624.619467pt;}
.yac{bottom:624.619600pt;}
.y15{bottom:626.110133pt;}
.y4a{bottom:629.512000pt;}
.y17b{bottom:629.512133pt;}
.y12b{bottom:630.393733pt;}
.y19c{bottom:633.267600pt;}
.y1bc{bottom:633.286800pt;}
.y14a{bottom:634.173333pt;}
.ye5{bottom:637.952800pt;}
.yab{bottom:637.952933pt;}
.y14{bottom:640.809733pt;}
.y12a{bottom:643.727067pt;}
.y49{bottom:644.712000pt;}
.y80{bottom:644.712133pt;}
.y149{bottom:647.506667pt;}
.y19b{bottom:650.380400pt;}
.y1bb{bottom:650.399733pt;}
.ye4{bottom:651.286133pt;}
.yaa{bottom:655.065733pt;}
.y16b{bottom:657.060400pt;}
.y13{bottom:659.476400pt;}
.y48{bottom:659.912000pt;}
.y17a{bottom:659.912133pt;}
.y129{bottom:660.840000pt;}
.ye3{bottom:664.619467pt;}
.y19a{bottom:667.493333pt;}
.y1ba{bottom:667.512533pt;}
.ya9{bottom:668.399067pt;}
.y16a{bottom:670.393733pt;}
.y128{bottom:674.173333pt;}
.y6c{bottom:675.112000pt;}
.y179{bottom:675.112133pt;}
.ye2{bottom:677.952800pt;}
.y12{bottom:678.143067pt;}
.y169{bottom:683.727067pt;}
.y1b9{bottom:684.625467pt;}
.ya8{bottom:685.511867pt;}
.y127{bottom:687.506667pt;}
.y47{bottom:690.311867pt;}
.y7f{bottom:690.312000pt;}
.y178{bottom:690.312133pt;}
.ye1{bottom:691.286133pt;}
.y11{bottom:696.809733pt;}
.y1b8{bottom:697.958800pt;}
.y126{bottom:700.840000pt;}
.y108{bottom:704.619467pt;}
.y46{bottom:705.511867pt;}
.y7e{bottom:705.512000pt;}
.ye0{bottom:708.399067pt;}
.y1e0{bottom:709.258667pt;}
.y1b7{bottom:711.292133pt;}
.ya7{bottom:712.178533pt;}
.y159{bottom:714.173333pt;}
.y10{bottom:715.476400pt;}
.y107{bottom:717.952800pt;}
.y6b{bottom:720.711867pt;}
.y7d{bottom:720.712000pt;}
.y177{bottom:720.712133pt;}
.ydf{bottom:721.732400pt;}
.y1b6{bottom:724.625467pt;}
.ya6{bottom:725.511867pt;}
.y158{bottom:727.506667pt;}
.y106{bottom:731.286133pt;}
.yf{bottom:734.143067pt;}
.yde{bottom:735.065733pt;}
.y6a{bottom:735.912000pt;}
.y176{bottom:735.912133pt;}
.y1b5{bottom:737.958800pt;}
.ya5{bottom:738.845200pt;}
.y157{bottom:740.840000pt;}
.y125{bottom:744.619467pt;}
.ydd{bottom:748.399067pt;}
.y45{bottom:751.111867pt;}
.y7c{bottom:751.112000pt;}
.y1b4{bottom:751.292133pt;}
.ya4{bottom:752.178533pt;}
.ye{bottom:752.809733pt;}
.y124{bottom:757.952800pt;}
.ydc{bottom:761.732400pt;}
.y1b3{bottom:764.625467pt;}
.ya3{bottom:765.511867pt;}
.y44{bottom:766.311867pt;}
.y7b{bottom:766.312000pt;}
.y123{bottom:771.286133pt;}
.ydb{bottom:775.065733pt;}
.ya2{bottom:778.845200pt;}
.y7a{bottom:781.512000pt;}
.y199{bottom:781.718933pt;}
.y1b2{bottom:781.738267pt;}
.yd{bottom:782.814933pt;}
.y122{bottom:784.619467pt;}
.yda{bottom:788.399067pt;}
.ya1{bottom:792.178533pt;}
.y1e5{bottom:796.711867pt;}
.y79{bottom:796.712000pt;}
.y175{bottom:796.712133pt;}
.y121{bottom:797.952800pt;}
.y198{bottom:800.694533pt;}
.yd9{bottom:801.732400pt;}
.ya0{bottom:805.511867pt;}
.yc{bottom:809.481600pt;}
.y120{bottom:811.286133pt;}
.y78{bottom:811.912000pt;}
.y197{bottom:814.027867pt;}
.yd8{bottom:815.065733pt;}
.y9f{bottom:818.845200pt;}
.y1e4{bottom:827.111867pt;}
.y74{bottom:827.112000pt;}
.yd7{bottom:828.399067pt;}
.y9e{bottom:832.178533pt;}
.yb{bottom:836.148267pt;}
.y196{bottom:840.034000pt;}
.yd6{bottom:841.732400pt;}
.y73{bottom:842.311867pt;}
.y174{bottom:842.312000pt;}
.y9d{bottom:849.291467pt;}
.y195{bottom:853.367333pt;}
.yd5{bottom:855.065733pt;}
.y1e3{bottom:857.511867pt;}
.y72{bottom:857.512000pt;}
.y9c{bottom:862.624800pt;}
.y194{bottom:866.700667pt;}
.yd4{bottom:868.399067pt;}
.y156{bottom:872.178533pt;}
.y71{bottom:872.711867pt;}
.y173{bottom:872.712000pt;}
.y9b{bottom:879.737600pt;}
.y193{bottom:880.034000pt;}
.y105{bottom:881.732400pt;}
.yd3{bottom:885.511867pt;}
.y1e2{bottom:887.911867pt;}
.y70{bottom:887.912000pt;}
.y192{bottom:893.367333pt;}
.y104{bottom:895.065733pt;}
.yd2{bottom:898.845200pt;}
.y6f{bottom:903.111867pt;}
.y18e{bottom:903.112000pt;}
.y191{bottom:906.700667pt;}
.yd1{bottom:912.178533pt;}
.y6e{bottom:918.311867pt;}
.y9a{bottom:919.737600pt;}
.y190{bottom:920.034000pt;}
.yd0{bottom:925.511867pt;}
.y99{bottom:933.070933pt;}
.y18f{bottom:933.367333pt;}
.y6d{bottom:933.511867pt;}
.y42{bottom:1012.792000pt;}
.hf{height:23.578125pt;}
.h2{height:25.542969pt;}
.h4{height:25.712240pt;}
.h7{height:25.940104pt;}
.h8{height:29.645833pt;}
.h12{height:31.437500pt;}
.h10{height:31.645833pt;}
.hc{height:33.911187pt;}
.h11{height:34.138125pt;}
.hd{height:34.809375pt;}
.h3{height:34.833854pt;}
.hb{height:36.119792pt;}
.h9{height:37.493333pt;}
.h13{height:39.471458pt;}
.ha{height:40.705600pt;}
.he{height:40.926771pt;}
.h6{height:41.038333pt;}
.h5{height:82.880000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:56.159467pt;}
.x35{left:68.031600pt;}
.x2{left:74.923867pt;}
.x39{left:76.923867pt;}
.x3{left:80.798533pt;}
.x38{left:83.126133pt;}
.x18{left:85.220933pt;}
.x3f{left:86.929200pt;}
.x22{left:101.761600pt;}
.x23{left:111.819733pt;}
.x48{left:122.834667pt;}
.x16{left:125.427067pt;}
.x17{left:134.886267pt;}
.x29{left:156.186800pt;}
.x2a{left:166.922133pt;}
.x40{left:170.960800pt;}
.x47{left:181.089867pt;}
.x8{left:197.352933pt;}
.x9{left:202.627067pt;}
.x43{left:212.047333pt;}
.x44{left:216.954267pt;}
.x4a{left:222.142667pt;}
.x4b{left:226.442933pt;}
.x36{left:235.863600pt;}
.x1d{left:260.115733pt;}
.x41{left:266.776667pt;}
.x1e{left:269.978133pt;}
.x42{left:271.415333pt;}
.x25{left:274.793067pt;}
.x26{left:285.239467pt;}
.x2f{left:290.427867pt;}
.x30{left:300.663067pt;}
.x20{left:318.034933pt;}
.x21{left:328.256133pt;}
.x10{left:334.878933pt;}
.x11{left:340.150933pt;}
.x37{left:377.952800pt;}
.x34{left:396.850400pt;}
.x19{left:402.741467pt;}
.xe{left:408.925867pt;}
.x1a{left:412.122267pt;}
.xf{left:414.046400pt;}
.x31{left:415.748000pt;}
.x24{left:419.468933pt;}
.x3a{left:427.086667pt;}
.x45{left:434.015867pt;}
.x2d{left:435.071333pt;}
.xa{left:441.838133pt;}
.x2e{left:444.844667pt;}
.xb{left:446.959733pt;}
.x6{left:469.079733pt;}
.x14{left:470.874667pt;}
.x7{left:474.389067pt;}
.x15{left:480.115200pt;}
.x3b{left:501.461600pt;}
.x49{left:509.291333pt;}
.x2b{left:521.790267pt;}
.x2c{left:531.397867pt;}
.x3c{left:541.101467pt;}
.x46{left:568.969733pt;}
.x12{left:576.796933pt;}
.x13{left:586.827733pt;}
.x3d{left:629.034133pt;}
.x3e{left:634.232800pt;}
.x1f{left:637.647333pt;}
.x27{left:639.625867pt;}
.xc{left:641.432000pt;}
.x32{left:645.124667pt;}
.xd{left:646.649600pt;}
.x28{left:650.356267pt;}
.x1b{left:654.210933pt;}
.x1c{left:663.355467pt;}
.x1{left:664.429867pt;}
.x4{left:675.602400pt;}
.x5{left:681.048267pt;}
}




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