
    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_7d2321db61e77d7e4a2e2685.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_0ccf838a226eee6528d189db.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_a8fadbca753d0b4929e1d3c2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_4ba557e0a4301f58e4fc8993.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_d921a3e027a89662ca923a6d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_c201ab1d80be0ee5c0722106.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_eb4f97821f93df9c131b52a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_1d5d695d76a39f06e3071880.woff')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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_d6cef97fab4610404b0fc9ee.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982000;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_4f0ad8202cb30202fdee8b21.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_281e8c08c73d0e730756f089.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_a569dba16998876120fea407.woff')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_5d34f8ffa97ed51db6f5789b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.684000;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_4f0ad8202cb30202fdee8b21.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9064c130748c4263161e13b4.woff')format("woff");}.fff{font-family:fff;line-height:0.840000;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_aed7e08f69c24c79a37e1d33.woff')format("woff");}.ff10{font-family:ff10;line-height:1.081000;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_c514115b54a3eb15cf6b98cd.woff')format("woff");}.ff11{font-family:ff11;line-height:0.982000;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_cab5badd4e107e3d2402c736.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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);}
.m1{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);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:26.034000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.988532px;}
.ls6{letter-spacing:2.988710px;}
.lse{letter-spacing:19.922338px;}
.lsc{letter-spacing:19.923810px;}
.ls3{letter-spacing:26.364305px;}
.ls5{letter-spacing:26.964710px;}
.ls4{letter-spacing:29.532710px;}
.lsa{letter-spacing:29.886538px;}
.ls0{letter-spacing:29.887800px;}
.lsb{letter-spacing:29.889030px;}
.ls8{letter-spacing:29.892538px;}
.lsd{letter-spacing:33.152338px;}
.ls9{letter-spacing:59.774400px;}
.ls7{letter-spacing:85.650532px;}
.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;}
}
.wsf{word-spacing:-44.473046px;}
.ws71{word-spacing:-34.370970px;}
.wse0{word-spacing:-30.551309px;}
.ws47{word-spacing:-29.887800px;}
.wsd{word-spacing:-28.572737px;}
.wsfb{word-spacing:-19.905275px;}
.ws73{word-spacing:-16.557841px;}
.ws96{word-spacing:-16.378514px;}
.ws107{word-spacing:-16.318739px;}
.wsf5{word-spacing:-15.601432px;}
.ws5c{word-spacing:-15.541656px;}
.ws82{word-spacing:-15.422105px;}
.wse7{word-spacing:-15.302554px;}
.wsf4{word-spacing:-15.242778px;}
.wsdc{word-spacing:-15.123227px;}
.ws63{word-spacing:-14.943900px;}
.ws77{word-spacing:-14.764573px;}
.wsdb{word-spacing:-14.525471px;}
.wsfe{word-spacing:-14.166817px;}
.ws5e{word-spacing:-14.025782px;}
.ws5f{word-spacing:-13.977961px;}
.wse8{word-spacing:-13.867939px;}
.ws99{word-spacing:-13.808164px;}
.wsce{word-spacing:-13.748388px;}
.wscc{word-spacing:-13.628837px;}
.ws106{word-spacing:-13.569061px;}
.ws103{word-spacing:-13.509286px;}
.ws59{word-spacing:-13.270183px;}
.ws69{word-spacing:-13.090856px;}
.wsee{word-spacing:-12.971305px;}
.ws52{word-spacing:-12.612652px;}
.ws51{word-spacing:-12.552876px;}
.wsf9{word-spacing:-12.493100px;}
.ws9b{word-spacing:-12.373549px;}
.ws105{word-spacing:-12.313774px;}
.wsec{word-spacing:-12.253998px;}
.ws8c{word-spacing:-12.134447px;}
.ws8e{word-spacing:-12.074671px;}
.ws98{word-spacing:-12.014896px;}
.wsf1{word-spacing:-11.955120px;}
.ws93{word-spacing:-11.775793px;}
.ws8f{word-spacing:-11.596466px;}
.ws10{word-spacing:-11.476915px;}
.ws38{word-spacing:-11.417140px;}
.ws67{word-spacing:-11.297588px;}
.ws76{word-spacing:-11.237813px;}
.ws80{word-spacing:-11.118262px;}
.ws92{word-spacing:-10.998710px;}
.wsf7{word-spacing:-10.938935px;}
.ws101{word-spacing:-10.879159px;}
.ws49{word-spacing:-10.699832px;}
.ws9c{word-spacing:-10.580281px;}
.wsaa{word-spacing:-10.460730px;}
.ws66{word-spacing:-10.281403px;}
.ws94{word-spacing:-10.102076px;}
.ws42{word-spacing:-10.042301px;}
.ws14{word-spacing:-9.989433px;}
.ws11{word-spacing:-9.982525px;}
.ws90{word-spacing:-9.970127px;}
.wse6{word-spacing:-9.968193px;}
.wsc1{word-spacing:-9.968108px;}
.ws9f{word-spacing:-9.966247px;}
.wse1{word-spacing:-9.962193px;}
.ws16{word-spacing:-9.922750px;}
.ws6c{word-spacing:-9.862974px;}
.wsae{word-spacing:-9.683647px;}
.ws72{word-spacing:-9.623872px;}
.wse9{word-spacing:-9.564096px;}
.ws6d{word-spacing:-9.534785px;}
.ws89{word-spacing:-9.444545px;}
.ws75{word-spacing:-9.384769px;}
.ws6b{word-spacing:-9.324994px;}
.wsc7{word-spacing:-9.323316px;}
.ws5d{word-spacing:-9.265218px;}
.wse5{word-spacing:-9.211420px;}
.wscf{word-spacing:-9.205442px;}
.wse4{word-spacing:-9.151644px;}
.wsde{word-spacing:-9.085891px;}
.ws70{word-spacing:-9.026116px;}
.wsfa{word-spacing:-8.906564px;}
.ws44{word-spacing:-8.846789px;}
.ws43{word-spacing:-8.787013px;}
.wsf0{word-spacing:-8.727238px;}
.ws50{word-spacing:-8.667462px;}
.ws79{word-spacing:-8.607686px;}
.wsa6{word-spacing:-8.547911px;}
.ws56{word-spacing:-8.488135px;}
.ws7b{word-spacing:-8.484247px;}
.ws1e{word-spacing:-8.478592px;}
.ws58{word-spacing:-8.428360px;}
.ws4d{word-spacing:-8.308808px;}
.ws4c{word-spacing:-8.069706px;}
.ws1a{word-spacing:-7.711052px;}
.ws2d{word-spacing:-7.651277px;}
.wsa5{word-spacing:-7.591501px;}
.ws97{word-spacing:-7.531726px;}
.wsef{word-spacing:-7.471950px;}
.ws4a{word-spacing:-7.412174px;}
.ws41{word-spacing:-7.292623px;}
.ws88{word-spacing:-7.173072px;}
.ws60{word-spacing:-7.053521px;}
.wsd9{word-spacing:-6.993745px;}
.wsff{word-spacing:-6.874194px;}
.ws54{word-spacing:-6.754643px;}
.wsbe{word-spacing:-6.665316px;}
.wsc0{word-spacing:-6.635092px;}
.wsf8{word-spacing:-6.515540px;}
.wsd7{word-spacing:-6.455765px;}
.wsad{word-spacing:-6.276438px;}
.ws95{word-spacing:-6.156887px;}
.ws7f{word-spacing:-6.097111px;}
.wsd4{word-spacing:-6.037336px;}
.ws45{word-spacing:-5.917784px;}
.wseb{word-spacing:-5.678682px;}
.ws4e{word-spacing:-5.618906px;}
.wsda{word-spacing:-5.559131px;}
.ws4f{word-spacing:-4.782048px;}
.wsb7{word-spacing:-4.483170px;}
.wse2{word-spacing:-4.429372px;}
.wsb1{word-spacing:-4.423394px;}
.wsf3{word-spacing:-4.363619px;}
.wsa3{word-spacing:-4.244068px;}
.ws9a{word-spacing:-4.184292px;}
.ws4b{word-spacing:-4.064741px;}
.wsb6{word-spacing:-4.004965px;}
.ws1c{word-spacing:-3.935635px;}
.ws6f{word-spacing:-3.825638px;}
.wsd2{word-spacing:-3.706087px;}
.ws62{word-spacing:-3.646312px;}
.ws68{word-spacing:-3.586536px;}
.ws61{word-spacing:-3.526760px;}
.wse3{word-spacing:-3.518193px;}
.ws64{word-spacing:-3.347434px;}
.ws29{word-spacing:-3.338989px;}
.ws2b{word-spacing:-3.320882px;}
.ws35{word-spacing:-3.320218px;}
.ws1f{word-spacing:-3.319112px;}
.ws23{word-spacing:-3.315237px;}
.ws46{word-spacing:-3.168107px;}
.wsf6{word-spacing:-3.048556px;}
.wsb9{word-spacing:-2.988780px;}
.ws104{word-spacing:-2.749678px;}
.wsb0{word-spacing:-2.570351px;}
.wsd5{word-spacing:-1.793268px;}
.wsb2{word-spacing:-1.631316px;}
.wsb4{word-spacing:-1.613941px;}
.ws102{word-spacing:-1.374839px;}
.ws1d{word-spacing:-1.018579px;}
.ws108{word-spacing:-0.836858px;}
.wsba{word-spacing:-0.298878px;}
.wsb{word-spacing:-0.086077px;}
.ws1{word-spacing:-0.071731px;}
.ws74{word-spacing:-0.059776px;}
.wse{word-spacing:0.000000px;}
.ws9d{word-spacing:0.597756px;}
.wsd1{word-spacing:1.016185px;}
.wsd8{word-spacing:1.315063px;}
.wsa2{word-spacing:2.151922px;}
.wsac{word-spacing:2.331248px;}
.wsa0{word-spacing:3.466985px;}
.ws7d{word-spacing:4.004965px;}
.wsa1{word-spacing:5.858009px;}
.ws9{word-spacing:14.848358px;}
.ws6{word-spacing:16.516109px;}
.ws5a{word-spacing:16.567274px;}
.ws5{word-spacing:16.946496px;}
.ws2c{word-spacing:17.035274px;}
.ws8d{word-spacing:17.729654px;}
.wsfc{word-spacing:17.861069px;}
.ws3b{word-spacing:18.010514px;}
.wsa{word-spacing:18.399053px;}
.ws3a{word-spacing:19.167944px;}
.wsed{word-spacing:19.364714px;}
.ws53{word-spacing:19.785464px;}
.ws3d{word-spacing:19.839944px;}
.ws10b{word-spacing:19.860134px;}
.ws109{word-spacing:19.860704px;}
.wscd{word-spacing:19.861274px;}
.wsc2{word-spacing:19.861754px;}
.ws83{word-spacing:19.862324px;}
.ws10a{word-spacing:19.862894px;}
.wsb8{word-spacing:19.863284px;}
.wsca{word-spacing:19.863944px;}
.wsfd{word-spacing:19.864514px;}
.wsc9{word-spacing:19.864994px;}
.wsab{word-spacing:19.865084px;}
.ws91{word-spacing:19.865564px;}
.ws6e{word-spacing:19.866134px;}
.ws8b{word-spacing:19.866704px;}
.ws10c{word-spacing:19.867754px;}
.ws100{word-spacing:19.867844px;}
.ws81{word-spacing:19.868324px;}
.ws9e{word-spacing:19.868894px;}
.wsa8{word-spacing:19.870514px;}
.wsea{word-spacing:19.875464px;}
.ws8a{word-spacing:20.363084px;}
.wsc8{word-spacing:20.509754px;}
.wsc{word-spacing:20.921460px;}
.ws8{word-spacing:21.035174px;}
.wsa7{word-spacing:21.282134px;}
.ws7c{word-spacing:21.353084px;}
.ws7a{word-spacing:21.357464px;}
.ws57{word-spacing:21.387464px;}
.ws4{word-spacing:21.573158px;}
.ws7{word-spacing:21.949747px;}
.ws5b{word-spacing:22.125464px;}
.ws13{word-spacing:22.176748px;}
.wsa9{word-spacing:22.780514px;}
.ws55{word-spacing:23.088704px;}
.wsbf{word-spacing:23.164994px;}
.ws2{word-spacing:23.312640px;}
.ws3{word-spacing:23.384371px;}
.ws20{word-spacing:23.670704px;}
.ws31{word-spacing:24.334514px;}
.ws25{word-spacing:24.497084px;}
.ws30{word-spacing:25.309754px;}
.wsb5{word-spacing:25.822994px;}
.ws78{word-spacing:26.806147px;}
.ws40{word-spacing:26.827469px;}
.ws3c{word-spacing:28.134134px;}
.wsb3{word-spacing:28.203944px;}
.ws1b{word-spacing:29.637944px;}
.ws0{word-spacing:31.091012px;}
.ws65{word-spacing:31.322414px;}
.ws6a{word-spacing:32.192873px;}
.wsd6{word-spacing:32.278950px;}
.ws36{word-spacing:32.972894px;}
.ws24{word-spacing:33.960704px;}
.ws37{word-spacing:34.787564px;}
.wsaf{word-spacing:35.793139px;}
.wsa4{word-spacing:35.794508px;}
.wsdf{word-spacing:35.798953px;}
.wsd0{word-spacing:35.801804px;}
.wscb{word-spacing:35.810911px;}
.ws27{word-spacing:35.950994px;}
.ws33{word-spacing:36.620324px;}
.ws21{word-spacing:37.777754px;}
.ws12{word-spacing:38.951084px;}
.ws2f{word-spacing:39.271754px;}
.ws22{word-spacing:40.104704px;}
.ws84{word-spacing:41.842920px;}
.ws19{word-spacing:42.262514px;}
.ws28{word-spacing:42.925754px;}
.ws26{word-spacing:43.011944px;}
.ws15{word-spacing:43.097654px;}
.ws7e{word-spacing:45.175214px;}
.ws32{word-spacing:46.245374px;}
.ws2a{word-spacing:47.587274px;}
.ws2e{word-spacing:49.890134px;}
.ws17{word-spacing:52.395464px;}
.ws39{word-spacing:55.532324px;}
.ws3e{word-spacing:55.548134px;}
.ws18{word-spacing:58.041464px;}
.ws34{word-spacing:58.531184px;}
.wsf2{word-spacing:66.925210px;}
.ws86{word-spacing:71.730720px;}
.wsdd{word-spacing:78.485363px;}
.ws85{word-spacing:78.545138px;}
.ws48{word-spacing:80.625869px;}
.ws3f{word-spacing:96.750773px;}
.wsd3{word-spacing:108.373163px;}
.ws87{word-spacing:108.432938px;}
.wsbb{word-spacing:120.029405px;}
.wsc3{word-spacing:130.968340px;}
.wsbc{word-spacing:156.731623px;}
.wsc4{word-spacing:167.670558px;}
.wsbd{word-spacing:186.619423px;}
.wsc6{word-spacing:197.558358px;}
.wsc5{word-spacing:197.618134px;}
._13{margin-left:-31.561517px;}
._a{margin-left:-29.887800px;}
._c{margin-left:-28.214083px;}
._14{margin-left:-14.107042px;}
._b{margin-left:-9.982525px;}
._0{margin-left:-8.160100px;}
._99{margin-left:-7.100846px;}
._3{margin-left:-5.881958px;}
._4{margin-left:-4.572864px;}
._6{margin-left:-3.066509px;}
._2{margin-left:-1.865011px;}
._1{width:1.936742px;}
._23{width:3.066509px;}
._be{width:4.576121px;}
._e{width:6.635092px;}
._49{width:9.348866px;}
._48{width:10.556408px;}
._2d{width:13.007211px;}
._37{width:14.573291px;}
._2c{width:15.846580px;}
._38{width:17.011980px;}
._2a{width:18.181146px;}
._10{width:19.905275px;}
._59{width:20.933443px;}
._24{width:22.081132px;}
._7{width:23.276774px;}
._5{width:24.316877px;}
._29{width:25.422583px;}
._1a{width:26.508230px;}
._26{width:27.777791px;}
._28{width:29.553082px;}
._16{width:31.202863px;}
._b1{width:32.278886px;}
._2b{width:33.354785px;}
._aa{width:34.370970px;}
._8{width:35.686272px;}
._46{width:36.761994px;}
._ab{width:38.447678px;}
._27{width:39.571447px;}
._36{width:40.611582px;}
._11{width:41.884806px;}
._44{width:43.823702px;}
._1c{width:45.798885px;}
._25{width:47.559972px;}
._ac{width:48.776813px;}
._ad{width:51.466387px;}
._45{width:53.690456px;}
._17{width:55.292430px;}
._9a{width:58.470041px;}
._f{width:61.090663px;}
._47{width:67.199742px;}
._5e{width:72.555673px;}
._1b{width:75.836995px;}
._d{width:81.055714px;}
._15{width:82.191450px;}
._35{width:96.836850px;}
._4f{width:101.618520px;}
._4b{width:108.432938px;}
._12{width:111.780372px;}
._32{width:125.528760px;}
._ba{width:127.860008px;}
._4c{width:134.196222px;}
._3a{width:138.320738px;}
._ae{width:143.640767px;}
._4d{width:144.776503px;}
._4e{width:146.366521px;}
._b4{width:154.101497px;}
._50{width:164.084022px;}
._4a{width:176.517347px;}
._39{width:184.658796px;}
._31{width:188.293140px;}
._54{width:203.057713px;}
._51{width:204.480372px;}
._69{width:216.507223px;}
._3d{width:218.001613px;}
._2e{width:219.675330px;}
._b5{width:223.979173px;}
._82{width:227.446158px;}
._42{width:234.439903px;}
._5a{width:241.074995px;}
._af{width:243.406243px;}
._40{width:247.710086px;}
._bb{width:249.754424px;}
._2f{width:251.057520px;}
._3f{width:255.182036px;}
._5b{width:259.187002px;}
._52{width:265.463440px;}
._56{width:277.777213px;}
._3c{width:280.407340px;}
._30{width:282.439710px;}
._55{width:284.591632px;}
._5f{width:288.799859px;}
._5c{width:290.927845px;}
._57{width:301.209248px;}
._b0{width:303.181843px;}
._3b{width:305.656540px;}
._bc{width:306.708604px;}
._53{width:307.844340px;}
._33{width:313.821900px;}
._bf{width:315.602718px;}
._3e{width:322.788240px;}
._43{width:325.131456px;}
._b6{width:333.176744px;}
._5d{width:338.210345px;}
._b2{width:339.955805px;}
._b7{width:350.416535px;}
._b9{width:360.984848px;}
._9d{width:363.614975px;}
._9c{width:366.543979px;}
._9b{width:372.760642px;}
._41{width:381.081418px;}
._bd{width:387.525215px;}
._63{width:389.796688px;}
._a3{width:393.084346px;}
._9f{width:394.172274px;}
._a2{width:398.523925px;}
._9e{width:400.974725px;}
._a1{width:403.903729px;}
._a0{width:405.995875px;}
._7f{width:409.104206px;}
._58{width:413.946030px;}
._67{width:419.684488px;}
._a8{width:424.227433px;}
._83{width:438.992006px;}
._a6{width:441.681908px;}
._a7{width:446.224854px;}
._b3{width:451.006902px;}
._a4{width:452.441516px;}
._a5{width:454.952092px;}
._b8{width:461.407856px;}
._a9{width:464.097758px;}
._c0{width:473.721630px;}
._7d{width:525.965504px;}
._96{width:541.710422px;}
._98{width:545.273023px;}
._77{width:554.269310px;}
._60{width:562.727498px;}
._94{width:566.128786px;}
._34{width:611.181555px;}
._8c{width:710.755819px;}
._89{width:720.881831px;}
._6f{width:741.002273px;}
._8d{width:749.215465px;}
._6d{width:751.128284px;}
._88{width:761.445540px;}
._81{width:783.215826px;}
._6c{width:791.691994px;}
._74{width:812.039621px;}
._6a{width:813.462280px;}
._6e{width:818.292138px;}
._68{width:827.342174px;}
._8f{width:910.310707px;}
._85{width:926.928324px;}
._c1{width:936.827153px;}
._6b{width:957.174778px;}
._95{width:991.402261px;}
._93{width:1020.046741px;}
._7b{width:1047.346250px;}
._72{width:1050.293195px;}
._70{width:1067.132024px;}
._8b{width:1122.836850px;}
._75{width:1132.377061px;}
._62{width:1138.952377px;}
._80{width:1178.721104px;}
._8a{width:1198.763818px;}
._90{width:1223.594627px;}
._92{width:1261.665700px;}
._87{width:1284.840682px;}
._76{width:1398.796910px;}
._86{width:1415.886764px;}
._61{width:1419.802019px;}
._7e{width:1423.555914px;}
._64{width:1453.802368px;}
._91{width:1458.201889px;}
._8e{width:1469.069081px;}
._78{width:1481.060041px;}
._73{width:1493.852020px;}
._71{width:1499.315534px;}
._84{width:1504.073647px;}
._65{width:1511.330430px;}
._66{width:1521.492282px;}
._7a{width:1549.048834px;}
._79{width:1567.447751px;}
._21{width:1618.806973px;}
._97{width:1755.011616px;}
._7c{width:1785.258070px;}
._18{width:1856.654086px;}
._1e{width:2067.634812px;}
._20{width:2095.496206px;}
._1d{width:2188.518995px;}
._1f{width:2197.772283px;}
._22{width:2242.777268px;}
._19{width:2258.459477px;}
._9{width:2320.207632px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:48.711000px;}
.y6e{bottom:97.842000px;}
.y22{bottom:103.039500px;}
.y6d{bottom:107.820000px;}
.y1da{bottom:111.259500px;}
.y21{bottom:117.237000px;}
.y6c{bottom:126.235500px;}
.y1b1{bottom:129.193500px;}
.y20{bottom:131.433000px;}
.y1d9{bottom:136.665000px;}
.y6b{bottom:140.433000px;}
.y1f{bottom:149.850000px;}
.y1b0{bottom:154.597500px;}
.y26c{bottom:159.946500px;}
.y6a{bottom:162.507000px;}
.y1e{bottom:172.338000px;}
.y1d8{bottom:172.530000px;}
.y26b{bottom:177.879000px;}
.y69{bottom:180.439500px;}
.y1af{bottom:184.485000px;}
.y26a{bottom:195.811500px;}
.y68{bottom:198.372000px;}
.y1d{bottom:199.237500px;}
.y1bd{bottom:200.923500px;}
.y1d7{bottom:202.419000px;}
.y1ae{bottom:209.890500px;}
.y269{bottom:213.744000px;}
.y1c{bottom:226.137000px;}
.y1bc{bottom:226.329000px;}
.y1d6{bottom:227.823000px;}
.y268{bottom:231.678000px;}
.y67{bottom:234.922500px;}
.y1ad{bottom:239.778000px;}
.y12f{bottom:245.091000px;}
.y1d5{bottom:245.755500px;}
.y1b{bottom:253.036500px;}
.y1bb{bottom:256.216500px;}
.y14f{bottom:263.833500px;}
.y1ac{bottom:265.183500px;}
.y267{bottom:267.543000px;}
.y12e{bottom:270.496500px;}
.y42{bottom:272.653500px;}
.y1d4{bottom:275.643000px;}
.y1a{bottom:279.934500px;}
.y1ba{bottom:281.622000px;}
.y266{bottom:285.475500px;}
.y66{bottom:285.721500px;}
.y12d{bottom:288.429000px;}
.y14e{bottom:289.239000px;}
.y1d3{bottom:301.048500px;}
.y1ab{bottom:301.732500px;}
.y265{bottom:303.408000px;}
.y65{bottom:303.654000px;}
.y12c{bottom:306.361500px;}
.y19{bottom:306.834000px;}
.y1b9{bottom:311.509500px;}
.y41{bottom:314.497500px;}
.y1d2{bottom:318.981000px;}
.y14d{bottom:319.126500px;}
.y264{bottom:321.340500px;}
.y12b{bottom:324.294000px;}
.y64{bottom:330.552000px;}
.y18{bottom:333.733500px;}
.y1b8{bottom:336.913500px;}
.y263{bottom:339.274500px;}
.y40{bottom:341.395500px;}
.y12a{bottom:342.226500px;}
.y14c{bottom:344.532000px;}
.y63{bottom:348.486000px;}
.y1aa{bottom:349.543500px;}
.y10e{bottom:353.352000px;}
.y1d1{bottom:355.531500px;}
.y262{bottom:357.207000px;}
.y129{bottom:360.160500px;}
.y14b{bottom:362.464500px;}
.yef{bottom:363.148500px;}
.y62{bottom:366.418500px;}
.y1a9{bottom:367.476000px;}
.y3f{bottom:368.295000px;}
.y8c{bottom:371.103000px;}
.y1b7{bottom:373.464000px;}
.y261{bottom:375.139500px;}
.y17{bottom:375.576000px;}
.y128{bottom:378.093000px;}
.y10d{bottom:378.757500px;}
.y61{bottom:384.351000px;}
.y1a8{bottom:385.408500px;}
.yee{bottom:388.554000px;}
.y14a{bottom:392.352000px;}
.y260{bottom:393.072000px;}
.y3e{bottom:395.194500px;}
.y208{bottom:398.329500px;}
.y238{bottom:400.633500px;}
.y60{bottom:402.283500px;}
.y1a7{bottom:403.341000px;}
.y8b{bottom:404.442000px;}
.y127{bottom:407.980500px;}
.y10c{bottom:408.645000px;}
.y25f{bottom:411.004500px;}
.y16{bottom:417.420000px;}
.y149{bottom:417.757500px;}
.yed{bottom:418.441500px;}
.y237{bottom:418.566000px;}
.y1b6{bottom:421.273500px;}
.y1d0{bottom:421.275000px;}
.y3d{bottom:422.094000px;}
.y8a{bottom:422.374500px;}
.y207{bottom:423.735000px;}
.y25e{bottom:428.938500px;}
.y5f{bottom:429.183000px;}
.y1a6{bottom:430.240500px;}
.y126{bottom:433.386000px;}
.y10b{bottom:434.049000px;}
.y148{bottom:435.690000px;}
.yc7{bottom:436.498500px;}
.y1b5{bottom:439.207500px;}
.y89{bottom:440.307000px;}
.y206{bottom:441.667500px;}
.yec{bottom:443.847000px;}
.y15{bottom:444.319500px;}
.y25d{bottom:446.871000px;}
.y5e{bottom:447.115500px;}
.y1a5{bottom:448.173000px;}
.y3c{bottom:448.992000px;}
.y10a{bottom:451.983000px;}
.yc6{bottom:454.431000px;}
.y1b4{bottom:457.140000px;}
.y1e3{bottom:461.094000px;}
.yeb{bottom:461.779500px;}
.y125{bottom:463.273500px;}
.y25c{bottom:464.803500px;}
.y5d{bottom:465.048000px;}
.y14{bottom:471.217500px;}
.y205{bottom:471.555000px;}
.y147{bottom:472.240500px;}
.yc5{bottom:472.363500px;}
.y1a4{bottom:475.072500px;}
.y3b{bottom:475.891500px;}
.y88{bottom:476.857500px;}
.y109{bottom:481.870500px;}
.y25b{bottom:482.736000px;}
.y1e2{bottom:486.499500px;}
.y18e{bottom:487.848000px;}
.y124{bottom:488.677500px;}
.yc4{bottom:490.297500px;}
.yea{bottom:491.667000px;}
.y5c{bottom:491.947500px;}
.y1a3{bottom:493.005000px;}
.y1cf{bottom:493.690500px;}
.y204{bottom:496.960500px;}
.y13{bottom:498.117000px;}
.y25a{bottom:500.668500px;}
.y1e1{bottom:504.432000px;}
.y1f8{bottom:505.780500px;}
.y123{bottom:506.611500px;}
.y108{bottom:507.274500px;}
.y5b{bottom:509.880000px;}
.y1a2{bottom:510.937500px;}
.y18d{bottom:513.252000px;}
.y17a{bottom:514.893000px;}
.yc3{bottom:515.701500px;}
.ye9{bottom:517.072500px;}
.y21a{bottom:517.341000px;}
.y3a{bottom:517.735500px;}
.y259{bottom:518.601000px;}
.y146{bottom:520.050000px;}
.y1e0{bottom:522.364500px;}
.y15f{bottom:523.713000px;}
.y12{bottom:525.016500px;}
.y107{bottom:525.207000px;}
.y203{bottom:526.848000px;}
.y87{bottom:527.656500px;}
.y5a{bottom:527.812500px;}
.y1b3{bottom:529.555500px;}
.y1f7{bottom:531.186000px;}
.y236{bottom:533.634000px;}
.ye8{bottom:535.005000px;}
.y122{bottom:536.499000px;}
.y258{bottom:536.535000px;}
.y179{bottom:540.297000px;}
.y219{bottom:542.746500px;}
.y18c{bottom:543.141000px;}
.y39{bottom:544.633500px;}
.y86{bottom:545.589000px;}
.y59{bottom:545.746500px;}
.y145{bottom:546.949500px;}
.y1a1{bottom:547.488000px;}
.y15e{bottom:549.118500px;}
.y1ce{bottom:550.648500px;}
.y235{bottom:551.566500px;}
.y11{bottom:551.916000px;}
.y1df{bottom:552.252000px;}
.y257{bottom:554.467500px;}
.y1ed{bottom:560.409000px;}
.y218{bottom:560.679000px;}
.y106{bottom:561.757500px;}
.y121{bottom:561.903000px;}
.yc2{bottom:563.523000px;}
.y144{bottom:564.882000px;}
.y1f6{bottom:567.051000px;}
.y18b{bottom:568.545000px;}
.y1cd{bottom:568.581000px;}
.y178{bottom:570.184500px;}
.y38{bottom:571.533000px;}
.ye7{bottom:571.555500px;}
.y256{bottom:572.400000px;}
.y85{bottom:572.488500px;}
.y58{bottom:572.644500px;}
.y1de{bottom:577.657500px;}
.y20d{bottom:578.341500px;}
.y217{bottom:578.611500px;}
.y10{bottom:578.814000px;}
.y15d{bottom:579.006000px;}
.y120{bottom:579.835500px;}
.yc1{bottom:581.455500px;}
.y143{bottom:582.814500px;}
.y1ec{bottom:585.814500px;}
.y1b2{bottom:586.513500px;}
.y202{bottom:588.118500px;}
.y255{bottom:590.332500px;}
.y84{bottom:590.421000px;}
.y57{bottom:590.578500px;}
.y177{bottom:595.590000px;}
.y1f5{bottom:596.938500px;}
.y18a{bottom:598.434000px;}
.yc0{bottom:599.388000px;}
.y142{bottom:600.747000px;}
.y1eb{bottom:603.747000px;}
.y15c{bottom:604.411500px;}
.y1a0{bottom:604.446000px;}
.yf{bottom:605.713500px;}
.y201{bottom:606.051000px;}
.y234{bottom:606.859500px;}
.yab{bottom:607.005000px;}
.y83{bottom:608.353500px;}
.y216{bottom:608.499000px;}
.y56{bottom:608.511000px;}
.y105{bottom:609.568500px;}
.y37{bottom:613.375500px;}
.y176{bottom:613.522500px;}
.y16a{bottom:614.208000px;}
.y1c9{bottom:615.826500px;}
.y11f{bottom:616.386000px;}
.y141{bottom:618.679500px;}
.ye6{bottom:619.365000px;}
.y1ea{bottom:621.679500px;}
.y15b{bottom:622.344000px;}
.y19f{bottom:622.378500px;}
.y189{bottom:623.838000px;}
.ybf{bottom:624.792000px;}
.y254{bottom:626.197500px;}
.y55{bottom:626.443500px;}
.y104{bottom:627.501000px;}
.yaa{bottom:632.410500px;}
.ye{bottom:632.613000px;}
.y1c8{bottom:633.759000px;}
.y215{bottom:633.904500px;}
.y140{bottom:636.613500px;}
.ye5{bottom:637.297500px;}
.y169{bottom:639.612000px;}
.y36{bottom:640.275000px;}
.y1f4{bottom:640.276500px;}
.y19e{bottom:640.311000px;}
.y200{bottom:642.601500px;}
.y233{bottom:642.726000px;}
.y175{bottom:643.410000px;}
.y253{bottom:644.131500px;}
.y54{bottom:644.376000px;}
.y82{bottom:644.904000px;}
.y103{bottom:645.433500px;}
.y1e9{bottom:651.567000px;}
.y1c7{bottom:651.691500px;}
.y214{bottom:651.837000px;}
.y15a{bottom:652.231500px;}
.y13f{bottom:654.546000px;}
.ybe{bottom:654.681000px;}
.y168{bottom:657.544500px;}
.y1f3{bottom:658.209000px;}
.y19d{bottom:658.245000px;}
.y23c{bottom:659.164500px;}
.y188{bottom:660.388500px;}
.y232{bottom:660.658500px;}
.y252{bottom:662.064000px;}
.ya9{bottom:662.298000px;}
.y102{bottom:663.366000px;}
.y11e{bottom:664.197000px;}
.y35{bottom:667.174500px;}
.y174{bottom:668.815500px;}
.y1cc{bottom:669.624000px;}
.y13e{bottom:672.478500px;}
.ybd{bottom:672.613500px;}
.ye4{bottom:673.848000px;}
.yd{bottom:674.455500px;}
.y19c{bottom:676.177500px;}
.y1e8{bottom:676.972500px;}
.y1c6{bottom:677.097000px;}
.y159{bottom:677.637000px;}
.y231{bottom:678.591000px;}
.y53{bottom:680.926500px;}
.y101{bottom:681.298500px;}
.y213{bottom:681.724500px;}
.y11d{bottom:682.129500px;}
.y173{bottom:686.748000px;}
.y167{bottom:687.433500px;}
.y1c0{bottom:687.558000px;}
.ya8{bottom:687.703500px;}
.y1f2{bottom:688.096500px;}
.y241{bottom:689.052000px;}
.y1ff{bottom:690.411000px;}
.ybc{bottom:690.546000px;}
.y34{bottom:694.074000px;}
.y19b{bottom:694.110000px;}
.y1e7{bottom:694.905000px;}
.y1c5{bottom:695.029500px;}
.y158{bottom:695.569500px;}
.y81{bottom:695.703000px;}
.y251{bottom:697.929000px;}
.y100{bottom:699.232500px;}
.y13d{bottom:699.378000px;}
.y11c{bottom:700.062000px;}
.y229{bottom:702.501000px;}
.y1dd{bottom:704.680500px;}
.y23e{bottom:705.490500px;}
.ya7{bottom:705.636000px;}
.y20c{bottom:706.860000px;}
.y212{bottom:707.130000px;}
.y187{bottom:708.198000px;}
.y1fe{bottom:708.343500px;}
.ybb{bottom:708.478500px;}
.y19a{bottom:712.042500px;}
.y166{bottom:712.837500px;}
.y1bf{bottom:712.962000px;}
.y1f1{bottom:713.502000px;}
.y80{bottom:713.635500px;}
.y240{bottom:714.456000px;}
.y250{bottom:715.861500px;}
.y13c{bottom:717.310500px;}
.y11b{bottom:717.994500px;}
.y33{bottom:720.972000px;}
.y172{bottom:723.298500px;}
.yd0{bottom:723.423000px;}
.y211{bottom:725.062500px;}
.yff{bottom:726.130500px;}
.y1fd{bottom:726.276000px;}
.y230{bottom:726.411000px;}
.y228{bottom:727.906500px;}
.y199{bottom:729.975000px;}
.y165{bottom:730.770000px;}
.ye3{bottom:730.806000px;}
.y1be{bottom:730.894500px;}
.y1f0{bottom:731.434500px;}
.y7f{bottom:731.569500px;}
.y52{bottom:731.725500px;}
.y157{bottom:732.120000px;}
.y20b{bottom:732.264000px;}
.y24f{bottom:733.794000px;}
.yba{bottom:733.884000px;}
.ya6{bottom:735.523500px;}
.y11a{bottom:735.927000px;}
.y1dc{bottom:741.231000px;}
.y1e6{bottom:742.725000px;}
.y1c4{bottom:742.849500px;}
.y210{bottom:742.995000px;}
.yfe{bottom:744.063000px;}
.y186{bottom:744.064500px;}
.y1fc{bottom:744.210000px;}
.y22f{bottom:744.345000px;}
.y198{bottom:747.909000px;}
.ye2{bottom:748.738500px;}
.ycf{bottom:748.827000px;}
.y1ef{bottom:749.367000px;}
.y7e{bottom:749.502000px;}
.y51{bottom:749.658000px;}
.y20a{bottom:750.198000px;}
.y24e{bottom:751.728000px;}
.y119{bottom:753.861000px;}
.y227{bottom:757.794000px;}
.y164{bottom:760.657500px;}
.y1c3{bottom:760.782000px;}
.ya5{bottom:760.927500px;}
.yfd{bottom:761.997000px;}
.y1fb{bottom:762.142500px;}
.yc{bottom:762.604500px;}
.y32{bottom:762.816000px;}
.y197{bottom:765.841500px;}
.ye1{bottom:766.671000px;}
.y280{bottom:767.272500px;}
.y7d{bottom:767.434500px;}
.y1e5{bottom:768.130500px;}
.y24d{bottom:769.660500px;}
.y22e{bottom:769.749000px;}
.yb9{bottom:770.434500px;}
.y171{bottom:771.108000px;}
.y118{bottom:771.793500px;}
.y50{bottom:776.557500px;}
.yce{bottom:778.716000px;}
.ya4{bottom:778.861500px;}
.yb{bottom:779.043000px;}
.yfc{bottom:779.929500px;}
.y1fa{bottom:780.075000px;}
.y226{bottom:783.198000px;}
.y196{bottom:783.774000px;}
.ye0{bottom:784.603500px;}
.y27f{bottom:785.206500px;}
.y7c{bottom:785.367000px;}
.y1ee{bottom:785.917500px;}
.y163{bottom:786.063000px;}
.y1c2{bottom:786.187500px;}
.y24c{bottom:787.593000px;}
.y22d{bottom:787.681500px;}
.y185{bottom:788.895000px;}
.y170{bottom:789.040500px;}
.y31{bottom:789.715500px;}
.y117{bottom:789.726000px;}
.y4f{bottom:794.490000px;}
.y181{bottom:795.154500px;}
.ya{bottom:795.481500px;}
.y20f{bottom:797.478000px;}
.yfb{bottom:797.862000px;}
.y195{bottom:801.706500px;}
.ydf{bottom:802.537500px;}
.y27e{bottom:803.139000px;}
.y7b{bottom:803.299500px;}
.y162{bottom:803.995500px;}
.ycd{bottom:804.120000px;}
.y24b{bottom:805.525500px;}
.y22c{bottom:805.614000px;}
.y23f{bottom:806.299500px;}
.y156{bottom:806.829000px;}
.y16f{bottom:806.974500px;}
.y116{bottom:807.658500px;}
.y13b{bottom:810.819000px;}
.y9{bottom:811.920000px;}
.y4e{bottom:812.422500px;}
.y225{bottom:813.087000px;}
.ya3{bottom:815.410500px;}
.yfa{bottom:815.794500px;}
.y23b{bottom:816.075000px;}
.y30{bottom:816.613500px;}
.yb8{bottom:818.244000px;}
.y194{bottom:819.639000px;}
.yde{bottom:820.470000px;}
.y180{bottom:820.558500px;}
.y7a{bottom:821.232000px;}
.ycc{bottom:822.052500px;}
.y209{bottom:822.613500px;}
.y24a{bottom:823.458000px;}
.y22b{bottom:823.548000px;}
.y155{bottom:824.761500px;}
.y16e{bottom:824.907000px;}
.y115{bottom:825.591000px;}
.y8{bottom:828.357000px;}
.y13a{bottom:828.751500px;}
.y4d{bottom:830.355000px;}
.yf9{bottom:833.727000px;}
.y1c1{bottom:834.007500px;}
.yb7{bottom:836.176500px;}
.y193{bottom:837.571500px;}
.ydd{bottom:838.402500px;}
.y224{bottom:838.491000px;}
.y27d{bottom:839.004000px;}
.y79{bottom:839.166000px;}
.y161{bottom:840.546000px;}
.y249{bottom:841.390500px;}
.y23a{bottom:841.480500px;}
.y154{bottom:842.694000px;}
.y16d{bottom:842.839500px;}
.y2f{bottom:843.513000px;}
.y1f9{bottom:843.523500px;}
.y7{bottom:844.795500px;}
.y20e{bottom:845.289000px;}
.y139{bottom:846.684000px;}
.y17f{bottom:850.446000px;}
.y184{bottom:851.661000px;}
.ycb{bottom:851.941500px;}
.y114{bottom:852.490500px;}
.yb6{bottom:854.109000px;}
.y192{bottom:855.505500px;}
.ydc{bottom:856.335000px;}
.y27c{bottom:856.936500px;}
.y78{bottom:857.098500px;}
.y248{bottom:859.324500px;}
.y1cb{bottom:859.413000px;}
.y22a{bottom:860.097000px;}
.y153{bottom:860.626500px;}
.y16c{bottom:860.772000px;}
.y6{bottom:861.234000px;}
.y98{bottom:861.591000px;}
.ya2{bottom:863.221500px;}
.y138{bottom:864.616500px;}
.y4c{bottom:866.905500px;}
.y183{bottom:869.593500px;}
.yf8{bottom:870.277500px;}
.y2e{bottom:870.412500px;}
.y113{bottom:870.423000px;}
.yb5{bottom:872.041500px;}
.y191{bottom:873.438000px;}
.ydb{bottom:874.267500px;}
.y27b{bottom:874.869000px;}
.y223{bottom:875.041500px;}
.y17e{bottom:875.851500px;}
.y247{bottom:877.257000px;}
.yca{bottom:877.345500px;}
.y23d{bottom:878.031000px;}
.y1db{bottom:879.390000px;}
.y97{bottom:879.523500px;}
.ya1{bottom:881.154000px;}
.y137{bottom:882.549000px;}
.y152{bottom:887.526000px;}
.y5{bottom:887.647500px;}
.y112{bottom:888.355500px;}
.yb4{bottom:889.975500px;}
.y190{bottom:891.370500px;}
.yda{bottom:892.200000px;}
.y27a{bottom:892.803000px;}
.y246{bottom:895.189500px;}
.yc9{bottom:895.278000px;}
.y239{bottom:895.963500px;}
.y2d{bottom:897.312000px;}
.y16b{bottom:897.322500px;}
.y96{bottom:897.457500px;}
.y77{bottom:898.941000px;}
.ya0{bottom:899.086500px;}
.y136{bottom:900.483000px;}
.y151{bottom:905.458500px;}
.y17d{bottom:905.739000px;}
.y111{bottom:906.289500px;}
.yb3{bottom:907.908000px;}
.y18f{bottom:909.303000px;}
.yd9{bottom:910.134000px;}
.y279{bottom:910.735500px;}
.y245{bottom:913.122000px;}
.y1ca{bottom:913.896000px;}
.y76{bottom:916.873500px;}
.y9f{bottom:917.019000px;}
.y4b{bottom:917.704500px;}
.y135{bottom:918.415500px;}
.y222{bottom:922.851000px;}
.y182{bottom:924.076500px;}
.y2c{bottom:924.210000px;}
.y110{bottom:924.222000px;}
.y95{bottom:924.355500px;}
.y160{bottom:924.906000px;}
.yb2{bottom:925.840500px;}
.yf7{bottom:927.235500px;}
.yd8{bottom:928.066500px;}
.y278{bottom:928.668000px;}
.y17c{bottom:931.144500px;}
.yc8{bottom:931.828500px;}
.y9e{bottom:934.953000px;}
.y4a{bottom:935.637000px;}
.y134{bottom:936.348000px;}
.y221{bottom:940.785000px;}
.y150{bottom:942.009000px;}
.y94{bottom:942.288000px;}
.y1e4{bottom:942.838500px;}
.yb1{bottom:943.773000px;}
.yf6{bottom:945.168000px;}
.yd7{bottom:945.999000px;}
.y244{bottom:948.988500px;}
.y2b{bottom:951.109500px;}
.y9d{bottom:952.885500px;}
.y49{bottom:953.569500px;}
.y133{bottom:954.280500px;}
.y75{bottom:958.717500px;}
.y10f{bottom:960.772500px;}
.yb0{bottom:961.705500px;}
.yf5{bottom:963.102000px;}
.yd6{bottom:963.931500px;}
.y277{bottom:964.533000px;}
.y4{bottom:965.356500px;}
.y243{bottom:966.921000px;}
.y17b{bottom:967.693500px;}
.y93{bottom:969.187500px;}
.y9c{bottom:970.818000px;}
.y48{bottom:971.502000px;}
.y132{bottom:972.213000px;}
.y220{bottom:976.650000px;}
.y2a{bottom:978.009000px;}
.yaf{bottom:979.638000px;}
.yf4{bottom:981.034500px;}
.yd5{bottom:981.864000px;}
.y276{bottom:982.465500px;}
.y92{bottom:987.120000px;}
.y47{bottom:989.436000px;}
.y131{bottom:990.145500px;}
.y242{bottom:992.355000px;}
.y21f{bottom:994.582500px;}
.y74{bottom:995.268000px;}
.yae{bottom:997.572000px;}
.yf3{bottom:998.967000px;}
.yd4{bottom:999.796500px;}
.y275{bottom:1000.399500px;}
.y29{bottom:1004.908500px;}
.y91{bottom:1005.054000px;}
.y46{bottom:1007.368500px;}
.y3{bottom:1009.390500px;}
.yad{bottom:1015.504500px;}
.y130{bottom:1015.579500px;}
.yf2{bottom:1016.899500px;}
.yd3{bottom:1017.730500px;}
.y274{bottom:1018.332000px;}
.y45{bottom:1025.301000px;}
.y21e{bottom:1031.133000px;}
.y28{bottom:1031.806500px;}
.y90{bottom:1031.952000px;}
.yf1{bottom:1034.832000px;}
.yd2{bottom:1035.663000px;}
.y273{bottom:1036.264500px;}
.y73{bottom:1046.065500px;}
.y8f{bottom:1049.886000px;}
.yac{bottom:1052.055000px;}
.y272{bottom:1054.197000px;}
.y9b{bottom:1055.178000px;}
.yf0{bottom:1060.266000px;}
.yd1{bottom:1061.097000px;}
.y2{bottom:1061.695500px;}
.y44{bottom:1061.851500px;}
.y72{bottom:1063.999500px;}
.y8e{bottom:1067.818500px;}
.y271{bottom:1072.129500px;}
.y9a{bottom:1073.110500px;}
.y27{bottom:1073.650500px;}
.y21d{bottom:1078.942500px;}
.y71{bottom:1081.932000px;}
.y8d{bottom:1085.751000px;}
.y270{bottom:1090.063500px;}
.y1{bottom:1091.583000px;}
.y21c{bottom:1096.875000px;}
.y70{bottom:1099.864500px;}
.y26{bottom:1100.548500px;}
.y26f{bottom:1107.996000px;}
.y99{bottom:1109.661000px;}
.y43{bottom:1112.650500px;}
.y6f{bottom:1117.797000px;}
.y26e{bottom:1125.928500px;}
.y25{bottom:1127.448000px;}
.y21b{bottom:1133.425500px;}
.y26d{bottom:1151.362500px;}
.y24{bottom:1154.347500px;}
.ha{height:23.850624px;}
.hb{height:35.865450px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.h8{height:41.842920px;}
.he{height:44.258150px;}
.hd{height:45.011027px;}
.h9{height:49.673524px;}
.hc{height:50.211840px;}
.h3{height:50.498765px;}
.h7{height:60.254040px;}
.h4{height:61.899450px;}
.h2{height:77.366008px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:93.543000px;}
.xa{left:110.181000px;}
.xf{left:111.807000px;}
.x9{left:115.959000px;}
.xc{left:120.435000px;}
.x7{left:130.903500px;}
.x21{left:139.495500px;}
.x12{left:147.715500px;}
.x6{left:151.638000px;}
.x13{left:163.780500px;}
.x1{left:213.090000px;}
.xd{left:234.763500px;}
.xe{left:264.964500px;}
.x1a{left:270.138000px;}
.x20{left:271.716000px;}
.x1f{left:273.252000px;}
.x1d{left:274.558500px;}
.x1b{left:281.637000px;}
.x1c{left:293.031000px;}
.x1e{left:295.459500px;}
.x18{left:299.092500px;}
.x3{left:309.100500px;}
.x15{left:334.377000px;}
.x11{left:336.723000px;}
.x17{left:338.590500px;}
.x16{left:345.876000px;}
.x19{left:355.029000px;}
.x10{left:372.463500px;}
.x4{left:390.319500px;}
.x2{left:407.923500px;}
.x5{left:416.016000px;}
.x14{left:438.985500px;}
.xb{left:442.720500px;}
.x22{left:455.422500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:23.141333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.656473pt;}
.ls6{letter-spacing:2.656631pt;}
.lse{letter-spacing:17.708745pt;}
.lsc{letter-spacing:17.710053pt;}
.ls3{letter-spacing:23.434938pt;}
.ls5{letter-spacing:23.968631pt;}
.ls4{letter-spacing:26.251297pt;}
.lsa{letter-spacing:26.565812pt;}
.ls0{letter-spacing:26.566933pt;}
.lsb{letter-spacing:26.568027pt;}
.ls8{letter-spacing:26.571145pt;}
.lsd{letter-spacing:29.468745pt;}
.ls9{letter-spacing:53.132800pt;}
.ls7{letter-spacing:76.133806pt;}
.wsf{word-spacing:-39.531597pt;}
.ws71{word-spacing:-30.551973pt;}
.wse0{word-spacing:-27.156719pt;}
.ws47{word-spacing:-26.566933pt;}
.wsd{word-spacing:-25.397988pt;}
.wsfb{word-spacing:-17.693578pt;}
.ws73{word-spacing:-14.718081pt;}
.ws96{word-spacing:-14.558679pt;}
.ws107{word-spacing:-14.505546pt;}
.wsf5{word-spacing:-13.867939pt;}
.ws5c{word-spacing:-13.814805pt;}
.ws82{word-spacing:-13.708538pt;}
.wse7{word-spacing:-13.602270pt;}
.wsf4{word-spacing:-13.549136pt;}
.wsdc{word-spacing:-13.442868pt;}
.ws63{word-spacing:-13.283467pt;}
.ws77{word-spacing:-13.124065pt;}
.wsdb{word-spacing:-12.911530pt;}
.wsfe{word-spacing:-12.592726pt;}
.ws5e{word-spacing:-12.467362pt;}
.ws5f{word-spacing:-12.424855pt;}
.wse8{word-spacing:-12.327057pt;}
.ws99{word-spacing:-12.273923pt;}
.wsce{word-spacing:-12.220789pt;}
.wscc{word-spacing:-12.114522pt;}
.ws106{word-spacing:-12.061388pt;}
.ws103{word-spacing:-12.008254pt;}
.ws59{word-spacing:-11.795718pt;}
.ws69{word-spacing:-11.636317pt;}
.wsee{word-spacing:-11.530049pt;}
.ws52{word-spacing:-11.211246pt;}
.ws51{word-spacing:-11.158112pt;}
.wsf9{word-spacing:-11.104978pt;}
.ws9b{word-spacing:-10.998710pt;}
.ws105{word-spacing:-10.945577pt;}
.wsec{word-spacing:-10.892443pt;}
.ws8c{word-spacing:-10.786175pt;}
.ws8e{word-spacing:-10.733041pt;}
.ws98{word-spacing:-10.679907pt;}
.wsf1{word-spacing:-10.626773pt;}
.ws93{word-spacing:-10.467372pt;}
.ws8f{word-spacing:-10.307970pt;}
.ws10{word-spacing:-10.201702pt;}
.ws38{word-spacing:-10.148569pt;}
.ws67{word-spacing:-10.042301pt;}
.ws76{word-spacing:-9.989167pt;}
.ws80{word-spacing:-9.882899pt;}
.ws92{word-spacing:-9.776631pt;}
.wsf7{word-spacing:-9.723498pt;}
.ws101{word-spacing:-9.670364pt;}
.ws49{word-spacing:-9.510962pt;}
.ws9c{word-spacing:-9.404694pt;}
.wsaa{word-spacing:-9.298427pt;}
.ws66{word-spacing:-9.139025pt;}
.ws94{word-spacing:-8.979623pt;}
.ws42{word-spacing:-8.926490pt;}
.ws14{word-spacing:-8.879496pt;}
.ws11{word-spacing:-8.873356pt;}
.ws90{word-spacing:-8.862335pt;}
.wse6{word-spacing:-8.860616pt;}
.wsc1{word-spacing:-8.860541pt;}
.ws9f{word-spacing:-8.858886pt;}
.wse1{word-spacing:-8.855282pt;}
.ws16{word-spacing:-8.820222pt;}
.ws6c{word-spacing:-8.767088pt;}
.wsae{word-spacing:-8.607686pt;}
.ws72{word-spacing:-8.554553pt;}
.wse9{word-spacing:-8.501419pt;}
.ws6d{word-spacing:-8.475364pt;}
.ws89{word-spacing:-8.395151pt;}
.ws75{word-spacing:-8.342017pt;}
.ws6b{word-spacing:-8.288883pt;}
.wsc7{word-spacing:-8.287392pt;}
.ws5d{word-spacing:-8.235749pt;}
.wse5{word-spacing:-8.187929pt;}
.wscf{word-spacing:-8.182615pt;}
.wse4{word-spacing:-8.134795pt;}
.wsde{word-spacing:-8.076348pt;}
.ws70{word-spacing:-8.023214pt;}
.wsfa{word-spacing:-7.916946pt;}
.ws44{word-spacing:-7.863812pt;}
.ws43{word-spacing:-7.810678pt;}
.wsf0{word-spacing:-7.757545pt;}
.ws50{word-spacing:-7.704411pt;}
.ws79{word-spacing:-7.651277pt;}
.wsa6{word-spacing:-7.598143pt;}
.ws56{word-spacing:-7.545009pt;}
.ws7b{word-spacing:-7.541553pt;}
.ws1e{word-spacing:-7.536527pt;}
.ws58{word-spacing:-7.491875pt;}
.ws4d{word-spacing:-7.385607pt;}
.ws4c{word-spacing:-7.173072pt;}
.ws1a{word-spacing:-6.854269pt;}
.ws2d{word-spacing:-6.801135pt;}
.wsa5{word-spacing:-6.748001pt;}
.ws97{word-spacing:-6.694867pt;}
.wsef{word-spacing:-6.641733pt;}
.ws4a{word-spacing:-6.588599pt;}
.ws41{word-spacing:-6.482332pt;}
.ws88{word-spacing:-6.376064pt;}
.ws60{word-spacing:-6.269796pt;}
.wsd9{word-spacing:-6.216662pt;}
.wsff{word-spacing:-6.110395pt;}
.ws54{word-spacing:-6.004127pt;}
.wsbe{word-spacing:-5.924725pt;}
.wsc0{word-spacing:-5.897859pt;}
.wsf8{word-spacing:-5.791591pt;}
.wsd7{word-spacing:-5.738458pt;}
.wsad{word-spacing:-5.579056pt;}
.ws95{word-spacing:-5.472788pt;}
.ws7f{word-spacing:-5.419654pt;}
.wsd4{word-spacing:-5.366521pt;}
.ws45{word-spacing:-5.260253pt;}
.wseb{word-spacing:-5.047717pt;}
.ws4e{word-spacing:-4.994583pt;}
.wsda{word-spacing:-4.941450pt;}
.ws4f{word-spacing:-4.250709pt;}
.wsb7{word-spacing:-3.985040pt;}
.wse2{word-spacing:-3.937220pt;}
.wsb1{word-spacing:-3.931906pt;}
.wsf3{word-spacing:-3.878772pt;}
.wsa3{word-spacing:-3.772505pt;}
.ws9a{word-spacing:-3.719371pt;}
.ws4b{word-spacing:-3.613103pt;}
.wsb6{word-spacing:-3.559969pt;}
.ws1c{word-spacing:-3.498343pt;}
.ws6f{word-spacing:-3.400567pt;}
.wsd2{word-spacing:-3.294300pt;}
.ws62{word-spacing:-3.241166pt;}
.ws68{word-spacing:-3.188032pt;}
.ws61{word-spacing:-3.134898pt;}
.wse3{word-spacing:-3.127282pt;}
.ws64{word-spacing:-2.975497pt;}
.ws29{word-spacing:-2.967991pt;}
.ws2b{word-spacing:-2.951895pt;}
.ws35{word-spacing:-2.951305pt;}
.ws1f{word-spacing:-2.950321pt;}
.ws23{word-spacing:-2.946878pt;}
.ws46{word-spacing:-2.816095pt;}
.wsf6{word-spacing:-2.709827pt;}
.wsb9{word-spacing:-2.656693pt;}
.ws104{word-spacing:-2.444158pt;}
.wsb0{word-spacing:-2.284756pt;}
.wsd5{word-spacing:-1.594016pt;}
.wsb2{word-spacing:-1.450059pt;}
.wsb4{word-spacing:-1.434614pt;}
.ws102{word-spacing:-1.222079pt;}
.ws1d{word-spacing:-0.905403pt;}
.ws108{word-spacing:-0.743874pt;}
.wsba{word-spacing:-0.265669pt;}
.wsb{word-spacing:-0.076513pt;}
.ws1{word-spacing:-0.063761pt;}
.ws74{word-spacing:-0.053134pt;}
.wse{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.531339pt;}
.wsd1{word-spacing:0.903276pt;}
.wsd8{word-spacing:1.168945pt;}
.wsa2{word-spacing:1.912819pt;}
.wsac{word-spacing:2.072221pt;}
.wsa0{word-spacing:3.081764pt;}
.ws7d{word-spacing:3.559969pt;}
.wsa1{word-spacing:5.207119pt;}
.ws9{word-spacing:13.198541pt;}
.ws6{word-spacing:14.680986pt;}
.ws5a{word-spacing:14.726466pt;}
.ws5{word-spacing:15.063552pt;}
.ws2c{word-spacing:15.142466pt;}
.ws8d{word-spacing:15.759693pt;}
.wsfc{word-spacing:15.876506pt;}
.ws3b{word-spacing:16.009346pt;}
.wsa{word-spacing:16.354714pt;}
.ws3a{word-spacing:17.038173pt;}
.wsed{word-spacing:17.213079pt;}
.ws53{word-spacing:17.587079pt;}
.ws3d{word-spacing:17.635506pt;}
.ws10b{word-spacing:17.653453pt;}
.ws109{word-spacing:17.653959pt;}
.wscd{word-spacing:17.654466pt;}
.wsc2{word-spacing:17.654893pt;}
.ws83{word-spacing:17.655399pt;}
.ws10a{word-spacing:17.655906pt;}
.wsb8{word-spacing:17.656253pt;}
.wsca{word-spacing:17.656839pt;}
.wsfd{word-spacing:17.657346pt;}
.wsc9{word-spacing:17.657773pt;}
.wsab{word-spacing:17.657853pt;}
.ws91{word-spacing:17.658279pt;}
.ws6e{word-spacing:17.658786pt;}
.ws8b{word-spacing:17.659293pt;}
.ws10c{word-spacing:17.660226pt;}
.ws100{word-spacing:17.660306pt;}
.ws81{word-spacing:17.660733pt;}
.ws9e{word-spacing:17.661239pt;}
.wsa8{word-spacing:17.662679pt;}
.wsea{word-spacing:17.667079pt;}
.ws8a{word-spacing:18.100519pt;}
.wsc8{word-spacing:18.230893pt;}
.wsc{word-spacing:18.596853pt;}
.ws8{word-spacing:18.697933pt;}
.wsa7{word-spacing:18.917453pt;}
.ws7c{word-spacing:18.980519pt;}
.ws7a{word-spacing:18.984413pt;}
.ws57{word-spacing:19.011079pt;}
.ws4{word-spacing:19.176141pt;}
.ws7{word-spacing:19.510886pt;}
.ws5b{word-spacing:19.667079pt;}
.ws13{word-spacing:19.712665pt;}
.wsa9{word-spacing:20.249346pt;}
.ws55{word-spacing:20.523293pt;}
.wsbf{word-spacing:20.591106pt;}
.ws2{word-spacing:20.722347pt;}
.ws3{word-spacing:20.786108pt;}
.ws20{word-spacing:21.040626pt;}
.ws31{word-spacing:21.630679pt;}
.ws25{word-spacing:21.775186pt;}
.ws30{word-spacing:22.497559pt;}
.wsb5{word-spacing:22.953773pt;}
.ws78{word-spacing:23.827686pt;}
.ws40{word-spacing:23.846639pt;}
.ws3c{word-spacing:25.008119pt;}
.wsb3{word-spacing:25.070173pt;}
.ws1b{word-spacing:26.344839pt;}
.ws0{word-spacing:27.636455pt;}
.ws65{word-spacing:27.842146pt;}
.ws6a{word-spacing:28.615887pt;}
.wsd6{word-spacing:28.692400pt;}
.ws36{word-spacing:29.309239pt;}
.ws24{word-spacing:30.187293pt;}
.ws37{word-spacing:30.922279pt;}
.wsaf{word-spacing:31.816124pt;}
.wsa4{word-spacing:31.817341pt;}
.wsdf{word-spacing:31.821292pt;}
.wsd0{word-spacing:31.823826pt;}
.wscb{word-spacing:31.831921pt;}
.ws27{word-spacing:31.956439pt;}
.ws33{word-spacing:32.551399pt;}
.ws21{word-spacing:33.580226pt;}
.ws12{word-spacing:34.623186pt;}
.ws2f{word-spacing:34.908226pt;}
.ws22{word-spacing:35.648626pt;}
.ws84{word-spacing:37.193707pt;}
.ws19{word-spacing:37.566679pt;}
.ws28{word-spacing:38.156226pt;}
.ws26{word-spacing:38.232839pt;}
.ws15{word-spacing:38.309026pt;}
.ws7e{word-spacing:40.155746pt;}
.ws32{word-spacing:41.106999pt;}
.ws2a{word-spacing:42.299799pt;}
.ws2e{word-spacing:44.346786pt;}
.ws17{word-spacing:46.573746pt;}
.ws39{word-spacing:49.362066pt;}
.ws3e{word-spacing:49.376119pt;}
.ws18{word-spacing:51.592413pt;}
.ws34{word-spacing:52.027719pt;}
.wsf2{word-spacing:59.489075pt;}
.ws86{word-spacing:63.760640pt;}
.wsdd{word-spacing:69.764767pt;}
.ws85{word-spacing:69.817901pt;}
.ws48{word-spacing:71.667439pt;}
.ws3f{word-spacing:86.000687pt;}
.wsd3{word-spacing:96.331700pt;}
.ws87{word-spacing:96.384834pt;}
.wsbb{word-spacing:106.692804pt;}
.wsc3{word-spacing:116.416302pt;}
.wsbc{word-spacing:139.316998pt;}
.wsc4{word-spacing:149.040496pt;}
.wsbd{word-spacing:165.883932pt;}
.wsc6{word-spacing:175.607429pt;}
.wsc5{word-spacing:175.660563pt;}
._13{margin-left:-28.054682pt;}
._a{margin-left:-26.566933pt;}
._c{margin-left:-25.079185pt;}
._14{margin-left:-12.539593pt;}
._b{margin-left:-8.873356pt;}
._0{margin-left:-7.253422pt;}
._99{margin-left:-6.311863pt;}
._3{margin-left:-5.228407pt;}
._4{margin-left:-4.064768pt;}
._6{margin-left:-2.725786pt;}
._2{margin-left:-1.657788pt;}
._1{width:1.721549pt;}
._23{width:2.725786pt;}
._be{width:4.067663pt;}
._e{width:5.897859pt;}
._49{width:8.310103pt;}
._48{width:9.383474pt;}
._2d{width:11.561965pt;}
._37{width:12.954036pt;}
._2c{width:14.085849pt;}
._38{width:15.121760pt;}
._2a{width:16.161019pt;}
._10{width:17.693578pt;}
._59{width:18.607505pt;}
._24{width:19.627673pt;}
._7{width:20.690466pt;}
._5{width:21.615002pt;}
._29{width:22.597852pt;}
._1a{width:23.562871pt;}
._26{width:24.691370pt;}
._28{width:26.269406pt;}
._16{width:27.735878pt;}
._b1{width:28.692343pt;}
._2b{width:29.648698pt;}
._aa{width:30.551973pt;}
._8{width:31.721131pt;}
._46{width:32.677328pt;}
._ab{width:34.175714pt;}
._27{width:35.174620pt;}
._36{width:36.099184pt;}
._11{width:37.230939pt;}
._44{width:38.954402pt;}
._1c{width:40.710120pt;}
._25{width:42.275530pt;}
._ac{width:43.357167pt;}
._ad{width:45.747900pt;}
._45{width:47.724850pt;}
._17{width:49.148827pt;}
._9a{width:51.973370pt;}
._f{width:54.302812pt;}
._47{width:59.733104pt;}
._5e{width:64.493932pt;}
._1b{width:67.410662pt;}
._d{width:72.049523pt;}
._15{width:73.059067pt;}
._35{width:86.077200pt;}
._4f{width:90.327573pt;}
._4b{width:96.384834pt;}
._12{width:99.360331pt;}
._32{width:111.581120pt;}
._ba{width:113.653341pt;}
._4c{width:119.285531pt;}
._3a{width:122.951767pt;}
._ae{width:127.680682pt;}
._4d{width:128.690225pt;}
._4e{width:130.103574pt;}
._b4{width:136.979108pt;}
._50{width:145.852464pt;}
._4a{width:156.904308pt;}
._39{width:164.141152pt;}
._31{width:167.371680pt;}
._54{width:180.495745pt;}
._51{width:181.760331pt;}
._69{width:192.450865pt;}
._3d{width:193.779212pt;}
._2e{width:195.266960pt;}
._b5{width:199.092598pt;}
._82{width:202.174363pt;}
._42{width:208.391025pt;}
._5a{width:214.288884pt;}
._af{width:216.361105pt;}
._40{width:220.186743pt;}
._bb{width:222.003933pt;}
._2f{width:223.162240pt;}
._3f{width:226.828477pt;}
._5b{width:230.388446pt;}
._52{width:235.967502pt;}
._56{width:246.913078pt;}
._3c{width:249.250969pt;}
._30{width:251.057520pt;}
._55{width:252.970339pt;}
._5f{width:256.710986pt;}
._5c{width:258.602529pt;}
._57{width:267.741554pt;}
._b0{width:269.494972pt;}
._3b{width:271.694702pt;}
._bc{width:272.629870pt;}
._53{width:273.639413pt;}
._33{width:278.952800pt;}
._bf{width:280.535749pt;}
._3e{width:286.922880pt;}
._43{width:289.005739pt;}
._b6{width:296.157106pt;}
._5d{width:300.631418pt;}
._b2{width:302.182938pt;}
._b7{width:311.481364pt;}
._b9{width:320.875421pt;}
._9d{width:323.213311pt;}
._9c{width:325.816870pt;}
._9b{width:331.342793pt;}
._41{width:338.739038pt;}
._bd{width:344.466858pt;}
._63{width:346.485945pt;}
._a3{width:349.408307pt;}
._9f{width:350.375355pt;}
._a2{width:354.243489pt;}
._9e{width:356.421978pt;}
._a1{width:359.025537pt;}
._a0{width:360.885222pt;}
._7f{width:363.648183pt;}
._58{width:367.952027pt;}
._67{width:373.052878pt;}
._a8{width:377.091052pt;}
._83{width:390.215117pt;}
._a6{width:392.606141pt;}
._a7{width:396.644315pt;}
._b3{width:400.895024pt;}
._a4{width:402.170237pt;}
._a5{width:404.401859pt;}
._b8{width:410.140317pt;}
._a9{width:412.531341pt;}
._c0{width:421.085893pt;}
._7d{width:467.524893pt;}
._96{width:481.520375pt;}
._98{width:484.687132pt;}
._77{width:492.683831pt;}
._60{width:500.202221pt;}
._94{width:503.225587pt;}
._34{width:543.272493pt;}
._8c{width:631.782950pt;}
._89{width:640.783850pt;}
._6f{width:658.668687pt;}
._8d{width:665.969302pt;}
._6d{width:667.669586pt;}
._88{width:676.840480pt;}
._81{width:696.191845pt;}
._6c{width:703.726217pt;}
._74{width:721.812996pt;}
._6a{width:723.077582pt;}
._6e{width:727.370789pt;}
._68{width:735.415266pt;}
._8f{width:809.165073pt;}
._85{width:823.936288pt;}
._c1{width:832.735247pt;}
._6b{width:850.822025pt;}
._95{width:881.246454pt;}
._93{width:906.708214pt;}
._7b{width:930.974445pt;}
._72{width:933.593951pt;}
._70{width:948.561799pt;}
._8b{width:998.077200pt;}
._75{width:1006.557388pt;}
._62{width:1012.402113pt;}
._80{width:1047.752093pt;}
._8a{width:1065.567838pt;}
._90{width:1087.639668pt;}
._92{width:1121.480622pt;}
._87{width:1142.080606pt;}
._76{width:1243.375031pt;}
._86{width:1258.566013pt;}
._61{width:1262.046239pt;}
._7e{width:1265.383035pt;}
._64{width:1292.268771pt;}
._91{width:1296.179457pt;}
._8e{width:1305.839183pt;}
._78{width:1316.497814pt;}
._73{width:1327.868462pt;}
._71{width:1332.724919pt;}
._84{width:1336.954353pt;}
._65{width:1343.404827pt;}
._66{width:1352.437584pt;}
._7a{width:1376.932297pt;}
._79{width:1393.286890pt;}
._21{width:1438.939532pt;}
._97{width:1560.010325pt;}
._7c{width:1586.896062pt;}
._18{width:1650.359187pt;}
._1e{width:1837.897610pt;}
._20{width:1862.663295pt;}
._1d{width:1945.350218pt;}
._1f{width:1953.575363pt;}
._22{width:1993.579794pt;}
._19{width:2007.519535pt;}
._9{width:2062.406784pt;}
.fs6{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:43.298667pt;}
.y6e{bottom:86.970667pt;}
.y22{bottom:91.590667pt;}
.y6d{bottom:95.840000pt;}
.y1da{bottom:98.897333pt;}
.y21{bottom:104.210667pt;}
.y6c{bottom:112.209333pt;}
.y1b1{bottom:114.838667pt;}
.y20{bottom:116.829333pt;}
.y1d9{bottom:121.480000pt;}
.y6b{bottom:124.829333pt;}
.y1f{bottom:133.200000pt;}
.y1b0{bottom:137.420000pt;}
.y26c{bottom:142.174667pt;}
.y6a{bottom:144.450667pt;}
.y1e{bottom:153.189333pt;}
.y1d8{bottom:153.360000pt;}
.y26b{bottom:158.114667pt;}
.y69{bottom:160.390667pt;}
.y1af{bottom:163.986667pt;}
.y26a{bottom:174.054667pt;}
.y68{bottom:176.330667pt;}
.y1d{bottom:177.100000pt;}
.y1bd{bottom:178.598667pt;}
.y1d7{bottom:179.928000pt;}
.y1ae{bottom:186.569333pt;}
.y269{bottom:189.994667pt;}
.y1c{bottom:201.010667pt;}
.y1bc{bottom:201.181333pt;}
.y1d6{bottom:202.509333pt;}
.y268{bottom:205.936000pt;}
.y67{bottom:208.820000pt;}
.y1ad{bottom:213.136000pt;}
.y12f{bottom:217.858667pt;}
.y1d5{bottom:218.449333pt;}
.y1b{bottom:224.921333pt;}
.y1bb{bottom:227.748000pt;}
.y14f{bottom:234.518667pt;}
.y1ac{bottom:235.718667pt;}
.y267{bottom:237.816000pt;}
.y12e{bottom:240.441333pt;}
.y42{bottom:242.358667pt;}
.y1d4{bottom:245.016000pt;}
.y1a{bottom:248.830667pt;}
.y1ba{bottom:250.330667pt;}
.y266{bottom:253.756000pt;}
.y66{bottom:253.974667pt;}
.y12d{bottom:256.381333pt;}
.y14e{bottom:257.101333pt;}
.y1d3{bottom:267.598667pt;}
.y1ab{bottom:268.206667pt;}
.y265{bottom:269.696000pt;}
.y65{bottom:269.914667pt;}
.y12c{bottom:272.321333pt;}
.y19{bottom:272.741333pt;}
.y1b9{bottom:276.897333pt;}
.y41{bottom:279.553333pt;}
.y1d2{bottom:283.538667pt;}
.y14d{bottom:283.668000pt;}
.y264{bottom:285.636000pt;}
.y12b{bottom:288.261333pt;}
.y64{bottom:293.824000pt;}
.y18{bottom:296.652000pt;}
.y1b8{bottom:299.478667pt;}
.y263{bottom:301.577333pt;}
.y40{bottom:303.462667pt;}
.y12a{bottom:304.201333pt;}
.y14c{bottom:306.250667pt;}
.y63{bottom:309.765333pt;}
.y1aa{bottom:310.705333pt;}
.y10e{bottom:314.090667pt;}
.y1d1{bottom:316.028000pt;}
.y262{bottom:317.517333pt;}
.y129{bottom:320.142667pt;}
.y14b{bottom:322.190667pt;}
.yef{bottom:322.798667pt;}
.y62{bottom:325.705333pt;}
.y1a9{bottom:326.645333pt;}
.y3f{bottom:327.373333pt;}
.y8c{bottom:329.869333pt;}
.y1b7{bottom:331.968000pt;}
.y261{bottom:333.457333pt;}
.y17{bottom:333.845333pt;}
.y128{bottom:336.082667pt;}
.y10d{bottom:336.673333pt;}
.y61{bottom:341.645333pt;}
.y1a8{bottom:342.585333pt;}
.yee{bottom:345.381333pt;}
.y14a{bottom:348.757333pt;}
.y260{bottom:349.397333pt;}
.y3e{bottom:351.284000pt;}
.y208{bottom:354.070667pt;}
.y238{bottom:356.118667pt;}
.y60{bottom:357.585333pt;}
.y1a7{bottom:358.525333pt;}
.y8b{bottom:359.504000pt;}
.y127{bottom:362.649333pt;}
.y10c{bottom:363.240000pt;}
.y25f{bottom:365.337333pt;}
.y16{bottom:371.040000pt;}
.y149{bottom:371.340000pt;}
.yed{bottom:371.948000pt;}
.y237{bottom:372.058667pt;}
.y1b6{bottom:374.465333pt;}
.y1d0{bottom:374.466667pt;}
.y3d{bottom:375.194667pt;}
.y8a{bottom:375.444000pt;}
.y207{bottom:376.653333pt;}
.y25e{bottom:381.278667pt;}
.y5f{bottom:381.496000pt;}
.y1a6{bottom:382.436000pt;}
.y126{bottom:385.232000pt;}
.y10b{bottom:385.821333pt;}
.y148{bottom:387.280000pt;}
.yc7{bottom:387.998667pt;}
.y1b5{bottom:390.406667pt;}
.y89{bottom:391.384000pt;}
.y206{bottom:392.593333pt;}
.yec{bottom:394.530667pt;}
.y15{bottom:394.950667pt;}
.y25d{bottom:397.218667pt;}
.y5e{bottom:397.436000pt;}
.y1a5{bottom:398.376000pt;}
.y3c{bottom:399.104000pt;}
.y10a{bottom:401.762667pt;}
.yc6{bottom:403.938667pt;}
.y1b4{bottom:406.346667pt;}
.y1e3{bottom:409.861333pt;}
.yeb{bottom:410.470667pt;}
.y125{bottom:411.798667pt;}
.y25c{bottom:413.158667pt;}
.y5d{bottom:413.376000pt;}
.y14{bottom:418.860000pt;}
.y205{bottom:419.160000pt;}
.y147{bottom:419.769333pt;}
.yc5{bottom:419.878667pt;}
.y1a4{bottom:422.286667pt;}
.y3b{bottom:423.014667pt;}
.y88{bottom:423.873333pt;}
.y109{bottom:428.329333pt;}
.y25b{bottom:429.098667pt;}
.y1e2{bottom:432.444000pt;}
.y18e{bottom:433.642667pt;}
.y124{bottom:434.380000pt;}
.yc4{bottom:435.820000pt;}
.yea{bottom:437.037333pt;}
.y5c{bottom:437.286667pt;}
.y1a3{bottom:438.226667pt;}
.y1cf{bottom:438.836000pt;}
.y204{bottom:441.742667pt;}
.y13{bottom:442.770667pt;}
.y25a{bottom:445.038667pt;}
.y1e1{bottom:448.384000pt;}
.y1f8{bottom:449.582667pt;}
.y123{bottom:450.321333pt;}
.y108{bottom:450.910667pt;}
.y5b{bottom:453.226667pt;}
.y1a2{bottom:454.166667pt;}
.y18d{bottom:456.224000pt;}
.y17a{bottom:457.682667pt;}
.yc3{bottom:458.401333pt;}
.ye9{bottom:459.620000pt;}
.y21a{bottom:459.858667pt;}
.y3a{bottom:460.209333pt;}
.y259{bottom:460.978667pt;}
.y146{bottom:462.266667pt;}
.y1e0{bottom:464.324000pt;}
.y15f{bottom:465.522667pt;}
.y12{bottom:466.681333pt;}
.y107{bottom:466.850667pt;}
.y203{bottom:468.309333pt;}
.y87{bottom:469.028000pt;}
.y5a{bottom:469.166667pt;}
.y1b3{bottom:470.716000pt;}
.y1f7{bottom:472.165333pt;}
.y236{bottom:474.341333pt;}
.ye8{bottom:475.560000pt;}
.y122{bottom:476.888000pt;}
.y258{bottom:476.920000pt;}
.y179{bottom:480.264000pt;}
.y219{bottom:482.441333pt;}
.y18c{bottom:482.792000pt;}
.y39{bottom:484.118667pt;}
.y86{bottom:484.968000pt;}
.y59{bottom:485.108000pt;}
.y145{bottom:486.177333pt;}
.y1a1{bottom:486.656000pt;}
.y15e{bottom:488.105333pt;}
.y1ce{bottom:489.465333pt;}
.y235{bottom:490.281333pt;}
.y11{bottom:490.592000pt;}
.y1df{bottom:490.890667pt;}
.y257{bottom:492.860000pt;}
.y1ed{bottom:498.141333pt;}
.y218{bottom:498.381333pt;}
.y106{bottom:499.340000pt;}
.y121{bottom:499.469333pt;}
.yc2{bottom:500.909333pt;}
.y144{bottom:502.117333pt;}
.y1f6{bottom:504.045333pt;}
.y18b{bottom:505.373333pt;}
.y1cd{bottom:505.405333pt;}
.y178{bottom:506.830667pt;}
.y38{bottom:508.029333pt;}
.ye7{bottom:508.049333pt;}
.y256{bottom:508.800000pt;}
.y85{bottom:508.878667pt;}
.y58{bottom:509.017333pt;}
.y1de{bottom:513.473333pt;}
.y20d{bottom:514.081333pt;}
.y217{bottom:514.321333pt;}
.y10{bottom:514.501333pt;}
.y15d{bottom:514.672000pt;}
.y120{bottom:515.409333pt;}
.yc1{bottom:516.849333pt;}
.y143{bottom:518.057333pt;}
.y1ec{bottom:520.724000pt;}
.y1b2{bottom:521.345333pt;}
.y202{bottom:522.772000pt;}
.y255{bottom:524.740000pt;}
.y84{bottom:524.818667pt;}
.y57{bottom:524.958667pt;}
.y177{bottom:529.413333pt;}
.y1f5{bottom:530.612000pt;}
.y18a{bottom:531.941333pt;}
.yc0{bottom:532.789333pt;}
.y142{bottom:533.997333pt;}
.y1eb{bottom:536.664000pt;}
.y15c{bottom:537.254667pt;}
.y1a0{bottom:537.285333pt;}
.yf{bottom:538.412000pt;}
.y201{bottom:538.712000pt;}
.y234{bottom:539.430667pt;}
.yab{bottom:539.560000pt;}
.y83{bottom:540.758667pt;}
.y216{bottom:540.888000pt;}
.y56{bottom:540.898667pt;}
.y105{bottom:541.838667pt;}
.y37{bottom:545.222667pt;}
.y176{bottom:545.353333pt;}
.y16a{bottom:545.962667pt;}
.y1c9{bottom:547.401333pt;}
.y11f{bottom:547.898667pt;}
.y141{bottom:549.937333pt;}
.ye6{bottom:550.546667pt;}
.y1ea{bottom:552.604000pt;}
.y15b{bottom:553.194667pt;}
.y19f{bottom:553.225333pt;}
.y189{bottom:554.522667pt;}
.ybf{bottom:555.370667pt;}
.y254{bottom:556.620000pt;}
.y55{bottom:556.838667pt;}
.y104{bottom:557.778667pt;}
.yaa{bottom:562.142667pt;}
.ye{bottom:562.322667pt;}
.y1c8{bottom:563.341333pt;}
.y215{bottom:563.470667pt;}
.y140{bottom:565.878667pt;}
.ye5{bottom:566.486667pt;}
.y169{bottom:568.544000pt;}
.y36{bottom:569.133333pt;}
.y1f4{bottom:569.134667pt;}
.y19e{bottom:569.165333pt;}
.y200{bottom:571.201333pt;}
.y233{bottom:571.312000pt;}
.y175{bottom:571.920000pt;}
.y253{bottom:572.561333pt;}
.y54{bottom:572.778667pt;}
.y82{bottom:573.248000pt;}
.y103{bottom:573.718667pt;}
.y1e9{bottom:579.170667pt;}
.y1c7{bottom:579.281333pt;}
.y214{bottom:579.410667pt;}
.y15a{bottom:579.761333pt;}
.y13f{bottom:581.818667pt;}
.ybe{bottom:581.938667pt;}
.y168{bottom:584.484000pt;}
.y1f3{bottom:585.074667pt;}
.y19d{bottom:585.106667pt;}
.y23c{bottom:585.924000pt;}
.y188{bottom:587.012000pt;}
.y232{bottom:587.252000pt;}
.y252{bottom:588.501333pt;}
.ya9{bottom:588.709333pt;}
.y102{bottom:589.658667pt;}
.y11e{bottom:590.397333pt;}
.y35{bottom:593.044000pt;}
.y174{bottom:594.502667pt;}
.y1cc{bottom:595.221333pt;}
.y13e{bottom:597.758667pt;}
.ybd{bottom:597.878667pt;}
.ye4{bottom:598.976000pt;}
.yd{bottom:599.516000pt;}
.y19c{bottom:601.046667pt;}
.y1e8{bottom:601.753333pt;}
.y1c6{bottom:601.864000pt;}
.y159{bottom:602.344000pt;}
.y231{bottom:603.192000pt;}
.y53{bottom:605.268000pt;}
.y101{bottom:605.598667pt;}
.y213{bottom:605.977333pt;}
.y11d{bottom:606.337333pt;}
.y173{bottom:610.442667pt;}
.y167{bottom:611.052000pt;}
.y1c0{bottom:611.162667pt;}
.ya8{bottom:611.292000pt;}
.y1f2{bottom:611.641333pt;}
.y241{bottom:612.490667pt;}
.y1ff{bottom:613.698667pt;}
.ybc{bottom:613.818667pt;}
.y34{bottom:616.954667pt;}
.y19b{bottom:616.986667pt;}
.y1e7{bottom:617.693333pt;}
.y1c5{bottom:617.804000pt;}
.y158{bottom:618.284000pt;}
.y81{bottom:618.402667pt;}
.y251{bottom:620.381333pt;}
.y100{bottom:621.540000pt;}
.y13d{bottom:621.669333pt;}
.y11c{bottom:622.277333pt;}
.y229{bottom:624.445333pt;}
.y1dd{bottom:626.382667pt;}
.y23e{bottom:627.102667pt;}
.ya7{bottom:627.232000pt;}
.y20c{bottom:628.320000pt;}
.y212{bottom:628.560000pt;}
.y187{bottom:629.509333pt;}
.y1fe{bottom:629.638667pt;}
.ybb{bottom:629.758667pt;}
.y19a{bottom:632.926667pt;}
.y166{bottom:633.633333pt;}
.y1bf{bottom:633.744000pt;}
.y1f1{bottom:634.224000pt;}
.y80{bottom:634.342667pt;}
.y240{bottom:635.072000pt;}
.y250{bottom:636.321333pt;}
.y13c{bottom:637.609333pt;}
.y11b{bottom:638.217333pt;}
.y33{bottom:640.864000pt;}
.y172{bottom:642.932000pt;}
.yd0{bottom:643.042667pt;}
.y211{bottom:644.500000pt;}
.yff{bottom:645.449333pt;}
.y1fd{bottom:645.578667pt;}
.y230{bottom:645.698667pt;}
.y228{bottom:647.028000pt;}
.y199{bottom:648.866667pt;}
.y165{bottom:649.573333pt;}
.ye3{bottom:649.605333pt;}
.y1be{bottom:649.684000pt;}
.y1f0{bottom:650.164000pt;}
.y7f{bottom:650.284000pt;}
.y52{bottom:650.422667pt;}
.y157{bottom:650.773333pt;}
.y20b{bottom:650.901333pt;}
.y24f{bottom:652.261333pt;}
.yba{bottom:652.341333pt;}
.ya6{bottom:653.798667pt;}
.y11a{bottom:654.157333pt;}
.y1dc{bottom:658.872000pt;}
.y1e6{bottom:660.200000pt;}
.y1c4{bottom:660.310667pt;}
.y210{bottom:660.440000pt;}
.yfe{bottom:661.389333pt;}
.y186{bottom:661.390667pt;}
.y1fc{bottom:661.520000pt;}
.y22f{bottom:661.640000pt;}
.y198{bottom:664.808000pt;}
.ye2{bottom:665.545333pt;}
.ycf{bottom:665.624000pt;}
.y1ef{bottom:666.104000pt;}
.y7e{bottom:666.224000pt;}
.y51{bottom:666.362667pt;}
.y20a{bottom:666.842667pt;}
.y24e{bottom:668.202667pt;}
.y119{bottom:670.098667pt;}
.y227{bottom:673.594667pt;}
.y164{bottom:676.140000pt;}
.y1c3{bottom:676.250667pt;}
.ya5{bottom:676.380000pt;}
.yfd{bottom:677.330667pt;}
.y1fb{bottom:677.460000pt;}
.yc{bottom:677.870667pt;}
.y32{bottom:678.058667pt;}
.y197{bottom:680.748000pt;}
.ye1{bottom:681.485333pt;}
.y280{bottom:682.020000pt;}
.y7d{bottom:682.164000pt;}
.y1e5{bottom:682.782667pt;}
.y24d{bottom:684.142667pt;}
.y22e{bottom:684.221333pt;}
.yb9{bottom:684.830667pt;}
.y171{bottom:685.429333pt;}
.y118{bottom:686.038667pt;}
.y50{bottom:690.273333pt;}
.yce{bottom:692.192000pt;}
.ya4{bottom:692.321333pt;}
.yb{bottom:692.482667pt;}
.yfc{bottom:693.270667pt;}
.y1fa{bottom:693.400000pt;}
.y226{bottom:696.176000pt;}
.y196{bottom:696.688000pt;}
.ye0{bottom:697.425333pt;}
.y27f{bottom:697.961333pt;}
.y7c{bottom:698.104000pt;}
.y1ee{bottom:698.593333pt;}
.y163{bottom:698.722667pt;}
.y1c2{bottom:698.833333pt;}
.y24c{bottom:700.082667pt;}
.y22d{bottom:700.161333pt;}
.y185{bottom:701.240000pt;}
.y170{bottom:701.369333pt;}
.y31{bottom:701.969333pt;}
.y117{bottom:701.978667pt;}
.y4f{bottom:706.213333pt;}
.y181{bottom:706.804000pt;}
.ya{bottom:707.094667pt;}
.y20f{bottom:708.869333pt;}
.yfb{bottom:709.210667pt;}
.y195{bottom:712.628000pt;}
.ydf{bottom:713.366667pt;}
.y27e{bottom:713.901333pt;}
.y7b{bottom:714.044000pt;}
.y162{bottom:714.662667pt;}
.ycd{bottom:714.773333pt;}
.y24b{bottom:716.022667pt;}
.y22c{bottom:716.101333pt;}
.y23f{bottom:716.710667pt;}
.y156{bottom:717.181333pt;}
.y16f{bottom:717.310667pt;}
.y116{bottom:717.918667pt;}
.y13b{bottom:720.728000pt;}
.y9{bottom:721.706667pt;}
.y4e{bottom:722.153333pt;}
.y225{bottom:722.744000pt;}
.ya3{bottom:724.809333pt;}
.yfa{bottom:725.150667pt;}
.y23b{bottom:725.400000pt;}
.y30{bottom:725.878667pt;}
.yb8{bottom:727.328000pt;}
.y194{bottom:728.568000pt;}
.yde{bottom:729.306667pt;}
.y180{bottom:729.385333pt;}
.y7a{bottom:729.984000pt;}
.ycc{bottom:730.713333pt;}
.y209{bottom:731.212000pt;}
.y24a{bottom:731.962667pt;}
.y22b{bottom:732.042667pt;}
.y155{bottom:733.121333pt;}
.y16e{bottom:733.250667pt;}
.y115{bottom:733.858667pt;}
.y8{bottom:736.317333pt;}
.y13a{bottom:736.668000pt;}
.y4d{bottom:738.093333pt;}
.yf9{bottom:741.090667pt;}
.y1c1{bottom:741.340000pt;}
.yb7{bottom:743.268000pt;}
.y193{bottom:744.508000pt;}
.ydd{bottom:745.246667pt;}
.y224{bottom:745.325333pt;}
.y27d{bottom:745.781333pt;}
.y79{bottom:745.925333pt;}
.y161{bottom:747.152000pt;}
.y249{bottom:747.902667pt;}
.y23a{bottom:747.982667pt;}
.y154{bottom:749.061333pt;}
.y16d{bottom:749.190667pt;}
.y2f{bottom:749.789333pt;}
.y1f9{bottom:749.798667pt;}
.y7{bottom:750.929333pt;}
.y20e{bottom:751.368000pt;}
.y139{bottom:752.608000pt;}
.y17f{bottom:755.952000pt;}
.y184{bottom:757.032000pt;}
.ycb{bottom:757.281333pt;}
.y114{bottom:757.769333pt;}
.yb6{bottom:759.208000pt;}
.y192{bottom:760.449333pt;}
.ydc{bottom:761.186667pt;}
.y27c{bottom:761.721333pt;}
.y78{bottom:761.865333pt;}
.y248{bottom:763.844000pt;}
.y1cb{bottom:763.922667pt;}
.y22a{bottom:764.530667pt;}
.y153{bottom:765.001333pt;}
.y16c{bottom:765.130667pt;}
.y6{bottom:765.541333pt;}
.y98{bottom:765.858667pt;}
.ya2{bottom:767.308000pt;}
.y138{bottom:768.548000pt;}
.y4c{bottom:770.582667pt;}
.y183{bottom:772.972000pt;}
.yf8{bottom:773.580000pt;}
.y2e{bottom:773.700000pt;}
.y113{bottom:773.709333pt;}
.yb5{bottom:775.148000pt;}
.y191{bottom:776.389333pt;}
.ydb{bottom:777.126667pt;}
.y27b{bottom:777.661333pt;}
.y223{bottom:777.814667pt;}
.y17e{bottom:778.534667pt;}
.y247{bottom:779.784000pt;}
.yca{bottom:779.862667pt;}
.y23d{bottom:780.472000pt;}
.y1db{bottom:781.680000pt;}
.y97{bottom:781.798667pt;}
.ya1{bottom:783.248000pt;}
.y137{bottom:784.488000pt;}
.y152{bottom:788.912000pt;}
.y5{bottom:789.020000pt;}
.y112{bottom:789.649333pt;}
.yb4{bottom:791.089333pt;}
.y190{bottom:792.329333pt;}
.yda{bottom:793.066667pt;}
.y27a{bottom:793.602667pt;}
.y246{bottom:795.724000pt;}
.yc9{bottom:795.802667pt;}
.y239{bottom:796.412000pt;}
.y2d{bottom:797.610667pt;}
.y16b{bottom:797.620000pt;}
.y96{bottom:797.740000pt;}
.y77{bottom:799.058667pt;}
.ya0{bottom:799.188000pt;}
.y136{bottom:800.429333pt;}
.y151{bottom:804.852000pt;}
.y17d{bottom:805.101333pt;}
.y111{bottom:805.590667pt;}
.yb3{bottom:807.029333pt;}
.y18f{bottom:808.269333pt;}
.yd9{bottom:809.008000pt;}
.y279{bottom:809.542667pt;}
.y245{bottom:811.664000pt;}
.y1ca{bottom:812.352000pt;}
.y76{bottom:814.998667pt;}
.y9f{bottom:815.128000pt;}
.y4b{bottom:815.737333pt;}
.y135{bottom:816.369333pt;}
.y222{bottom:820.312000pt;}
.y182{bottom:821.401333pt;}
.y2c{bottom:821.520000pt;}
.y110{bottom:821.530667pt;}
.y95{bottom:821.649333pt;}
.y160{bottom:822.138667pt;}
.yb2{bottom:822.969333pt;}
.yf7{bottom:824.209333pt;}
.yd8{bottom:824.948000pt;}
.y278{bottom:825.482667pt;}
.y17c{bottom:827.684000pt;}
.yc8{bottom:828.292000pt;}
.y9e{bottom:831.069333pt;}
.y4a{bottom:831.677333pt;}
.y134{bottom:832.309333pt;}
.y221{bottom:836.253333pt;}
.y150{bottom:837.341333pt;}
.y94{bottom:837.589333pt;}
.y1e4{bottom:838.078667pt;}
.yb1{bottom:838.909333pt;}
.yf6{bottom:840.149333pt;}
.yd7{bottom:840.888000pt;}
.y244{bottom:843.545333pt;}
.y2b{bottom:845.430667pt;}
.y9d{bottom:847.009333pt;}
.y49{bottom:847.617333pt;}
.y133{bottom:848.249333pt;}
.y75{bottom:852.193333pt;}
.y10f{bottom:854.020000pt;}
.yb0{bottom:854.849333pt;}
.yf5{bottom:856.090667pt;}
.yd6{bottom:856.828000pt;}
.y277{bottom:857.362667pt;}
.y4{bottom:858.094667pt;}
.y243{bottom:859.485333pt;}
.y17b{bottom:860.172000pt;}
.y93{bottom:861.500000pt;}
.y9c{bottom:862.949333pt;}
.y48{bottom:863.557333pt;}
.y132{bottom:864.189333pt;}
.y220{bottom:868.133333pt;}
.y2a{bottom:869.341333pt;}
.yaf{bottom:870.789333pt;}
.yf4{bottom:872.030667pt;}
.yd5{bottom:872.768000pt;}
.y276{bottom:873.302667pt;}
.y92{bottom:877.440000pt;}
.y47{bottom:879.498667pt;}
.y131{bottom:880.129333pt;}
.y242{bottom:882.093333pt;}
.y21f{bottom:884.073333pt;}
.y74{bottom:884.682667pt;}
.yae{bottom:886.730667pt;}
.yf3{bottom:887.970667pt;}
.yd4{bottom:888.708000pt;}
.y275{bottom:889.244000pt;}
.y29{bottom:893.252000pt;}
.y91{bottom:893.381333pt;}
.y46{bottom:895.438667pt;}
.y3{bottom:897.236000pt;}
.yad{bottom:902.670667pt;}
.y130{bottom:902.737333pt;}
.yf2{bottom:903.910667pt;}
.yd3{bottom:904.649333pt;}
.y274{bottom:905.184000pt;}
.y45{bottom:911.378667pt;}
.y21e{bottom:916.562667pt;}
.y28{bottom:917.161333pt;}
.y90{bottom:917.290667pt;}
.yf1{bottom:919.850667pt;}
.yd2{bottom:920.589333pt;}
.y273{bottom:921.124000pt;}
.y73{bottom:929.836000pt;}
.y8f{bottom:933.232000pt;}
.yac{bottom:935.160000pt;}
.y272{bottom:937.064000pt;}
.y9b{bottom:937.936000pt;}
.yf0{bottom:942.458667pt;}
.yd1{bottom:943.197333pt;}
.y2{bottom:943.729333pt;}
.y44{bottom:943.868000pt;}
.y72{bottom:945.777333pt;}
.y8e{bottom:949.172000pt;}
.y271{bottom:953.004000pt;}
.y9a{bottom:953.876000pt;}
.y27{bottom:954.356000pt;}
.y21d{bottom:959.060000pt;}
.y71{bottom:961.717333pt;}
.y8d{bottom:965.112000pt;}
.y270{bottom:968.945333pt;}
.y1{bottom:970.296000pt;}
.y21c{bottom:975.000000pt;}
.y70{bottom:977.657333pt;}
.y26{bottom:978.265333pt;}
.y26f{bottom:984.885333pt;}
.y99{bottom:986.365333pt;}
.y43{bottom:989.022667pt;}
.y6f{bottom:993.597333pt;}
.y26e{bottom:1000.825333pt;}
.y25{bottom:1002.176000pt;}
.y21b{bottom:1007.489333pt;}
.y26d{bottom:1023.433333pt;}
.y24{bottom:1026.086667pt;}
.ha{height:21.200555pt;}
.hb{height:31.880400pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.h8{height:37.193707pt;}
.he{height:39.340578pt;}
.hd{height:40.009802pt;}
.h9{height:44.154243pt;}
.hc{height:44.632747pt;}
.h3{height:44.887791pt;}
.h7{height:53.559147pt;}
.h4{height:55.021733pt;}
.h2{height:68.769785pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:83.149333pt;}
.xa{left:97.938667pt;}
.xf{left:99.384000pt;}
.x9{left:103.074667pt;}
.xc{left:107.053333pt;}
.x7{left:116.358667pt;}
.x21{left:123.996000pt;}
.x12{left:131.302667pt;}
.x6{left:134.789333pt;}
.x13{left:145.582667pt;}
.x1{left:189.413333pt;}
.xd{left:208.678667pt;}
.xe{left:235.524000pt;}
.x1a{left:240.122667pt;}
.x20{left:241.525333pt;}
.x1f{left:242.890667pt;}
.x1d{left:244.052000pt;}
.x1b{left:250.344000pt;}
.x1c{left:260.472000pt;}
.x1e{left:262.630667pt;}
.x18{left:265.860000pt;}
.x3{left:274.756000pt;}
.x15{left:297.224000pt;}
.x11{left:299.309333pt;}
.x17{left:300.969333pt;}
.x16{left:307.445333pt;}
.x19{left:315.581333pt;}
.x10{left:331.078667pt;}
.x4{left:346.950667pt;}
.x2{left:362.598667pt;}
.x5{left:369.792000pt;}
.x14{left:390.209333pt;}
.xb{left:393.529333pt;}
.x22{left:404.820000pt;}
}




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