
    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_2386c418b2f0d8982940f1db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_da2cc5d6397f6aa7642aeb3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.819000;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_02ed4116689c0076fdfce72b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917000;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_cd3537201f2c95e3750beb71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.110000;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_9236289926a112523c50f901.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.144000;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_081799380ecdb4b29462ff8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.180000;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_9a2a57a53a356f6fe52cebfe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056000;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_081799380ecdb4b29462ff8f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.180000;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_7d5fe6a1210fddaa8aec1be9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056000;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_081799380ecdb4b29462ff8f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.180000;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_9a2a57a53a356f6fe52cebfe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056000;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_081799380ecdb4b29462ff8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.180000;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_7d5fe6a1210fddaa8aec1be9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.056000;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_367c5e23ee609e6c48cd20db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.lsf{letter-spacing:-5.775300px;}
.lsc{letter-spacing:-4.250070px;}
.ls18{letter-spacing:-2.640000px;}
.ls14{letter-spacing:-2.566800px;}
.lsa{letter-spacing:-2.352900px;}
.ls7{letter-spacing:-1.920000px;}
.ls13{letter-spacing:-1.888920px;}
.ls9{letter-spacing:-1.731510px;}
.ls17{letter-spacing:-1.711200px;}
.ls11{letter-spacing:-1.497300px;}
.ls16{letter-spacing:-1.259280px;}
.lse{letter-spacing:-1.101870px;}
.ls3{letter-spacing:-1.020000px;}
.ls8{letter-spacing:-0.765000px;}
.ls10{letter-spacing:-0.641700px;}
.ls2{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.472230px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000204px;}
.ls15{letter-spacing:0.709200px;}
.ls0{letter-spacing:0.741000px;}
.ls6{letter-spacing:9.576000px;}
.ls5{letter-spacing:13.679400px;}
.lsb{letter-spacing:27.071760px;}
.ls4{letter-spacing:38.824200px;}
.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;}
}
.ws12{word-spacing:-18.916800px;}
.ws1{word-spacing:-15.012000px;}
.ws13{word-spacing:-14.178000px;}
.ws2f{word-spacing:-13.344000px;}
.ws15{word-spacing:-11.892840px;}
.ws0{word-spacing:-11.826120px;}
.ws58{word-spacing:-11.251140px;}
.ws30{word-spacing:-10.842000px;}
.ws161{word-spacing:-10.704000px;}
.ws59{word-spacing:-10.395540px;}
.ws11c{word-spacing:-10.181640px;}
.ws33{word-spacing:-9.539940px;}
.ws77{word-spacing:-9.326040px;}
.ws14{word-spacing:-8.751996px;}
.ws148{word-spacing:-8.640000px;}
.ws55{word-spacing:-8.279766px;}
.ws45{word-spacing:-7.700400px;}
.ws56{word-spacing:-7.650126px;}
.ws31{word-spacing:-7.589400px;}
.ws11b{word-spacing:-7.492716px;}
.ws32{word-spacing:-7.020486px;}
.ws76{word-spacing:-6.863076px;}
.ws57{word-spacing:-6.117540px;}
.ws164{word-spacing:-5.328000px;}
.ws54{word-spacing:-4.501926px;}
.ws170{word-spacing:-3.600000px;}
.ws196{word-spacing:-3.552000px;}
.ws12c{word-spacing:-3.422400px;}
.wsfe{word-spacing:-3.379620px;}
.ws129{word-spacing:-3.336840px;}
.ws150{word-spacing:-3.216000px;}
.ws127{word-spacing:-3.186000px;}
.ws19{word-spacing:-3.162000px;}
.ws185{word-spacing:-3.072000px;}
.ws107{word-spacing:-2.970000px;}
.ws91{word-spacing:-2.916000px;}
.wsd5{word-spacing:-2.866260px;}
.ws10e{word-spacing:-2.862000px;}
.wsfa{word-spacing:-2.808000px;}
.wsfb{word-spacing:-2.754000px;}
.wse5{word-spacing:-2.700000px;}
.ws13b{word-spacing:-2.695140px;}
.wse0{word-spacing:-2.646000px;}
.ws131{word-spacing:-2.592000px;}
.ws136{word-spacing:-2.566800px;}
.ws95{word-spacing:-2.538000px;}
.ws166{word-spacing:-2.496000px;}
.wsef{word-spacing:-2.484000px;}
.ws186{word-spacing:-2.448000px;}
.ws83{word-spacing:-2.430000px;}
.ws147{word-spacing:-2.400000px;}
.ws126{word-spacing:-2.376000px;}
.ws5c{word-spacing:-2.322000px;}
.ws9f{word-spacing:-2.268000px;}
.ws14f{word-spacing:-2.256000px;}
.ws132{word-spacing:-2.214000px;}
.wsb7{word-spacing:-2.160000px;}
.ws8b{word-spacing:-2.139000px;}
.ws5a{word-spacing:-2.106000px;}
.wsee{word-spacing:-2.052000px;}
.ws169{word-spacing:-2.016000px;}
.ws87{word-spacing:-1.998000px;}
.wsb1{word-spacing:-1.944000px;}
.ws12e{word-spacing:-1.925100px;}
.ws3f{word-spacing:-1.890000px;}
.ws102{word-spacing:-1.882320px;}
.wsb0{word-spacing:-1.836000px;}
.ws187{word-spacing:-1.824000px;}
.wsde{word-spacing:-1.782000px;}
.ws14b{word-spacing:-1.776000px;}
.ws69{word-spacing:-1.728000px;}
.ws167{word-spacing:-1.680000px;}
.ws64{word-spacing:-1.674000px;}
.ws191{word-spacing:-1.584000px;}
.wsc1{word-spacing:-1.582860px;}
.ws106{word-spacing:-1.566000px;}
.ws39{word-spacing:-1.512000px;}
.ws38{word-spacing:-1.458000px;}
.ws1d{word-spacing:-1.428000px;}
.wse3{word-spacing:-1.404000px;}
.ws171{word-spacing:-1.392000px;}
.wsab{word-spacing:-1.350000px;}
.ws12d{word-spacing:-1.326180px;}
.ws63{word-spacing:-1.296000px;}
.ws1c{word-spacing:-1.275000px;}
.ws112{word-spacing:-1.242000px;}
.ws20{word-spacing:-1.224000px;}
.ws125{word-spacing:-1.197840px;}
.ws80{word-spacing:-1.188000px;}
.ws8e{word-spacing:-1.155060px;}
.ws99{word-spacing:-1.134000px;}
.ws9d{word-spacing:-1.112280px;}
.ws17c{word-spacing:-1.104000px;}
.wse4{word-spacing:-1.080000px;}
.ws5{word-spacing:-1.071000px;}
.ws101{word-spacing:-1.026720px;}
.wsdb{word-spacing:-1.026000px;}
.ws15b{word-spacing:-1.008000px;}
.ws28{word-spacing:-0.972000px;}
.ws41{word-spacing:-0.918000px;}
.ws48{word-spacing:-0.898380px;}
.ws79{word-spacing:-0.864000px;}
.ws180{word-spacing:-0.816000px;}
.wsf4{word-spacing:-0.810000px;}
.ws73{word-spacing:-0.770040px;}
.ws98{word-spacing:-0.756000px;}
.wsea{word-spacing:-0.702000px;}
.ws176{word-spacing:-0.672000px;}
.ws17{word-spacing:-0.663000px;}
.wsf2{word-spacing:-0.648000px;}
.ws16d{word-spacing:-0.624000px;}
.wsb9{word-spacing:-0.594000px;}
.ws165{word-spacing:-0.528000px;}
.ws6e{word-spacing:-0.513360px;}
.wsb{word-spacing:-0.510000px;}
.ws9a{word-spacing:-0.486000px;}
.ws175{word-spacing:-0.480000px;}
.wsd3{word-spacing:-0.470580px;}
.wsa4{word-spacing:-0.432000px;}
.wsce{word-spacing:-0.385020px;}
.wsb8{word-spacing:-0.378000px;}
.ws10a{word-spacing:-0.342240px;}
.ws3a{word-spacing:-0.324000px;}
.ws3e{word-spacing:-0.270000px;}
.ws9c{word-spacing:-0.256680px;}
.ws16b{word-spacing:-0.240000px;}
.ws5e{word-spacing:-0.216000px;}
.ws17b{word-spacing:-0.192000px;}
.ws133{word-spacing:-0.162000px;}
.ws97{word-spacing:-0.108000px;}
.ws61{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws183{word-spacing:0.048000px;}
.ws3d{word-spacing:0.054000px;}
.ws14a{word-spacing:0.096000px;}
.wsa7{word-spacing:0.162000px;}
.wsc{word-spacing:0.204000px;}
.ws7f{word-spacing:0.216000px;}
.ws23{word-spacing:0.270000px;}
.wsc9{word-spacing:0.324000px;}
.ws156{word-spacing:0.336000px;}
.ws1e{word-spacing:0.357000px;}
.ws9b{word-spacing:0.378000px;}
.wsc7{word-spacing:0.432000px;}
.ws118{word-spacing:0.470580px;}
.ws146{word-spacing:0.486000px;}
.wsac{word-spacing:0.513360px;}
.ws195{word-spacing:0.528000px;}
.ws43{word-spacing:0.540000px;}
.ws17f{word-spacing:0.576000px;}
.ws94{word-spacing:0.594000px;}
.wsf0{word-spacing:0.598920px;}
.ws134{word-spacing:0.648000px;}
.ws7{word-spacing:0.663000px;}
.ws92{word-spacing:0.702000px;}
.ws13c{word-spacing:0.727260px;}
.wsa3{word-spacing:0.756000px;}
.ws181{word-spacing:0.768000px;}
.wsa9{word-spacing:0.810000px;}
.ws8c{word-spacing:0.812820px;}
.ws9e{word-spacing:0.864000px;}
.wse{word-spacing:0.918000px;}
.ws17a{word-spacing:0.960000px;}
.wsdc{word-spacing:0.972000px;}
.ws8f{word-spacing:0.983940px;}
.ws5b{word-spacing:1.026000px;}
.ws4b{word-spacing:1.026720px;}
.ws108{word-spacing:1.080000px;}
.ws18d{word-spacing:1.104000px;}
.wscd{word-spacing:1.112280px;}
.ws89{word-spacing:1.134000px;}
.wsc8{word-spacing:1.188000px;}
.ws49{word-spacing:1.197840px;}
.ws18a{word-spacing:1.200000px;}
.wsf1{word-spacing:1.240620px;}
.ws65{word-spacing:1.242000px;}
.wsff{word-spacing:1.283400px;}
.ws84{word-spacing:1.296000px;}
.ws62{word-spacing:1.350000px;}
.ws11d{word-spacing:1.458000px;}
.ws96{word-spacing:1.512000px;}
.ws4{word-spacing:1.530000px;}
.ws6a{word-spacing:1.566000px;}
.ws162{word-spacing:1.584000px;}
.wsfd{word-spacing:1.620000px;}
.ws2e{word-spacing:1.625640px;}
.ws82{word-spacing:1.674000px;}
.ws44{word-spacing:1.728000px;}
.ws8a{word-spacing:1.753980px;}
.wsa8{word-spacing:1.782000px;}
.ws3c{word-spacing:1.836000px;}
.ws193{word-spacing:1.872000px;}
.ws90{word-spacing:1.882320px;}
.ws120{word-spacing:1.890000px;}
.ws16{word-spacing:1.920000px;}
.ws17e{word-spacing:1.968000px;}
.wsdf{word-spacing:1.998000px;}
.ws182{word-spacing:2.016000px;}
.wsc3{word-spacing:2.052000px;}
.ws178{word-spacing:2.064000px;}
.wscb{word-spacing:2.106000px;}
.ws113{word-spacing:2.160000px;}
.ws13e{word-spacing:2.214000px;}
.ws6{word-spacing:2.244000px;}
.ws153{word-spacing:2.256000px;}
.ws86{word-spacing:2.268000px;}
.wsd{word-spacing:2.295000px;}
.ws17d{word-spacing:2.304000px;}
.ws46{word-spacing:2.310120px;}
.ws110{word-spacing:2.322000px;}
.ws4c{word-spacing:2.352900px;}
.wsed{word-spacing:2.376000px;}
.ws2b{word-spacing:2.430000px;}
.wse8{word-spacing:2.438460px;}
.ws16a{word-spacing:2.448000px;}
.ws7a{word-spacing:2.484000px;}
.wsf6{word-spacing:2.538000px;}
.wsa0{word-spacing:2.592000px;}
.ws149{word-spacing:2.640000px;}
.ws85{word-spacing:2.646000px;}
.wsa{word-spacing:2.652000px;}
.ws2d{word-spacing:2.652360px;}
.ws7c{word-spacing:2.700000px;}
.wsb2{word-spacing:2.754000px;}
.ws18b{word-spacing:2.784000px;}
.ws3{word-spacing:2.805000px;}
.ws60{word-spacing:2.808000px;}
.ws184{word-spacing:2.832000px;}
.ws163{word-spacing:2.880000px;}
.ws88{word-spacing:2.916000px;}
.ws189{word-spacing:2.928000px;}
.wsd6{word-spacing:2.951820px;}
.ws5f{word-spacing:2.970000px;}
.ws157{word-spacing:2.976000px;}
.ws121{word-spacing:3.024000px;}
.ws139{word-spacing:3.037380px;}
.ws177{word-spacing:3.072000px;}
.wsbe{word-spacing:3.080160px;}
.wsc5{word-spacing:3.132000px;}
.wsd1{word-spacing:3.165720px;}
.ws66{word-spacing:3.186000px;}
.ws3b{word-spacing:3.240000px;}
.ws37{word-spacing:3.294000px;}
.ws71{word-spacing:3.294060px;}
.ws173{word-spacing:3.312000px;}
.ws137{word-spacing:3.348000px;}
.ws152{word-spacing:3.360000px;}
.wse7{word-spacing:3.402000px;}
.wsf7{word-spacing:3.456000px;}
.wsd4{word-spacing:3.465180px;}
.ws172{word-spacing:3.504000px;}
.wsa6{word-spacing:3.510000px;}
.wsec{word-spacing:3.564000px;}
.ws197{word-spacing:3.600000px;}
.ws26{word-spacing:3.618000px;}
.ws174{word-spacing:3.648000px;}
.wsb6{word-spacing:3.672000px;}
.ws198{word-spacing:3.696000px;}
.wsfc{word-spacing:3.726000px;}
.ws13a{word-spacing:3.764640px;}
.wscc{word-spacing:3.780000px;}
.wsda{word-spacing:3.807420px;}
.ws93{word-spacing:3.834000px;}
.ws188{word-spacing:3.840000px;}
.wsf9{word-spacing:3.888000px;}
.wsbc{word-spacing:3.892980px;}
.ws103{word-spacing:3.935760px;}
.ws27{word-spacing:3.942000px;}
.ws12f{word-spacing:3.978540px;}
.ws25{word-spacing:3.996000px;}
.ws7b{word-spacing:4.050000px;}
.wse9{word-spacing:4.149660px;}
.wsf8{word-spacing:4.158000px;}
.ws8d{word-spacing:4.192440px;}
.wse6{word-spacing:4.212000px;}
.ws155{word-spacing:4.224000px;}
.wsb4{word-spacing:4.266000px;}
.ws15a{word-spacing:4.272000px;}
.ws70{word-spacing:4.278000px;}
.wseb{word-spacing:4.320000px;}
.ws16e{word-spacing:4.368000px;}
.ws67{word-spacing:4.374000px;}
.wsa1{word-spacing:4.428000px;}
.ws128{word-spacing:4.449120px;}
.ws7e{word-spacing:4.482000px;}
.ws36{word-spacing:4.536000px;}
.wsf3{word-spacing:4.590000px;}
.ws194{word-spacing:4.704000px;}
.wsbf{word-spacing:4.748580px;}
.wsf5{word-spacing:4.752000px;}
.ws18c{word-spacing:4.800000px;}
.ws5d{word-spacing:4.806000px;}
.wsc4{word-spacing:4.860000px;}
.ws18f{word-spacing:4.896000px;}
.ws114{word-spacing:4.914000px;}
.ws78{word-spacing:4.968000px;}
.wse1{word-spacing:5.022000px;}
.ws160{word-spacing:5.040000px;}
.ws34{word-spacing:5.130000px;}
.wsd0{word-spacing:5.133600px;}
.ws4f{word-spacing:5.176380px;}
.ws122{word-spacing:5.184000px;}
.wsba{word-spacing:5.219160px;}
.ws11f{word-spacing:5.238000px;}
.ws11a{word-spacing:5.261940px;}
.ws10d{word-spacing:5.292000px;}
.ws179{word-spacing:5.328000px;}
.ws81{word-spacing:5.346000px;}
.ws11{word-spacing:5.390280px;}
.ws29{word-spacing:5.400000px;}
.ws138{word-spacing:5.454000px;}
.ws42{word-spacing:5.508000px;}
.ws100{word-spacing:5.518620px;}
.ws47{word-spacing:5.561400px;}
.wsa5{word-spacing:5.562000px;}
.ws109{word-spacing:5.670000px;}
.ws15d{word-spacing:5.760000px;}
.ws10c{word-spacing:5.778000px;}
.ws6f{word-spacing:5.818080px;}
.ws24{word-spacing:5.832000px;}
.ws14c{word-spacing:5.856000px;}
.wsbd{word-spacing:5.860860px;}
.wsaa{word-spacing:5.886000px;}
.ws142{word-spacing:5.994000px;}
.ws9{word-spacing:6.069000px;}
.ws40{word-spacing:6.102000px;}
.ws10f{word-spacing:6.210000px;}
.wsb3{word-spacing:6.318000px;}
.ws11e{word-spacing:6.372000px;}
.ws12b{word-spacing:6.374220px;}
.ws50{word-spacing:6.459780px;}
.ws2c{word-spacing:6.480000px;}
.ws1f{word-spacing:6.528000px;}
.wsae{word-spacing:6.534000px;}
.wsaf{word-spacing:6.588000px;}
.ws75{word-spacing:6.588120px;}
.ws151{word-spacing:6.624000px;}
.ws144{word-spacing:6.642000px;}
.ws15e{word-spacing:6.672000px;}
.ws13d{word-spacing:6.716460px;}
.wsb5{word-spacing:6.750000px;}
.ws68{word-spacing:6.804000px;}
.ws104{word-spacing:6.844800px;}
.ws21{word-spacing:6.885000px;}
.ws130{word-spacing:6.966000px;}
.ws199{word-spacing:7.008000px;}
.ws4a{word-spacing:7.101480px;}
.ws13f{word-spacing:7.128000px;}
.ws12a{word-spacing:7.144260px;}
.ws141{word-spacing:7.182000px;}
.wsd2{word-spacing:7.272600px;}
.wsbb{word-spacing:7.358160px;}
.ws140{word-spacing:7.398000px;}
.ws123{word-spacing:7.452000px;}
.ws145{word-spacing:7.560000px;}
.ws7d{word-spacing:7.614000px;}
.ws14e{word-spacing:7.632000px;}
.ws115{word-spacing:7.668000px;}
.wscf{word-spacing:7.700400px;}
.ws8{word-spacing:7.701000px;}
.ws35{word-spacing:7.722000px;}
.ws18e{word-spacing:7.776000px;}
.ws135{word-spacing:7.830000px;}
.wse2{word-spacing:7.884000px;}
.wsc2{word-spacing:7.938000px;}
.wsca{word-spacing:7.992000px;}
.wsf{word-spacing:8.058000px;}
.ws10b{word-spacing:8.100000px;}
.ws192{word-spacing:8.112000px;}
.ws6c{word-spacing:8.128200px;}
.ws116{word-spacing:8.208000px;}
.ws51{word-spacing:8.256540px;}
.ws10{word-spacing:8.299320px;}
.ws105{word-spacing:8.370000px;}
.wsdd{word-spacing:8.424000px;}
.ws117{word-spacing:8.478000px;}
.ws2a{word-spacing:8.532000px;}
.wsd8{word-spacing:8.556000px;}
.wsa2{word-spacing:8.586000px;}
.ws53{word-spacing:8.727120px;}
.ws16f{word-spacing:8.736000px;}
.ws143{word-spacing:8.802000px;}
.ws18{word-spacing:8.823000px;}
.ws154{word-spacing:8.832000px;}
.wsd7{word-spacing:8.898240px;}
.ws111{word-spacing:8.964000px;}
.ws16c{word-spacing:9.024000px;}
.ws6d{word-spacing:9.454380px;}
.ws4e{word-spacing:9.497160px;}
.ws15f{word-spacing:9.936000px;}
.ws119{word-spacing:10.181640px;}
.ws15c{word-spacing:10.512000px;}
.wsc6{word-spacing:10.800000px;}
.ws52{word-spacing:10.823340px;}
.ws6b{word-spacing:11.507820px;}
.ws14d{word-spacing:11.712000px;}
.ws168{word-spacing:12.288000px;}
.ws4d{word-spacing:12.662880px;}
.ws74{word-spacing:12.705660px;}
.wsd9{word-spacing:12.748440px;}
.ws190{word-spacing:13.632000px;}
.ws1b{word-spacing:13.821000px;}
.ws1a{word-spacing:14.178000px;}
.ws72{word-spacing:15.144120px;}
.ws22{word-spacing:16.269000px;}
.ws159{word-spacing:17.184000px;}
.wsc0{word-spacing:18.352620px;}
.ws158{word-spacing:19.344000px;}
.wsad{word-spacing:25.582440px;}
.ws124{word-spacing:27.293640px;}
._d{margin-left:-137.207400px;}
._2c{margin-left:-134.566800px;}
._2a{margin-left:-28.944600px;}
._29{margin-left:-26.888700px;}
._24{margin-left:-25.591440px;}
._27{margin-left:-21.572640px;}
._2d{margin-left:-19.950360px;}
._17{margin-left:-18.087540px;}
._13{margin-left:-16.779882px;}
._b{margin-left:-11.460240px;}
._7{margin-left:-9.428040px;}
._4{margin-left:-7.410000px;}
._3{margin-left:-6.073740px;}
._1{margin-left:-4.892100px;}
._5{margin-left:-3.809640px;}
._0{margin-left:-2.552400px;}
._2{margin-left:-1.377360px;}
._6{width:1.496640px;}
._21{width:2.567040px;}
._19{width:3.864156px;}
._1a{width:5.775840px;}
._10{width:7.696122px;}
._2e{width:9.324720px;}
._a{width:10.471200px;}
._1e{width:14.160120px;}
._28{width:15.401040px;}
._26{width:16.684440px;}
._18{width:17.968800px;}
._1b{width:19.849920px;}
._1c{width:21.047700px;}
._25{width:22.502520px;}
._22{width:23.700360px;}
._20{width:25.112400px;}
._1d{width:26.865780px;}
._e{width:28.434960px;}
._2b{width:31.944204px;}
._23{width:33.283080px;}
._1f{width:34.566780px;}
._14{width:36.705240px;}
._15{width:39.870960px;}
._8{width:41.068800px;}
._12{width:42.266640px;}
._16{width:44.191740px;}
._c{width:46.715760px;}
._11{width:48.170280px;}
._f{width:57.068520px;}
._9{width:59.486760px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.300000px;}
.fs9{font-size:31.482000px;}
.fs8{font-size:33.600000px;}
.fs1{font-size:37.080000px;}
.fsa{font-size:39.000000px;}
.fs0{font-size:42.540000px;}
.fs3{font-size:42.780000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:74.100000px;}
.y0{bottom:0.000000px;}
.y7{bottom:46.538850px;}
.y31{bottom:47.521800px;}
.y2f{bottom:81.800400px;}
.y124{bottom:88.531650px;}
.yd8{bottom:89.291400px;}
.y50{bottom:89.291550px;}
.y2e{bottom:97.842900px;}
.y17c{bottom:99.208350px;}
.y131{bottom:99.354300px;}
.y15b{bottom:104.070150px;}
.yd7{bottom:105.333900px;}
.y4f{bottom:105.334050px;}
.ybf{bottom:105.334200px;}
.y11d{bottom:108.586800px;}
.y123{bottom:109.231650px;}
.y199{bottom:111.201750px;}
.y2d{bottom:113.885400px;}
.y130{bottom:117.354300px;}
.yd6{bottom:121.376400px;}
.y4e{bottom:121.376550px;}
.yab{bottom:121.376700px;}
.ybe{bottom:121.376850px;}
.y12b{bottom:121.960650px;}
.y15a{bottom:122.070150px;}
.y198{bottom:129.201750px;}
.y11c{bottom:129.286800px;}
.y17b{bottom:132.205050px;}
.ye5{bottom:137.418900px;}
.yd5{bottom:137.419050px;}
.y7b{bottom:137.419200px;}
.yaa{bottom:137.419350px;}
.ybd{bottom:137.419500px;}
.y12a{bottom:144.212550px;}
.y197{bottom:147.201750px;}
.y17a{bottom:150.205050px;}
.ye4{bottom:153.461400px;}
.yd4{bottom:153.461550px;}
.y7a{bottom:153.461700px;}
.y99{bottom:153.461850px;}
.ya9{bottom:153.462000px;}
.ybc{bottom:153.462150px;}
.y159{bottom:155.066850px;}
.y2c{bottom:157.000200px;}
.y10f{bottom:164.653500px;}
.y137{bottom:167.536950px;}
.yd3{bottom:169.504050px;}
.y79{bottom:169.504200px;}
.yec{bottom:169.504350px;}
.y98{bottom:169.504500px;}
.ybb{bottom:169.504650px;}
.yc9{bottom:169.504800px;}
.y2b{bottom:172.300200px;}
.y158{bottom:173.066850px;}
.y4d{bottom:178.638300px;}
.y103{bottom:179.650200px;}
.y196{bottom:180.198450px;}
.y179{bottom:183.201750px;}
.y10e{bottom:185.353650px;}
.ye3{bottom:185.546550px;}
.y78{bottom:185.546700px;}
.yeb{bottom:185.546850px;}
.y97{bottom:185.547000px;}
.yba{bottom:185.547150px;}
.yc8{bottom:185.547450px;}
.y157{bottom:191.066850px;}
.y195{bottom:198.198450px;}
.y4c{bottom:199.338300px;}
.y102{bottom:200.350200px;}
.y178{bottom:201.201750px;}
.yd2{bottom:201.589200px;}
.y77{bottom:201.589350px;}
.y96{bottom:201.589500px;}
.y105{bottom:201.589650px;}
.y107{bottom:201.589800px;}
.yc7{bottom:201.589950px;}
.y2a{bottom:204.608100px;}
.y10d{bottom:206.053500px;}
.yf7{bottom:217.631700px;}
.y76{bottom:217.631850px;}
.y95{bottom:217.632000px;}
.ya8{bottom:217.632150px;}
.yc6{bottom:217.632450px;}
.y177{bottom:219.201750px;}
.y29{bottom:219.908100px;}
.y101{bottom:221.050350px;}
.y156{bottom:224.063550px;}
.yfd{bottom:226.753500px;}
.y194{bottom:231.195150px;}
.yd1{bottom:233.674350px;}
.y75{bottom:233.674500px;}
.ya7{bottom:233.674650px;}
.yea{bottom:233.674800px;}
.yc5{bottom:233.675100px;}
.y19b{bottom:234.198450px;}
.y4b{bottom:235.035000px;}
.y28{bottom:235.208100px;}
.y100{bottom:241.750200px;}
.y155{bottom:242.063550px;}
.yb9{bottom:247.453650px;}
.y193{bottom:249.195150px;}
.ye2{bottom:249.716850px;}
.y74{bottom:249.717000px;}
.ya6{bottom:249.717150px;}
.y104{bottom:249.717300px;}
.y27{bottom:250.508100px;}
.y176{bottom:252.198450px;}
.y4a{bottom:255.735000px;}
.y106{bottom:256.746900px;}
.y154{bottom:260.063550px;}
.yff{bottom:262.450350px;}
.ye1{bottom:265.759350px;}
.yd0{bottom:265.759500px;}
.y73{bottom:265.759650px;}
.y10c{bottom:265.759800px;}
.y26{bottom:265.808100px;}
.y192{bottom:267.195150px;}
.yb8{bottom:268.153500px;}
.y175{bottom:270.198450px;}
.y49{bottom:276.435000px;}
.yc4{bottom:277.446900px;}
.y25{bottom:281.108100px;}
.ye0{bottom:281.801850px;}
.y10a{bottom:281.802000px;}
.y72{bottom:281.802150px;}
.yfe{bottom:283.150200px;}
.yb7{bottom:288.853650px;}
.ye9{bottom:292.443600px;}
.y153{bottom:293.060100px;}
.y24{bottom:296.408100px;}
.y48{bottom:297.135000px;}
.ydf{bottom:297.844350px;}
.y94{bottom:297.844500px;}
.y71{bottom:297.844650px;}
.ya5{bottom:298.146900px;}
.y191{bottom:300.191850px;}
.y174{bottom:303.195150px;}
.yee{bottom:303.850200px;}
.yb6{bottom:309.553500px;}
.y152{bottom:311.060100px;}
.y23{bottom:311.708100px;}
.ye8{bottom:313.143600px;}
.yde{bottom:313.886850px;}
.y93{bottom:313.887150px;}
.y70{bottom:313.887300px;}
.y47{bottom:317.835000px;}
.y190{bottom:318.191850px;}
.ya4{bottom:318.846900px;}
.y173{bottom:321.195150px;}
.yed{bottom:324.550350px;}
.y22{bottom:327.008100px;}
.y151{bottom:329.060100px;}
.ydd{bottom:329.929350px;}
.y109{bottom:329.929500px;}
.y92{bottom:329.929650px;}
.y6f{bottom:329.929800px;}
.yfc{bottom:330.253500px;}
.ye7{bottom:333.843600px;}
.y18f{bottom:336.191850px;}
.y46{bottom:338.535000px;}
.ya3{bottom:339.546900px;}
.y21{bottom:342.308100px;}
.yb5{bottom:345.250200px;}
.ydc{bottom:345.971850px;}
.y108{bottom:345.972000px;}
.y91{bottom:345.972150px;}
.y6e{bottom:345.972450px;}
.y150{bottom:347.060100px;}
.yfb{bottom:350.953650px;}
.y172{bottom:354.191850px;}
.ye6{bottom:354.543600px;}
.y20{bottom:357.608100px;}
.y45{bottom:359.235000px;}
.ya2{bottom:360.246900px;}
.ydb{bottom:362.014350px;}
.y6d{bottom:362.014950px;}
.yb4{bottom:365.950350px;}
.yfa{bottom:371.653500px;}
.y171{bottom:372.191850px;}
.y1f{bottom:372.908100px;}
.ycf{bottom:375.243600px;}
.yda{bottom:378.057000px;}
.y6c{bottom:378.057600px;}
.y44{bottom:379.935000px;}
.y14f{bottom:380.056800px;}
.ya1{bottom:380.946900px;}
.yb3{bottom:386.650200px;}
.y18e{bottom:387.188550px;}
.y1e{bottom:388.208100px;}
.yf9{bottom:392.353650px;}
.yd9{bottom:394.099500px;}
.y6b{bottom:394.099950px;}
.yce{bottom:395.943600px;}
.y14e{bottom:398.056800px;}
.y43{bottom:400.635000px;}
.ya0{bottom:401.646900px;}
.y170{bottom:405.188550px;}
.y90{bottom:407.350200px;}
.y6a{bottom:410.142450px;}
.y1a4{bottom:411.195150px;}
.y1d{bottom:412.012050px;}
.y122{bottom:412.228350px;}
.yf8{bottom:413.053500px;}
.y14d{bottom:416.056800px;}
.ycd{bottom:416.643600px;}
.y136{bottom:420.189000px;}
.y9f{bottom:422.346900px;}
.y16f{bottom:423.188550px;}
.y69{bottom:426.185100px;}
.y8f{bottom:428.050350px;}
.y121{bottom:430.228350px;}
.y11b{bottom:432.283500px;}
.y42{bottom:436.331700px;}
.y129{bottom:436.464600px;}
.ycc{bottom:437.343600px;}
.y135{bottom:438.189000px;}
.y16e{bottom:441.188550px;}
.y9e{bottom:443.046900px;}
.y1a3{bottom:444.191850px;}
.y12f{bottom:445.606350px;}
.y120{bottom:448.228350px;}
.y8e{bottom:448.750200px;}
.y14c{bottom:449.053500px;}
.y11a{bottom:450.283500px;}
.y128{bottom:454.464600px;}
.y18d{bottom:456.185100px;}
.ycb{bottom:458.043600px;}
.y16d{bottom:459.188550px;}
.y17{bottom:461.353500px;}
.y1a2{bottom:462.191850px;}
.y12e{bottom:463.606350px;}
.y9d{bottom:463.746900px;}
.y11f{bottom:466.228350px;}
.y14b{bottom:467.053500px;}
.y119{bottom:468.283500px;}
.y8d{bottom:469.450350px;}
.y18c{bottom:474.185100px;}
.y16{bottom:477.553500px;}
.y68{bottom:478.743600px;}
.y1a1{bottom:480.191850px;}
.y12d{bottom:481.606350px;}
.y126{bottom:483.661350px;}
.y11e{bottom:484.228350px;}
.y9c{bottom:484.446900px;}
.y14a{bottom:485.053500px;}
.y132{bottom:487.913400px;}
.y8c{bottom:490.150200px;}
.y16c{bottom:492.185100px;}
.y15{bottom:493.753500px;}
.y67{bottom:499.443600px;}
.y12c{bottom:499.606350px;}
.y9b{bottom:505.146900px;}
.y125{bottom:505.913400px;}
.y18b{bottom:507.181800px;}
.y16b{bottom:510.185100px;}
.yb2{bottom:510.850200px;}
.y14{bottom:510.853500px;}
.y1a0{bottom:513.188550px;}
.yf6{bottom:514.440300px;}
.y149{bottom:518.050200px;}
.y66{bottom:520.143750px;}
.y118{bottom:521.213400px;}
.y18a{bottom:525.181800px;}
.y8b{bottom:525.846900px;}
.y16a{bottom:528.185250px;}
.y116{bottom:531.168600px;}
.yb1{bottom:531.550200px;}
.yf5{bottom:535.140300px;}
.y148{bottom:536.050200px;}
.y65{bottom:540.843600px;}
.y117{bottom:541.913400px;}
.y19a{bottom:543.181800px;}
.y19f{bottom:546.185250px;}
.y8a{bottom:546.546900px;}
.y13{bottom:549.667950px;}
.yb0{bottom:552.250200px;}
.y147{bottom:554.050200px;}
.yf4{bottom:555.840300px;}
.y189{bottom:558.178500px;}
.y127{bottom:559.913400px;}
.y169{bottom:561.181800px;}
.y64{bottom:561.543600px;}
.y19e{bottom:564.185250px;}
.y12{bottom:565.867950px;}
.y89{bottom:567.246900px;}
.yaf{bottom:572.950350px;}
.y188{bottom:576.178500px;}
.yf3{bottom:576.540300px;}
.y168{bottom:579.181800px;}
.y11{bottom:582.067950px;}
.y63{bottom:582.243600px;}
.y146{bottom:587.046900px;}
.y88{bottom:587.947050px;}
.yae{bottom:593.650200px;}
.y187{bottom:594.178500px;}
.y134{bottom:595.913400px;}
.y167{bottom:597.181800px;}
.yf2{bottom:597.240300px;}
.y10{bottom:598.267950px;}
.y62{bottom:602.943600px;}
.y145{bottom:605.046900px;}
.y87{bottom:608.646900px;}
.y186{bottom:612.178500px;}
.y133{bottom:613.913400px;}
.yad{bottom:614.350200px;}
.y166{bottom:615.181800px;}
.yf1{bottom:617.940300px;}
.y144{bottom:623.046900px;}
.y61{bottom:623.643750px;}
.y41{bottom:624.087000px;}
.y86{bottom:629.346900px;}
.y165{bottom:633.181800px;}
.yac{bottom:635.050200px;}
.yf0{bottom:638.640300px;}
.y40{bottom:639.387150px;}
.y60{bottom:644.343600px;}
.y185{bottom:645.175200px;}
.y19d{bottom:648.178500px;}
.y85{bottom:650.046900px;}
.y143{bottom:656.043600px;}
.yef{bottom:659.340300px;}
.y1c{bottom:660.486600px;}
.y184{bottom:663.175200px;}
.y5f{bottom:665.043600px;}
.y164{bottom:666.178500px;}
.y84{bottom:670.746900px;}
.y3f{bottom:671.694900px;}
.y142{bottom:674.043600px;}
.y1b{bottom:674.886600px;}
.yca{bottom:680.040300px;}
.y183{bottom:681.175200px;}
.y163{bottom:684.178500px;}
.y9a{bottom:685.743600px;}
.y3e{bottom:686.994900px;}
.y1a{bottom:689.286600px;}
.y83{bottom:691.447050px;}
.y141{bottom:692.043600px;}
.y182{bottom:699.175200px;}
.y5e{bottom:700.740300px;}
.y162{bottom:702.178500px;}
.y3d{bottom:702.295050px;}
.y19{bottom:703.686600px;}
.yc3{bottom:706.443600px;}
.y140{bottom:710.043600px;}
.y82{bottom:712.146900px;}
.y19c{bottom:717.175350px;}
.y3c{bottom:717.594900px;}
.y18{bottom:718.086600px;}
.y5d{bottom:721.440300px;}
.yc2{bottom:727.143750px;}
.y13f{bottom:728.043600px;}
.y181{bottom:732.171900px;}
.y81{bottom:732.846900px;}
.y3b{bottom:732.894900px;}
.y161{bottom:735.175350px;}
.y5c{bottom:742.140300px;}
.y13e{bottom:746.043600px;}
.yc1{bottom:747.843600px;}
.y3a{bottom:748.194900px;}
.y180{bottom:750.171900px;}
.y160{bottom:753.175350px;}
.y80{bottom:753.546900px;}
.yf{bottom:761.491650px;}
.y5b{bottom:762.840300px;}
.y39{bottom:763.494900px;}
.y13d{bottom:764.043600px;}
.y17f{bottom:768.171900px;}
.yc0{bottom:768.543600px;}
.y10b{bottom:774.247050px;}
.y38{bottom:778.795050px;}
.y13c{bottom:782.043600px;}
.y5a{bottom:783.540300px;}
.ye{bottom:783.721650px;}
.y15f{bottom:786.171900px;}
.y7f{bottom:789.243600px;}
.y37{bottom:794.095050px;}
.y6{bottom:795.573750px;}
.y115{bottom:798.165300px;}
.y13b{bottom:800.043600px;}
.y17e{bottom:801.168600px;}
.y15e{bottom:804.171900px;}
.y59{bottom:804.240300px;}
.yd{bottom:805.951650px;}
.y36{bottom:809.394900px;}
.y7e{bottom:809.943600px;}
.y5{bottom:810.123750px;}
.y114{bottom:816.165300px;}
.y13a{bottom:818.043600px;}
.y17d{bottom:819.168600px;}
.y4{bottom:824.673750px;}
.y35{bottom:824.694900px;}
.y58{bottom:824.940300px;}
.yc{bottom:828.181650px;}
.y7d{bottom:830.643750px;}
.y113{bottom:834.165300px;}
.y139{bottom:836.043600px;}
.y15d{bottom:837.168600px;}
.y3{bottom:839.223750px;}
.y34{bottom:839.994900px;}
.y57{bottom:845.640450px;}
.yb{bottom:850.411650px;}
.y7c{bottom:851.343600px;}
.y112{bottom:852.165300px;}
.y2{bottom:853.773750px;}
.y138{bottom:854.043600px;}
.y15c{bottom:855.168600px;}
.y33{bottom:855.295050px;}
.y56{bottom:866.340300px;}
.y1{bottom:868.323750px;}
.y111{bottom:870.165300px;}
.ya{bottom:872.641650px;}
.y55{bottom:887.040300px;}
.y32{bottom:887.602800px;}
.y110{bottom:888.165300px;}
.y51{bottom:918.614850px;}
.y54{bottom:930.436950px;}
.y30{bottom:930.651600px;}
.y8{bottom:930.685050px;}
.y53{bottom:942.136950px;}
.y52{bottom:953.836950px;}
.y9{bottom:1012.876350px;}
.h3{height:26.771760px;}
.hc{height:36.270000px;}
.h2{height:39.562200px;}
.h5{height:39.785400px;}
.hd{height:44.064000px;}
.h4{height:44.640000px;}
.h9{height:46.818000px;}
.ha{height:47.430000px;}
.hb{height:49.572000px;}
.h8{height:50.220000px;}
.h7{height:52.326000px;}
.h6{height:68.023800px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:667.500000px;}
.w0{width:667.558500px;}
.x0{left:0.000000px;}
.x12{left:85.039350px;}
.x1a{left:87.057750px;}
.x30{left:88.683450px;}
.x2e{left:91.875750px;}
.x3{left:93.597300px;}
.x1d{left:95.283600px;}
.x1b{left:97.083600px;}
.x2{left:98.935950px;}
.x29{left:100.047600px;}
.x1{left:102.764700px;}
.x22{left:104.439450px;}
.x13{left:106.299150px;}
.x19{left:107.733450px;}
.x5{left:112.134000px;}
.x2f{left:114.759750px;}
.x31{left:116.379750px;}
.x6{left:118.105500px;}
.x4{left:120.806700px;}
.x15{left:129.834300px;}
.x16{left:136.542150px;}
.x1c{left:141.759300px;}
.x2a{left:145.995300px;}
.x36{left:148.818900px;}
.x23{left:153.927150px;}
.x18{left:170.089350px;}
.x34{left:177.438450px;}
.x35{left:182.280150px;}
.xa{left:212.598450px;}
.xc{left:215.417400px;}
.x7{left:231.261900px;}
.x11{left:233.858250px;}
.xd{left:292.595100px;}
.x14{left:323.796750px;}
.x1e{left:341.457150px;}
.x2b{left:343.503000px;}
.x27{left:345.777000px;}
.x25{left:347.330550px;}
.x24{left:350.918700px;}
.x20{left:354.962700px;}
.x1f{left:358.256850px;}
.x32{left:359.504400px;}
.x26{left:363.074700px;}
.x10{left:365.522250px;}
.x2d{left:370.940850px;}
.x21{left:375.386700px;}
.x2c{left:379.304700px;}
.x17{left:389.240100px;}
.xe{left:406.399950px;}
.x33{left:411.128250px;}
.xb{left:418.417050px;}
.xf{left:434.263350px;}
.x28{left:443.192100px;}
.x9{left:486.006300px;}
.x37{left:563.823450px;}
.x8{left:569.175750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.lsf{letter-spacing:-5.133600pt;}
.lsc{letter-spacing:-3.777840pt;}
.ls18{letter-spacing:-2.346667pt;}
.ls14{letter-spacing:-2.281600pt;}
.lsa{letter-spacing:-2.091467pt;}
.ls7{letter-spacing:-1.706667pt;}
.ls13{letter-spacing:-1.679040pt;}
.ls9{letter-spacing:-1.539120pt;}
.ls17{letter-spacing:-1.521067pt;}
.ls11{letter-spacing:-1.330933pt;}
.ls16{letter-spacing:-1.119360pt;}
.lse{letter-spacing:-0.979440pt;}
.ls3{letter-spacing:-0.906667pt;}
.ls8{letter-spacing:-0.680000pt;}
.ls10{letter-spacing:-0.570400pt;}
.ls2{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.419760pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000181pt;}
.ls15{letter-spacing:0.630400pt;}
.ls0{letter-spacing:0.658667pt;}
.ls6{letter-spacing:8.512000pt;}
.ls5{letter-spacing:12.159467pt;}
.lsb{letter-spacing:24.063787pt;}
.ls4{letter-spacing:34.510400pt;}
.ws12{word-spacing:-16.814933pt;}
.ws1{word-spacing:-13.344000pt;}
.ws13{word-spacing:-12.602667pt;}
.ws2f{word-spacing:-11.861333pt;}
.ws15{word-spacing:-10.571413pt;}
.ws0{word-spacing:-10.512107pt;}
.ws58{word-spacing:-10.001013pt;}
.ws30{word-spacing:-9.637333pt;}
.ws161{word-spacing:-9.514667pt;}
.ws59{word-spacing:-9.240480pt;}
.ws11c{word-spacing:-9.050347pt;}
.ws33{word-spacing:-8.479947pt;}
.ws77{word-spacing:-8.289813pt;}
.ws14{word-spacing:-7.779552pt;}
.ws148{word-spacing:-7.680000pt;}
.ws55{word-spacing:-7.359792pt;}
.ws45{word-spacing:-6.844800pt;}
.ws56{word-spacing:-6.800112pt;}
.ws31{word-spacing:-6.746133pt;}
.ws11b{word-spacing:-6.660192pt;}
.ws32{word-spacing:-6.240432pt;}
.ws76{word-spacing:-6.100512pt;}
.ws57{word-spacing:-5.437813pt;}
.ws164{word-spacing:-4.736000pt;}
.ws54{word-spacing:-4.001712pt;}
.ws170{word-spacing:-3.200000pt;}
.ws196{word-spacing:-3.157333pt;}
.ws12c{word-spacing:-3.042133pt;}
.wsfe{word-spacing:-3.004107pt;}
.ws129{word-spacing:-2.966080pt;}
.ws150{word-spacing:-2.858667pt;}
.ws127{word-spacing:-2.832000pt;}
.ws19{word-spacing:-2.810667pt;}
.ws185{word-spacing:-2.730667pt;}
.ws107{word-spacing:-2.640000pt;}
.ws91{word-spacing:-2.592000pt;}
.wsd5{word-spacing:-2.547787pt;}
.ws10e{word-spacing:-2.544000pt;}
.wsfa{word-spacing:-2.496000pt;}
.wsfb{word-spacing:-2.448000pt;}
.wse5{word-spacing:-2.400000pt;}
.ws13b{word-spacing:-2.395680pt;}
.wse0{word-spacing:-2.352000pt;}
.ws131{word-spacing:-2.304000pt;}
.ws136{word-spacing:-2.281600pt;}
.ws95{word-spacing:-2.256000pt;}
.ws166{word-spacing:-2.218667pt;}
.wsef{word-spacing:-2.208000pt;}
.ws186{word-spacing:-2.176000pt;}
.ws83{word-spacing:-2.160000pt;}
.ws147{word-spacing:-2.133333pt;}
.ws126{word-spacing:-2.112000pt;}
.ws5c{word-spacing:-2.064000pt;}
.ws9f{word-spacing:-2.016000pt;}
.ws14f{word-spacing:-2.005333pt;}
.ws132{word-spacing:-1.968000pt;}
.wsb7{word-spacing:-1.920000pt;}
.ws8b{word-spacing:-1.901333pt;}
.ws5a{word-spacing:-1.872000pt;}
.wsee{word-spacing:-1.824000pt;}
.ws169{word-spacing:-1.792000pt;}
.ws87{word-spacing:-1.776000pt;}
.wsb1{word-spacing:-1.728000pt;}
.ws12e{word-spacing:-1.711200pt;}
.ws3f{word-spacing:-1.680000pt;}
.ws102{word-spacing:-1.673173pt;}
.wsb0{word-spacing:-1.632000pt;}
.ws187{word-spacing:-1.621333pt;}
.wsde{word-spacing:-1.584000pt;}
.ws14b{word-spacing:-1.578667pt;}
.ws69{word-spacing:-1.536000pt;}
.ws167{word-spacing:-1.493333pt;}
.ws64{word-spacing:-1.488000pt;}
.ws191{word-spacing:-1.408000pt;}
.wsc1{word-spacing:-1.406987pt;}
.ws106{word-spacing:-1.392000pt;}
.ws39{word-spacing:-1.344000pt;}
.ws38{word-spacing:-1.296000pt;}
.ws1d{word-spacing:-1.269333pt;}
.wse3{word-spacing:-1.248000pt;}
.ws171{word-spacing:-1.237333pt;}
.wsab{word-spacing:-1.200000pt;}
.ws12d{word-spacing:-1.178827pt;}
.ws63{word-spacing:-1.152000pt;}
.ws1c{word-spacing:-1.133333pt;}
.ws112{word-spacing:-1.104000pt;}
.ws20{word-spacing:-1.088000pt;}
.ws125{word-spacing:-1.064747pt;}
.ws80{word-spacing:-1.056000pt;}
.ws8e{word-spacing:-1.026720pt;}
.ws99{word-spacing:-1.008000pt;}
.ws9d{word-spacing:-0.988693pt;}
.ws17c{word-spacing:-0.981333pt;}
.wse4{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.952000pt;}
.ws101{word-spacing:-0.912640pt;}
.wsdb{word-spacing:-0.912000pt;}
.ws15b{word-spacing:-0.896000pt;}
.ws28{word-spacing:-0.864000pt;}
.ws41{word-spacing:-0.816000pt;}
.ws48{word-spacing:-0.798560pt;}
.ws79{word-spacing:-0.768000pt;}
.ws180{word-spacing:-0.725333pt;}
.wsf4{word-spacing:-0.720000pt;}
.ws73{word-spacing:-0.684480pt;}
.ws98{word-spacing:-0.672000pt;}
.wsea{word-spacing:-0.624000pt;}
.ws176{word-spacing:-0.597333pt;}
.ws17{word-spacing:-0.589333pt;}
.wsf2{word-spacing:-0.576000pt;}
.ws16d{word-spacing:-0.554667pt;}
.wsb9{word-spacing:-0.528000pt;}
.ws165{word-spacing:-0.469333pt;}
.ws6e{word-spacing:-0.456320pt;}
.wsb{word-spacing:-0.453333pt;}
.ws9a{word-spacing:-0.432000pt;}
.ws175{word-spacing:-0.426667pt;}
.wsd3{word-spacing:-0.418293pt;}
.wsa4{word-spacing:-0.384000pt;}
.wsce{word-spacing:-0.342240pt;}
.wsb8{word-spacing:-0.336000pt;}
.ws10a{word-spacing:-0.304213pt;}
.ws3a{word-spacing:-0.288000pt;}
.ws3e{word-spacing:-0.240000pt;}
.ws9c{word-spacing:-0.228160pt;}
.ws16b{word-spacing:-0.213333pt;}
.ws5e{word-spacing:-0.192000pt;}
.ws17b{word-spacing:-0.170667pt;}
.ws133{word-spacing:-0.144000pt;}
.ws97{word-spacing:-0.096000pt;}
.ws61{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws183{word-spacing:0.042667pt;}
.ws3d{word-spacing:0.048000pt;}
.ws14a{word-spacing:0.085333pt;}
.wsa7{word-spacing:0.144000pt;}
.wsc{word-spacing:0.181333pt;}
.ws7f{word-spacing:0.192000pt;}
.ws23{word-spacing:0.240000pt;}
.wsc9{word-spacing:0.288000pt;}
.ws156{word-spacing:0.298667pt;}
.ws1e{word-spacing:0.317333pt;}
.ws9b{word-spacing:0.336000pt;}
.wsc7{word-spacing:0.384000pt;}
.ws118{word-spacing:0.418293pt;}
.ws146{word-spacing:0.432000pt;}
.wsac{word-spacing:0.456320pt;}
.ws195{word-spacing:0.469333pt;}
.ws43{word-spacing:0.480000pt;}
.ws17f{word-spacing:0.512000pt;}
.ws94{word-spacing:0.528000pt;}
.wsf0{word-spacing:0.532373pt;}
.ws134{word-spacing:0.576000pt;}
.ws7{word-spacing:0.589333pt;}
.ws92{word-spacing:0.624000pt;}
.ws13c{word-spacing:0.646453pt;}
.wsa3{word-spacing:0.672000pt;}
.ws181{word-spacing:0.682667pt;}
.wsa9{word-spacing:0.720000pt;}
.ws8c{word-spacing:0.722507pt;}
.ws9e{word-spacing:0.768000pt;}
.wse{word-spacing:0.816000pt;}
.ws17a{word-spacing:0.853333pt;}
.wsdc{word-spacing:0.864000pt;}
.ws8f{word-spacing:0.874613pt;}
.ws5b{word-spacing:0.912000pt;}
.ws4b{word-spacing:0.912640pt;}
.ws108{word-spacing:0.960000pt;}
.ws18d{word-spacing:0.981333pt;}
.wscd{word-spacing:0.988693pt;}
.ws89{word-spacing:1.008000pt;}
.wsc8{word-spacing:1.056000pt;}
.ws49{word-spacing:1.064747pt;}
.ws18a{word-spacing:1.066667pt;}
.wsf1{word-spacing:1.102773pt;}
.ws65{word-spacing:1.104000pt;}
.wsff{word-spacing:1.140800pt;}
.ws84{word-spacing:1.152000pt;}
.ws62{word-spacing:1.200000pt;}
.ws11d{word-spacing:1.296000pt;}
.ws96{word-spacing:1.344000pt;}
.ws4{word-spacing:1.360000pt;}
.ws6a{word-spacing:1.392000pt;}
.ws162{word-spacing:1.408000pt;}
.wsfd{word-spacing:1.440000pt;}
.ws2e{word-spacing:1.445013pt;}
.ws82{word-spacing:1.488000pt;}
.ws44{word-spacing:1.536000pt;}
.ws8a{word-spacing:1.559093pt;}
.wsa8{word-spacing:1.584000pt;}
.ws3c{word-spacing:1.632000pt;}
.ws193{word-spacing:1.664000pt;}
.ws90{word-spacing:1.673173pt;}
.ws120{word-spacing:1.680000pt;}
.ws16{word-spacing:1.706667pt;}
.ws17e{word-spacing:1.749333pt;}
.wsdf{word-spacing:1.776000pt;}
.ws182{word-spacing:1.792000pt;}
.wsc3{word-spacing:1.824000pt;}
.ws178{word-spacing:1.834667pt;}
.wscb{word-spacing:1.872000pt;}
.ws113{word-spacing:1.920000pt;}
.ws13e{word-spacing:1.968000pt;}
.ws6{word-spacing:1.994667pt;}
.ws153{word-spacing:2.005333pt;}
.ws86{word-spacing:2.016000pt;}
.wsd{word-spacing:2.040000pt;}
.ws17d{word-spacing:2.048000pt;}
.ws46{word-spacing:2.053440pt;}
.ws110{word-spacing:2.064000pt;}
.ws4c{word-spacing:2.091467pt;}
.wsed{word-spacing:2.112000pt;}
.ws2b{word-spacing:2.160000pt;}
.wse8{word-spacing:2.167520pt;}
.ws16a{word-spacing:2.176000pt;}
.ws7a{word-spacing:2.208000pt;}
.wsf6{word-spacing:2.256000pt;}
.wsa0{word-spacing:2.304000pt;}
.ws149{word-spacing:2.346667pt;}
.ws85{word-spacing:2.352000pt;}
.wsa{word-spacing:2.357333pt;}
.ws2d{word-spacing:2.357653pt;}
.ws7c{word-spacing:2.400000pt;}
.wsb2{word-spacing:2.448000pt;}
.ws18b{word-spacing:2.474667pt;}
.ws3{word-spacing:2.493333pt;}
.ws60{word-spacing:2.496000pt;}
.ws184{word-spacing:2.517333pt;}
.ws163{word-spacing:2.560000pt;}
.ws88{word-spacing:2.592000pt;}
.ws189{word-spacing:2.602667pt;}
.wsd6{word-spacing:2.623840pt;}
.ws5f{word-spacing:2.640000pt;}
.ws157{word-spacing:2.645333pt;}
.ws121{word-spacing:2.688000pt;}
.ws139{word-spacing:2.699893pt;}
.ws177{word-spacing:2.730667pt;}
.wsbe{word-spacing:2.737920pt;}
.wsc5{word-spacing:2.784000pt;}
.wsd1{word-spacing:2.813973pt;}
.ws66{word-spacing:2.832000pt;}
.ws3b{word-spacing:2.880000pt;}
.ws37{word-spacing:2.928000pt;}
.ws71{word-spacing:2.928053pt;}
.ws173{word-spacing:2.944000pt;}
.ws137{word-spacing:2.976000pt;}
.ws152{word-spacing:2.986667pt;}
.wse7{word-spacing:3.024000pt;}
.wsf7{word-spacing:3.072000pt;}
.wsd4{word-spacing:3.080160pt;}
.ws172{word-spacing:3.114667pt;}
.wsa6{word-spacing:3.120000pt;}
.wsec{word-spacing:3.168000pt;}
.ws197{word-spacing:3.200000pt;}
.ws26{word-spacing:3.216000pt;}
.ws174{word-spacing:3.242667pt;}
.wsb6{word-spacing:3.264000pt;}
.ws198{word-spacing:3.285333pt;}
.wsfc{word-spacing:3.312000pt;}
.ws13a{word-spacing:3.346347pt;}
.wscc{word-spacing:3.360000pt;}
.wsda{word-spacing:3.384373pt;}
.ws93{word-spacing:3.408000pt;}
.ws188{word-spacing:3.413333pt;}
.wsf9{word-spacing:3.456000pt;}
.wsbc{word-spacing:3.460427pt;}
.ws103{word-spacing:3.498453pt;}
.ws27{word-spacing:3.504000pt;}
.ws12f{word-spacing:3.536480pt;}
.ws25{word-spacing:3.552000pt;}
.ws7b{word-spacing:3.600000pt;}
.wse9{word-spacing:3.688587pt;}
.wsf8{word-spacing:3.696000pt;}
.ws8d{word-spacing:3.726613pt;}
.wse6{word-spacing:3.744000pt;}
.ws155{word-spacing:3.754667pt;}
.wsb4{word-spacing:3.792000pt;}
.ws15a{word-spacing:3.797333pt;}
.ws70{word-spacing:3.802667pt;}
.wseb{word-spacing:3.840000pt;}
.ws16e{word-spacing:3.882667pt;}
.ws67{word-spacing:3.888000pt;}
.wsa1{word-spacing:3.936000pt;}
.ws128{word-spacing:3.954773pt;}
.ws7e{word-spacing:3.984000pt;}
.ws36{word-spacing:4.032000pt;}
.wsf3{word-spacing:4.080000pt;}
.ws194{word-spacing:4.181333pt;}
.wsbf{word-spacing:4.220960pt;}
.wsf5{word-spacing:4.224000pt;}
.ws18c{word-spacing:4.266667pt;}
.ws5d{word-spacing:4.272000pt;}
.wsc4{word-spacing:4.320000pt;}
.ws18f{word-spacing:4.352000pt;}
.ws114{word-spacing:4.368000pt;}
.ws78{word-spacing:4.416000pt;}
.wse1{word-spacing:4.464000pt;}
.ws160{word-spacing:4.480000pt;}
.ws34{word-spacing:4.560000pt;}
.wsd0{word-spacing:4.563200pt;}
.ws4f{word-spacing:4.601227pt;}
.ws122{word-spacing:4.608000pt;}
.wsba{word-spacing:4.639253pt;}
.ws11f{word-spacing:4.656000pt;}
.ws11a{word-spacing:4.677280pt;}
.ws10d{word-spacing:4.704000pt;}
.ws179{word-spacing:4.736000pt;}
.ws81{word-spacing:4.752000pt;}
.ws11{word-spacing:4.791360pt;}
.ws29{word-spacing:4.800000pt;}
.ws138{word-spacing:4.848000pt;}
.ws42{word-spacing:4.896000pt;}
.ws100{word-spacing:4.905440pt;}
.ws47{word-spacing:4.943467pt;}
.wsa5{word-spacing:4.944000pt;}
.ws109{word-spacing:5.040000pt;}
.ws15d{word-spacing:5.120000pt;}
.ws10c{word-spacing:5.136000pt;}
.ws6f{word-spacing:5.171627pt;}
.ws24{word-spacing:5.184000pt;}
.ws14c{word-spacing:5.205333pt;}
.wsbd{word-spacing:5.209653pt;}
.wsaa{word-spacing:5.232000pt;}
.ws142{word-spacing:5.328000pt;}
.ws9{word-spacing:5.394667pt;}
.ws40{word-spacing:5.424000pt;}
.ws10f{word-spacing:5.520000pt;}
.wsb3{word-spacing:5.616000pt;}
.ws11e{word-spacing:5.664000pt;}
.ws12b{word-spacing:5.665973pt;}
.ws50{word-spacing:5.742027pt;}
.ws2c{word-spacing:5.760000pt;}
.ws1f{word-spacing:5.802667pt;}
.wsae{word-spacing:5.808000pt;}
.wsaf{word-spacing:5.856000pt;}
.ws75{word-spacing:5.856107pt;}
.ws151{word-spacing:5.888000pt;}
.ws144{word-spacing:5.904000pt;}
.ws15e{word-spacing:5.930667pt;}
.ws13d{word-spacing:5.970187pt;}
.wsb5{word-spacing:6.000000pt;}
.ws68{word-spacing:6.048000pt;}
.ws104{word-spacing:6.084267pt;}
.ws21{word-spacing:6.120000pt;}
.ws130{word-spacing:6.192000pt;}
.ws199{word-spacing:6.229333pt;}
.ws4a{word-spacing:6.312427pt;}
.ws13f{word-spacing:6.336000pt;}
.ws12a{word-spacing:6.350453pt;}
.ws141{word-spacing:6.384000pt;}
.wsd2{word-spacing:6.464533pt;}
.wsbb{word-spacing:6.540587pt;}
.ws140{word-spacing:6.576000pt;}
.ws123{word-spacing:6.624000pt;}
.ws145{word-spacing:6.720000pt;}
.ws7d{word-spacing:6.768000pt;}
.ws14e{word-spacing:6.784000pt;}
.ws115{word-spacing:6.816000pt;}
.wscf{word-spacing:6.844800pt;}
.ws8{word-spacing:6.845333pt;}
.ws35{word-spacing:6.864000pt;}
.ws18e{word-spacing:6.912000pt;}
.ws135{word-spacing:6.960000pt;}
.wse2{word-spacing:7.008000pt;}
.wsc2{word-spacing:7.056000pt;}
.wsca{word-spacing:7.104000pt;}
.wsf{word-spacing:7.162667pt;}
.ws10b{word-spacing:7.200000pt;}
.ws192{word-spacing:7.210667pt;}
.ws6c{word-spacing:7.225067pt;}
.ws116{word-spacing:7.296000pt;}
.ws51{word-spacing:7.339147pt;}
.ws10{word-spacing:7.377173pt;}
.ws105{word-spacing:7.440000pt;}
.wsdd{word-spacing:7.488000pt;}
.ws117{word-spacing:7.536000pt;}
.ws2a{word-spacing:7.584000pt;}
.wsd8{word-spacing:7.605333pt;}
.wsa2{word-spacing:7.632000pt;}
.ws53{word-spacing:7.757440pt;}
.ws16f{word-spacing:7.765333pt;}
.ws143{word-spacing:7.824000pt;}
.ws18{word-spacing:7.842667pt;}
.ws154{word-spacing:7.850667pt;}
.wsd7{word-spacing:7.909547pt;}
.ws111{word-spacing:7.968000pt;}
.ws16c{word-spacing:8.021333pt;}
.ws6d{word-spacing:8.403893pt;}
.ws4e{word-spacing:8.441920pt;}
.ws15f{word-spacing:8.832000pt;}
.ws119{word-spacing:9.050347pt;}
.ws15c{word-spacing:9.344000pt;}
.wsc6{word-spacing:9.600000pt;}
.ws52{word-spacing:9.620747pt;}
.ws6b{word-spacing:10.229173pt;}
.ws14d{word-spacing:10.410667pt;}
.ws168{word-spacing:10.922667pt;}
.ws4d{word-spacing:11.255893pt;}
.ws74{word-spacing:11.293920pt;}
.wsd9{word-spacing:11.331947pt;}
.ws190{word-spacing:12.117333pt;}
.ws1b{word-spacing:12.285333pt;}
.ws1a{word-spacing:12.602667pt;}
.ws72{word-spacing:13.461440pt;}
.ws22{word-spacing:14.461333pt;}
.ws159{word-spacing:15.274667pt;}
.wsc0{word-spacing:16.313440pt;}
.ws158{word-spacing:17.194667pt;}
.wsad{word-spacing:22.739947pt;}
.ws124{word-spacing:24.261013pt;}
._d{margin-left:-121.962133pt;}
._2c{margin-left:-119.614933pt;}
._2a{margin-left:-25.728533pt;}
._29{margin-left:-23.901067pt;}
._24{margin-left:-22.747947pt;}
._27{margin-left:-19.175680pt;}
._2d{margin-left:-17.733653pt;}
._17{margin-left:-16.077813pt;}
._13{margin-left:-14.915451pt;}
._b{margin-left:-10.186880pt;}
._7{margin-left:-8.380480pt;}
._4{margin-left:-6.586667pt;}
._3{margin-left:-5.398880pt;}
._1{margin-left:-4.348533pt;}
._5{margin-left:-3.386347pt;}
._0{margin-left:-2.268800pt;}
._2{margin-left:-1.224320pt;}
._6{width:1.330347pt;}
._21{width:2.281813pt;}
._19{width:3.434805pt;}
._1a{width:5.134080pt;}
._10{width:6.840997pt;}
._2e{width:8.288640pt;}
._a{width:9.307733pt;}
._1e{width:12.586773pt;}
._28{width:13.689813pt;}
._26{width:14.830613pt;}
._18{width:15.972267pt;}
._1b{width:17.644373pt;}
._1c{width:18.709067pt;}
._25{width:20.002240pt;}
._22{width:21.066987pt;}
._20{width:22.322133pt;}
._1d{width:23.880693pt;}
._e{width:25.275520pt;}
._2b{width:28.394848pt;}
._23{width:29.584960pt;}
._1f{width:30.726027pt;}
._14{width:32.626880pt;}
._15{width:35.440853pt;}
._8{width:36.505600pt;}
._12{width:37.570347pt;}
._16{width:39.281547pt;}
._c{width:41.525120pt;}
._11{width:42.818027pt;}
._f{width:50.727573pt;}
._9{width:52.877120pt;}
.fsb{font-size:24.266667pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:29.866667pt;}
.fs1{font-size:32.960000pt;}
.fsa{font-size:34.666667pt;}
.fs0{font-size:37.813333pt;}
.fs3{font-size:38.026667pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:65.866667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:41.367867pt;}
.y31{bottom:42.241600pt;}
.y2f{bottom:72.711467pt;}
.y124{bottom:78.694800pt;}
.yd8{bottom:79.370133pt;}
.y50{bottom:79.370267pt;}
.y2e{bottom:86.971467pt;}
.y17c{bottom:88.185200pt;}
.y131{bottom:88.314933pt;}
.y15b{bottom:92.506800pt;}
.yd7{bottom:93.630133pt;}
.y4f{bottom:93.630267pt;}
.ybf{bottom:93.630400pt;}
.y11d{bottom:96.521600pt;}
.y123{bottom:97.094800pt;}
.y199{bottom:98.846000pt;}
.y2d{bottom:101.231467pt;}
.y130{bottom:104.314933pt;}
.yd6{bottom:107.890133pt;}
.y4e{bottom:107.890267pt;}
.yab{bottom:107.890400pt;}
.ybe{bottom:107.890533pt;}
.y12b{bottom:108.409467pt;}
.y15a{bottom:108.506800pt;}
.y198{bottom:114.846000pt;}
.y11c{bottom:114.921600pt;}
.y17b{bottom:117.515600pt;}
.ye5{bottom:122.150133pt;}
.yd5{bottom:122.150267pt;}
.y7b{bottom:122.150400pt;}
.yaa{bottom:122.150533pt;}
.ybd{bottom:122.150667pt;}
.y12a{bottom:128.188933pt;}
.y197{bottom:130.846000pt;}
.y17a{bottom:133.515600pt;}
.ye4{bottom:136.410133pt;}
.yd4{bottom:136.410267pt;}
.y7a{bottom:136.410400pt;}
.y99{bottom:136.410533pt;}
.ya9{bottom:136.410667pt;}
.ybc{bottom:136.410800pt;}
.y159{bottom:137.837200pt;}
.y2c{bottom:139.555733pt;}
.y10f{bottom:146.358667pt;}
.y137{bottom:148.921733pt;}
.yd3{bottom:150.670267pt;}
.y79{bottom:150.670400pt;}
.yec{bottom:150.670533pt;}
.y98{bottom:150.670667pt;}
.ybb{bottom:150.670800pt;}
.yc9{bottom:150.670933pt;}
.y2b{bottom:153.155733pt;}
.y158{bottom:153.837200pt;}
.y4d{bottom:158.789600pt;}
.y103{bottom:159.689067pt;}
.y196{bottom:160.176400pt;}
.y179{bottom:162.846000pt;}
.y10e{bottom:164.758800pt;}
.ye3{bottom:164.930267pt;}
.y78{bottom:164.930400pt;}
.yeb{bottom:164.930533pt;}
.y97{bottom:164.930667pt;}
.yba{bottom:164.930800pt;}
.yc8{bottom:164.931067pt;}
.y157{bottom:169.837200pt;}
.y195{bottom:176.176400pt;}
.y4c{bottom:177.189600pt;}
.y102{bottom:178.089067pt;}
.y178{bottom:178.846000pt;}
.yd2{bottom:179.190400pt;}
.y77{bottom:179.190533pt;}
.y96{bottom:179.190667pt;}
.y105{bottom:179.190800pt;}
.y107{bottom:179.190933pt;}
.yc7{bottom:179.191067pt;}
.y2a{bottom:181.873867pt;}
.y10d{bottom:183.158667pt;}
.yf7{bottom:193.450400pt;}
.y76{bottom:193.450533pt;}
.y95{bottom:193.450667pt;}
.ya8{bottom:193.450800pt;}
.yc6{bottom:193.451067pt;}
.y177{bottom:194.846000pt;}
.y29{bottom:195.473867pt;}
.y101{bottom:196.489200pt;}
.y156{bottom:199.167600pt;}
.yfd{bottom:201.558667pt;}
.y194{bottom:205.506800pt;}
.yd1{bottom:207.710533pt;}
.y75{bottom:207.710667pt;}
.ya7{bottom:207.710800pt;}
.yea{bottom:207.710933pt;}
.yc5{bottom:207.711200pt;}
.y19b{bottom:208.176400pt;}
.y4b{bottom:208.920000pt;}
.y28{bottom:209.073867pt;}
.y100{bottom:214.889067pt;}
.y155{bottom:215.167600pt;}
.yb9{bottom:219.958800pt;}
.y193{bottom:221.506800pt;}
.ye2{bottom:221.970533pt;}
.y74{bottom:221.970667pt;}
.ya6{bottom:221.970800pt;}
.y104{bottom:221.970933pt;}
.y27{bottom:222.673867pt;}
.y176{bottom:224.176400pt;}
.y4a{bottom:227.320000pt;}
.y106{bottom:228.219467pt;}
.y154{bottom:231.167600pt;}
.yff{bottom:233.289200pt;}
.ye1{bottom:236.230533pt;}
.yd0{bottom:236.230667pt;}
.y73{bottom:236.230800pt;}
.y10c{bottom:236.230933pt;}
.y26{bottom:236.273867pt;}
.y192{bottom:237.506800pt;}
.yb8{bottom:238.358667pt;}
.y175{bottom:240.176400pt;}
.y49{bottom:245.720000pt;}
.yc4{bottom:246.619467pt;}
.y25{bottom:249.873867pt;}
.ye0{bottom:250.490533pt;}
.y10a{bottom:250.490667pt;}
.y72{bottom:250.490800pt;}
.yfe{bottom:251.689067pt;}
.yb7{bottom:256.758800pt;}
.ye9{bottom:259.949867pt;}
.y153{bottom:260.497867pt;}
.y24{bottom:263.473867pt;}
.y48{bottom:264.120000pt;}
.ydf{bottom:264.750533pt;}
.y94{bottom:264.750667pt;}
.y71{bottom:264.750800pt;}
.ya5{bottom:265.019467pt;}
.y191{bottom:266.837200pt;}
.y174{bottom:269.506800pt;}
.yee{bottom:270.089067pt;}
.yb6{bottom:275.158667pt;}
.y152{bottom:276.497867pt;}
.y23{bottom:277.073867pt;}
.ye8{bottom:278.349867pt;}
.yde{bottom:279.010533pt;}
.y93{bottom:279.010800pt;}
.y70{bottom:279.010933pt;}
.y47{bottom:282.520000pt;}
.y190{bottom:282.837200pt;}
.ya4{bottom:283.419467pt;}
.y173{bottom:285.506800pt;}
.yed{bottom:288.489200pt;}
.y22{bottom:290.673867pt;}
.y151{bottom:292.497867pt;}
.ydd{bottom:293.270533pt;}
.y109{bottom:293.270667pt;}
.y92{bottom:293.270800pt;}
.y6f{bottom:293.270933pt;}
.yfc{bottom:293.558667pt;}
.ye7{bottom:296.749867pt;}
.y18f{bottom:298.837200pt;}
.y46{bottom:300.920000pt;}
.ya3{bottom:301.819467pt;}
.y21{bottom:304.273867pt;}
.yb5{bottom:306.889067pt;}
.ydc{bottom:307.530533pt;}
.y108{bottom:307.530667pt;}
.y91{bottom:307.530800pt;}
.y6e{bottom:307.531067pt;}
.y150{bottom:308.497867pt;}
.yfb{bottom:311.958800pt;}
.y172{bottom:314.837200pt;}
.ye6{bottom:315.149867pt;}
.y20{bottom:317.873867pt;}
.y45{bottom:319.320000pt;}
.ya2{bottom:320.219467pt;}
.ydb{bottom:321.790533pt;}
.y6d{bottom:321.791067pt;}
.yb4{bottom:325.289200pt;}
.yfa{bottom:330.358667pt;}
.y171{bottom:330.837200pt;}
.y1f{bottom:331.473867pt;}
.ycf{bottom:333.549867pt;}
.yda{bottom:336.050667pt;}
.y6c{bottom:336.051200pt;}
.y44{bottom:337.720000pt;}
.y14f{bottom:337.828267pt;}
.ya1{bottom:338.619467pt;}
.yb3{bottom:343.689067pt;}
.y18e{bottom:344.167600pt;}
.y1e{bottom:345.073867pt;}
.yf9{bottom:348.758800pt;}
.yd9{bottom:350.310667pt;}
.y6b{bottom:350.311067pt;}
.yce{bottom:351.949867pt;}
.y14e{bottom:353.828267pt;}
.y43{bottom:356.120000pt;}
.ya0{bottom:357.019467pt;}
.y170{bottom:360.167600pt;}
.y90{bottom:362.089067pt;}
.y6a{bottom:364.571067pt;}
.y1a4{bottom:365.506800pt;}
.y1d{bottom:366.232933pt;}
.y122{bottom:366.425200pt;}
.yf8{bottom:367.158667pt;}
.y14d{bottom:369.828267pt;}
.ycd{bottom:370.349867pt;}
.y136{bottom:373.501333pt;}
.y9f{bottom:375.419467pt;}
.y16f{bottom:376.167600pt;}
.y69{bottom:378.831200pt;}
.y8f{bottom:380.489200pt;}
.y121{bottom:382.425200pt;}
.y11b{bottom:384.252000pt;}
.y42{bottom:387.850400pt;}
.y129{bottom:387.968533pt;}
.ycc{bottom:388.749867pt;}
.y135{bottom:389.501333pt;}
.y16e{bottom:392.167600pt;}
.y9e{bottom:393.819467pt;}
.y1a3{bottom:394.837200pt;}
.y12f{bottom:396.094533pt;}
.y120{bottom:398.425200pt;}
.y8e{bottom:398.889067pt;}
.y14c{bottom:399.158667pt;}
.y11a{bottom:400.252000pt;}
.y128{bottom:403.968533pt;}
.y18d{bottom:405.497867pt;}
.ycb{bottom:407.149867pt;}
.y16d{bottom:408.167600pt;}
.y17{bottom:410.092000pt;}
.y1a2{bottom:410.837200pt;}
.y12e{bottom:412.094533pt;}
.y9d{bottom:412.219467pt;}
.y11f{bottom:414.425200pt;}
.y14b{bottom:415.158667pt;}
.y119{bottom:416.252000pt;}
.y8d{bottom:417.289200pt;}
.y18c{bottom:421.497867pt;}
.y16{bottom:424.492000pt;}
.y68{bottom:425.549867pt;}
.y1a1{bottom:426.837200pt;}
.y12d{bottom:428.094533pt;}
.y126{bottom:429.921200pt;}
.y11e{bottom:430.425200pt;}
.y9c{bottom:430.619467pt;}
.y14a{bottom:431.158667pt;}
.y132{bottom:433.700800pt;}
.y8c{bottom:435.689067pt;}
.y16c{bottom:437.497867pt;}
.y15{bottom:438.892000pt;}
.y67{bottom:443.949867pt;}
.y12c{bottom:444.094533pt;}
.y9b{bottom:449.019467pt;}
.y125{bottom:449.700800pt;}
.y18b{bottom:450.828267pt;}
.y16b{bottom:453.497867pt;}
.yb2{bottom:454.089067pt;}
.y14{bottom:454.092000pt;}
.y1a0{bottom:456.167600pt;}
.yf6{bottom:457.280267pt;}
.y149{bottom:460.489067pt;}
.y66{bottom:462.350000pt;}
.y118{bottom:463.300800pt;}
.y18a{bottom:466.828267pt;}
.y8b{bottom:467.419467pt;}
.y16a{bottom:469.498000pt;}
.y116{bottom:472.149867pt;}
.yb1{bottom:472.489067pt;}
.yf5{bottom:475.680267pt;}
.y148{bottom:476.489067pt;}
.y65{bottom:480.749867pt;}
.y117{bottom:481.700800pt;}
.y19a{bottom:482.828267pt;}
.y19f{bottom:485.498000pt;}
.y8a{bottom:485.819467pt;}
.y13{bottom:488.593733pt;}
.yb0{bottom:490.889067pt;}
.y147{bottom:492.489067pt;}
.yf4{bottom:494.080267pt;}
.y189{bottom:496.158667pt;}
.y127{bottom:497.700800pt;}
.y169{bottom:498.828267pt;}
.y64{bottom:499.149867pt;}
.y19e{bottom:501.498000pt;}
.y12{bottom:502.993733pt;}
.y89{bottom:504.219467pt;}
.yaf{bottom:509.289200pt;}
.y188{bottom:512.158667pt;}
.yf3{bottom:512.480267pt;}
.y168{bottom:514.828267pt;}
.y11{bottom:517.393733pt;}
.y63{bottom:517.549867pt;}
.y146{bottom:521.819467pt;}
.y88{bottom:522.619600pt;}
.yae{bottom:527.689067pt;}
.y187{bottom:528.158667pt;}
.y134{bottom:529.700800pt;}
.y167{bottom:530.828267pt;}
.yf2{bottom:530.880267pt;}
.y10{bottom:531.793733pt;}
.y62{bottom:535.949867pt;}
.y145{bottom:537.819467pt;}
.y87{bottom:541.019467pt;}
.y186{bottom:544.158667pt;}
.y133{bottom:545.700800pt;}
.yad{bottom:546.089067pt;}
.y166{bottom:546.828267pt;}
.yf1{bottom:549.280267pt;}
.y144{bottom:553.819467pt;}
.y61{bottom:554.350000pt;}
.y41{bottom:554.744000pt;}
.y86{bottom:559.419467pt;}
.y165{bottom:562.828267pt;}
.yac{bottom:564.489067pt;}
.yf0{bottom:567.680267pt;}
.y40{bottom:568.344133pt;}
.y60{bottom:572.749867pt;}
.y185{bottom:573.489067pt;}
.y19d{bottom:576.158667pt;}
.y85{bottom:577.819467pt;}
.y143{bottom:583.149867pt;}
.yef{bottom:586.080267pt;}
.y1c{bottom:587.099200pt;}
.y184{bottom:589.489067pt;}
.y5f{bottom:591.149867pt;}
.y164{bottom:592.158667pt;}
.y84{bottom:596.219467pt;}
.y3f{bottom:597.062133pt;}
.y142{bottom:599.149867pt;}
.y1b{bottom:599.899200pt;}
.yca{bottom:604.480267pt;}
.y183{bottom:605.489067pt;}
.y163{bottom:608.158667pt;}
.y9a{bottom:609.549867pt;}
.y3e{bottom:610.662133pt;}
.y1a{bottom:612.699200pt;}
.y83{bottom:614.619600pt;}
.y141{bottom:615.149867pt;}
.y182{bottom:621.489067pt;}
.y5e{bottom:622.880267pt;}
.y162{bottom:624.158667pt;}
.y3d{bottom:624.262267pt;}
.y19{bottom:625.499200pt;}
.yc3{bottom:627.949867pt;}
.y140{bottom:631.149867pt;}
.y82{bottom:633.019467pt;}
.y19c{bottom:637.489200pt;}
.y3c{bottom:637.862133pt;}
.y18{bottom:638.299200pt;}
.y5d{bottom:641.280267pt;}
.yc2{bottom:646.350000pt;}
.y13f{bottom:647.149867pt;}
.y181{bottom:650.819467pt;}
.y81{bottom:651.419467pt;}
.y3b{bottom:651.462133pt;}
.y161{bottom:653.489200pt;}
.y5c{bottom:659.680267pt;}
.y13e{bottom:663.149867pt;}
.yc1{bottom:664.749867pt;}
.y3a{bottom:665.062133pt;}
.y180{bottom:666.819467pt;}
.y160{bottom:669.489200pt;}
.y80{bottom:669.819467pt;}
.yf{bottom:676.881467pt;}
.y5b{bottom:678.080267pt;}
.y39{bottom:678.662133pt;}
.y13d{bottom:679.149867pt;}
.y17f{bottom:682.819467pt;}
.yc0{bottom:683.149867pt;}
.y10b{bottom:688.219600pt;}
.y38{bottom:692.262267pt;}
.y13c{bottom:695.149867pt;}
.y5a{bottom:696.480267pt;}
.ye{bottom:696.641467pt;}
.y15f{bottom:698.819467pt;}
.y7f{bottom:701.549867pt;}
.y37{bottom:705.862267pt;}
.y6{bottom:707.176667pt;}
.y115{bottom:709.480267pt;}
.y13b{bottom:711.149867pt;}
.y17e{bottom:712.149867pt;}
.y15e{bottom:714.819467pt;}
.y59{bottom:714.880267pt;}
.yd{bottom:716.401467pt;}
.y36{bottom:719.462133pt;}
.y7e{bottom:719.949867pt;}
.y5{bottom:720.110000pt;}
.y114{bottom:725.480267pt;}
.y13a{bottom:727.149867pt;}
.y17d{bottom:728.149867pt;}
.y4{bottom:733.043333pt;}
.y35{bottom:733.062133pt;}
.y58{bottom:733.280267pt;}
.yc{bottom:736.161467pt;}
.y7d{bottom:738.350000pt;}
.y113{bottom:741.480267pt;}
.y139{bottom:743.149867pt;}
.y15d{bottom:744.149867pt;}
.y3{bottom:745.976667pt;}
.y34{bottom:746.662133pt;}
.y57{bottom:751.680400pt;}
.yb{bottom:755.921467pt;}
.y7c{bottom:756.749867pt;}
.y112{bottom:757.480267pt;}
.y2{bottom:758.910000pt;}
.y138{bottom:759.149867pt;}
.y15c{bottom:760.149867pt;}
.y33{bottom:760.262267pt;}
.y56{bottom:770.080267pt;}
.y1{bottom:771.843333pt;}
.y111{bottom:773.480267pt;}
.ya{bottom:775.681467pt;}
.y55{bottom:788.480267pt;}
.y32{bottom:788.980267pt;}
.y110{bottom:789.480267pt;}
.y51{bottom:816.546533pt;}
.y54{bottom:827.055067pt;}
.y30{bottom:827.245867pt;}
.y8{bottom:827.275600pt;}
.y53{bottom:837.455067pt;}
.y52{bottom:847.855067pt;}
.y9{bottom:900.334533pt;}
.h3{height:23.797120pt;}
.hc{height:32.240000pt;}
.h2{height:35.166400pt;}
.h5{height:35.364800pt;}
.hd{height:39.168000pt;}
.h4{height:39.680000pt;}
.h9{height:41.616000pt;}
.ha{height:42.160000pt;}
.hb{height:44.064000pt;}
.h8{height:44.640000pt;}
.h7{height:46.512000pt;}
.h6{height:60.465600pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:593.333333pt;}
.w0{width:593.385333pt;}
.x0{left:0.000000pt;}
.x12{left:75.590533pt;}
.x1a{left:77.384667pt;}
.x30{left:78.829733pt;}
.x2e{left:81.667333pt;}
.x3{left:83.197600pt;}
.x1d{left:84.696533pt;}
.x1b{left:86.296533pt;}
.x2{left:87.943067pt;}
.x29{left:88.931200pt;}
.x1{left:91.346400pt;}
.x22{left:92.835067pt;}
.x13{left:94.488133pt;}
.x19{left:95.763067pt;}
.x5{left:99.674667pt;}
.x2f{left:102.008667pt;}
.x31{left:103.448667pt;}
.x6{left:104.982667pt;}
.x4{left:107.383733pt;}
.x15{left:115.408267pt;}
.x16{left:121.370800pt;}
.x1c{left:126.008267pt;}
.x2a{left:129.773600pt;}
.x36{left:132.283467pt;}
.x23{left:136.824133pt;}
.x18{left:151.190533pt;}
.x34{left:157.723067pt;}
.x35{left:162.026800pt;}
.xa{left:188.976400pt;}
.xc{left:191.482133pt;}
.x7{left:205.566133pt;}
.x11{left:207.874000pt;}
.xd{left:260.084533pt;}
.x14{left:287.819333pt;}
.x1e{left:303.517467pt;}
.x2b{left:305.336000pt;}
.x27{left:307.357333pt;}
.x25{left:308.738267pt;}
.x24{left:311.927733pt;}
.x20{left:315.522400pt;}
.x1f{left:318.450533pt;}
.x32{left:319.559467pt;}
.x26{left:322.733067pt;}
.x10{left:324.908667pt;}
.x2d{left:329.725200pt;}
.x21{left:333.677067pt;}
.x2c{left:337.159733pt;}
.x17{left:345.991200pt;}
.xe{left:361.244400pt;}
.x33{left:365.447333pt;}
.xb{left:371.926267pt;}
.xf{left:386.011867pt;}
.x28{left:393.948533pt;}
.x9{left:432.005600pt;}
.x37{left:501.176400pt;}
.x8{left:505.934000pt;}
}




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