
    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_bd30fb2de8de80b76afb85ab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_c6e23fc5a2d0140fd4254b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_da535bd916efa4de83d082ec.woff')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_5d6b3f72b46cde658ad71422.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_882116f9ad38611ac216e7af.woff')format("woff");}.ff7{font-family:ff7;line-height:1.023000;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_2a980387a8782ea65fb17522.woff')format("woff");}.ff8{font-family:ff8;line-height:2.230469;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_e6e124659bb7cbd69ec7cb8f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.931152;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_97ccbbb321d4f71b7793c0a7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_fc8fec8e868de6315424b6da.woff')format("woff");}.ffb{font-family:ffb;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-14.400000px;}
.v5{vertical-align:-10.800000px;}
.v1{vertical-align:-6.024000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v9{vertical-align:14.400000px;}
.vb{vertical-align:21.600000px;}
.v3{vertical-align:24.000000px;}
.va{vertical-align:26.400000px;}
.v6{vertical-align:36.000000px;}
.v7{vertical-align:42.000000px;}
.v4{vertical-align:48.000000px;}
.ls6a{letter-spacing:-4.020000px;}
.ls2a{letter-spacing:-3.600000px;}
.ls83{letter-spacing:-2.820000px;}
.ls23{letter-spacing:-2.448000px;}
.ls56{letter-spacing:-1.800000px;}
.ls76{letter-spacing:-1.680000px;}
.ls73{letter-spacing:-1.620000px;}
.ls31{letter-spacing:-1.512000px;}
.ls78{letter-spacing:-1.500000px;}
.ls77{letter-spacing:-1.380000px;}
.ls57{letter-spacing:-1.368000px;}
.ls30{letter-spacing:-1.296000px;}
.ls42{letter-spacing:-1.224000px;}
.ls79{letter-spacing:-1.140000px;}
.ls82{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.792000px;}
.ls26{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls75{letter-spacing:-0.540000px;}
.ls89{letter-spacing:-0.528000px;}
.ls20{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.420000px;}
.ls58{letter-spacing:-0.361200px;}
.ls1c{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.330000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls17{letter-spacing:-0.288000px;}
.ls40{letter-spacing:-0.252000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls49{letter-spacing:-0.198000px;}
.ls11{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.168000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls88{letter-spacing:-0.132000px;}
.lse{letter-spacing:-0.120000px;}
.ls14{letter-spacing:-0.084000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls8a{letter-spacing:-0.066000px;}
.ls74{letter-spacing:-0.060000px;}
.ls3f{letter-spacing:-0.042000px;}
.ls10{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.066000px;}
.ls52{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.120000px;}
.ls4b{letter-spacing:0.122400px;}
.ls25{letter-spacing:0.144000px;}
.ls68{letter-spacing:0.168000px;}
.ls3d{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.224400px;}
.ls72{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.288000px;}
.ls86{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls87{letter-spacing:0.396000px;}
.ls37{letter-spacing:0.408000px;}
.ls4{letter-spacing:0.453600px;}
.ls4a{letter-spacing:0.460800px;}
.ls85{letter-spacing:0.462000px;}
.ls34{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.482400px;}
.ls7{letter-spacing:0.504000px;}
.ls55{letter-spacing:0.511200px;}
.ls35{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.554400px;}
.lsb{letter-spacing:0.576000px;}
.ls84{letter-spacing:0.600000px;}
.ls50{letter-spacing:0.619200px;}
.ls6d{letter-spacing:0.780000px;}
.ls53{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.900000px;}
.ls7f{letter-spacing:0.960000px;}
.ls45{letter-spacing:0.984000px;}
.ls65{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.110000px;}
.ls8{letter-spacing:1.152000px;}
.ls4f{letter-spacing:1.186800px;}
.ls7c{letter-spacing:1.188000px;}
.ls6e{letter-spacing:1.194000px;}
.ls70{letter-spacing:1.200000px;}
.ls5e{letter-spacing:1.704000px;}
.ls7d{letter-spacing:1.980000px;}
.ls63{letter-spacing:2.035200px;}
.lsc{letter-spacing:2.376000px;}
.ls69{letter-spacing:3.180000px;}
.ls28{letter-spacing:3.600000px;}
.ls60{letter-spacing:3.723600px;}
.ls62{letter-spacing:3.840000px;}
.ls81{letter-spacing:4.092000px;}
.ls6c{letter-spacing:4.380000px;}
.ls2b{letter-spacing:4.752000px;}
.ls7a{letter-spacing:5.580000px;}
.ls5a{letter-spacing:5.976000px;}
.ls6b{letter-spacing:6.780000px;}
.lsa{letter-spacing:7.200000px;}
.ls7e{letter-spacing:7.980000px;}
.ls24{letter-spacing:8.352000px;}
.ls59{letter-spacing:9.576000px;}
.ls71{letter-spacing:10.380000px;}
.ls66{letter-spacing:10.778400px;}
.ls32{letter-spacing:10.800000px;}
.ls7b{letter-spacing:11.580000px;}
.ls41{letter-spacing:11.952000px;}
.ls6f{letter-spacing:12.780000px;}
.ls2c{letter-spacing:13.176000px;}
.ls3e{letter-spacing:14.400000px;}
.ls80{letter-spacing:14.784000px;}
.ls36{letter-spacing:15.552000px;}
.ls5d{letter-spacing:15.840000px;}
.ls2e{letter-spacing:16.776000px;}
.ls61{letter-spacing:17.352000px;}
.ls44{letter-spacing:19.152000px;}
.ls5c{letter-spacing:19.323600px;}
.ls3a{letter-spacing:19.464000px;}
.ls43{letter-spacing:20.376000px;}
.ls39{letter-spacing:21.888000px;}
.ls4d{letter-spacing:22.176000px;}
.ls5f{letter-spacing:22.435200px;}
.ls67{letter-spacing:23.580000px;}
.ls54{letter-spacing:29.952000px;}
.ls3c{letter-spacing:40.752000px;}
.ls4e{letter-spacing:65.040000px;}
.ls33{letter-spacing:544.380000px;}
.ls2{letter-spacing:597.180000px;}
.ls5b{letter-spacing:675.576000px;}
.ls1{letter-spacing:691.980000px;}
.ls4c{letter-spacing:847.152000px;}
.ls64{letter-spacing:968.400000px;}
.ls38{letter-spacing:1099.152000px;}
.ls51{letter-spacing:1139.976000px;}
.ls0{letter-spacing:1218.780000px;}
.ls46{letter-spacing:1262.778000px;}
.ls2d{letter-spacing:1263.000000px;}
.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;}
}
.wsa9{word-spacing:-72.000000px;}
.ws70{word-spacing:-51.600000px;}
.ws9d{word-spacing:-51.238800px;}
.ws72{word-spacing:-41.832000px;}
.ws71{word-spacing:-41.748000px;}
.ws1{word-spacing:-21.336000px;}
.ws2{word-spacing:-21.252000px;}
.ws5{word-spacing:-21.084000px;}
.ws3{word-spacing:-20.832000px;}
.ws7{word-spacing:-19.584000px;}
.ws8c{word-spacing:-19.512000px;}
.ws6f{word-spacing:-19.440000px;}
.ws4a{word-spacing:-19.368000px;}
.wsd{word-spacing:-19.224000px;}
.wse{word-spacing:-19.152000px;}
.wsc{word-spacing:-19.080000px;}
.wsaf{word-spacing:-19.008000px;}
.wsf{word-spacing:-18.936000px;}
.ws11{word-spacing:-18.864000px;}
.ws6c{word-spacing:-18.792000px;}
.ws8d{word-spacing:-18.720000px;}
.ws49{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.360000px;}
.wsae{word-spacing:-18.216000px;}
.wse4{word-spacing:-18.018000px;}
.ws10{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.640000px;}
.ws97{word-spacing:-17.622000px;}
.ws96{word-spacing:-17.424000px;}
.wse3{word-spacing:-17.094000px;}
.ws9{word-spacing:-16.920000px;}
.ws95{word-spacing:-16.764000px;}
.wsc8{word-spacing:-16.500000px;}
.wse2{word-spacing:-16.368000px;}
.wsc5{word-spacing:-16.260000px;}
.ws68{word-spacing:-16.200000px;}
.ws6b{word-spacing:-16.140000px;}
.wsc6{word-spacing:-16.080000px;}
.ws69{word-spacing:-16.020000px;}
.wsb1{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.720000px;}
.ws6a{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.wse0{word-spacing:-15.480000px;}
.wsb0{word-spacing:-14.700000px;}
.wse1{word-spacing:-14.640000px;}
.wsc4{word-spacing:-14.520000px;}
.ws7c{word-spacing:-14.400000px;}
.ws48{word-spacing:-13.176000px;}
.ws4{word-spacing:-13.054800px;}
.wsd3{word-spacing:-12.780000px;}
.ws89{word-spacing:-11.952000px;}
.wse7{word-spacing:-11.580000px;}
.wsad{word-spacing:-11.382000px;}
.ws9c{word-spacing:-11.352000px;}
.ws6{word-spacing:-11.214000px;}
.ws6e{word-spacing:-11.172000px;}
.ws6d{word-spacing:-11.130000px;}
.ws5c{word-spacing:-10.800000px;}
.wsc3{word-spacing:-9.612000px;}
.wsa3{word-spacing:-9.576000px;}
.wsc7{word-spacing:-9.180000px;}
.ws33{word-spacing:-8.352000px;}
.wsc1{word-spacing:-6.780000px;}
.wsdd{word-spacing:-5.580000px;}
.ws25{word-spacing:-5.040000px;}
.ws47{word-spacing:-4.752000px;}
.wsb6{word-spacing:-4.536000px;}
.wscb{word-spacing:-4.380000px;}
.ws2a{word-spacing:-4.248000px;}
.wsa5{word-spacing:-3.888000px;}
.ws37{word-spacing:-3.816000px;}
.ws41{word-spacing:-3.600000px;}
.ws3f{word-spacing:-3.528000px;}
.ws38{word-spacing:-3.312000px;}
.wsbe{word-spacing:-3.180000px;}
.wsb3{word-spacing:-3.168000px;}
.ws80{word-spacing:-3.024000px;}
.ws4c{word-spacing:-2.736000px;}
.ws94{word-spacing:-2.664000px;}
.ws35{word-spacing:-2.376000px;}
.wsbd{word-spacing:-2.232000px;}
.ws63{word-spacing:-2.160000px;}
.ws30{word-spacing:-2.016000px;}
.ws40{word-spacing:-1.944000px;}
.ws4d{word-spacing:-1.872000px;}
.wsed{word-spacing:-1.860000px;}
.wsa4{word-spacing:-1.440000px;}
.ws3b{word-spacing:-1.368000px;}
.wseb{word-spacing:-1.200000px;}
.ws5d{word-spacing:-1.152000px;}
.wsee{word-spacing:-1.140000px;}
.wsec{word-spacing:-1.020000px;}
.ws8e{word-spacing:-0.936000px;}
.wsc0{word-spacing:-0.900000px;}
.ws3c{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.792000px;}
.wsdb{word-spacing:-0.780000px;}
.wsa2{word-spacing:-0.720000px;}
.wsc9{word-spacing:-0.660000px;}
.ws5a{word-spacing:-0.648000px;}
.ws3a{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.540000px;}
.ws74{word-spacing:-0.504000px;}
.ws1e{word-spacing:-0.480000px;}
.ws17{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.300000px;}
.ws45{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.216000px;}
.ws39{word-spacing:-0.144000px;}
.wsce{word-spacing:-0.120000px;}
.ws98{word-spacing:-0.072000px;}
.wsd2{word-spacing:-0.060000px;}
.ws14{word-spacing:0.000000px;}
.ws15{word-spacing:0.060000px;}
.wsf5{word-spacing:0.066000px;}
.ws29{word-spacing:0.072000px;}
.wsd1{word-spacing:0.120000px;}
.ws82{word-spacing:0.144000px;}
.ws1b{word-spacing:0.168000px;}
.wsdc{word-spacing:0.180000px;}
.ws26{word-spacing:0.216000px;}
.ws4b{word-spacing:0.240000px;}
.ws1c{word-spacing:0.288000px;}
.ws20{word-spacing:0.300000px;}
.ws3e{word-spacing:0.360000px;}
.wsf8{word-spacing:0.396000px;}
.ws1a{word-spacing:0.420000px;}
.ws2e{word-spacing:0.432000px;}
.ws99{word-spacing:0.462000px;}
.ws1f{word-spacing:0.480000px;}
.ws44{word-spacing:0.504000px;}
.wsf7{word-spacing:0.528000px;}
.wsd4{word-spacing:0.540000px;}
.ws32{word-spacing:0.576000px;}
.wsa1{word-spacing:0.648000px;}
.wsd6{word-spacing:0.720000px;}
.wsea{word-spacing:0.780000px;}
.ws3d{word-spacing:0.792000px;}
.wsb8{word-spacing:0.864000px;}
.ws21{word-spacing:0.936000px;}
.wse5{word-spacing:1.080000px;}
.ws8a{word-spacing:1.224000px;}
.wsa0{word-spacing:1.296000px;}
.ws7b{word-spacing:1.440000px;}
.wsd5{word-spacing:1.500000px;}
.wscf{word-spacing:1.620000px;}
.ws23{word-spacing:1.656000px;}
.ws22{word-spacing:1.728000px;}
.wsd9{word-spacing:1.740000px;}
.ws9f{word-spacing:1.800000px;}
.wsda{word-spacing:1.860000px;}
.wsaa{word-spacing:2.160000px;}
.ws31{word-spacing:2.448000px;}
.ws81{word-spacing:2.736000px;}
.ws7f{word-spacing:2.808000px;}
.wse8{word-spacing:2.820000px;}
.wsd8{word-spacing:2.940000px;}
.ws56{word-spacing:2.952000px;}
.ws65{word-spacing:3.024000px;}
.wsef{word-spacing:3.120000px;}
.ws8f{word-spacing:3.384000px;}
.wsf6{word-spacing:3.564000px;}
.ws46{word-spacing:3.600000px;}
.wsd7{word-spacing:3.660000px;}
.ws55{word-spacing:3.672000px;}
.wsb5{word-spacing:3.816000px;}
.ws64{word-spacing:3.888000px;}
.wsbf{word-spacing:4.020000px;}
.wsac{word-spacing:4.032000px;}
.wsab{word-spacing:4.104000px;}
.ws42{word-spacing:4.176000px;}
.ws66{word-spacing:4.536000px;}
.wsd0{word-spacing:4.800000px;}
.ws93{word-spacing:4.824000px;}
.wscc{word-spacing:4.860000px;}
.ws57{word-spacing:4.896000px;}
.ws92{word-spacing:5.040000px;}
.ws58{word-spacing:5.112000px;}
.ws77{word-spacing:5.256000px;}
.ws59{word-spacing:5.328000px;}
.wse9{word-spacing:5.520000px;}
.wsdf{word-spacing:6.540000px;}
.ws36{word-spacing:6.552000px;}
.ws7a{word-spacing:6.912000px;}
.wsb4{word-spacing:6.984000px;}
.wscd{word-spacing:7.200000px;}
.wsde{word-spacing:7.260000px;}
.wsf0{word-spacing:7.440000px;}
.ws34{word-spacing:7.488000px;}
.ws85{word-spacing:7.632000px;}
.ws73{word-spacing:7.776000px;}
.wsf2{word-spacing:8.100000px;}
.wsf1{word-spacing:8.460000px;}
.ws4f{word-spacing:9.360000px;}
.ws75{word-spacing:9.648000px;}
.ws76{word-spacing:10.008000px;}
.ws4e{word-spacing:10.152000px;}
.ws9e{word-spacing:10.512000px;}
.ws78{word-spacing:10.584000px;}
.wsbc{word-spacing:10.872000px;}
.ws79{word-spacing:11.232000px;}
.wsbb{word-spacing:11.376000px;}
.wsa8{word-spacing:11.664000px;}
.wsb7{word-spacing:11.736000px;}
.ws54{word-spacing:12.024000px;}
.wse6{word-spacing:12.060000px;}
.ws53{word-spacing:12.528000px;}
.ws86{word-spacing:12.960000px;}
.ws9b{word-spacing:13.248000px;}
.wsa7{word-spacing:13.608000px;}
.ws9a{word-spacing:13.752000px;}
.ws2c{word-spacing:14.184000px;}
.wsf4{word-spacing:14.322000px;}
.ws7d{word-spacing:14.472000px;}
.ws7e{word-spacing:14.832000px;}
.wsf3{word-spacing:14.850000px;}
.ws2b{word-spacing:14.976000px;}
.ws87{word-spacing:15.336000px;}
.ws88{word-spacing:15.624000px;}
.ws61{word-spacing:16.560000px;}
.ws62{word-spacing:17.208000px;}
.ws43{word-spacing:17.280000px;}
.ws8b{word-spacing:17.352000px;}
.wsca{word-spacing:18.060000px;}
.ws2f{word-spacing:18.072000px;}
.ws2d{word-spacing:18.216000px;}
.wsb9{word-spacing:18.576000px;}
.ws52{word-spacing:19.728000px;}
.wsc2{word-spacing:20.460000px;}
.ws90{word-spacing:20.520000px;}
.ws5b{word-spacing:20.952000px;}
.ws91{word-spacing:22.032000px;}
.ws5e{word-spacing:26.136000px;}
.ws60{word-spacing:26.424000px;}
.ws5f{word-spacing:26.928000px;}
.ws27{word-spacing:28.872000px;}
.ws28{word-spacing:29.376000px;}
.wsa6{word-spacing:30.384000px;}
.ws50{word-spacing:32.112000px;}
.ws51{word-spacing:32.688000px;}
.wsb2{word-spacing:34.128000px;}
.ws24{word-spacing:39.672000px;}
.ws84{word-spacing:40.824000px;}
.ws83{word-spacing:41.328000px;}
.wsba{word-spacing:48.528000px;}
._22{margin-left:-15.566400px;}
._18{margin-left:-14.450400px;}
._16{margin-left:-12.816000px;}
._1a{margin-left:-11.800800px;}
._1f{margin-left:-10.660800px;}
._c{margin-left:-9.626400px;}
._b{margin-left:-8.136000px;}
._f{margin-left:-7.077600px;}
._14{margin-left:-5.402400px;}
._6{margin-left:-4.296000px;}
._a{margin-left:-2.467200px;}
._2{margin-left:-1.380000px;}
._0{width:1.140000px;}
._5{width:2.380800px;}
._10{width:3.417600px;}
._9{width:4.418400px;}
._15{width:5.481600px;}
._21{width:6.664800px;}
._d{width:7.905600px;}
._e{width:9.050400px;}
._11{width:10.202400px;}
._1e{width:11.527200px;}
._17{width:13.176000px;}
._19{width:14.479200px;}
._13{width:15.909600px;}
._12{width:17.438400px;}
._25{width:20.932800px;}
._24{width:27.156000px;}
._1c{width:28.747200px;}
._1d{width:30.960000px;}
._8{width:33.105600px;}
._7{width:34.416000px;}
._20{width:599.880000px;}
._3{width:643.860000px;}
._1{width:683.820000px;}
._4{width:775.980000px;}
._1b{width:788.100000px;}
._23{width:1161.842400px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.000000px;}
.fs2{font-size:24.000000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:51.600000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:0.300000px;}
.y99{bottom:1.200000px;}
.yaf{bottom:1.800000px;}
.y9{bottom:3.300000px;}
.ybd{bottom:4.500000px;}
.y7{bottom:5.100000px;}
.ya{bottom:5.700000px;}
.ycf{bottom:28.200000px;}
.y9e{bottom:28.500000px;}
.y101{bottom:51.600000px;}
.yaa{bottom:51.900000px;}
.y4{bottom:67.800000px;}
.yda{bottom:96.900000px;}
.y95{bottom:101.712000px;}
.ydd{bottom:102.000000px;}
.y148{bottom:104.100000px;}
.y11a{bottom:104.106000px;}
.y37{bottom:105.006000px;}
.yad{bottom:105.300000px;}
.yfe{bottom:105.306000px;}
.y17e{bottom:108.000000px;}
.yc7{bottom:108.300000px;}
.ya9{bottom:114.600000px;}
.y147{bottom:123.300000px;}
.ydc{bottom:123.600000px;}
.yc6{bottom:123.900000px;}
.y94{bottom:124.806000px;}
.ydb{bottom:125.100000px;}
.y119{bottom:127.200000px;}
.y36{bottom:128.406000px;}
.yfd{bottom:128.706000px;}
.y66{bottom:135.900000px;}
.yc5{bottom:139.500000px;}
.y146{bottom:142.800000px;}
.yac{bottom:143.100000px;}
.yd9{bottom:143.400000px;}
.y17d{bottom:146.700000px;}
.y93{bottom:148.206000px;}
.y118{bottom:150.600000px;}
.yfc{bottom:151.800000px;}
.y35{bottom:151.806000px;}
.yc4{bottom:156.600000px;}
.y65{bottom:159.318000px;}
.y145{bottom:162.300000px;}
.y17c{bottom:166.200000px;}
.yab{bottom:166.500000px;}
.y117{bottom:170.700000px;}
.y92{bottom:171.606000px;}
.y34{bottom:174.900000px;}
.yfb{bottom:175.200000px;}
.yc3{bottom:180.000000px;}
.y116{bottom:181.800000px;}
.y64{bottom:182.718000px;}
.ya8{bottom:184.500000px;}
.y17b{bottom:185.700000px;}
.y91{bottom:194.724000px;}
.y33{bottom:198.312000px;}
.yfa{bottom:198.618000px;}
.y144{bottom:201.000000px;}
.y115{bottom:201.600000px;}
.yc2{bottom:203.400000px;}
.y17a{bottom:204.900000px;}
.y63{bottom:205.812000px;}
.ya6{bottom:207.900000px;}
.y114{bottom:212.700000px;}
.y90{bottom:218.124000px;}
.y143{bottom:220.500000px;}
.y32{bottom:221.712000px;}
.y179{bottom:224.400000px;}
.yc1{bottom:224.700000px;}
.y62{bottom:229.212000px;}
.y113{bottom:236.100000px;}
.yc0{bottom:237.900000px;}
.y142{bottom:240.000000px;}
.y8f{bottom:241.524000px;}
.y178{bottom:243.900000px;}
.y31{bottom:244.806000px;}
.yf9{bottom:245.112000px;}
.y61{bottom:252.612000px;}
.y112{bottom:257.400000px;}
.y141{bottom:258.300000px;}
.y177{bottom:263.100000px;}
.ybf{bottom:263.700000px;}
.y8e{bottom:264.618000px;}
.y30{bottom:268.206000px;}
.yf8{bottom:268.512000px;}
.y10f{bottom:269.700000px;}
.y18a{bottom:271.500000px;}
.y111{bottom:274.800000px;}
.y140{bottom:275.700000px;}
.y60{bottom:275.706000px;}
.ybe{bottom:280.500000px;}
.y176{bottom:282.600000px;}
.y8d{bottom:288.018000px;}
.y2f{bottom:291.300000px;}
.yf7{bottom:291.606000px;}
.y13f{bottom:297.300000px;}
.y110{bottom:298.200000px;}
.y5f{bottom:299.106000px;}
.y175{bottom:302.100000px;}
.ybc{bottom:302.700000px;}
.y8c{bottom:311.112000px;}
.y189{bottom:311.400000px;}
.y2e{bottom:314.700000px;}
.y13e{bottom:314.724000px;}
.yf6{bottom:315.006000px;}
.y10d{bottom:316.200000px;}
.y10e{bottom:321.300000px;}
.y5e{bottom:322.200000px;}
.y188{bottom:328.192500px;}
.ybb{bottom:329.706000px;}
.y8b{bottom:334.512000px;}
.y13d{bottom:337.818000px;}
.yf5{bottom:338.100000px;}
.y2d{bottom:338.106000px;}
.y10c{bottom:339.600000px;}
.y174{bottom:340.800000px;}
.y5d{bottom:345.600000px;}
.y187{bottom:349.494000px;}
.yba{bottom:353.106000px;}
.y8a{bottom:357.912000px;}
.y173{bottom:360.300000px;}
.y2c{bottom:361.200000px;}
.y13c{bottom:361.218000px;}
.yf4{bottom:361.500000px;}
.y5c{bottom:369.012000px;}
.y186{bottom:370.795500px;}
.yb9{bottom:376.506000px;}
.y172{bottom:379.800000px;}
.y89{bottom:381.006000px;}
.y13b{bottom:384.312000px;}
.y2b{bottom:384.600000px;}
.yf3{bottom:384.906000px;}
.y5b{bottom:392.106000px;}
.y185{bottom:396.601500px;}
.y171{bottom:399.000000px;}
.yb8{bottom:399.600000px;}
.y88{bottom:404.406000px;}
.y2a{bottom:404.700000px;}
.y13a{bottom:407.712000px;}
.yf2{bottom:408.000000px;}
.y5a{bottom:415.506000px;}
.y29{bottom:415.806000px;}
.y170{bottom:418.500000px;}
.yb7{bottom:423.000000px;}
.ya5{bottom:425.100000px;}
.y87{bottom:427.806000px;}
.y139{bottom:431.112000px;}
.yf1{bottom:431.400000px;}
.y16f{bottom:438.000000px;}
.y28{bottom:438.900000px;}
.y59{bottom:438.906000px;}
.y184{bottom:439.798500px;}
.ya4{bottom:442.506000px;}
.yb6{bottom:444.600000px;}
.yf0{bottom:450.600000px;}
.y86{bottom:450.900000px;}
.y138{bottom:454.206000px;}
.yef{bottom:456.595200px;}
.yb3{bottom:456.600000px;}
.y16e{bottom:457.200000px;}
.y27{bottom:459.000000px;}
.y183{bottom:461.100000px;}
.y58{bottom:462.006000px;}
.ya3{bottom:465.600000px;}
.y26{bottom:470.106000px;}
.yd8{bottom:471.600000px;}
.y85{bottom:474.300000px;}
.y16d{bottom:476.700000px;}
.y137{bottom:477.606000px;}
.y182{bottom:481.200000px;}
.yd7{bottom:482.706000px;}
.yb5{bottom:483.600000px;}
.yb4{bottom:485.100000px;}
.y57{bottom:485.406000px;}
.yee{bottom:488.400000px;}
.ya2{bottom:489.006000px;}
.y25{bottom:493.206000px;}
.y84{bottom:495.900000px;}
.y16c{bottom:496.200000px;}
.yed{bottom:496.500000px;}
.y181{bottom:497.400000px;}
.y136{bottom:501.006000px;}
.yb2{bottom:503.400000px;}
.yd6{bottom:506.106000px;}
.y56{bottom:508.806000px;}
.y83{bottom:509.700000px;}
.ya1{bottom:512.100000px;}
.y16b{bottom:515.400000px;}
.y24{bottom:516.606000px;}
.y180{bottom:516.900000px;}
.y82{bottom:518.700000px;}
.yec{bottom:519.906000px;}
.y135{bottom:524.100000px;}
.yb1{bottom:526.500000px;}
.y81{bottom:527.700000px;}
.yd5{bottom:529.506000px;}
.y55{bottom:531.906000px;}
.ya0{bottom:532.200000px;}
.y16a{bottom:534.900000px;}
.y17f{bottom:535.500000px;}
.y9d{bottom:538.200000px;}
.y23{bottom:540.006000px;}
.yeb{bottom:543.000000px;}
.y9f{bottom:543.300000px;}
.y134{bottom:544.800000px;}
.y80{bottom:552.000000px;}
.yd4{bottom:552.600000px;}
.y169{bottom:554.400000px;}
.y54{bottom:555.306000px;}
.y133{bottom:559.206000px;}
.y22{bottom:563.100000px;}
.y7f{bottom:563.106000px;}
.yea{bottom:566.406000px;}
.yd3{bottom:572.700000px;}
.y168{bottom:573.900000px;}
.y10b{bottom:574.800000px;}
.y53{bottom:578.400000px;}
.yce{bottom:578.700000px;}
.y132{bottom:582.300000px;}
.yd2{bottom:583.800000px;}
.y9c{bottom:584.700000px;}
.y7e{bottom:586.218000px;}
.y21{bottom:586.500000px;}
.ye9{bottom:589.500000px;}
.y10a{bottom:592.206000px;}
.y167{bottom:593.100000px;}
.y52{bottom:601.836000px;}
.yd1{bottom:605.400000px;}
.y131{bottom:605.706000px;}
.yd0{bottom:606.900000px;}
.y9b{bottom:608.100000px;}
.y7d{bottom:609.618000px;}
.y20{bottom:609.918000px;}
.y166{bottom:611.100000px;}
.y165{bottom:612.600000px;}
.ye8{bottom:612.900000px;}
.y109{bottom:615.606000px;}
.ycc{bottom:625.200000px;}
.y51{bottom:625.236000px;}
.y130{bottom:629.106000px;}
.ycd{bottom:630.300000px;}
.y164{bottom:632.100000px;}
.ye7{bottom:633.000000px;}
.y1f{bottom:633.012000px;}
.y7c{bottom:633.018000px;}
.y108{bottom:638.700000px;}
.ye4{bottom:639.000000px;}
.ye6{bottom:642.600000px;}
.ye5{bottom:644.100000px;}
.y50{bottom:648.330000px;}
.ycb{bottom:648.600000px;}
.y163{bottom:651.300000px;}
.y12f{bottom:652.200000px;}
.y7b{bottom:656.112000px;}
.y1e{bottom:656.412000px;}
.ye3{bottom:662.100000px;}
.y162{bottom:670.800000px;}
.y4f{bottom:671.730000px;}
.y12e{bottom:675.600000px;}
.y1d{bottom:679.506000px;}
.y7a{bottom:679.512000px;}
.y107{bottom:685.506000px;}
.y161{bottom:690.300000px;}
.y4e{bottom:695.130000px;}
.y12d{bottom:699.012000px;}
.y1c{bottom:702.906000px;}
.y79{bottom:702.912000px;}
.y106{bottom:708.600000px;}
.y160{bottom:709.500000px;}
.y4d{bottom:718.224000px;}
.y12c{bottom:722.106000px;}
.y78{bottom:726.006000px;}
.y1b{bottom:726.306000px;}
.y105{bottom:728.700000px;}
.y15f{bottom:729.000000px;}
.y100{bottom:734.700000px;}
.y104{bottom:739.806000px;}
.y4c{bottom:741.624000px;}
.y12b{bottom:745.506000px;}
.y15e{bottom:748.500000px;}
.y1a{bottom:749.400000px;}
.y77{bottom:749.406000px;}
.y103{bottom:762.900000px;}
.y4b{bottom:765.024000px;}
.y15d{bottom:768.000000px;}
.y12a{bottom:768.906000px;}
.y76{bottom:772.500000px;}
.y19{bottom:772.806000px;}
.y102{bottom:786.300000px;}
.y15c{bottom:787.200000px;}
.y4a{bottom:788.118000px;}
.y129{bottom:792.000000px;}
.y75{bottom:795.918000px;}
.y18{bottom:796.206000px;}
.yb0{bottom:798.600000px;}
.yff{bottom:804.600000px;}
.y15b{bottom:806.700000px;}
.y49{bottom:811.518000px;}
.y128{bottom:815.424000px;}
.y17{bottom:819.300000px;}
.y74{bottom:819.318000px;}
.yae{bottom:821.700000px;}
.y15a{bottom:826.200000px;}
.y9a{bottom:826.500000px;}
.y48{bottom:834.918000px;}
.y127{bottom:838.518000px;}
.y16{bottom:839.400000px;}
.y73{bottom:842.412000px;}
.y159{bottom:845.400000px;}
.y15{bottom:849.600000px;}
.y98{bottom:849.900000px;}
.y47{bottom:858.012000px;}
.y126{bottom:861.918000px;}
.y158{bottom:864.900000px;}
.y72{bottom:865.812000px;}
.y14{bottom:869.100000px;}
.y46{bottom:881.412000px;}
.y157{bottom:884.400000px;}
.y125{bottom:885.318000px;}
.y13{bottom:885.900000px;}
.y71{bottom:889.212000px;}
.y12{bottom:896.100000px;}
.yc9{bottom:900.600000px;}
.y156{bottom:903.600000px;}
.y45{bottom:904.506000px;}
.yca{bottom:905.700000px;}
.y124{bottom:908.412000px;}
.y70{bottom:912.306000px;}
.y11{bottom:915.600000px;}
.y155{bottom:923.100000px;}
.yc8{bottom:923.700000px;}
.y44{bottom:927.906000px;}
.y123{bottom:931.812000px;}
.y10{bottom:934.800000px;}
.y6f{bottom:935.706000px;}
.y154{bottom:942.600000px;}
.y43{bottom:951.306000px;}
.yf{bottom:955.200000px;}
.y122{bottom:955.212000px;}
.y6e{bottom:959.106000px;}
.y153{bottom:962.100000px;}
.y42{bottom:974.400000px;}
.ye{bottom:977.700000px;}
.y121{bottom:978.306000px;}
.ye2{bottom:978.900000px;}
.y152{bottom:981.300000px;}
.y6d{bottom:982.200000px;}
.ye1{bottom:990.012000px;}
.y41{bottom:997.800000px;}
.yd{bottom:998.694000px;}
.y151{bottom:1000.800000px;}
.y120{bottom:1001.706000px;}
.y6c{bottom:1005.612000px;}
.ye0{bottom:1013.412000px;}
.y150{bottom:1020.300000px;}
.y40{bottom:1021.200000px;}
.y11f{bottom:1025.106000px;}
.yc{bottom:1025.706000px;}
.y6b{bottom:1029.012000px;}
.ydf{bottom:1036.506000px;}
.y14f{bottom:1039.500000px;}
.y3f{bottom:1041.000000px;}
.y11e{bottom:1048.200000px;}
.y3e{bottom:1052.100000px;}
.y6a{bottom:1052.106000px;}
.y14e{bottom:1059.000000px;}
.yde{bottom:1059.906000px;}
.yb{bottom:1061.700000px;}
.y11d{bottom:1071.600000px;}
.y97{bottom:1072.200000px;}
.y3d{bottom:1075.500000px;}
.y69{bottom:1075.506000px;}
.y14d{bottom:1078.500000px;}
.y8{bottom:1083.300000px;}
.y96{bottom:1083.306000px;}
.y11c{bottom:1095.000000px;}
.y3c{bottom:1095.300000px;}
.y14c{bottom:1097.700000px;}
.y68{bottom:1098.600000px;}
.y3b{bottom:1106.400000px;}
.y6{bottom:1107.300000px;}
.y11b{bottom:1115.400000px;}
.y14b{bottom:1117.200000px;}
.y67{bottom:1118.700000px;}
.y3a{bottom:1129.800000px;}
.y5{bottom:1132.500000px;}
.y14a{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y39{bottom:1153.200000px;}
.y149{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y38{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h26{height:10.440000px;}
.h4{height:20.880000px;}
.h20{height:21.298500px;}
.h1e{height:21.300000px;}
.h1a{height:23.100000px;}
.h14{height:23.400000px;}
.h5{height:23.401500px;}
.h8{height:24.000000px;}
.h18{height:31.320000px;}
.h1d{height:36.540000px;}
.h11{height:41.760000px;}
.h2c{height:42.840000px;}
.h15{height:46.500000px;}
.h2{height:46.680000px;}
.h1c{height:46.800000px;}
.h1f{height:47.124000px;}
.h7{height:47.401500px;}
.h6{height:51.408000px;}
.hb{height:52.200000px;}
.h2e{height:52.920000px;}
.hd{height:56.016000px;}
.h21{height:57.420000px;}
.h2d{height:58.200000px;}
.he{height:58.857422px;}
.ha{height:59.976000px;}
.hc{height:62.640000px;}
.h17{height:69.900000px;}
.h3{height:70.664062px;}
.h9{height:73.080000px;}
.h10{height:98.640000px;}
.h28{height:98.659200px;}
.h2b{height:103.113281px;}
.h27{height:115.897852px;}
.hf{height:121.897852px;}
.h16{height:213.900000px;}
.h13{height:218.400000px;}
.h12{height:220.500000px;}
.h2a{height:231.898500px;}
.h22{height:247.501500px;}
.h23{height:252.000000px;}
.h19{height:271.800000px;}
.h1b{height:272.100000px;}
.h25{height:315.001500px;}
.h24{height:326.400000px;}
.h29{height:366.600000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.wc{width:341.700000px;}
.wb{width:343.200000px;}
.w6{width:349.800000px;}
.w8{width:354.598500px;}
.w9{width:354.600000px;}
.w5{width:360.300000px;}
.w2{width:478.200000px;}
.wa{width:709.200000px;}
.w7{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x48{left:9.300000px;}
.x26{left:12.300000px;}
.x56{left:14.700000px;}
.x40{left:21.300000px;}
.x50{left:25.800000px;}
.x39{left:30.900000px;}
.x2c{left:55.500000px;}
.x1e{left:63.600000px;}
.x49{left:77.400000px;}
.x3{left:79.800000px;}
.x27{left:83.400000px;}
.x57{left:85.800000px;}
.x1{left:91.500000px;}
.x52{left:96.900000px;}
.x12{left:98.400000px;}
.x22{left:99.606000px;}
.x53{left:100.800000px;}
.x3b{left:102.000000px;}
.x2f{left:104.100000px;}
.x59{left:112.800000px;}
.x5b{left:118.500000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x1f{left:135.600000px;}
.x31{left:137.100000px;}
.x30{left:142.200000px;}
.x14{left:144.600000px;}
.x3e{left:146.700000px;}
.x33{left:150.900000px;}
.x35{left:162.300000px;}
.x32{left:165.600000px;}
.x1b{left:167.400000px;}
.x21{left:169.800000px;}
.xd{left:171.000000px;}
.x1a{left:173.100000px;}
.x58{left:177.900000px;}
.x10{left:179.394000px;}
.x41{left:180.600000px;}
.x51{left:185.100000px;}
.x3a{left:190.200000px;}
.x4e{left:197.700000px;}
.x2e{left:204.000000px;}
.x13{left:208.506000px;}
.xa{left:218.403000px;}
.x4a{left:231.900000px;}
.xe{left:243.300000px;}
.x4c{left:249.300000px;}
.x29{left:254.400000px;}
.xc{left:264.600000px;}
.x34{left:268.200000px;}
.x2b{left:272.400000px;}
.x37{left:275.700000px;}
.x3d{left:291.000000px;}
.x25{left:309.900000px;}
.x24{left:317.100000px;}
.x23{left:318.600000px;}
.x19{left:323.400000px;}
.xb{left:324.600000px;}
.x20{left:333.900000px;}
.x4b{left:335.400000px;}
.x28{left:340.200000px;}
.x36{left:342.600000px;}
.x1d{left:348.300000px;}
.x17{left:352.200000px;}
.x54{left:353.400000px;}
.x2a{left:358.200000px;}
.xf{left:374.100000px;}
.x3c{left:376.800000px;}
.x46{left:387.900000px;}
.x43{left:408.600000px;}
.x45{left:426.600000px;}
.x9{left:442.200000px;}
.x2{left:446.400000px;}
.x11{left:450.000000px;}
.x18{left:451.800000px;}
.x16{left:458.400000px;}
.x15{left:473.100000px;}
.x42{left:494.400000px;}
.x3f{left:510.300000px;}
.x44{left:512.400000px;}
.x1c{left:522.000000px;}
.x5{left:558.000000px;}
.x47{left:609.300000px;}
.x55{left:613.800000px;}
.x4f{left:623.400000px;}
.x38{left:630.600000px;}
.x7{left:685.800000px;}
.x2d{left:746.700000px;}
.x5a{left:776.100000px;}
.x4d{left:791.400000px;}
@media print{
.v8{vertical-align:-12.800000pt;}
.v5{vertical-align:-9.600000pt;}
.v1{vertical-align:-5.354667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v9{vertical-align:12.800000pt;}
.vb{vertical-align:19.200000pt;}
.v3{vertical-align:21.333333pt;}
.va{vertical-align:23.466667pt;}
.v6{vertical-align:32.000000pt;}
.v7{vertical-align:37.333333pt;}
.v4{vertical-align:42.666667pt;}
.ls6a{letter-spacing:-3.573333pt;}
.ls2a{letter-spacing:-3.200000pt;}
.ls83{letter-spacing:-2.506667pt;}
.ls23{letter-spacing:-2.176000pt;}
.ls56{letter-spacing:-1.600000pt;}
.ls76{letter-spacing:-1.493333pt;}
.ls73{letter-spacing:-1.440000pt;}
.ls31{letter-spacing:-1.344000pt;}
.ls78{letter-spacing:-1.333333pt;}
.ls77{letter-spacing:-1.226667pt;}
.ls57{letter-spacing:-1.216000pt;}
.ls30{letter-spacing:-1.152000pt;}
.ls42{letter-spacing:-1.088000pt;}
.ls79{letter-spacing:-1.013333pt;}
.ls82{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.704000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls75{letter-spacing:-0.480000pt;}
.ls89{letter-spacing:-0.469333pt;}
.ls20{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls58{letter-spacing:-0.321067pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.293333pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls40{letter-spacing:-0.224000pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls49{letter-spacing:-0.176000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.149333pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls88{letter-spacing:-0.117333pt;}
.lse{letter-spacing:-0.106667pt;}
.ls14{letter-spacing:-0.074667pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls8a{letter-spacing:-0.058667pt;}
.ls74{letter-spacing:-0.053333pt;}
.ls3f{letter-spacing:-0.037333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.058667pt;}
.ls52{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls4b{letter-spacing:0.108800pt;}
.ls25{letter-spacing:0.128000pt;}
.ls68{letter-spacing:0.149333pt;}
.ls3d{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.199467pt;}
.ls72{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.256000pt;}
.ls86{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls87{letter-spacing:0.352000pt;}
.ls37{letter-spacing:0.362667pt;}
.ls4{letter-spacing:0.403200pt;}
.ls4a{letter-spacing:0.409600pt;}
.ls85{letter-spacing:0.410667pt;}
.ls34{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.428800pt;}
.ls7{letter-spacing:0.448000pt;}
.ls55{letter-spacing:0.454400pt;}
.ls35{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.492800pt;}
.lsb{letter-spacing:0.512000pt;}
.ls84{letter-spacing:0.533333pt;}
.ls50{letter-spacing:0.550400pt;}
.ls6d{letter-spacing:0.693333pt;}
.ls53{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls7f{letter-spacing:0.853333pt;}
.ls45{letter-spacing:0.874667pt;}
.ls65{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.986667pt;}
.ls8{letter-spacing:1.024000pt;}
.ls4f{letter-spacing:1.054933pt;}
.ls7c{letter-spacing:1.056000pt;}
.ls6e{letter-spacing:1.061333pt;}
.ls70{letter-spacing:1.066667pt;}
.ls5e{letter-spacing:1.514667pt;}
.ls7d{letter-spacing:1.760000pt;}
.ls63{letter-spacing:1.809067pt;}
.lsc{letter-spacing:2.112000pt;}
.ls69{letter-spacing:2.826667pt;}
.ls28{letter-spacing:3.200000pt;}
.ls60{letter-spacing:3.309867pt;}
.ls62{letter-spacing:3.413333pt;}
.ls81{letter-spacing:3.637333pt;}
.ls6c{letter-spacing:3.893333pt;}
.ls2b{letter-spacing:4.224000pt;}
.ls7a{letter-spacing:4.960000pt;}
.ls5a{letter-spacing:5.312000pt;}
.ls6b{letter-spacing:6.026667pt;}
.lsa{letter-spacing:6.400000pt;}
.ls7e{letter-spacing:7.093333pt;}
.ls24{letter-spacing:7.424000pt;}
.ls59{letter-spacing:8.512000pt;}
.ls71{letter-spacing:9.226667pt;}
.ls66{letter-spacing:9.580800pt;}
.ls32{letter-spacing:9.600000pt;}
.ls7b{letter-spacing:10.293333pt;}
.ls41{letter-spacing:10.624000pt;}
.ls6f{letter-spacing:11.360000pt;}
.ls2c{letter-spacing:11.712000pt;}
.ls3e{letter-spacing:12.800000pt;}
.ls80{letter-spacing:13.141333pt;}
.ls36{letter-spacing:13.824000pt;}
.ls5d{letter-spacing:14.080000pt;}
.ls2e{letter-spacing:14.912000pt;}
.ls61{letter-spacing:15.424000pt;}
.ls44{letter-spacing:17.024000pt;}
.ls5c{letter-spacing:17.176533pt;}
.ls3a{letter-spacing:17.301333pt;}
.ls43{letter-spacing:18.112000pt;}
.ls39{letter-spacing:19.456000pt;}
.ls4d{letter-spacing:19.712000pt;}
.ls5f{letter-spacing:19.942400pt;}
.ls67{letter-spacing:20.960000pt;}
.ls54{letter-spacing:26.624000pt;}
.ls3c{letter-spacing:36.224000pt;}
.ls4e{letter-spacing:57.813333pt;}
.ls33{letter-spacing:483.893333pt;}
.ls2{letter-spacing:530.826667pt;}
.ls5b{letter-spacing:600.512000pt;}
.ls1{letter-spacing:615.093333pt;}
.ls4c{letter-spacing:753.024000pt;}
.ls64{letter-spacing:860.800000pt;}
.ls38{letter-spacing:977.024000pt;}
.ls51{letter-spacing:1013.312000pt;}
.ls0{letter-spacing:1083.360000pt;}
.ls46{letter-spacing:1122.469333pt;}
.ls2d{letter-spacing:1122.666667pt;}
.wsa9{word-spacing:-64.000000pt;}
.ws70{word-spacing:-45.866667pt;}
.ws9d{word-spacing:-45.545600pt;}
.ws72{word-spacing:-37.184000pt;}
.ws71{word-spacing:-37.109333pt;}
.ws1{word-spacing:-18.965333pt;}
.ws2{word-spacing:-18.890667pt;}
.ws5{word-spacing:-18.741333pt;}
.ws3{word-spacing:-18.517333pt;}
.ws7{word-spacing:-17.408000pt;}
.ws8c{word-spacing:-17.344000pt;}
.ws6f{word-spacing:-17.280000pt;}
.ws4a{word-spacing:-17.216000pt;}
.wsd{word-spacing:-17.088000pt;}
.wse{word-spacing:-17.024000pt;}
.wsc{word-spacing:-16.960000pt;}
.wsaf{word-spacing:-16.896000pt;}
.wsf{word-spacing:-16.832000pt;}
.ws11{word-spacing:-16.768000pt;}
.ws6c{word-spacing:-16.704000pt;}
.ws8d{word-spacing:-16.640000pt;}
.ws49{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.320000pt;}
.wsae{word-spacing:-16.192000pt;}
.wse4{word-spacing:-16.016000pt;}
.ws10{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.680000pt;}
.ws97{word-spacing:-15.664000pt;}
.ws96{word-spacing:-15.488000pt;}
.wse3{word-spacing:-15.194667pt;}
.ws9{word-spacing:-15.040000pt;}
.ws95{word-spacing:-14.901333pt;}
.wsc8{word-spacing:-14.666667pt;}
.wse2{word-spacing:-14.549333pt;}
.wsc5{word-spacing:-14.453333pt;}
.ws68{word-spacing:-14.400000pt;}
.ws6b{word-spacing:-14.346667pt;}
.wsc6{word-spacing:-14.293333pt;}
.ws69{word-spacing:-14.240000pt;}
.wsb1{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.973333pt;}
.ws6a{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.wse0{word-spacing:-13.760000pt;}
.wsb0{word-spacing:-13.066667pt;}
.wse1{word-spacing:-13.013333pt;}
.wsc4{word-spacing:-12.906667pt;}
.ws7c{word-spacing:-12.800000pt;}
.ws48{word-spacing:-11.712000pt;}
.ws4{word-spacing:-11.604267pt;}
.wsd3{word-spacing:-11.360000pt;}
.ws89{word-spacing:-10.624000pt;}
.wse7{word-spacing:-10.293333pt;}
.wsad{word-spacing:-10.117333pt;}
.ws9c{word-spacing:-10.090667pt;}
.ws6{word-spacing:-9.968000pt;}
.ws6e{word-spacing:-9.930667pt;}
.ws6d{word-spacing:-9.893333pt;}
.ws5c{word-spacing:-9.600000pt;}
.wsc3{word-spacing:-8.544000pt;}
.wsa3{word-spacing:-8.512000pt;}
.wsc7{word-spacing:-8.160000pt;}
.ws33{word-spacing:-7.424000pt;}
.wsc1{word-spacing:-6.026667pt;}
.wsdd{word-spacing:-4.960000pt;}
.ws25{word-spacing:-4.480000pt;}
.ws47{word-spacing:-4.224000pt;}
.wsb6{word-spacing:-4.032000pt;}
.wscb{word-spacing:-3.893333pt;}
.ws2a{word-spacing:-3.776000pt;}
.wsa5{word-spacing:-3.456000pt;}
.ws37{word-spacing:-3.392000pt;}
.ws41{word-spacing:-3.200000pt;}
.ws3f{word-spacing:-3.136000pt;}
.ws38{word-spacing:-2.944000pt;}
.wsbe{word-spacing:-2.826667pt;}
.wsb3{word-spacing:-2.816000pt;}
.ws80{word-spacing:-2.688000pt;}
.ws4c{word-spacing:-2.432000pt;}
.ws94{word-spacing:-2.368000pt;}
.ws35{word-spacing:-2.112000pt;}
.wsbd{word-spacing:-1.984000pt;}
.ws63{word-spacing:-1.920000pt;}
.ws30{word-spacing:-1.792000pt;}
.ws40{word-spacing:-1.728000pt;}
.ws4d{word-spacing:-1.664000pt;}
.wsed{word-spacing:-1.653333pt;}
.wsa4{word-spacing:-1.280000pt;}
.ws3b{word-spacing:-1.216000pt;}
.wseb{word-spacing:-1.066667pt;}
.ws5d{word-spacing:-1.024000pt;}
.wsee{word-spacing:-1.013333pt;}
.wsec{word-spacing:-0.906667pt;}
.ws8e{word-spacing:-0.832000pt;}
.wsc0{word-spacing:-0.800000pt;}
.ws3c{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.704000pt;}
.wsdb{word-spacing:-0.693333pt;}
.wsa2{word-spacing:-0.640000pt;}
.wsc9{word-spacing:-0.586667pt;}
.ws5a{word-spacing:-0.576000pt;}
.ws3a{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.480000pt;}
.ws74{word-spacing:-0.448000pt;}
.ws1e{word-spacing:-0.426667pt;}
.ws17{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws45{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.192000pt;}
.ws39{word-spacing:-0.128000pt;}
.wsce{word-spacing:-0.106667pt;}
.ws98{word-spacing:-0.064000pt;}
.wsd2{word-spacing:-0.053333pt;}
.ws14{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053333pt;}
.wsf5{word-spacing:0.058667pt;}
.ws29{word-spacing:0.064000pt;}
.wsd1{word-spacing:0.106667pt;}
.ws82{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.149333pt;}
.wsdc{word-spacing:0.160000pt;}
.ws26{word-spacing:0.192000pt;}
.ws4b{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.256000pt;}
.ws20{word-spacing:0.266667pt;}
.ws3e{word-spacing:0.320000pt;}
.wsf8{word-spacing:0.352000pt;}
.ws1a{word-spacing:0.373333pt;}
.ws2e{word-spacing:0.384000pt;}
.ws99{word-spacing:0.410667pt;}
.ws1f{word-spacing:0.426667pt;}
.ws44{word-spacing:0.448000pt;}
.wsf7{word-spacing:0.469333pt;}
.wsd4{word-spacing:0.480000pt;}
.ws32{word-spacing:0.512000pt;}
.wsa1{word-spacing:0.576000pt;}
.wsd6{word-spacing:0.640000pt;}
.wsea{word-spacing:0.693333pt;}
.ws3d{word-spacing:0.704000pt;}
.wsb8{word-spacing:0.768000pt;}
.ws21{word-spacing:0.832000pt;}
.wse5{word-spacing:0.960000pt;}
.ws8a{word-spacing:1.088000pt;}
.wsa0{word-spacing:1.152000pt;}
.ws7b{word-spacing:1.280000pt;}
.wsd5{word-spacing:1.333333pt;}
.wscf{word-spacing:1.440000pt;}
.ws23{word-spacing:1.472000pt;}
.ws22{word-spacing:1.536000pt;}
.wsd9{word-spacing:1.546667pt;}
.ws9f{word-spacing:1.600000pt;}
.wsda{word-spacing:1.653333pt;}
.wsaa{word-spacing:1.920000pt;}
.ws31{word-spacing:2.176000pt;}
.ws81{word-spacing:2.432000pt;}
.ws7f{word-spacing:2.496000pt;}
.wse8{word-spacing:2.506667pt;}
.wsd8{word-spacing:2.613333pt;}
.ws56{word-spacing:2.624000pt;}
.ws65{word-spacing:2.688000pt;}
.wsef{word-spacing:2.773333pt;}
.ws8f{word-spacing:3.008000pt;}
.wsf6{word-spacing:3.168000pt;}
.ws46{word-spacing:3.200000pt;}
.wsd7{word-spacing:3.253333pt;}
.ws55{word-spacing:3.264000pt;}
.wsb5{word-spacing:3.392000pt;}
.ws64{word-spacing:3.456000pt;}
.wsbf{word-spacing:3.573333pt;}
.wsac{word-spacing:3.584000pt;}
.wsab{word-spacing:3.648000pt;}
.ws42{word-spacing:3.712000pt;}
.ws66{word-spacing:4.032000pt;}
.wsd0{word-spacing:4.266667pt;}
.ws93{word-spacing:4.288000pt;}
.wscc{word-spacing:4.320000pt;}
.ws57{word-spacing:4.352000pt;}
.ws92{word-spacing:4.480000pt;}
.ws58{word-spacing:4.544000pt;}
.ws77{word-spacing:4.672000pt;}
.ws59{word-spacing:4.736000pt;}
.wse9{word-spacing:4.906667pt;}
.wsdf{word-spacing:5.813333pt;}
.ws36{word-spacing:5.824000pt;}
.ws7a{word-spacing:6.144000pt;}
.wsb4{word-spacing:6.208000pt;}
.wscd{word-spacing:6.400000pt;}
.wsde{word-spacing:6.453333pt;}
.wsf0{word-spacing:6.613333pt;}
.ws34{word-spacing:6.656000pt;}
.ws85{word-spacing:6.784000pt;}
.ws73{word-spacing:6.912000pt;}
.wsf2{word-spacing:7.200000pt;}
.wsf1{word-spacing:7.520000pt;}
.ws4f{word-spacing:8.320000pt;}
.ws75{word-spacing:8.576000pt;}
.ws76{word-spacing:8.896000pt;}
.ws4e{word-spacing:9.024000pt;}
.ws9e{word-spacing:9.344000pt;}
.ws78{word-spacing:9.408000pt;}
.wsbc{word-spacing:9.664000pt;}
.ws79{word-spacing:9.984000pt;}
.wsbb{word-spacing:10.112000pt;}
.wsa8{word-spacing:10.368000pt;}
.wsb7{word-spacing:10.432000pt;}
.ws54{word-spacing:10.688000pt;}
.wse6{word-spacing:10.720000pt;}
.ws53{word-spacing:11.136000pt;}
.ws86{word-spacing:11.520000pt;}
.ws9b{word-spacing:11.776000pt;}
.wsa7{word-spacing:12.096000pt;}
.ws9a{word-spacing:12.224000pt;}
.ws2c{word-spacing:12.608000pt;}
.wsf4{word-spacing:12.730667pt;}
.ws7d{word-spacing:12.864000pt;}
.ws7e{word-spacing:13.184000pt;}
.wsf3{word-spacing:13.200000pt;}
.ws2b{word-spacing:13.312000pt;}
.ws87{word-spacing:13.632000pt;}
.ws88{word-spacing:13.888000pt;}
.ws61{word-spacing:14.720000pt;}
.ws62{word-spacing:15.296000pt;}
.ws43{word-spacing:15.360000pt;}
.ws8b{word-spacing:15.424000pt;}
.wsca{word-spacing:16.053333pt;}
.ws2f{word-spacing:16.064000pt;}
.ws2d{word-spacing:16.192000pt;}
.wsb9{word-spacing:16.512000pt;}
.ws52{word-spacing:17.536000pt;}
.wsc2{word-spacing:18.186667pt;}
.ws90{word-spacing:18.240000pt;}
.ws5b{word-spacing:18.624000pt;}
.ws91{word-spacing:19.584000pt;}
.ws5e{word-spacing:23.232000pt;}
.ws60{word-spacing:23.488000pt;}
.ws5f{word-spacing:23.936000pt;}
.ws27{word-spacing:25.664000pt;}
.ws28{word-spacing:26.112000pt;}
.wsa6{word-spacing:27.008000pt;}
.ws50{word-spacing:28.544000pt;}
.ws51{word-spacing:29.056000pt;}
.wsb2{word-spacing:30.336000pt;}
.ws24{word-spacing:35.264000pt;}
.ws84{word-spacing:36.288000pt;}
.ws83{word-spacing:36.736000pt;}
.wsba{word-spacing:43.136000pt;}
._22{margin-left:-13.836800pt;}
._18{margin-left:-12.844800pt;}
._16{margin-left:-11.392000pt;}
._1a{margin-left:-10.489600pt;}
._1f{margin-left:-9.476267pt;}
._c{margin-left:-8.556800pt;}
._b{margin-left:-7.232000pt;}
._f{margin-left:-6.291200pt;}
._14{margin-left:-4.802133pt;}
._6{margin-left:-3.818667pt;}
._a{margin-left:-2.193067pt;}
._2{margin-left:-1.226667pt;}
._0{width:1.013333pt;}
._5{width:2.116267pt;}
._10{width:3.037867pt;}
._9{width:3.927467pt;}
._15{width:4.872533pt;}
._21{width:5.924267pt;}
._d{width:7.027200pt;}
._e{width:8.044800pt;}
._11{width:9.068800pt;}
._1e{width:10.246400pt;}
._17{width:11.712000pt;}
._19{width:12.870400pt;}
._13{width:14.141867pt;}
._12{width:15.500800pt;}
._25{width:18.606933pt;}
._24{width:24.138667pt;}
._1c{width:25.553067pt;}
._1d{width:27.520000pt;}
._8{width:29.427200pt;}
._7{width:30.592000pt;}
._20{width:533.226667pt;}
._3{width:572.320000pt;}
._1{width:607.840000pt;}
._4{width:689.760000pt;}
._1b{width:700.533333pt;}
._23{width:1032.748800pt;}
.fs9{font-size:10.666667pt;}
.fs2{font-size:21.333333pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:45.866667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:0.266667pt;}
.y99{bottom:1.066667pt;}
.yaf{bottom:1.600000pt;}
.y9{bottom:2.933333pt;}
.ybd{bottom:4.000000pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.066667pt;}
.ycf{bottom:25.066667pt;}
.y9e{bottom:25.333333pt;}
.y101{bottom:45.866667pt;}
.yaa{bottom:46.133333pt;}
.y4{bottom:60.266667pt;}
.yda{bottom:86.133333pt;}
.y95{bottom:90.410667pt;}
.ydd{bottom:90.666667pt;}
.y148{bottom:92.533333pt;}
.y11a{bottom:92.538667pt;}
.y37{bottom:93.338667pt;}
.yad{bottom:93.600000pt;}
.yfe{bottom:93.605333pt;}
.y17e{bottom:96.000000pt;}
.yc7{bottom:96.266667pt;}
.ya9{bottom:101.866667pt;}
.y147{bottom:109.600000pt;}
.ydc{bottom:109.866667pt;}
.yc6{bottom:110.133333pt;}
.y94{bottom:110.938667pt;}
.ydb{bottom:111.200000pt;}
.y119{bottom:113.066667pt;}
.y36{bottom:114.138667pt;}
.yfd{bottom:114.405333pt;}
.y66{bottom:120.800000pt;}
.yc5{bottom:124.000000pt;}
.y146{bottom:126.933333pt;}
.yac{bottom:127.200000pt;}
.yd9{bottom:127.466667pt;}
.y17d{bottom:130.400000pt;}
.y93{bottom:131.738667pt;}
.y118{bottom:133.866667pt;}
.yfc{bottom:134.933333pt;}
.y35{bottom:134.938667pt;}
.yc4{bottom:139.200000pt;}
.y65{bottom:141.616000pt;}
.y145{bottom:144.266667pt;}
.y17c{bottom:147.733333pt;}
.yab{bottom:148.000000pt;}
.y117{bottom:151.733333pt;}
.y92{bottom:152.538667pt;}
.y34{bottom:155.466667pt;}
.yfb{bottom:155.733333pt;}
.yc3{bottom:160.000000pt;}
.y116{bottom:161.600000pt;}
.y64{bottom:162.416000pt;}
.ya8{bottom:164.000000pt;}
.y17b{bottom:165.066667pt;}
.y91{bottom:173.088000pt;}
.y33{bottom:176.277333pt;}
.yfa{bottom:176.549333pt;}
.y144{bottom:178.666667pt;}
.y115{bottom:179.200000pt;}
.yc2{bottom:180.800000pt;}
.y17a{bottom:182.133333pt;}
.y63{bottom:182.944000pt;}
.ya6{bottom:184.800000pt;}
.y114{bottom:189.066667pt;}
.y90{bottom:193.888000pt;}
.y143{bottom:196.000000pt;}
.y32{bottom:197.077333pt;}
.y179{bottom:199.466667pt;}
.yc1{bottom:199.733333pt;}
.y62{bottom:203.744000pt;}
.y113{bottom:209.866667pt;}
.yc0{bottom:211.466667pt;}
.y142{bottom:213.333333pt;}
.y8f{bottom:214.688000pt;}
.y178{bottom:216.800000pt;}
.y31{bottom:217.605333pt;}
.yf9{bottom:217.877333pt;}
.y61{bottom:224.544000pt;}
.y112{bottom:228.800000pt;}
.y141{bottom:229.600000pt;}
.y177{bottom:233.866667pt;}
.ybf{bottom:234.400000pt;}
.y8e{bottom:235.216000pt;}
.y30{bottom:238.405333pt;}
.yf8{bottom:238.677333pt;}
.y10f{bottom:239.733333pt;}
.y18a{bottom:241.333333pt;}
.y111{bottom:244.266667pt;}
.y140{bottom:245.066667pt;}
.y60{bottom:245.072000pt;}
.ybe{bottom:249.333333pt;}
.y176{bottom:251.200000pt;}
.y8d{bottom:256.016000pt;}
.y2f{bottom:258.933333pt;}
.yf7{bottom:259.205333pt;}
.y13f{bottom:264.266667pt;}
.y110{bottom:265.066667pt;}
.y5f{bottom:265.872000pt;}
.y175{bottom:268.533333pt;}
.ybc{bottom:269.066667pt;}
.y8c{bottom:276.544000pt;}
.y189{bottom:276.800000pt;}
.y2e{bottom:279.733333pt;}
.y13e{bottom:279.754667pt;}
.yf6{bottom:280.005333pt;}
.y10d{bottom:281.066667pt;}
.y10e{bottom:285.600000pt;}
.y5e{bottom:286.400000pt;}
.y188{bottom:291.726667pt;}
.ybb{bottom:293.072000pt;}
.y8b{bottom:297.344000pt;}
.y13d{bottom:300.282667pt;}
.yf5{bottom:300.533333pt;}
.y2d{bottom:300.538667pt;}
.y10c{bottom:301.866667pt;}
.y174{bottom:302.933333pt;}
.y5d{bottom:307.200000pt;}
.y187{bottom:310.661333pt;}
.yba{bottom:313.872000pt;}
.y8a{bottom:318.144000pt;}
.y173{bottom:320.266667pt;}
.y2c{bottom:321.066667pt;}
.y13c{bottom:321.082667pt;}
.yf4{bottom:321.333333pt;}
.y5c{bottom:328.010667pt;}
.y186{bottom:329.596000pt;}
.yb9{bottom:334.672000pt;}
.y172{bottom:337.600000pt;}
.y89{bottom:338.672000pt;}
.y13b{bottom:341.610667pt;}
.y2b{bottom:341.866667pt;}
.yf3{bottom:342.138667pt;}
.y5b{bottom:348.538667pt;}
.y185{bottom:352.534667pt;}
.y171{bottom:354.666667pt;}
.yb8{bottom:355.200000pt;}
.y88{bottom:359.472000pt;}
.y2a{bottom:359.733333pt;}
.y13a{bottom:362.410667pt;}
.yf2{bottom:362.666667pt;}
.y5a{bottom:369.338667pt;}
.y29{bottom:369.605333pt;}
.y170{bottom:372.000000pt;}
.yb7{bottom:376.000000pt;}
.ya5{bottom:377.866667pt;}
.y87{bottom:380.272000pt;}
.y139{bottom:383.210667pt;}
.yf1{bottom:383.466667pt;}
.y16f{bottom:389.333333pt;}
.y28{bottom:390.133333pt;}
.y59{bottom:390.138667pt;}
.y184{bottom:390.932000pt;}
.ya4{bottom:393.338667pt;}
.yb6{bottom:395.200000pt;}
.yf0{bottom:400.533333pt;}
.y86{bottom:400.800000pt;}
.y138{bottom:403.738667pt;}
.yef{bottom:405.862400pt;}
.yb3{bottom:405.866667pt;}
.y16e{bottom:406.400000pt;}
.y27{bottom:408.000000pt;}
.y183{bottom:409.866667pt;}
.y58{bottom:410.672000pt;}
.ya3{bottom:413.866667pt;}
.y26{bottom:417.872000pt;}
.yd8{bottom:419.200000pt;}
.y85{bottom:421.600000pt;}
.y16d{bottom:423.733333pt;}
.y137{bottom:424.538667pt;}
.y182{bottom:427.733333pt;}
.yd7{bottom:429.072000pt;}
.yb5{bottom:429.866667pt;}
.yb4{bottom:431.200000pt;}
.y57{bottom:431.472000pt;}
.yee{bottom:434.133333pt;}
.ya2{bottom:434.672000pt;}
.y25{bottom:438.405333pt;}
.y84{bottom:440.800000pt;}
.y16c{bottom:441.066667pt;}
.yed{bottom:441.333333pt;}
.y181{bottom:442.133333pt;}
.y136{bottom:445.338667pt;}
.yb2{bottom:447.466667pt;}
.yd6{bottom:449.872000pt;}
.y56{bottom:452.272000pt;}
.y83{bottom:453.066667pt;}
.ya1{bottom:455.200000pt;}
.y16b{bottom:458.133333pt;}
.y24{bottom:459.205333pt;}
.y180{bottom:459.466667pt;}
.y82{bottom:461.066667pt;}
.yec{bottom:462.138667pt;}
.y135{bottom:465.866667pt;}
.yb1{bottom:468.000000pt;}
.y81{bottom:469.066667pt;}
.yd5{bottom:470.672000pt;}
.y55{bottom:472.805333pt;}
.ya0{bottom:473.066667pt;}
.y16a{bottom:475.466667pt;}
.y17f{bottom:476.000000pt;}
.y9d{bottom:478.400000pt;}
.y23{bottom:480.005333pt;}
.yeb{bottom:482.666667pt;}
.y9f{bottom:482.933333pt;}
.y134{bottom:484.266667pt;}
.y80{bottom:490.666667pt;}
.yd4{bottom:491.200000pt;}
.y169{bottom:492.800000pt;}
.y54{bottom:493.605333pt;}
.y133{bottom:497.072000pt;}
.y22{bottom:500.533333pt;}
.y7f{bottom:500.538667pt;}
.yea{bottom:503.472000pt;}
.yd3{bottom:509.066667pt;}
.y168{bottom:510.133333pt;}
.y10b{bottom:510.933333pt;}
.y53{bottom:514.133333pt;}
.yce{bottom:514.400000pt;}
.y132{bottom:517.600000pt;}
.yd2{bottom:518.933333pt;}
.y9c{bottom:519.733333pt;}
.y7e{bottom:521.082667pt;}
.y21{bottom:521.333333pt;}
.ye9{bottom:524.000000pt;}
.y10a{bottom:526.405333pt;}
.y167{bottom:527.200000pt;}
.y52{bottom:534.965333pt;}
.yd1{bottom:538.133333pt;}
.y131{bottom:538.405333pt;}
.yd0{bottom:539.466667pt;}
.y9b{bottom:540.533333pt;}
.y7d{bottom:541.882667pt;}
.y20{bottom:542.149333pt;}
.y166{bottom:543.200000pt;}
.y165{bottom:544.533333pt;}
.ye8{bottom:544.800000pt;}
.y109{bottom:547.205333pt;}
.ycc{bottom:555.733333pt;}
.y51{bottom:555.765333pt;}
.y130{bottom:559.205333pt;}
.ycd{bottom:560.266667pt;}
.y164{bottom:561.866667pt;}
.ye7{bottom:562.666667pt;}
.y1f{bottom:562.677333pt;}
.y7c{bottom:562.682667pt;}
.y108{bottom:567.733333pt;}
.ye4{bottom:568.000000pt;}
.ye6{bottom:571.200000pt;}
.ye5{bottom:572.533333pt;}
.y50{bottom:576.293333pt;}
.ycb{bottom:576.533333pt;}
.y163{bottom:578.933333pt;}
.y12f{bottom:579.733333pt;}
.y7b{bottom:583.210667pt;}
.y1e{bottom:583.477333pt;}
.ye3{bottom:588.533333pt;}
.y162{bottom:596.266667pt;}
.y4f{bottom:597.093333pt;}
.y12e{bottom:600.533333pt;}
.y1d{bottom:604.005333pt;}
.y7a{bottom:604.010667pt;}
.y107{bottom:609.338667pt;}
.y161{bottom:613.600000pt;}
.y4e{bottom:617.893333pt;}
.y12d{bottom:621.344000pt;}
.y1c{bottom:624.805333pt;}
.y79{bottom:624.810667pt;}
.y106{bottom:629.866667pt;}
.y160{bottom:630.666667pt;}
.y4d{bottom:638.421333pt;}
.y12c{bottom:641.872000pt;}
.y78{bottom:645.338667pt;}
.y1b{bottom:645.605333pt;}
.y105{bottom:647.733333pt;}
.y15f{bottom:648.000000pt;}
.y100{bottom:653.066667pt;}
.y104{bottom:657.605333pt;}
.y4c{bottom:659.221333pt;}
.y12b{bottom:662.672000pt;}
.y15e{bottom:665.333333pt;}
.y1a{bottom:666.133333pt;}
.y77{bottom:666.138667pt;}
.y103{bottom:678.133333pt;}
.y4b{bottom:680.021333pt;}
.y15d{bottom:682.666667pt;}
.y12a{bottom:683.472000pt;}
.y76{bottom:686.666667pt;}
.y19{bottom:686.938667pt;}
.y102{bottom:698.933333pt;}
.y15c{bottom:699.733333pt;}
.y4a{bottom:700.549333pt;}
.y129{bottom:704.000000pt;}
.y75{bottom:707.482667pt;}
.y18{bottom:707.738667pt;}
.yb0{bottom:709.866667pt;}
.yff{bottom:715.200000pt;}
.y15b{bottom:717.066667pt;}
.y49{bottom:721.349333pt;}
.y128{bottom:724.821333pt;}
.y17{bottom:728.266667pt;}
.y74{bottom:728.282667pt;}
.yae{bottom:730.400000pt;}
.y15a{bottom:734.400000pt;}
.y9a{bottom:734.666667pt;}
.y48{bottom:742.149333pt;}
.y127{bottom:745.349333pt;}
.y16{bottom:746.133333pt;}
.y73{bottom:748.810667pt;}
.y159{bottom:751.466667pt;}
.y15{bottom:755.200000pt;}
.y98{bottom:755.466667pt;}
.y47{bottom:762.677333pt;}
.y126{bottom:766.149333pt;}
.y158{bottom:768.800000pt;}
.y72{bottom:769.610667pt;}
.y14{bottom:772.533333pt;}
.y46{bottom:783.477333pt;}
.y157{bottom:786.133333pt;}
.y125{bottom:786.949333pt;}
.y13{bottom:787.466667pt;}
.y71{bottom:790.410667pt;}
.y12{bottom:796.533333pt;}
.yc9{bottom:800.533333pt;}
.y156{bottom:803.200000pt;}
.y45{bottom:804.005333pt;}
.yca{bottom:805.066667pt;}
.y124{bottom:807.477333pt;}
.y70{bottom:810.938667pt;}
.y11{bottom:813.866667pt;}
.y155{bottom:820.533333pt;}
.yc8{bottom:821.066667pt;}
.y44{bottom:824.805333pt;}
.y123{bottom:828.277333pt;}
.y10{bottom:830.933333pt;}
.y6f{bottom:831.738667pt;}
.y154{bottom:837.866667pt;}
.y43{bottom:845.605333pt;}
.yf{bottom:849.066667pt;}
.y122{bottom:849.077333pt;}
.y6e{bottom:852.538667pt;}
.y153{bottom:855.200000pt;}
.y42{bottom:866.133333pt;}
.ye{bottom:869.066667pt;}
.y121{bottom:869.605333pt;}
.ye2{bottom:870.133333pt;}
.y152{bottom:872.266667pt;}
.y6d{bottom:873.066667pt;}
.ye1{bottom:880.010667pt;}
.y41{bottom:886.933333pt;}
.yd{bottom:887.728000pt;}
.y151{bottom:889.600000pt;}
.y120{bottom:890.405333pt;}
.y6c{bottom:893.877333pt;}
.ye0{bottom:900.810667pt;}
.y150{bottom:906.933333pt;}
.y40{bottom:907.733333pt;}
.y11f{bottom:911.205333pt;}
.yc{bottom:911.738667pt;}
.y6b{bottom:914.677333pt;}
.ydf{bottom:921.338667pt;}
.y14f{bottom:924.000000pt;}
.y3f{bottom:925.333333pt;}
.y11e{bottom:931.733333pt;}
.y3e{bottom:935.200000pt;}
.y6a{bottom:935.205333pt;}
.y14e{bottom:941.333333pt;}
.yde{bottom:942.138667pt;}
.yb{bottom:943.733333pt;}
.y11d{bottom:952.533333pt;}
.y97{bottom:953.066667pt;}
.y3d{bottom:956.000000pt;}
.y69{bottom:956.005333pt;}
.y14d{bottom:958.666667pt;}
.y8{bottom:962.933333pt;}
.y96{bottom:962.938667pt;}
.y11c{bottom:973.333333pt;}
.y3c{bottom:973.600000pt;}
.y14c{bottom:975.733333pt;}
.y68{bottom:976.533333pt;}
.y3b{bottom:983.466667pt;}
.y6{bottom:984.266667pt;}
.y11b{bottom:991.466667pt;}
.y14b{bottom:993.066667pt;}
.y67{bottom:994.400000pt;}
.y3a{bottom:1004.266667pt;}
.y5{bottom:1006.666667pt;}
.y14a{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y39{bottom:1025.066667pt;}
.y149{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y38{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h26{height:9.280000pt;}
.h4{height:18.560000pt;}
.h20{height:18.932000pt;}
.h1e{height:18.933333pt;}
.h1a{height:20.533333pt;}
.h14{height:20.800000pt;}
.h5{height:20.801333pt;}
.h8{height:21.333333pt;}
.h18{height:27.840000pt;}
.h1d{height:32.480000pt;}
.h11{height:37.120000pt;}
.h2c{height:38.080000pt;}
.h15{height:41.333333pt;}
.h2{height:41.493333pt;}
.h1c{height:41.600000pt;}
.h1f{height:41.888000pt;}
.h7{height:42.134667pt;}
.h6{height:45.696000pt;}
.hb{height:46.400000pt;}
.h2e{height:47.040000pt;}
.hd{height:49.792000pt;}
.h21{height:51.040000pt;}
.h2d{height:51.733333pt;}
.he{height:52.317708pt;}
.ha{height:53.312000pt;}
.hc{height:55.680000pt;}
.h17{height:62.133333pt;}
.h3{height:62.812500pt;}
.h9{height:64.960000pt;}
.h10{height:87.680000pt;}
.h28{height:87.697067pt;}
.h2b{height:91.656250pt;}
.h27{height:103.020312pt;}
.hf{height:108.353646pt;}
.h16{height:190.133333pt;}
.h13{height:194.133333pt;}
.h12{height:196.000000pt;}
.h2a{height:206.132000pt;}
.h22{height:220.001333pt;}
.h23{height:224.000000pt;}
.h19{height:241.600000pt;}
.h1b{height:241.866667pt;}
.h25{height:280.001333pt;}
.h24{height:290.133333pt;}
.h29{height:325.866667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.wc{width:303.733333pt;}
.wb{width:305.066667pt;}
.w6{width:310.933333pt;}
.w8{width:315.198667pt;}
.w9{width:315.200000pt;}
.w5{width:320.266667pt;}
.w2{width:425.066667pt;}
.wa{width:630.400000pt;}
.w7{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x48{left:8.266667pt;}
.x26{left:10.933333pt;}
.x56{left:13.066667pt;}
.x40{left:18.933333pt;}
.x50{left:22.933333pt;}
.x39{left:27.466667pt;}
.x2c{left:49.333333pt;}
.x1e{left:56.533333pt;}
.x49{left:68.800000pt;}
.x3{left:70.933333pt;}
.x27{left:74.133333pt;}
.x57{left:76.266667pt;}
.x1{left:81.333333pt;}
.x52{left:86.133333pt;}
.x12{left:87.466667pt;}
.x22{left:88.538667pt;}
.x53{left:89.600000pt;}
.x3b{left:90.666667pt;}
.x2f{left:92.533333pt;}
.x59{left:100.266667pt;}
.x5b{left:105.333333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x1f{left:120.533333pt;}
.x31{left:121.866667pt;}
.x30{left:126.400000pt;}
.x14{left:128.533333pt;}
.x3e{left:130.400000pt;}
.x33{left:134.133333pt;}
.x35{left:144.266667pt;}
.x32{left:147.200000pt;}
.x1b{left:148.800000pt;}
.x21{left:150.933333pt;}
.xd{left:152.000000pt;}
.x1a{left:153.866667pt;}
.x58{left:158.133333pt;}
.x10{left:159.461333pt;}
.x41{left:160.533333pt;}
.x51{left:164.533333pt;}
.x3a{left:169.066667pt;}
.x4e{left:175.733333pt;}
.x2e{left:181.333333pt;}
.x13{left:185.338667pt;}
.xa{left:194.136000pt;}
.x4a{left:206.133333pt;}
.xe{left:216.266667pt;}
.x4c{left:221.600000pt;}
.x29{left:226.133333pt;}
.xc{left:235.200000pt;}
.x34{left:238.400000pt;}
.x2b{left:242.133333pt;}
.x37{left:245.066667pt;}
.x3d{left:258.666667pt;}
.x25{left:275.466667pt;}
.x24{left:281.866667pt;}
.x23{left:283.200000pt;}
.x19{left:287.466667pt;}
.xb{left:288.533333pt;}
.x20{left:296.800000pt;}
.x4b{left:298.133333pt;}
.x28{left:302.400000pt;}
.x36{left:304.533333pt;}
.x1d{left:309.600000pt;}
.x17{left:313.066667pt;}
.x54{left:314.133333pt;}
.x2a{left:318.400000pt;}
.xf{left:332.533333pt;}
.x3c{left:334.933333pt;}
.x46{left:344.800000pt;}
.x43{left:363.200000pt;}
.x45{left:379.200000pt;}
.x9{left:393.066667pt;}
.x2{left:396.800000pt;}
.x11{left:400.000000pt;}
.x18{left:401.600000pt;}
.x16{left:407.466667pt;}
.x15{left:420.533333pt;}
.x42{left:439.466667pt;}
.x3f{left:453.600000pt;}
.x44{left:455.466667pt;}
.x1c{left:464.000000pt;}
.x5{left:496.000000pt;}
.x47{left:541.600000pt;}
.x55{left:545.600000pt;}
.x4f{left:554.133333pt;}
.x38{left:560.533333pt;}
.x7{left:609.600000pt;}
.x2d{left:663.733333pt;}
.x5a{left:689.866667pt;}
.x4d{left:703.466667pt;}
}




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