
    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_83699313d737158e949c1f34.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976000;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_9e82cf9ade025e85aaebccc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_7efafe7e66a91cdd68b264d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923000;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_9cdc590e90650df9f42a348e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008000;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_306f5a38b5ed451a47b73a3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_31f41c28321cc24fe73bbc73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a4b8ac4f548f9937e8d7916e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979000;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_2d10562da42b806d6cf7537c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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_9face176e3db3919a38a2957.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.713000;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_9e82cf9ade025e85aaebccc1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_1b8ef26db7637e2396ac2d87.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.915000;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_30263808a974024585cd1487.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dba521f9f45146cc242d7285.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.924000;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_42dc31b6ab232bafdb193e54.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.909180;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_4667918a0e928d262b44eabf.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;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_a6d1ee571ba61b478f3b4113.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;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_cbc2763a171cdaa68d8e3f35.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.686000;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;}
.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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v4{vertical-align:17.639700px;}
.v1{vertical-align:18.981000px;}
.v5{vertical-align:30.000000px;}
.ls18{letter-spacing:-3.323100px;}
.ls17{letter-spacing:-1.163085px;}
.ls30{letter-spacing:-1.102500px;}
.ls64{letter-spacing:-1.050000px;}
.ls19{letter-spacing:-0.787500px;}
.ls23{letter-spacing:-0.735000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls69{letter-spacing:-0.630000px;}
.ls3d{letter-spacing:-0.480000px;}
.ls63{letter-spacing:-0.262500px;}
.ls3f{letter-spacing:-0.240000px;}
.ls6b{letter-spacing:-0.210000px;}
.ls31{letter-spacing:-0.139920px;}
.ls16{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.139392px;}
.ls8{letter-spacing:0.139440px;}
.ls9{letter-spacing:0.139704px;}
.ls4{letter-spacing:0.139776px;}
.ls2{letter-spacing:0.139800px;}
.ls5{letter-spacing:0.139992px;}
.ls7{letter-spacing:0.140136px;}
.ls33{letter-spacing:0.153039px;}
.ls3c{letter-spacing:0.196800px;}
.ls65{letter-spacing:0.210000px;}
.ls3{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.244800px;}
.lse{letter-spacing:0.262500px;}
.ls15{letter-spacing:0.267750px;}
.ls20{letter-spacing:0.305597px;}
.ls38{letter-spacing:0.306078px;}
.ls14{letter-spacing:0.372750px;}
.ls67{letter-spacing:0.420000px;}
.ls32{letter-spacing:0.458597px;}
.ls2e{letter-spacing:0.459117px;}
.ls46{letter-spacing:0.459222px;}
.ls1{letter-spacing:0.480000px;}
.ls45{letter-spacing:0.514500px;}
.lsb{letter-spacing:0.525000px;}
.ls3e{letter-spacing:0.577500px;}
.ls40{letter-spacing:0.612156px;}
.ls66{letter-spacing:0.630000px;}
.lsa{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.735000px;}
.ls2f{letter-spacing:0.766500px;}
.ls24{letter-spacing:0.787500px;}
.ls68{letter-spacing:0.840000px;}
.ls6a{letter-spacing:0.844200px;}
.ls1b{letter-spacing:0.892500px;}
.ls41{letter-spacing:0.997500px;}
.ls42{letter-spacing:1.029000px;}
.ls21{letter-spacing:1.050000px;}
.ls1a{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.737750px;}
.ls11{letter-spacing:1.837500px;}
.ls13{letter-spacing:2.682750px;}
.ls27{letter-spacing:2.992500px;}
.ls25{letter-spacing:3.365250px;}
.lsd{letter-spacing:3.459750px;}
.ls35{letter-spacing:3.570000px;}
.ls34{letter-spacing:3.575250px;}
.lsc{letter-spacing:3.675000px;}
.ls1d{letter-spacing:3.727500px;}
.ls36{letter-spacing:4.042500px;}
.ls1c{letter-spacing:4.373250px;}
.ls1e{letter-spacing:4.462500px;}
.ls3a{letter-spacing:4.515000px;}
.ls2b{letter-spacing:4.940250px;}
.ls44{letter-spacing:4.950750px;}
.lsf{letter-spacing:5.575500px;}
.ls1f{letter-spacing:5.670000px;}
.ls37{letter-spacing:6.142500px;}
.ls39{letter-spacing:6.195000px;}
.ls22{letter-spacing:6.489000px;}
.ls29{letter-spacing:6.510000px;}
.ls2c{letter-spacing:6.667500px;}
.ls10{letter-spacing:6.877500px;}
.ls28{letter-spacing:7.376250px;}
.ls26{letter-spacing:8.352750px;}
.ls43{letter-spacing:9.140250px;}
.ls55{letter-spacing:9.600000px;}
.ls0{letter-spacing:10.800000px;}
.ls59{letter-spacing:146.657874px;}
.ls62{letter-spacing:156.343074px;}
.ls5d{letter-spacing:168.754674px;}
.ls57{letter-spacing:173.064474px;}
.ls5a{letter-spacing:188.818074px;}
.ls54{letter-spacing:195.823257px;}
.ls4a{letter-spacing:203.412057px;}
.ls4e{letter-spacing:215.243457px;}
.ls50{letter-spacing:218.456457px;}
.ls61{letter-spacing:221.478642px;}
.ls4b{letter-spacing:225.671457px;}
.ls48{letter-spacing:245.558274px;}
.ls60{letter-spacing:321.322362px;}
.ls5f{letter-spacing:327.366162px;}
.ls53{letter-spacing:354.129642px;}
.ls5c{letter-spacing:409.004442px;}
.ls52{letter-spacing:478.345962px;}
.ls51{letter-spacing:488.367162px;}
.ls5b{letter-spacing:536.409642px;}
.ls5e{letter-spacing:550.406442px;}
.ls4d{letter-spacing:579.893442px;}
.ls58{letter-spacing:675.615642px;}
.ls56{letter-spacing:693.856242px;}
.ls4f{letter-spacing:700.647042px;}
.ls4c{letter-spacing:706.355442px;}
.ls49{letter-spacing:822.591642px;}
.ls47{letter-spacing:844.810842px;}
.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;}
}
.ws52{word-spacing:-48.000000px;}
.ws5{word-spacing:-15.840000px;}
.ws4d{word-spacing:-14.175000px;}
.ws6{word-spacing:-13.650000px;}
.wsc4{word-spacing:-13.387500px;}
.ws1c{word-spacing:-13.335000px;}
.ws4c{word-spacing:-13.072500px;}
.wsa7{word-spacing:-12.810000px;}
.ws1f{word-spacing:-12.285000px;}
.ws1e{word-spacing:-11.550000px;}
.wsca{word-spacing:-11.497500px;}
.wscb{word-spacing:-11.235000px;}
.ws73{word-spacing:-11.182500px;}
.wsae{word-spacing:-10.965000px;}
.wsba{word-spacing:-10.710000px;}
.ws9b{word-spacing:-10.560000px;}
.ws51{word-spacing:-10.320000px;}
.ws4e{word-spacing:-10.080000px;}
.ws9c{word-spacing:-9.840000px;}
.ws50{word-spacing:-9.600000px;}
.ws0{word-spacing:-9.120000px;}
.ws1{word-spacing:-8.976000px;}
.wsaa{word-spacing:-8.417145px;}
.ws74{word-spacing:-8.264106px;}
.ws99{word-spacing:-8.111067px;}
.ws81{word-spacing:-7.958028px;}
.ws1d{word-spacing:-7.804989px;}
.ws2{word-spacing:-6.978510px;}
.wsac{word-spacing:-6.611220px;}
.wsaf{word-spacing:-6.392595px;}
.ws4f{word-spacing:-6.016560px;}
.wsc0{word-spacing:-5.880000px;}
.ws75{word-spacing:-5.876640px;}
.ws3{word-spacing:-5.815425px;}
.wsd6{word-spacing:-5.040000px;}
.ws3a{word-spacing:-4.305000px;}
.ws39{word-spacing:-3.990000px;}
.ws4{word-spacing:-3.655410px;}
.wsbb{word-spacing:-2.362500px;}
.wsa4{word-spacing:-2.257500px;}
.ws14{word-spacing:-2.205000px;}
.ws8b{word-spacing:-2.152500px;}
.ws41{word-spacing:-2.100000px;}
.ws32{word-spacing:-1.995000px;}
.ws95{word-spacing:-1.942500px;}
.wsd2{word-spacing:-1.837500px;}
.wsa3{word-spacing:-1.785000px;}
.ws9{word-spacing:-1.776000px;}
.ws69{word-spacing:-1.732500px;}
.ws42{word-spacing:-1.627500px;}
.wsde{word-spacing:-1.575000px;}
.ws94{word-spacing:-1.522500px;}
.ws65{word-spacing:-1.470000px;}
.ws45{word-spacing:-1.417500px;}
.ws98{word-spacing:-1.365000px;}
.wsb9{word-spacing:-1.312500px;}
.ws92{word-spacing:-1.260000px;}
.ws31{word-spacing:-1.207500px;}
.ws10{word-spacing:-1.155000px;}
.ws3f{word-spacing:-1.050000px;}
.ws3c{word-spacing:-0.892500px;}
.ws28{word-spacing:-0.840000px;}
.wsa{word-spacing:-0.792000px;}
.ws56{word-spacing:-0.787500px;}
.ws66{word-spacing:-0.735000px;}
.ws29{word-spacing:-0.720000px;}
.wsdb{word-spacing:-0.630000px;}
.ws49{word-spacing:-0.577500px;}
.wsd{word-spacing:-0.525000px;}
.ws80{word-spacing:-0.472500px;}
.wsc9{word-spacing:-0.420000px;}
.ws87{word-spacing:-0.367500px;}
.wsc2{word-spacing:-0.357000px;}
.wsc3{word-spacing:-0.336000px;}
.wsc1{word-spacing:-0.324000px;}
.ws4b{word-spacing:-0.315000px;}
.ws9a{word-spacing:-0.288000px;}
.ws13{word-spacing:-0.262500px;}
.wsb{word-spacing:-0.240000px;}
.wsdf{word-spacing:-0.210000px;}
.wsa0{word-spacing:-0.157500px;}
.ws72{word-spacing:-0.096000px;}
.wsab{word-spacing:-0.054000px;}
.ws1b{word-spacing:-0.052500px;}
.wsad{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws8f{word-spacing:0.052500px;}
.ws1a{word-spacing:0.105000px;}
.wsb6{word-spacing:0.157500px;}
.wse0{word-spacing:0.210000px;}
.wsa6{word-spacing:0.240000px;}
.ws79{word-spacing:0.315000px;}
.ws38{word-spacing:0.367500px;}
.ws2e{word-spacing:0.420000px;}
.ws63{word-spacing:0.472500px;}
.wsa8{word-spacing:0.525000px;}
.ws8d{word-spacing:0.577500px;}
.ws37{word-spacing:0.630000px;}
.wsce{word-spacing:0.682500px;}
.ws62{word-spacing:0.720000px;}
.ws7{word-spacing:0.735000px;}
.ws22{word-spacing:0.787500px;}
.ws86{word-spacing:0.840000px;}
.ws3e{word-spacing:0.892500px;}
.wsbc{word-spacing:0.997500px;}
.wsc{word-spacing:1.050000px;}
.ws2d{word-spacing:1.155000px;}
.wsc5{word-spacing:1.207500px;}
.ws33{word-spacing:1.260000px;}
.ws36{word-spacing:1.312500px;}
.ws6b{word-spacing:1.365000px;}
.wsa5{word-spacing:1.417500px;}
.ws2c{word-spacing:1.470000px;}
.ws40{word-spacing:1.522500px;}
.ws18{word-spacing:1.627500px;}
.ws88{word-spacing:1.680000px;}
.ws2f{word-spacing:1.837500px;}
.ws2a{word-spacing:1.890000px;}
.ws83{word-spacing:1.942500px;}
.ws82{word-spacing:1.995000px;}
.ws2b{word-spacing:2.047500px;}
.ws5b{word-spacing:2.100000px;}
.wsd7{word-spacing:2.152500px;}
.ws67{word-spacing:2.205000px;}
.ws7c{word-spacing:2.257500px;}
.ws8e{word-spacing:2.310000px;}
.ws44{word-spacing:2.362500px;}
.ws19{word-spacing:2.415000px;}
.ws96{word-spacing:2.572500px;}
.ws9f{word-spacing:2.625000px;}
.ws97{word-spacing:2.677500px;}
.ws55{word-spacing:2.730000px;}
.ws64{word-spacing:2.835000px;}
.ws84{word-spacing:2.887500px;}
.wsbf{word-spacing:2.940000px;}
.ws48{word-spacing:2.992500px;}
.ws11{word-spacing:3.045000px;}
.ws85{word-spacing:3.097500px;}
.wse{word-spacing:3.150000px;}
.ws35{word-spacing:3.202500px;}
.ws89{word-spacing:3.255000px;}
.wsb2{word-spacing:3.307500px;}
.wsb3{word-spacing:3.360000px;}
.ws9d{word-spacing:3.412500px;}
.ws6a{word-spacing:3.465000px;}
.ws20{word-spacing:3.517500px;}
.ws68{word-spacing:3.570000px;}
.ws8c{word-spacing:3.622500px;}
.ws3d{word-spacing:3.675000px;}
.ws24{word-spacing:3.727500px;}
.ws30{word-spacing:3.832500px;}
.wsdd{word-spacing:3.937500px;}
.ws43{word-spacing:3.990000px;}
.wsbd{word-spacing:4.042500px;}
.wsa1{word-spacing:4.095000px;}
.ws47{word-spacing:4.147500px;}
.wsbe{word-spacing:4.200000px;}
.ws6f{word-spacing:4.252500px;}
.wsa2{word-spacing:4.305000px;}
.ws21{word-spacing:4.410000px;}
.ws26{word-spacing:4.462500px;}
.ws23{word-spacing:4.515000px;}
.wsd5{word-spacing:4.567500px;}
.wsd9{word-spacing:4.620000px;}
.ws7e{word-spacing:4.672500px;}
.ws93{word-spacing:4.725000px;}
.wsb5{word-spacing:4.882500px;}
.ws7d{word-spacing:4.935000px;}
.ws58{word-spacing:4.987500px;}
.ws90{word-spacing:5.040000px;}
.ws91{word-spacing:5.092500px;}
.ws16{word-spacing:5.197500px;}
.ws12{word-spacing:5.355000px;}
.wsda{word-spacing:5.407500px;}
.ws5e{word-spacing:5.670000px;}
.wscf{word-spacing:5.722500px;}
.ws34{word-spacing:5.880000px;}
.ws7f{word-spacing:5.985000px;}
.ws46{word-spacing:6.037500px;}
.wsd8{word-spacing:6.090000px;}
.ws5d{word-spacing:6.142500px;}
.ws25{word-spacing:6.195000px;}
.ws53{word-spacing:6.300000px;}
.wsdc{word-spacing:6.405000px;}
.wsc6{word-spacing:6.510000px;}
.ws17{word-spacing:6.562500px;}
.ws5c{word-spacing:6.667500px;}
.ws54{word-spacing:6.825000px;}
.ws6e{word-spacing:7.035000px;}
.wsf{word-spacing:7.087500px;}
.ws9e{word-spacing:7.140000px;}
.ws8a{word-spacing:7.192500px;}
.wsc8{word-spacing:7.245000px;}
.wsb8{word-spacing:7.350000px;}
.ws57{word-spacing:7.455000px;}
.wsb7{word-spacing:7.507500px;}
.ws15{word-spacing:7.560000px;}
.ws7a{word-spacing:7.612500px;}
.ws27{word-spacing:7.665000px;}
.wsb4{word-spacing:7.875000px;}
.ws4a{word-spacing:7.980000px;}
.ws59{word-spacing:8.190000px;}
.ws70{word-spacing:8.242500px;}
.ws7b{word-spacing:8.295000px;}
.wsd4{word-spacing:8.505000px;}
.wsd0{word-spacing:8.925000px;}
.ws71{word-spacing:9.030000px;}
.wsc7{word-spacing:9.397500px;}
.ws76{word-spacing:9.660000px;}
.wsd1{word-spacing:9.712500px;}
.ws6c{word-spacing:9.817500px;}
.wsa9{word-spacing:10.027500px;}
.ws3b{word-spacing:10.500000px;}
.ws78{word-spacing:10.552500px;}
.ws6d{word-spacing:10.710000px;}
.ws5f{word-spacing:10.920000px;}
.ws77{word-spacing:11.340000px;}
.wsd3{word-spacing:12.337500px;}
.ws61{word-spacing:13.807500px;}
.ws60{word-spacing:14.595000px;}
.ws5a{word-spacing:15.067500px;}
.wscc{word-spacing:475.269000px;}
.wsb0{word-spacing:526.269000px;}
.wscd{word-spacing:543.741864px;}
.wsb1{word-spacing:697.806264px;}
._a{margin-left:-29.377500px;}
._d{margin-left:-28.161117px;}
._f{margin-left:-22.680000px;}
._c{margin-left:-20.340918px;}
._26{margin-left:-18.509118px;}
._25{margin-left:-17.006358px;}
._24{margin-left:-15.169959px;}
._b{margin-left:-13.264599px;}
._10{margin-left:-8.109159px;}
._3{margin-left:-6.538800px;}
._9{margin-left:-5.347500px;}
._5{margin-left:-4.159374px;}
._4{margin-left:-2.752041px;}
._0{margin-left:-1.350000px;}
._2{width:1.104000px;}
._1{width:2.544000px;}
._6{width:4.285899px;}
._8{width:5.491791px;}
._7{width:6.548832px;}
._e{width:10.085709px;}
._42{width:22.218000px;}
._41{width:24.108000px;}
._2d{width:92.718000px;}
._3d{width:137.005566px;}
._3e{width:140.383434px;}
._16{width:143.769000px;}
._2c{width:151.406241px;}
._3a{width:154.653366px;}
._40{width:158.121954px;}
._34{width:159.508098px;}
._3b{width:162.061443px;}
._35{width:163.649415px;}
._37{width:166.668003px;}
._31{width:170.978442px;}
._29{width:172.501920px;}
._2a{width:174.393174px;}
._32{width:178.939080px;}
._38{width:179.979000px;}
._2f{width:181.206774px;}
._2e{width:183.944724px;}
._15{width:201.875400px;}
._22{width:207.315000px;}
._21{width:211.346940px;}
._1f{width:212.754981px;}
._1d{width:215.193162px;}
._1a{width:227.205000px;}
._17{width:235.569483px;}
._13{width:237.062946px;}
._19{width:255.916842px;}
._28{width:339.184041px;}
._12{width:432.736041px;}
._36{width:470.475000px;}
._27{width:475.392000px;}
._2b{width:494.139000px;}
._30{width:500.844000px;}
._33{width:516.018000px;}
._1c{width:521.526000px;}
._14{width:545.190000px;}
._18{width:551.895000px;}
._11{width:560.448000px;}
._1b{width:567.069000px;}
._3f{width:595.935000px;}
._3c{width:630.462000px;}
._39{width:632.859000px;}
._23{width:646.986000px;}
._20{width:681.513000px;}
._1e{width:683.910000px;}
.fc1{color:rgb(0,107,59);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fsb{font-size:29.733000px;}
.fs8{font-size:30.607800px;}
.fs9{font-size:31.482000px;}
.fs4{font-size:33.231000px;}
.fsc{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs7{font-size:52.500000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:27.152400px;}
.y1{bottom:27.194850px;}
.y41{bottom:27.694500px;}
.y1b3{bottom:64.742100px;}
.y175{bottom:66.206475px;}
.ya5{bottom:66.290850px;}
.yf3{bottom:66.296475px;}
.y88{bottom:66.318975px;}
.y2e{bottom:66.335850px;}
.y14d{bottom:66.369600px;}
.yd6{bottom:66.392100px;}
.y76{bottom:66.397725px;}
.y10{bottom:66.403500px;}
.y114{bottom:66.408975px;}
.y1b2{bottom:79.746600px;}
.yf{bottom:82.903500px;}
.y174{bottom:84.962100px;}
.ya4{bottom:85.046475px;}
.yf2{bottom:85.052100px;}
.y87{bottom:85.074600px;}
.y2d{bottom:85.091475px;}
.y14c{bottom:85.125225px;}
.yd5{bottom:85.147725px;}
.y75{bottom:85.153350px;}
.y1b1{bottom:94.751100px;}
.ye{bottom:99.403500px;}
.y173{bottom:103.717725px;}
.ya3{bottom:103.802100px;}
.yf1{bottom:103.807725px;}
.y86{bottom:103.830225px;}
.y2c{bottom:103.847100px;}
.y14b{bottom:103.880850px;}
.yd4{bottom:103.903350px;}
.y74{bottom:103.908975px;}
.y1b0{bottom:109.755600px;}
.yd{bottom:115.903500px;}
.y172{bottom:122.473350px;}
.ya2{bottom:122.557725px;}
.yf0{bottom:122.563350px;}
.y85{bottom:122.585850px;}
.yba{bottom:122.597100px;}
.y2b{bottom:122.602725px;}
.y113{bottom:122.619600px;}
.y14a{bottom:122.636475px;}
.y73{bottom:122.647725px;}
.yd3{bottom:122.658975px;}
.y11a{bottom:122.664600px;}
.y1af{bottom:124.760100px;}
.y1ae{bottom:139.764600px;}
.yc{bottom:140.911500px;}
.y171{bottom:141.228975px;}
.ya1{bottom:141.313350px;}
.yef{bottom:141.318975px;}
.y84{bottom:141.341475px;}
.yd2{bottom:141.347100px;}
.yb9{bottom:141.352725px;}
.y2a{bottom:141.358350px;}
.y112{bottom:141.375225px;}
.y149{bottom:141.392100px;}
.y72{bottom:141.403350px;}
.y1ad{bottom:154.769100px;}
.yb{bottom:157.411500px;}
.y170{bottom:159.984600px;}
.ya0{bottom:160.068975px;}
.yee{bottom:160.074600px;}
.y83{bottom:160.097100px;}
.yd1{bottom:160.102725px;}
.yb8{bottom:160.108350px;}
.y29{bottom:160.113975px;}
.y111{bottom:160.130850px;}
.y148{bottom:160.147725px;}
.y71{bottom:160.158975px;}
.y1ac{bottom:169.773600px;}
.y122{bottom:172.254300px;}
.ya{bottom:173.911500px;}
.y16f{bottom:178.740225px;}
.y9f{bottom:178.824600px;}
.yed{bottom:178.830225px;}
.y82{bottom:178.852725px;}
.yd0{bottom:178.858350px;}
.yb7{bottom:178.863975px;}
.y28{bottom:178.869600px;}
.y110{bottom:178.886475px;}
.y70{bottom:178.903350px;}
.y1ab{bottom:184.778100px;}
.y121{bottom:187.254300px;}
.y16e{bottom:197.495850px;}
.y9e{bottom:197.580225px;}
.yec{bottom:197.585850px;}
.y81{bottom:197.608350px;}
.ycf{bottom:197.613975px;}
.yb6{bottom:197.619600px;}
.y27{bottom:197.625225px;}
.y10f{bottom:197.642100px;}
.y6f{bottom:197.658975px;}
.y9{bottom:198.919500px;}
.y1aa{bottom:199.782600px;}
.y120{bottom:202.254300px;}
.y1a9{bottom:214.787100px;}
.y8{bottom:215.419500px;}
.y16d{bottom:216.251475px;}
.y6e{bottom:216.285225px;}
.y9d{bottom:216.335850px;}
.yeb{bottom:216.341475px;}
.y80{bottom:216.363975px;}
.yce{bottom:216.369600px;}
.yb5{bottom:216.375225px;}
.y26{bottom:216.380850px;}
.y10e{bottom:216.397725px;}
.y147{bottom:216.414600px;}
.y11f{bottom:217.254300px;}
.y1a8{bottom:229.791600px;}
.y7{bottom:231.919500px;}
.y11e{bottom:232.254300px;}
.y16c{bottom:235.007100px;}
.y6d{bottom:235.040850px;}
.y9c{bottom:235.091475px;}
.yea{bottom:235.097100px;}
.y7f{bottom:235.119600px;}
.ycd{bottom:235.125225px;}
.yb4{bottom:235.130850px;}
.y25{bottom:235.136475px;}
.y10d{bottom:235.153350px;}
.y1a7{bottom:244.796100px;}
.y11d{bottom:247.254300px;}
.y6{bottom:248.419500px;}
.y16b{bottom:253.762725px;}
.y6c{bottom:253.796475px;}
.y9b{bottom:253.847100px;}
.ye9{bottom:253.852725px;}
.y7e{bottom:253.875225px;}
.ycc{bottom:253.880850px;}
.yb3{bottom:253.886475px;}
.y24{bottom:253.892100px;}
.y10c{bottom:253.908975px;}
.y1a6{bottom:259.800600px;}
.y11c{bottom:262.254300px;}
.y16a{bottom:272.518350px;}
.y6b{bottom:272.552100px;}
.y9a{bottom:272.602725px;}
.ye8{bottom:272.608350px;}
.y7d{bottom:272.630850px;}
.ycb{bottom:272.636475px;}
.yb2{bottom:272.642100px;}
.y23{bottom:272.647725px;}
.y10b{bottom:272.664600px;}
.y5{bottom:273.427500px;}
.y1a5{bottom:274.805100px;}
.y155{bottom:275.218650px;}
.y11b{bottom:277.254300px;}
.y1a4{bottom:289.809600px;}
.y4{bottom:289.927500px;}
.y154{bottom:290.218650px;}
.y169{bottom:291.273975px;}
.y6a{bottom:291.307725px;}
.y99{bottom:291.358350px;}
.ye7{bottom:291.363975px;}
.y7c{bottom:291.386475px;}
.yca{bottom:291.392100px;}
.yb1{bottom:291.397725px;}
.y22{bottom:291.403350px;}
.y10a{bottom:291.414600px;}
.y1a3{bottom:304.814100px;}
.y153{bottom:305.218650px;}
.y1e7{bottom:306.199800px;}
.y3{bottom:306.427500px;}
.y168{bottom:310.029600px;}
.y69{bottom:310.063350px;}
.y98{bottom:310.113975px;}
.ye6{bottom:310.119600px;}
.y7b{bottom:310.142100px;}
.yc9{bottom:310.147725px;}
.yb0{bottom:310.153350px;}
.y21{bottom:310.158975px;}
.y1a2{bottom:319.818600px;}
.y152{bottom:320.218650px;}
.y1e6{bottom:321.204300px;}
.y167{bottom:328.785225px;}
.y68{bottom:328.818975px;}
.y109{bottom:328.847100px;}
.y97{bottom:328.869600px;}
.ye5{bottom:328.875225px;}
.y7a{bottom:328.897725px;}
.yc8{bottom:328.903350px;}
.yaf{bottom:328.908975px;}
.y20{bottom:328.914600px;}
.y1a1{bottom:334.823100px;}
.y151{bottom:335.218650px;}
.y1e5{bottom:336.208800px;}
.y166{bottom:347.540850px;}
.y67{bottom:347.574600px;}
.y108{bottom:347.602725px;}
.y96{bottom:347.625225px;}
.ye4{bottom:347.630850px;}
.y79{bottom:347.653350px;}
.yc7{bottom:347.658975px;}
.y1f{bottom:347.664600px;}
.y1a0{bottom:349.827600px;}
.y150{bottom:350.218650px;}
.y1e4{bottom:351.213300px;}
.y19f{bottom:364.832100px;}
.y14f{bottom:365.218650px;}
.y1e3{bottom:366.217800px;}
.y165{bottom:366.296475px;}
.y66{bottom:366.330225px;}
.y107{bottom:366.358350px;}
.y95{bottom:366.380850px;}
.ye3{bottom:366.386475px;}
.yc6{bottom:366.403350px;}
.y78{bottom:366.408975px;}
.y19e{bottom:379.836600px;}
.y14e{bottom:380.218650px;}
.y1e2{bottom:381.222300px;}
.y164{bottom:385.052100px;}
.y137{bottom:385.080225px;}
.y65{bottom:385.085850px;}
.y106{bottom:385.113975px;}
.y94{bottom:385.136475px;}
.ye2{bottom:385.142100px;}
.yc5{bottom:385.158975px;}
.y77{bottom:385.164600px;}
.y19d{bottom:394.841100px;}
.y1e1{bottom:396.226800px;}
.yc1{bottom:400.023450px;}
.y163{bottom:403.807725px;}
.y136{bottom:403.835850px;}
.y64{bottom:403.841475px;}
.y105{bottom:403.869600px;}
.y93{bottom:403.892100px;}
.ye1{bottom:403.897725px;}
.yc4{bottom:403.903350px;}
.y19c{bottom:409.845600px;}
.y1e0{bottom:411.231300px;}
.yc0{bottom:415.023450px;}
.y162{bottom:422.563350px;}
.y135{bottom:422.591475px;}
.y63{bottom:422.597100px;}
.y104{bottom:422.625225px;}
.y92{bottom:422.647725px;}
.ye0{bottom:422.653350px;}
.yc3{bottom:422.658975px;}
.y19b{bottom:424.850100px;}
.y1df{bottom:426.235800px;}
.ybf{bottom:430.023450px;}
.y3e{bottom:436.147125px;}
.y19a{bottom:439.854600px;}
.y1de{bottom:441.240300px;}
.y161{bottom:441.318975px;}
.y134{bottom:441.347100px;}
.y62{bottom:441.352725px;}
.y103{bottom:441.380850px;}
.y91{bottom:441.403350px;}
.ydf{bottom:441.408975px;}
.yc2{bottom:441.414600px;}
.y8e{bottom:443.464650px;}
.ybe{bottom:445.023450px;}
.y199{bottom:454.859100px;}
.y3d{bottom:454.902750px;}
.y1dd{bottom:456.244800px;}
.y8d{bottom:458.464650px;}
.ybd{bottom:460.023450px;}
.y160{bottom:460.074600px;}
.y133{bottom:460.102725px;}
.y61{bottom:460.108350px;}
.y102{bottom:460.136475px;}
.y90{bottom:460.158975px;}
.yde{bottom:460.164600px;}
.y198{bottom:469.863600px;}
.y1dc{bottom:471.249300px;}
.y8c{bottom:473.464650px;}
.y3c{bottom:473.658375px;}
.ybc{bottom:475.023450px;}
.y15f{bottom:478.830225px;}
.y132{bottom:478.858350px;}
.y60{bottom:478.863975px;}
.y101{bottom:478.892100px;}
.y8f{bottom:478.914600px;}
.y197{bottom:484.868100px;}
.y1db{bottom:486.253800px;}
.y8b{bottom:488.464650px;}
.ybb{bottom:490.023450px;}
.y3b{bottom:492.414000px;}
.y15e{bottom:497.585850px;}
.y131{bottom:497.613975px;}
.y5f{bottom:497.619600px;}
.y100{bottom:497.647725px;}
.y196{bottom:499.872600px;}
.ydd{bottom:500.474400px;}
.y1da{bottom:501.258300px;}
.y8a{bottom:503.464650px;}
.y3a{bottom:511.169625px;}
.y195{bottom:514.877100px;}
.ydc{bottom:515.474400px;}
.y1d9{bottom:516.262800px;}
.y15d{bottom:516.341475px;}
.y130{bottom:516.369600px;}
.y5e{bottom:516.375225px;}
.yff{bottom:516.403350px;}
.y89{bottom:518.464650px;}
.y194{bottom:529.881600px;}
.y39{bottom:529.925250px;}
.ydb{bottom:530.474400px;}
.y1d8{bottom:531.267300px;}
.yae{bottom:534.730650px;}
.y15c{bottom:535.097100px;}
.y12f{bottom:535.125225px;}
.y5d{bottom:535.130850px;}
.yfe{bottom:535.158975px;}
.yfc{bottom:537.414600px;}
.y193{bottom:544.886100px;}
.yda{bottom:545.474400px;}
.y1d7{bottom:546.271800px;}
.y38{bottom:548.680875px;}
.yad{bottom:549.730650px;}
.yfb{bottom:552.414600px;}
.y15b{bottom:553.852725px;}
.y12e{bottom:553.880850px;}
.y5c{bottom:553.886475px;}
.yfd{bottom:553.914600px;}
.y192{bottom:559.890600px;}
.yd9{bottom:560.474400px;}
.y1d6{bottom:561.276300px;}
.yac{bottom:564.730650px;}
.yfa{bottom:567.414600px;}
.y37{bottom:567.436500px;}
.y15a{bottom:572.608350px;}
.y12d{bottom:572.636475px;}
.y5b{bottom:572.642100px;}
.y191{bottom:574.895100px;}
.yd8{bottom:575.474400px;}
.y1d5{bottom:576.280800px;}
.yab{bottom:579.730650px;}
.yf9{bottom:582.414600px;}
.y36{bottom:586.192125px;}
.y190{bottom:589.899600px;}
.yd7{bottom:590.474400px;}
.y1d4{bottom:591.285300px;}
.y159{bottom:591.363975px;}
.y12c{bottom:591.392100px;}
.y5a{bottom:591.397725px;}
.yaa{bottom:594.730650px;}
.yf8{bottom:597.414600px;}
.y119{bottom:602.110950px;}
.y18f{bottom:604.904100px;}
.y35{bottom:604.947750px;}
.y1d3{bottom:606.289800px;}
.ya9{bottom:609.730650px;}
.y158{bottom:610.119600px;}
.y12b{bottom:610.147725px;}
.y59{bottom:610.153350px;}
.yf7{bottom:612.414600px;}
.y118{bottom:617.110950px;}
.y18e{bottom:619.908600px;}
.y1d2{bottom:621.294300px;}
.y34{bottom:623.703375px;}
.ya8{bottom:624.730650px;}
.yf6{bottom:627.414600px;}
.y157{bottom:628.875225px;}
.y12a{bottom:628.903350px;}
.y58{bottom:628.908975px;}
.y117{bottom:632.110950px;}
.y1d1{bottom:636.298800px;}
.ya7{bottom:639.730650px;}
.yf5{bottom:642.414600px;}
.y33{bottom:642.459000px;}
.y116{bottom:647.110950px;}
.y156{bottom:647.630850px;}
.y57{bottom:647.653350px;}
.y129{bottom:647.658975px;}
.y1d0{bottom:651.303300px;}
.ya6{bottom:654.730650px;}
.yf4{bottom:657.414600px;}
.y32{bottom:661.214625px;}
.y115{bottom:662.110950px;}
.y1cf{bottom:666.307800px;}
.y18d{bottom:666.382725px;}
.y128{bottom:666.386475px;}
.y56{bottom:666.408975px;}
.y31{bottom:679.970250px;}
.y1ce{bottom:681.312300px;}
.y55{bottom:685.125225px;}
.y18c{bottom:685.138350px;}
.y127{bottom:685.142100px;}
.y1cd{bottom:696.316800px;}
.y30{bottom:698.725875px;}
.y54{bottom:703.880850px;}
.y18b{bottom:703.893975px;}
.y126{bottom:703.897725px;}
.y1cc{bottom:711.321300px;}
.y2f{bottom:717.481500px;}
.y53{bottom:722.636475px;}
.y125{bottom:722.653350px;}
.y1cb{bottom:726.325800px;}
.y1ca{bottom:741.330300px;}
.y52{bottom:741.392100px;}
.y124{bottom:741.408975px;}
.y1c9{bottom:756.334800px;}
.y51{bottom:760.147725px;}
.y123{bottom:760.164600px;}
.y1e{bottom:763.083150px;}
.y1c8{bottom:771.339300px;}
.y50{bottom:778.903350px;}
.y1d{bottom:782.583150px;}
.y1c7{bottom:786.343800px;}
.y4f{bottom:797.658975px;}
.y1c6{bottom:801.348300px;}
.y1c{bottom:806.079150px;}
.y146{bottom:812.989350px;}
.y1c5{bottom:816.352800px;}
.y4e{bottom:816.414600px;}
.y1b{bottom:821.583150px;}
.y183{bottom:823.321500px;}
.y145{bottom:825.493350px;}
.y1c4{bottom:831.357300px;}
.y4d{bottom:835.164600px;}
.y182{bottom:835.825500px;}
.y1a{bottom:841.083150px;}
.y1c3{bottom:846.361800px;}
.y144{bottom:854.526900px;}
.y181{bottom:857.418150px;}
.y19{bottom:860.583150px;}
.y1c2{bottom:861.366300px;}
.y143{bottom:871.402650px;}
.y4c{bottom:872.608350px;}
.y18a{bottom:872.636475px;}
.y180{bottom:874.293900px;}
.y1c1{bottom:876.370800px;}
.y18{bottom:880.083150px;}
.y142{bottom:888.278700px;}
.y17f{bottom:891.174900px;}
.y4b{bottom:891.363975px;}
.y1c0{bottom:891.375300px;}
.y189{bottom:891.392100px;}
.y17{bottom:899.583150px;}
.y141{bottom:905.154600px;}
.y1bf{bottom:906.379800px;}
.y17e{bottom:908.050800px;}
.y4a{bottom:910.119600px;}
.y188{bottom:910.147725px;}
.y1be{bottom:921.384300px;}
.y140{bottom:922.030350px;}
.y16{bottom:923.079150px;}
.y17d{bottom:924.921600px;}
.y49{bottom:928.875225px;}
.y187{bottom:928.903350px;}
.y1bd{bottom:936.388800px;}
.y13f{bottom:938.911350px;}
.y17c{bottom:941.802600px;}
.y15{bottom:943.089150px;}
.y48{bottom:947.630850px;}
.y186{bottom:947.658975px;}
.y1bc{bottom:951.393300px;}
.y13e{bottom:955.782150px;}
.y17b{bottom:958.673400px;}
.y14{bottom:962.589150px;}
.y47{bottom:966.386475px;}
.y1bb{bottom:966.397800px;}
.y185{bottom:966.414600px;}
.y13d{bottom:972.658050px;}
.y17a{bottom:975.549300px;}
.y1ba{bottom:981.402300px;}
.y13{bottom:982.083150px;}
.y46{bottom:985.142100px;}
.y184{bottom:985.164600px;}
.y13c{bottom:989.539050px;}
.y179{bottom:992.430300px;}
.y1b9{bottom:996.406800px;}
.y45{bottom:1003.897725px;}
.y13a{bottom:1007.860650px;}
.y177{bottom:1009.306200px;}
.y1b8{bottom:1011.411300px;}
.y139{bottom:1015.360650px;}
.y176{bottom:1016.806200px;}
.y12{bottom:1018.162800px;}
.y44{bottom:1022.653350px;}
.y13b{bottom:1022.860650px;}
.y178{bottom:1024.306200px;}
.y1b7{bottom:1026.415800px;}
.y43{bottom:1041.408975px;}
.y1b6{bottom:1041.420300px;}
.y138{bottom:1053.592950px;}
.y11{bottom:1054.165800px;}
.y1b5{bottom:1056.424800px;}
.y42{bottom:1060.164600px;}
.y1b4{bottom:1071.429300px;}
.y2{bottom:1128.373500px;}
.y40{bottom:1128.605400px;}
.h7{height:21.323808px;}
.h1a{height:29.946000px;}
.h1{height:36.576000px;}
.h8{height:37.307808px;}
.ha{height:37.432500px;}
.h2{height:38.124000px;}
.h3{height:38.400000px;}
.hd{height:39.350561px;}
.hf{height:39.373061px;}
.h12{height:39.418061px;}
.hc{height:39.463061px;}
.h11{height:39.485561px;}
.h10{height:39.575561px;}
.h16{height:39.639546px;}
.h19{height:39.640146px;}
.h13{height:39.643061px;}
.h17{height:39.659946px;}
.h18{height:39.660546px;}
.he{height:39.823061px;}
.hb{height:40.005000px;}
.h14{height:40.208292px;}
.h6{height:44.279022px;}
.h5{height:44.303022px;}
.h9{height:54.864000px;}
.h15{height:66.576000px;}
.h4{height:100.584000px;}
.h0{height:1174.500000px;}
.w0{width:877.500000px;}
.x0{left:0.000000px;}
.x3{left:58.502850px;}
.xf{left:120.897150px;}
.x9{left:127.275000px;}
.x4{left:232.109850px;}
.x15{left:252.151800px;}
.x5{left:254.619225px;}
.x6{left:274.270050px;}
.x10{left:476.049150px;}
.xa{left:527.079000px;}
.x11{left:568.773150px;}
.xb{left:636.819000px;}
.x12{left:640.521150px;}
.x2{left:663.451350px;}
.xc{left:724.155000px;}
.x13{left:735.621150px;}
.xd{left:748.178100px;}
.x14{left:756.681150px;}
.x8{left:805.245450px;}
.xe{left:807.381450px;}
.x7{left:812.985300px;}
.x1{left:814.389300px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v4{vertical-align:15.679733pt;}
.v1{vertical-align:16.872000pt;}
.v5{vertical-align:26.666667pt;}
.ls18{letter-spacing:-2.953867pt;}
.ls17{letter-spacing:-1.033853pt;}
.ls30{letter-spacing:-0.980000pt;}
.ls64{letter-spacing:-0.933333pt;}
.ls19{letter-spacing:-0.700000pt;}
.ls23{letter-spacing:-0.653333pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls69{letter-spacing:-0.560000pt;}
.ls3d{letter-spacing:-0.426667pt;}
.ls63{letter-spacing:-0.233333pt;}
.ls3f{letter-spacing:-0.213333pt;}
.ls6b{letter-spacing:-0.186667pt;}
.ls31{letter-spacing:-0.124373pt;}
.ls16{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.123904pt;}
.ls8{letter-spacing:0.123947pt;}
.ls9{letter-spacing:0.124181pt;}
.ls4{letter-spacing:0.124245pt;}
.ls2{letter-spacing:0.124267pt;}
.ls5{letter-spacing:0.124437pt;}
.ls7{letter-spacing:0.124565pt;}
.ls33{letter-spacing:0.136035pt;}
.ls3c{letter-spacing:0.174933pt;}
.ls65{letter-spacing:0.186667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.217600pt;}
.lse{letter-spacing:0.233333pt;}
.ls15{letter-spacing:0.238000pt;}
.ls20{letter-spacing:0.271642pt;}
.ls38{letter-spacing:0.272069pt;}
.ls14{letter-spacing:0.331333pt;}
.ls67{letter-spacing:0.373333pt;}
.ls32{letter-spacing:0.407642pt;}
.ls2e{letter-spacing:0.408104pt;}
.ls46{letter-spacing:0.408197pt;}
.ls1{letter-spacing:0.426667pt;}
.ls45{letter-spacing:0.457333pt;}
.lsb{letter-spacing:0.466667pt;}
.ls3e{letter-spacing:0.513333pt;}
.ls40{letter-spacing:0.544139pt;}
.ls66{letter-spacing:0.560000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.653333pt;}
.ls2f{letter-spacing:0.681333pt;}
.ls24{letter-spacing:0.700000pt;}
.ls68{letter-spacing:0.746667pt;}
.ls6a{letter-spacing:0.750400pt;}
.ls1b{letter-spacing:0.793333pt;}
.ls41{letter-spacing:0.886667pt;}
.ls42{letter-spacing:0.914667pt;}
.ls21{letter-spacing:0.933333pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.544667pt;}
.ls11{letter-spacing:1.633333pt;}
.ls13{letter-spacing:2.384667pt;}
.ls27{letter-spacing:2.660000pt;}
.ls25{letter-spacing:2.991333pt;}
.lsd{letter-spacing:3.075333pt;}
.ls35{letter-spacing:3.173333pt;}
.ls34{letter-spacing:3.178000pt;}
.lsc{letter-spacing:3.266667pt;}
.ls1d{letter-spacing:3.313333pt;}
.ls36{letter-spacing:3.593333pt;}
.ls1c{letter-spacing:3.887333pt;}
.ls1e{letter-spacing:3.966667pt;}
.ls3a{letter-spacing:4.013333pt;}
.ls2b{letter-spacing:4.391333pt;}
.ls44{letter-spacing:4.400667pt;}
.lsf{letter-spacing:4.956000pt;}
.ls1f{letter-spacing:5.040000pt;}
.ls37{letter-spacing:5.460000pt;}
.ls39{letter-spacing:5.506667pt;}
.ls22{letter-spacing:5.768000pt;}
.ls29{letter-spacing:5.786667pt;}
.ls2c{letter-spacing:5.926667pt;}
.ls10{letter-spacing:6.113333pt;}
.ls28{letter-spacing:6.556667pt;}
.ls26{letter-spacing:7.424667pt;}
.ls43{letter-spacing:8.124667pt;}
.ls55{letter-spacing:8.533333pt;}
.ls0{letter-spacing:9.600000pt;}
.ls59{letter-spacing:130.362555pt;}
.ls62{letter-spacing:138.971621pt;}
.ls5d{letter-spacing:150.004155pt;}
.ls57{letter-spacing:153.835088pt;}
.ls5a{letter-spacing:167.838288pt;}
.ls54{letter-spacing:174.065117pt;}
.ls4a{letter-spacing:180.810717pt;}
.ls4e{letter-spacing:191.327517pt;}
.ls50{letter-spacing:194.183517pt;}
.ls61{letter-spacing:196.869904pt;}
.ls4b{letter-spacing:200.596851pt;}
.ls48{letter-spacing:218.274021pt;}
.ls60{letter-spacing:285.619877pt;}
.ls5f{letter-spacing:290.992144pt;}
.ls53{letter-spacing:314.781904pt;}
.ls5c{letter-spacing:363.559504pt;}
.ls52{letter-spacing:425.196411pt;}
.ls51{letter-spacing:434.104144pt;}
.ls5b{letter-spacing:476.808571pt;}
.ls5e{letter-spacing:489.250171pt;}
.ls4d{letter-spacing:515.460837pt;}
.ls58{letter-spacing:600.547237pt;}
.ls56{letter-spacing:616.761104pt;}
.ls4f{letter-spacing:622.797371pt;}
.ls4c{letter-spacing:627.871504pt;}
.ls49{letter-spacing:731.192571pt;}
.ls47{letter-spacing:750.942971pt;}
.ws52{word-spacing:-42.666667pt;}
.ws5{word-spacing:-14.080000pt;}
.ws4d{word-spacing:-12.600000pt;}
.ws6{word-spacing:-12.133333pt;}
.wsc4{word-spacing:-11.900000pt;}
.ws1c{word-spacing:-11.853333pt;}
.ws4c{word-spacing:-11.620000pt;}
.wsa7{word-spacing:-11.386667pt;}
.ws1f{word-spacing:-10.920000pt;}
.ws1e{word-spacing:-10.266667pt;}
.wsca{word-spacing:-10.220000pt;}
.wscb{word-spacing:-9.986667pt;}
.ws73{word-spacing:-9.940000pt;}
.wsae{word-spacing:-9.746667pt;}
.wsba{word-spacing:-9.520000pt;}
.ws9b{word-spacing:-9.386667pt;}
.ws51{word-spacing:-9.173333pt;}
.ws4e{word-spacing:-8.960000pt;}
.ws9c{word-spacing:-8.746667pt;}
.ws50{word-spacing:-8.533333pt;}
.ws0{word-spacing:-8.106667pt;}
.ws1{word-spacing:-7.978667pt;}
.wsaa{word-spacing:-7.481907pt;}
.ws74{word-spacing:-7.345872pt;}
.ws99{word-spacing:-7.209837pt;}
.ws81{word-spacing:-7.073803pt;}
.ws1d{word-spacing:-6.937768pt;}
.ws2{word-spacing:-6.203120pt;}
.wsac{word-spacing:-5.876640pt;}
.wsaf{word-spacing:-5.682307pt;}
.ws4f{word-spacing:-5.348053pt;}
.wsc0{word-spacing:-5.226667pt;}
.ws75{word-spacing:-5.223680pt;}
.ws3{word-spacing:-5.169267pt;}
.wsd6{word-spacing:-4.480000pt;}
.ws3a{word-spacing:-3.826667pt;}
.ws39{word-spacing:-3.546667pt;}
.ws4{word-spacing:-3.249253pt;}
.wsbb{word-spacing:-2.100000pt;}
.wsa4{word-spacing:-2.006667pt;}
.ws14{word-spacing:-1.960000pt;}
.ws8b{word-spacing:-1.913333pt;}
.ws41{word-spacing:-1.866667pt;}
.ws32{word-spacing:-1.773333pt;}
.ws95{word-spacing:-1.726667pt;}
.wsd2{word-spacing:-1.633333pt;}
.wsa3{word-spacing:-1.586667pt;}
.ws9{word-spacing:-1.578667pt;}
.ws69{word-spacing:-1.540000pt;}
.ws42{word-spacing:-1.446667pt;}
.wsde{word-spacing:-1.400000pt;}
.ws94{word-spacing:-1.353333pt;}
.ws65{word-spacing:-1.306667pt;}
.ws45{word-spacing:-1.260000pt;}
.ws98{word-spacing:-1.213333pt;}
.wsb9{word-spacing:-1.166667pt;}
.ws92{word-spacing:-1.120000pt;}
.ws31{word-spacing:-1.073333pt;}
.ws10{word-spacing:-1.026667pt;}
.ws3f{word-spacing:-0.933333pt;}
.ws3c{word-spacing:-0.793333pt;}
.ws28{word-spacing:-0.746667pt;}
.wsa{word-spacing:-0.704000pt;}
.ws56{word-spacing:-0.700000pt;}
.ws66{word-spacing:-0.653333pt;}
.ws29{word-spacing:-0.640000pt;}
.wsdb{word-spacing:-0.560000pt;}
.ws49{word-spacing:-0.513333pt;}
.wsd{word-spacing:-0.466667pt;}
.ws80{word-spacing:-0.420000pt;}
.wsc9{word-spacing:-0.373333pt;}
.ws87{word-spacing:-0.326667pt;}
.wsc2{word-spacing:-0.317333pt;}
.wsc3{word-spacing:-0.298667pt;}
.wsc1{word-spacing:-0.288000pt;}
.ws4b{word-spacing:-0.280000pt;}
.ws9a{word-spacing:-0.256000pt;}
.ws13{word-spacing:-0.233333pt;}
.wsb{word-spacing:-0.213333pt;}
.wsdf{word-spacing:-0.186667pt;}
.wsa0{word-spacing:-0.140000pt;}
.ws72{word-spacing:-0.085333pt;}
.wsab{word-spacing:-0.048000pt;}
.ws1b{word-spacing:-0.046667pt;}
.wsad{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.046667pt;}
.ws1a{word-spacing:0.093333pt;}
.wsb6{word-spacing:0.140000pt;}
.wse0{word-spacing:0.186667pt;}
.wsa6{word-spacing:0.213333pt;}
.ws79{word-spacing:0.280000pt;}
.ws38{word-spacing:0.326667pt;}
.ws2e{word-spacing:0.373333pt;}
.ws63{word-spacing:0.420000pt;}
.wsa8{word-spacing:0.466667pt;}
.ws8d{word-spacing:0.513333pt;}
.ws37{word-spacing:0.560000pt;}
.wsce{word-spacing:0.606667pt;}
.ws62{word-spacing:0.640000pt;}
.ws7{word-spacing:0.653333pt;}
.ws22{word-spacing:0.700000pt;}
.ws86{word-spacing:0.746667pt;}
.ws3e{word-spacing:0.793333pt;}
.wsbc{word-spacing:0.886667pt;}
.wsc{word-spacing:0.933333pt;}
.ws2d{word-spacing:1.026667pt;}
.wsc5{word-spacing:1.073333pt;}
.ws33{word-spacing:1.120000pt;}
.ws36{word-spacing:1.166667pt;}
.ws6b{word-spacing:1.213333pt;}
.wsa5{word-spacing:1.260000pt;}
.ws2c{word-spacing:1.306667pt;}
.ws40{word-spacing:1.353333pt;}
.ws18{word-spacing:1.446667pt;}
.ws88{word-spacing:1.493333pt;}
.ws2f{word-spacing:1.633333pt;}
.ws2a{word-spacing:1.680000pt;}
.ws83{word-spacing:1.726667pt;}
.ws82{word-spacing:1.773333pt;}
.ws2b{word-spacing:1.820000pt;}
.ws5b{word-spacing:1.866667pt;}
.wsd7{word-spacing:1.913333pt;}
.ws67{word-spacing:1.960000pt;}
.ws7c{word-spacing:2.006667pt;}
.ws8e{word-spacing:2.053333pt;}
.ws44{word-spacing:2.100000pt;}
.ws19{word-spacing:2.146667pt;}
.ws96{word-spacing:2.286667pt;}
.ws9f{word-spacing:2.333333pt;}
.ws97{word-spacing:2.380000pt;}
.ws55{word-spacing:2.426667pt;}
.ws64{word-spacing:2.520000pt;}
.ws84{word-spacing:2.566667pt;}
.wsbf{word-spacing:2.613333pt;}
.ws48{word-spacing:2.660000pt;}
.ws11{word-spacing:2.706667pt;}
.ws85{word-spacing:2.753333pt;}
.wse{word-spacing:2.800000pt;}
.ws35{word-spacing:2.846667pt;}
.ws89{word-spacing:2.893333pt;}
.wsb2{word-spacing:2.940000pt;}
.wsb3{word-spacing:2.986667pt;}
.ws9d{word-spacing:3.033333pt;}
.ws6a{word-spacing:3.080000pt;}
.ws20{word-spacing:3.126667pt;}
.ws68{word-spacing:3.173333pt;}
.ws8c{word-spacing:3.220000pt;}
.ws3d{word-spacing:3.266667pt;}
.ws24{word-spacing:3.313333pt;}
.ws30{word-spacing:3.406667pt;}
.wsdd{word-spacing:3.500000pt;}
.ws43{word-spacing:3.546667pt;}
.wsbd{word-spacing:3.593333pt;}
.wsa1{word-spacing:3.640000pt;}
.ws47{word-spacing:3.686667pt;}
.wsbe{word-spacing:3.733333pt;}
.ws6f{word-spacing:3.780000pt;}
.wsa2{word-spacing:3.826667pt;}
.ws21{word-spacing:3.920000pt;}
.ws26{word-spacing:3.966667pt;}
.ws23{word-spacing:4.013333pt;}
.wsd5{word-spacing:4.060000pt;}
.wsd9{word-spacing:4.106667pt;}
.ws7e{word-spacing:4.153333pt;}
.ws93{word-spacing:4.200000pt;}
.wsb5{word-spacing:4.340000pt;}
.ws7d{word-spacing:4.386667pt;}
.ws58{word-spacing:4.433333pt;}
.ws90{word-spacing:4.480000pt;}
.ws91{word-spacing:4.526667pt;}
.ws16{word-spacing:4.620000pt;}
.ws12{word-spacing:4.760000pt;}
.wsda{word-spacing:4.806667pt;}
.ws5e{word-spacing:5.040000pt;}
.wscf{word-spacing:5.086667pt;}
.ws34{word-spacing:5.226667pt;}
.ws7f{word-spacing:5.320000pt;}
.ws46{word-spacing:5.366667pt;}
.wsd8{word-spacing:5.413333pt;}
.ws5d{word-spacing:5.460000pt;}
.ws25{word-spacing:5.506667pt;}
.ws53{word-spacing:5.600000pt;}
.wsdc{word-spacing:5.693333pt;}
.wsc6{word-spacing:5.786667pt;}
.ws17{word-spacing:5.833333pt;}
.ws5c{word-spacing:5.926667pt;}
.ws54{word-spacing:6.066667pt;}
.ws6e{word-spacing:6.253333pt;}
.wsf{word-spacing:6.300000pt;}
.ws9e{word-spacing:6.346667pt;}
.ws8a{word-spacing:6.393333pt;}
.wsc8{word-spacing:6.440000pt;}
.wsb8{word-spacing:6.533333pt;}
.ws57{word-spacing:6.626667pt;}
.wsb7{word-spacing:6.673333pt;}
.ws15{word-spacing:6.720000pt;}
.ws7a{word-spacing:6.766667pt;}
.ws27{word-spacing:6.813333pt;}
.wsb4{word-spacing:7.000000pt;}
.ws4a{word-spacing:7.093333pt;}
.ws59{word-spacing:7.280000pt;}
.ws70{word-spacing:7.326667pt;}
.ws7b{word-spacing:7.373333pt;}
.wsd4{word-spacing:7.560000pt;}
.wsd0{word-spacing:7.933333pt;}
.ws71{word-spacing:8.026667pt;}
.wsc7{word-spacing:8.353333pt;}
.ws76{word-spacing:8.586667pt;}
.wsd1{word-spacing:8.633333pt;}
.ws6c{word-spacing:8.726667pt;}
.wsa9{word-spacing:8.913333pt;}
.ws3b{word-spacing:9.333333pt;}
.ws78{word-spacing:9.380000pt;}
.ws6d{word-spacing:9.520000pt;}
.ws5f{word-spacing:9.706667pt;}
.ws77{word-spacing:10.080000pt;}
.wsd3{word-spacing:10.966667pt;}
.ws61{word-spacing:12.273333pt;}
.ws60{word-spacing:12.973333pt;}
.ws5a{word-spacing:13.393333pt;}
.wscc{word-spacing:422.461333pt;}
.wsb0{word-spacing:467.794667pt;}
.wscd{word-spacing:483.326101pt;}
.wsb1{word-spacing:620.272235pt;}
._a{margin-left:-26.113333pt;}
._d{margin-left:-25.032104pt;}
._f{margin-left:-20.160000pt;}
._c{margin-left:-18.080816pt;}
._26{margin-left:-16.452549pt;}
._25{margin-left:-15.116763pt;}
._24{margin-left:-13.484408pt;}
._b{margin-left:-11.790755pt;}
._10{margin-left:-7.208141pt;}
._3{margin-left:-5.812267pt;}
._9{margin-left:-4.753333pt;}
._5{margin-left:-3.697221pt;}
._4{margin-left:-2.446259pt;}
._0{margin-left:-1.200000pt;}
._2{width:0.981333pt;}
._1{width:2.261333pt;}
._6{width:3.809688pt;}
._8{width:4.881592pt;}
._7{width:5.821184pt;}
._e{width:8.965075pt;}
._42{width:19.749333pt;}
._41{width:21.429333pt;}
._2d{width:82.416000pt;}
._3d{width:121.782725pt;}
._3e{width:124.785275pt;}
._16{width:127.794667pt;}
._2c{width:134.583325pt;}
._3a{width:137.469659pt;}
._40{width:140.552848pt;}
._34{width:141.784976pt;}
._3b{width:144.054616pt;}
._35{width:145.466147pt;}
._37{width:148.149336pt;}
._31{width:151.980837pt;}
._29{width:153.335040pt;}
._2a{width:155.016155pt;}
._32{width:159.056960pt;}
._38{width:159.981333pt;}
._2f{width:161.072688pt;}
._2e{width:163.506421pt;}
._15{width:179.444800pt;}
._22{width:184.280000pt;}
._21{width:187.863947pt;}
._1f{width:189.115539pt;}
._1d{width:191.282811pt;}
._1a{width:201.960000pt;}
._17{width:209.395096pt;}
._13{width:210.722619pt;}
._19{width:227.481637pt;}
._28{width:301.496925pt;}
._12{width:384.654259pt;}
._36{width:418.200000pt;}
._27{width:422.570667pt;}
._2b{width:439.234667pt;}
._30{width:445.194667pt;}
._33{width:458.682667pt;}
._1c{width:463.578667pt;}
._14{width:484.613333pt;}
._18{width:490.573333pt;}
._11{width:498.176000pt;}
._1b{width:504.061333pt;}
._3f{width:529.720000pt;}
._3c{width:560.410667pt;}
._39{width:562.541333pt;}
._23{width:575.098667pt;}
._20{width:605.789333pt;}
._1e{width:607.920000pt;}
.fs5{font-size:24.874667pt;}
.fsb{font-size:26.429333pt;}
.fs8{font-size:27.206933pt;}
.fs9{font-size:27.984000pt;}
.fs4{font-size:29.538667pt;}
.fsc{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs7{font-size:46.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:24.135467pt;}
.y1{bottom:24.173200pt;}
.y41{bottom:24.617333pt;}
.y1b3{bottom:57.548533pt;}
.y175{bottom:58.850200pt;}
.ya5{bottom:58.925200pt;}
.yf3{bottom:58.930200pt;}
.y88{bottom:58.950200pt;}
.y2e{bottom:58.965200pt;}
.y14d{bottom:58.995200pt;}
.yd6{bottom:59.015200pt;}
.y76{bottom:59.020200pt;}
.y10{bottom:59.025333pt;}
.y114{bottom:59.030200pt;}
.y1b2{bottom:70.885867pt;}
.yf{bottom:73.692000pt;}
.y174{bottom:75.521867pt;}
.ya4{bottom:75.596867pt;}
.yf2{bottom:75.601867pt;}
.y87{bottom:75.621867pt;}
.y2d{bottom:75.636867pt;}
.y14c{bottom:75.666867pt;}
.yd5{bottom:75.686867pt;}
.y75{bottom:75.691867pt;}
.y1b1{bottom:84.223200pt;}
.ye{bottom:88.358667pt;}
.y173{bottom:92.193533pt;}
.ya3{bottom:92.268533pt;}
.yf1{bottom:92.273533pt;}
.y86{bottom:92.293533pt;}
.y2c{bottom:92.308533pt;}
.y14b{bottom:92.338533pt;}
.yd4{bottom:92.358533pt;}
.y74{bottom:92.363533pt;}
.y1b0{bottom:97.560533pt;}
.yd{bottom:103.025333pt;}
.y172{bottom:108.865200pt;}
.ya2{bottom:108.940200pt;}
.yf0{bottom:108.945200pt;}
.y85{bottom:108.965200pt;}
.yba{bottom:108.975200pt;}
.y2b{bottom:108.980200pt;}
.y113{bottom:108.995200pt;}
.y14a{bottom:109.010200pt;}
.y73{bottom:109.020200pt;}
.yd3{bottom:109.030200pt;}
.y11a{bottom:109.035200pt;}
.y1af{bottom:110.897867pt;}
.y1ae{bottom:124.235200pt;}
.yc{bottom:125.254667pt;}
.y171{bottom:125.536867pt;}
.ya1{bottom:125.611867pt;}
.yef{bottom:125.616867pt;}
.y84{bottom:125.636867pt;}
.yd2{bottom:125.641867pt;}
.yb9{bottom:125.646867pt;}
.y2a{bottom:125.651867pt;}
.y112{bottom:125.666867pt;}
.y149{bottom:125.681867pt;}
.y72{bottom:125.691867pt;}
.y1ad{bottom:137.572533pt;}
.yb{bottom:139.921333pt;}
.y170{bottom:142.208533pt;}
.ya0{bottom:142.283533pt;}
.yee{bottom:142.288533pt;}
.y83{bottom:142.308533pt;}
.yd1{bottom:142.313533pt;}
.yb8{bottom:142.318533pt;}
.y29{bottom:142.323533pt;}
.y111{bottom:142.338533pt;}
.y148{bottom:142.353533pt;}
.y71{bottom:142.363533pt;}
.y1ac{bottom:150.909867pt;}
.y122{bottom:153.114933pt;}
.ya{bottom:154.588000pt;}
.y16f{bottom:158.880200pt;}
.y9f{bottom:158.955200pt;}
.yed{bottom:158.960200pt;}
.y82{bottom:158.980200pt;}
.yd0{bottom:158.985200pt;}
.yb7{bottom:158.990200pt;}
.y28{bottom:158.995200pt;}
.y110{bottom:159.010200pt;}
.y70{bottom:159.025200pt;}
.y1ab{bottom:164.247200pt;}
.y121{bottom:166.448267pt;}
.y16e{bottom:175.551867pt;}
.y9e{bottom:175.626867pt;}
.yec{bottom:175.631867pt;}
.y81{bottom:175.651867pt;}
.ycf{bottom:175.656867pt;}
.yb6{bottom:175.661867pt;}
.y27{bottom:175.666867pt;}
.y10f{bottom:175.681867pt;}
.y6f{bottom:175.696867pt;}
.y9{bottom:176.817333pt;}
.y1aa{bottom:177.584533pt;}
.y120{bottom:179.781600pt;}
.y1a9{bottom:190.921867pt;}
.y8{bottom:191.484000pt;}
.y16d{bottom:192.223533pt;}
.y6e{bottom:192.253533pt;}
.y9d{bottom:192.298533pt;}
.yeb{bottom:192.303533pt;}
.y80{bottom:192.323533pt;}
.yce{bottom:192.328533pt;}
.yb5{bottom:192.333533pt;}
.y26{bottom:192.338533pt;}
.y10e{bottom:192.353533pt;}
.y147{bottom:192.368533pt;}
.y11f{bottom:193.114933pt;}
.y1a8{bottom:204.259200pt;}
.y7{bottom:206.150667pt;}
.y11e{bottom:206.448267pt;}
.y16c{bottom:208.895200pt;}
.y6d{bottom:208.925200pt;}
.y9c{bottom:208.970200pt;}
.yea{bottom:208.975200pt;}
.y7f{bottom:208.995200pt;}
.ycd{bottom:209.000200pt;}
.yb4{bottom:209.005200pt;}
.y25{bottom:209.010200pt;}
.y10d{bottom:209.025200pt;}
.y1a7{bottom:217.596533pt;}
.y11d{bottom:219.781600pt;}
.y6{bottom:220.817333pt;}
.y16b{bottom:225.566867pt;}
.y6c{bottom:225.596867pt;}
.y9b{bottom:225.641867pt;}
.ye9{bottom:225.646867pt;}
.y7e{bottom:225.666867pt;}
.ycc{bottom:225.671867pt;}
.yb3{bottom:225.676867pt;}
.y24{bottom:225.681867pt;}
.y10c{bottom:225.696867pt;}
.y1a6{bottom:230.933867pt;}
.y11c{bottom:233.114933pt;}
.y16a{bottom:242.238533pt;}
.y6b{bottom:242.268533pt;}
.y9a{bottom:242.313533pt;}
.ye8{bottom:242.318533pt;}
.y7d{bottom:242.338533pt;}
.ycb{bottom:242.343533pt;}
.yb2{bottom:242.348533pt;}
.y23{bottom:242.353533pt;}
.y10b{bottom:242.368533pt;}
.y5{bottom:243.046667pt;}
.y1a5{bottom:244.271200pt;}
.y155{bottom:244.638800pt;}
.y11b{bottom:246.448267pt;}
.y1a4{bottom:257.608533pt;}
.y4{bottom:257.713333pt;}
.y154{bottom:257.972133pt;}
.y169{bottom:258.910200pt;}
.y6a{bottom:258.940200pt;}
.y99{bottom:258.985200pt;}
.ye7{bottom:258.990200pt;}
.y7c{bottom:259.010200pt;}
.yca{bottom:259.015200pt;}
.yb1{bottom:259.020200pt;}
.y22{bottom:259.025200pt;}
.y10a{bottom:259.035200pt;}
.y1a3{bottom:270.945867pt;}
.y153{bottom:271.305467pt;}
.y1e7{bottom:272.177600pt;}
.y3{bottom:272.380000pt;}
.y168{bottom:275.581867pt;}
.y69{bottom:275.611867pt;}
.y98{bottom:275.656867pt;}
.ye6{bottom:275.661867pt;}
.y7b{bottom:275.681867pt;}
.yc9{bottom:275.686867pt;}
.yb0{bottom:275.691867pt;}
.y21{bottom:275.696867pt;}
.y1a2{bottom:284.283200pt;}
.y152{bottom:284.638800pt;}
.y1e6{bottom:285.514933pt;}
.y167{bottom:292.253533pt;}
.y68{bottom:292.283533pt;}
.y109{bottom:292.308533pt;}
.y97{bottom:292.328533pt;}
.ye5{bottom:292.333533pt;}
.y7a{bottom:292.353533pt;}
.yc8{bottom:292.358533pt;}
.yaf{bottom:292.363533pt;}
.y20{bottom:292.368533pt;}
.y1a1{bottom:297.620533pt;}
.y151{bottom:297.972133pt;}
.y1e5{bottom:298.852267pt;}
.y166{bottom:308.925200pt;}
.y67{bottom:308.955200pt;}
.y108{bottom:308.980200pt;}
.y96{bottom:309.000200pt;}
.ye4{bottom:309.005200pt;}
.y79{bottom:309.025200pt;}
.yc7{bottom:309.030200pt;}
.y1f{bottom:309.035200pt;}
.y1a0{bottom:310.957867pt;}
.y150{bottom:311.305467pt;}
.y1e4{bottom:312.189600pt;}
.y19f{bottom:324.295200pt;}
.y14f{bottom:324.638800pt;}
.y1e3{bottom:325.526933pt;}
.y165{bottom:325.596867pt;}
.y66{bottom:325.626867pt;}
.y107{bottom:325.651867pt;}
.y95{bottom:325.671867pt;}
.ye3{bottom:325.676867pt;}
.yc6{bottom:325.691867pt;}
.y78{bottom:325.696867pt;}
.y19e{bottom:337.632533pt;}
.y14e{bottom:337.972133pt;}
.y1e2{bottom:338.864267pt;}
.y164{bottom:342.268533pt;}
.y137{bottom:342.293533pt;}
.y65{bottom:342.298533pt;}
.y106{bottom:342.323533pt;}
.y94{bottom:342.343533pt;}
.ye2{bottom:342.348533pt;}
.yc5{bottom:342.363533pt;}
.y77{bottom:342.368533pt;}
.y19d{bottom:350.969867pt;}
.y1e1{bottom:352.201600pt;}
.yc1{bottom:355.576400pt;}
.y163{bottom:358.940200pt;}
.y136{bottom:358.965200pt;}
.y64{bottom:358.970200pt;}
.y105{bottom:358.995200pt;}
.y93{bottom:359.015200pt;}
.ye1{bottom:359.020200pt;}
.yc4{bottom:359.025200pt;}
.y19c{bottom:364.307200pt;}
.y1e0{bottom:365.538933pt;}
.yc0{bottom:368.909733pt;}
.y162{bottom:375.611867pt;}
.y135{bottom:375.636867pt;}
.y63{bottom:375.641867pt;}
.y104{bottom:375.666867pt;}
.y92{bottom:375.686867pt;}
.ye0{bottom:375.691867pt;}
.yc3{bottom:375.696867pt;}
.y19b{bottom:377.644533pt;}
.y1df{bottom:378.876267pt;}
.ybf{bottom:382.243067pt;}
.y3e{bottom:387.686333pt;}
.y19a{bottom:390.981867pt;}
.y1de{bottom:392.213600pt;}
.y161{bottom:392.283533pt;}
.y134{bottom:392.308533pt;}
.y62{bottom:392.313533pt;}
.y103{bottom:392.338533pt;}
.y91{bottom:392.358533pt;}
.ydf{bottom:392.363533pt;}
.yc2{bottom:392.368533pt;}
.y8e{bottom:394.190800pt;}
.ybe{bottom:395.576400pt;}
.y199{bottom:404.319200pt;}
.y3d{bottom:404.358000pt;}
.y1dd{bottom:405.550933pt;}
.y8d{bottom:407.524133pt;}
.ybd{bottom:408.909733pt;}
.y160{bottom:408.955200pt;}
.y133{bottom:408.980200pt;}
.y61{bottom:408.985200pt;}
.y102{bottom:409.010200pt;}
.y90{bottom:409.030200pt;}
.yde{bottom:409.035200pt;}
.y198{bottom:417.656533pt;}
.y1dc{bottom:418.888267pt;}
.y8c{bottom:420.857467pt;}
.y3c{bottom:421.029667pt;}
.ybc{bottom:422.243067pt;}
.y15f{bottom:425.626867pt;}
.y132{bottom:425.651867pt;}
.y60{bottom:425.656867pt;}
.y101{bottom:425.681867pt;}
.y8f{bottom:425.701867pt;}
.y197{bottom:430.993867pt;}
.y1db{bottom:432.225600pt;}
.y8b{bottom:434.190800pt;}
.ybb{bottom:435.576400pt;}
.y3b{bottom:437.701333pt;}
.y15e{bottom:442.298533pt;}
.y131{bottom:442.323533pt;}
.y5f{bottom:442.328533pt;}
.y100{bottom:442.353533pt;}
.y196{bottom:444.331200pt;}
.ydd{bottom:444.866133pt;}
.y1da{bottom:445.562933pt;}
.y8a{bottom:447.524133pt;}
.y3a{bottom:454.373000pt;}
.y195{bottom:457.668533pt;}
.ydc{bottom:458.199467pt;}
.y1d9{bottom:458.900267pt;}
.y15d{bottom:458.970200pt;}
.y130{bottom:458.995200pt;}
.y5e{bottom:459.000200pt;}
.yff{bottom:459.025200pt;}
.y89{bottom:460.857467pt;}
.y194{bottom:471.005867pt;}
.y39{bottom:471.044667pt;}
.ydb{bottom:471.532800pt;}
.y1d8{bottom:472.237600pt;}
.yae{bottom:475.316133pt;}
.y15c{bottom:475.641867pt;}
.y12f{bottom:475.666867pt;}
.y5d{bottom:475.671867pt;}
.yfe{bottom:475.696867pt;}
.yfc{bottom:477.701867pt;}
.y193{bottom:484.343200pt;}
.yda{bottom:484.866133pt;}
.y1d7{bottom:485.574933pt;}
.y38{bottom:487.716333pt;}
.yad{bottom:488.649467pt;}
.yfb{bottom:491.035200pt;}
.y15b{bottom:492.313533pt;}
.y12e{bottom:492.338533pt;}
.y5c{bottom:492.343533pt;}
.yfd{bottom:492.368533pt;}
.y192{bottom:497.680533pt;}
.yd9{bottom:498.199467pt;}
.y1d6{bottom:498.912267pt;}
.yac{bottom:501.982800pt;}
.yfa{bottom:504.368533pt;}
.y37{bottom:504.388000pt;}
.y15a{bottom:508.985200pt;}
.y12d{bottom:509.010200pt;}
.y5b{bottom:509.015200pt;}
.y191{bottom:511.017867pt;}
.yd8{bottom:511.532800pt;}
.y1d5{bottom:512.249600pt;}
.yab{bottom:515.316133pt;}
.yf9{bottom:517.701867pt;}
.y36{bottom:521.059667pt;}
.y190{bottom:524.355200pt;}
.yd7{bottom:524.866133pt;}
.y1d4{bottom:525.586933pt;}
.y159{bottom:525.656867pt;}
.y12c{bottom:525.681867pt;}
.y5a{bottom:525.686867pt;}
.yaa{bottom:528.649467pt;}
.yf8{bottom:531.035200pt;}
.y119{bottom:535.209733pt;}
.y18f{bottom:537.692533pt;}
.y35{bottom:537.731333pt;}
.y1d3{bottom:538.924267pt;}
.ya9{bottom:541.982800pt;}
.y158{bottom:542.328533pt;}
.y12b{bottom:542.353533pt;}
.y59{bottom:542.358533pt;}
.yf7{bottom:544.368533pt;}
.y118{bottom:548.543067pt;}
.y18e{bottom:551.029867pt;}
.y1d2{bottom:552.261600pt;}
.y34{bottom:554.403000pt;}
.ya8{bottom:555.316133pt;}
.yf6{bottom:557.701867pt;}
.y157{bottom:559.000200pt;}
.y12a{bottom:559.025200pt;}
.y58{bottom:559.030200pt;}
.y117{bottom:561.876400pt;}
.y1d1{bottom:565.598933pt;}
.ya7{bottom:568.649467pt;}
.yf5{bottom:571.035200pt;}
.y33{bottom:571.074667pt;}
.y116{bottom:575.209733pt;}
.y156{bottom:575.671867pt;}
.y57{bottom:575.691867pt;}
.y129{bottom:575.696867pt;}
.y1d0{bottom:578.936267pt;}
.ya6{bottom:581.982800pt;}
.yf4{bottom:584.368533pt;}
.y32{bottom:587.746333pt;}
.y115{bottom:588.543067pt;}
.y1cf{bottom:592.273600pt;}
.y18d{bottom:592.340200pt;}
.y128{bottom:592.343533pt;}
.y56{bottom:592.363533pt;}
.y31{bottom:604.418000pt;}
.y1ce{bottom:605.610933pt;}
.y55{bottom:609.000200pt;}
.y18c{bottom:609.011867pt;}
.y127{bottom:609.015200pt;}
.y1cd{bottom:618.948267pt;}
.y30{bottom:621.089667pt;}
.y54{bottom:625.671867pt;}
.y18b{bottom:625.683533pt;}
.y126{bottom:625.686867pt;}
.y1cc{bottom:632.285600pt;}
.y2f{bottom:637.761333pt;}
.y53{bottom:642.343533pt;}
.y125{bottom:642.358533pt;}
.y1cb{bottom:645.622933pt;}
.y1ca{bottom:658.960267pt;}
.y52{bottom:659.015200pt;}
.y124{bottom:659.030200pt;}
.y1c9{bottom:672.297600pt;}
.y51{bottom:675.686867pt;}
.y123{bottom:675.701867pt;}
.y1e{bottom:678.296133pt;}
.y1c8{bottom:685.634933pt;}
.y50{bottom:692.358533pt;}
.y1d{bottom:695.629467pt;}
.y1c7{bottom:698.972267pt;}
.y4f{bottom:709.030200pt;}
.y1c6{bottom:712.309600pt;}
.y1c{bottom:716.514800pt;}
.y146{bottom:722.657200pt;}
.y1c5{bottom:725.646933pt;}
.y4e{bottom:725.701867pt;}
.y1b{bottom:730.296133pt;}
.y183{bottom:731.841333pt;}
.y145{bottom:733.771867pt;}
.y1c4{bottom:738.984267pt;}
.y4d{bottom:742.368533pt;}
.y182{bottom:742.956000pt;}
.y1a{bottom:747.629467pt;}
.y1c3{bottom:752.321600pt;}
.y144{bottom:759.579467pt;}
.y181{bottom:762.149467pt;}
.y19{bottom:764.962800pt;}
.y1c2{bottom:765.658933pt;}
.y143{bottom:774.580133pt;}
.y4c{bottom:775.651867pt;}
.y18a{bottom:775.676867pt;}
.y180{bottom:777.150133pt;}
.y1c1{bottom:778.996267pt;}
.y18{bottom:782.296133pt;}
.y142{bottom:789.581067pt;}
.y17f{bottom:792.155467pt;}
.y4b{bottom:792.323533pt;}
.y1c0{bottom:792.333600pt;}
.y189{bottom:792.348533pt;}
.y17{bottom:799.629467pt;}
.y141{bottom:804.581867pt;}
.y1bf{bottom:805.670933pt;}
.y17e{bottom:807.156267pt;}
.y4a{bottom:808.995200pt;}
.y188{bottom:809.020200pt;}
.y1be{bottom:819.008267pt;}
.y140{bottom:819.582533pt;}
.y16{bottom:820.514800pt;}
.y17d{bottom:822.152533pt;}
.y49{bottom:825.666867pt;}
.y187{bottom:825.691867pt;}
.y1bd{bottom:832.345600pt;}
.y13f{bottom:834.587867pt;}
.y17c{bottom:837.157867pt;}
.y15{bottom:838.301467pt;}
.y48{bottom:842.338533pt;}
.y186{bottom:842.363533pt;}
.y1bc{bottom:845.682933pt;}
.y13e{bottom:849.584133pt;}
.y17b{bottom:852.154133pt;}
.y14{bottom:855.634800pt;}
.y47{bottom:859.010200pt;}
.y1bb{bottom:859.020267pt;}
.y185{bottom:859.035200pt;}
.y13d{bottom:864.584933pt;}
.y17a{bottom:867.154933pt;}
.y1ba{bottom:872.357600pt;}
.y13{bottom:872.962800pt;}
.y46{bottom:875.681867pt;}
.y184{bottom:875.701867pt;}
.y13c{bottom:879.590267pt;}
.y179{bottom:882.160267pt;}
.y1b9{bottom:885.694933pt;}
.y45{bottom:892.353533pt;}
.y13a{bottom:895.876133pt;}
.y177{bottom:897.161067pt;}
.y1b8{bottom:899.032267pt;}
.y139{bottom:902.542800pt;}
.y176{bottom:903.827733pt;}
.y12{bottom:905.033600pt;}
.y44{bottom:909.025200pt;}
.y13b{bottom:909.209467pt;}
.y178{bottom:910.494400pt;}
.y1b7{bottom:912.369600pt;}
.y43{bottom:925.696867pt;}
.y1b6{bottom:925.706933pt;}
.y138{bottom:936.527067pt;}
.y11{bottom:937.036267pt;}
.y1b5{bottom:939.044267pt;}
.y42{bottom:942.368533pt;}
.y1b4{bottom:952.381600pt;}
.y2{bottom:1002.998667pt;}
.y40{bottom:1003.204800pt;}
.h7{height:18.954496pt;}
.h1a{height:26.618667pt;}
.h1{height:32.512000pt;}
.h8{height:33.162496pt;}
.ha{height:33.273333pt;}
.h2{height:33.888000pt;}
.h3{height:34.133333pt;}
.hd{height:34.978277pt;}
.hf{height:34.998277pt;}
.h12{height:35.038277pt;}
.hc{height:35.078277pt;}
.h11{height:35.098277pt;}
.h10{height:35.178277pt;}
.h16{height:35.235152pt;}
.h19{height:35.235685pt;}
.h13{height:35.238277pt;}
.h17{height:35.253285pt;}
.h18{height:35.253819pt;}
.he{height:35.398277pt;}
.hb{height:35.560000pt;}
.h14{height:35.740704pt;}
.h6{height:39.359131pt;}
.h5{height:39.380464pt;}
.h9{height:48.768000pt;}
.h15{height:59.178667pt;}
.h4{height:89.408000pt;}
.h0{height:1044.000000pt;}
.w0{width:780.000000pt;}
.x0{left:0.000000pt;}
.x3{left:52.002533pt;}
.xf{left:107.464133pt;}
.x9{left:113.133333pt;}
.x4{left:206.319867pt;}
.x15{left:224.134933pt;}
.x5{left:226.328200pt;}
.x6{left:243.795600pt;}
.x10{left:423.154800pt;}
.xa{left:468.514667pt;}
.x11{left:505.576133pt;}
.xb{left:566.061333pt;}
.x12{left:569.352133pt;}
.x2{left:589.734533pt;}
.xc{left:643.693333pt;}
.x13{left:653.885467pt;}
.xd{left:665.047200pt;}
.x14{left:672.605467pt;}
.x8{left:715.773733pt;}
.xe{left:717.672400pt;}
.x7{left:722.653600pt;}
.x1{left:723.901600pt;}
}




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