
    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_f487b67a9b2bdc7426c24ba0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_b6b68d430b36766e02ea4123.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_55023d2c7d9b3984fa330909.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_cde1b6a247c8b3eb7ae56def.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930176;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_c159145f3b876195c9e2b92a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.726074;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_1c582ccd35f97c3e0bdece93.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.092285;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_7eacc0cef37819ea27085d10.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.737000;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_00321bbd9dac19e7074bf8d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_8abb37c8bf7339de5003c132.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_3b907f08e9dae93c4245584f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726074;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_149e78dc960b2193b068dbf0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.092285;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_e8c20f36b454509768e1a0c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_8abb37c8bf7339de5003c132.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;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_d6efe375d1176696399927f0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_8b2d0d4806ab1e94f0c4e252.woff2')format("woff");}.fff{font-family:fff;line-height:0.971191;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_34781c5e06a685776fb41ff0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677734;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_7d19607a4b6807c987f1937b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.051758;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_84f2494ca4d61cd8d4740492.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.049805;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_31d86846fdbbee0c2bcef2cf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cb42ff68ca5c48de2fbff2b8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.971191;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_81068da0a9ca09f35e330dc3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971191;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_81068da0a9ca09f35e330dc3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.971191;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_bacfa6a26fe884a12eba0650.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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_cf787989e0b4ee82d7ede1ed.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_81068da0a9ca09f35e330dc3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_83e76142e2e85cbf8c265c3b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_0324f6564fb2e796b7cdec3c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.017090;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);}
.m2{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);}
.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);}
.v3{vertical-align:-15.000000px;}
.v2{vertical-align:-3.528000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.516600px;}
.v4{vertical-align:31.680000px;}
.ls10{letter-spacing:-7.800000px;}
.lsb{letter-spacing:-0.765000px;}
.lsf{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.630000px;}
.ls8{letter-spacing:1.380000px;}
.ls5{letter-spacing:1.890000px;}
.ls14{letter-spacing:2.057400px;}
.lsd{letter-spacing:2.340000px;}
.ls4{letter-spacing:2.394000px;}
.ls2{letter-spacing:2.550000px;}
.ls12{letter-spacing:3.181800px;}
.lsc{letter-spacing:3.744000px;}
.ls7{letter-spacing:4.032000px;}
.lsa{letter-spacing:4.800000px;}
.ls9{letter-spacing:5.040000px;}
.ls1{letter-spacing:5.522760px;}
.ls6{letter-spacing:14.269500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-71.795880px;}
.ws18{word-spacing:-25.440000px;}
.ws1d{word-spacing:-21.696000px;}
.ws1e{word-spacing:-17.628000px;}
.ws19{word-spacing:-15.900000px;}
.wsc9{word-spacing:-15.300000px;}
.ws39{word-spacing:-15.000000px;}
.wsa3{word-spacing:-14.700000px;}
.ws0{word-spacing:-13.165671px;}
.ws1f{word-spacing:-9.492000px;}
.wsae{word-spacing:-5.700000px;}
.ws14{word-spacing:-5.522760px;}
.wsff{word-spacing:-5.400000px;}
.wsc5{word-spacing:-5.280000px;}
.ws15{word-spacing:-5.040000px;}
.ws114{word-spacing:-4.920000px;}
.ws17{word-spacing:-4.800000px;}
.wsf9{word-spacing:-4.680000px;}
.wsd7{word-spacing:-4.620000px;}
.ws11d{word-spacing:-4.560000px;}
.wse9{word-spacing:-4.380000px;}
.ws9c{word-spacing:-4.320000px;}
.ws9b{word-spacing:-4.260000px;}
.ws95{word-spacing:-4.200000px;}
.wsab{word-spacing:-4.140000px;}
.ws9d{word-spacing:-4.080000px;}
.wsd8{word-spacing:-4.020000px;}
.ws51{word-spacing:-3.960000px;}
.wscb{word-spacing:-3.900000px;}
.ws93{word-spacing:-3.840000px;}
.ws6d{word-spacing:-3.780000px;}
.ws53{word-spacing:-3.720000px;}
.wsa6{word-spacing:-3.660000px;}
.wsfb{word-spacing:-3.600000px;}
.ws7d{word-spacing:-3.540000px;}
.wse3{word-spacing:-3.480000px;}
.ws112{word-spacing:-3.420000px;}
.ws4f{word-spacing:-3.360000px;}
.ws69{word-spacing:-3.300000px;}
.wsea{word-spacing:-3.240000px;}
.ws9a{word-spacing:-3.180000px;}
.ws2b{word-spacing:-3.120000px;}
.wsa9{word-spacing:-3.060000px;}
.wsbd{word-spacing:-3.000000px;}
.wsfc{word-spacing:-2.940000px;}
.ws101{word-spacing:-2.880000px;}
.ws10a{word-spacing:-2.820000px;}
.wsb4{word-spacing:-2.760000px;}
.ws44{word-spacing:-2.700000px;}
.ws56{word-spacing:-2.640000px;}
.ws12d{word-spacing:-2.592000px;}
.ws66{word-spacing:-2.580000px;}
.ws1c{word-spacing:-2.520000px;}
.wsb0{word-spacing:-2.460000px;}
.wsb7{word-spacing:-2.400000px;}
.ws43{word-spacing:-2.340000px;}
.ws121{word-spacing:-2.322000px;}
.ws37{word-spacing:-2.280000px;}
.wsa8{word-spacing:-2.220000px;}
.ws27{word-spacing:-2.160000px;}
.ws127{word-spacing:-2.106000px;}
.wsb3{word-spacing:-2.100000px;}
.ws46{word-spacing:-2.040000px;}
.wsa0{word-spacing:-1.980000px;}
.ws4d{word-spacing:-1.920000px;}
.wsd{word-spacing:-1.890000px;}
.ws75{word-spacing:-1.860000px;}
.ws8b{word-spacing:-1.800000px;}
.wsa7{word-spacing:-1.740000px;}
.wsf6{word-spacing:-1.680000px;}
.wsa2{word-spacing:-1.620000px;}
.ws129{word-spacing:-1.566000px;}
.ws30{word-spacing:-1.560000px;}
.ws1b{word-spacing:-1.500000px;}
.ws123{word-spacing:-1.404000px;}
.ws32{word-spacing:-1.380000px;}
.ws120{word-spacing:-1.350000px;}
.ws74{word-spacing:-1.320000px;}
.ws68{word-spacing:-1.260000px;}
.ws62{word-spacing:-1.200000px;}
.wsbf{word-spacing:-1.140000px;}
.ws52{word-spacing:-1.080000px;}
.ws12a{word-spacing:-1.026000px;}
.ws96{word-spacing:-1.020000px;}
.ws23{word-spacing:-0.960000px;}
.ws40{word-spacing:-0.900000px;}
.ws7f{word-spacing:-0.840000px;}
.ws94{word-spacing:-0.780000px;}
.ws10c{word-spacing:-0.720000px;}
.ws104{word-spacing:-0.660000px;}
.ws3{word-spacing:-0.630000px;}
.wsb6{word-spacing:-0.600000px;}
.ws125{word-spacing:-0.594000px;}
.ws5e{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.480000px;}
.wsfe{word-spacing:-0.420000px;}
.ws10b{word-spacing:-0.360000px;}
.ws7c{word-spacing:-0.300000px;}
.wsd1{word-spacing:-0.240000px;}
.wsa1{word-spacing:-0.180000px;}
.wsfd{word-spacing:-0.120000px;}
.ws2d{word-spacing:-0.060000px;}
.ws12c{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws105{word-spacing:0.060000px;}
.wsda{word-spacing:0.120000px;}
.ws49{word-spacing:0.180000px;}
.ws9{word-spacing:0.189000px;}
.wse4{word-spacing:0.240000px;}
.ws97{word-spacing:0.300000px;}
.ws73{word-spacing:0.360000px;}
.ws31{word-spacing:0.420000px;}
.wsdd{word-spacing:0.480000px;}
.ws92{word-spacing:0.540000px;}
.ws10f{word-spacing:0.600000px;}
.ws6b{word-spacing:0.660000px;}
.wsec{word-spacing:0.720000px;}
.wsb8{word-spacing:0.780000px;}
.ws13{word-spacing:0.819000px;}
.ws70{word-spacing:0.840000px;}
.ws8a{word-spacing:0.900000px;}
.ws109{word-spacing:0.960000px;}
.ws50{word-spacing:1.020000px;}
.ws29{word-spacing:1.080000px;}
.ws1a{word-spacing:1.104000px;}
.ws36{word-spacing:1.140000px;}
.ws3f{word-spacing:1.200000px;}
.wsba{word-spacing:1.260000px;}
.wscf{word-spacing:1.320000px;}
.ws79{word-spacing:1.380000px;}
.ws16{word-spacing:1.440000px;}
.ws122{word-spacing:1.468800px;}
.ws24{word-spacing:1.500000px;}
.ws6e{word-spacing:1.560000px;}
.ws2c{word-spacing:1.620000px;}
.ws20{word-spacing:1.656000px;}
.ws86{word-spacing:1.680000px;}
.ws117{word-spacing:1.740000px;}
.wsa{word-spacing:1.764000px;}
.ws55{word-spacing:1.794000px;}
.wsc6{word-spacing:1.800000px;}
.wsf0{word-spacing:1.860000px;}
.wsc4{word-spacing:1.920000px;}
.ws77{word-spacing:1.980000px;}
.ws41{word-spacing:2.040000px;}
.wseb{word-spacing:2.100000px;}
.ws87{word-spacing:2.160000px;}
.ws21{word-spacing:2.208000px;}
.ws54{word-spacing:2.220000px;}
.ws48{word-spacing:2.280000px;}
.ws8c{word-spacing:2.340000px;}
.wsd2{word-spacing:2.400000px;}
.ws58{word-spacing:2.460000px;}
.ws26{word-spacing:2.520000px;}
.ws108{word-spacing:2.580000px;}
.wsfa{word-spacing:2.640000px;}
.wsd3{word-spacing:2.700000px;}
.wsc8{word-spacing:2.820000px;}
.ws47{word-spacing:2.880000px;}
.ws4e{word-spacing:2.940000px;}
.ws28{word-spacing:3.000000px;}
.ws116{word-spacing:3.060000px;}
.wse8{word-spacing:3.120000px;}
.wsdc{word-spacing:3.180000px;}
.wsb2{word-spacing:3.240000px;}
.ws11{word-spacing:3.276000px;}
.ws5f{word-spacing:3.300000px;}
.ws12{word-spacing:3.339000px;}
.wsb1{word-spacing:3.360000px;}
.wsd6{word-spacing:3.420000px;}
.wsaa{word-spacing:3.480000px;}
.wsc7{word-spacing:3.540000px;}
.wsce{word-spacing:3.600000px;}
.ws90{word-spacing:3.660000px;}
.ws128{word-spacing:3.672000px;}
.ws115{word-spacing:3.720000px;}
.ws8f{word-spacing:3.780000px;}
.ws2f{word-spacing:3.840000px;}
.ws25{word-spacing:3.900000px;}
.ws124{word-spacing:3.942000px;}
.ws4b{word-spacing:3.960000px;}
.wsc2{word-spacing:4.020000px;}
.wsad{word-spacing:4.080000px;}
.ws6{word-spacing:4.095000px;}
.ws126{word-spacing:4.104000px;}
.ws8d{word-spacing:4.140000px;}
.ws78{word-spacing:4.200000px;}
.ws2e{word-spacing:4.260000px;}
.wse6{word-spacing:4.320000px;}
.ws35{word-spacing:4.380000px;}
.ws12e{word-spacing:4.428000px;}
.wsb5{word-spacing:4.440000px;}
.wsd9{word-spacing:4.500000px;}
.wsd5{word-spacing:4.560000px;}
.ws57{word-spacing:4.620000px;}
.ws102{word-spacing:4.680000px;}
.ws61{word-spacing:4.740000px;}
.ws85{word-spacing:4.800000px;}
.ws88{word-spacing:4.860000px;}
.wsb9{word-spacing:4.920000px;}
.ws3a{word-spacing:4.980000px;}
.ws113{word-spacing:5.040000px;}
.ws7b{word-spacing:5.160000px;}
.ws67{word-spacing:5.220000px;}
.ws80{word-spacing:5.280000px;}
.ws22{word-spacing:5.340000px;}
.wsac{word-spacing:5.400000px;}
.ws8e{word-spacing:5.460000px;}
.ws5d{word-spacing:5.520000px;}
.ws7e{word-spacing:5.580000px;}
.wsaf{word-spacing:5.640000px;}
.wsbe{word-spacing:5.700000px;}
.wsd4{word-spacing:5.760000px;}
.ws72{word-spacing:5.820000px;}
.ws7a{word-spacing:5.880000px;}
.ws4c{word-spacing:5.940000px;}
.ws81{word-spacing:6.000000px;}
.wsa4{word-spacing:6.060000px;}
.ws5a{word-spacing:6.120000px;}
.ws42{word-spacing:6.180000px;}
.ws6c{word-spacing:6.240000px;}
.wsf1{word-spacing:6.300000px;}
.wsf5{word-spacing:6.360000px;}
.ws107{word-spacing:6.480000px;}
.wsdb{word-spacing:6.540000px;}
.ws3d{word-spacing:6.600000px;}
.ws119{word-spacing:6.660000px;}
.ws5c{word-spacing:6.780000px;}
.wsb{word-spacing:6.804000px;}
.ws34{word-spacing:6.840000px;}
.wsed{word-spacing:6.900000px;}
.wsd0{word-spacing:6.960000px;}
.ws33{word-spacing:7.020000px;}
.ws84{word-spacing:7.080000px;}
.ws12b{word-spacing:7.128000px;}
.ws45{word-spacing:7.140000px;}
.wse7{word-spacing:7.200000px;}
.ws59{word-spacing:7.260000px;}
.ws111{word-spacing:7.380000px;}
.ws6f{word-spacing:7.440000px;}
.ws3b{word-spacing:7.500000px;}
.ws10e{word-spacing:7.560000px;}
.ws71{word-spacing:7.620000px;}
.wsbc{word-spacing:7.680000px;}
.wsbb{word-spacing:7.800000px;}
.ws89{word-spacing:7.860000px;}
.ws2a{word-spacing:7.920000px;}
.ws65{word-spacing:7.980000px;}
.ws11b{word-spacing:8.040000px;}
.ws7{word-spacing:8.064000px;}
.ws64{word-spacing:8.100000px;}
.ws98{word-spacing:8.160000px;}
.wsf7{word-spacing:8.460000px;}
.ws5{word-spacing:8.505000px;}
.ws82{word-spacing:8.520000px;}
.ws106{word-spacing:8.580000px;}
.wsf2{word-spacing:8.640000px;}
.ws76{word-spacing:8.700000px;}
.ws100{word-spacing:8.760000px;}
.wsc3{word-spacing:8.940000px;}
.wsde{word-spacing:9.000000px;}
.ws11c{word-spacing:9.120000px;}
.ws5b{word-spacing:9.180000px;}
.ws110{word-spacing:9.240000px;}
.ws38{word-spacing:9.264000px;}
.wsc1{word-spacing:9.300000px;}
.ws12f{word-spacing:9.342000px;}
.wse0{word-spacing:9.540000px;}
.wscc{word-spacing:9.600000px;}
.ws3c{word-spacing:9.660000px;}
.wsc{word-spacing:9.702000px;}
.wsf4{word-spacing:9.720000px;}
.wsc0{word-spacing:9.900000px;}
.ws10{word-spacing:9.954000px;}
.ws60{word-spacing:9.960000px;}
.ws4{word-spacing:10.080000px;}
.ws91{word-spacing:10.140000px;}
.wse1{word-spacing:10.380000px;}
.wsf8{word-spacing:10.440000px;}
.ws63{word-spacing:10.560000px;}
.wsa5{word-spacing:10.620000px;}
.ws4a{word-spacing:10.980000px;}
.ws9e{word-spacing:11.100000px;}
.ws99{word-spacing:11.220000px;}
.wsee{word-spacing:11.280000px;}
.ws103{word-spacing:11.400000px;}
.ws11f{word-spacing:11.580000px;}
.ws118{word-spacing:11.880000px;}
.wsef{word-spacing:12.060000px;}
.wse{word-spacing:12.096000px;}
.wse2{word-spacing:12.180000px;}
.wsf{word-spacing:12.348000px;}
.wscd{word-spacing:12.360000px;}
.ws9f{word-spacing:12.480000px;}
.ws10d{word-spacing:12.600000px;}
.wsdf{word-spacing:13.500000px;}
.wse5{word-spacing:14.460000px;}
.ws6a{word-spacing:14.760000px;}
.wsca{word-spacing:14.820000px;}
.ws11a{word-spacing:14.880000px;}
.ws11e{word-spacing:15.000000px;}
.wsf3{word-spacing:16.620000px;}
.ws8{word-spacing:17.010000px;}
.ws83{word-spacing:17.820000px;}
._1a{margin-left:-1870.322100px;}
._d{margin-left:-496.260000px;}
._1c{margin-left:-317.160000px;}
._16{margin-left:-299.880000px;}
._f{margin-left:-260.208000px;}
._20{margin-left:-12.180000px;}
._1e{margin-left:-8.124300px;}
._10{margin-left:-7.046400px;}
._19{margin-left:-5.946300px;}
._a{margin-left:-4.942870px;}
._9{margin-left:-3.396497px;}
._c{margin-left:-1.883700px;}
._5{width:1.479954px;}
._8{width:3.196701px;}
._3{width:5.860618px;}
._6{width:6.926185px;}
._b{width:10.395000px;}
._2{width:12.017226px;}
._1f{width:15.360000px;}
._4{width:21.044946px;}
._1{width:25.396011px;}
._7{width:40.550740px;}
._21{width:42.646800px;}
._1b{width:64.597200px;}
._18{width:66.864000px;}
._14{width:147.213970px;}
._15{width:436.320000px;}
._13{width:580.260000px;}
._0{width:736.281343px;}
._12{width:1040.400000px;}
._11{width:1083.600000px;}
._1d{width:1762.005600px;}
._17{width:1779.285600px;}
._e{width:4294.839600px;}
.fc7{color:rgb(68,65,65);}
.fc6{color:transparent;}
.fc2{color:rgb(65,160,17);}
.fc5{color:rgb(79,76,77);}
.fc4{color:rgb(90,87,88);}
.fc1{color:rgb(255,101,0);}
.fc8{color:rgb(100,100,100);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599080px;}
.fs3{font-size:33.827520px;}
.fsf{font-size:36.000000px;}
.fs6{font-size:37.210272px;}
.fs7{font-size:38.055960px;}
.fs11{font-size:42.000000px;}
.fs2{font-size:42.284400px;}
.fs1{font-size:46.512840px;}
.fs5{font-size:47.358528px;}
.fs12{font-size:48.000000px;}
.fs16{font-size:49.800000px;}
.fs10{font-size:51.000000px;}
.fs17{font-size:54.000000px;}
.fs14{font-size:55.680000px;}
.fs0{font-size:59.198160px;}
.fse{font-size:60.000000px;}
.fs18{font-size:61.200000px;}
.fsa{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fsc{font-size:69.000000px;}
.fsd{font-size:72.000000px;}
.fs15{font-size:78.000000px;}
.fs13{font-size:96.000000px;}
.fs9{font-size:102.000000px;}
.fs8{font-size:276.138000px;}
.y73{bottom:-25.015500px;}
.y31{bottom:-22.507500px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267570px;}
.y5d{bottom:1.240500px;}
.y2f{bottom:25.179900px;}
.ybe{bottom:25.687200px;}
.y5e{bottom:25.753800px;}
.y74{bottom:26.927700px;}
.y99{bottom:26.994300px;}
.y1c{bottom:45.085742px;}
.y5c{bottom:49.424850px;}
.y98{bottom:56.516100px;}
.y1b{bottom:57.073369px;}
.y11a{bottom:60.784950px;}
.y19e{bottom:63.865950px;}
.ye7{bottom:64.072050px;}
.y5b{bottom:65.171100px;}
.y17b{bottom:65.860500px;}
.y11b{bottom:68.225850px;}
.y149{bottom:68.467650px;}
.y113{bottom:68.572050px;}
.y1a{bottom:69.060996px;}
.y97{bottom:70.916100px;}
.y1c6{bottom:72.026250px;}
.y119{bottom:78.784950px;}
.y19d{bottom:80.065950px;}
.y19{bottom:81.048624px;}
.y17a{bottom:82.060500px;}
.ye6{bottom:82.072050px;}
.y96{bottom:85.316100px;}
.yee{bottom:86.225850px;}
.y148{bottom:86.467650px;}
.y112{bottom:86.572050px;}
.y1c5{bottom:88.526250px;}
.y18{bottom:91.292020px;}
.y19c{bottom:96.265800px;}
.y5a{bottom:96.676350px;}
.y118{bottom:96.784950px;}
.y95{bottom:99.716100px;}
.ye5{bottom:100.072050px;}
.yed{bottom:104.225850px;}
.y147{bottom:104.467650px;}
.y111{bottom:104.572050px;}
.y1c4{bottom:105.026250px;}
.y17{bottom:110.700559px;}
.y59{bottom:112.422600px;}
.y19b{bottom:112.465800px;}
.y179{bottom:113.260500px;}
.y117{bottom:114.784950px;}
.ye4{bottom:118.072050px;}
.y1c3{bottom:121.526250px;}
.yec{bottom:122.225850px;}
.y146{bottom:122.467650px;}
.y110{bottom:122.572050px;}
.y58{bottom:128.168850px;}
.y19a{bottom:128.665950px;}
.y178{bottom:129.460500px;}
.y116{bottom:132.784950px;}
.ye3{bottom:136.072050px;}
.y1c2{bottom:138.026250px;}
.yeb{bottom:140.225850px;}
.y145{bottom:140.467650px;}
.y11e{bottom:140.572050px;}
.y94{bottom:141.431400px;}
.y57{bottom:143.915100px;}
.y199{bottom:144.865800px;}
.y177{bottom:145.660500px;}
.y150{bottom:150.784950px;}
.ye2{bottom:154.072050px;}
.y1c1{bottom:154.526250px;}
.yea{bottom:158.225850px;}
.y144{bottom:158.467650px;}
.y10f{bottom:158.572050px;}
.y93{bottom:159.431400px;}
.y56{bottom:159.661350px;}
.y115{bottom:159.714000px;}
.y16{bottom:167.086807px;}
.y14f{bottom:168.784950px;}
.y1c0{bottom:171.026250px;}
.ye1{bottom:172.072050px;}
.y55{bottom:175.407600px;}
.y15{bottom:176.072242px;}
.ye9{bottom:176.225850px;}
.y143{bottom:176.467650px;}
.y10e{bottom:176.572050px;}
.y176{bottom:176.860500px;}
.y198{bottom:177.265800px;}
.y92{bottom:177.431400px;}
.y114{bottom:182.214000px;}
.y14{bottom:184.317700px;}
.y14e{bottom:186.784950px;}
.y1bf{bottom:187.526250px;}
.ye0{bottom:190.072050px;}
.y54{bottom:191.153850px;}
.y13{bottom:191.802038px;}
.y175{bottom:193.060500px;}
.y197{bottom:193.465800px;}
.ye8{bottom:194.225850px;}
.y142{bottom:194.467650px;}
.y10d{bottom:194.572050px;}
.y91{bottom:195.431400px;}
.y12{bottom:199.296948px;}
.y1be{bottom:204.026250px;}
.y14d{bottom:204.784950px;}
.y11{bottom:206.791858px;}
.ydf{bottom:208.072050px;}
.y174{bottom:209.260500px;}
.ybd{bottom:212.225850px;}
.y141{bottom:212.467650px;}
.y10c{bottom:212.572050px;}
.y90{bottom:213.431400px;}
.y10{bottom:214.276197px;}
.y1bd{bottom:220.526250px;}
.yf{bottom:221.771107px;}
.y53{bottom:222.659100px;}
.y14c{bottom:222.784950px;}
.y196{bottom:225.865800px;}
.yde{bottom:226.072050px;}
.ybc{bottom:230.225850px;}
.y140{bottom:230.467650px;}
.y10b{bottom:230.572050px;}
.y8f{bottom:231.431400px;}
.y1bc{bottom:237.026250px;}
.ye{bottom:237.183771px;}
.y52{bottom:238.405350px;}
.y173{bottom:240.460500px;}
.y156{bottom:240.784950px;}
.y195{bottom:242.065950px;}
.ydd{bottom:244.072050px;}
.ybb{bottom:248.225850px;}
.y13f{bottom:248.467650px;}
.y10a{bottom:248.572050px;}
.y8e{bottom:249.431400px;}
.y14b{bottom:249.714000px;}
.y1bb{bottom:253.526250px;}
.y51{bottom:254.151600px;}
.y172{bottom:256.660500px;}
.y155{bottom:258.784950px;}
.ydc{bottom:262.072050px;}
.yba{bottom:266.225850px;}
.y13e{bottom:266.467650px;}
.y109{bottom:266.572050px;}
.y8d{bottom:267.431400px;}
.y50{bottom:269.897850px;}
.y1ba{bottom:270.026250px;}
.y14a{bottom:272.214000px;}
.y194{bottom:274.465800px;}
.y154{bottom:276.784950px;}
.ydb{bottom:280.072050px;}
.yb9{bottom:284.225850px;}
.y13d{bottom:284.467650px;}
.y108{bottom:284.572050px;}
.y8c{bottom:285.431400px;}
.y1b9{bottom:286.526250px;}
.y2d{bottom:287.234250px;}
.y171{bottom:287.860500px;}
.y193{bottom:290.665950px;}
.y153{bottom:294.784950px;}
.yda{bottom:298.072050px;}
.y4f{bottom:301.403100px;}
.yb8{bottom:302.225850px;}
.y13c{bottom:302.467650px;}
.y107{bottom:302.572050px;}
.y1b8{bottom:303.026250px;}
.y8b{bottom:303.431400px;}
.y170{bottom:304.060500px;}
.y2c{bottom:314.690850px;}
.yd9{bottom:316.072050px;}
.y4e{bottom:317.149350px;}
.y1b7{bottom:319.526250px;}
.yb7{bottom:320.225850px;}
.y16f{bottom:320.260500px;}
.y13b{bottom:320.467650px;}
.y106{bottom:320.572050px;}
.y8a{bottom:321.431400px;}
.y152{bottom:321.714000px;}
.y192{bottom:323.065950px;}
.y4d{bottom:332.895600px;}
.yd8{bottom:334.072050px;}
.y1b6{bottom:336.026250px;}
.yb6{bottom:338.225850px;}
.y13a{bottom:338.467650px;}
.y105{bottom:338.572050px;}
.y191{bottom:339.265800px;}
.y89{bottom:339.431400px;}
.y2b{bottom:341.686350px;}
.y151{bottom:344.214000px;}
.y4c{bottom:348.641850px;}
.y16e{bottom:351.460500px;}
.yd7{bottom:352.072050px;}
.y1b5{bottom:352.526250px;}
.y190{bottom:355.465800px;}
.yd{bottom:356.098075px;}
.yb5{bottom:356.225850px;}
.y139{bottom:356.467650px;}
.y11d{bottom:356.572050px;}
.y88{bottom:357.431400px;}
.y30{bottom:357.560700px;}
.y72{bottom:358.122300px;}
.y16d{bottom:367.660500px;}
.y2a{bottom:368.681850px;}
.y1b4{bottom:369.026250px;}
.yd6{bottom:370.072050px;}
.yb4{bottom:374.225850px;}
.y138{bottom:374.467650px;}
.y104{bottom:374.572050px;}
.y87{bottom:375.431400px;}
.y71{bottom:376.122300px;}
.y4b{bottom:380.147100px;}
.y16c{bottom:383.860500px;}
.y1b3{bottom:385.526250px;}
.y18f{bottom:387.865800px;}
.yd5{bottom:388.072050px;}
.yb3{bottom:392.225850px;}
.y137{bottom:392.467650px;}
.y103{bottom:392.572050px;}
.y86{bottom:393.431400px;}
.y70{bottom:394.122300px;}
.y29{bottom:395.677350px;}
.y4a{bottom:395.893350px;}
.y1b2{bottom:402.026250px;}
.y18e{bottom:404.065950px;}
.yd4{bottom:406.072050px;}
.yb2{bottom:410.225850px;}
.y136{bottom:410.467650px;}
.y102{bottom:410.572050px;}
.y85{bottom:411.431400px;}
.y49{bottom:411.639600px;}
.y16b{bottom:415.060500px;}
.y1b1{bottom:418.526250px;}
.y28{bottom:422.672850px;}
.y48{bottom:427.385850px;}
.yb1{bottom:428.225850px;}
.y135{bottom:428.467650px;}
.y101{bottom:428.572050px;}
.y84{bottom:429.431400px;}
.y6f{bottom:430.122300px;}
.y16a{bottom:431.260500px;}
.y1b0{bottom:435.026250px;}
.y18d{bottom:436.465800px;}
.yd3{bottom:442.072050px;}
.y47{bottom:443.132100px;}
.yb0{bottom:446.225850px;}
.y134{bottom:446.467650px;}
.y100{bottom:446.572050px;}
.y83{bottom:447.431400px;}
.y169{bottom:447.460500px;}
.y6e{bottom:448.122300px;}
.y27{bottom:449.668350px;}
.y1af{bottom:451.526250px;}
.y18c{bottom:452.665950px;}
.y46{bottom:458.878350px;}
.yd2{bottom:460.072050px;}
.yaf{bottom:464.225850px;}
.y133{bottom:464.467650px;}
.yff{bottom:464.572050px;}
.y82{bottom:465.431250px;}
.y6d{bottom:466.122300px;}
.y1ae{bottom:468.026250px;}
.y18b{bottom:468.865800px;}
.y45{bottom:474.624600px;}
.y26{bottom:476.663850px;}
.yd1{bottom:478.072050px;}
.y168{bottom:478.660500px;}
.yae{bottom:482.225850px;}
.y132{bottom:482.467650px;}
.yfe{bottom:482.572050px;}
.y81{bottom:483.431250px;}
.y1ad{bottom:484.526250px;}
.y44{bottom:490.370850px;}
.yd0{bottom:496.072050px;}
.y167{bottom:496.660500px;}
.yad{bottom:500.225850px;}
.y131{bottom:500.467650px;}
.yfd{bottom:500.572050px;}
.y1ac{bottom:501.026250px;}
.y18a{bottom:501.265800px;}
.y80{bottom:501.431250px;}
.y6c{bottom:502.122300px;}
.y25{bottom:503.659350px;}
.y43{bottom:506.117100px;}
.ycf{bottom:514.072050px;}
.yc{bottom:515.224843px;}
.y189{bottom:517.465800px;}
.y1ab{bottom:517.526250px;}
.yac{bottom:518.225850px;}
.y130{bottom:518.467650px;}
.yfc{bottom:518.572050px;}
.y7f{bottom:519.431250px;}
.y6b{bottom:520.122300px;}
.y42{bottom:521.863350px;}
.y166{bottom:523.589700px;}
.y24{bottom:530.654850px;}
.yce{bottom:532.072050px;}
.y1aa{bottom:534.026250px;}
.yab{bottom:536.225850px;}
.y12f{bottom:536.467650px;}
.yfb{bottom:536.572050px;}
.y7e{bottom:537.431250px;}
.y6a{bottom:538.122300px;}
.yb{bottom:538.333268px;}
.y188{bottom:549.865800px;}
.ycd{bottom:550.072050px;}
.ya{bottom:550.320895px;}
.y1a9{bottom:550.526250px;}
.y41{bottom:553.368600px;}
.yaa{bottom:554.225850px;}
.y12e{bottom:554.467650px;}
.yfa{bottom:554.572050px;}
.y7d{bottom:555.431250px;}
.y69{bottom:556.122300px;}
.y23{bottom:557.650350px;}
.y187{bottom:566.065950px;}
.y1a8{bottom:567.026250px;}
.ycc{bottom:568.072050px;}
.y40{bottom:569.114850px;}
.y165{bottom:571.601400px;}
.ya9{bottom:572.225850px;}
.y12d{bottom:572.467650px;}
.yf9{bottom:572.572050px;}
.y7c{bottom:573.431250px;}
.y9{bottom:573.661884px;}
.y1a7{bottom:583.526250px;}
.y22{bottom:584.645850px;}
.y3f{bottom:584.861100px;}
.y8{bottom:585.649511px;}
.ycb{bottom:586.072050px;}
.y164{bottom:589.601400px;}
.ya8{bottom:590.225850px;}
.y12c{bottom:590.467650px;}
.y11c{bottom:590.572050px;}
.y7b{bottom:591.431250px;}
.y68{bottom:592.122300px;}
.y7{bottom:597.637138px;}
.y186{bottom:598.465800px;}
.y1a6{bottom:600.026250px;}
.y3e{bottom:600.607350px;}
.yca{bottom:604.072050px;}
.y163{bottom:607.601400px;}
.ya7{bottom:608.225850px;}
.y12b{bottom:608.467650px;}
.yf8{bottom:608.572050px;}
.y6{bottom:609.624766px;}
.y67{bottom:610.122300px;}
.y21{bottom:611.641350px;}
.y185{bottom:614.665950px;}
.y3d{bottom:616.353600px;}
.y1a5{bottom:616.526250px;}
.y7a{bottom:618.360450px;}
.yc9{bottom:622.072050px;}
.y162{bottom:625.601400px;}
.ya6{bottom:626.225850px;}
.y12a{bottom:626.467650px;}
.yf7{bottom:626.572050px;}
.y66{bottom:628.122300px;}
.y3c{bottom:632.099850px;}
.y1a4{bottom:633.026250px;}
.y20{bottom:638.636850px;}
.yc8{bottom:640.072050px;}
.y79{bottom:640.860450px;}
.y161{bottom:643.601400px;}
.ya5{bottom:644.225850px;}
.y129{bottom:644.467650px;}
.yf6{bottom:644.572050px;}
.y184{bottom:647.065950px;}
.y1a3{bottom:649.526250px;}
.yc7{bottom:658.072050px;}
.y160{bottom:661.601400px;}
.ya4{bottom:662.225850px;}
.y128{bottom:662.467650px;}
.yf5{bottom:662.572050px;}
.y183{bottom:663.265800px;}
.y78{bottom:663.360450px;}
.y3b{bottom:663.605100px;}
.y65{bottom:664.122300px;}
.y5{bottom:665.482458px;}
.y1a2{bottom:666.026250px;}
.yc6{bottom:676.072050px;}
.y3a{bottom:679.351350px;}
.y15f{bottom:679.601400px;}
.ya3{bottom:680.225850px;}
.y127{bottom:680.467650px;}
.yf4{bottom:680.572050px;}
.y64{bottom:682.122300px;}
.y1a1{bottom:682.526250px;}
.y4{bottom:683.263049px;}
.yc5{bottom:694.072050px;}
.y39{bottom:695.097600px;}
.y182{bottom:695.665950px;}
.y15e{bottom:697.601400px;}
.ya2{bottom:698.225850px;}
.y126{bottom:698.467650px;}
.yf3{bottom:698.572050px;}
.y63{bottom:700.122300px;}
.y3{bottom:704.236111px;}
.y1a0{bottom:708.626250px;}
.y181{bottom:711.865800px;}
.yc4{bottom:712.072050px;}
.y15d{bottom:715.601400px;}
.ya1{bottom:716.225850px;}
.y125{bottom:716.467650px;}
.yf2{bottom:716.572050px;}
.y62{bottom:718.122300px;}
.y2e{bottom:719.100750px;}
.y77{bottom:719.876250px;}
.y2{bottom:725.219744px;}
.y38{bottom:726.602850px;}
.yc3{bottom:730.072050px;}
.y15c{bottom:733.601400px;}
.ya0{bottom:734.225850px;}
.y124{bottom:734.467650px;}
.yf1{bottom:734.572050px;}
.y61{bottom:736.122300px;}
.y37{bottom:742.349100px;}
.y180{bottom:744.265800px;}
.y76{bottom:746.126250px;}
.yc2{bottom:748.072050px;}
.y15b{bottom:751.601400px;}
.y9f{bottom:752.225850px;}
.y123{bottom:752.467650px;}
.yf0{bottom:752.572050px;}
.y36{bottom:758.095350px;}
.y17f{bottom:760.465800px;}
.y15a{bottom:769.601400px;}
.y9e{bottom:770.225850px;}
.y122{bottom:770.467650px;}
.yef{bottom:770.572050px;}
.y75{bottom:772.376250px;}
.yc1{bottom:775.001250px;}
.y19f{bottom:776.665800px;}
.y159{bottom:787.601400px;}
.y9d{bottom:788.225850px;}
.y121{bottom:788.467650px;}
.y35{bottom:789.600600px;}
.y17e{bottom:792.865950px;}
.yc0{bottom:797.501250px;}
.y34{bottom:805.346850px;}
.y158{bottom:805.601400px;}
.y9c{bottom:806.225850px;}
.y120{bottom:806.467650px;}
.y17d{bottom:809.065950px;}
.y1f{bottom:811.244100px;}
.y60{bottom:816.626250px;}
.ybf{bottom:820.001250px;}
.y33{bottom:821.093100px;}
.y157{bottom:823.601400px;}
.y9b{bottom:824.225850px;}
.y11f{bottom:824.467650px;}
.y17c{bottom:825.265800px;}
.y32{bottom:836.839350px;}
.y1e{bottom:845.745600px;}
.y5f{bottom:855.602550px;}
.y9a{bottom:855.602700px;}
.y1d{bottom:866.543700px;}
.h7{height:21.932918px;}
.h6{height:25.066192px;}
.h12{height:25.910156px;}
.h9{height:28.199466px;}
.h1f{height:28.584000px;}
.h5{height:31.332740px;}
.h19{height:33.304688px;}
.h4{height:34.466014px;}
.h8{height:35.092669px;}
.h13{height:36.432129px;}
.h15{height:36.706055px;}
.h1a{height:38.062500px;}
.h23{height:40.664062px;}
.h3{height:43.865837px;}
.h14{height:44.774414px;}
.h25{height:44.820000px;}
.h26{height:45.035156px;}
.h1c{height:47.578125px;}
.h10{height:47.784000px;}
.h27{height:49.336523px;}
.h11{height:49.627441px;}
.h1e{height:50.039062px;}
.h1d{height:50.156250px;}
.he{height:55.309570px;}
.h20{height:57.093750px;}
.h24{height:60.046875px;}
.h22{height:61.851562px;}
.h1b{height:63.984375px;}
.hf{height:70.826170px;}
.hd{height:73.362305px;}
.h21{height:76.125000px;}
.hc{height:198.609021px;}
.h2{height:889.970338px;}
.h1{height:890.250000px;}
.h0{height:890.505000px;}
.ha{height:892.897500px;}
.h18{height:892.914000px;}
.hb{height:893.250000px;}
.h16{height:895.393500px;}
.h17{height:895.500000px;}
.w1{width:629.250000px;}
.w3{width:629.275500px;}
.w2{width:629.276441px;}
.w0{width:629.280000px;}
.w6{width:629.290500px;}
.w5{width:631.500000px;}
.w4{width:631.771500px;}
.xb{left:-640.491150px;}
.xa{left:-8.790750px;}
.x0{left:0.000000px;}
.xf{left:1.240500px;}
.xe{left:14.992350px;}
.x12{left:16.240350px;}
.x3{left:32.960690px;}
.x1{left:38.954504px;}
.xd{left:43.089900px;}
.xc{left:44.224650px;}
.x7{left:66.864900px;}
.x6{left:68.430450px;}
.x1b{left:76.535400px;}
.x13{left:77.775900px;}
.x11{left:86.748600px;}
.x27{left:88.679250px;}
.x17{left:103.287600px;}
.x2{left:104.875883px;}
.x15{left:108.290850px;}
.x1a{left:111.791550px;}
.x1e{left:125.319600px;}
.x26{left:154.510950px;}
.x22{left:168.709350px;}
.x24{left:171.527550px;}
.x25{left:178.092450px;}
.x16{left:235.990650px;}
.x1f{left:259.975350px;}
.x28{left:264.299250px;}
.x21{left:301.803150px;}
.x1d{left:304.259700px;}
.x14{left:306.716250px;}
.x4{left:308.644407px;}
.x23{left:310.664100px;}
.x10{left:360.833850px;}
.x18{left:379.456650px;}
.x1c{left:462.787200px;}
.x9{left:469.252350px;}
.x20{left:541.832250px;}
.x19{left:547.914300px;}
.x8{left:554.519400px;}
.x5{left:577.642050px;}
@media print{
.v3{vertical-align:-13.333333pt;}
.v2{vertical-align:-3.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.792533pt;}
.v4{vertical-align:28.160000pt;}
.ls10{letter-spacing:-6.933333pt;}
.lsb{letter-spacing:-0.680000pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.560000pt;}
.ls8{letter-spacing:1.226667pt;}
.ls5{letter-spacing:1.680000pt;}
.ls14{letter-spacing:1.828800pt;}
.lsd{letter-spacing:2.080000pt;}
.ls4{letter-spacing:2.128000pt;}
.ls2{letter-spacing:2.266667pt;}
.ls12{letter-spacing:2.828267pt;}
.lsc{letter-spacing:3.328000pt;}
.ls7{letter-spacing:3.584000pt;}
.lsa{letter-spacing:4.266667pt;}
.ls9{letter-spacing:4.480000pt;}
.ls1{letter-spacing:4.909120pt;}
.ls6{letter-spacing:12.684000pt;}
.ws2{word-spacing:-63.818560pt;}
.ws18{word-spacing:-22.613333pt;}
.ws1d{word-spacing:-19.285333pt;}
.ws1e{word-spacing:-15.669333pt;}
.ws19{word-spacing:-14.133333pt;}
.wsc9{word-spacing:-13.600000pt;}
.ws39{word-spacing:-13.333333pt;}
.wsa3{word-spacing:-13.066667pt;}
.ws0{word-spacing:-11.702818pt;}
.ws1f{word-spacing:-8.437333pt;}
.wsae{word-spacing:-5.066667pt;}
.ws14{word-spacing:-4.909120pt;}
.wsff{word-spacing:-4.800000pt;}
.wsc5{word-spacing:-4.693333pt;}
.ws15{word-spacing:-4.480000pt;}
.ws114{word-spacing:-4.373333pt;}
.ws17{word-spacing:-4.266667pt;}
.wsf9{word-spacing:-4.160000pt;}
.wsd7{word-spacing:-4.106667pt;}
.ws11d{word-spacing:-4.053333pt;}
.wse9{word-spacing:-3.893333pt;}
.ws9c{word-spacing:-3.840000pt;}
.ws9b{word-spacing:-3.786667pt;}
.ws95{word-spacing:-3.733333pt;}
.wsab{word-spacing:-3.680000pt;}
.ws9d{word-spacing:-3.626667pt;}
.wsd8{word-spacing:-3.573333pt;}
.ws51{word-spacing:-3.520000pt;}
.wscb{word-spacing:-3.466667pt;}
.ws93{word-spacing:-3.413333pt;}
.ws6d{word-spacing:-3.360000pt;}
.ws53{word-spacing:-3.306667pt;}
.wsa6{word-spacing:-3.253333pt;}
.wsfb{word-spacing:-3.200000pt;}
.ws7d{word-spacing:-3.146667pt;}
.wse3{word-spacing:-3.093333pt;}
.ws112{word-spacing:-3.040000pt;}
.ws4f{word-spacing:-2.986667pt;}
.ws69{word-spacing:-2.933333pt;}
.wsea{word-spacing:-2.880000pt;}
.ws9a{word-spacing:-2.826667pt;}
.ws2b{word-spacing:-2.773333pt;}
.wsa9{word-spacing:-2.720000pt;}
.wsbd{word-spacing:-2.666667pt;}
.wsfc{word-spacing:-2.613333pt;}
.ws101{word-spacing:-2.560000pt;}
.ws10a{word-spacing:-2.506667pt;}
.wsb4{word-spacing:-2.453333pt;}
.ws44{word-spacing:-2.400000pt;}
.ws56{word-spacing:-2.346667pt;}
.ws12d{word-spacing:-2.304000pt;}
.ws66{word-spacing:-2.293333pt;}
.ws1c{word-spacing:-2.240000pt;}
.wsb0{word-spacing:-2.186667pt;}
.wsb7{word-spacing:-2.133333pt;}
.ws43{word-spacing:-2.080000pt;}
.ws121{word-spacing:-2.064000pt;}
.ws37{word-spacing:-2.026667pt;}
.wsa8{word-spacing:-1.973333pt;}
.ws27{word-spacing:-1.920000pt;}
.ws127{word-spacing:-1.872000pt;}
.wsb3{word-spacing:-1.866667pt;}
.ws46{word-spacing:-1.813333pt;}
.wsa0{word-spacing:-1.760000pt;}
.ws4d{word-spacing:-1.706667pt;}
.wsd{word-spacing:-1.680000pt;}
.ws75{word-spacing:-1.653333pt;}
.ws8b{word-spacing:-1.600000pt;}
.wsa7{word-spacing:-1.546667pt;}
.wsf6{word-spacing:-1.493333pt;}
.wsa2{word-spacing:-1.440000pt;}
.ws129{word-spacing:-1.392000pt;}
.ws30{word-spacing:-1.386667pt;}
.ws1b{word-spacing:-1.333333pt;}
.ws123{word-spacing:-1.248000pt;}
.ws32{word-spacing:-1.226667pt;}
.ws120{word-spacing:-1.200000pt;}
.ws74{word-spacing:-1.173333pt;}
.ws68{word-spacing:-1.120000pt;}
.ws62{word-spacing:-1.066667pt;}
.wsbf{word-spacing:-1.013333pt;}
.ws52{word-spacing:-0.960000pt;}
.ws12a{word-spacing:-0.912000pt;}
.ws96{word-spacing:-0.906667pt;}
.ws23{word-spacing:-0.853333pt;}
.ws40{word-spacing:-0.800000pt;}
.ws7f{word-spacing:-0.746667pt;}
.ws94{word-spacing:-0.693333pt;}
.ws10c{word-spacing:-0.640000pt;}
.ws104{word-spacing:-0.586667pt;}
.ws3{word-spacing:-0.560000pt;}
.wsb6{word-spacing:-0.533333pt;}
.ws125{word-spacing:-0.528000pt;}
.ws5e{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.426667pt;}
.wsfe{word-spacing:-0.373333pt;}
.ws10b{word-spacing:-0.320000pt;}
.ws7c{word-spacing:-0.266667pt;}
.wsd1{word-spacing:-0.213333pt;}
.wsa1{word-spacing:-0.160000pt;}
.wsfd{word-spacing:-0.106667pt;}
.ws2d{word-spacing:-0.053333pt;}
.ws12c{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws105{word-spacing:0.053333pt;}
.wsda{word-spacing:0.106667pt;}
.ws49{word-spacing:0.160000pt;}
.ws9{word-spacing:0.168000pt;}
.wse4{word-spacing:0.213333pt;}
.ws97{word-spacing:0.266667pt;}
.ws73{word-spacing:0.320000pt;}
.ws31{word-spacing:0.373333pt;}
.wsdd{word-spacing:0.426667pt;}
.ws92{word-spacing:0.480000pt;}
.ws10f{word-spacing:0.533333pt;}
.ws6b{word-spacing:0.586667pt;}
.wsec{word-spacing:0.640000pt;}
.wsb8{word-spacing:0.693333pt;}
.ws13{word-spacing:0.728000pt;}
.ws70{word-spacing:0.746667pt;}
.ws8a{word-spacing:0.800000pt;}
.ws109{word-spacing:0.853333pt;}
.ws50{word-spacing:0.906667pt;}
.ws29{word-spacing:0.960000pt;}
.ws1a{word-spacing:0.981333pt;}
.ws36{word-spacing:1.013333pt;}
.ws3f{word-spacing:1.066667pt;}
.wsba{word-spacing:1.120000pt;}
.wscf{word-spacing:1.173333pt;}
.ws79{word-spacing:1.226667pt;}
.ws16{word-spacing:1.280000pt;}
.ws122{word-spacing:1.305600pt;}
.ws24{word-spacing:1.333333pt;}
.ws6e{word-spacing:1.386667pt;}
.ws2c{word-spacing:1.440000pt;}
.ws20{word-spacing:1.472000pt;}
.ws86{word-spacing:1.493333pt;}
.ws117{word-spacing:1.546667pt;}
.wsa{word-spacing:1.568000pt;}
.ws55{word-spacing:1.594667pt;}
.wsc6{word-spacing:1.600000pt;}
.wsf0{word-spacing:1.653333pt;}
.wsc4{word-spacing:1.706667pt;}
.ws77{word-spacing:1.760000pt;}
.ws41{word-spacing:1.813333pt;}
.wseb{word-spacing:1.866667pt;}
.ws87{word-spacing:1.920000pt;}
.ws21{word-spacing:1.962667pt;}
.ws54{word-spacing:1.973333pt;}
.ws48{word-spacing:2.026667pt;}
.ws8c{word-spacing:2.080000pt;}
.wsd2{word-spacing:2.133333pt;}
.ws58{word-spacing:2.186667pt;}
.ws26{word-spacing:2.240000pt;}
.ws108{word-spacing:2.293333pt;}
.wsfa{word-spacing:2.346667pt;}
.wsd3{word-spacing:2.400000pt;}
.wsc8{word-spacing:2.506667pt;}
.ws47{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.613333pt;}
.ws28{word-spacing:2.666667pt;}
.ws116{word-spacing:2.720000pt;}
.wse8{word-spacing:2.773333pt;}
.wsdc{word-spacing:2.826667pt;}
.wsb2{word-spacing:2.880000pt;}
.ws11{word-spacing:2.912000pt;}
.ws5f{word-spacing:2.933333pt;}
.ws12{word-spacing:2.968000pt;}
.wsb1{word-spacing:2.986667pt;}
.wsd6{word-spacing:3.040000pt;}
.wsaa{word-spacing:3.093333pt;}
.wsc7{word-spacing:3.146667pt;}
.wsce{word-spacing:3.200000pt;}
.ws90{word-spacing:3.253333pt;}
.ws128{word-spacing:3.264000pt;}
.ws115{word-spacing:3.306667pt;}
.ws8f{word-spacing:3.360000pt;}
.ws2f{word-spacing:3.413333pt;}
.ws25{word-spacing:3.466667pt;}
.ws124{word-spacing:3.504000pt;}
.ws4b{word-spacing:3.520000pt;}
.wsc2{word-spacing:3.573333pt;}
.wsad{word-spacing:3.626667pt;}
.ws6{word-spacing:3.640000pt;}
.ws126{word-spacing:3.648000pt;}
.ws8d{word-spacing:3.680000pt;}
.ws78{word-spacing:3.733333pt;}
.ws2e{word-spacing:3.786667pt;}
.wse6{word-spacing:3.840000pt;}
.ws35{word-spacing:3.893333pt;}
.ws12e{word-spacing:3.936000pt;}
.wsb5{word-spacing:3.946667pt;}
.wsd9{word-spacing:4.000000pt;}
.wsd5{word-spacing:4.053333pt;}
.ws57{word-spacing:4.106667pt;}
.ws102{word-spacing:4.160000pt;}
.ws61{word-spacing:4.213333pt;}
.ws85{word-spacing:4.266667pt;}
.ws88{word-spacing:4.320000pt;}
.wsb9{word-spacing:4.373333pt;}
.ws3a{word-spacing:4.426667pt;}
.ws113{word-spacing:4.480000pt;}
.ws7b{word-spacing:4.586667pt;}
.ws67{word-spacing:4.640000pt;}
.ws80{word-spacing:4.693333pt;}
.ws22{word-spacing:4.746667pt;}
.wsac{word-spacing:4.800000pt;}
.ws8e{word-spacing:4.853333pt;}
.ws5d{word-spacing:4.906667pt;}
.ws7e{word-spacing:4.960000pt;}
.wsaf{word-spacing:5.013333pt;}
.wsbe{word-spacing:5.066667pt;}
.wsd4{word-spacing:5.120000pt;}
.ws72{word-spacing:5.173333pt;}
.ws7a{word-spacing:5.226667pt;}
.ws4c{word-spacing:5.280000pt;}
.ws81{word-spacing:5.333333pt;}
.wsa4{word-spacing:5.386667pt;}
.ws5a{word-spacing:5.440000pt;}
.ws42{word-spacing:5.493333pt;}
.ws6c{word-spacing:5.546667pt;}
.wsf1{word-spacing:5.600000pt;}
.wsf5{word-spacing:5.653333pt;}
.ws107{word-spacing:5.760000pt;}
.wsdb{word-spacing:5.813333pt;}
.ws3d{word-spacing:5.866667pt;}
.ws119{word-spacing:5.920000pt;}
.ws5c{word-spacing:6.026667pt;}
.wsb{word-spacing:6.048000pt;}
.ws34{word-spacing:6.080000pt;}
.wsed{word-spacing:6.133333pt;}
.wsd0{word-spacing:6.186667pt;}
.ws33{word-spacing:6.240000pt;}
.ws84{word-spacing:6.293333pt;}
.ws12b{word-spacing:6.336000pt;}
.ws45{word-spacing:6.346667pt;}
.wse7{word-spacing:6.400000pt;}
.ws59{word-spacing:6.453333pt;}
.ws111{word-spacing:6.560000pt;}
.ws6f{word-spacing:6.613333pt;}
.ws3b{word-spacing:6.666667pt;}
.ws10e{word-spacing:6.720000pt;}
.ws71{word-spacing:6.773333pt;}
.wsbc{word-spacing:6.826667pt;}
.wsbb{word-spacing:6.933333pt;}
.ws89{word-spacing:6.986667pt;}
.ws2a{word-spacing:7.040000pt;}
.ws65{word-spacing:7.093333pt;}
.ws11b{word-spacing:7.146667pt;}
.ws7{word-spacing:7.168000pt;}
.ws64{word-spacing:7.200000pt;}
.ws98{word-spacing:7.253333pt;}
.wsf7{word-spacing:7.520000pt;}
.ws5{word-spacing:7.560000pt;}
.ws82{word-spacing:7.573333pt;}
.ws106{word-spacing:7.626667pt;}
.wsf2{word-spacing:7.680000pt;}
.ws76{word-spacing:7.733333pt;}
.ws100{word-spacing:7.786667pt;}
.wsc3{word-spacing:7.946667pt;}
.wsde{word-spacing:8.000000pt;}
.ws11c{word-spacing:8.106667pt;}
.ws5b{word-spacing:8.160000pt;}
.ws110{word-spacing:8.213333pt;}
.ws38{word-spacing:8.234667pt;}
.wsc1{word-spacing:8.266667pt;}
.ws12f{word-spacing:8.304000pt;}
.wse0{word-spacing:8.480000pt;}
.wscc{word-spacing:8.533333pt;}
.ws3c{word-spacing:8.586667pt;}
.wsc{word-spacing:8.624000pt;}
.wsf4{word-spacing:8.640000pt;}
.wsc0{word-spacing:8.800000pt;}
.ws10{word-spacing:8.848000pt;}
.ws60{word-spacing:8.853333pt;}
.ws4{word-spacing:8.960000pt;}
.ws91{word-spacing:9.013333pt;}
.wse1{word-spacing:9.226667pt;}
.wsf8{word-spacing:9.280000pt;}
.ws63{word-spacing:9.386667pt;}
.wsa5{word-spacing:9.440000pt;}
.ws4a{word-spacing:9.760000pt;}
.ws9e{word-spacing:9.866667pt;}
.ws99{word-spacing:9.973333pt;}
.wsee{word-spacing:10.026667pt;}
.ws103{word-spacing:10.133333pt;}
.ws11f{word-spacing:10.293333pt;}
.ws118{word-spacing:10.560000pt;}
.wsef{word-spacing:10.720000pt;}
.wse{word-spacing:10.752000pt;}
.wse2{word-spacing:10.826667pt;}
.wsf{word-spacing:10.976000pt;}
.wscd{word-spacing:10.986667pt;}
.ws9f{word-spacing:11.093333pt;}
.ws10d{word-spacing:11.200000pt;}
.wsdf{word-spacing:12.000000pt;}
.wse5{word-spacing:12.853333pt;}
.ws6a{word-spacing:13.120000pt;}
.wsca{word-spacing:13.173333pt;}
.ws11a{word-spacing:13.226667pt;}
.ws11e{word-spacing:13.333333pt;}
.wsf3{word-spacing:14.773333pt;}
.ws8{word-spacing:15.120000pt;}
.ws83{word-spacing:15.840000pt;}
._1a{margin-left:-1662.508533pt;}
._d{margin-left:-441.120000pt;}
._1c{margin-left:-281.920000pt;}
._16{margin-left:-266.560000pt;}
._f{margin-left:-231.296000pt;}
._20{margin-left:-10.826667pt;}
._1e{margin-left:-7.221600pt;}
._10{margin-left:-6.263467pt;}
._19{margin-left:-5.285600pt;}
._a{margin-left:-4.393662pt;}
._9{margin-left:-3.019109pt;}
._c{margin-left:-1.674400pt;}
._5{width:1.315515pt;}
._8{width:2.841512pt;}
._3{width:5.209438pt;}
._6{width:6.156609pt;}
._b{width:9.240000pt;}
._2{width:10.681979pt;}
._1f{width:13.653333pt;}
._4{width:18.706619pt;}
._1{width:22.574232pt;}
._7{width:36.045102pt;}
._21{width:37.908267pt;}
._1b{width:57.419733pt;}
._18{width:59.434667pt;}
._14{width:130.856862pt;}
._15{width:387.840000pt;}
._13{width:515.786667pt;}
._0{width:654.472305pt;}
._12{width:924.800000pt;}
._11{width:963.200000pt;}
._1d{width:1566.227200pt;}
._17{width:1581.587200pt;}
._e{width:3817.635200pt;}
.fs4{font-size:26.310293pt;}
.fs3{font-size:30.068907pt;}
.fsf{font-size:32.000000pt;}
.fs6{font-size:33.075797pt;}
.fs7{font-size:33.827520pt;}
.fs11{font-size:37.333333pt;}
.fs2{font-size:37.586133pt;}
.fs1{font-size:41.344747pt;}
.fs5{font-size:42.096469pt;}
.fs12{font-size:42.666667pt;}
.fs16{font-size:44.266667pt;}
.fs10{font-size:45.333333pt;}
.fs17{font-size:48.000000pt;}
.fs14{font-size:49.493333pt;}
.fs0{font-size:52.620587pt;}
.fse{font-size:53.333333pt;}
.fs18{font-size:54.400000pt;}
.fsa{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fsc{font-size:61.333333pt;}
.fsd{font-size:64.000000pt;}
.fs15{font-size:69.333333pt;}
.fs13{font-size:85.333333pt;}
.fs9{font-size:90.666667pt;}
.fs8{font-size:245.456000pt;}
.y73{bottom:-22.236000pt;}
.y31{bottom:-20.006667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237840pt;}
.y5d{bottom:1.102667pt;}
.y2f{bottom:22.382133pt;}
.ybe{bottom:22.833067pt;}
.y5e{bottom:22.892267pt;}
.y74{bottom:23.935733pt;}
.y99{bottom:23.994933pt;}
.y1c{bottom:40.076215pt;}
.y5c{bottom:43.933200pt;}
.y98{bottom:50.236533pt;}
.y1b{bottom:50.731883pt;}
.y11a{bottom:54.031067pt;}
.y19e{bottom:56.769733pt;}
.ye7{bottom:56.952933pt;}
.y5b{bottom:57.929867pt;}
.y17b{bottom:58.542667pt;}
.y11b{bottom:60.645200pt;}
.y149{bottom:60.860133pt;}
.y113{bottom:60.952933pt;}
.y1a{bottom:61.387552pt;}
.y97{bottom:63.036533pt;}
.y1c6{bottom:64.023333pt;}
.y119{bottom:70.031067pt;}
.y19d{bottom:71.169733pt;}
.y19{bottom:72.043221pt;}
.y17a{bottom:72.942667pt;}
.ye6{bottom:72.952933pt;}
.y96{bottom:75.836533pt;}
.yee{bottom:76.645200pt;}
.y148{bottom:76.860133pt;}
.y112{bottom:76.952933pt;}
.y1c5{bottom:78.690000pt;}
.y18{bottom:81.148462pt;}
.y19c{bottom:85.569600pt;}
.y5a{bottom:85.934533pt;}
.y118{bottom:86.031067pt;}
.y95{bottom:88.636533pt;}
.ye5{bottom:88.952933pt;}
.yed{bottom:92.645200pt;}
.y147{bottom:92.860133pt;}
.y111{bottom:92.952933pt;}
.y1c4{bottom:93.356667pt;}
.y17{bottom:98.400497pt;}
.y59{bottom:99.931200pt;}
.y19b{bottom:99.969600pt;}
.y179{bottom:100.676000pt;}
.y117{bottom:102.031067pt;}
.ye4{bottom:104.952933pt;}
.y1c3{bottom:108.023333pt;}
.yec{bottom:108.645200pt;}
.y146{bottom:108.860133pt;}
.y110{bottom:108.952933pt;}
.y58{bottom:113.927867pt;}
.y19a{bottom:114.369733pt;}
.y178{bottom:115.076000pt;}
.y116{bottom:118.031067pt;}
.ye3{bottom:120.952933pt;}
.y1c2{bottom:122.690000pt;}
.yeb{bottom:124.645200pt;}
.y145{bottom:124.860133pt;}
.y11e{bottom:124.952933pt;}
.y94{bottom:125.716800pt;}
.y57{bottom:127.924533pt;}
.y199{bottom:128.769600pt;}
.y177{bottom:129.476000pt;}
.y150{bottom:134.031067pt;}
.ye2{bottom:136.952933pt;}
.y1c1{bottom:137.356667pt;}
.yea{bottom:140.645200pt;}
.y144{bottom:140.860133pt;}
.y10f{bottom:140.952933pt;}
.y93{bottom:141.716800pt;}
.y56{bottom:141.921200pt;}
.y115{bottom:141.968000pt;}
.y16{bottom:148.521606pt;}
.y14f{bottom:150.031067pt;}
.y1c0{bottom:152.023333pt;}
.ye1{bottom:152.952933pt;}
.y55{bottom:155.917867pt;}
.y15{bottom:156.508659pt;}
.ye9{bottom:156.645200pt;}
.y143{bottom:156.860133pt;}
.y10e{bottom:156.952933pt;}
.y176{bottom:157.209333pt;}
.y198{bottom:157.569600pt;}
.y92{bottom:157.716800pt;}
.y114{bottom:161.968000pt;}
.y14{bottom:163.837955pt;}
.y14e{bottom:166.031067pt;}
.y1bf{bottom:166.690000pt;}
.ye0{bottom:168.952933pt;}
.y54{bottom:169.914533pt;}
.y13{bottom:170.490701pt;}
.y175{bottom:171.609333pt;}
.y197{bottom:171.969600pt;}
.ye8{bottom:172.645200pt;}
.y142{bottom:172.860133pt;}
.y10d{bottom:172.952933pt;}
.y91{bottom:173.716800pt;}
.y12{bottom:177.152843pt;}
.y1be{bottom:181.356667pt;}
.y14d{bottom:182.031067pt;}
.y11{bottom:183.814985pt;}
.ydf{bottom:184.952933pt;}
.y174{bottom:186.009333pt;}
.ybd{bottom:188.645200pt;}
.y141{bottom:188.860133pt;}
.y10c{bottom:188.952933pt;}
.y90{bottom:189.716800pt;}
.y10{bottom:190.467731pt;}
.y1bd{bottom:196.023333pt;}
.yf{bottom:197.129873pt;}
.y53{bottom:197.919200pt;}
.y14c{bottom:198.031067pt;}
.y196{bottom:200.769600pt;}
.yde{bottom:200.952933pt;}
.ybc{bottom:204.645200pt;}
.y140{bottom:204.860133pt;}
.y10b{bottom:204.952933pt;}
.y8f{bottom:205.716800pt;}
.y1bc{bottom:210.690000pt;}
.ye{bottom:210.830018pt;}
.y52{bottom:211.915867pt;}
.y173{bottom:213.742667pt;}
.y156{bottom:214.031067pt;}
.y195{bottom:215.169733pt;}
.ydd{bottom:216.952933pt;}
.ybb{bottom:220.645200pt;}
.y13f{bottom:220.860133pt;}
.y10a{bottom:220.952933pt;}
.y8e{bottom:221.716800pt;}
.y14b{bottom:221.968000pt;}
.y1bb{bottom:225.356667pt;}
.y51{bottom:225.912533pt;}
.y172{bottom:228.142667pt;}
.y155{bottom:230.031067pt;}
.ydc{bottom:232.952933pt;}
.yba{bottom:236.645200pt;}
.y13e{bottom:236.860133pt;}
.y109{bottom:236.952933pt;}
.y8d{bottom:237.716800pt;}
.y50{bottom:239.909200pt;}
.y1ba{bottom:240.023333pt;}
.y14a{bottom:241.968000pt;}
.y194{bottom:243.969600pt;}
.y154{bottom:246.031067pt;}
.ydb{bottom:248.952933pt;}
.yb9{bottom:252.645200pt;}
.y13d{bottom:252.860133pt;}
.y108{bottom:252.952933pt;}
.y8c{bottom:253.716800pt;}
.y1b9{bottom:254.690000pt;}
.y2d{bottom:255.319333pt;}
.y171{bottom:255.876000pt;}
.y193{bottom:258.369733pt;}
.y153{bottom:262.031067pt;}
.yda{bottom:264.952933pt;}
.y4f{bottom:267.913867pt;}
.yb8{bottom:268.645200pt;}
.y13c{bottom:268.860133pt;}
.y107{bottom:268.952933pt;}
.y1b8{bottom:269.356667pt;}
.y8b{bottom:269.716800pt;}
.y170{bottom:270.276000pt;}
.y2c{bottom:279.725200pt;}
.yd9{bottom:280.952933pt;}
.y4e{bottom:281.910533pt;}
.y1b7{bottom:284.023333pt;}
.yb7{bottom:284.645200pt;}
.y16f{bottom:284.676000pt;}
.y13b{bottom:284.860133pt;}
.y106{bottom:284.952933pt;}
.y8a{bottom:285.716800pt;}
.y152{bottom:285.968000pt;}
.y192{bottom:287.169733pt;}
.y4d{bottom:295.907200pt;}
.yd8{bottom:296.952933pt;}
.y1b6{bottom:298.690000pt;}
.yb6{bottom:300.645200pt;}
.y13a{bottom:300.860133pt;}
.y105{bottom:300.952933pt;}
.y191{bottom:301.569600pt;}
.y89{bottom:301.716800pt;}
.y2b{bottom:303.721200pt;}
.y151{bottom:305.968000pt;}
.y4c{bottom:309.903867pt;}
.y16e{bottom:312.409333pt;}
.yd7{bottom:312.952933pt;}
.y1b5{bottom:313.356667pt;}
.y190{bottom:315.969600pt;}
.yd{bottom:316.531622pt;}
.yb5{bottom:316.645200pt;}
.y139{bottom:316.860133pt;}
.y11d{bottom:316.952933pt;}
.y88{bottom:317.716800pt;}
.y30{bottom:317.831733pt;}
.y72{bottom:318.330933pt;}
.y16d{bottom:326.809333pt;}
.y2a{bottom:327.717200pt;}
.y1b4{bottom:328.023333pt;}
.yd6{bottom:328.952933pt;}
.yb4{bottom:332.645200pt;}
.y138{bottom:332.860133pt;}
.y104{bottom:332.952933pt;}
.y87{bottom:333.716800pt;}
.y71{bottom:334.330933pt;}
.y4b{bottom:337.908533pt;}
.y16c{bottom:341.209333pt;}
.y1b3{bottom:342.690000pt;}
.y18f{bottom:344.769600pt;}
.yd5{bottom:344.952933pt;}
.yb3{bottom:348.645200pt;}
.y137{bottom:348.860133pt;}
.y103{bottom:348.952933pt;}
.y86{bottom:349.716800pt;}
.y70{bottom:350.330933pt;}
.y29{bottom:351.713200pt;}
.y4a{bottom:351.905200pt;}
.y1b2{bottom:357.356667pt;}
.y18e{bottom:359.169733pt;}
.yd4{bottom:360.952933pt;}
.yb2{bottom:364.645200pt;}
.y136{bottom:364.860133pt;}
.y102{bottom:364.952933pt;}
.y85{bottom:365.716800pt;}
.y49{bottom:365.901867pt;}
.y16b{bottom:368.942667pt;}
.y1b1{bottom:372.023333pt;}
.y28{bottom:375.709200pt;}
.y48{bottom:379.898533pt;}
.yb1{bottom:380.645200pt;}
.y135{bottom:380.860133pt;}
.y101{bottom:380.952933pt;}
.y84{bottom:381.716800pt;}
.y6f{bottom:382.330933pt;}
.y16a{bottom:383.342667pt;}
.y1b0{bottom:386.690000pt;}
.y18d{bottom:387.969600pt;}
.yd3{bottom:392.952933pt;}
.y47{bottom:393.895200pt;}
.yb0{bottom:396.645200pt;}
.y134{bottom:396.860133pt;}
.y100{bottom:396.952933pt;}
.y83{bottom:397.716800pt;}
.y169{bottom:397.742667pt;}
.y6e{bottom:398.330933pt;}
.y27{bottom:399.705200pt;}
.y1af{bottom:401.356667pt;}
.y18c{bottom:402.369733pt;}
.y46{bottom:407.891867pt;}
.yd2{bottom:408.952933pt;}
.yaf{bottom:412.645200pt;}
.y133{bottom:412.860133pt;}
.yff{bottom:412.952933pt;}
.y82{bottom:413.716667pt;}
.y6d{bottom:414.330933pt;}
.y1ae{bottom:416.023333pt;}
.y18b{bottom:416.769600pt;}
.y45{bottom:421.888533pt;}
.y26{bottom:423.701200pt;}
.yd1{bottom:424.952933pt;}
.y168{bottom:425.476000pt;}
.yae{bottom:428.645200pt;}
.y132{bottom:428.860133pt;}
.yfe{bottom:428.952933pt;}
.y81{bottom:429.716667pt;}
.y1ad{bottom:430.690000pt;}
.y44{bottom:435.885200pt;}
.yd0{bottom:440.952933pt;}
.y167{bottom:441.476000pt;}
.yad{bottom:444.645200pt;}
.y131{bottom:444.860133pt;}
.yfd{bottom:444.952933pt;}
.y1ac{bottom:445.356667pt;}
.y18a{bottom:445.569600pt;}
.y80{bottom:445.716667pt;}
.y6c{bottom:446.330933pt;}
.y25{bottom:447.697200pt;}
.y43{bottom:449.881867pt;}
.ycf{bottom:456.952933pt;}
.yc{bottom:457.977638pt;}
.y189{bottom:459.969600pt;}
.y1ab{bottom:460.023333pt;}
.yac{bottom:460.645200pt;}
.y130{bottom:460.860133pt;}
.yfc{bottom:460.952933pt;}
.y7f{bottom:461.716667pt;}
.y6b{bottom:462.330933pt;}
.y42{bottom:463.878533pt;}
.y166{bottom:465.413067pt;}
.y24{bottom:471.693200pt;}
.yce{bottom:472.952933pt;}
.y1aa{bottom:474.690000pt;}
.yab{bottom:476.645200pt;}
.y12f{bottom:476.860133pt;}
.yfb{bottom:476.952933pt;}
.y7e{bottom:477.716667pt;}
.y6a{bottom:478.330933pt;}
.yb{bottom:478.518460pt;}
.y188{bottom:488.769600pt;}
.ycd{bottom:488.952933pt;}
.ya{bottom:489.174129pt;}
.y1a9{bottom:489.356667pt;}
.y41{bottom:491.883200pt;}
.yaa{bottom:492.645200pt;}
.y12e{bottom:492.860133pt;}
.yfa{bottom:492.952933pt;}
.y7d{bottom:493.716667pt;}
.y69{bottom:494.330933pt;}
.y23{bottom:495.689200pt;}
.y187{bottom:503.169733pt;}
.y1a8{bottom:504.023333pt;}
.ycc{bottom:504.952933pt;}
.y40{bottom:505.879867pt;}
.y165{bottom:508.090133pt;}
.ya9{bottom:508.645200pt;}
.y12d{bottom:508.860133pt;}
.yf9{bottom:508.952933pt;}
.y7c{bottom:509.716667pt;}
.y9{bottom:509.921674pt;}
.y1a7{bottom:518.690000pt;}
.y22{bottom:519.685200pt;}
.y3f{bottom:519.876533pt;}
.y8{bottom:520.577343pt;}
.ycb{bottom:520.952933pt;}
.y164{bottom:524.090133pt;}
.ya8{bottom:524.645200pt;}
.y12c{bottom:524.860133pt;}
.y11c{bottom:524.952933pt;}
.y7b{bottom:525.716667pt;}
.y68{bottom:526.330933pt;}
.y7{bottom:531.233012pt;}
.y186{bottom:531.969600pt;}
.y1a6{bottom:533.356667pt;}
.y3e{bottom:533.873200pt;}
.yca{bottom:536.952933pt;}
.y163{bottom:540.090133pt;}
.ya7{bottom:540.645200pt;}
.y12b{bottom:540.860133pt;}
.yf8{bottom:540.952933pt;}
.y6{bottom:541.888681pt;}
.y67{bottom:542.330933pt;}
.y21{bottom:543.681200pt;}
.y185{bottom:546.369733pt;}
.y3d{bottom:547.869867pt;}
.y1a5{bottom:548.023333pt;}
.y7a{bottom:549.653733pt;}
.yc9{bottom:552.952933pt;}
.y162{bottom:556.090133pt;}
.ya6{bottom:556.645200pt;}
.y12a{bottom:556.860133pt;}
.yf7{bottom:556.952933pt;}
.y66{bottom:558.330933pt;}
.y3c{bottom:561.866533pt;}
.y1a4{bottom:562.690000pt;}
.y20{bottom:567.677200pt;}
.yc8{bottom:568.952933pt;}
.y79{bottom:569.653733pt;}
.y161{bottom:572.090133pt;}
.ya5{bottom:572.645200pt;}
.y129{bottom:572.860133pt;}
.yf6{bottom:572.952933pt;}
.y184{bottom:575.169733pt;}
.y1a3{bottom:577.356667pt;}
.yc7{bottom:584.952933pt;}
.y160{bottom:588.090133pt;}
.ya4{bottom:588.645200pt;}
.y128{bottom:588.860133pt;}
.yf5{bottom:588.952933pt;}
.y183{bottom:589.569600pt;}
.y78{bottom:589.653733pt;}
.y3b{bottom:589.871200pt;}
.y65{bottom:590.330933pt;}
.y5{bottom:591.539963pt;}
.y1a2{bottom:592.023333pt;}
.yc6{bottom:600.952933pt;}
.y3a{bottom:603.867867pt;}
.y15f{bottom:604.090133pt;}
.ya3{bottom:604.645200pt;}
.y127{bottom:604.860133pt;}
.yf4{bottom:604.952933pt;}
.y64{bottom:606.330933pt;}
.y1a1{bottom:606.690000pt;}
.y4{bottom:607.344932pt;}
.yc5{bottom:616.952933pt;}
.y39{bottom:617.864533pt;}
.y182{bottom:618.369733pt;}
.y15e{bottom:620.090133pt;}
.ya2{bottom:620.645200pt;}
.y126{bottom:620.860133pt;}
.yf3{bottom:620.952933pt;}
.y63{bottom:622.330933pt;}
.y3{bottom:625.987654pt;}
.y1a0{bottom:629.890000pt;}
.y181{bottom:632.769600pt;}
.yc4{bottom:632.952933pt;}
.y15d{bottom:636.090133pt;}
.ya1{bottom:636.645200pt;}
.y125{bottom:636.860133pt;}
.yf2{bottom:636.952933pt;}
.y62{bottom:638.330933pt;}
.y2e{bottom:639.200667pt;}
.y77{bottom:639.890000pt;}
.y2{bottom:644.639773pt;}
.y38{bottom:645.869200pt;}
.yc3{bottom:648.952933pt;}
.y15c{bottom:652.090133pt;}
.ya0{bottom:652.645200pt;}
.y124{bottom:652.860133pt;}
.yf1{bottom:652.952933pt;}
.y61{bottom:654.330933pt;}
.y37{bottom:659.865867pt;}
.y180{bottom:661.569600pt;}
.y76{bottom:663.223333pt;}
.yc2{bottom:664.952933pt;}
.y15b{bottom:668.090133pt;}
.y9f{bottom:668.645200pt;}
.y123{bottom:668.860133pt;}
.yf0{bottom:668.952933pt;}
.y36{bottom:673.862533pt;}
.y17f{bottom:675.969600pt;}
.y15a{bottom:684.090133pt;}
.y9e{bottom:684.645200pt;}
.y122{bottom:684.860133pt;}
.yef{bottom:684.952933pt;}
.y75{bottom:686.556667pt;}
.yc1{bottom:688.890000pt;}
.y19f{bottom:690.369600pt;}
.y159{bottom:700.090133pt;}
.y9d{bottom:700.645200pt;}
.y121{bottom:700.860133pt;}
.y35{bottom:701.867200pt;}
.y17e{bottom:704.769733pt;}
.yc0{bottom:708.890000pt;}
.y34{bottom:715.863867pt;}
.y158{bottom:716.090133pt;}
.y9c{bottom:716.645200pt;}
.y120{bottom:716.860133pt;}
.y17d{bottom:719.169733pt;}
.y1f{bottom:721.105867pt;}
.y60{bottom:725.890000pt;}
.ybf{bottom:728.890000pt;}
.y33{bottom:729.860533pt;}
.y157{bottom:732.090133pt;}
.y9b{bottom:732.645200pt;}
.y11f{bottom:732.860133pt;}
.y17c{bottom:733.569600pt;}
.y32{bottom:743.857200pt;}
.y1e{bottom:751.773867pt;}
.y5f{bottom:760.535600pt;}
.y9a{bottom:760.535733pt;}
.y1d{bottom:770.261067pt;}
.h7{height:19.495927pt;}
.h6{height:22.281060pt;}
.h12{height:23.031250pt;}
.h9{height:25.066192pt;}
.h1f{height:25.408000pt;}
.h5{height:27.851325pt;}
.h19{height:29.604167pt;}
.h4{height:30.636457pt;}
.h8{height:31.193484pt;}
.h13{height:32.384115pt;}
.h15{height:32.627604pt;}
.h1a{height:33.833333pt;}
.h23{height:36.145833pt;}
.h3{height:38.991855pt;}
.h14{height:39.799479pt;}
.h25{height:39.840000pt;}
.h26{height:40.031250pt;}
.h1c{height:42.291667pt;}
.h10{height:42.474667pt;}
.h27{height:43.854687pt;}
.h11{height:44.113281pt;}
.h1e{height:44.479167pt;}
.h1d{height:44.583333pt;}
.he{height:49.164062pt;}
.h20{height:50.750000pt;}
.h24{height:53.375000pt;}
.h22{height:54.979167pt;}
.h1b{height:56.875000pt;}
.hf{height:62.956596pt;}
.hd{height:65.210938pt;}
.h21{height:67.666667pt;}
.hc{height:176.541352pt;}
.h2{height:791.084745pt;}
.h1{height:791.333333pt;}
.h0{height:791.560000pt;}
.ha{height:793.686667pt;}
.h18{height:793.701333pt;}
.hb{height:794.000000pt;}
.h16{height:795.905333pt;}
.h17{height:796.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.356000pt;}
.w2{width:559.356836pt;}
.w0{width:559.360000pt;}
.w6{width:559.369333pt;}
.w5{width:561.333333pt;}
.w4{width:561.574667pt;}
.xb{left:-569.325467pt;}
.xa{left:-7.814000pt;}
.x0{left:0.000000pt;}
.xf{left:1.102667pt;}
.xe{left:13.326533pt;}
.x12{left:14.435867pt;}
.x3{left:29.298391pt;}
.x1{left:34.626225pt;}
.xd{left:38.302133pt;}
.xc{left:39.310800pt;}
.x7{left:59.435467pt;}
.x6{left:60.827067pt;}
.x1b{left:68.031467pt;}
.x13{left:69.134133pt;}
.x11{left:77.109867pt;}
.x27{left:78.826000pt;}
.x17{left:91.811200pt;}
.x2{left:93.223007pt;}
.x15{left:96.258533pt;}
.x1a{left:99.370267pt;}
.x1e{left:111.395200pt;}
.x26{left:137.343067pt;}
.x22{left:149.963867pt;}
.x24{left:152.468933pt;}
.x25{left:158.304400pt;}
.x16{left:209.769467pt;}
.x1f{left:231.089200pt;}
.x28{left:234.932667pt;}
.x21{left:268.269467pt;}
.x1d{left:270.453067pt;}
.x14{left:272.636667pt;}
.x4{left:274.350584pt;}
.x23{left:276.145867pt;}
.x10{left:320.741200pt;}
.x18{left:337.294800pt;}
.x1c{left:411.366400pt;}
.x9{left:417.113200pt;}
.x20{left:481.628667pt;}
.x19{left:487.034933pt;}
.x8{left:492.906133pt;}
.x5{left:513.459600pt;}
}




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