
    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_7fbacdf1f1ebf9abdf57cfcd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_f4fa47bb5648d921f71bad7b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.019043;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_167ef3e10b73233e71ae726a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.019531;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_a0cf301a322a44ed217d30ff.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d2160e683edbc2f6b9f78932.woff')format("woff");}.ff5{font-family:ff5;line-height:1.019043;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_c0f4c380ac78e456942ff544.woff')format("woff");}.ff6{font-family:ff6;line-height:1.019531;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_3ac44f1759e26ef77f173291.woff')format("woff");}.ff7{font-family:ff7;line-height:0.985352;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_eaffc242a33f42e0f9b8cd92.woff')format("woff");}.ff8{font-family:ff8;line-height:0.985352;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_9d64d5a4548f0affcb694dee.woff')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_819be35d657ab4d092a37b96.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b35b6b54b453a4b9ab756df9.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aeb5e20c99b35faee9cf5f56.woff')format("woff");}.ffc{font-family:ffc;line-height:1.019043;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_4e50a13a3ffa123d5b86fd2c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.019531;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_a0cf301a322a44ed217d30ff.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_897d6dc43e5229905d8ee53e.woff')format("woff");}.fff{font-family:fff;line-height:0.927734;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_5de8ffa22090162d744b17fa.woff')format("woff");}.ff10{font-family:ff10;line-height:1.088379;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_4e50a13a3ffa123d5b86fd2c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.019531;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_a0cf301a322a44ed217d30ff.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b945e37eef6700ad492d3049.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_09e7244a20ebc227f6d69227.woff')format("woff");}.ff14{font-family:ff14;line-height:0.919434;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_edce38f0f6767870a07b9223.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_511a0a875aacb800ed23ad54.woff')format("woff");}.ff16{font-family:ff16;line-height:0.924316;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_65c9391e67da1e64c5549a63.woff')format("woff");}.ff17{font-family:ff17;line-height:1.019531;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_a0cf301a322a44ed217d30ff.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_943829af1ffcbccae2a9e32b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.917969;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_e3a12184db0842e64bd17ea7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.922363;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_7c9387fe7d0022539cb9de63.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.922363;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-29.760600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.194200px;}
.v4{vertical-align:30.000000px;}
.v3{vertical-align:32.994000px;}
.ls9{letter-spacing:-1.641600px;}
.lsa{letter-spacing:-1.258560px;}
.lsc{letter-spacing:-0.601920px;}
.ls8{letter-spacing:-0.596160px;}
.ls15{letter-spacing:-0.540000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.054720px;}
.ls7{letter-spacing:0.164160px;}
.ls2{letter-spacing:0.210000px;}
.ls5{letter-spacing:0.510000px;}
.ls4{letter-spacing:0.571800px;}
.ls3{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.675000px;}
.ls0{letter-spacing:0.900000px;}
.lse{letter-spacing:1.404000px;}
.lsd{letter-spacing:1.409400px;}
.ls1{letter-spacing:1.500000px;}
.ls19{letter-spacing:1.582200px;}
.ls17{letter-spacing:1.895400px;}
.ls10{letter-spacing:3.672000px;}
.lsf{letter-spacing:3.688200px;}
.ls11{letter-spacing:4.714200px;}
.ls12{letter-spacing:4.752000px;}
.ls13{letter-spacing:6.350400px;}
.ls14{letter-spacing:6.388200px;}
.ls18{letter-spacing:17.658000px;}
.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;}
}
.ws3c{word-spacing:-54.884160px;}
.ws40{word-spacing:-54.118080px;}
.ws3e{word-spacing:-53.461440px;}
.ws3d{word-spacing:-53.078400px;}
.ws2{word-spacing:-17.928000px;}
.ws1{word-spacing:-13.680000px;}
.ws54{word-spacing:-13.200000px;}
.ws6b{word-spacing:-11.880000px;}
.ws47{word-spacing:-11.448000px;}
.ws8a{word-spacing:-11.340000px;}
.ws82{word-spacing:-4.590000px;}
.ws9e{word-spacing:-4.374000px;}
.ws5d{word-spacing:-3.180000px;}
.ws33{word-spacing:-3.060000px;}
.ws1e{word-spacing:-2.640000px;}
.wsd{word-spacing:-2.580000px;}
.ws31{word-spacing:-2.460000px;}
.ws79{word-spacing:-2.340000px;}
.ws9b{word-spacing:-2.322000px;}
.wse{word-spacing:-2.280000px;}
.ws90{word-spacing:-2.268000px;}
.ws5e{word-spacing:-2.220000px;}
.ws5b{word-spacing:-2.100000px;}
.ws7{word-spacing:-1.998000px;}
.ws27{word-spacing:-1.980000px;}
.ws36{word-spacing:-1.920000px;}
.ws15{word-spacing:-1.740000px;}
.ws8{word-spacing:-1.728000px;}
.ws93{word-spacing:-1.674000px;}
.ws7d{word-spacing:-1.620000px;}
.ws4{word-spacing:-1.500000px;}
.ws18{word-spacing:-1.440000px;}
.ws63{word-spacing:-1.380000px;}
.wsf{word-spacing:-1.260000px;}
.ws65{word-spacing:-1.200000px;}
.ws86{word-spacing:-1.188000px;}
.ws62{word-spacing:-1.140000px;}
.ws89{word-spacing:-1.134000px;}
.ws2b{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.020000px;}
.ws1a{word-spacing:-0.840000px;}
.ws55{word-spacing:-0.720000px;}
.ws85{word-spacing:-0.702000px;}
.ws1d{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.600000px;}
.ws5f{word-spacing:-0.480000px;}
.ws57{word-spacing:-0.420000px;}
.ws8c{word-spacing:-0.324000px;}
.ws80{word-spacing:-0.270000px;}
.ws5{word-spacing:-0.210000px;}
.ws67{word-spacing:-0.180000px;}
.ws44{word-spacing:-0.164160px;}
.ws6c{word-spacing:-0.120000px;}
.ws9a{word-spacing:-0.108000px;}
.ws99{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws6f{word-spacing:0.240000px;}
.wsa3{word-spacing:0.270000px;}
.ws2f{word-spacing:0.300000px;}
.ws92{word-spacing:0.324000px;}
.ws98{word-spacing:0.378000px;}
.ws29{word-spacing:0.480000px;}
.ws3b{word-spacing:0.540000px;}
.ws9d{word-spacing:0.594000px;}
.ws43{word-spacing:0.596160px;}
.ws24{word-spacing:0.600000px;}
.ws17{word-spacing:0.720000px;}
.ws42{word-spacing:0.780000px;}
.wsb{word-spacing:0.810000px;}
.ws35{word-spacing:0.840000px;}
.ws22{word-spacing:0.900000px;}
.ws4f{word-spacing:0.960000px;}
.ws25{word-spacing:1.140000px;}
.ws70{word-spacing:1.200000px;}
.ws74{word-spacing:1.260000px;}
.ws7b{word-spacing:1.350000px;}
.ws53{word-spacing:1.380000px;}
.ws52{word-spacing:1.440000px;}
.ws96{word-spacing:1.458000px;}
.ws64{word-spacing:1.500000px;}
.wsa2{word-spacing:1.512000px;}
.ws3a{word-spacing:1.560000px;}
.wsc{word-spacing:1.566000px;}
.ws1f{word-spacing:1.740000px;}
.ws88{word-spacing:1.782000px;}
.ws39{word-spacing:1.800000px;}
.ws9f{word-spacing:1.836000px;}
.ws50{word-spacing:1.920000px;}
.ws69{word-spacing:1.980000px;}
.ws6a{word-spacing:2.040000px;}
.ws81{word-spacing:2.052000px;}
.ws7f{word-spacing:2.214000px;}
.ws38{word-spacing:2.220000px;}
.ws16{word-spacing:2.340000px;}
.ws32{word-spacing:2.400000px;}
.ws30{word-spacing:2.460000px;}
.ws94{word-spacing:2.484000px;}
.ws9{word-spacing:2.592000px;}
.ws61{word-spacing:2.640000px;}
.ws6d{word-spacing:2.700000px;}
.ws21{word-spacing:2.820000px;}
.ws66{word-spacing:2.940000px;}
.ws77{word-spacing:3.180000px;}
.ws13{word-spacing:3.420000px;}
.ws97{word-spacing:3.564000px;}
.ws5a{word-spacing:3.660000px;}
.ws7e{word-spacing:3.672000px;}
.ws28{word-spacing:3.780000px;}
.ws75{word-spacing:3.840000px;}
.ws83{word-spacing:3.942000px;}
.ws2e{word-spacing:4.140000px;}
.ws1c{word-spacing:4.200000px;}
.ws51{word-spacing:4.440000px;}
.ws8b{word-spacing:4.482000px;}
.ws60{word-spacing:4.620000px;}
.ws8f{word-spacing:4.644000px;}
.ws8d{word-spacing:4.698000px;}
.ws68{word-spacing:4.920000px;}
.ws7a{word-spacing:4.968000px;}
.ws59{word-spacing:5.100000px;}
.ws5c{word-spacing:5.160000px;}
.ws56{word-spacing:5.280000px;}
.ws20{word-spacing:5.400000px;}
.wsa4{word-spacing:5.454000px;}
.ws76{word-spacing:5.460000px;}
.ws37{word-spacing:5.580000px;}
.ws2d{word-spacing:5.700000px;}
.ws72{word-spacing:5.760000px;}
.ws87{word-spacing:5.778000px;}
.wsa{word-spacing:5.940000px;}
.ws1b{word-spacing:6.060000px;}
.ws11{word-spacing:6.120000px;}
.ws91{word-spacing:6.156000px;}
.ws41{word-spacing:6.240000px;}
.ws8e{word-spacing:6.318000px;}
.ws7c{word-spacing:6.804000px;}
.ws12{word-spacing:7.020000px;}
.ws26{word-spacing:7.680000px;}
.ws10{word-spacing:7.800000px;}
.ws9c{word-spacing:7.938000px;}
.ws6e{word-spacing:8.340000px;}
.ws84{word-spacing:8.586000px;}
.ws71{word-spacing:8.700000px;}
.ws34{word-spacing:9.120000px;}
.ws23{word-spacing:9.180000px;}
.ws95{word-spacing:9.342000px;}
.wsa1{word-spacing:9.882000px;}
.ws19{word-spacing:10.740000px;}
.ws2a{word-spacing:11.220000px;}
.ws78{word-spacing:11.280000px;}
.ws2c{word-spacing:11.400000px;}
.ws14{word-spacing:14.280000px;}
.wsa0{word-spacing:17.658000px;}
.ws58{word-spacing:19.380000px;}
.ws45{word-spacing:103.920000px;}
.ws3f{word-spacing:123.646176px;}
.ws4b{word-spacing:127.062000px;}
.ws49{word-spacing:172.854000px;}
.ws46{word-spacing:173.070000px;}
.ws48{word-spacing:173.232000px;}
.ws4c{word-spacing:185.976000px;}
.ws4e{word-spacing:198.504000px;}
.ws4a{word-spacing:198.666000px;}
.ws4d{word-spacing:217.512000px;}
.ws0{word-spacing:1016.206200px;}
._11{margin-left:-24.610800px;}
._4{margin-left:-13.131000px;}
._3{margin-left:-6.838200px;}
._a{margin-left:-5.682600px;}
._b{margin-left:-4.363800px;}
._5{margin-left:-2.827800px;}
._2{margin-left:-1.721400px;}
._1{width:1.560000px;}
._8{width:2.943000px;}
._7{width:4.060800px;}
._9{width:5.648400px;}
._10{width:6.651600px;}
._c{width:7.662600px;}
._d{width:8.938800px;}
._e{width:10.800000px;}
._f{width:11.850000px;}
._32{width:13.262400px;}
._31{width:17.004600px;}
._2e{width:26.406000px;}
._12{width:30.120000px;}
._33{width:31.731000px;}
._13{width:43.320000px;}
._29{width:62.280000px;}
._2a{width:80.400000px;}
._17{width:89.370000px;}
._30{width:94.014000px;}
._21{width:102.576000px;}
._2b{width:110.880000px;}
._27{width:112.698000px;}
._2d{width:115.182000px;}
._25{width:127.062000px;}
._24{width:138.510000px;}
._2f{width:171.396000px;}
._22{width:263.664000px;}
._26{width:375.084000px;}
._18{width:495.882000px;}
._1d{width:526.986000px;}
._1a{width:541.302000px;}
._28{width:544.259400px;}
._2c{width:545.321400px;}
._1f{width:559.878000px;}
._15{width:565.632000px;}
._19{width:680.724000px;}
._1b{width:705.942000px;}
._23{width:730.704000px;}
._1e{width:743.040000px;}
._16{width:748.494000px;}
._20{width:824.742000px;}
._1c{width:863.622000px;}
._14{width:1105.776000px;}
._6{width:1286.124000px;}
._0{width:2394.400800px;}
.fc9{color:rgb(156,157,157);}
.fc8{color:transparent;}
.fc7{color:rgb(34,104,36);}
.fc5{color:rgb(167,167,168);}
.fca{color:rgb(70,70,69);}
.fc6{color:rgb(111,111,110);}
.fc4{color:rgb(59,59,58);}
.fc3{color:rgb(73,73,72);}
.fc2{color:rgb(196,217,131);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:54.720000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fsa{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:114.000000px;}
.yb3{bottom:-127.885020px;}
.yb2{bottom:-90.442860px;}
.yb1{bottom:-53.000700px;}
.yb0{bottom:-37.160700px;}
.y0{bottom:0.000000px;}
.yc{bottom:44.273100px;}
.y1a{bottom:45.844950px;}
.y249{bottom:88.457700px;}
.y4e{bottom:88.926000px;}
.y208{bottom:95.707200px;}
.y16c{bottom:96.120000px;}
.yae{bottom:96.798600px;}
.yfd{bottom:99.925350px;}
.y16b{bottom:101.122950px;}
.y18{bottom:102.111750px;}
.y248{bottom:104.212200px;}
.y4d{bottom:108.426000px;}
.y133{bottom:109.133250px;}
.y207{bottom:111.461700px;}
.yfa{bottom:111.588600px;}
.y21b{bottom:114.458700px;}
.y84{bottom:115.620000px;}
.y19d{bottom:117.143250px;}
.y1d9{bottom:118.711200px;}
.y247{bottom:119.966700px;}
.yad{bottom:120.550500px;}
.y16a{bottom:120.622950px;}
.y154{bottom:122.375250px;}
.y132{bottom:125.630250px;}
.y4c{bottom:127.926000px;}
.y259{bottom:130.785000px;}
.yf9{bottom:131.088600px;}
.y206{bottom:131.468700px;}
.y19c{bottom:132.897750px;}
.y1d8{bottom:134.465700px;}
.y83{bottom:135.120000px;}
.yac{bottom:138.550500px;}
.y91{bottom:138.622950px;}
.y246{bottom:139.973700px;}
.y169{bottom:140.122950px;}
.y131{bottom:142.127250px;}
.y205{bottom:147.223200px;}
.y4b{bottom:147.426000px;}
.y19b{bottom:148.652250px;}
.y21a{bottom:150.220200px;}
.yf8{bottom:150.588600px;}
.y1d7{bottom:154.472700px;}
.y82{bottom:154.620000px;}
.y245{bottom:155.728200px;}
.y90{bottom:158.122950px;}
.y12f{bottom:158.624250px;}
.y12e{bottom:158.637300px;}
.y168{bottom:159.622950px;}
.y17{bottom:160.607250px;}
.y204{bottom:162.977700px;}
.yaf{bottom:164.067000px;}
.y258{bottom:166.789500px;}
.y4a{bottom:166.926000px;}
.y19a{bottom:168.659250px;}
.yf7{bottom:170.088600px;}
.y1d6{bottom:170.227200px;}
.yc0{bottom:171.910620px;}
.ybf{bottom:172.266300px;}
.y81{bottom:174.120000px;}
.y130{bottom:175.121250px;}
.y12d{bottom:175.134300px;}
.y244{bottom:175.735200px;}
.y8f{bottom:177.622950px;}
.y167{bottom:179.122950px;}
.y16{bottom:180.101250px;}
.y203{bottom:182.984700px;}
.y199{bottom:184.413750px;}
.y257{bottom:184.785000px;}
.y1d5{bottom:185.981700px;}
.y49{bottom:186.426000px;}
.yf6{bottom:189.588600px;}
.y243{bottom:191.489700px;}
.y80{bottom:193.620000px;}
.y8e{bottom:197.122950px;}
.y166{bottom:198.622950px;}
.y202{bottom:198.739200px;}
.y15{bottom:199.595250px;}
.y198{bottom:200.168250px;}
.y129{bottom:201.270300px;}
.y256{bottom:202.780500px;}
.yb4{bottom:202.866300px;}
.y48{bottom:205.926000px;}
.y1d4{bottom:205.988700px;}
.yf5{bottom:209.088600px;}
.y242{bottom:211.496700px;}
.y7f{bottom:213.120000px;}
.y201{bottom:214.493700px;}
.y8d{bottom:216.622950px;}
.y12c{bottom:217.780800px;}
.y128{bottom:217.792350px;}
.y14{bottom:219.089250px;}
.y255{bottom:220.776000px;}
.y1d3{bottom:221.743200px;}
.y47{bottom:225.426000px;}
.y241{bottom:227.251200px;}
.yf4{bottom:228.588600px;}
.yb5{bottom:229.501260px;}
.y200{bottom:230.248200px;}
.y7e{bottom:232.620000px;}
.y12b{bottom:234.277800px;}
.y127{bottom:234.289350px;}
.y8c{bottom:236.122950px;}
.y165{bottom:237.622950px;}
.y13{bottom:238.583250px;}
.y254{bottom:238.771500px;}
.y197{bottom:239.670150px;}
.y1d2{bottom:241.750200px;}
.y240{bottom:243.005700px;}
.y46{bottom:244.926000px;}
.yf3{bottom:248.088600px;}
.y1ff{bottom:250.255200px;}
.y12a{bottom:250.774800px;}
.y126{bottom:250.786350px;}
.y7d{bottom:252.120000px;}
.y8b{bottom:255.622950px;}
.yb6{bottom:256.505580px;}
.y253{bottom:256.767000px;}
.y1d1{bottom:257.504700px;}
.y12{bottom:258.077250px;}
.y23f{bottom:263.012700px;}
.y45{bottom:264.426000px;}
.y1fe{bottom:266.009700px;}
.yf2{bottom:267.588600px;}
.y7c{bottom:271.620000px;}
.y219{bottom:273.259200px;}
.y252{bottom:274.762500px;}
.y8a{bottom:275.122950px;}
.y164{bottom:276.622950px;}
.y125{bottom:276.935850px;}
.y1d0{bottom:277.511700px;}
.y11{bottom:277.571250px;}
.y23e{bottom:278.767200px;}
.y1fd{bottom:281.764200px;}
.yb7{bottom:283.140540px;}
.y44{bottom:283.926000px;}
.y7b{bottom:291.120000px;}
.y251{bottom:292.758000px;}
.y1cf{bottom:293.266200px;}
.y11e{bottom:293.419350px;}
.y124{bottom:293.432850px;}
.y23d{bottom:294.521700px;}
.y89{bottom:294.622950px;}
.y163{bottom:296.122950px;}
.y10{bottom:297.065250px;}
.y196{bottom:298.165650px;}
.y1fc{bottom:301.771200px;}
.y43{bottom:303.426000px;}
.y1ce{bottom:309.020700px;}
.yb8{bottom:309.775500px;}
.y11d{bottom:309.916350px;}
.y123{bottom:309.929850px;}
.y7a{bottom:310.620000px;}
.y250{bottom:310.753500px;}
.y195{bottom:313.920150px;}
.y88{bottom:314.122950px;}
.y23c{bottom:314.528700px;}
.y162{bottom:315.622950px;}
.yf{bottom:316.559250px;}
.y1fb{bottom:317.525700px;}
.y42{bottom:322.926000px;}
.yf1{bottom:326.088600px;}
.y11c{bottom:326.422350px;}
.y122{bottom:326.426850px;}
.y24f{bottom:328.749000px;}
.y1cd{bottom:329.027700px;}
.y79{bottom:330.120000px;}
.y23b{bottom:330.283200px;}
.y1fa{bottom:333.280200px;}
.y87{bottom:333.622950px;}
.y161{bottom:335.122950px;}
.ye{bottom:336.053250px;}
.yb9{bottom:336.410460px;}
.y41{bottom:342.426000px;}
.y194{bottom:342.426150px;}
.y11b{bottom:342.919350px;}
.y121{bottom:342.923850px;}
.y1cc{bottom:344.782200px;}
.yf0{bottom:345.581550px;}
.y23a{bottom:346.037700px;}
.y24e{bottom:346.744500px;}
.y78{bottom:349.620000px;}
.y86{bottom:353.122950px;}
.y1f9{bottom:353.287200px;}
.y160{bottom:354.622950px;}
.yd{bottom:355.547250px;}
.y11a{bottom:359.416350px;}
.y120{bottom:359.420850px;}
.y218{bottom:360.536700px;}
.y40{bottom:361.926000px;}
.yba{bottom:363.045420px;}
.y24d{bottom:364.740000px;}
.y1cb{bottom:364.789200px;}
.y239{bottom:366.044700px;}
.y1f8{bottom:369.041700px;}
.y77{bottom:369.120000px;}
.yef{bottom:372.527550px;}
.y15f{bottom:374.122950px;}
.y11f{bottom:375.917850px;}
.y119{bottom:375.927750px;}
.y1ca{bottom:380.543700px;}
.y3f{bottom:381.426000px;}
.y193{bottom:381.426150px;}
.y238{bottom:381.799200px;}
.y24c{bottom:382.735500px;}
.y1f7{bottom:384.796200px;}
.y76{bottom:388.620000px;}
.yee{bottom:389.024550px;}
.ybb{bottom:389.680380px;}
.y15e{bottom:393.622950px;}
.y237{bottom:397.553700px;}
.y1c9{bottom:400.550700px;}
.y3e{bottom:400.926000px;}
.y192{bottom:400.926150px;}
.y118{bottom:402.077250px;}
.y1f6{bottom:404.803200px;}
.y75{bottom:408.120000px;}
.y15d{bottom:413.122950px;}
.y236{bottom:413.308200px;}
.yec{bottom:415.174050px;}
.yeb{bottom:415.180050px;}
.y85{bottom:415.867950px;}
.y217{bottom:416.305200px;}
.ybc{bottom:416.315340px;}
.y117{bottom:418.574250px;}
.y3d{bottom:420.426000px;}
.y191{bottom:420.426150px;}
.y1c8{bottom:420.557700px;}
.y74{bottom:427.620000px;}
.yc1{bottom:429.666300px;}
.yed{bottom:431.671050px;}
.yea{bottom:431.677050px;}
.y15c{bottom:432.622950px;}
.y235{bottom:433.315200px;}
.y116{bottom:435.071250px;}
.y1c7{bottom:436.312200px;}
.y3c{bottom:439.926000px;}
.y190{bottom:439.926150px;}
.y1f5{bottom:440.564700px;}
.y24b{bottom:440.739450px;}
.ybd{bottom:443.319660px;}
.y73{bottom:447.120000px;}
.y234{bottom:449.069700px;}
.y115{bottom:451.568250px;}
.y216{bottom:452.066700px;}
.y15b{bottom:452.122950px;}
.y1c6{bottom:456.319200px;}
.ye9{bottom:457.826550px;}
.y3b{bottom:459.426000px;}
.y18f{bottom:459.426150px;}
.y233{bottom:464.824200px;}
.y72{bottom:466.620000px;}
.y215{bottom:467.821200px;}
.y114{bottom:468.065250px;}
.ybe{bottom:469.954620px;}
.y15a{bottom:471.622950px;}
.y1c5{bottom:472.073700px;}
.ye8{bottom:474.323550px;}
.y1f4{bottom:476.326200px;}
.y3a{bottom:478.926000px;}
.y18e{bottom:478.926150px;}
.y111{bottom:484.562250px;}
.y110{bottom:484.581300px;}
.y232{bottom:484.831200px;}
.y24a{bottom:485.993400px;}
.y71{bottom:486.120000px;}
.y214{bottom:487.828200px;}
.y1c4{bottom:492.080700px;}
.y39{bottom:498.426000px;}
.y18d{bottom:498.426150px;}
.ye7{bottom:500.473050px;}
.y231{bottom:500.585700px;}
.y113{bottom:501.059250px;}
.y10f{bottom:501.078300px;}
.y213{bottom:503.582700px;}
.y70{bottom:505.620000px;}
.y1c3{bottom:507.835200px;}
.y159{bottom:510.622950px;}
.y230{bottom:516.340200px;}
.ye6{bottom:516.970050px;}
.y112{bottom:517.556250px;}
.y10e{bottom:517.575300px;}
.y18c{bottom:517.926150px;}
.yab{bottom:522.302550px;}
.y212{bottom:523.589700px;}
.y6f{bottom:525.120000px;}
.y1c2{bottom:527.842200px;}
.y158{bottom:530.122950px;}
.y22f{bottom:536.347200px;}
.y38{bottom:537.426000px;}
.y18b{bottom:537.426150px;}
.y211{bottom:539.344200px;}
.yaa{bottom:541.802550px;}
.ye5{bottom:543.119550px;}
.y1c1{bottom:543.596700px;}
.y10d{bottom:543.724800px;}
.y6e{bottom:544.620000px;}
.y157{bottom:549.622950px;}
.y22e{bottom:552.101700px;}
.y18a{bottom:556.926150px;}
.y1f3{bottom:559.351200px;}
.ye4{bottom:559.616550px;}
.y106{bottom:560.208300px;}
.y10c{bottom:560.221800px;}
.ya9{bottom:561.302550px;}
.y1c0{bottom:563.603700px;}
.y6d{bottom:564.120000px;}
.y22d{bottom:567.856200px;}
.y156{bottom:569.122950px;}
.yfc{bottom:573.677400px;}
.y1f2{bottom:575.105700px;}
.ye3{bottom:576.113550px;}
.y189{bottom:576.426150px;}
.y105{bottom:576.717300px;}
.y10b{bottom:576.718800px;}
.y1bf{bottom:579.358200px;}
.ya8{bottom:580.802550px;}
.y6c{bottom:583.620000px;}
.y22c{bottom:587.863200px;}
.y210{bottom:590.860200px;}
.y104{bottom:593.214300px;}
.y10a{bottom:593.215800px;}
.y1f1{bottom:595.112700px;}
.y37{bottom:595.926000px;}
.y188{bottom:595.926150px;}
.yfb{bottom:597.429300px;}
.y1be{bottom:599.365200px;}
.ye2{bottom:602.263050px;}
.y6b{bottom:603.120000px;}
.y22b{bottom:603.617700px;}
.y103{bottom:609.711300px;}
.y109{bottom:609.712800px;}
.y1f0{bottom:610.867200px;}
.y1bd{bottom:615.119700px;}
.y36{bottom:615.426000px;}
.y187{bottom:615.426150px;}
.ye1{bottom:618.760050px;}
.y22a{bottom:619.372200px;}
.ya7{bottom:619.802550px;}
.y6a{bottom:622.620000px;}
.y102{bottom:626.208300px;}
.y108{bottom:626.209800px;}
.y101{bottom:626.211300px;}
.y1ef{bottom:626.621700px;}
.y1bc{bottom:630.874200px;}
.y155{bottom:631.867950px;}
.y153{bottom:632.127300px;}
.y35{bottom:634.926000px;}
.y186{bottom:634.926150px;}
.ye0{bottom:635.257050px;}
.y229{bottom:639.379200px;}
.y69{bottom:642.120000px;}
.y20f{bottom:642.376200px;}
.y107{bottom:642.706800px;}
.y100{bottom:642.708300px;}
.y1ee{bottom:646.628700px;}
.y1bb{bottom:650.881200px;}
.y34{bottom:654.426000px;}
.y185{bottom:654.426150px;}
.y228{bottom:655.133700px;}
.ydf{bottom:661.406550px;}
.y68{bottom:661.620000px;}
.y1ed{bottom:662.383200px;}
.y1ba{bottom:666.635700px;}
.yff{bottom:668.854350px;}
.y227{bottom:670.888200px;}
.y152{bottom:671.127300px;}
.y33{bottom:673.926000px;}
.y184{bottom:673.926150px;}
.yde{bottom:677.903550px;}
.y1ec{bottom:678.137700px;}
.ya6{bottom:678.302550px;}
.y67{bottom:681.120000px;}
.y1b9{bottom:686.642700px;}
.y226{bottom:690.895200px;}
.y32{bottom:693.426000px;}
.y183{bottom:693.426150px;}
.ydd{bottom:694.400550px;}
.ya5{bottom:697.802550px;}
.yfe{bottom:697.867950px;}
.y1eb{bottom:698.144700px;}
.y66{bottom:700.620000px;}
.y151{bottom:701.078700px;}
.y1b8{bottom:702.397200px;}
.y225{bottom:706.649700px;}
.y31{bottom:712.926000px;}
.y182{bottom:712.926150px;}
.y1ea{bottom:713.899200px;}
.ya4{bottom:717.302550px;}
.y150{bottom:717.575700px;}
.y1b7{bottom:718.151700px;}
.y65{bottom:720.120000px;}
.ydb{bottom:720.550050px;}
.yda{bottom:720.553050px;}
.y224{bottom:722.404200px;}
.y1e9{bottom:729.653700px;}
.y30{bottom:732.426000px;}
.y181{bottom:732.426150px;}
.y20e{bottom:733.906200px;}
.y14f{bottom:734.072700px;}
.ya3{bottom:736.802550px;}
.yd8{bottom:737.050050px;}
.y1b6{bottom:738.158700px;}
.y64{bottom:739.620000px;}
.y223{bottom:742.411200px;}
.y1e8{bottom:745.408200px;}
.y20d{bottom:749.660700px;}
.y14e{bottom:750.569700px;}
.y2f{bottom:751.926000px;}
.y180{bottom:751.926150px;}
.ya{bottom:753.330600px;}
.ydc{bottom:753.544050px;}
.yd7{bottom:753.546600px;}
.yd9{bottom:753.547050px;}
.y1b5{bottom:753.913200px;}
.ya2{bottom:756.302550px;}
.y222{bottom:758.165700px;}
.y63{bottom:759.120000px;}
.y1e7{bottom:765.415200px;}
.y14d{bottom:767.066700px;}
.y1b4{bottom:769.667700px;}
.y9{bottom:771.326100px;}
.y2e{bottom:771.426000px;}
.y17f{bottom:771.426150px;}
.y221{bottom:773.920200px;}
.ya1{bottom:775.802550px;}
.y62{bottom:778.620000px;}
.yd4{bottom:779.696100px;}
.y1e6{bottom:781.169700px;}
.y14b{bottom:783.566700px;}
.y20c{bottom:785.422200px;}
.y8{bottom:789.321600px;}
.y1b3{bottom:789.674700px;}
.y2d{bottom:790.926000px;}
.y17e{bottom:790.926150px;}
.ya0{bottom:795.302550px;}
.yd6{bottom:796.193100px;}
.yd3{bottom:796.198050px;}
.y61{bottom:798.120000px;}
.y14c{bottom:800.063700px;}
.y14a{bottom:800.064750px;}
.y1e5{bottom:801.176700px;}
.y1b2{bottom:805.429200px;}
.y220{bottom:809.681700px;}
.y2c{bottom:810.426000px;}
.y17d{bottom:810.426150px;}
.yd5{bottom:812.690100px;}
.yd2{bottom:812.695050px;}
.y1e4{bottom:816.931200px;}
.y60{bottom:817.620000px;}
.y20b{bottom:821.183700px;}
.y1b1{bottom:825.436200px;}
.y149{bottom:826.214250px;}
.y2b{bottom:829.926000px;}
.y17c{bottom:829.926150px;}
.y9f{bottom:834.302550px;}
.y1e3{bottom:836.938200px;}
.y5f{bottom:837.120000px;}
.yd1{bottom:838.844550px;}
.y1b0{bottom:841.190700px;}
.y148{bottom:842.711250px;}
.y21f{bottom:845.443200px;}
.y2a{bottom:849.426000px;}
.y17b{bottom:849.426150px;}
.y1e2{bottom:852.692700px;}
.y7{bottom:853.958550px;}
.yd0{bottom:855.341550px;}
.y5e{bottom:856.620000px;}
.y1af{bottom:856.945200px;}
.y147{bottom:859.208250px;}
.y21e{bottom:861.197700px;}
.y9e{bottom:864.231450px;}
.y1e1{bottom:868.447200px;}
.y29{bottom:868.926000px;}
.y17a{bottom:868.926150px;}
.y20a{bottom:872.699700px;}
.y146{bottom:875.705250px;}
.y5d{bottom:876.120000px;}
.y6{bottom:876.210450px;}
.y1ae{bottom:876.952200px;}
.yce{bottom:881.491050px;}
.y28{bottom:888.426000px;}
.y179{bottom:888.426150px;}
.y1e0{bottom:888.454200px;}
.y9d{bottom:890.380950px;}
.y1ad{bottom:892.706700px;}
.y5c{bottom:895.620000px;}
.ycc{bottom:897.987600px;}
.ycd{bottom:897.988050px;}
.y5{bottom:898.455450px;}
.y143{bottom:898.587750px;}
.y27{bottom:907.926000px;}
.y178{bottom:907.926150px;}
.y1ac{bottom:908.461200px;}
.y21d{bottom:912.713700px;}
.ycb{bottom:914.484600px;}
.ycf{bottom:914.485050px;}
.y145{bottom:915.084750px;}
.y142{bottom:915.087750px;}
.y5b{bottom:915.120000px;}
.y9c{bottom:916.530450px;}
.y1df{bottom:924.215700px;}
.y26{bottom:927.426000px;}
.y177{bottom:927.426150px;}
.y1ab{bottom:928.468200px;}
.y144{bottom:931.581750px;}
.y141{bottom:931.590150px;}
.y5a{bottom:934.620000px;}
.yc9{bottom:940.634100px;}
.y9a{bottom:942.679950px;}
.y1aa{bottom:944.222700px;}
.y25{bottom:946.926000px;}
.y176{bottom:946.926150px;}
.y99{bottom:950.913900px;}
.y59{bottom:954.120000px;}
.yc8{bottom:957.137100px;}
.y140{bottom:957.739650px;}
.y9b{bottom:959.176950px;}
.y1de{bottom:959.977200px;}
.y1a9{bottom:964.229700px;}
.y24{bottom:966.426000px;}
.y175{bottom:966.426150px;}
.y58{bottom:973.620000px;}
.yca{bottom:973.628100px;}
.yc7{bottom:973.634100px;}
.y13e{bottom:974.236650px;}
.y1dd{bottom:975.731700px;}
.y1a8{bottom:979.984200px;}
.y98{bottom:985.311900px;}
.y23{bottom:985.926000px;}
.y174{bottom:985.926150px;}
.y13d{bottom:990.733650px;}
.y57{bottom:993.120000px;}
.y1a7{bottom:995.738700px;}
.y4{bottom:996.549600px;}
.yc6{bottom:999.779100px;}
.y22{bottom:1005.426000px;}
.y173{bottom:1005.426150px;}
.y13f{bottom:1007.230650px;}
.y13c{bottom:1007.242200px;}
.yc5{bottom:1007.279100px;}
.y97{bottom:1011.461400px;}
.y1dc{bottom:1011.493200px;}
.y56{bottom:1012.620000px;}
.y1a6{bottom:1015.745700px;}
.yc3{bottom:1019.567100px;}
.y21{bottom:1024.926000px;}
.y172{bottom:1024.926150px;}
.y209{bottom:1027.247700px;}
.y1a5{bottom:1031.500200px;}
.y55{bottom:1032.120000px;}
.y3{bottom:1032.545100px;}
.y13b{bottom:1033.391700px;}
.y96{bottom:1037.610900px;}
.yc4{bottom:1039.355100px;}
.y20{bottom:1044.426000px;}
.y171{bottom:1044.426150px;}
.y1a4{bottom:1047.254700px;}
.y13a{bottom:1049.888700px;}
.y21c{bottom:1051.507200px;}
.y54{bottom:1051.620000px;}
.y1db{bottom:1063.009200px;}
.y95{bottom:1063.760400px;}
.y1f{bottom:1063.926000px;}
.y170{bottom:1063.926150px;}
.y139{bottom:1066.385700px;}
.y1a3{bottom:1067.261700px;}
.yc2{bottom:1068.367950px;}
.y53{bottom:1071.120000px;}
.y138{bottom:1082.882700px;}
.y1a2{bottom:1083.016200px;}
.y1e{bottom:1083.426000px;}
.y16f{bottom:1083.426150px;}
.y94{bottom:1089.909900px;}
.y52{bottom:1090.620000px;}
.y1a1{bottom:1098.770700px;}
.y136{bottom:1099.379700px;}
.y1d{bottom:1102.926000px;}
.y16e{bottom:1102.926150px;}
.y51{bottom:1110.120000px;}
.yb{bottom:1114.015800px;}
.y1da{bottom:1114.525200px;}
.y137{bottom:1115.876700px;}
.y135{bottom:1115.879700px;}
.y93{bottom:1116.055950px;}
.y1a0{bottom:1118.777700px;}
.y50{bottom:1129.620000px;}
.y19f{bottom:1134.532200px;}
.y1c{bottom:1141.926000px;}
.y16d{bottom:1141.926150px;}
.y134{bottom:1142.025750px;}
.y92{bottom:1145.069700px;}
.y4f{bottom:1149.120000px;}
.y19e{bottom:1150.286700px;}
.y19{bottom:1194.803100px;}
.y1b{bottom:1194.803250px;}
.y2{bottom:1200.132600px;}
.y1{bottom:1202.243400px;}
.h9{height:28.564453px;}
.h8{height:33.325195px;}
.h1e{height:35.991211px;}
.hd{height:37.054688px;}
.h1c{height:38.021484px;}
.h1b{height:38.311523px;}
.h13{height:39.463594px;}
.h18{height:41.953125px;}
.hb{height:42.568359px;}
.h5{height:42.846680px;}
.h17{height:42.854480px;}
.h16{height:42.858680px;}
.h15{height:42.860480px;}
.h12{height:44.149219px;}
.hf{height:45.227051px;}
.h11{height:46.445625px;}
.h1a{height:46.986328px;}
.h3{height:47.607422px;}
.h7{height:47.988281px;}
.h1d{height:48.594727px;}
.h19{height:50.950195px;}
.hc{height:52.207031px;}
.h2{height:55.932759px;}
.h1f{height:59.393555px;}
.h6{height:64.792969px;}
.h14{height:67.054688px;}
.he{height:75.910880px;}
.ha{height:85.693359px;}
.h4{height:90.454102px;}
.h10{height:323.149500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:784.074000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x11{left:-2.225400px;}
.x0{left:0.000000px;}
.x4{left:85.054050px;}
.xc{left:91.226850px;}
.x13{left:92.529780px;}
.x1{left:96.119550px;}
.x3{left:97.370100px;}
.x12{left:99.014100px;}
.xa{left:110.551200px;}
.x3b{left:127.380525px;}
.x36{left:132.920925px;}
.x14{left:133.934100px;}
.xb{left:136.066200px;}
.x15{left:153.373380px;}
.x16{left:172.456980px;}
.x40{left:182.909850px;}
.x41{left:189.147450px;}
.x17{left:191.896260px;}
.x18{left:211.335540px;}
.x5{left:213.868050px;}
.x3c{left:216.475800px;}
.x6{left:222.184800px;}
.x19{left:230.774820px;}
.x37{left:235.597875px;}
.x1a{left:250.214100px;}
.x2{left:257.244000px;}
.x1b{left:269.297700px;}
.x1c{left:288.736980px;}
.x1d{left:308.176260px;}
.x42{left:323.632500px;}
.x1e{left:327.615540px;}
.x43{left:329.869950px;}
.x1f{left:346.699140px;}
.x20{left:366.138420px;}
.x21{left:385.577700px;}
.xd{left:395.178750px;}
.x7{left:398.705550px;}
.x22{left:405.016980px;}
.x8{left:407.022150px;}
.x23{left:424.456260px;}
.x3d{left:439.678650px;}
.x24{left:443.539860px;}
.x3e{left:452.439525px;}
.x25{left:462.979140px;}
.x38{left:469.461750px;}
.x26{left:482.418420px;}
.x27{left:501.857700px;}
.x28{left:521.296980px;}
.x29{left:540.380580px;}
.xe{left:543.602475px;}
.x2a{left:559.819860px;}
.x2b{left:579.259140px;}
.xf{left:589.772475px;}
.x2c{left:598.698420px;}
.x34{left:612.482850px;}
.x33{left:614.462850px;}
.x2d{left:617.782020px;}
.x39{left:620.658525px;}
.x3a{left:623.685225px;}
.x2e{left:637.221300px;}
.x10{left:650.454600px;}
.x2f{left:656.660580px;}
.x35{left:673.406850px;}
.x30{left:676.099860px;}
.x31{left:695.539140px;}
.x32{left:714.622740px;}
.x3f{left:824.791200px;}
.x9{left:837.684750px;}
@media print{
.v1{vertical-align:-26.453867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.617067pt;}
.v4{vertical-align:26.666667pt;}
.v3{vertical-align:29.328000pt;}
.ls9{letter-spacing:-1.459200pt;}
.lsa{letter-spacing:-1.118720pt;}
.lsc{letter-spacing:-0.535040pt;}
.ls8{letter-spacing:-0.529920pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.048640pt;}
.ls7{letter-spacing:0.145920pt;}
.ls2{letter-spacing:0.186667pt;}
.ls5{letter-spacing:0.453333pt;}
.ls4{letter-spacing:0.508267pt;}
.ls3{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.600000pt;}
.ls0{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.248000pt;}
.lsd{letter-spacing:1.252800pt;}
.ls1{letter-spacing:1.333333pt;}
.ls19{letter-spacing:1.406400pt;}
.ls17{letter-spacing:1.684800pt;}
.ls10{letter-spacing:3.264000pt;}
.lsf{letter-spacing:3.278400pt;}
.ls11{letter-spacing:4.190400pt;}
.ls12{letter-spacing:4.224000pt;}
.ls13{letter-spacing:5.644800pt;}
.ls14{letter-spacing:5.678400pt;}
.ls18{letter-spacing:15.696000pt;}
.ws3c{word-spacing:-48.785920pt;}
.ws40{word-spacing:-48.104960pt;}
.ws3e{word-spacing:-47.521280pt;}
.ws3d{word-spacing:-47.180800pt;}
.ws2{word-spacing:-15.936000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws54{word-spacing:-11.733333pt;}
.ws6b{word-spacing:-10.560000pt;}
.ws47{word-spacing:-10.176000pt;}
.ws8a{word-spacing:-10.080000pt;}
.ws82{word-spacing:-4.080000pt;}
.ws9e{word-spacing:-3.888000pt;}
.ws5d{word-spacing:-2.826667pt;}
.ws33{word-spacing:-2.720000pt;}
.ws1e{word-spacing:-2.346667pt;}
.wsd{word-spacing:-2.293333pt;}
.ws31{word-spacing:-2.186667pt;}
.ws79{word-spacing:-2.080000pt;}
.ws9b{word-spacing:-2.064000pt;}
.wse{word-spacing:-2.026667pt;}
.ws90{word-spacing:-2.016000pt;}
.ws5e{word-spacing:-1.973333pt;}
.ws5b{word-spacing:-1.866667pt;}
.ws7{word-spacing:-1.776000pt;}
.ws27{word-spacing:-1.760000pt;}
.ws36{word-spacing:-1.706667pt;}
.ws15{word-spacing:-1.546667pt;}
.ws8{word-spacing:-1.536000pt;}
.ws93{word-spacing:-1.488000pt;}
.ws7d{word-spacing:-1.440000pt;}
.ws4{word-spacing:-1.333333pt;}
.ws18{word-spacing:-1.280000pt;}
.ws63{word-spacing:-1.226667pt;}
.wsf{word-spacing:-1.120000pt;}
.ws65{word-spacing:-1.066667pt;}
.ws86{word-spacing:-1.056000pt;}
.ws62{word-spacing:-1.013333pt;}
.ws89{word-spacing:-1.008000pt;}
.ws2b{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.906667pt;}
.ws1a{word-spacing:-0.746667pt;}
.ws55{word-spacing:-0.640000pt;}
.ws85{word-spacing:-0.624000pt;}
.ws1d{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.533333pt;}
.ws5f{word-spacing:-0.426667pt;}
.ws57{word-spacing:-0.373333pt;}
.ws8c{word-spacing:-0.288000pt;}
.ws80{word-spacing:-0.240000pt;}
.ws5{word-spacing:-0.186667pt;}
.ws67{word-spacing:-0.160000pt;}
.ws44{word-spacing:-0.145920pt;}
.ws6c{word-spacing:-0.106667pt;}
.ws9a{word-spacing:-0.096000pt;}
.ws99{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.213333pt;}
.wsa3{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.266667pt;}
.ws92{word-spacing:0.288000pt;}
.ws98{word-spacing:0.336000pt;}
.ws29{word-spacing:0.426667pt;}
.ws3b{word-spacing:0.480000pt;}
.ws9d{word-spacing:0.528000pt;}
.ws43{word-spacing:0.529920pt;}
.ws24{word-spacing:0.533333pt;}
.ws17{word-spacing:0.640000pt;}
.ws42{word-spacing:0.693333pt;}
.wsb{word-spacing:0.720000pt;}
.ws35{word-spacing:0.746667pt;}
.ws22{word-spacing:0.800000pt;}
.ws4f{word-spacing:0.853333pt;}
.ws25{word-spacing:1.013333pt;}
.ws70{word-spacing:1.066667pt;}
.ws74{word-spacing:1.120000pt;}
.ws7b{word-spacing:1.200000pt;}
.ws53{word-spacing:1.226667pt;}
.ws52{word-spacing:1.280000pt;}
.ws96{word-spacing:1.296000pt;}
.ws64{word-spacing:1.333333pt;}
.wsa2{word-spacing:1.344000pt;}
.ws3a{word-spacing:1.386667pt;}
.wsc{word-spacing:1.392000pt;}
.ws1f{word-spacing:1.546667pt;}
.ws88{word-spacing:1.584000pt;}
.ws39{word-spacing:1.600000pt;}
.ws9f{word-spacing:1.632000pt;}
.ws50{word-spacing:1.706667pt;}
.ws69{word-spacing:1.760000pt;}
.ws6a{word-spacing:1.813333pt;}
.ws81{word-spacing:1.824000pt;}
.ws7f{word-spacing:1.968000pt;}
.ws38{word-spacing:1.973333pt;}
.ws16{word-spacing:2.080000pt;}
.ws32{word-spacing:2.133333pt;}
.ws30{word-spacing:2.186667pt;}
.ws94{word-spacing:2.208000pt;}
.ws9{word-spacing:2.304000pt;}
.ws61{word-spacing:2.346667pt;}
.ws6d{word-spacing:2.400000pt;}
.ws21{word-spacing:2.506667pt;}
.ws66{word-spacing:2.613333pt;}
.ws77{word-spacing:2.826667pt;}
.ws13{word-spacing:3.040000pt;}
.ws97{word-spacing:3.168000pt;}
.ws5a{word-spacing:3.253333pt;}
.ws7e{word-spacing:3.264000pt;}
.ws28{word-spacing:3.360000pt;}
.ws75{word-spacing:3.413333pt;}
.ws83{word-spacing:3.504000pt;}
.ws2e{word-spacing:3.680000pt;}
.ws1c{word-spacing:3.733333pt;}
.ws51{word-spacing:3.946667pt;}
.ws8b{word-spacing:3.984000pt;}
.ws60{word-spacing:4.106667pt;}
.ws8f{word-spacing:4.128000pt;}
.ws8d{word-spacing:4.176000pt;}
.ws68{word-spacing:4.373333pt;}
.ws7a{word-spacing:4.416000pt;}
.ws59{word-spacing:4.533333pt;}
.ws5c{word-spacing:4.586667pt;}
.ws56{word-spacing:4.693333pt;}
.ws20{word-spacing:4.800000pt;}
.wsa4{word-spacing:4.848000pt;}
.ws76{word-spacing:4.853333pt;}
.ws37{word-spacing:4.960000pt;}
.ws2d{word-spacing:5.066667pt;}
.ws72{word-spacing:5.120000pt;}
.ws87{word-spacing:5.136000pt;}
.wsa{word-spacing:5.280000pt;}
.ws1b{word-spacing:5.386667pt;}
.ws11{word-spacing:5.440000pt;}
.ws91{word-spacing:5.472000pt;}
.ws41{word-spacing:5.546667pt;}
.ws8e{word-spacing:5.616000pt;}
.ws7c{word-spacing:6.048000pt;}
.ws12{word-spacing:6.240000pt;}
.ws26{word-spacing:6.826667pt;}
.ws10{word-spacing:6.933333pt;}
.ws9c{word-spacing:7.056000pt;}
.ws6e{word-spacing:7.413333pt;}
.ws84{word-spacing:7.632000pt;}
.ws71{word-spacing:7.733333pt;}
.ws34{word-spacing:8.106667pt;}
.ws23{word-spacing:8.160000pt;}
.ws95{word-spacing:8.304000pt;}
.wsa1{word-spacing:8.784000pt;}
.ws19{word-spacing:9.546667pt;}
.ws2a{word-spacing:9.973333pt;}
.ws78{word-spacing:10.026667pt;}
.ws2c{word-spacing:10.133333pt;}
.ws14{word-spacing:12.693333pt;}
.wsa0{word-spacing:15.696000pt;}
.ws58{word-spacing:17.226667pt;}
.ws45{word-spacing:92.373333pt;}
.ws3f{word-spacing:109.907712pt;}
.ws4b{word-spacing:112.944000pt;}
.ws49{word-spacing:153.648000pt;}
.ws46{word-spacing:153.840000pt;}
.ws48{word-spacing:153.984000pt;}
.ws4c{word-spacing:165.312000pt;}
.ws4e{word-spacing:176.448000pt;}
.ws4a{word-spacing:176.592000pt;}
.ws4d{word-spacing:193.344000pt;}
.ws0{word-spacing:903.294400pt;}
._11{margin-left:-21.876267pt;}
._4{margin-left:-11.672000pt;}
._3{margin-left:-6.078400pt;}
._a{margin-left:-5.051200pt;}
._b{margin-left:-3.878933pt;}
._5{margin-left:-2.513600pt;}
._2{margin-left:-1.530133pt;}
._1{width:1.386667pt;}
._8{width:2.616000pt;}
._7{width:3.609600pt;}
._9{width:5.020800pt;}
._10{width:5.912533pt;}
._c{width:6.811200pt;}
._d{width:7.945600pt;}
._e{width:9.600000pt;}
._f{width:10.533333pt;}
._32{width:11.788800pt;}
._31{width:15.115200pt;}
._2e{width:23.472000pt;}
._12{width:26.773333pt;}
._33{width:28.205333pt;}
._13{width:38.506667pt;}
._29{width:55.360000pt;}
._2a{width:71.466667pt;}
._17{width:79.440000pt;}
._30{width:83.568000pt;}
._21{width:91.178667pt;}
._2b{width:98.560000pt;}
._27{width:100.176000pt;}
._2d{width:102.384000pt;}
._25{width:112.944000pt;}
._24{width:123.120000pt;}
._2f{width:152.352000pt;}
._22{width:234.368000pt;}
._26{width:333.408000pt;}
._18{width:440.784000pt;}
._1d{width:468.432000pt;}
._1a{width:481.157333pt;}
._28{width:483.786133pt;}
._2c{width:484.730133pt;}
._1f{width:497.669333pt;}
._15{width:502.784000pt;}
._19{width:605.088000pt;}
._1b{width:627.504000pt;}
._23{width:649.514667pt;}
._1e{width:660.480000pt;}
._16{width:665.328000pt;}
._20{width:733.104000pt;}
._1c{width:767.664000pt;}
._14{width:982.912000pt;}
._6{width:1143.221333pt;}
._0{width:2128.356267pt;}
.fs0{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:48.640000pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fsa{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:101.333333pt;}
.yb3{bottom:-113.675573pt;}
.yb2{bottom:-80.393653pt;}
.yb1{bottom:-47.111733pt;}
.yb0{bottom:-33.031733pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:39.353867pt;}
.y1a{bottom:40.751067pt;}
.y249{bottom:78.629067pt;}
.y4e{bottom:79.045333pt;}
.y208{bottom:85.073067pt;}
.y16c{bottom:85.440000pt;}
.yae{bottom:86.043200pt;}
.yfd{bottom:88.822533pt;}
.y16b{bottom:89.887067pt;}
.y18{bottom:90.766000pt;}
.y248{bottom:92.633067pt;}
.y4d{bottom:96.378667pt;}
.y133{bottom:97.007333pt;}
.y207{bottom:99.077067pt;}
.yfa{bottom:99.189867pt;}
.y21b{bottom:101.741067pt;}
.y84{bottom:102.773333pt;}
.y19d{bottom:104.127333pt;}
.y1d9{bottom:105.521067pt;}
.y247{bottom:106.637067pt;}
.yad{bottom:107.156000pt;}
.y16a{bottom:107.220400pt;}
.y154{bottom:108.778000pt;}
.y132{bottom:111.671333pt;}
.y4c{bottom:113.712000pt;}
.y259{bottom:116.253333pt;}
.yf9{bottom:116.523200pt;}
.y206{bottom:116.861067pt;}
.y19c{bottom:118.131333pt;}
.y1d8{bottom:119.525067pt;}
.y83{bottom:120.106667pt;}
.yac{bottom:123.156000pt;}
.y91{bottom:123.220400pt;}
.y246{bottom:124.421067pt;}
.y169{bottom:124.553733pt;}
.y131{bottom:126.335333pt;}
.y205{bottom:130.865067pt;}
.y4b{bottom:131.045333pt;}
.y19b{bottom:132.135333pt;}
.y21a{bottom:133.529067pt;}
.yf8{bottom:133.856533pt;}
.y1d7{bottom:137.309067pt;}
.y82{bottom:137.440000pt;}
.y245{bottom:138.425067pt;}
.y90{bottom:140.553733pt;}
.y12f{bottom:140.999333pt;}
.y12e{bottom:141.010933pt;}
.y168{bottom:141.887067pt;}
.y17{bottom:142.762000pt;}
.y204{bottom:144.869067pt;}
.yaf{bottom:145.837333pt;}
.y258{bottom:148.257333pt;}
.y4a{bottom:148.378667pt;}
.y19a{bottom:149.919333pt;}
.yf7{bottom:151.189867pt;}
.y1d6{bottom:151.313067pt;}
.yc0{bottom:152.809440pt;}
.ybf{bottom:153.125600pt;}
.y81{bottom:154.773333pt;}
.y130{bottom:155.663333pt;}
.y12d{bottom:155.674933pt;}
.y244{bottom:156.209067pt;}
.y8f{bottom:157.887067pt;}
.y167{bottom:159.220400pt;}
.y16{bottom:160.090000pt;}
.y203{bottom:162.653067pt;}
.y199{bottom:163.923333pt;}
.y257{bottom:164.253333pt;}
.y1d5{bottom:165.317067pt;}
.y49{bottom:165.712000pt;}
.yf6{bottom:168.523200pt;}
.y243{bottom:170.213067pt;}
.y80{bottom:172.106667pt;}
.y8e{bottom:175.220400pt;}
.y166{bottom:176.553733pt;}
.y202{bottom:176.657067pt;}
.y15{bottom:177.418000pt;}
.y198{bottom:177.927333pt;}
.y129{bottom:178.906933pt;}
.y256{bottom:180.249333pt;}
.yb4{bottom:180.325600pt;}
.y48{bottom:183.045333pt;}
.y1d4{bottom:183.101067pt;}
.yf5{bottom:185.856533pt;}
.y242{bottom:187.997067pt;}
.y7f{bottom:189.440000pt;}
.y201{bottom:190.661067pt;}
.y8d{bottom:192.553733pt;}
.y12c{bottom:193.582933pt;}
.y128{bottom:193.593200pt;}
.y14{bottom:194.746000pt;}
.y255{bottom:196.245333pt;}
.y1d3{bottom:197.105067pt;}
.y47{bottom:200.378667pt;}
.y241{bottom:202.001067pt;}
.yf4{bottom:203.189867pt;}
.yb5{bottom:204.001120pt;}
.y200{bottom:204.665067pt;}
.y7e{bottom:206.773333pt;}
.y12b{bottom:208.246933pt;}
.y127{bottom:208.257200pt;}
.y8c{bottom:209.887067pt;}
.y165{bottom:211.220400pt;}
.y13{bottom:212.074000pt;}
.y254{bottom:212.241333pt;}
.y197{bottom:213.040133pt;}
.y1d2{bottom:214.889067pt;}
.y240{bottom:216.005067pt;}
.y46{bottom:217.712000pt;}
.yf3{bottom:220.523200pt;}
.y1ff{bottom:222.449067pt;}
.y12a{bottom:222.910933pt;}
.y126{bottom:222.921200pt;}
.y7d{bottom:224.106667pt;}
.y8b{bottom:227.220400pt;}
.yb6{bottom:228.004960pt;}
.y253{bottom:228.237333pt;}
.y1d1{bottom:228.893067pt;}
.y12{bottom:229.402000pt;}
.y23f{bottom:233.789067pt;}
.y45{bottom:235.045333pt;}
.y1fe{bottom:236.453067pt;}
.yf2{bottom:237.856533pt;}
.y7c{bottom:241.440000pt;}
.y219{bottom:242.897067pt;}
.y252{bottom:244.233333pt;}
.y8a{bottom:244.553733pt;}
.y164{bottom:245.887067pt;}
.y125{bottom:246.165200pt;}
.y1d0{bottom:246.677067pt;}
.y11{bottom:246.730000pt;}
.y23e{bottom:247.793067pt;}
.y1fd{bottom:250.457067pt;}
.yb7{bottom:251.680480pt;}
.y44{bottom:252.378667pt;}
.y7b{bottom:258.773333pt;}
.y251{bottom:260.229333pt;}
.y1cf{bottom:260.681067pt;}
.y11e{bottom:260.817200pt;}
.y124{bottom:260.829200pt;}
.y23d{bottom:261.797067pt;}
.y89{bottom:261.887067pt;}
.y163{bottom:263.220400pt;}
.y10{bottom:264.058000pt;}
.y196{bottom:265.036133pt;}
.y1fc{bottom:268.241067pt;}
.y43{bottom:269.712000pt;}
.y1ce{bottom:274.685067pt;}
.yb8{bottom:275.356000pt;}
.y11d{bottom:275.481200pt;}
.y123{bottom:275.493200pt;}
.y7a{bottom:276.106667pt;}
.y250{bottom:276.225333pt;}
.y195{bottom:279.040133pt;}
.y88{bottom:279.220400pt;}
.y23c{bottom:279.581067pt;}
.y162{bottom:280.553733pt;}
.yf{bottom:281.386000pt;}
.y1fb{bottom:282.245067pt;}
.y42{bottom:287.045333pt;}
.yf1{bottom:289.856533pt;}
.y11c{bottom:290.153200pt;}
.y122{bottom:290.157200pt;}
.y24f{bottom:292.221333pt;}
.y1cd{bottom:292.469067pt;}
.y79{bottom:293.440000pt;}
.y23b{bottom:293.585067pt;}
.y1fa{bottom:296.249067pt;}
.y87{bottom:296.553733pt;}
.y161{bottom:297.887067pt;}
.ye{bottom:298.714000pt;}
.yb9{bottom:299.031520pt;}
.y41{bottom:304.378667pt;}
.y194{bottom:304.378800pt;}
.y11b{bottom:304.817200pt;}
.y121{bottom:304.821200pt;}
.y1cc{bottom:306.473067pt;}
.yf0{bottom:307.183600pt;}
.y23a{bottom:307.589067pt;}
.y24e{bottom:308.217333pt;}
.y78{bottom:310.773333pt;}
.y86{bottom:313.887067pt;}
.y1f9{bottom:314.033067pt;}
.y160{bottom:315.220400pt;}
.yd{bottom:316.042000pt;}
.y11a{bottom:319.481200pt;}
.y120{bottom:319.485200pt;}
.y218{bottom:320.477067pt;}
.y40{bottom:321.712000pt;}
.yba{bottom:322.707040pt;}
.y24d{bottom:324.213333pt;}
.y1cb{bottom:324.257067pt;}
.y239{bottom:325.373067pt;}
.y1f8{bottom:328.037067pt;}
.y77{bottom:328.106667pt;}
.yef{bottom:331.135600pt;}
.y15f{bottom:332.553733pt;}
.y11f{bottom:334.149200pt;}
.y119{bottom:334.158000pt;}
.y1ca{bottom:338.261067pt;}
.y3f{bottom:339.045333pt;}
.y193{bottom:339.045467pt;}
.y238{bottom:339.377067pt;}
.y24c{bottom:340.209333pt;}
.y1f7{bottom:342.041067pt;}
.y76{bottom:345.440000pt;}
.yee{bottom:345.799600pt;}
.ybb{bottom:346.382560pt;}
.y15e{bottom:349.887067pt;}
.y237{bottom:353.381067pt;}
.y1c9{bottom:356.045067pt;}
.y3e{bottom:356.378667pt;}
.y192{bottom:356.378800pt;}
.y118{bottom:357.402000pt;}
.y1f6{bottom:359.825067pt;}
.y75{bottom:362.773333pt;}
.y15d{bottom:367.220400pt;}
.y236{bottom:367.385067pt;}
.yec{bottom:369.043600pt;}
.yeb{bottom:369.048933pt;}
.y85{bottom:369.660400pt;}
.y217{bottom:370.049067pt;}
.ybc{bottom:370.058080pt;}
.y117{bottom:372.066000pt;}
.y3d{bottom:373.712000pt;}
.y191{bottom:373.712133pt;}
.y1c8{bottom:373.829067pt;}
.y74{bottom:380.106667pt;}
.yc1{bottom:381.925600pt;}
.yed{bottom:383.707600pt;}
.yea{bottom:383.712933pt;}
.y15c{bottom:384.553733pt;}
.y235{bottom:385.169067pt;}
.y116{bottom:386.730000pt;}
.y1c7{bottom:387.833067pt;}
.y3c{bottom:391.045333pt;}
.y190{bottom:391.045467pt;}
.y1f5{bottom:391.613067pt;}
.y24b{bottom:391.768400pt;}
.ybd{bottom:394.061920pt;}
.y73{bottom:397.440000pt;}
.y234{bottom:399.173067pt;}
.y115{bottom:401.394000pt;}
.y216{bottom:401.837067pt;}
.y15b{bottom:401.887067pt;}
.y1c6{bottom:405.617067pt;}
.ye9{bottom:406.956933pt;}
.y3b{bottom:408.378667pt;}
.y18f{bottom:408.378800pt;}
.y233{bottom:413.177067pt;}
.y72{bottom:414.773333pt;}
.y215{bottom:415.841067pt;}
.y114{bottom:416.058000pt;}
.ybe{bottom:417.737440pt;}
.y15a{bottom:419.220400pt;}
.y1c5{bottom:419.621067pt;}
.ye8{bottom:421.620933pt;}
.y1f4{bottom:423.401067pt;}
.y3a{bottom:425.712000pt;}
.y18e{bottom:425.712133pt;}
.y111{bottom:430.722000pt;}
.y110{bottom:430.738933pt;}
.y232{bottom:430.961067pt;}
.y24a{bottom:431.994133pt;}
.y71{bottom:432.106667pt;}
.y214{bottom:433.625067pt;}
.y1c4{bottom:437.405067pt;}
.y39{bottom:443.045333pt;}
.y18d{bottom:443.045467pt;}
.ye7{bottom:444.864933pt;}
.y231{bottom:444.965067pt;}
.y113{bottom:445.386000pt;}
.y10f{bottom:445.402933pt;}
.y213{bottom:447.629067pt;}
.y70{bottom:449.440000pt;}
.y1c3{bottom:451.409067pt;}
.y159{bottom:453.887067pt;}
.y230{bottom:458.969067pt;}
.ye6{bottom:459.528933pt;}
.y112{bottom:460.050000pt;}
.y10e{bottom:460.066933pt;}
.y18c{bottom:460.378800pt;}
.yab{bottom:464.268933pt;}
.y212{bottom:465.413067pt;}
.y6f{bottom:466.773333pt;}
.y1c2{bottom:469.193067pt;}
.y158{bottom:471.220400pt;}
.y22f{bottom:476.753067pt;}
.y38{bottom:477.712000pt;}
.y18b{bottom:477.712133pt;}
.y211{bottom:479.417067pt;}
.yaa{bottom:481.602267pt;}
.ye5{bottom:482.772933pt;}
.y1c1{bottom:483.197067pt;}
.y10d{bottom:483.310933pt;}
.y6e{bottom:484.106667pt;}
.y157{bottom:488.553733pt;}
.y22e{bottom:490.757067pt;}
.y18a{bottom:495.045467pt;}
.y1f3{bottom:497.201067pt;}
.ye4{bottom:497.436933pt;}
.y106{bottom:497.962933pt;}
.y10c{bottom:497.974933pt;}
.ya9{bottom:498.935600pt;}
.y1c0{bottom:500.981067pt;}
.y6d{bottom:501.440000pt;}
.y22d{bottom:504.761067pt;}
.y156{bottom:505.887067pt;}
.yfc{bottom:509.935467pt;}
.y1f2{bottom:511.205067pt;}
.ye3{bottom:512.100933pt;}
.y189{bottom:512.378800pt;}
.y105{bottom:512.637600pt;}
.y10b{bottom:512.638933pt;}
.y1bf{bottom:514.985067pt;}
.ya8{bottom:516.268933pt;}
.y6c{bottom:518.773333pt;}
.y22c{bottom:522.545067pt;}
.y210{bottom:525.209067pt;}
.y104{bottom:527.301600pt;}
.y10a{bottom:527.302933pt;}
.y1f1{bottom:528.989067pt;}
.y37{bottom:529.712000pt;}
.y188{bottom:529.712133pt;}
.yfb{bottom:531.048267pt;}
.y1be{bottom:532.769067pt;}
.ye2{bottom:535.344933pt;}
.y6b{bottom:536.106667pt;}
.y22b{bottom:536.549067pt;}
.y103{bottom:541.965600pt;}
.y109{bottom:541.966933pt;}
.y1f0{bottom:542.993067pt;}
.y1bd{bottom:546.773067pt;}
.y36{bottom:547.045333pt;}
.y187{bottom:547.045467pt;}
.ye1{bottom:550.008933pt;}
.y22a{bottom:550.553067pt;}
.ya7{bottom:550.935600pt;}
.y6a{bottom:553.440000pt;}
.y102{bottom:556.629600pt;}
.y108{bottom:556.630933pt;}
.y101{bottom:556.632267pt;}
.y1ef{bottom:556.997067pt;}
.y1bc{bottom:560.777067pt;}
.y155{bottom:561.660400pt;}
.y153{bottom:561.890933pt;}
.y35{bottom:564.378667pt;}
.y186{bottom:564.378800pt;}
.ye0{bottom:564.672933pt;}
.y229{bottom:568.337067pt;}
.y69{bottom:570.773333pt;}
.y20f{bottom:571.001067pt;}
.y107{bottom:571.294933pt;}
.y100{bottom:571.296267pt;}
.y1ee{bottom:574.781067pt;}
.y1bb{bottom:578.561067pt;}
.y34{bottom:581.712000pt;}
.y185{bottom:581.712133pt;}
.y228{bottom:582.341067pt;}
.ydf{bottom:587.916933pt;}
.y68{bottom:588.106667pt;}
.y1ed{bottom:588.785067pt;}
.y1ba{bottom:592.565067pt;}
.yff{bottom:594.537200pt;}
.y227{bottom:596.345067pt;}
.y152{bottom:596.557600pt;}
.y33{bottom:599.045333pt;}
.y184{bottom:599.045467pt;}
.yde{bottom:602.580933pt;}
.y1ec{bottom:602.789067pt;}
.ya6{bottom:602.935600pt;}
.y67{bottom:605.440000pt;}
.y1b9{bottom:610.349067pt;}
.y226{bottom:614.129067pt;}
.y32{bottom:616.378667pt;}
.y183{bottom:616.378800pt;}
.ydd{bottom:617.244933pt;}
.ya5{bottom:620.268933pt;}
.yfe{bottom:620.327067pt;}
.y1eb{bottom:620.573067pt;}
.y66{bottom:622.773333pt;}
.y151{bottom:623.181067pt;}
.y1b8{bottom:624.353067pt;}
.y225{bottom:628.133067pt;}
.y31{bottom:633.712000pt;}
.y182{bottom:633.712133pt;}
.y1ea{bottom:634.577067pt;}
.ya4{bottom:637.602267pt;}
.y150{bottom:637.845067pt;}
.y1b7{bottom:638.357067pt;}
.y65{bottom:640.106667pt;}
.ydb{bottom:640.488933pt;}
.yda{bottom:640.491600pt;}
.y224{bottom:642.137067pt;}
.y1e9{bottom:648.581067pt;}
.y30{bottom:651.045333pt;}
.y181{bottom:651.045467pt;}
.y20e{bottom:652.361067pt;}
.y14f{bottom:652.509067pt;}
.ya3{bottom:654.935600pt;}
.yd8{bottom:655.155600pt;}
.y1b6{bottom:656.141067pt;}
.y64{bottom:657.440000pt;}
.y223{bottom:659.921067pt;}
.y1e8{bottom:662.585067pt;}
.y20d{bottom:666.365067pt;}
.y14e{bottom:667.173067pt;}
.y2f{bottom:668.378667pt;}
.y180{bottom:668.378800pt;}
.ya{bottom:669.627200pt;}
.ydc{bottom:669.816933pt;}
.yd7{bottom:669.819200pt;}
.yd9{bottom:669.819600pt;}
.y1b5{bottom:670.145067pt;}
.ya2{bottom:672.268933pt;}
.y222{bottom:673.925067pt;}
.y63{bottom:674.773333pt;}
.y1e7{bottom:680.369067pt;}
.y14d{bottom:681.837067pt;}
.y1b4{bottom:684.149067pt;}
.y9{bottom:685.623200pt;}
.y2e{bottom:685.712000pt;}
.y17f{bottom:685.712133pt;}
.y221{bottom:687.929067pt;}
.ya1{bottom:689.602267pt;}
.y62{bottom:692.106667pt;}
.yd4{bottom:693.063200pt;}
.y1e6{bottom:694.373067pt;}
.y14b{bottom:696.503733pt;}
.y20c{bottom:698.153067pt;}
.y8{bottom:701.619200pt;}
.y1b3{bottom:701.933067pt;}
.y2d{bottom:703.045333pt;}
.y17e{bottom:703.045467pt;}
.ya0{bottom:706.935600pt;}
.yd6{bottom:707.727200pt;}
.yd3{bottom:707.731600pt;}
.y61{bottom:709.440000pt;}
.y14c{bottom:711.167733pt;}
.y14a{bottom:711.168667pt;}
.y1e5{bottom:712.157067pt;}
.y1b2{bottom:715.937067pt;}
.y220{bottom:719.717067pt;}
.y2c{bottom:720.378667pt;}
.y17d{bottom:720.378800pt;}
.yd5{bottom:722.391200pt;}
.yd2{bottom:722.395600pt;}
.y1e4{bottom:726.161067pt;}
.y60{bottom:726.773333pt;}
.y20b{bottom:729.941067pt;}
.y1b1{bottom:733.721067pt;}
.y149{bottom:734.412667pt;}
.y2b{bottom:737.712000pt;}
.y17c{bottom:737.712133pt;}
.y9f{bottom:741.602267pt;}
.y1e3{bottom:743.945067pt;}
.y5f{bottom:744.106667pt;}
.yd1{bottom:745.639600pt;}
.y1b0{bottom:747.725067pt;}
.y148{bottom:749.076667pt;}
.y21f{bottom:751.505067pt;}
.y2a{bottom:755.045333pt;}
.y17b{bottom:755.045467pt;}
.y1e2{bottom:757.949067pt;}
.y7{bottom:759.074267pt;}
.yd0{bottom:760.303600pt;}
.y5e{bottom:761.440000pt;}
.y1af{bottom:761.729067pt;}
.y147{bottom:763.740667pt;}
.y21e{bottom:765.509067pt;}
.y9e{bottom:768.205733pt;}
.y1e1{bottom:771.953067pt;}
.y29{bottom:772.378667pt;}
.y17a{bottom:772.378800pt;}
.y20a{bottom:775.733067pt;}
.y146{bottom:778.404667pt;}
.y5d{bottom:778.773333pt;}
.y6{bottom:778.853733pt;}
.y1ae{bottom:779.513067pt;}
.yce{bottom:783.547600pt;}
.y28{bottom:789.712000pt;}
.y179{bottom:789.712133pt;}
.y1e0{bottom:789.737067pt;}
.y9d{bottom:791.449733pt;}
.y1ad{bottom:793.517067pt;}
.y5c{bottom:796.106667pt;}
.ycc{bottom:798.211200pt;}
.ycd{bottom:798.211600pt;}
.y5{bottom:798.627067pt;}
.y143{bottom:798.744667pt;}
.y27{bottom:807.045333pt;}
.y178{bottom:807.045467pt;}
.y1ac{bottom:807.521067pt;}
.y21d{bottom:811.301067pt;}
.ycb{bottom:812.875200pt;}
.ycf{bottom:812.875600pt;}
.y145{bottom:813.408667pt;}
.y142{bottom:813.411333pt;}
.y5b{bottom:813.440000pt;}
.y9c{bottom:814.693733pt;}
.y1df{bottom:821.525067pt;}
.y26{bottom:824.378667pt;}
.y177{bottom:824.378800pt;}
.y1ab{bottom:825.305067pt;}
.y144{bottom:828.072667pt;}
.y141{bottom:828.080133pt;}
.y5a{bottom:830.773333pt;}
.yc9{bottom:836.119200pt;}
.y9a{bottom:837.937733pt;}
.y1aa{bottom:839.309067pt;}
.y25{bottom:841.712000pt;}
.y176{bottom:841.712133pt;}
.y99{bottom:845.256800pt;}
.y59{bottom:848.106667pt;}
.yc8{bottom:850.788533pt;}
.y140{bottom:851.324133pt;}
.y9b{bottom:852.601733pt;}
.y1de{bottom:853.313067pt;}
.y1a9{bottom:857.093067pt;}
.y24{bottom:859.045333pt;}
.y175{bottom:859.045467pt;}
.y58{bottom:865.440000pt;}
.yca{bottom:865.447200pt;}
.yc7{bottom:865.452533pt;}
.y13e{bottom:865.988133pt;}
.y1dd{bottom:867.317067pt;}
.y1a8{bottom:871.097067pt;}
.y98{bottom:875.832800pt;}
.y23{bottom:876.378667pt;}
.y174{bottom:876.378800pt;}
.y13d{bottom:880.652133pt;}
.y57{bottom:882.773333pt;}
.y1a7{bottom:885.101067pt;}
.y4{bottom:885.821867pt;}
.yc6{bottom:888.692533pt;}
.y22{bottom:893.712000pt;}
.y173{bottom:893.712133pt;}
.y13f{bottom:895.316133pt;}
.y13c{bottom:895.326400pt;}
.yc5{bottom:895.359200pt;}
.y97{bottom:899.076800pt;}
.y1dc{bottom:899.105067pt;}
.y56{bottom:900.106667pt;}
.y1a6{bottom:902.885067pt;}
.yc3{bottom:906.281867pt;}
.y21{bottom:911.045333pt;}
.y172{bottom:911.045467pt;}
.y209{bottom:913.109067pt;}
.y1a5{bottom:916.889067pt;}
.y55{bottom:917.440000pt;}
.y3{bottom:917.817867pt;}
.y13b{bottom:918.570400pt;}
.y96{bottom:922.320800pt;}
.yc4{bottom:923.871200pt;}
.y20{bottom:928.378667pt;}
.y171{bottom:928.378800pt;}
.y1a4{bottom:930.893067pt;}
.y13a{bottom:933.234400pt;}
.y21c{bottom:934.673067pt;}
.y54{bottom:934.773333pt;}
.y1db{bottom:944.897067pt;}
.y95{bottom:945.564800pt;}
.y1f{bottom:945.712000pt;}
.y170{bottom:945.712133pt;}
.y139{bottom:947.898400pt;}
.y1a3{bottom:948.677067pt;}
.yc2{bottom:949.660400pt;}
.y53{bottom:952.106667pt;}
.y138{bottom:962.562400pt;}
.y1a2{bottom:962.681067pt;}
.y1e{bottom:963.045333pt;}
.y16f{bottom:963.045467pt;}
.y94{bottom:968.808800pt;}
.y52{bottom:969.440000pt;}
.y1a1{bottom:976.685067pt;}
.y136{bottom:977.226400pt;}
.y1d{bottom:980.378667pt;}
.y16e{bottom:980.378800pt;}
.y51{bottom:986.773333pt;}
.yb{bottom:990.236267pt;}
.y1da{bottom:990.689067pt;}
.y137{bottom:991.890400pt;}
.y135{bottom:991.893067pt;}
.y93{bottom:992.049733pt;}
.y1a0{bottom:994.469067pt;}
.y50{bottom:1004.106667pt;}
.y19f{bottom:1008.473067pt;}
.y1c{bottom:1015.045333pt;}
.y16d{bottom:1015.045467pt;}
.y134{bottom:1015.134000pt;}
.y92{bottom:1017.839733pt;}
.y4f{bottom:1021.440000pt;}
.y19e{bottom:1022.477067pt;}
.y19{bottom:1062.047200pt;}
.y1b{bottom:1062.047333pt;}
.y2{bottom:1066.784533pt;}
.y1{bottom:1068.660800pt;}
.h9{height:25.390625pt;}
.h8{height:29.622396pt;}
.h1e{height:31.992188pt;}
.hd{height:32.937500pt;}
.h1c{height:33.796875pt;}
.h1b{height:34.054688pt;}
.h13{height:35.078750pt;}
.h18{height:37.291667pt;}
.hb{height:37.838542pt;}
.h5{height:38.085938pt;}
.h17{height:38.092871pt;}
.h16{height:38.096604pt;}
.h15{height:38.098204pt;}
.h12{height:39.243750pt;}
.hf{height:40.201823pt;}
.h11{height:41.285000pt;}
.h1a{height:41.765625pt;}
.h3{height:42.317708pt;}
.h7{height:42.656250pt;}
.h1d{height:43.195312pt;}
.h19{height:45.289062pt;}
.hc{height:46.406250pt;}
.h2{height:49.718008pt;}
.h1f{height:52.794271pt;}
.h6{height:57.593750pt;}
.h14{height:59.604167pt;}
.he{height:67.476337pt;}
.ha{height:76.171875pt;}
.h4{height:80.403646pt;}
.h10{height:287.244000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:696.954667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x11{left:-1.978133pt;}
.x0{left:0.000000pt;}
.x4{left:75.603600pt;}
.xc{left:81.090533pt;}
.x13{left:82.248693pt;}
.x1{left:85.439600pt;}
.x3{left:86.551200pt;}
.x12{left:88.012533pt;}
.xa{left:98.267733pt;}
.x3b{left:113.227133pt;}
.x36{left:118.151933pt;}
.x14{left:119.052533pt;}
.xb{left:120.947733pt;}
.x15{left:136.331893pt;}
.x16{left:153.295093pt;}
.x40{left:162.586533pt;}
.x41{left:168.131067pt;}
.x17{left:170.574453pt;}
.x18{left:187.853813pt;}
.x5{left:190.104933pt;}
.x3c{left:192.422933pt;}
.x6{left:197.497600pt;}
.x19{left:205.133173pt;}
.x37{left:209.420333pt;}
.x1a{left:222.412533pt;}
.x2{left:228.661333pt;}
.x1b{left:239.375733pt;}
.x1c{left:256.655093pt;}
.x1d{left:273.934453pt;}
.x42{left:287.673333pt;}
.x1e{left:291.213813pt;}
.x43{left:293.217733pt;}
.x1f{left:308.177013pt;}
.x20{left:325.456373pt;}
.x21{left:342.735733pt;}
.xd{left:351.270000pt;}
.x7{left:354.404933pt;}
.x22{left:360.015093pt;}
.x8{left:361.797467pt;}
.x23{left:377.294453pt;}
.x3d{left:390.825467pt;}
.x24{left:394.257653pt;}
.x3e{left:402.168467pt;}
.x25{left:411.537013pt;}
.x38{left:417.299333pt;}
.x26{left:428.816373pt;}
.x27{left:446.095733pt;}
.x28{left:463.375093pt;}
.x29{left:480.338293pt;}
.xe{left:483.202200pt;}
.x2a{left:497.617653pt;}
.x2b{left:514.897013pt;}
.xf{left:524.242200pt;}
.x2c{left:532.176373pt;}
.x34{left:544.429200pt;}
.x33{left:546.189200pt;}
.x2d{left:549.139573pt;}
.x39{left:551.696467pt;}
.x3a{left:554.386867pt;}
.x2e{left:566.418933pt;}
.x10{left:578.181867pt;}
.x2f{left:583.698293pt;}
.x35{left:598.583867pt;}
.x30{left:600.977653pt;}
.x31{left:618.257013pt;}
.x32{left:635.220213pt;}
.x3f{left:733.147733pt;}
.x9{left:744.608667pt;}
}




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