
    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_5cca99773c05a883570b2210.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_76e16ac2f9faaa57f885651a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_22f93786fe680582860ed1cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956000;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_9e4c245dc638309e84da31ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.726000;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_b7460b14f8160f3f7f412db7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.497000;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_82cfc2295077302c96db9bfd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893000;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_f0f822c67f5335b395b6de1f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a91d39d29a416e93b6642025.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b8be1e6df7f176b06c7c9536.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d78d91787c532e451e44276a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7cc5e86076717b71ab9d158e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.688000;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_e83d452883b2830683b8545e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_ec60fef82155e7332c672722.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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_614f6b7003cb2d2b526ae737.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.800000;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_1bf9fec4b1e2ab70f9f50b4d.woff2')format("woff");}.fff{font-family:fff;line-height:0.653000;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);}
.v15{vertical-align:-66.354000px;}
.v5{vertical-align:-14.946000px;}
.v7{vertical-align:-12.552000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.556000px;}
.vc{vertical-align:6.594000px;}
.v2{vertical-align:11.958000px;}
.vb{vertical-align:15.564000px;}
.v12{vertical-align:16.662000px;}
.v10{vertical-align:17.934000px;}
.v3{vertical-align:20.616000px;}
.va{vertical-align:21.690000px;}
.v1{vertical-align:23.532000px;}
.vd{vertical-align:37.254000px;}
.v13{vertical-align:39.624000px;}
.v11{vertical-align:46.656000px;}
.vf{vertical-align:50.670000px;}
.v9{vertical-align:56.790000px;}
.ve{vertical-align:65.448000px;}
.v14{vertical-align:81.132000px;}
.v6{vertical-align:120.150000px;}
.ls2{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000065px;}
.ls1d{letter-spacing:0.000066px;}
.ls71{letter-spacing:0.000070px;}
.ls19{letter-spacing:0.000512px;}
.ls16{letter-spacing:0.000615px;}
.ls14{letter-spacing:0.000681px;}
.ls80{letter-spacing:0.000966px;}
.ls73{letter-spacing:0.001639px;}
.ls25{letter-spacing:0.001690px;}
.ls68{letter-spacing:0.002012px;}
.ls76{letter-spacing:0.003720px;}
.ls38{letter-spacing:0.004149px;}
.ls28{letter-spacing:0.011265px;}
.ls21{letter-spacing:0.011601px;}
.ls47{letter-spacing:0.013375px;}
.ls5e{letter-spacing:0.016567px;}
.ls34{letter-spacing:0.016875px;}
.ls53{letter-spacing:0.020616px;}
.ls36{letter-spacing:0.020775px;}
.ls29{letter-spacing:0.025136px;}
.ls5c{letter-spacing:0.025938px;}
.ls31{letter-spacing:0.028576px;}
.ls65{letter-spacing:1.004227px;}
.ls57{letter-spacing:1.663578px;}
.ls3{letter-spacing:2.371909px;}
.ls81{letter-spacing:2.391030px;}
.ls4{letter-spacing:2.410166px;}
.ls1{letter-spacing:2.438851px;}
.ls0{letter-spacing:2.964877px;}
.ls39{letter-spacing:2.984234px;}
.ls15{letter-spacing:2.984525px;}
.ls35{letter-spacing:2.988615px;}
.ls6f{letter-spacing:2.988648px;}
.ls5f{letter-spacing:2.988775px;}
.lsd{letter-spacing:2.988780px;}
.ls37{letter-spacing:2.989140px;}
.ls24{letter-spacing:2.989202px;}
.ls7f{letter-spacing:2.989409px;}
.ls59{letter-spacing:2.990234px;}
.ls1e{letter-spacing:2.990525px;}
.lse{letter-spacing:3.012698px;}
.ls7a{letter-spacing:4.279009px;}
.ls69{letter-spacing:4.281773px;}
.ls4e{letter-spacing:4.287827px;}
.ls5a{letter-spacing:4.484282px;}
.ls3a{letter-spacing:4.490282px;}
.ls4b{letter-spacing:5.408908px;}
.ls17{letter-spacing:5.973959px;}
.ls2b{letter-spacing:5.982863px;}
.ls74{letter-spacing:6.395989px;}
.ls6d{letter-spacing:6.491016px;}
.ls70{letter-spacing:6.515540px;}
.ls66{letter-spacing:6.519220px;}
.ls51{letter-spacing:6.529139px;}
.ls7d{letter-spacing:6.531115px;}
.ls78{letter-spacing:7.172012px;}
.ls79{letter-spacing:7.172525px;}
.ls10{letter-spacing:7.176773px;}
.ls63{letter-spacing:7.178012px;}
.ls1f{letter-spacing:9.508745px;}
.lsf{letter-spacing:9.982525px;}
.ls3e{letter-spacing:13.270183px;}
.ls4a{letter-spacing:13.287249px;}
.ls44{letter-spacing:13.301868px;}
.ls41{letter-spacing:13.509286px;}
.ls18{letter-spacing:15.183002px;}
.ls55{letter-spacing:16.079636px;}
.ls5b{letter-spacing:16.199188px;}
.ls7c{letter-spacing:16.272648px;}
.ls43{letter-spacing:16.438290px;}
.ls49{letter-spacing:16.617617px;}
.ls3d{letter-spacing:16.737168px;}
.ls64{letter-spacing:17.132525px;}
.ls48{letter-spacing:18.686908px;}
.ls46{letter-spacing:18.692908px;}
.ls4d{letter-spacing:18.889090px;}
.ls54{letter-spacing:19.591140px;}
.ls77{letter-spacing:19.597409px;}
.ls42{letter-spacing:20.332601px;}
.ls6b{letter-spacing:20.861684px;}
.ls75{letter-spacing:20.921460px;}
.ls5d{letter-spacing:21.041011px;}
.ls3f{letter-spacing:21.578992px;}
.ls56{letter-spacing:21.620450px;}
.ls4c{letter-spacing:21.889140px;}
.ls50{letter-spacing:22.176748px;}
.ls12{letter-spacing:23.252708px;}
.ls40{letter-spacing:25.225303px;}
.ls6c{letter-spacing:26.214648px;}
.ls20{letter-spacing:26.958796px;}
.ls2c{letter-spacing:27.138122px;}
.ls23{letter-spacing:27.795654px;}
.ls2e{letter-spacing:28.094532px;}
.ls3b{letter-spacing:28.111140px;}
.ls61{letter-spacing:29.230268px;}
.ls62{letter-spacing:29.599409px;}
.ls3c{letter-spacing:29.786908px;}
.ls2d{letter-spacing:31.055251px;}
.ls60{letter-spacing:31.441966px;}
.ls30{letter-spacing:35.148053px;}
.ls22{letter-spacing:35.465376px;}
.ls2f{letter-spacing:38.165251px;}
.ls11{letter-spacing:40.888363px;}
.ls33{letter-spacing:41.125613px;}
.ls27{letter-spacing:41.245164px;}
.ls2a{letter-spacing:45.489232px;}
.ls1b{letter-spacing:46.385866px;}
.ls26{letter-spacing:48.935376px;}
.ls1a{letter-spacing:49.375202px;}
.ls32{letter-spacing:49.434421px;}
.ls1c{letter-spacing:54.694674px;}
.ls67{letter-spacing:68.782362px;}
.ls13{letter-spacing:69.459247px;}
.ls6{letter-spacing:92.640845px;}
.ls4f{letter-spacing:97.028908px;}
.ls52{letter-spacing:99.272908px;}
.ls5{letter-spacing:105.713856px;}
.ls7b{letter-spacing:110.848362px;}
.ls9{letter-spacing:111.308890px;}
.ls7e{letter-spacing:113.092362px;}
.ls6a{letter-spacing:115.114362px;}
.ls6e{letter-spacing:117.358362px;}
.lsa{letter-spacing:140.144832px;}
.ls8{letter-spacing:140.629018px;}
.lsc{letter-spacing:143.803123px;}
.ls7{letter-spacing:197.332531px;}
.ls58{letter-spacing:200.815140px;}
.lsb{letter-spacing:211.320115px;}
.ls72{letter-spacing:442.458991px;}
.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;}
}
.wsf1{word-spacing:-59.775600px;}
.wscb{word-spacing:-47.324343px;}
.wsc4{word-spacing:-38.937826px;}
.wsc1{word-spacing:-29.015076px;}
.wsc0{word-spacing:-28.955301px;}
.wsf4{word-spacing:-22.379985px;}
.wscd{word-spacing:-22.320209px;}
.wsf7{word-spacing:-20.706268px;}
.ws93{word-spacing:-14.943900px;}
.ws1b{word-spacing:-14.920027px;}
.ws82{word-spacing:-11.955150px;}
.ws10c{word-spacing:-11.936059px;}
.ws84{word-spacing:-9.564150px;}
.wsf9{word-spacing:-7.879140px;}
.wsca{word-spacing:-6.643654px;}
.wsf8{word-spacing:-5.846054px;}
.wsea{word-spacing:-5.786278px;}
.ws10e{word-spacing:-2.391030px;}
.ws54{word-spacing:-1.135736px;}
.ws142{word-spacing:-0.717309px;}
.ws49{word-spacing:-0.717307px;}
.ws10{word-spacing:-0.645581px;}
.wscc{word-spacing:-0.597756px;}
.ws5e{word-spacing:-0.478205px;}
.ws112{word-spacing:-0.418429px;}
.ws35{word-spacing:-0.298878px;}
.ws14a{word-spacing:-0.286924px;}
.ws60{word-spacing:-0.179327px;}
.ws156{word-spacing:-0.143462px;}
.ws7d{word-spacing:-0.119551px;}
.ws50{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053798px;}
.wsb2{word-spacing:-0.041843px;}
.ws88{word-spacing:-0.012000px;}
.ws83{word-spacing:-0.009609px;}
.ws47{word-spacing:0.000000px;}
.wsdd{word-spacing:0.011955px;}
.ws81{word-spacing:0.038212px;}
.wsbb{word-spacing:0.047776px;}
.ws134{word-spacing:0.059776px;}
.wse3{word-spacing:0.119551px;}
.wsc2{word-spacing:0.179327px;}
.ws8{word-spacing:0.376589px;}
.ws12e{word-spacing:0.597756px;}
.wsa4{word-spacing:0.657532px;}
.ws53{word-spacing:0.717307px;}
.ws127{word-spacing:0.777083px;}
.ws4{word-spacing:0.806976px;}
.ws1e{word-spacing:0.896634px;}
.ws9d{word-spacing:0.956410px;}
.wsee{word-spacing:1.016185px;}
.ws2d{word-spacing:1.075961px;}
.wsd3{word-spacing:1.135736px;}
.ws43{word-spacing:1.195512px;}
.wsdb{word-spacing:1.255288px;}
.ws3f{word-spacing:1.315063px;}
.wsa1{word-spacing:1.374839px;}
.ws12d{word-spacing:1.434614px;}
.ws130{word-spacing:1.554166px;}
.ws120{word-spacing:1.733492px;}
.wsd1{word-spacing:1.793268px;}
.ws41{word-spacing:1.853044px;}
.ws61{word-spacing:1.912819px;}
.wsf{word-spacing:1.936742px;}
.ws146{word-spacing:1.960645px;}
.ws62{word-spacing:1.972595px;}
.ws2a{word-spacing:2.032370px;}
.wsaf{word-spacing:2.092146px;}
.ws131{word-spacing:2.151922px;}
.ws21{word-spacing:2.211697px;}
.ws59{word-spacing:2.271473px;}
.ws154{word-spacing:2.438851px;}
.ws15c{word-spacing:2.486671px;}
.ws6c{word-spacing:2.570351px;}
.ws14c{word-spacing:2.582312px;}
.ws13{word-spacing:2.743718px;}
.ws12c{word-spacing:2.749678px;}
.ws10b{word-spacing:2.809453px;}
.ws11e{word-spacing:2.869229px;}
.ws94{word-spacing:3.048556px;}
.ws100{word-spacing:3.168107px;}
.wsff{word-spacing:3.287658px;}
.ws19{word-spacing:3.335501px;}
.wsa0{word-spacing:3.347434px;}
.wsa2{word-spacing:3.407209px;}
.ws5{word-spacing:3.443098px;}
.ws2f{word-spacing:3.466985px;}
.ws148{word-spacing:3.490904px;}
.ws14b{word-spacing:3.634366px;}
.wsad{word-spacing:3.646312px;}
.ws7a{word-spacing:3.706087px;}
.ws65{word-spacing:3.765863px;}
.ws37{word-spacing:3.825638px;}
.ws14{word-spacing:3.873485px;}
.ws39{word-spacing:3.885414px;}
.ws143{word-spacing:3.921289px;}
.ws77{word-spacing:4.064741px;}
.ws3c{word-spacing:4.184292px;}
.ws30{word-spacing:4.244068px;}
.wsf5{word-spacing:4.315798px;}
.ws139{word-spacing:4.351675px;}
.ws6{word-spacing:4.411469px;}
.ws72{word-spacing:4.423394px;}
.ws113{word-spacing:4.483170px;}
.ws14e{word-spacing:4.495136px;}
.ws7c{word-spacing:4.542946px;}
.ws64{word-spacing:4.662497px;}
.ws162{word-spacing:4.686419px;}
.ws80{word-spacing:4.734209px;}
.ws161{word-spacing:4.734239px;}
.ws10d{word-spacing:4.782030px;}
.ws28{word-spacing:4.782048px;}
.ws7f{word-spacing:4.782060px;}
.ws9{word-spacing:4.841856px;}
.ws141{word-spacing:4.925522px;}
.ws5f{word-spacing:4.961375px;}
.wsab{word-spacing:5.021150px;}
.ws151{word-spacing:5.021163px;}
.ws63{word-spacing:5.080926px;}
.ws121{word-spacing:5.164625px;}
.wsd{word-spacing:5.164646px;}
.ws103{word-spacing:5.200477px;}
.ws3a{word-spacing:5.260253px;}
.ws163{word-spacing:5.355907px;}
.ws85{word-spacing:5.379840px;}
.wsfb{word-spacing:5.439580px;}
.ws8d{word-spacing:5.559131px;}
.wsbd{word-spacing:5.678682px;}
.ws125{word-spacing:5.738458px;}
.ws13e{word-spacing:5.786293px;}
.ws11b{word-spacing:5.798233px;}
.ws74{word-spacing:5.858009px;}
.ws48{word-spacing:5.917754px;}
.ws6f{word-spacing:5.917784px;}
.wsfa{word-spacing:5.929754px;}
.ws2b{word-spacing:5.977560px;}
.wsbc{word-spacing:6.037336px;}
.ws4a{word-spacing:6.097111px;}
.ws5d{word-spacing:6.156887px;}
.wsd9{word-spacing:6.216662px;}
.ws78{word-spacing:6.276438px;}
.ws70{word-spacing:6.336214px;}
.wscf{word-spacing:6.455765px;}
.wsb8{word-spacing:6.515540px;}
.ws29{word-spacing:6.575316px;}
.ws150{word-spacing:6.647063px;}
.ws9b{word-spacing:6.694867px;}
.ws16{word-spacing:6.724800px;}
.ws73{word-spacing:6.754643px;}
.wsd0{word-spacing:6.814418px;}
.ws8e{word-spacing:6.874194px;}
.wsba{word-spacing:6.993745px;}
.ws155{word-spacing:7.125269px;}
.ws57{word-spacing:7.232848px;}
.wsb0{word-spacing:7.292623px;}
.ws7b{word-spacing:7.412174px;}
.ws15a{word-spacing:7.412193px;}
.wsa6{word-spacing:7.531726px;}
.ws91{word-spacing:7.591501px;}
.ws137{word-spacing:7.603475px;}
.wsd2{word-spacing:7.651277px;}
.ws138{word-spacing:7.651296px;}
.ws147{word-spacing:7.699117px;}
.ws107{word-spacing:7.770828px;}
.ws108{word-spacing:7.842578px;}
.wsa9{word-spacing:8.009930px;}
.ws58{word-spacing:8.129482px;}
.ws95{word-spacing:8.189257px;}
.ws89{word-spacing:8.249033px;}
.wsed{word-spacing:8.308808px;}
.ws114{word-spacing:8.368584px;}
.ws14f{word-spacing:8.464246px;}
.ws12f{word-spacing:8.547911px;}
.ws136{word-spacing:8.655529px;}
.wsd4{word-spacing:8.727238px;}
.ws27{word-spacing:8.787013px;}
.ws132{word-spacing:8.846789px;}
.ws92{word-spacing:8.906564px;}
.ws3b{word-spacing:9.026116px;}
.wsfc{word-spacing:9.085891px;}
.ws4f{word-spacing:9.205442px;}
.ws22{word-spacing:9.384769px;}
.ws8c{word-spacing:9.444545px;}
.wsa5{word-spacing:9.564096px;}
.wse7{word-spacing:9.803198px;}
.ws2e{word-spacing:9.862974px;}
.ws118{word-spacing:10.102076px;}
.wsc9{word-spacing:10.161852px;}
.ws153{word-spacing:10.185788px;}
.wsae{word-spacing:10.221628px;}
.wsa{word-spacing:10.221696px;}
.ws11d{word-spacing:10.281403px;}
.ws111{word-spacing:10.341179px;}
.ws38{word-spacing:10.400954px;}
.wsb9{word-spacing:10.759608px;}
.ws13f{word-spacing:10.807456px;}
.ws104{word-spacing:10.819384px;}
.ws140{word-spacing:10.855276px;}
.ws157{word-spacing:10.950917px;}
.wsd6{word-spacing:11.058486px;}
.ws3{word-spacing:11.082470px;}
.wsb4{word-spacing:11.118262px;}
.wse6{word-spacing:11.130217px;}
.ws55{word-spacing:11.178037px;}
.ws56{word-spacing:11.237813px;}
.ws2{word-spacing:11.243866px;}
.ws126{word-spacing:11.297588px;}
.wse9{word-spacing:11.357364px;}
.ws12{word-spacing:11.405261px;}
.ws3d{word-spacing:11.417140px;}
.ws11{word-spacing:11.459059px;}
.ws9f{word-spacing:11.476915px;}
.ws40{word-spacing:11.536691px;}
.wsc{word-spacing:11.566656px;}
.ws145{word-spacing:11.763868px;}
.ws15b{word-spacing:11.811688px;}
.ws159{word-spacing:11.907329px;}
.ws87{word-spacing:11.955120px;}
.ws14d{word-spacing:11.955150px;}
.ws1c{word-spacing:12.014896px;}
.wsb1{word-spacing:12.074671px;}
.ws76{word-spacing:12.134447px;}
.ws10a{word-spacing:12.253998px;}
.ws51{word-spacing:12.373549px;}
.ws122{word-spacing:12.433356px;}
.wsa8{word-spacing:12.493100px;}
.ws26{word-spacing:12.672427px;}
.ws109{word-spacing:12.720280px;}
.ws45{word-spacing:12.732203px;}
.wse5{word-spacing:12.791978px;}
.ws90{word-spacing:12.851754px;}
.wse{word-spacing:12.857818px;}
.wseb{word-spacing:12.903357px;}
.wsd8{word-spacing:12.909687px;}
.wsec{word-spacing:12.911187px;}
.ws79{word-spacing:13.031081px;}
.ws158{word-spacing:13.055024px;}
.ws116{word-spacing:13.150632px;}
.ws9c{word-spacing:13.270183px;}
.wsda{word-spacing:13.329959px;}
.ws86{word-spacing:13.449600px;}
.ws160{word-spacing:13.485409px;}
.wsb6{word-spacing:13.569061px;}
.ws133{word-spacing:13.688612px;}
.ws117{word-spacing:13.748388px;}
.ws36{word-spacing:13.808164px;}
.ws15f{word-spacing:13.867974px;}
.ws15e{word-spacing:13.915795px;}
.ws15{word-spacing:14.202778px;}
.ws75{word-spacing:14.226593px;}
.wsaa{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wsc7{word-spacing:14.358099px;}
.ws6e{word-spacing:14.465695px;}
.ws144{word-spacing:14.489642px;}
.ws11f{word-spacing:14.645022px;}
.ws67{word-spacing:14.704798px;}
.wse2{word-spacing:14.776528px;}
.ws8a{word-spacing:14.824349px;}
.ws4e{word-spacing:14.943900px;}
.wsb{word-spacing:15.009754px;}
.wsb5{word-spacing:15.242778px;}
.wsa3{word-spacing:15.302554px;}
.ws7{word-spacing:15.332544px;}
.ws25{word-spacing:15.362329px;}
.ws99{word-spacing:15.541656px;}
.ws71{word-spacing:16.019861px;}
.ws52{word-spacing:16.079636px;}
.ws4c{word-spacing:16.318739px;}
.wse0{word-spacing:16.438290px;}
.ws23{word-spacing:16.557841px;}
.ws12b{word-spacing:16.677392px;}
.ws98{word-spacing:16.796944px;}
.ws4b{word-spacing:16.976270px;}
.wsc8{word-spacing:17.095822px;}
.ws15d{word-spacing:17.215416px;}
.ws105{word-spacing:17.275148px;}
.wsce{word-spacing:17.300964px;}
.ws106{word-spacing:17.454475px;}
.ws2c{word-spacing:17.514251px;}
.wsc6{word-spacing:17.645757px;}
.ws1f{word-spacing:17.693578px;}
.ws149{word-spacing:17.884904px;}
.wsef{word-spacing:17.932650px;}
.ws1a{word-spacing:17.932680px;}
.ws6b{word-spacing:18.112007px;}
.ws9a{word-spacing:18.231558px;}
.ws152{word-spacing:18.363110px;}
.ws3e{word-spacing:18.530436px;}
.ws13d{word-spacing:18.697855px;}
.ws31{word-spacing:19.008641px;}
.ws66{word-spacing:19.068416px;}
.ws4d{word-spacing:19.128192px;}
.wsfe{word-spacing:19.187968px;}
.wsc5{word-spacing:19.247743px;}
.ws32{word-spacing:19.307519px;}
.wsb3{word-spacing:19.367294px;}
.wsdf{word-spacing:19.379250px;}
.ws46{word-spacing:19.486846px;}
.wsdc{word-spacing:19.547208px;}
.wsf3{word-spacing:19.552697px;}
.wsf2{word-spacing:19.555225px;}
.ws8b{word-spacing:19.666172px;}
.ws44{word-spacing:19.905275px;}
.ws69{word-spacing:20.024826px;}
.ws115{word-spacing:20.144377px;}
.ws5c{word-spacing:20.323704px;}
.wsac{word-spacing:20.383480px;}
.wsc3{word-spacing:20.395435px;}
.ws13c{word-spacing:20.658499px;}
.ws13b{word-spacing:20.706320px;}
.ws1d{word-spacing:20.742133px;}
.ws8f{word-spacing:20.861684px;}
.ws123{word-spacing:20.981236px;}
.ws96{word-spacing:21.041011px;}
.ws7e{word-spacing:21.160562px;}
.ws135{word-spacing:21.184526px;}
.ws119{word-spacing:21.280114px;}
.ws97{word-spacing:21.459440px;}
.ws124{word-spacing:21.698543px;}
.wse4{word-spacing:21.877870px;}
.wsd5{word-spacing:21.937645px;}
.ws11a{word-spacing:21.997421px;}
.ws5b{word-spacing:22.057196px;}
.wse8{word-spacing:22.116972px;}
.ws6a{word-spacing:22.356074px;}
.ws102{word-spacing:22.595177px;}
.ws42{word-spacing:22.894055px;}
.ws11c{word-spacing:23.013606px;}
.ws101{word-spacing:23.073382px;}
.ws24{word-spacing:23.252708px;}
.ws13a{word-spacing:23.288632px;}
.ws12a{word-spacing:23.312484px;}
.wsa7{word-spacing:23.551586px;}
.ws68{word-spacing:23.850464px;}
.wsb7{word-spacing:23.910240px;}
.ws20{word-spacing:24.268894px;}
.wsbe{word-spacing:24.448220px;}
.wsfd{word-spacing:25.105752px;}
.ws110{word-spacing:25.464406px;}
.ws5a{word-spacing:26.241488px;}
.ws34{word-spacing:27.795654px;}
.wsd7{word-spacing:29.217199px;}
.wsbf{word-spacing:32.637478px;}
.ws9e{word-spacing:33.832990px;}
.ws33{word-spacing:34.251419px;}
.ws6d{word-spacing:38.674813px;}
.wse1{word-spacing:38.915866px;}
.wsde{word-spacing:38.957208px;}
.ws18{word-spacing:40.779187px;}
.ws17{word-spacing:54.174989px;}
.ws10f{word-spacing:62.083354px;}
.wsf6{word-spacing:107.596050px;}
.ws129{word-spacing:112.761446px;}
.ws128{word-spacing:115.881754px;}
.wsf0{word-spacing:232.467308px;}
._2{margin-left:-11.476944px;}
._1a{margin-left:-6.694867px;}
._3{margin-left:-4.788058px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._4{margin-left:-1.075968px;}
._a{width:1.147694px;}
._7{width:2.988780px;}
._1c{width:4.303843px;}
._1f{width:7.208932px;}
._18{width:11.943245px;}
._38{width:14.920027px;}
._6{width:16.300915px;}
._1d{width:17.334924px;}
._20{width:18.769538px;}
._1e{width:22.415850px;}
._37{width:24.089572px;}
._8{width:25.829069px;}
._5{width:27.437184px;}
._b{width:28.572737px;}
._9{width:29.887800px;}
._1b{width:33.474420px;}
._d{width:34.849180px;}
._c{width:36.104462px;}
._21{width:39.643277px;}
._39{width:47.820600px;}
._10{width:53.798400px;}
._23{width:71.767066px;}
._28{width:75.532954px;}
._19{width:92.640845px;}
._27{width:126.211046px;}
._34{width:129.331354px;}
._35{width:132.290266px;}
._25{width:136.916928px;}
._11{width:146.851675px;}
._36{width:153.110246px;}
._2b{width:159.189466px;}
._2a{width:165.053491px;}
._17{width:185.496883px;}
._f{width:192.436877px;}
._2f{width:195.019200px;}
._16{width:201.797798px;}
._2d{width:203.519347px;}
._22{width:207.070042px;}
._26{width:220.196851px;}
._2e{width:224.931110px;}
._2c{width:233.431258px;}
._32{width:236.928154px;}
._31{width:239.779469px;}
._24{width:242.361792px;}
._29{width:257.210150px;}
._15{width:263.181773px;}
._12{width:283.194778px;}
._e{width:302.287465px;}
._13{width:318.271334px;}
._30{width:351.303552px;}
._14{width:369.110822px;}
._33{width:375.297638px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs4{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y33{bottom:113.332500px;}
.y110{bottom:126.112500px;}
.y111{bottom:126.783000px;}
.y112{bottom:127.101000px;}
.y32{bottom:131.265000px;}
.y14c{bottom:131.266500px;}
.y10f{bottom:137.149500px;}
.y1bf{bottom:140.232000px;}
.y5c{bottom:149.197500px;}
.y31{bottom:149.199000px;}
.y10e{bottom:150.202500px;}
.y1be{bottom:153.681000px;}
.y14b{bottom:153.717000px;}
.y8c{bottom:158.164500px;}
.y1f0{bottom:165.195000px;}
.y30{bottom:167.131500px;}
.y10d{bottom:168.135000px;}
.y8b{bottom:176.097000px;}
.y1ef{bottom:178.644000px;}
.y14a{bottom:180.601500px;}
.y1bd{bottom:180.670500px;}
.y2f{bottom:185.064000px;}
.y5b{bottom:185.791500px;}
.y10c{bottom:186.069000px;}
.y160{bottom:190.702500px;}
.y1ee{bottom:192.094500px;}
.y8a{bottom:194.029500px;}
.y1bc{bottom:194.121000px;}
.y149{bottom:198.534000px;}
.y2e{bottom:202.996500px;}
.y5a{bottom:203.724000px;}
.y10b{bottom:204.001500px;}
.y1ed{bottom:205.543500px;}
.y15f{bottom:207.547500px;}
.y1bb{bottom:207.570000px;}
.y89{bottom:211.963500px;}
.y148{bottom:216.466500px;}
.y1ec{bottom:218.992500px;}
.y2d{bottom:220.929000px;}
.y15e{bottom:220.998000px;}
.y1ba{bottom:221.019000px;}
.y59{bottom:221.658000px;}
.y10a{bottom:221.934000px;}
.yb9{bottom:227.982000px;}
.y88{bottom:229.896000px;}
.y1eb{bottom:232.443000px;}
.y147{bottom:234.399000px;}
.y15d{bottom:234.447000px;}
.y186{bottom:238.861500px;}
.ye6{bottom:238.863000px;}
.y58{bottom:239.590500px;}
.y109{bottom:239.866500px;}
.y2c{bottom:239.887500px;}
.y1b9{bottom:244.183500px;}
.y1ea{bottom:245.892000px;}
.yb8{bottom:245.914500px;}
.y87{bottom:247.828500px;}
.ye5{bottom:256.795500px;}
.y146{bottom:256.849500px;}
.y57{bottom:257.523000px;}
.y108{bottom:257.799000px;}
.y2b{bottom:257.820000px;}
.y1e9{bottom:259.341000px;}
.y86{bottom:265.761000px;}
.y1e8{bottom:272.791500px;}
.y1b8{bottom:273.580500px;}
.ye4{bottom:274.728000px;}
.y56{bottom:275.455500px;}
.y107{bottom:275.733000px;}
.y2a{bottom:275.752500px;}
.yb7{bottom:279.630000px;}
.y85{bottom:283.693500px;}
.y1e7{bottom:286.240500px;}
.y1b7{bottom:291.513000px;}
.y145{bottom:291.955500px;}
.y185{bottom:292.660500px;}
.y55{bottom:293.388000px;}
.y106{bottom:293.665500px;}
.y29{bottom:293.685000px;}
.yb6{bottom:297.564000px;}
.ye3{bottom:298.258500px;}
.y1e6{bottom:299.689500px;}
.y84{bottom:301.626000px;}
.y1b6{bottom:309.445500px;}
.y144{bottom:309.888000px;}
.y18c{bottom:310.578000px;}
.y184{bottom:310.593000px;}
.y54{bottom:311.320500px;}
.y105{bottom:311.598000px;}
.y28{bottom:311.619000px;}
.y1e5{bottom:313.140000px;}
.yb5{bottom:315.496500px;}
.y83{bottom:319.560000px;}
.y1e4{bottom:326.589000px;}
.y1b5{bottom:327.378000px;}
.y143{bottom:327.820500px;}
.ye2{bottom:328.441500px;}
.y18b{bottom:328.510500px;}
.y183{bottom:328.525500px;}
.y53{bottom:329.254500px;}
.y27{bottom:329.551500px;}
.yb4{bottom:333.429000px;}
.y82{bottom:337.492500px;}
.y104{bottom:339.784500px;}
.y1e3{bottom:340.039500px;}
.y1b4{bottom:345.310500px;}
.y142{bottom:345.754500px;}
.ye1{bottom:346.374000px;}
.y18a{bottom:346.443000px;}
.y182{bottom:346.458000px;}
.y52{bottom:347.187000px;}
.y26{bottom:347.484000px;}
.yb3{bottom:351.361500px;}
.y1e2{bottom:353.488500px;}
.y81{bottom:355.425000px;}
.y1b3{bottom:363.244500px;}
.y141{bottom:363.687000px;}
.ye0{bottom:364.306500px;}
.y181{bottom:364.392000px;}
.y51{bottom:365.119500px;}
.y25{bottom:365.416500px;}
.y1e1{bottom:366.937500px;}
.yb2{bottom:369.294000px;}
.y189{bottom:372.942000px;}
.y80{bottom:373.357500px;}
.y140{bottom:377.925000px;}
.y1e0{bottom:380.388000px;}
.y1b2{bottom:381.177000px;}
.y103{bottom:381.276000px;}
.y13f{bottom:381.619500px;}
.ydf{bottom:382.239000px;}
.y180{bottom:382.324500px;}
.y24{bottom:383.349000px;}
.y188{bottom:386.391000px;}
.yb1{bottom:387.226500px;}
.y7f{bottom:391.290000px;}
.y50{bottom:392.130000px;}
.y1df{bottom:393.837000px;}
.y13c{bottom:398.868000px;}
.y1b1{bottom:399.109500px;}
.y102{bottom:399.208500px;}
.y13d{bottom:399.537000px;}
.y187{bottom:399.841500px;}
.yde{bottom:400.171500px;}
.y17f{bottom:400.257000px;}
.y13e{bottom:400.326000px;}
.y23{bottom:401.281500px;}
.y13b{bottom:404.020500px;}
.yb0{bottom:405.160500px;}
.y1de{bottom:407.286000px;}
.y1b0{bottom:417.042000px;}
.y101{bottom:417.141000px;}
.ydd{bottom:418.105500px;}
.y7e{bottom:418.189500px;}
.y22{bottom:419.215500px;}
.y1dd{bottom:420.736500px;}
.y13a{bottom:421.953000px;}
.yaf{bottom:423.093000px;}
.y4f{bottom:426.340500px;}
.y1dc{bottom:434.185500px;}
.y1af{bottom:434.974500px;}
.y100{bottom:435.073500px;}
.ydc{bottom:436.038000px;}
.y7d{bottom:436.122000px;}
.y21{bottom:437.148000px;}
.y139{bottom:439.885500px;}
.yae{bottom:441.025500px;}
.y4e{bottom:444.273000px;}
.y1db{bottom:447.636000px;}
.yff{bottom:449.116500px;}
.y1ae{bottom:452.907000px;}
.yfe{bottom:453.007500px;}
.ydb{bottom:453.970500px;}
.y7c{bottom:454.054500px;}
.y17e{bottom:454.056000px;}
.y20{bottom:455.080500px;}
.y138{bottom:457.819500px;}
.yad{bottom:458.958000px;}
.y1da{bottom:461.085000px;}
.y4d{bottom:462.207000px;}
.y1ad{bottom:470.841000px;}
.yda{bottom:471.903000px;}
.y7b{bottom:471.988500px;}
.y1f{bottom:473.013000px;}
.y1d9{bottom:474.534000px;}
.y137{bottom:475.752000px;}
.yac{bottom:476.890500px;}
.y4c{bottom:480.139500px;}
.yfd{bottom:481.312500px;}
.y1d8{bottom:487.984500px;}
.y1ac{bottom:488.773500px;}
.y7a{bottom:489.921000px;}
.y1e{bottom:490.945500px;}
.y136{bottom:493.684500px;}
.yab{bottom:494.823000px;}
.yd9{bottom:495.433500px;}
.y4b{bottom:498.072000px;}
.yfb{bottom:498.945000px;}
.y1d7{bottom:501.433500px;}
.yfc{bottom:502.083000px;}
.y1ab{bottom:506.706000px;}
.y79{bottom:507.853500px;}
.y1d{bottom:508.879500px;}
.y135{bottom:511.617000px;}
.yaa{bottom:513.426000px;}
.y1d6{bottom:514.882500px;}
.y4a{bottom:516.004500px;}
.y1aa{bottom:524.638500px;}
.yd8{bottom:525.616500px;}
.y78{bottom:525.786000px;}
.y1d5{bottom:528.333000px;}
.y134{bottom:529.549500px;}
.ya9{bottom:531.360000px;}
.y49{bottom:533.937000px;}
.y1c{bottom:537.670500px;}
.yfa{bottom:539.839500px;}
.y1d4{bottom:541.782000px;}
.y1a9{bottom:542.571000px;}
.yd7{bottom:543.549000px;}
.y77{bottom:543.718500px;}
.y133{bottom:547.482000px;}
.y17d{bottom:548.340000px;}
.ya8{bottom:549.292500px;}
.y48{bottom:551.869500px;}
.y1d3{bottom:555.232500px;}
.yf9{bottom:557.772000px;}
.y1a8{bottom:560.503500px;}
.yd6{bottom:561.483000px;}
.y132{bottom:565.416000px;}
.ya7{bottom:567.225000px;}
.y1d2{bottom:568.681500px;}
.y47{bottom:569.803500px;}
.y76{bottom:570.618000px;}
.yf8{bottom:575.704500px;}
.y17c{bottom:575.847000px;}
.y1a7{bottom:578.437500px;}
.y1b{bottom:578.559000px;}
.yd5{bottom:579.415500px;}
.y1d1{bottom:582.130500px;}
.y131{bottom:583.348500px;}
.ya6{bottom:585.157500px;}
.y75{bottom:588.550500px;}
.yd4{bottom:592.194000px;}
.y46{bottom:592.261500px;}
.y1a{bottom:593.503500px;}
.yf7{bottom:593.637000px;}
.y17b{bottom:593.779500px;}
.y1d0{bottom:595.581000px;}
.y1a6{bottom:596.370000px;}
.yd3{bottom:597.348000px;}
.y130{bottom:601.281000px;}
.ya5{bottom:603.090000px;}
.y74{bottom:606.483000px;}
.y19{bottom:608.446500px;}
.y1cf{bottom:609.030000px;}
.y45{bottom:610.195500px;}
.yf6{bottom:611.569500px;}
.y17a{bottom:611.712000px;}
.y1a5{bottom:614.302500px;}
.yd2{bottom:615.280500px;}
.y12f{bottom:619.213500px;}
.ya4{bottom:621.022500px;}
.y1ce{bottom:622.479000px;}
.y18{bottom:624.417000px;}
.y44{bottom:628.128000px;}
.yf5{bottom:629.503500px;}
.y179{bottom:629.644500px;}
.y1a4{bottom:632.235000px;}
.yd1{bottom:633.213000px;}
.y1cd{bottom:635.929500px;}
.ya3{bottom:638.956500px;}
.y17{bottom:639.360000px;}
.y12e{bottom:640.038000px;}
.y73{bottom:642.349500px;}
.y43{bottom:646.060500px;}
.yf4{bottom:647.436000px;}
.y178{bottom:647.577000px;}
.y1cc{bottom:649.378500px;}
.yd0{bottom:651.145500px;}
.y16{bottom:654.304500px;}
.y1a3{bottom:655.848000px;}
.ya2{bottom:656.889000px;}
.y72{bottom:660.282000px;}
.y12d{bottom:662.236500px;}
.y1cb{bottom:662.829000px;}
.y42{bottom:663.993000px;}
.yf3{bottom:665.368500px;}
.y177{bottom:665.511000px;}
.ycf{bottom:669.078000px;}
.y15{bottom:669.249000px;}
.ya1{bottom:674.821500px;}
.y1ca{bottom:676.278000px;}
.y12c{bottom:680.170500px;}
.y41{bottom:681.925500px;}
.yf2{bottom:683.301000px;}
.y176{bottom:683.358000px;}
.y14{bottom:684.192000px;}
.y1a2{bottom:685.243500px;}
.yce{bottom:687.012000px;}
.y71{bottom:687.181500px;}
.y1c9{bottom:689.727000px;}
.ya0{bottom:692.754000px;}
.y12b{bottom:698.103000px;}
.y13{bottom:699.136500px;}
.y40{bottom:699.858000px;}
.yf1{bottom:701.233500px;}
.y175{bottom:701.290500px;}
.y1a1{bottom:703.177500px;}
.y15c{bottom:704.581500px;}
.ycd{bottom:704.944500px;}
.y70{bottom:705.114000px;}
.y9f{bottom:710.686500px;}
.y12a{bottom:712.341000px;}
.y12{bottom:714.079500px;}
.y129{bottom:716.035500px;}
.y1c8{bottom:716.626500px;}
.y3f{bottom:717.792000px;}
.yf0{bottom:719.167500px;}
.y174{bottom:719.223000px;}
.y1a0{bottom:721.110000px;}
.y15b{bottom:722.514000px;}
.ycc{bottom:722.877000px;}
.y6f{bottom:723.046500px;}
.y9e{bottom:728.619000px;}
.y11{bottom:729.024000px;}
.y1c7{bottom:730.075500px;}
.y126{bottom:733.282500px;}
.y127{bottom:733.953000px;}
.y128{bottom:734.742000px;}
.y3e{bottom:735.724500px;}
.yef{bottom:737.100000px;}
.y173{bottom:737.155500px;}
.y125{bottom:738.436500px;}
.y19f{bottom:739.042500px;}
.y15a{bottom:740.446500px;}
.ycb{bottom:740.809500px;}
.y6e{bottom:740.979000px;}
.y1c6{bottom:743.526000px;}
.y10{bottom:743.968500px;}
.y9d{bottom:746.553000px;}
.y3d{bottom:753.657000px;}
.yee{bottom:755.032500px;}
.y172{bottom:755.088000px;}
.y19e{bottom:756.975000px;}
.y159{bottom:758.379000px;}
.yca{bottom:758.742000px;}
.y124{bottom:758.857500px;}
.yf{bottom:758.911500px;}
.y1c5{bottom:770.424000px;}
.y9c{bottom:771.538500px;}
.y3c{bottom:771.589500px;}
.y171{bottom:773.020500px;}
.ye{bottom:773.856000px;}
.y19d{bottom:774.907500px;}
.y158{bottom:776.313000px;}
.yc9{bottom:776.674500px;}
.y123{bottom:776.790000px;}
.y6d{bottom:776.845500px;}
.yed{bottom:783.219000px;}
.y1c4{bottom:783.874500px;}
.yd{bottom:788.800500px;}
.y3b{bottom:789.522000px;}
.y170{bottom:790.954500px;}
.y19c{bottom:792.841500px;}
.y157{bottom:794.245500px;}
.yc8{bottom:794.608500px;}
.y122{bottom:794.722500px;}
.y6c{bottom:794.778000px;}
.y1c3{bottom:797.323500px;}
.yc{bottom:803.743500px;}
.y9b{bottom:805.254000px;}
.y3a{bottom:807.456000px;}
.y16f{bottom:808.887000px;}
.y19b{bottom:810.774000px;}
.y156{bottom:812.443500px;}
.yc7{bottom:812.541000px;}
.y121{bottom:812.655000px;}
.y6b{bottom:812.710500px;}
.yb{bottom:818.688000px;}
.y9a{bottom:823.186500px;}
.y1c2{bottom:824.223000px;}
.yec{bottom:824.710500px;}
.y39{bottom:825.388500px;}
.y16e{bottom:826.819500px;}
.y19a{bottom:828.706500px;}
.y155{bottom:830.377500px;}
.yc6{bottom:830.473500px;}
.y120{bottom:830.587500px;}
.y6a{bottom:830.643000px;}
.ya{bottom:833.632500px;}
.y1c1{bottom:837.672000px;}
.y99{bottom:841.119000px;}
.yeb{bottom:842.643000px;}
.y38{bottom:843.321000px;}
.y16d{bottom:844.666500px;}
.y199{bottom:846.639000px;}
.y154{bottom:848.310000px;}
.yc5{bottom:848.406000px;}
.y11f{bottom:848.521500px;}
.y9{bottom:848.575500px;}
.y1c0{bottom:851.122500px;}
.y69{bottom:857.542500px;}
.yea{bottom:860.575500px;}
.y37{bottom:861.253500px;}
.y16c{bottom:862.599000px;}
.y8{bottom:863.520000px;}
.y198{bottom:864.571500px;}
.y153{bottom:866.242500px;}
.y11e{bottom:866.454000px;}
.y98{bottom:867.780000px;}
.yc4{bottom:871.936500px;}
.y68{bottom:875.475000px;}
.y7{bottom:878.464500px;}
.ye9{bottom:878.508000px;}
.y36{bottom:883.713000px;}
.y152{bottom:884.175000px;}
.y11d{bottom:884.386500px;}
.y6{bottom:893.407500px;}
.y16b{bottom:895.096500px;}
.y197{bottom:897.069000px;}
.y97{bottom:900.955500px;}
.y35{bottom:901.645500px;}
.y151{bottom:902.107500px;}
.yc3{bottom:902.119500px;}
.y11c{bottom:902.319000px;}
.y5{bottom:908.352000px;}
.y16a{bottom:910.041000px;}
.ye8{bottom:910.657500px;}
.y67{bottom:911.340000px;}
.y196{bottom:912.013500px;}
.y96{bottom:918.888000px;}
.y150{bottom:920.040000px;}
.yc2{bottom:920.052000px;}
.y34{bottom:920.307000px;}
.y4{bottom:923.295000px;}
.y11b{bottom:924.769500px;}
.y169{bottom:924.984000px;}
.y195{bottom:926.956500px;}
.y66{bottom:929.274000px;}
.y95{bottom:936.820500px;}
.ye7{bottom:937.156500px;}
.y14f{bottom:937.974000px;}
.yc1{bottom:937.984500px;}
.y3{bottom:938.239500px;}
.y168{bottom:939.928500px;}
.y194{bottom:941.901000px;}
.y65{bottom:947.206500px;}
.y11a{bottom:951.654000px;}
.y94{bottom:954.753000px;}
.y167{bottom:954.873000px;}
.y14e{bottom:955.906500px;}
.yc0{bottom:955.918500px;}
.y193{bottom:956.845500px;}
.y64{bottom:965.139000px;}
.y119{bottom:969.586500px;}
.y166{bottom:969.816000px;}
.y192{bottom:971.788500px;}
.y93{bottom:972.685500px;}
.ybf{bottom:973.851000px;}
.y14d{bottom:974.104500px;}
.y165{bottom:984.760500px;}
.y191{bottom:986.733000px;}
.y118{bottom:987.520500px;}
.y92{bottom:990.619500px;}
.ybe{bottom:991.783500px;}
.y63{bottom:992.038500px;}
.y164{bottom:999.705000px;}
.y190{bottom:1001.677500px;}
.y117{bottom:1005.453000px;}
.y91{bottom:1008.552000px;}
.ybd{bottom:1009.716000px;}
.y62{bottom:1009.971000px;}
.y163{bottom:1014.648000px;}
.y18f{bottom:1016.620500px;}
.y116{bottom:1023.385500px;}
.y90{bottom:1026.484500px;}
.ybc{bottom:1027.648500px;}
.y61{bottom:1027.903500px;}
.y162{bottom:1029.592500px;}
.y18e{bottom:1031.565000px;}
.y2{bottom:1039.309500px;}
.y115{bottom:1041.318000px;}
.ybb{bottom:1045.582500px;}
.y60{bottom:1045.836000px;}
.y8f{bottom:1052.224500px;}
.y161{bottom:1052.344500px;}
.y18d{bottom:1054.317000px;}
.y114{bottom:1059.250500px;}
.yba{bottom:1063.515000px;}
.y5f{bottom:1063.768500px;}
.y113{bottom:1077.183000px;}
.y1{bottom:1081.152000px;}
.y5e{bottom:1081.701000px;}
.y8e{bottom:1086.184500px;}
.y8d{bottom:1099.633500px;}
.y5d{bottom:1099.635000px;}
.he{height:2.391024px;}
.h12{height:27.783619px;}
.hd{height:29.457331px;}
.h21{height:32.804932px;}
.h5{height:34.765576px;}
.h22{height:34.999576px;}
.h6{height:39.111437px;}
.h2{height:40.348800px;}
.h7{height:41.006062px;}
.h3{height:43.456861px;}
.h4{height:44.831700px;}
.h1c{height:45.833296px;}
.h20{height:45.839296px;}
.hb{height:47.387700px;}
.hf{height:51.147331px;}
.h8{height:53.951716px;}
.h11{height:59.020861px;}
.hc{height:59.181024px;}
.h1b{height:59.609700px;}
.h15{height:61.493700px;}
.h9{height:65.447700px;}
.h1a{height:65.925331px;}
.h10{height:66.711331px;}
.h16{height:68.739024px;}
.h1d{height:68.745024px;}
.h18{height:69.081331px;}
.h1f{height:69.087331px;}
.h14{height:76.113331px;}
.h1e{height:78.447619px;}
.h17{height:78.453619px;}
.h13{height:80.127331px;}
.h19{height:83.523024px;}
.h1{height:104.296729px;}
.ha{height:122.541024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:73.446000px;}
.x24{left:76.099500px;}
.x31{left:79.423500px;}
.x1{left:82.360500px;}
.x3{left:88.390500px;}
.x23{left:98.850000px;}
.x2d{left:100.624500px;}
.x2a{left:171.823500px;}
.x28{left:178.467000px;}
.x5{left:203.428500px;}
.x30{left:219.897000px;}
.x2{left:258.639000px;}
.x2c{left:264.718500px;}
.x25{left:267.718500px;}
.x21{left:276.679500px;}
.x29{left:286.497000px;}
.x26{left:291.243000px;}
.x2f{left:315.432000px;}
.x27{left:323.931000px;}
.x1e{left:353.344500px;}
.x1f{left:379.359000px;}
.x22{left:403.431000px;}
.xf{left:406.624500px;}
.x20{left:414.537000px;}
.x2e{left:432.232500px;}
.x2b{left:434.223000px;}
.x6{left:467.967000px;}
.xd{left:469.461000px;}
.x1c{left:472.075500px;}
.x32{left:473.944500px;}
.x8{left:477.934500px;}
.x7{left:482.910000px;}
.x33{left:495.355500px;}
.x9{left:497.854500px;}
.xc{left:500.146500px;}
.x10{left:502.566000px;}
.x12{left:514.834500px;}
.x11{left:516.850500px;}
.xa{left:527.893500px;}
.xe{left:537.718500px;}
.x13{left:542.232000px;}
.x34{left:551.647500px;}
.x14{left:572.602500px;}
.x1d{left:580.645500px;}
.x15{left:629.089500px;}
.xb{left:633.474000px;}
.x16{left:645.147000px;}
.x1a{left:698.833500px;}
.x17{left:733.974000px;}
.x18{left:750.031500px;}
.x19{left:787.723500px;}
.x1b{left:811.056000px;}
@media print{
.v15{vertical-align:-58.981333pt;}
.v5{vertical-align:-13.285333pt;}
.v7{vertical-align:-11.157333pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.272000pt;}
.vc{vertical-align:5.861333pt;}
.v2{vertical-align:10.629333pt;}
.vb{vertical-align:13.834667pt;}
.v12{vertical-align:14.810667pt;}
.v10{vertical-align:15.941333pt;}
.v3{vertical-align:18.325333pt;}
.va{vertical-align:19.280000pt;}
.v1{vertical-align:20.917333pt;}
.vd{vertical-align:33.114667pt;}
.v13{vertical-align:35.221333pt;}
.v11{vertical-align:41.472000pt;}
.vf{vertical-align:45.040000pt;}
.v9{vertical-align:50.480000pt;}
.ve{vertical-align:58.176000pt;}
.v14{vertical-align:72.117333pt;}
.v6{vertical-align:106.800000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000058pt;}
.ls1d{letter-spacing:0.000059pt;}
.ls71{letter-spacing:0.000062pt;}
.ls19{letter-spacing:0.000455pt;}
.ls16{letter-spacing:0.000546pt;}
.ls14{letter-spacing:0.000605pt;}
.ls80{letter-spacing:0.000858pt;}
.ls73{letter-spacing:0.001457pt;}
.ls25{letter-spacing:0.001503pt;}
.ls68{letter-spacing:0.001788pt;}
.ls76{letter-spacing:0.003307pt;}
.ls38{letter-spacing:0.003688pt;}
.ls28{letter-spacing:0.010013pt;}
.ls21{letter-spacing:0.010312pt;}
.ls47{letter-spacing:0.011889pt;}
.ls5e{letter-spacing:0.014726pt;}
.ls34{letter-spacing:0.015000pt;}
.ls53{letter-spacing:0.018326pt;}
.ls36{letter-spacing:0.018467pt;}
.ls29{letter-spacing:0.022343pt;}
.ls5c{letter-spacing:0.023056pt;}
.ls31{letter-spacing:0.025401pt;}
.ls65{letter-spacing:0.892646pt;}
.ls57{letter-spacing:1.478736pt;}
.ls3{letter-spacing:2.108364pt;}
.ls81{letter-spacing:2.125360pt;}
.ls4{letter-spacing:2.142370pt;}
.ls1{letter-spacing:2.167867pt;}
.ls0{letter-spacing:2.635446pt;}
.ls39{letter-spacing:2.652653pt;}
.ls15{letter-spacing:2.652911pt;}
.ls35{letter-spacing:2.656546pt;}
.ls6f{letter-spacing:2.656576pt;}
.ls5f{letter-spacing:2.656689pt;}
.lsd{letter-spacing:2.656693pt;}
.ls37{letter-spacing:2.657014pt;}
.ls24{letter-spacing:2.657069pt;}
.ls7f{letter-spacing:2.657253pt;}
.ls59{letter-spacing:2.657986pt;}
.ls1e{letter-spacing:2.658245pt;}
.lse{letter-spacing:2.677954pt;}
.ls7a{letter-spacing:3.803564pt;}
.ls69{letter-spacing:3.806020pt;}
.ls4e{letter-spacing:3.811402pt;}
.ls5a{letter-spacing:3.986028pt;}
.ls3a{letter-spacing:3.991361pt;}
.ls4b{letter-spacing:4.807919pt;}
.ls17{letter-spacing:5.310186pt;}
.ls2b{letter-spacing:5.318100pt;}
.ls74{letter-spacing:5.685324pt;}
.ls6d{letter-spacing:5.769792pt;}
.ls70{letter-spacing:5.791591pt;}
.ls66{letter-spacing:5.794863pt;}
.ls51{letter-spacing:5.803679pt;}
.ls7d{letter-spacing:5.805435pt;}
.ls78{letter-spacing:6.375121pt;}
.ls79{letter-spacing:6.375578pt;}
.ls10{letter-spacing:6.379354pt;}
.ls63{letter-spacing:6.380455pt;}
.ls1f{letter-spacing:8.452218pt;}
.lsf{letter-spacing:8.873356pt;}
.ls3e{letter-spacing:11.795718pt;}
.ls4a{letter-spacing:11.810888pt;}
.ls44{letter-spacing:11.823882pt;}
.ls41{letter-spacing:12.008254pt;}
.ls18{letter-spacing:13.496002pt;}
.ls55{letter-spacing:14.293010pt;}
.ls5b{letter-spacing:14.399278pt;}
.ls7c{letter-spacing:14.464576pt;}
.ls43{letter-spacing:14.611813pt;}
.ls49{letter-spacing:14.771215pt;}
.ls3d{letter-spacing:14.877483pt;}
.ls64{letter-spacing:15.228911pt;}
.ls48{letter-spacing:16.610585pt;}
.ls46{letter-spacing:16.615919pt;}
.ls4d{letter-spacing:16.790302pt;}
.ls54{letter-spacing:17.414347pt;}
.ls77{letter-spacing:17.419919pt;}
.ls42{letter-spacing:18.073423pt;}
.ls6b{letter-spacing:18.543719pt;}
.ls75{letter-spacing:18.596853pt;}
.ls5d{letter-spacing:18.703121pt;}
.ls3f{letter-spacing:19.181326pt;}
.ls56{letter-spacing:19.218178pt;}
.ls4c{letter-spacing:19.457014pt;}
.ls50{letter-spacing:19.712665pt;}
.ls12{letter-spacing:20.669074pt;}
.ls40{letter-spacing:22.422492pt;}
.ls6c{letter-spacing:23.301909pt;}
.ls20{letter-spacing:23.963374pt;}
.ls2c{letter-spacing:24.122775pt;}
.ls23{letter-spacing:24.707248pt;}
.ls2e{letter-spacing:24.972917pt;}
.ls3b{letter-spacing:24.987680pt;}
.ls61{letter-spacing:25.982461pt;}
.ls62{letter-spacing:26.310586pt;}
.ls3c{letter-spacing:26.477252pt;}
.ls2d{letter-spacing:27.604667pt;}
.ls60{letter-spacing:27.948414pt;}
.ls30{letter-spacing:31.242714pt;}
.ls22{letter-spacing:31.524779pt;}
.ls2f{letter-spacing:33.924667pt;}
.ls11{letter-spacing:36.345212pt;}
.ls33{letter-spacing:36.556100pt;}
.ls27{letter-spacing:36.662368pt;}
.ls2a{letter-spacing:40.434873pt;}
.ls1b{letter-spacing:41.231881pt;}
.ls26{letter-spacing:43.498112pt;}
.ls1a{letter-spacing:43.889069pt;}
.ls32{letter-spacing:43.941708pt;}
.ls1c{letter-spacing:48.617488pt;}
.ls67{letter-spacing:61.139878pt;}
.ls13{letter-spacing:61.741553pt;}
.ls6{letter-spacing:82.347418pt;}
.ls4f{letter-spacing:86.247919pt;}
.ls52{letter-spacing:88.242585pt;}
.ls5{letter-spacing:93.967872pt;}
.ls7b{letter-spacing:98.531878pt;}
.ls9{letter-spacing:98.941235pt;}
.ls7e{letter-spacing:100.526544pt;}
.ls6a{letter-spacing:102.323878pt;}
.ls6e{letter-spacing:104.318544pt;}
.lsa{letter-spacing:124.573184pt;}
.ls8{letter-spacing:125.003571pt;}
.lsc{letter-spacing:127.824998pt;}
.ls7{letter-spacing:175.406694pt;}
.ls58{letter-spacing:178.502347pt;}
.lsb{letter-spacing:187.840102pt;}
.ls72{letter-spacing:393.296881pt;}
.wsf1{word-spacing:-53.133867pt;}
.wscb{word-spacing:-42.066082pt;}
.wsc4{word-spacing:-34.611401pt;}
.wsc1{word-spacing:-25.791179pt;}
.wsc0{word-spacing:-25.738045pt;}
.wsf4{word-spacing:-19.893320pt;}
.wscd{word-spacing:-19.840186pt;}
.wsf7{word-spacing:-18.405571pt;}
.ws93{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-13.262246pt;}
.ws82{word-spacing:-10.626800pt;}
.ws10c{word-spacing:-10.609830pt;}
.ws84{word-spacing:-8.501467pt;}
.wsf9{word-spacing:-7.003680pt;}
.wsca{word-spacing:-5.905470pt;}
.wsf8{word-spacing:-5.196492pt;}
.wsea{word-spacing:-5.143358pt;}
.ws10e{word-spacing:-2.125360pt;}
.ws54{word-spacing:-1.009543pt;}
.ws142{word-spacing:-0.637608pt;}
.ws49{word-spacing:-0.637606pt;}
.ws10{word-spacing:-0.573850pt;}
.wscc{word-spacing:-0.531339pt;}
.ws5e{word-spacing:-0.425071pt;}
.ws112{word-spacing:-0.371937pt;}
.ws35{word-spacing:-0.265669pt;}
.ws14a{word-spacing:-0.255043pt;}
.ws60{word-spacing:-0.159402pt;}
.ws156{word-spacing:-0.127522pt;}
.ws7d{word-spacing:-0.106268pt;}
.ws50{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047821pt;}
.wsb2{word-spacing:-0.037194pt;}
.ws88{word-spacing:-0.010667pt;}
.ws83{word-spacing:-0.008541pt;}
.ws47{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.010627pt;}
.ws81{word-spacing:0.033966pt;}
.wsbb{word-spacing:0.042467pt;}
.ws134{word-spacing:0.053134pt;}
.wse3{word-spacing:0.106268pt;}
.wsc2{word-spacing:0.159402pt;}
.ws8{word-spacing:0.334746pt;}
.ws12e{word-spacing:0.531339pt;}
.wsa4{word-spacing:0.584473pt;}
.ws53{word-spacing:0.637606pt;}
.ws127{word-spacing:0.690740pt;}
.ws4{word-spacing:0.717312pt;}
.ws1e{word-spacing:0.797008pt;}
.ws9d{word-spacing:0.850142pt;}
.wsee{word-spacing:0.903276pt;}
.ws2d{word-spacing:0.956410pt;}
.wsd3{word-spacing:1.009543pt;}
.ws43{word-spacing:1.062677pt;}
.wsdb{word-spacing:1.115811pt;}
.ws3f{word-spacing:1.168945pt;}
.wsa1{word-spacing:1.222079pt;}
.ws12d{word-spacing:1.275213pt;}
.ws130{word-spacing:1.381481pt;}
.ws120{word-spacing:1.540882pt;}
.wsd1{word-spacing:1.594016pt;}
.ws41{word-spacing:1.647150pt;}
.ws61{word-spacing:1.700284pt;}
.wsf{word-spacing:1.721549pt;}
.ws146{word-spacing:1.742795pt;}
.ws62{word-spacing:1.753418pt;}
.ws2a{word-spacing:1.806551pt;}
.wsaf{word-spacing:1.859685pt;}
.ws131{word-spacing:1.912819pt;}
.ws21{word-spacing:1.965953pt;}
.ws59{word-spacing:2.019087pt;}
.ws154{word-spacing:2.167867pt;}
.ws15c{word-spacing:2.210374pt;}
.ws6c{word-spacing:2.284756pt;}
.ws14c{word-spacing:2.295389pt;}
.ws13{word-spacing:2.438861pt;}
.ws12c{word-spacing:2.444158pt;}
.ws10b{word-spacing:2.497292pt;}
.ws11e{word-spacing:2.550426pt;}
.ws94{word-spacing:2.709827pt;}
.ws100{word-spacing:2.816095pt;}
.wsff{word-spacing:2.922363pt;}
.ws19{word-spacing:2.964890pt;}
.wsa0{word-spacing:2.975497pt;}
.wsa2{word-spacing:3.028630pt;}
.ws5{word-spacing:3.060531pt;}
.ws2f{word-spacing:3.081764pt;}
.ws148{word-spacing:3.103026pt;}
.ws14b{word-spacing:3.230547pt;}
.wsad{word-spacing:3.241166pt;}
.ws7a{word-spacing:3.294300pt;}
.ws65{word-spacing:3.347434pt;}
.ws37{word-spacing:3.400567pt;}
.ws14{word-spacing:3.443098pt;}
.ws39{word-spacing:3.453701pt;}
.ws143{word-spacing:3.485590pt;}
.ws77{word-spacing:3.613103pt;}
.ws3c{word-spacing:3.719371pt;}
.ws30{word-spacing:3.772505pt;}
.wsf5{word-spacing:3.836265pt;}
.ws139{word-spacing:3.868155pt;}
.ws6{word-spacing:3.921306pt;}
.ws72{word-spacing:3.931906pt;}
.ws113{word-spacing:3.985040pt;}
.ws14e{word-spacing:3.995677pt;}
.ws7c{word-spacing:4.038174pt;}
.ws64{word-spacing:4.144442pt;}
.ws162{word-spacing:4.165706pt;}
.ws80{word-spacing:4.208186pt;}
.ws161{word-spacing:4.208213pt;}
.ws10d{word-spacing:4.250693pt;}
.ws28{word-spacing:4.250709pt;}
.ws7f{word-spacing:4.250720pt;}
.ws9{word-spacing:4.303872pt;}
.ws141{word-spacing:4.378242pt;}
.ws5f{word-spacing:4.410111pt;}
.wsab{word-spacing:4.463245pt;}
.ws151{word-spacing:4.463256pt;}
.ws63{word-spacing:4.516379pt;}
.ws121{word-spacing:4.590778pt;}
.wsd{word-spacing:4.590797pt;}
.ws103{word-spacing:4.622646pt;}
.ws3a{word-spacing:4.675780pt;}
.ws163{word-spacing:4.760806pt;}
.ws85{word-spacing:4.782080pt;}
.wsfb{word-spacing:4.835182pt;}
.ws8d{word-spacing:4.941450pt;}
.wsbd{word-spacing:5.047717pt;}
.ws125{word-spacing:5.100851pt;}
.ws13e{word-spacing:5.143371pt;}
.ws11b{word-spacing:5.153985pt;}
.ws74{word-spacing:5.207119pt;}
.ws48{word-spacing:5.260226pt;}
.ws6f{word-spacing:5.260253pt;}
.wsfa{word-spacing:5.270893pt;}
.ws2b{word-spacing:5.313387pt;}
.wsbc{word-spacing:5.366521pt;}
.ws4a{word-spacing:5.419654pt;}
.ws5d{word-spacing:5.472788pt;}
.wsd9{word-spacing:5.525922pt;}
.ws78{word-spacing:5.579056pt;}
.ws70{word-spacing:5.632190pt;}
.wscf{word-spacing:5.738458pt;}
.wsb8{word-spacing:5.791591pt;}
.ws29{word-spacing:5.844725pt;}
.ws150{word-spacing:5.908501pt;}
.ws9b{word-spacing:5.950993pt;}
.ws16{word-spacing:5.977600pt;}
.ws73{word-spacing:6.004127pt;}
.wsd0{word-spacing:6.057261pt;}
.ws8e{word-spacing:6.110395pt;}
.wsba{word-spacing:6.216662pt;}
.ws155{word-spacing:6.333573pt;}
.ws57{word-spacing:6.429198pt;}
.wsb0{word-spacing:6.482332pt;}
.ws7b{word-spacing:6.588599pt;}
.ws15a{word-spacing:6.588616pt;}
.wsa6{word-spacing:6.694867pt;}
.ws91{word-spacing:6.748001pt;}
.ws137{word-spacing:6.758645pt;}
.wsd2{word-spacing:6.801135pt;}
.ws138{word-spacing:6.801152pt;}
.ws147{word-spacing:6.843659pt;}
.ws107{word-spacing:6.907403pt;}
.ws108{word-spacing:6.971181pt;}
.wsa9{word-spacing:7.119938pt;}
.ws58{word-spacing:7.226206pt;}
.ws95{word-spacing:7.279340pt;}
.ws89{word-spacing:7.332474pt;}
.wsed{word-spacing:7.385607pt;}
.ws114{word-spacing:7.438741pt;}
.ws14f{word-spacing:7.523774pt;}
.ws12f{word-spacing:7.598143pt;}
.ws136{word-spacing:7.693803pt;}
.wsd4{word-spacing:7.757545pt;}
.ws27{word-spacing:7.810678pt;}
.ws132{word-spacing:7.863812pt;}
.ws92{word-spacing:7.916946pt;}
.ws3b{word-spacing:8.023214pt;}
.wsfc{word-spacing:8.076348pt;}
.ws4f{word-spacing:8.182615pt;}
.ws22{word-spacing:8.342017pt;}
.ws8c{word-spacing:8.395151pt;}
.wsa5{word-spacing:8.501419pt;}
.wse7{word-spacing:8.713954pt;}
.ws2e{word-spacing:8.767088pt;}
.ws118{word-spacing:8.979623pt;}
.wsc9{word-spacing:9.032757pt;}
.ws153{word-spacing:9.054034pt;}
.wsae{word-spacing:9.085891pt;}
.wsa{word-spacing:9.085952pt;}
.ws11d{word-spacing:9.139025pt;}
.ws111{word-spacing:9.192159pt;}
.ws38{word-spacing:9.245293pt;}
.wsb9{word-spacing:9.564096pt;}
.ws13f{word-spacing:9.606627pt;}
.ws104{word-spacing:9.617230pt;}
.ws140{word-spacing:9.649134pt;}
.ws157{word-spacing:9.734149pt;}
.wsd6{word-spacing:9.829765pt;}
.ws3{word-spacing:9.851085pt;}
.wsb4{word-spacing:9.882899pt;}
.wse6{word-spacing:9.893526pt;}
.ws55{word-spacing:9.936033pt;}
.ws56{word-spacing:9.989167pt;}
.ws2{word-spacing:9.994547pt;}
.ws126{word-spacing:10.042301pt;}
.wse9{word-spacing:10.095435pt;}
.ws12{word-spacing:10.138010pt;}
.ws3d{word-spacing:10.148569pt;}
.ws11{word-spacing:10.185830pt;}
.ws9f{word-spacing:10.201702pt;}
.ws40{word-spacing:10.254836pt;}
.wsc{word-spacing:10.281472pt;}
.ws145{word-spacing:10.456771pt;}
.ws15b{word-spacing:10.499278pt;}
.ws159{word-spacing:10.584293pt;}
.ws87{word-spacing:10.626773pt;}
.ws14d{word-spacing:10.626800pt;}
.ws1c{word-spacing:10.679907pt;}
.wsb1{word-spacing:10.733041pt;}
.ws76{word-spacing:10.786175pt;}
.ws10a{word-spacing:10.892443pt;}
.ws51{word-spacing:10.998710pt;}
.ws122{word-spacing:11.051872pt;}
.wsa8{word-spacing:11.104978pt;}
.ws26{word-spacing:11.264380pt;}
.ws109{word-spacing:11.306915pt;}
.ws45{word-spacing:11.317514pt;}
.wse5{word-spacing:11.370647pt;}
.ws90{word-spacing:11.423781pt;}
.wse{word-spacing:11.429171pt;}
.wseb{word-spacing:11.469651pt;}
.wsd8{word-spacing:11.475278pt;}
.wsec{word-spacing:11.476611pt;}
.ws79{word-spacing:11.583183pt;}
.ws158{word-spacing:11.604466pt;}
.ws116{word-spacing:11.689451pt;}
.ws9c{word-spacing:11.795718pt;}
.wsda{word-spacing:11.848852pt;}
.ws86{word-spacing:11.955200pt;}
.ws160{word-spacing:11.987030pt;}
.wsb6{word-spacing:12.061388pt;}
.ws133{word-spacing:12.167655pt;}
.ws117{word-spacing:12.220789pt;}
.ws36{word-spacing:12.273923pt;}
.ws15f{word-spacing:12.327088pt;}
.ws15e{word-spacing:12.369595pt;}
.ws15{word-spacing:12.624691pt;}
.ws75{word-spacing:12.645860pt;}
.wsaa{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wsc7{word-spacing:12.762755pt;}
.ws6e{word-spacing:12.858396pt;}
.ws144{word-spacing:12.879682pt;}
.ws11f{word-spacing:13.017797pt;}
.ws67{word-spacing:13.070931pt;}
.wse2{word-spacing:13.134692pt;}
.ws8a{word-spacing:13.177199pt;}
.ws4e{word-spacing:13.283467pt;}
.wsb{word-spacing:13.342003pt;}
.wsb5{word-spacing:13.549136pt;}
.wsa3{word-spacing:13.602270pt;}
.ws7{word-spacing:13.628928pt;}
.ws25{word-spacing:13.655404pt;}
.ws99{word-spacing:13.814805pt;}
.ws71{word-spacing:14.239876pt;}
.ws52{word-spacing:14.293010pt;}
.ws4c{word-spacing:14.505546pt;}
.wse0{word-spacing:14.611813pt;}
.ws23{word-spacing:14.718081pt;}
.ws12b{word-spacing:14.824349pt;}
.ws98{word-spacing:14.930617pt;}
.ws4b{word-spacing:15.090018pt;}
.wsc8{word-spacing:15.196286pt;}
.ws15d{word-spacing:15.302592pt;}
.ws105{word-spacing:15.355687pt;}
.wsce{word-spacing:15.378634pt;}
.ws106{word-spacing:15.515089pt;}
.ws2c{word-spacing:15.568223pt;}
.wsc6{word-spacing:15.685117pt;}
.ws1f{word-spacing:15.727625pt;}
.ws149{word-spacing:15.897693pt;}
.wsef{word-spacing:15.940133pt;}
.ws1a{word-spacing:15.940160pt;}
.ws6b{word-spacing:16.099562pt;}
.ws9a{word-spacing:16.205829pt;}
.ws152{word-spacing:16.322765pt;}
.ws3e{word-spacing:16.471499pt;}
.ws13d{word-spacing:16.620315pt;}
.ws31{word-spacing:16.896570pt;}
.ws66{word-spacing:16.949703pt;}
.ws4d{word-spacing:17.002837pt;}
.wsfe{word-spacing:17.055971pt;}
.wsc5{word-spacing:17.109105pt;}
.ws32{word-spacing:17.162239pt;}
.wsb3{word-spacing:17.215373pt;}
.wsdf{word-spacing:17.226000pt;}
.ws46{word-spacing:17.321641pt;}
.wsdc{word-spacing:17.375296pt;}
.wsf3{word-spacing:17.380175pt;}
.wsf2{word-spacing:17.382422pt;}
.ws8b{word-spacing:17.481042pt;}
.ws44{word-spacing:17.693578pt;}
.ws69{word-spacing:17.799845pt;}
.ws115{word-spacing:17.906113pt;}
.ws5c{word-spacing:18.065515pt;}
.wsac{word-spacing:18.118649pt;}
.wsc3{word-spacing:18.129275pt;}
.ws13c{word-spacing:18.363110pt;}
.ws13b{word-spacing:18.405618pt;}
.ws1d{word-spacing:18.437452pt;}
.ws8f{word-spacing:18.543719pt;}
.ws123{word-spacing:18.649987pt;}
.ws96{word-spacing:18.703121pt;}
.ws7e{word-spacing:18.809389pt;}
.ws135{word-spacing:18.830690pt;}
.ws119{word-spacing:18.915657pt;}
.ws97{word-spacing:19.075058pt;}
.ws124{word-spacing:19.287594pt;}
.wse4{word-spacing:19.446995pt;}
.wsd5{word-spacing:19.500129pt;}
.ws11a{word-spacing:19.553263pt;}
.ws5b{word-spacing:19.606397pt;}
.wse8{word-spacing:19.659531pt;}
.ws6a{word-spacing:19.872066pt;}
.ws102{word-spacing:20.084602pt;}
.ws42{word-spacing:20.350271pt;}
.ws11c{word-spacing:20.456539pt;}
.ws101{word-spacing:20.509673pt;}
.ws24{word-spacing:20.669074pt;}
.ws13a{word-spacing:20.701006pt;}
.ws12a{word-spacing:20.722208pt;}
.wsa7{word-spacing:20.934743pt;}
.ws68{word-spacing:21.200413pt;}
.wsb7{word-spacing:21.253547pt;}
.ws20{word-spacing:21.572350pt;}
.wsbe{word-spacing:21.731751pt;}
.wsfd{word-spacing:22.316224pt;}
.ws110{word-spacing:22.635027pt;}
.ws5a{word-spacing:23.325767pt;}
.ws34{word-spacing:24.707248pt;}
.wsd7{word-spacing:25.970844pt;}
.wsbf{word-spacing:29.011091pt;}
.ws9e{word-spacing:30.073769pt;}
.ws33{word-spacing:30.445706pt;}
.ws6d{word-spacing:34.377612pt;}
.wse1{word-spacing:34.591881pt;}
.wsde{word-spacing:34.628629pt;}
.ws18{word-spacing:36.248166pt;}
.ws17{word-spacing:48.155546pt;}
.ws10f{word-spacing:55.185203pt;}
.wsf6{word-spacing:95.640933pt;}
.ws129{word-spacing:100.232397pt;}
.ws128{word-spacing:103.006003pt;}
.wsf0{word-spacing:206.637607pt;}
._2{margin-left:-10.201728pt;}
._1a{margin-left:-5.950993pt;}
._3{margin-left:-4.256051pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._4{margin-left:-0.956416pt;}
._a{width:1.020173pt;}
._7{width:2.656693pt;}
._1c{width:3.825638pt;}
._1f{width:6.407939pt;}
._18{width:10.616218pt;}
._38{width:13.262246pt;}
._6{width:14.489702pt;}
._1d{width:15.408821pt;}
._20{width:16.684034pt;}
._1e{width:19.925200pt;}
._37{width:21.412953pt;}
._8{width:22.959172pt;}
._5{width:24.388608pt;}
._b{width:25.397988pt;}
._9{width:26.566933pt;}
._1b{width:29.755040pt;}
._d{width:30.977049pt;}
._c{width:32.092855pt;}
._21{width:35.238469pt;}
._39{width:42.507200pt;}
._10{width:47.820800pt;}
._23{width:63.792947pt;}
._28{width:67.140403pt;}
._19{width:82.347418pt;}
._27{width:112.187597pt;}
._34{width:114.961203pt;}
._35{width:117.591347pt;}
._25{width:121.703936pt;}
._11{width:130.534822pt;}
._36{width:136.097997pt;}
._2b{width:141.501747pt;}
._2a{width:146.714214pt;}
._17{width:164.886118pt;}
._f{width:171.055002pt;}
._2f{width:173.350400pt;}
._16{width:179.375821pt;}
._2d{width:180.906086pt;}
._22{width:184.062259pt;}
._26{width:195.730534pt;}
._2e{width:199.938765pt;}
._2c{width:207.494451pt;}
._32{width:210.602803pt;}
._31{width:213.137306pt;}
._24{width:215.432704pt;}
._29{width:228.631245pt;}
._15{width:233.939354pt;}
._12{width:251.728691pt;}
._e{width:268.699969pt;}
._13{width:282.907853pt;}
._30{width:312.269824pt;}
._14{width:328.098509pt;}
._33{width:333.597901pt;}
.fs6{font-size:26.566933pt;}
.fs4{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:100.740000pt;}
.y110{bottom:112.100000pt;}
.y111{bottom:112.696000pt;}
.y112{bottom:112.978667pt;}
.y32{bottom:116.680000pt;}
.y14c{bottom:116.681333pt;}
.y10f{bottom:121.910667pt;}
.y1bf{bottom:124.650667pt;}
.y5c{bottom:132.620000pt;}
.y31{bottom:132.621333pt;}
.y10e{bottom:133.513333pt;}
.y1be{bottom:136.605333pt;}
.y14b{bottom:136.637333pt;}
.y8c{bottom:140.590667pt;}
.y1f0{bottom:146.840000pt;}
.y30{bottom:148.561333pt;}
.y10d{bottom:149.453333pt;}
.y8b{bottom:156.530667pt;}
.y1ef{bottom:158.794667pt;}
.y14a{bottom:160.534667pt;}
.y1bd{bottom:160.596000pt;}
.y2f{bottom:164.501333pt;}
.y5b{bottom:165.148000pt;}
.y10c{bottom:165.394667pt;}
.y160{bottom:169.513333pt;}
.y1ee{bottom:170.750667pt;}
.y8a{bottom:172.470667pt;}
.y1bc{bottom:172.552000pt;}
.y149{bottom:176.474667pt;}
.y2e{bottom:180.441333pt;}
.y5a{bottom:181.088000pt;}
.y10b{bottom:181.334667pt;}
.y1ed{bottom:182.705333pt;}
.y15f{bottom:184.486667pt;}
.y1bb{bottom:184.506667pt;}
.y89{bottom:188.412000pt;}
.y148{bottom:192.414667pt;}
.y1ec{bottom:194.660000pt;}
.y2d{bottom:196.381333pt;}
.y15e{bottom:196.442667pt;}
.y1ba{bottom:196.461333pt;}
.y59{bottom:197.029333pt;}
.y10a{bottom:197.274667pt;}
.yb9{bottom:202.650667pt;}
.y88{bottom:204.352000pt;}
.y1eb{bottom:206.616000pt;}
.y147{bottom:208.354667pt;}
.y15d{bottom:208.397333pt;}
.y186{bottom:212.321333pt;}
.ye6{bottom:212.322667pt;}
.y58{bottom:212.969333pt;}
.y109{bottom:213.214667pt;}
.y2c{bottom:213.233333pt;}
.y1b9{bottom:217.052000pt;}
.y1ea{bottom:218.570667pt;}
.yb8{bottom:218.590667pt;}
.y87{bottom:220.292000pt;}
.ye5{bottom:228.262667pt;}
.y146{bottom:228.310667pt;}
.y57{bottom:228.909333pt;}
.y108{bottom:229.154667pt;}
.y2b{bottom:229.173333pt;}
.y1e9{bottom:230.525333pt;}
.y86{bottom:236.232000pt;}
.y1e8{bottom:242.481333pt;}
.y1b8{bottom:243.182667pt;}
.ye4{bottom:244.202667pt;}
.y56{bottom:244.849333pt;}
.y107{bottom:245.096000pt;}
.y2a{bottom:245.113333pt;}
.yb7{bottom:248.560000pt;}
.y85{bottom:252.172000pt;}
.y1e7{bottom:254.436000pt;}
.y1b7{bottom:259.122667pt;}
.y145{bottom:259.516000pt;}
.y185{bottom:260.142667pt;}
.y55{bottom:260.789333pt;}
.y106{bottom:261.036000pt;}
.y29{bottom:261.053333pt;}
.yb6{bottom:264.501333pt;}
.ye3{bottom:265.118667pt;}
.y1e6{bottom:266.390667pt;}
.y84{bottom:268.112000pt;}
.y1b6{bottom:275.062667pt;}
.y144{bottom:275.456000pt;}
.y18c{bottom:276.069333pt;}
.y184{bottom:276.082667pt;}
.y54{bottom:276.729333pt;}
.y105{bottom:276.976000pt;}
.y28{bottom:276.994667pt;}
.y1e5{bottom:278.346667pt;}
.yb5{bottom:280.441333pt;}
.y83{bottom:284.053333pt;}
.y1e4{bottom:290.301333pt;}
.y1b5{bottom:291.002667pt;}
.y143{bottom:291.396000pt;}
.ye2{bottom:291.948000pt;}
.y18b{bottom:292.009333pt;}
.y183{bottom:292.022667pt;}
.y53{bottom:292.670667pt;}
.y27{bottom:292.934667pt;}
.yb4{bottom:296.381333pt;}
.y82{bottom:299.993333pt;}
.y104{bottom:302.030667pt;}
.y1e3{bottom:302.257333pt;}
.y1b4{bottom:306.942667pt;}
.y142{bottom:307.337333pt;}
.ye1{bottom:307.888000pt;}
.y18a{bottom:307.949333pt;}
.y182{bottom:307.962667pt;}
.y52{bottom:308.610667pt;}
.y26{bottom:308.874667pt;}
.yb3{bottom:312.321333pt;}
.y1e2{bottom:314.212000pt;}
.y81{bottom:315.933333pt;}
.y1b3{bottom:322.884000pt;}
.y141{bottom:323.277333pt;}
.ye0{bottom:323.828000pt;}
.y181{bottom:323.904000pt;}
.y51{bottom:324.550667pt;}
.y25{bottom:324.814667pt;}
.y1e1{bottom:326.166667pt;}
.yb2{bottom:328.261333pt;}
.y189{bottom:331.504000pt;}
.y80{bottom:331.873333pt;}
.y140{bottom:335.933333pt;}
.y1e0{bottom:338.122667pt;}
.y1b2{bottom:338.824000pt;}
.y103{bottom:338.912000pt;}
.y13f{bottom:339.217333pt;}
.ydf{bottom:339.768000pt;}
.y180{bottom:339.844000pt;}
.y24{bottom:340.754667pt;}
.y188{bottom:343.458667pt;}
.yb1{bottom:344.201333pt;}
.y7f{bottom:347.813333pt;}
.y50{bottom:348.560000pt;}
.y1df{bottom:350.077333pt;}
.y13c{bottom:354.549333pt;}
.y1b1{bottom:354.764000pt;}
.y102{bottom:354.852000pt;}
.y13d{bottom:355.144000pt;}
.y187{bottom:355.414667pt;}
.yde{bottom:355.708000pt;}
.y17f{bottom:355.784000pt;}
.y13e{bottom:355.845333pt;}
.y23{bottom:356.694667pt;}
.y13b{bottom:359.129333pt;}
.yb0{bottom:360.142667pt;}
.y1de{bottom:362.032000pt;}
.y1b0{bottom:370.704000pt;}
.y101{bottom:370.792000pt;}
.ydd{bottom:371.649333pt;}
.y7e{bottom:371.724000pt;}
.y22{bottom:372.636000pt;}
.y1dd{bottom:373.988000pt;}
.y13a{bottom:375.069333pt;}
.yaf{bottom:376.082667pt;}
.y4f{bottom:378.969333pt;}
.y1dc{bottom:385.942667pt;}
.y1af{bottom:386.644000pt;}
.y100{bottom:386.732000pt;}
.ydc{bottom:387.589333pt;}
.y7d{bottom:387.664000pt;}
.y21{bottom:388.576000pt;}
.y139{bottom:391.009333pt;}
.yae{bottom:392.022667pt;}
.y4e{bottom:394.909333pt;}
.y1db{bottom:397.898667pt;}
.yff{bottom:399.214667pt;}
.y1ae{bottom:402.584000pt;}
.yfe{bottom:402.673333pt;}
.ydb{bottom:403.529333pt;}
.y7c{bottom:403.604000pt;}
.y17e{bottom:403.605333pt;}
.y20{bottom:404.516000pt;}
.y138{bottom:406.950667pt;}
.yad{bottom:407.962667pt;}
.y1da{bottom:409.853333pt;}
.y4d{bottom:410.850667pt;}
.y1ad{bottom:418.525333pt;}
.yda{bottom:419.469333pt;}
.y7b{bottom:419.545333pt;}
.y1f{bottom:420.456000pt;}
.y1d9{bottom:421.808000pt;}
.y137{bottom:422.890667pt;}
.yac{bottom:423.902667pt;}
.y4c{bottom:426.790667pt;}
.yfd{bottom:427.833333pt;}
.y1d8{bottom:433.764000pt;}
.y1ac{bottom:434.465333pt;}
.y7a{bottom:435.485333pt;}
.y1e{bottom:436.396000pt;}
.y136{bottom:438.830667pt;}
.yab{bottom:439.842667pt;}
.yd9{bottom:440.385333pt;}
.y4b{bottom:442.730667pt;}
.yfb{bottom:443.506667pt;}
.y1d7{bottom:445.718667pt;}
.yfc{bottom:446.296000pt;}
.y1ab{bottom:450.405333pt;}
.y79{bottom:451.425333pt;}
.y1d{bottom:452.337333pt;}
.y135{bottom:454.770667pt;}
.yaa{bottom:456.378667pt;}
.y1d6{bottom:457.673333pt;}
.y4a{bottom:458.670667pt;}
.y1aa{bottom:466.345333pt;}
.yd8{bottom:467.214667pt;}
.y78{bottom:467.365333pt;}
.y1d5{bottom:469.629333pt;}
.y134{bottom:470.710667pt;}
.ya9{bottom:472.320000pt;}
.y49{bottom:474.610667pt;}
.y1c{bottom:477.929333pt;}
.yfa{bottom:479.857333pt;}
.y1d4{bottom:481.584000pt;}
.y1a9{bottom:482.285333pt;}
.yd7{bottom:483.154667pt;}
.y77{bottom:483.305333pt;}
.y133{bottom:486.650667pt;}
.y17d{bottom:487.413333pt;}
.ya8{bottom:488.260000pt;}
.y48{bottom:490.550667pt;}
.y1d3{bottom:493.540000pt;}
.yf9{bottom:495.797333pt;}
.y1a8{bottom:498.225333pt;}
.yd6{bottom:499.096000pt;}
.y132{bottom:502.592000pt;}
.ya7{bottom:504.200000pt;}
.y1d2{bottom:505.494667pt;}
.y47{bottom:506.492000pt;}
.y76{bottom:507.216000pt;}
.yf8{bottom:511.737333pt;}
.y17c{bottom:511.864000pt;}
.y1a7{bottom:514.166667pt;}
.y1b{bottom:514.274667pt;}
.yd5{bottom:515.036000pt;}
.y1d1{bottom:517.449333pt;}
.y131{bottom:518.532000pt;}
.ya6{bottom:520.140000pt;}
.y75{bottom:523.156000pt;}
.yd4{bottom:526.394667pt;}
.y46{bottom:526.454667pt;}
.y1a{bottom:527.558667pt;}
.yf7{bottom:527.677333pt;}
.y17b{bottom:527.804000pt;}
.y1d0{bottom:529.405333pt;}
.y1a6{bottom:530.106667pt;}
.yd3{bottom:530.976000pt;}
.y130{bottom:534.472000pt;}
.ya5{bottom:536.080000pt;}
.y74{bottom:539.096000pt;}
.y19{bottom:540.841333pt;}
.y1cf{bottom:541.360000pt;}
.y45{bottom:542.396000pt;}
.yf6{bottom:543.617333pt;}
.y17a{bottom:543.744000pt;}
.y1a5{bottom:546.046667pt;}
.yd2{bottom:546.916000pt;}
.y12f{bottom:550.412000pt;}
.ya4{bottom:552.020000pt;}
.y1ce{bottom:553.314667pt;}
.y18{bottom:555.037333pt;}
.y44{bottom:558.336000pt;}
.yf5{bottom:559.558667pt;}
.y179{bottom:559.684000pt;}
.y1a4{bottom:561.986667pt;}
.yd1{bottom:562.856000pt;}
.y1cd{bottom:565.270667pt;}
.ya3{bottom:567.961333pt;}
.y17{bottom:568.320000pt;}
.y12e{bottom:568.922667pt;}
.y73{bottom:570.977333pt;}
.y43{bottom:574.276000pt;}
.yf4{bottom:575.498667pt;}
.y178{bottom:575.624000pt;}
.y1cc{bottom:577.225333pt;}
.yd0{bottom:578.796000pt;}
.y16{bottom:581.604000pt;}
.y1a3{bottom:582.976000pt;}
.ya2{bottom:583.901333pt;}
.y72{bottom:586.917333pt;}
.y12d{bottom:588.654667pt;}
.y1cb{bottom:589.181333pt;}
.y42{bottom:590.216000pt;}
.yf3{bottom:591.438667pt;}
.y177{bottom:591.565333pt;}
.ycf{bottom:594.736000pt;}
.y15{bottom:594.888000pt;}
.ya1{bottom:599.841333pt;}
.y1ca{bottom:601.136000pt;}
.y12c{bottom:604.596000pt;}
.y41{bottom:606.156000pt;}
.yf2{bottom:607.378667pt;}
.y176{bottom:607.429333pt;}
.y14{bottom:608.170667pt;}
.y1a2{bottom:609.105333pt;}
.yce{bottom:610.677333pt;}
.y71{bottom:610.828000pt;}
.y1c9{bottom:613.090667pt;}
.ya0{bottom:615.781333pt;}
.y12b{bottom:620.536000pt;}
.y13{bottom:621.454667pt;}
.y40{bottom:622.096000pt;}
.yf1{bottom:623.318667pt;}
.y175{bottom:623.369333pt;}
.y1a1{bottom:625.046667pt;}
.y15c{bottom:626.294667pt;}
.ycd{bottom:626.617333pt;}
.y70{bottom:626.768000pt;}
.y9f{bottom:631.721333pt;}
.y12a{bottom:633.192000pt;}
.y12{bottom:634.737333pt;}
.y129{bottom:636.476000pt;}
.y1c8{bottom:637.001333pt;}
.y3f{bottom:638.037333pt;}
.yf0{bottom:639.260000pt;}
.y174{bottom:639.309333pt;}
.y1a0{bottom:640.986667pt;}
.y15b{bottom:642.234667pt;}
.ycc{bottom:642.557333pt;}
.y6f{bottom:642.708000pt;}
.y9e{bottom:647.661333pt;}
.y11{bottom:648.021333pt;}
.y1c7{bottom:648.956000pt;}
.y126{bottom:651.806667pt;}
.y127{bottom:652.402667pt;}
.y128{bottom:653.104000pt;}
.y3e{bottom:653.977333pt;}
.yef{bottom:655.200000pt;}
.y173{bottom:655.249333pt;}
.y125{bottom:656.388000pt;}
.y19f{bottom:656.926667pt;}
.y15a{bottom:658.174667pt;}
.ycb{bottom:658.497333pt;}
.y6e{bottom:658.648000pt;}
.y1c6{bottom:660.912000pt;}
.y10{bottom:661.305333pt;}
.y9d{bottom:663.602667pt;}
.y3d{bottom:669.917333pt;}
.yee{bottom:671.140000pt;}
.y172{bottom:671.189333pt;}
.y19e{bottom:672.866667pt;}
.y159{bottom:674.114667pt;}
.yca{bottom:674.437333pt;}
.y124{bottom:674.540000pt;}
.yf{bottom:674.588000pt;}
.y1c5{bottom:684.821333pt;}
.y9c{bottom:685.812000pt;}
.y3c{bottom:685.857333pt;}
.y171{bottom:687.129333pt;}
.ye{bottom:687.872000pt;}
.y19d{bottom:688.806667pt;}
.y158{bottom:690.056000pt;}
.yc9{bottom:690.377333pt;}
.y123{bottom:690.480000pt;}
.y6d{bottom:690.529333pt;}
.yed{bottom:696.194667pt;}
.y1c4{bottom:696.777333pt;}
.yd{bottom:701.156000pt;}
.y3b{bottom:701.797333pt;}
.y170{bottom:703.070667pt;}
.y19c{bottom:704.748000pt;}
.y157{bottom:705.996000pt;}
.yc8{bottom:706.318667pt;}
.y122{bottom:706.420000pt;}
.y6c{bottom:706.469333pt;}
.y1c3{bottom:708.732000pt;}
.yc{bottom:714.438667pt;}
.y9b{bottom:715.781333pt;}
.y3a{bottom:717.738667pt;}
.y16f{bottom:719.010667pt;}
.y19b{bottom:720.688000pt;}
.y156{bottom:722.172000pt;}
.yc7{bottom:722.258667pt;}
.y121{bottom:722.360000pt;}
.y6b{bottom:722.409333pt;}
.yb{bottom:727.722667pt;}
.y9a{bottom:731.721333pt;}
.y1c2{bottom:732.642667pt;}
.yec{bottom:733.076000pt;}
.y39{bottom:733.678667pt;}
.y16e{bottom:734.950667pt;}
.y19a{bottom:736.628000pt;}
.y155{bottom:738.113333pt;}
.yc6{bottom:738.198667pt;}
.y120{bottom:738.300000pt;}
.y6a{bottom:738.349333pt;}
.ya{bottom:741.006667pt;}
.y1c1{bottom:744.597333pt;}
.y99{bottom:747.661333pt;}
.yeb{bottom:749.016000pt;}
.y38{bottom:749.618667pt;}
.y16d{bottom:750.814667pt;}
.y199{bottom:752.568000pt;}
.y154{bottom:754.053333pt;}
.yc5{bottom:754.138667pt;}
.y11f{bottom:754.241333pt;}
.y9{bottom:754.289333pt;}
.y1c0{bottom:756.553333pt;}
.y69{bottom:762.260000pt;}
.yea{bottom:764.956000pt;}
.y37{bottom:765.558667pt;}
.y16c{bottom:766.754667pt;}
.y8{bottom:767.573333pt;}
.y198{bottom:768.508000pt;}
.y153{bottom:769.993333pt;}
.y11e{bottom:770.181333pt;}
.y98{bottom:771.360000pt;}
.yc4{bottom:775.054667pt;}
.y68{bottom:778.200000pt;}
.y7{bottom:780.857333pt;}
.ye9{bottom:780.896000pt;}
.y36{bottom:785.522667pt;}
.y152{bottom:785.933333pt;}
.y11d{bottom:786.121333pt;}
.y6{bottom:794.140000pt;}
.y16b{bottom:795.641333pt;}
.y197{bottom:797.394667pt;}
.y97{bottom:800.849333pt;}
.y35{bottom:801.462667pt;}
.y151{bottom:801.873333pt;}
.yc3{bottom:801.884000pt;}
.y11c{bottom:802.061333pt;}
.y5{bottom:807.424000pt;}
.y16a{bottom:808.925333pt;}
.ye8{bottom:809.473333pt;}
.y67{bottom:810.080000pt;}
.y196{bottom:810.678667pt;}
.y96{bottom:816.789333pt;}
.y150{bottom:817.813333pt;}
.yc2{bottom:817.824000pt;}
.y34{bottom:818.050667pt;}
.y4{bottom:820.706667pt;}
.y11b{bottom:822.017333pt;}
.y169{bottom:822.208000pt;}
.y195{bottom:823.961333pt;}
.y66{bottom:826.021333pt;}
.y95{bottom:832.729333pt;}
.ye7{bottom:833.028000pt;}
.y14f{bottom:833.754667pt;}
.yc1{bottom:833.764000pt;}
.y3{bottom:833.990667pt;}
.y168{bottom:835.492000pt;}
.y194{bottom:837.245333pt;}
.y65{bottom:841.961333pt;}
.y11a{bottom:845.914667pt;}
.y94{bottom:848.669333pt;}
.y167{bottom:848.776000pt;}
.y14e{bottom:849.694667pt;}
.yc0{bottom:849.705333pt;}
.y193{bottom:850.529333pt;}
.y64{bottom:857.901333pt;}
.y119{bottom:861.854667pt;}
.y166{bottom:862.058667pt;}
.y192{bottom:863.812000pt;}
.y93{bottom:864.609333pt;}
.ybf{bottom:865.645333pt;}
.y14d{bottom:865.870667pt;}
.y165{bottom:875.342667pt;}
.y191{bottom:877.096000pt;}
.y118{bottom:877.796000pt;}
.y92{bottom:880.550667pt;}
.ybe{bottom:881.585333pt;}
.y63{bottom:881.812000pt;}
.y164{bottom:888.626667pt;}
.y190{bottom:890.380000pt;}
.y117{bottom:893.736000pt;}
.y91{bottom:896.490667pt;}
.ybd{bottom:897.525333pt;}
.y62{bottom:897.752000pt;}
.y163{bottom:901.909333pt;}
.y18f{bottom:903.662667pt;}
.y116{bottom:909.676000pt;}
.y90{bottom:912.430667pt;}
.ybc{bottom:913.465333pt;}
.y61{bottom:913.692000pt;}
.y162{bottom:915.193333pt;}
.y18e{bottom:916.946667pt;}
.y2{bottom:923.830667pt;}
.y115{bottom:925.616000pt;}
.ybb{bottom:929.406667pt;}
.y60{bottom:929.632000pt;}
.y8f{bottom:935.310667pt;}
.y161{bottom:935.417333pt;}
.y18d{bottom:937.170667pt;}
.y114{bottom:941.556000pt;}
.yba{bottom:945.346667pt;}
.y5f{bottom:945.572000pt;}
.y113{bottom:957.496000pt;}
.y1{bottom:961.024000pt;}
.y5e{bottom:961.512000pt;}
.y8e{bottom:965.497333pt;}
.y8d{bottom:977.452000pt;}
.y5d{bottom:977.453333pt;}
.he{height:2.125355pt;}
.h12{height:24.696550pt;}
.hd{height:26.184294pt;}
.h21{height:29.159939pt;}
.h5{height:30.902734pt;}
.h22{height:31.110734pt;}
.h6{height:34.765722pt;}
.h2{height:35.865600pt;}
.h7{height:36.449833pt;}
.h3{height:38.628321pt;}
.h4{height:39.850400pt;}
.h1c{height:40.740707pt;}
.h20{height:40.746041pt;}
.hb{height:42.122400pt;}
.hf{height:45.464294pt;}
.h8{height:47.957081pt;}
.h11{height:52.462988pt;}
.hc{height:52.605355pt;}
.h1b{height:52.986400pt;}
.h15{height:54.661067pt;}
.h9{height:58.175733pt;}
.h1a{height:58.600294pt;}
.h10{height:59.298961pt;}
.h16{height:61.101355pt;}
.h1d{height:61.106688pt;}
.h18{height:61.405628pt;}
.h1f{height:61.410961pt;}
.h14{height:67.656294pt;}
.h1e{height:69.731217pt;}
.h17{height:69.736550pt;}
.h13{height:71.224294pt;}
.h19{height:74.242688pt;}
.h1{height:92.708203pt;}
.ha{height:108.925355pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:65.285333pt;}
.x24{left:67.644000pt;}
.x31{left:70.598667pt;}
.x1{left:73.209333pt;}
.x3{left:78.569333pt;}
.x23{left:87.866667pt;}
.x2d{left:89.444000pt;}
.x2a{left:152.732000pt;}
.x28{left:158.637333pt;}
.x5{left:180.825333pt;}
.x30{left:195.464000pt;}
.x2{left:229.901333pt;}
.x2c{left:235.305333pt;}
.x25{left:237.972000pt;}
.x21{left:245.937333pt;}
.x29{left:254.664000pt;}
.x26{left:258.882667pt;}
.x2f{left:280.384000pt;}
.x27{left:287.938667pt;}
.x1e{left:314.084000pt;}
.x1f{left:337.208000pt;}
.x22{left:358.605333pt;}
.xf{left:361.444000pt;}
.x20{left:368.477333pt;}
.x2e{left:384.206667pt;}
.x2b{left:385.976000pt;}
.x6{left:415.970667pt;}
.xd{left:417.298667pt;}
.x1c{left:419.622667pt;}
.x32{left:421.284000pt;}
.x8{left:424.830667pt;}
.x7{left:429.253333pt;}
.x33{left:440.316000pt;}
.x9{left:442.537333pt;}
.xc{left:444.574667pt;}
.x10{left:446.725333pt;}
.x12{left:457.630667pt;}
.x11{left:459.422667pt;}
.xa{left:469.238667pt;}
.xe{left:477.972000pt;}
.x13{left:481.984000pt;}
.x34{left:490.353333pt;}
.x14{left:508.980000pt;}
.x1d{left:516.129333pt;}
.x15{left:559.190667pt;}
.xb{left:563.088000pt;}
.x16{left:573.464000pt;}
.x1a{left:621.185333pt;}
.x17{left:652.421333pt;}
.x18{left:666.694667pt;}
.x19{left:700.198667pt;}
.x1b{left:720.938667pt;}
}




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