
    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_bd6d8c310129823190a9a517.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_0a7041e3906f64dfd972e48f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_9b166e292b864cea9c8e4207.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_cb1f4698db98290c4971d03d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.882324;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_34621869a4e5f1ed6c70652d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_c4fd37ab76e2b03bfe0db915.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.975586;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_d54caf60905aa6e28a230f31.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_5d3d40d7013381255c6f0001.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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);}
.vc{vertical-align:-35.988480px;}
.vd{vertical-align:-32.374800px;}
.v4{vertical-align:-27.360000px;}
.v5{vertical-align:-20.880000px;}
.v6{vertical-align:-14.400000px;}
.v9{vertical-align:-10.090800px;}
.v1{vertical-align:-5.747040px;}
.v12{vertical-align:-2.862720px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:2.880000px;}
.v2{vertical-align:5.760000px;}
.v10{vertical-align:10.080000px;}
.v13{vertical-align:12.960000px;}
.v7{vertical-align:14.400000px;}
.v15{vertical-align:20.880000px;}
.v14{vertical-align:25.200000px;}
.v3{vertical-align:27.360000px;}
.ve{vertical-align:36.000000px;}
.v17{vertical-align:41.040000px;}
.v8{vertical-align:42.480000px;}
.va{vertical-align:46.080000px;}
.v11{vertical-align:61.200000px;}
.vb{vertical-align:64.080000px;}
.vf{vertical-align:92.880000px;}
.ls39{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls77{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.758160px;}
.ls4f{letter-spacing:-0.720000px;}
.ls53{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.530640px;}
.ls18{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.337680px;}
.lse{letter-spacing:-0.336960px;}
.ls17{letter-spacing:-0.288000px;}
.ls99{letter-spacing:-0.255600px;}
.ls56{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.132480px;}
.ls7e{letter-spacing:-0.119520px;}
.ls9a{letter-spacing:-0.102240px;}
.ls48{letter-spacing:-0.051120px;}
.lsb{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.028080px;}
.ls55{letter-spacing:0.038880px;}
.ls54{letter-spacing:0.059760px;}
.ls2a{letter-spacing:0.072000px;}
.ls7c{letter-spacing:0.100800px;}
.ls76{letter-spacing:0.119520px;}
.ls15{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.144000px;}
.ls90{letter-spacing:0.151200px;}
.lsd{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.179280px;}
.ls7a{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.181440px;}
.ls19{letter-spacing:0.192960px;}
.ls1a{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.223920px;}
.ls9c{letter-spacing:0.226080px;}
.ls7d{letter-spacing:0.239040px;}
.ls9d{letter-spacing:0.241200px;}
.ls79{letter-spacing:0.259920px;}
.lsa0{letter-spacing:0.264960px;}
.ls6d{letter-spacing:0.268560px;}
.ls4d{letter-spacing:0.269280px;}
.ls1c{letter-spacing:0.288000px;}
.ls59{letter-spacing:0.292320px;}
.ls7b{letter-spacing:0.298800px;}
.ls42{letter-spacing:0.306720px;}
.lsc{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.337680px;}
.ls97{letter-spacing:0.357840px;}
.ls1e{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.361800px;}
.ls10{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.385920px;}
.ls6c{letter-spacing:0.408960px;}
.ls38{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.504000px;}
.lsa1{letter-spacing:0.576000px;}
.ls9e{letter-spacing:0.674640px;}
.ls52{letter-spacing:0.715680px;}
.ls29{letter-spacing:0.720000px;}
.ls3d{letter-spacing:1.080000px;}
.ls5c{letter-spacing:1.152000px;}
.ls98{letter-spacing:1.329120px;}
.ls63{letter-spacing:1.411200px;}
.ls23{letter-spacing:1.440000px;}
.ls95{letter-spacing:1.738080px;}
.ls41{letter-spacing:2.054880px;}
.ls62{letter-spacing:2.062080px;}
.ls3e{letter-spacing:2.088000px;}
.ls69{letter-spacing:2.131200px;}
.ls21{letter-spacing:2.160000px;}
.ls78{letter-spacing:2.167200px;}
.ls92{letter-spacing:2.304000px;}
.ls66{letter-spacing:2.324160px;}
.ls94{letter-spacing:2.368800px;}
.ls70{letter-spacing:2.520000px;}
.ls91{letter-spacing:2.801520px;}
.ls32{letter-spacing:2.880000px;}
.ls4c{letter-spacing:2.980800px;}
.ls96{letter-spacing:3.088800px;}
.ls9{letter-spacing:3.600000px;}
.ls43{letter-spacing:4.038480px;}
.ls75{letter-spacing:4.057920px;}
.ls3c{letter-spacing:4.130640px;}
.ls5a{letter-spacing:4.291200px;}
.ls27{letter-spacing:4.320000px;}
.ls5f{letter-spacing:5.011200px;}
.ls7{letter-spacing:5.040000px;}
.ls36{letter-spacing:5.760000px;}
.ls50{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.920000px;}
.ls2e{letter-spacing:8.640000px;}
.ls8{letter-spacing:9.360000px;}
.ls46{letter-spacing:10.080000px;}
.ls20{letter-spacing:10.800000px;}
.ls57{letter-spacing:10.814400px;}
.ls3a{letter-spacing:11.520000px;}
.ls4e{letter-spacing:12.240000px;}
.ls25{letter-spacing:12.960000px;}
.ls2c{letter-spacing:13.680000px;}
.ls9b{letter-spacing:14.400000px;}
.ls3f{letter-spacing:15.552000px;}
.ls33{letter-spacing:15.840000px;}
.ls5e{letter-spacing:16.056000px;}
.ls30{letter-spacing:16.560000px;}
.ls34{letter-spacing:17.280000px;}
.ls5d{letter-spacing:17.902080px;}
.ls72{letter-spacing:18.000000px;}
.ls37{letter-spacing:18.720000px;}
.ls5{letter-spacing:19.440000px;}
.ls6a{letter-spacing:19.604160px;}
.ls65{letter-spacing:19.656000px;}
.ls44{letter-spacing:20.090160px;}
.ls4{letter-spacing:20.160000px;}
.ls4b{letter-spacing:20.188080px;}
.ls4a{letter-spacing:20.376000px;}
.ls93{letter-spacing:20.448000px;}
.ls74{letter-spacing:20.834640px;}
.ls68{letter-spacing:21.168000px;}
.ls58{letter-spacing:21.600000px;}
.ls6b{letter-spacing:21.672000px;}
.ls5b{letter-spacing:21.888000px;}
.ls60{letter-spacing:21.960000px;}
.ls64{letter-spacing:23.482800px;}
.ls49{letter-spacing:23.788080px;}
.ls6f{letter-spacing:23.864400px;}
.ls73{letter-spacing:23.877360px;}
.ls40{letter-spacing:23.976000px;}
.ls2b{letter-spacing:24.480000px;}
.ls71{letter-spacing:25.304400px;}
.ls31{letter-spacing:26.640000px;}
.ls24{letter-spacing:28.080000px;}
.ls9f{letter-spacing:28.800000px;}
.ls26{letter-spacing:31.680000px;}
.ls2d{letter-spacing:36.000000px;}
.ls6e{letter-spacing:44.992800px;}
.ls8b{letter-spacing:49.839840px;}
.ls81{letter-spacing:50.616720px;}
.ls82{letter-spacing:53.485200px;}
.ls8c{letter-spacing:54.919440px;}
.ls8a{letter-spacing:59.222160px;}
.ls61{letter-spacing:64.296000px;}
.ls8f{letter-spacing:64.959120px;}
.ls67{letter-spacing:65.491200px;}
.ls83{letter-spacing:70.755840px;}
.ls85{letter-spacing:74.341440px;}
.ls7f{letter-spacing:75.775680px;}
.ls87{letter-spacing:77.209920px;}
.ls8e{letter-spacing:80.078400px;}
.ls8d{letter-spacing:84.440880px;}
.ls80{letter-spacing:85.158000px;}
.ls86{letter-spacing:92.329200px;}
.ls45{letter-spacing:97.185600px;}
.ls89{letter-spacing:101.711520px;}
.ls84{letter-spacing:116.830800px;}
.ls88{letter-spacing:129.081600px;}
.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;}
}
.ws32{word-spacing:-72.000000px;}
.ws7d{word-spacing:-51.120000px;}
.ws7e{word-spacing:-51.068880px;}
.wsb7{word-spacing:-25.632720px;}
.ws7{word-spacing:-21.396960px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.723040px;}
.ws5{word-spacing:-20.301840px;}
.wsa2{word-spacing:-18.720000px;}
.wsc9{word-spacing:-18.576000px;}
.ws74{word-spacing:-18.432000px;}
.ws13{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws15{word-spacing:-18.144000px;}
.ws33{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.wse{word-spacing:-17.568000px;}
.wsbc{word-spacing:-17.136000px;}
.wsbd{word-spacing:-16.560000px;}
.ws93{word-spacing:-15.840000px;}
.ws92{word-spacing:-15.624000px;}
.ws91{word-spacing:-15.552000px;}
.ws17{word-spacing:-15.298560px;}
.wsae{word-spacing:-15.179040px;}
.ws9c{word-spacing:-15.119280px;}
.ws9d{word-spacing:-15.059520px;}
.ws8c{word-spacing:-14.999760px;}
.ws8b{word-spacing:-14.940000px;}
.wsaf{word-spacing:-14.820480px;}
.ws8e{word-spacing:-14.700960px;}
.ws4{word-spacing:-13.878000px;}
.ws1{word-spacing:-13.662000px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.122000px;}
.ws9{word-spacing:-12.445920px;}
.wsf{word-spacing:-12.252960px;}
.wsa{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.722320px;}
.wsb{word-spacing:-11.529360px;}
.ws90{word-spacing:-11.246400px;}
.wsc{word-spacing:-10.440000px;}
.ws8d{word-spacing:-9.758880px;}
.ws16{word-spacing:-9.720000px;}
.wsb8{word-spacing:-4.464000px;}
.ws5b{word-spacing:-4.320000px;}
.wsa7{word-spacing:-4.032000px;}
.ws7c{word-spacing:-3.960000px;}
.ws88{word-spacing:-3.744000px;}
.ws3c{word-spacing:-3.600000px;}
.ws3d{word-spacing:-3.384000px;}
.ws49{word-spacing:-3.312000px;}
.wsa1{word-spacing:-3.168000px;}
.ws70{word-spacing:-3.024000px;}
.ws55{word-spacing:-2.880000px;}
.ws83{word-spacing:-2.664000px;}
.ws5c{word-spacing:-2.592000px;}
.ws20{word-spacing:-2.304000px;}
.wsbb{word-spacing:-2.232000px;}
.ws36{word-spacing:-2.160000px;}
.ws84{word-spacing:-1.944000px;}
.ws35{word-spacing:-1.872000px;}
.wsa3{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.224000px;}
.ws5e{word-spacing:-1.152000px;}
.wsb1{word-spacing:-0.896400px;}
.ws34{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.728640px;}
.ws1b{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.589680px;}
.ws19{word-spacing:-0.505440px;}
.ws73{word-spacing:-0.504000px;}
.ws27{word-spacing:-0.432000px;}
.ws22{word-spacing:-0.385920px;}
.ws76{word-spacing:-0.288000px;}
.wsc8{word-spacing:-0.264960px;}
.wsb5{word-spacing:-0.239040px;}
.wsb0{word-spacing:-0.179280px;}
.ws4a{word-spacing:-0.144000px;}
.ws1c{word-spacing:-0.132480px;}
.wsb3{word-spacing:-0.119520px;}
.ws53{word-spacing:-0.072000px;}
.wsb6{word-spacing:-0.059760px;}
.ws18{word-spacing:0.000000px;}
.wsba{word-spacing:0.102240px;}
.ws1e{word-spacing:0.132480px;}
.ws5f{word-spacing:0.144000px;}
.ws28{word-spacing:0.216000px;}
.wsb2{word-spacing:0.239040px;}
.wsb9{word-spacing:0.255600px;}
.ws1f{word-spacing:0.288000px;}
.wsb4{word-spacing:0.298800px;}
.ws5a{word-spacing:0.432000px;}
.ws57{word-spacing:0.576000px;}
.ws8f{word-spacing:0.648000px;}
.ws56{word-spacing:0.720000px;}
.ws65{word-spacing:0.936000px;}
.ws58{word-spacing:1.008000px;}
.ws47{word-spacing:1.296000px;}
.ws46{word-spacing:1.440000px;}
.ws4b{word-spacing:1.728000px;}
.ws44{word-spacing:2.016000px;}
.ws43{word-spacing:2.160000px;}
.ws41{word-spacing:2.376000px;}
.ws40{word-spacing:2.448000px;}
.ws6e{word-spacing:2.736000px;}
.ws5d{word-spacing:2.880000px;}
.ws6f{word-spacing:3.168000px;}
.ws42{word-spacing:3.312000px;}
.ws69{word-spacing:3.456000px;}
.ws30{word-spacing:3.600000px;}
.ws7b{word-spacing:3.816000px;}
.ws31{word-spacing:3.888000px;}
.ws51{word-spacing:4.176000px;}
.ws2a{word-spacing:4.320000px;}
.ws50{word-spacing:4.536000px;}
.ws29{word-spacing:4.608000px;}
.ws3e{word-spacing:4.896000px;}
.ws2b{word-spacing:5.040000px;}
.ws52{word-spacing:5.328000px;}
.ws87{word-spacing:5.616000px;}
.ws67{word-spacing:5.760000px;}
.ws86{word-spacing:6.048000px;}
.ws89{word-spacing:6.336000px;}
.ws75{word-spacing:6.480000px;}
.ws97{word-spacing:6.696000px;}
.wsad{word-spacing:6.768000px;}
.ws3a{word-spacing:7.056000px;}
.ws3b{word-spacing:7.200000px;}
.ws63{word-spacing:7.488000px;}
.ws8a{word-spacing:7.776000px;}
.ws45{word-spacing:7.920000px;}
.ws9b{word-spacing:8.064000px;}
.ws59{word-spacing:8.208000px;}
.ws66{word-spacing:8.640000px;}
.ws9e{word-spacing:8.784000px;}
.wsac{word-spacing:8.928000px;}
.ws82{word-spacing:9.216000px;}
.ws26{word-spacing:9.360000px;}
.ws2f{word-spacing:9.648000px;}
.ws78{word-spacing:9.936000px;}
.ws77{word-spacing:10.080000px;}
.ws81{word-spacing:10.368000px;}
.wsaa{word-spacing:10.656000px;}
.ws68{word-spacing:10.800000px;}
.ws3f{word-spacing:11.088000px;}
.wsc1{word-spacing:11.376000px;}
.ws80{word-spacing:11.520000px;}
.ws7f{word-spacing:11.808000px;}
.ws98{word-spacing:12.096000px;}
.ws37{word-spacing:12.240000px;}
.ws79{word-spacing:12.384000px;}
.ws85{word-spacing:12.816000px;}
.ws4e{word-spacing:12.960000px;}
.ws4c{word-spacing:13.248000px;}
.wsa0{word-spacing:13.536000px;}
.ws4d{word-spacing:13.680000px;}
.ws60{word-spacing:13.968000px;}
.ws9f{word-spacing:14.112000px;}
.wsbf{word-spacing:14.256000px;}
.wsa5{word-spacing:14.400000px;}
.wsbe{word-spacing:14.616000px;}
.ws99{word-spacing:14.688000px;}
.ws62{word-spacing:15.120000px;}
.ws61{word-spacing:15.408000px;}
.wsa9{word-spacing:15.696000px;}
.wsa8{word-spacing:15.840000px;}
.wsc5{word-spacing:16.128000px;}
.ws6a{word-spacing:16.416000px;}
.ws2c{word-spacing:16.560000px;}
.ws71{word-spacing:16.776000px;}
.ws72{word-spacing:17.280000px;}
.ws9a{word-spacing:17.856000px;}
.ws96{word-spacing:18.000000px;}
.ws94{word-spacing:18.288000px;}
.wsc3{word-spacing:18.576000px;}
.ws7a{word-spacing:18.720000px;}
.wsc4{word-spacing:18.936000px;}
.ws24{word-spacing:19.296000px;}
.ws25{word-spacing:19.440000px;}
.ws95{word-spacing:19.728000px;}
.wsc0{word-spacing:20.016000px;}
.wsab{word-spacing:20.160000px;}
.wsa6{word-spacing:21.456000px;}
.ws2d{word-spacing:24.336000px;}
.ws2e{word-spacing:24.480000px;}
.ws54{word-spacing:24.768000px;}
.ws6d{word-spacing:26.640000px;}
.ws6c{word-spacing:26.856000px;}
.ws6b{word-spacing:26.928000px;}
.ws48{word-spacing:27.360000px;}
.wsc6{word-spacing:28.080000px;}
.wsc7{word-spacing:28.368000px;}
.wsa4{word-spacing:28.800000px;}
.wsc2{word-spacing:29.520000px;}
.ws4f{word-spacing:31.680000px;}
.ws39{word-spacing:35.136000px;}
.ws38{word-spacing:35.280000px;}
.ws64{word-spacing:36.000000px;}
._18{margin-left:-13.172400px;}
._17{margin-left:-10.083600px;}
._19{margin-left:-7.802784px;}
._16{margin-left:-6.552000px;}
._f{margin-left:-4.880448px;}
._9{margin-left:-3.543552px;}
._3{margin-left:-2.388816px;}
._0{margin-left:-1.280448px;}
._1{width:1.465200px;}
._15{width:2.556000px;}
._2{width:3.592800px;}
._5{width:4.629600px;}
._a{width:5.672448px;}
._8{width:6.912000px;}
._7{width:8.743248px;}
._14{width:10.759392px;}
._d{width:12.339216px;}
._c{width:13.582800px;}
._10{width:15.336000px;}
._13{width:16.992000px;}
._4{width:19.008000px;}
._1a{width:20.100096px;}
._6{width:24.495696px;}
._12{width:25.876080px;}
._b{width:27.726048px;}
._21{width:28.990800px;}
._e{width:32.071248px;}
._11{width:35.774496px;}
._1c{width:50.657040px;}
._20{width:52.704000px;}
._1e{width:54.644544px;}
._1b{width:60.596640px;}
._1f{width:65.794176px;}
._1d{width:91.489680px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.240000px;}
.yad{bottom:3.960000px;}
.yff{bottom:5.400000px;}
.yfa{bottom:5.580000px;}
.ye5{bottom:5.940000px;}
.yb3{bottom:6.660000px;}
.yb1{bottom:6.840000px;}
.yfd{bottom:7.020000px;}
.yfb{bottom:7.200000px;}
.ye2{bottom:11.340000px;}
.y7d{bottom:20.520000px;}
.yab{bottom:24.660000px;}
.yae{bottom:27.360000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.ya6{bottom:111.240000px;}
.y184{bottom:111.420000px;}
.y7b{bottom:112.320000px;}
.y48{bottom:112.860000px;}
.y1d{bottom:114.660000px;}
.y129{bottom:115.020000px;}
.y94{bottom:118.440000px;}
.y15e{bottom:118.800000px;}
.yf1{bottom:119.520000px;}
.ye0{bottom:120.600000px;}
.y34{bottom:121.500000px;}
.y112{bottom:123.300000px;}
.y14d{bottom:126.360000px;}
.y1c{bottom:127.440000px;}
.yc4{bottom:129.060000px;}
.yca{bottom:133.560000px;}
.y104{bottom:137.340000px;}
.y183{bottom:139.500000px;}
.ydf{bottom:141.300000px;}
.y128{bottom:143.100000px;}
.y111{bottom:144.000000px;}
.y14c{bottom:147.060000px;}
.y65{bottom:151.200000px;}
.ya5{bottom:152.640000px;}
.y7a{bottom:153.720000px;}
.y47{bottom:154.260000px;}
.y103{bottom:158.040000px;}
.y93{bottom:159.840000px;}
.y182{bottom:160.200000px;}
.yf0{bottom:160.920000px;}
.yc9{bottom:161.460000px;}
.yde{bottom:162.000000px;}
.y33{bottom:162.900000px;}
.y127{bottom:163.800000px;}
.y15d{bottom:167.760000px;}
.yc3{bottom:170.460000px;}
.y14b{bottom:175.320000px;}
.y5c{bottom:178.200000px;}
.y102{bottom:178.740000px;}
.y181{bottom:180.900000px;}
.ydd{bottom:182.700000px;}
.y126{bottom:184.500000px;}
.y64{bottom:192.600000px;}
.ya4{bottom:194.040000px;}
.y79{bottom:195.120000px;}
.y46{bottom:195.660000px;}
.y14a{bottom:196.020000px;}
.y5b{bottom:198.900000px;}
.y101{bottom:199.440000px;}
.y92{bottom:201.240000px;}
.yef{bottom:202.320000px;}
.yc8{bottom:202.860000px;}
.ydc{bottom:203.400000px;}
.y32{bottom:204.300000px;}
.y180{bottom:209.160000px;}
.y1b{bottom:209.520000px;}
.yc2{bottom:211.860000px;}
.y125{bottom:212.760000px;}
.y149{bottom:216.720000px;}
.y100{bottom:216.900000px;}
.y5a{bottom:219.600000px;}
.yee{bottom:223.020000px;}
.yc7{bottom:223.560000px;}
.ydb{bottom:224.100000px;}
.y17f{bottom:229.860000px;}
.y124{bottom:233.460000px;}
.y63{bottom:234.000000px;}
.ya3{bottom:235.440000px;}
.y59{bottom:236.340000px;}
.y78{bottom:236.520000px;}
.y45{bottom:237.060000px;}
.yfe{bottom:241.560000px;}
.y91{bottom:242.460000px;}
.yed{bottom:243.720000px;}
.yc6{bottom:244.260000px;}
.yda{bottom:244.800000px;}
.y31{bottom:245.700000px;}
.y17e{bottom:250.560000px;}
.y1a{bottom:250.920000px;}
.yc1{bottom:253.260000px;}
.y123{bottom:254.160000px;}
.y77{bottom:257.220000px;}
.yec{bottom:260.460000px;}
.yc5{bottom:261.000000px;}
.yd9{bottom:261.540000px;}
.y148{bottom:265.500000px;}
.yfc{bottom:266.040000px;}
.y17d{bottom:271.260000px;}
.y62{bottom:275.400000px;}
.ya2{bottom:276.840000px;}
.y76{bottom:277.920000px;}
.y44{bottom:278.460000px;}
.y122{bottom:282.420000px;}
.y90{bottom:283.860000px;}
.y147{bottom:286.200000px;}
.y30{bottom:287.100000px;}
.yf9{bottom:290.520000px;}
.y19{bottom:292.320000px;}
.y15c{bottom:293.760000px;}
.yc0{bottom:294.660000px;}
.y75{bottom:298.620000px;}
.y83{bottom:299.160000px;}
.y17c{bottom:299.520000px;}
.y121{bottom:303.120000px;}
.y146{bottom:306.900000px;}
.y15b{bottom:314.460000px;}
.yf7{bottom:315.180000px;}
.y61{bottom:316.800000px;}
.y82{bottom:317.160000px;}
.ya1{bottom:318.240000px;}
.y74{bottom:319.320000px;}
.y43{bottom:319.860000px;}
.y17b{bottom:320.220000px;}
.y120{bottom:323.820000px;}
.y8f{bottom:325.260000px;}
.y2f{bottom:328.500000px;}
.y18{bottom:333.720000px;}
.y81{bottom:335.160000px;}
.ybf{bottom:336.060000px;}
.yf8{bottom:338.400000px;}
.y73{bottom:340.020000px;}
.y113{bottom:340.560000px;}
.y17a{bottom:340.920000px;}
.y11f{bottom:351.900000px;}
.y80{bottom:353.160000px;}
.y145{bottom:355.860000px;}
.y60{bottom:358.200000px;}
.ya0{bottom:359.640000px;}
.y72{bottom:360.720000px;}
.y42{bottom:361.260000px;}
.y15a{bottom:363.420000px;}
.y8e{bottom:366.660000px;}
.y179{bottom:369.000000px;}
.y2e{bottom:369.900000px;}
.y7c{bottom:371.160000px;}
.y11e{bottom:372.600000px;}
.y17{bottom:375.120000px;}
.y144{bottom:376.560000px;}
.ybe{bottom:377.460000px;}
.y71{bottom:381.420000px;}
.y49{bottom:381.960000px;}
.y159{bottom:384.120000px;}
.y178{bottom:389.700000px;}
.y7e{bottom:390.240000px;}
.y11d{bottom:393.300000px;}
.y143{bottom:397.260000px;}
.y5f{bottom:399.600000px;}
.y9f{bottom:401.040000px;}
.y70{bottom:402.120000px;}
.y41{bottom:402.660000px;}
.y158{bottom:404.820000px;}
.y8d{bottom:408.060000px;}
.y177{bottom:410.400000px;}
.y2d{bottom:411.300000px;}
.y11c{bottom:414.000000px;}
.y16{bottom:416.520000px;}
.ybd{bottom:418.860000px;}
.y6f{bottom:422.820000px;}
.y142{bottom:425.520000px;}
.y10c{bottom:427.320000px;}
.y176{bottom:438.660000px;}
.y5e{bottom:441.000000px;}
.y11b{bottom:442.260000px;}
.y9e{bottom:442.440000px;}
.y6e{bottom:443.520000px;}
.y40{bottom:444.060000px;}
.y141{bottom:446.220000px;}
.y10b{bottom:448.020000px;}
.y8c{bottom:449.820000px;}
.y2c{bottom:452.700000px;}
.y157{bottom:453.600000px;}
.y15{bottom:457.920000px;}
.y175{bottom:459.360000px;}
.ybc{bottom:460.260000px;}
.y11a{bottom:462.960000px;}
.y6d{bottom:464.220000px;}
.y140{bottom:466.920000px;}
.y10a{bottom:468.720000px;}
.y156{bottom:474.300000px;}
.y174{bottom:480.060000px;}
.y9d{bottom:483.840000px;}
.y5d{bottom:484.920000px;}
.y3f{bottom:485.460000px;}
.y13f{bottom:487.620000px;}
.y109{bottom:489.420000px;}
.y119{bottom:491.220000px;}
.y8b{bottom:492.300000px;}
.y2b{bottom:494.100000px;}
.y155{bottom:495.000000px;}
.y14{bottom:499.320000px;}
.y173{bottom:500.760000px;}
.ybb{bottom:501.660000px;}
.y6c{bottom:505.620000px;}
.y108{bottom:510.120000px;}
.y118{bottom:511.920000px;}
.y13e{bottom:515.700000px;}
.y9c{bottom:525.240000px;}
.y3e{bottom:526.860000px;}
.y172{bottom:528.840000px;}
.y117{bottom:532.620000px;}
.y8a{bottom:534.060000px;}
.y2a{bottom:535.500000px;}
.y13d{bottom:536.400000px;}
.y110{bottom:539.460000px;}
.y13{bottom:540.540000px;}
.yba{bottom:543.060000px;}
.y154{bottom:543.960000px;}
.y6b{bottom:547.020000px;}
.y171{bottom:549.540000px;}
.y107{bottom:551.520000px;}
.y13c{bottom:557.100000px;}
.y58{bottom:558.000000px;}
.y10f{bottom:560.160000px;}
.y116{bottom:560.700000px;}
.y153{bottom:564.660000px;}
.y9b{bottom:566.640000px;}
.y3d{bottom:568.260000px;}
.y170{bottom:570.240000px;}
.y106{bottom:572.220000px;}
.y89{bottom:575.460000px;}
.y29{bottom:576.900000px;}
.y10e{bottom:580.860000px;}
.y115{bottom:581.400000px;}
.y12{bottom:581.940000px;}
.yb9{bottom:584.460000px;}
.y13b{bottom:585.360000px;}
.y6a{bottom:588.420000px;}
.y105{bottom:588.960000px;}
.y16f{bottom:598.500000px;}
.y57{bottom:599.400000px;}
.y10d{bottom:601.560000px;}
.y114{bottom:602.100000px;}
.y13a{bottom:606.060000px;}
.y9a{bottom:608.040000px;}
.y69{bottom:609.120000px;}
.y3c{bottom:609.660000px;}
.y152{bottom:613.440000px;}
.y87{bottom:616.140000px;}
.y88{bottom:616.860000px;}
.y28{bottom:618.300000px;}
.y16e{bottom:619.200000px;}
.y11{bottom:623.340000px;}
.y86{bottom:625.140000px;}
.yb8{bottom:625.860000px;}
.y139{bottom:626.760000px;}
.y68{bottom:629.820000px;}
.y151{bottom:634.140000px;}
.y16d{bottom:639.900000px;}
.y56{bottom:640.800000px;}
.y10{bottom:644.040000px;}
.y99{bottom:649.440000px;}
.y67{bottom:650.520000px;}
.y3b{bottom:651.060000px;}
.y138{bottom:654.840000px;}
.y16c{bottom:660.600000px;}
.y27{bottom:660.960000px;}
.yf{bottom:664.740000px;}
.y66{bottom:667.260000px;}
.y85{bottom:674.460000px;}
.y137{bottom:675.540000px;}
.y55{bottom:682.200000px;}
.y84{bottom:683.460000px;}
.y16b{bottom:688.860000px;}
.y98{bottom:690.840000px;}
.y3a{bottom:692.460000px;}
.y136{bottom:696.240000px;}
.y54{bottom:702.900000px;}
.y26{bottom:703.800000px;}
.ye{bottom:703.987920px;}
.yf6{bottom:708.122700px;}
.yb7{bottom:708.660000px;}
.y16a{bottom:709.560000px;}
.y135{bottom:716.940000px;}
.yf5{bottom:717.120000px;}
.y53{bottom:723.600000px;}
.y150{bottom:724.500000px;}
.yb6{bottom:729.360000px;}
.y169{bottom:730.260000px;}
.y97{bottom:732.240000px;}
.y39{bottom:733.860000px;}
.y52{bottom:744.300000px;}
.y25{bottom:745.200000px;}
.yb5{bottom:746.820000px;}
.yd{bottom:748.800000px;}
.y168{bottom:750.960000px;}
.yf4{bottom:760.322700px;}
.yeb{bottom:761.760000px;}
.y134{bottom:765.900000px;}
.yb4{bottom:768.240000px;}
.yf3{bottom:769.320000px;}
.y96{bottom:774.000000px;}
.y38{bottom:775.260000px;}
.y167{bottom:779.040000px;}
.yea{bottom:782.460000px;}
.yd8{bottom:783.540000px;}
.y51{bottom:785.700000px;}
.y24{bottom:786.600000px;}
.yc{bottom:786.780000px;}
.yb2{bottom:789.660000px;}
.y166{bottom:799.740000px;}
.yd7{bottom:804.240000px;}
.ye9{bottom:805.680000px;}
.yb0{bottom:811.080000px;}
.y133{bottom:814.860000px;}
.yf2{bottom:815.760000px;}
.y95{bottom:816.300000px;}
.y37{bottom:816.660000px;}
.yb{bottom:817.927920px;}
.y165{bottom:820.440000px;}
.yd6{bottom:821.700000px;}
.y186{bottom:822.240000px;}
.ye8{bottom:823.140000px;}
.y50{bottom:827.100000px;}
.yaa{bottom:832.680000px;}
.y132{bottom:835.560000px;}
.yd5{bottom:839.700000px;}
.y23{bottom:842.940000px;}
.y164{bottom:848.700000px;}
.ye7{bottom:852.300000px;}
.yac{bottom:855.900000px;}
.y131{bottom:856.260000px;}
.yd4{bottom:857.700000px;}
.y36{bottom:858.060000px;}
.yaf{bottom:858.600000px;}
.ya{bottom:862.740000px;}
.y185{bottom:863.640000px;}
.y4e{bottom:869.040000px;}
.y163{bottom:869.400000px;}
.ye4{bottom:869.580000px;}
.yd3{bottom:875.700000px;}
.y14f{bottom:876.960000px;}
.y4f{bottom:877.133700px;}
.ya9{bottom:878.760000px;}
.ye6{bottom:880.740000px;}
.y22{bottom:884.340000px;}
.ye1{bottom:892.800000px;}
.yd2{bottom:893.700000px;}
.y9{bottom:893.707920px;}
.y162{bottom:897.660000px;}
.ye3{bottom:898.740000px;}
.y35{bottom:899.460000px;}
.y130{bottom:905.040000px;}
.yd1{bottom:911.700000px;}
.y4c{bottom:916.740000px;}
.y161{bottom:918.360000px;}
.ya8{bottom:920.160000px;}
.y4d{bottom:924.833700px;}
.y12f{bottom:925.740000px;}
.yd0{bottom:929.700000px;}
.y8{bottom:938.520000px;}
.y160{bottom:939.060000px;}
.y21{bottom:940.860000px;}
.y12e{bottom:946.440000px;}
.ycf{bottom:947.700000px;}
.ya7{bottom:961.560000px;}
.y4b{bottom:963.182700px;}
.yce{bottom:965.700000px;}
.y12d{bottom:967.140000px;}
.y7{bottom:971.820000px;}
.y4a{bottom:972.180000px;}
.y14e{bottom:974.700000px;}
.y20{bottom:982.260000px;}
.ycd{bottom:983.700000px;}
.y15f{bottom:987.840000px;}
.y6{bottom:992.520000px;}
.y12c{bottom:995.400000px;}
.ycc{bottom:1001.700000px;}
.y5{bottom:1013.766300px;}
.y12b{bottom:1016.100000px;}
.y1f{bottom:1023.660000px;}
.y12a{bottom:1036.800000px;}
.y4{bottom:1037.876760px;}
.ycb{bottom:1044.360000px;}
.y3{bottom:1062.180000px;}
.y1e{bottom:1065.060000px;}
.h25{height:17.098500px;}
.h23{height:17.100000px;}
.h16{height:17.280000px;}
.h21{height:20.700000px;}
.h22{height:20.701500px;}
.h26{height:22.500000px;}
.h2b{height:23.760000px;}
.h2a{height:23.940000px;}
.h14{height:26.995781px;}
.h6{height:28.995469px;}
.ha{height:32.292422px;}
.h8{height:32.440781px;}
.h1e{height:33.494766px;}
.h11{height:34.560000px;}
.h20{height:40.066523px;}
.h29{height:41.398500px;}
.h1d{height:41.400000px;}
.h13{height:41.493516px;}
.h15{height:41.522695px;}
.h7{height:45.992812px;}
.h5{height:48.796875px;}
.h12{height:49.634648px;}
.hf{height:49.992188px;}
.h1f{height:50.027344px;}
.h24{height:53.172422px;}
.h9{height:55.016719px;}
.h2{height:57.092344px;}
.h3{height:57.105304px;}
.h1{height:59.800781px;}
.he{height:65.098125px;}
.h4{height:67.426523px;}
.h10{height:91.687500px;}
.h1c{height:91.738125px;}
.h1b{height:92.920781px;}
.h28{height:95.789981px;}
.h19{height:95.800781px;}
.hb{height:107.578125px;}
.h1a{height:111.898125px;}
.hd{height:114.035805px;}
.h27{height:127.676700px;}
.h17{height:143.578125px;}
.h18{height:147.898125px;}
.hc{height:165.167325px;}
.h0{height:1188.000000px;}
.w4{width:37.800000px;}
.w3{width:37.980000px;}
.w2{width:37.981500px;}
.w6{width:45.360000px;}
.w5{width:45.540000px;}
.w7{width:45.541500px;}
.w9{width:46.080000px;}
.w8{width:46.260000px;}
.wa{width:48.958500px;}
.w12{width:52.560000px;}
.w11{width:52.561500px;}
.w13{width:55.438500px;}
.w1e{width:55.440000px;}
.wb{width:57.058500px;}
.w1b{width:63.000000px;}
.wd{width:64.980000px;}
.wf{width:64.981500px;}
.wc{width:65.158500px;}
.we{width:65.160000px;}
.w1c{width:65.340000px;}
.w10{width:66.600000px;}
.w1a{width:67.860000px;}
.w1d{width:70.380000px;}
.w1{width:75.780000px;}
.w18{width:79.920000px;}
.w15{width:80.101500px;}
.w19{width:83.881500px;}
.w14{width:86.220000px;}
.w16{width:94.680000px;}
.w17{width:95.040000px;}
.w20{width:148.860000px;}
.w21{width:156.240000px;}
.w22{width:160.198500px;}
.w1f{width:193.860000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:8.460000px;}
.x23{left:9.900000px;}
.x36{left:11.340000px;}
.x1a{left:12.420000px;}
.x27{left:13.680000px;}
.x2d{left:14.940000px;}
.x30{left:17.280000px;}
.x63{left:18.360000px;}
.x5f{left:19.440000px;}
.x3e{left:21.420000px;}
.x4e{left:24.120000px;}
.x1b{left:25.560000px;}
.x25{left:28.080000px;}
.x21{left:30.060000px;}
.x29{left:31.860000px;}
.x40{left:35.820000px;}
.x18{left:37.800000px;}
.x53{left:39.960000px;}
.x56{left:43.020000px;}
.x57{left:44.820000px;}
.x70{left:46.080000px;}
.x6e{left:51.480000px;}
.x6f{left:57.240000px;}
.x71{left:61.740000px;}
.x5b{left:65.880000px;}
.x72{left:75.060000px;}
.x6d{left:81.360000px;}
.x3d{left:93.240000px;}
.x67{left:96.840000px;}
.x2{left:127.620000px;}
.x14{left:129.240000px;}
.x9{left:131.220000px;}
.x15{left:132.300000px;}
.xc{left:142.200000px;}
.x7{left:148.320000px;}
.x58{left:150.120000px;}
.x74{left:155.340000px;}
.x64{left:157.860000px;}
.x65{left:167.040000px;}
.xb{left:168.300000px;}
.xd{left:172.267920px;}
.x3f{left:173.340000px;}
.x7b{left:175.680000px;}
.x3{left:184.500000px;}
.x41{left:200.700000px;}
.x17{left:204.480000px;}
.x16{left:206.640000px;}
.x5a{left:207.900000px;}
.x42{left:216.720000px;}
.x77{left:219.420000px;}
.x3a{left:225.540000px;}
.x5c{left:230.760000px;}
.x4{left:235.254600px;}
.x59{left:238.500000px;}
.x78{left:257.580000px;}
.x43{left:266.580000px;}
.x51{left:279.900000px;}
.x19{left:280.980000px;}
.x10{left:282.779100px;}
.x6{left:301.140000px;}
.x5d{left:315.360000px;}
.x1d{left:319.680000px;}
.x68{left:322.920000px;}
.xa{left:326.880000px;}
.x44{left:332.280000px;}
.x3b{left:337.140000px;}
.x1e{left:340.560000px;}
.xf{left:343.620000px;}
.x1f{left:358.380000px;}
.x52{left:366.840000px;}
.x8{left:370.260720px;}
.x20{left:383.940000px;}
.x75{left:392.580000px;}
.x22{left:396.900000px;}
.x45{left:398.160000px;}
.x7a{left:407.700000px;}
.x12{left:413.081820px;}
.x24{left:415.080000px;}
.xe{left:425.520000px;}
.x26{left:435.600000px;}
.x66{left:439.017120px;}
.x54{left:447.660000px;}
.x28{left:457.560000px;}
.x5{left:459.005220px;}
.x46{left:463.860000px;}
.x69{left:472.500000px;}
.x47{left:479.520000px;}
.x2a{left:481.860000px;}
.x6a{left:493.200000px;}
.x11{left:497.861820px;}
.x2b{left:503.820000px;}
.x5e{left:511.560000px;}
.x37{left:521.820000px;}
.x2c{left:528.120000px;}
.x48{left:529.740000px;}
.x55{left:543.060000px;}
.x2e{left:551.340000px;}
.x2f{left:574.200000px;}
.x60{left:577.620000px;}
.x49{left:595.440000px;}
.x31{left:599.760000px;}
.x32{left:620.460000px;}
.x6b{left:629.460000px;}
.x33{left:645.840000px;}
.x61{left:648.720000px;}
.x6c{left:652.140000px;}
.x38{left:657.000000px;}
.x4a{left:662.760000px;}
.x34{left:667.440000px;}
.x4b{left:692.100000px;}
.x35{left:696.060000px;}
.x62{left:704.880000px;}
.x4c{left:716.040000px;}
.x76{left:717.120000px;}
.x79{left:733.500000px;}
.x4d{left:734.760000px;}
.x73{left:750.780000px;}
.x39{left:754.920000px;}
.x4f{left:769.320000px;}
.x3c{left:772.380000px;}
.x1{left:781.380000px;}
.x50{left:787.140000px;}
.x13{left:791.280000px;}
@media print{
.vc{vertical-align:-31.989760pt;}
.vd{vertical-align:-28.777600pt;}
.v4{vertical-align:-24.320000pt;}
.v5{vertical-align:-18.560000pt;}
.v6{vertical-align:-12.800000pt;}
.v9{vertical-align:-8.969600pt;}
.v1{vertical-align:-5.108480pt;}
.v12{vertical-align:-2.544640pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:2.560000pt;}
.v2{vertical-align:5.120000pt;}
.v10{vertical-align:8.960000pt;}
.v13{vertical-align:11.520000pt;}
.v7{vertical-align:12.800000pt;}
.v15{vertical-align:18.560000pt;}
.v14{vertical-align:22.400000pt;}
.v3{vertical-align:24.320000pt;}
.ve{vertical-align:32.000000pt;}
.v17{vertical-align:36.480000pt;}
.v8{vertical-align:37.760000pt;}
.va{vertical-align:40.960000pt;}
.v11{vertical-align:54.400000pt;}
.vb{vertical-align:56.960000pt;}
.vf{vertical-align:82.560000pt;}
.ls39{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls77{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.673920pt;}
.ls4f{letter-spacing:-0.640000pt;}
.ls53{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.471680pt;}
.ls18{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.300160pt;}
.lse{letter-spacing:-0.299520pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls99{letter-spacing:-0.227200pt;}
.ls56{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls7e{letter-spacing:-0.106240pt;}
.ls9a{letter-spacing:-0.090880pt;}
.ls48{letter-spacing:-0.045440pt;}
.lsb{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.024960pt;}
.ls55{letter-spacing:0.034560pt;}
.ls54{letter-spacing:0.053120pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls7c{letter-spacing:0.089600pt;}
.ls76{letter-spacing:0.106240pt;}
.ls15{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.128000pt;}
.ls90{letter-spacing:0.134400pt;}
.lsd{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.159360pt;}
.ls7a{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.161280pt;}
.ls19{letter-spacing:0.171520pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.199040pt;}
.ls9c{letter-spacing:0.200960pt;}
.ls7d{letter-spacing:0.212480pt;}
.ls9d{letter-spacing:0.214400pt;}
.ls79{letter-spacing:0.231040pt;}
.lsa0{letter-spacing:0.235520pt;}
.ls6d{letter-spacing:0.238720pt;}
.ls4d{letter-spacing:0.239360pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls59{letter-spacing:0.259840pt;}
.ls7b{letter-spacing:0.265600pt;}
.ls42{letter-spacing:0.272640pt;}
.lsc{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.300160pt;}
.ls97{letter-spacing:0.318080pt;}
.ls1e{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.321600pt;}
.ls10{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.343040pt;}
.ls6c{letter-spacing:0.363520pt;}
.ls38{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.448000pt;}
.lsa1{letter-spacing:0.512000pt;}
.ls9e{letter-spacing:0.599680pt;}
.ls52{letter-spacing:0.636160pt;}
.ls29{letter-spacing:0.640000pt;}
.ls3d{letter-spacing:0.960000pt;}
.ls5c{letter-spacing:1.024000pt;}
.ls98{letter-spacing:1.181440pt;}
.ls63{letter-spacing:1.254400pt;}
.ls23{letter-spacing:1.280000pt;}
.ls95{letter-spacing:1.544960pt;}
.ls41{letter-spacing:1.826560pt;}
.ls62{letter-spacing:1.832960pt;}
.ls3e{letter-spacing:1.856000pt;}
.ls69{letter-spacing:1.894400pt;}
.ls21{letter-spacing:1.920000pt;}
.ls78{letter-spacing:1.926400pt;}
.ls92{letter-spacing:2.048000pt;}
.ls66{letter-spacing:2.065920pt;}
.ls94{letter-spacing:2.105600pt;}
.ls70{letter-spacing:2.240000pt;}
.ls91{letter-spacing:2.490240pt;}
.ls32{letter-spacing:2.560000pt;}
.ls4c{letter-spacing:2.649600pt;}
.ls96{letter-spacing:2.745600pt;}
.ls9{letter-spacing:3.200000pt;}
.ls43{letter-spacing:3.589760pt;}
.ls75{letter-spacing:3.607040pt;}
.ls3c{letter-spacing:3.671680pt;}
.ls5a{letter-spacing:3.814400pt;}
.ls27{letter-spacing:3.840000pt;}
.ls5f{letter-spacing:4.454400pt;}
.ls7{letter-spacing:4.480000pt;}
.ls36{letter-spacing:5.120000pt;}
.ls50{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls2e{letter-spacing:7.680000pt;}
.ls8{letter-spacing:8.320000pt;}
.ls46{letter-spacing:8.960000pt;}
.ls20{letter-spacing:9.600000pt;}
.ls57{letter-spacing:9.612800pt;}
.ls3a{letter-spacing:10.240000pt;}
.ls4e{letter-spacing:10.880000pt;}
.ls25{letter-spacing:11.520000pt;}
.ls2c{letter-spacing:12.160000pt;}
.ls9b{letter-spacing:12.800000pt;}
.ls3f{letter-spacing:13.824000pt;}
.ls33{letter-spacing:14.080000pt;}
.ls5e{letter-spacing:14.272000pt;}
.ls30{letter-spacing:14.720000pt;}
.ls34{letter-spacing:15.360000pt;}
.ls5d{letter-spacing:15.912960pt;}
.ls72{letter-spacing:16.000000pt;}
.ls37{letter-spacing:16.640000pt;}
.ls5{letter-spacing:17.280000pt;}
.ls6a{letter-spacing:17.425920pt;}
.ls65{letter-spacing:17.472000pt;}
.ls44{letter-spacing:17.857920pt;}
.ls4{letter-spacing:17.920000pt;}
.ls4b{letter-spacing:17.944960pt;}
.ls4a{letter-spacing:18.112000pt;}
.ls93{letter-spacing:18.176000pt;}
.ls74{letter-spacing:18.519680pt;}
.ls68{letter-spacing:18.816000pt;}
.ls58{letter-spacing:19.200000pt;}
.ls6b{letter-spacing:19.264000pt;}
.ls5b{letter-spacing:19.456000pt;}
.ls60{letter-spacing:19.520000pt;}
.ls64{letter-spacing:20.873600pt;}
.ls49{letter-spacing:21.144960pt;}
.ls6f{letter-spacing:21.212800pt;}
.ls73{letter-spacing:21.224320pt;}
.ls40{letter-spacing:21.312000pt;}
.ls2b{letter-spacing:21.760000pt;}
.ls71{letter-spacing:22.492800pt;}
.ls31{letter-spacing:23.680000pt;}
.ls24{letter-spacing:24.960000pt;}
.ls9f{letter-spacing:25.600000pt;}
.ls26{letter-spacing:28.160000pt;}
.ls2d{letter-spacing:32.000000pt;}
.ls6e{letter-spacing:39.993600pt;}
.ls8b{letter-spacing:44.302080pt;}
.ls81{letter-spacing:44.992640pt;}
.ls82{letter-spacing:47.542400pt;}
.ls8c{letter-spacing:48.817280pt;}
.ls8a{letter-spacing:52.641920pt;}
.ls61{letter-spacing:57.152000pt;}
.ls8f{letter-spacing:57.741440pt;}
.ls67{letter-spacing:58.214400pt;}
.ls83{letter-spacing:62.894080pt;}
.ls85{letter-spacing:66.081280pt;}
.ls7f{letter-spacing:67.356160pt;}
.ls87{letter-spacing:68.631040pt;}
.ls8e{letter-spacing:71.180800pt;}
.ls8d{letter-spacing:75.058560pt;}
.ls80{letter-spacing:75.696000pt;}
.ls86{letter-spacing:82.070400pt;}
.ls45{letter-spacing:86.387200pt;}
.ls89{letter-spacing:90.410240pt;}
.ls84{letter-spacing:103.849600pt;}
.ls88{letter-spacing:114.739200pt;}
.ws32{word-spacing:-64.000000pt;}
.ws7d{word-spacing:-45.440000pt;}
.ws7e{word-spacing:-45.394560pt;}
.wsb7{word-spacing:-22.784640pt;}
.ws7{word-spacing:-19.019520pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.420480pt;}
.ws5{word-spacing:-18.046080pt;}
.wsa2{word-spacing:-16.640000pt;}
.wsc9{word-spacing:-16.512000pt;}
.ws74{word-spacing:-16.384000pt;}
.ws13{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws15{word-spacing:-16.128000pt;}
.ws33{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.616000pt;}
.wsbc{word-spacing:-15.232000pt;}
.wsbd{word-spacing:-14.720000pt;}
.ws93{word-spacing:-14.080000pt;}
.ws92{word-spacing:-13.888000pt;}
.ws91{word-spacing:-13.824000pt;}
.ws17{word-spacing:-13.598720pt;}
.wsae{word-spacing:-13.492480pt;}
.ws9c{word-spacing:-13.439360pt;}
.ws9d{word-spacing:-13.386240pt;}
.ws8c{word-spacing:-13.333120pt;}
.ws8b{word-spacing:-13.280000pt;}
.wsaf{word-spacing:-13.173760pt;}
.ws8e{word-spacing:-13.067520pt;}
.ws4{word-spacing:-12.336000pt;}
.ws1{word-spacing:-12.144000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.664000pt;}
.ws9{word-spacing:-11.063040pt;}
.wsf{word-spacing:-10.891520pt;}
.wsa{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.419840pt;}
.wsb{word-spacing:-10.248320pt;}
.ws90{word-spacing:-9.996800pt;}
.wsc{word-spacing:-9.280000pt;}
.ws8d{word-spacing:-8.674560pt;}
.ws16{word-spacing:-8.640000pt;}
.wsb8{word-spacing:-3.968000pt;}
.ws5b{word-spacing:-3.840000pt;}
.wsa7{word-spacing:-3.584000pt;}
.ws7c{word-spacing:-3.520000pt;}
.ws88{word-spacing:-3.328000pt;}
.ws3c{word-spacing:-3.200000pt;}
.ws3d{word-spacing:-3.008000pt;}
.ws49{word-spacing:-2.944000pt;}
.wsa1{word-spacing:-2.816000pt;}
.ws70{word-spacing:-2.688000pt;}
.ws55{word-spacing:-2.560000pt;}
.ws83{word-spacing:-2.368000pt;}
.ws5c{word-spacing:-2.304000pt;}
.ws20{word-spacing:-2.048000pt;}
.wsbb{word-spacing:-1.984000pt;}
.ws36{word-spacing:-1.920000pt;}
.ws84{word-spacing:-1.728000pt;}
.ws35{word-spacing:-1.664000pt;}
.wsa3{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.088000pt;}
.ws5e{word-spacing:-1.024000pt;}
.wsb1{word-spacing:-0.796800pt;}
.ws34{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.647680pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.524160pt;}
.ws19{word-spacing:-0.449280pt;}
.ws73{word-spacing:-0.448000pt;}
.ws27{word-spacing:-0.384000pt;}
.ws22{word-spacing:-0.343040pt;}
.ws76{word-spacing:-0.256000pt;}
.wsc8{word-spacing:-0.235520pt;}
.wsb5{word-spacing:-0.212480pt;}
.wsb0{word-spacing:-0.159360pt;}
.ws4a{word-spacing:-0.128000pt;}
.ws1c{word-spacing:-0.117760pt;}
.wsb3{word-spacing:-0.106240pt;}
.ws53{word-spacing:-0.064000pt;}
.wsb6{word-spacing:-0.053120pt;}
.ws18{word-spacing:0.000000pt;}
.wsba{word-spacing:0.090880pt;}
.ws1e{word-spacing:0.117760pt;}
.ws5f{word-spacing:0.128000pt;}
.ws28{word-spacing:0.192000pt;}
.wsb2{word-spacing:0.212480pt;}
.wsb9{word-spacing:0.227200pt;}
.ws1f{word-spacing:0.256000pt;}
.wsb4{word-spacing:0.265600pt;}
.ws5a{word-spacing:0.384000pt;}
.ws57{word-spacing:0.512000pt;}
.ws8f{word-spacing:0.576000pt;}
.ws56{word-spacing:0.640000pt;}
.ws65{word-spacing:0.832000pt;}
.ws58{word-spacing:0.896000pt;}
.ws47{word-spacing:1.152000pt;}
.ws46{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.536000pt;}
.ws44{word-spacing:1.792000pt;}
.ws43{word-spacing:1.920000pt;}
.ws41{word-spacing:2.112000pt;}
.ws40{word-spacing:2.176000pt;}
.ws6e{word-spacing:2.432000pt;}
.ws5d{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.816000pt;}
.ws42{word-spacing:2.944000pt;}
.ws69{word-spacing:3.072000pt;}
.ws30{word-spacing:3.200000pt;}
.ws7b{word-spacing:3.392000pt;}
.ws31{word-spacing:3.456000pt;}
.ws51{word-spacing:3.712000pt;}
.ws2a{word-spacing:3.840000pt;}
.ws50{word-spacing:4.032000pt;}
.ws29{word-spacing:4.096000pt;}
.ws3e{word-spacing:4.352000pt;}
.ws2b{word-spacing:4.480000pt;}
.ws52{word-spacing:4.736000pt;}
.ws87{word-spacing:4.992000pt;}
.ws67{word-spacing:5.120000pt;}
.ws86{word-spacing:5.376000pt;}
.ws89{word-spacing:5.632000pt;}
.ws75{word-spacing:5.760000pt;}
.ws97{word-spacing:5.952000pt;}
.wsad{word-spacing:6.016000pt;}
.ws3a{word-spacing:6.272000pt;}
.ws3b{word-spacing:6.400000pt;}
.ws63{word-spacing:6.656000pt;}
.ws8a{word-spacing:6.912000pt;}
.ws45{word-spacing:7.040000pt;}
.ws9b{word-spacing:7.168000pt;}
.ws59{word-spacing:7.296000pt;}
.ws66{word-spacing:7.680000pt;}
.ws9e{word-spacing:7.808000pt;}
.wsac{word-spacing:7.936000pt;}
.ws82{word-spacing:8.192000pt;}
.ws26{word-spacing:8.320000pt;}
.ws2f{word-spacing:8.576000pt;}
.ws78{word-spacing:8.832000pt;}
.ws77{word-spacing:8.960000pt;}
.ws81{word-spacing:9.216000pt;}
.wsaa{word-spacing:9.472000pt;}
.ws68{word-spacing:9.600000pt;}
.ws3f{word-spacing:9.856000pt;}
.wsc1{word-spacing:10.112000pt;}
.ws80{word-spacing:10.240000pt;}
.ws7f{word-spacing:10.496000pt;}
.ws98{word-spacing:10.752000pt;}
.ws37{word-spacing:10.880000pt;}
.ws79{word-spacing:11.008000pt;}
.ws85{word-spacing:11.392000pt;}
.ws4e{word-spacing:11.520000pt;}
.ws4c{word-spacing:11.776000pt;}
.wsa0{word-spacing:12.032000pt;}
.ws4d{word-spacing:12.160000pt;}
.ws60{word-spacing:12.416000pt;}
.ws9f{word-spacing:12.544000pt;}
.wsbf{word-spacing:12.672000pt;}
.wsa5{word-spacing:12.800000pt;}
.wsbe{word-spacing:12.992000pt;}
.ws99{word-spacing:13.056000pt;}
.ws62{word-spacing:13.440000pt;}
.ws61{word-spacing:13.696000pt;}
.wsa9{word-spacing:13.952000pt;}
.wsa8{word-spacing:14.080000pt;}
.wsc5{word-spacing:14.336000pt;}
.ws6a{word-spacing:14.592000pt;}
.ws2c{word-spacing:14.720000pt;}
.ws71{word-spacing:14.912000pt;}
.ws72{word-spacing:15.360000pt;}
.ws9a{word-spacing:15.872000pt;}
.ws96{word-spacing:16.000000pt;}
.ws94{word-spacing:16.256000pt;}
.wsc3{word-spacing:16.512000pt;}
.ws7a{word-spacing:16.640000pt;}
.wsc4{word-spacing:16.832000pt;}
.ws24{word-spacing:17.152000pt;}
.ws25{word-spacing:17.280000pt;}
.ws95{word-spacing:17.536000pt;}
.wsc0{word-spacing:17.792000pt;}
.wsab{word-spacing:17.920000pt;}
.wsa6{word-spacing:19.072000pt;}
.ws2d{word-spacing:21.632000pt;}
.ws2e{word-spacing:21.760000pt;}
.ws54{word-spacing:22.016000pt;}
.ws6d{word-spacing:23.680000pt;}
.ws6c{word-spacing:23.872000pt;}
.ws6b{word-spacing:23.936000pt;}
.ws48{word-spacing:24.320000pt;}
.wsc6{word-spacing:24.960000pt;}
.wsc7{word-spacing:25.216000pt;}
.wsa4{word-spacing:25.600000pt;}
.wsc2{word-spacing:26.240000pt;}
.ws4f{word-spacing:28.160000pt;}
.ws39{word-spacing:31.232000pt;}
.ws38{word-spacing:31.360000pt;}
.ws64{word-spacing:32.000000pt;}
._18{margin-left:-11.708800pt;}
._17{margin-left:-8.963200pt;}
._19{margin-left:-6.935808pt;}
._16{margin-left:-5.824000pt;}
._f{margin-left:-4.338176pt;}
._9{margin-left:-3.149824pt;}
._3{margin-left:-2.123392pt;}
._0{margin-left:-1.138176pt;}
._1{width:1.302400pt;}
._15{width:2.272000pt;}
._2{width:3.193600pt;}
._5{width:4.115200pt;}
._a{width:5.042176pt;}
._8{width:6.144000pt;}
._7{width:7.771776pt;}
._14{width:9.563904pt;}
._d{width:10.968192pt;}
._c{width:12.073600pt;}
._10{width:13.632000pt;}
._13{width:15.104000pt;}
._4{width:16.896000pt;}
._1a{width:17.866752pt;}
._6{width:21.773952pt;}
._12{width:23.000960pt;}
._b{width:24.645376pt;}
._21{width:25.769600pt;}
._e{width:28.507776pt;}
._11{width:31.799552pt;}
._1c{width:45.028480pt;}
._20{width:46.848000pt;}
._1e{width:48.572928pt;}
._1b{width:53.863680pt;}
._1f{width:58.483712pt;}
._1d{width:81.324160pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:2.880000pt;}
.yad{bottom:3.520000pt;}
.yff{bottom:4.800000pt;}
.yfa{bottom:4.960000pt;}
.ye5{bottom:5.280000pt;}
.yb3{bottom:5.920000pt;}
.yb1{bottom:6.080000pt;}
.yfd{bottom:6.240000pt;}
.yfb{bottom:6.400000pt;}
.ye2{bottom:10.080000pt;}
.y7d{bottom:18.240000pt;}
.yab{bottom:21.920000pt;}
.yae{bottom:24.320000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.ya6{bottom:98.880000pt;}
.y184{bottom:99.040000pt;}
.y7b{bottom:99.840000pt;}
.y48{bottom:100.320000pt;}
.y1d{bottom:101.920000pt;}
.y129{bottom:102.240000pt;}
.y94{bottom:105.280000pt;}
.y15e{bottom:105.600000pt;}
.yf1{bottom:106.240000pt;}
.ye0{bottom:107.200000pt;}
.y34{bottom:108.000000pt;}
.y112{bottom:109.600000pt;}
.y14d{bottom:112.320000pt;}
.y1c{bottom:113.280000pt;}
.yc4{bottom:114.720000pt;}
.yca{bottom:118.720000pt;}
.y104{bottom:122.080000pt;}
.y183{bottom:124.000000pt;}
.ydf{bottom:125.600000pt;}
.y128{bottom:127.200000pt;}
.y111{bottom:128.000000pt;}
.y14c{bottom:130.720000pt;}
.y65{bottom:134.400000pt;}
.ya5{bottom:135.680000pt;}
.y7a{bottom:136.640000pt;}
.y47{bottom:137.120000pt;}
.y103{bottom:140.480000pt;}
.y93{bottom:142.080000pt;}
.y182{bottom:142.400000pt;}
.yf0{bottom:143.040000pt;}
.yc9{bottom:143.520000pt;}
.yde{bottom:144.000000pt;}
.y33{bottom:144.800000pt;}
.y127{bottom:145.600000pt;}
.y15d{bottom:149.120000pt;}
.yc3{bottom:151.520000pt;}
.y14b{bottom:155.840000pt;}
.y5c{bottom:158.400000pt;}
.y102{bottom:158.880000pt;}
.y181{bottom:160.800000pt;}
.ydd{bottom:162.400000pt;}
.y126{bottom:164.000000pt;}
.y64{bottom:171.200000pt;}
.ya4{bottom:172.480000pt;}
.y79{bottom:173.440000pt;}
.y46{bottom:173.920000pt;}
.y14a{bottom:174.240000pt;}
.y5b{bottom:176.800000pt;}
.y101{bottom:177.280000pt;}
.y92{bottom:178.880000pt;}
.yef{bottom:179.840000pt;}
.yc8{bottom:180.320000pt;}
.ydc{bottom:180.800000pt;}
.y32{bottom:181.600000pt;}
.y180{bottom:185.920000pt;}
.y1b{bottom:186.240000pt;}
.yc2{bottom:188.320000pt;}
.y125{bottom:189.120000pt;}
.y149{bottom:192.640000pt;}
.y100{bottom:192.800000pt;}
.y5a{bottom:195.200000pt;}
.yee{bottom:198.240000pt;}
.yc7{bottom:198.720000pt;}
.ydb{bottom:199.200000pt;}
.y17f{bottom:204.320000pt;}
.y124{bottom:207.520000pt;}
.y63{bottom:208.000000pt;}
.ya3{bottom:209.280000pt;}
.y59{bottom:210.080000pt;}
.y78{bottom:210.240000pt;}
.y45{bottom:210.720000pt;}
.yfe{bottom:214.720000pt;}
.y91{bottom:215.520000pt;}
.yed{bottom:216.640000pt;}
.yc6{bottom:217.120000pt;}
.yda{bottom:217.600000pt;}
.y31{bottom:218.400000pt;}
.y17e{bottom:222.720000pt;}
.y1a{bottom:223.040000pt;}
.yc1{bottom:225.120000pt;}
.y123{bottom:225.920000pt;}
.y77{bottom:228.640000pt;}
.yec{bottom:231.520000pt;}
.yc5{bottom:232.000000pt;}
.yd9{bottom:232.480000pt;}
.y148{bottom:236.000000pt;}
.yfc{bottom:236.480000pt;}
.y17d{bottom:241.120000pt;}
.y62{bottom:244.800000pt;}
.ya2{bottom:246.080000pt;}
.y76{bottom:247.040000pt;}
.y44{bottom:247.520000pt;}
.y122{bottom:251.040000pt;}
.y90{bottom:252.320000pt;}
.y147{bottom:254.400000pt;}
.y30{bottom:255.200000pt;}
.yf9{bottom:258.240000pt;}
.y19{bottom:259.840000pt;}
.y15c{bottom:261.120000pt;}
.yc0{bottom:261.920000pt;}
.y75{bottom:265.440000pt;}
.y83{bottom:265.920000pt;}
.y17c{bottom:266.240000pt;}
.y121{bottom:269.440000pt;}
.y146{bottom:272.800000pt;}
.y15b{bottom:279.520000pt;}
.yf7{bottom:280.160000pt;}
.y61{bottom:281.600000pt;}
.y82{bottom:281.920000pt;}
.ya1{bottom:282.880000pt;}
.y74{bottom:283.840000pt;}
.y43{bottom:284.320000pt;}
.y17b{bottom:284.640000pt;}
.y120{bottom:287.840000pt;}
.y8f{bottom:289.120000pt;}
.y2f{bottom:292.000000pt;}
.y18{bottom:296.640000pt;}
.y81{bottom:297.920000pt;}
.ybf{bottom:298.720000pt;}
.yf8{bottom:300.800000pt;}
.y73{bottom:302.240000pt;}
.y113{bottom:302.720000pt;}
.y17a{bottom:303.040000pt;}
.y11f{bottom:312.800000pt;}
.y80{bottom:313.920000pt;}
.y145{bottom:316.320000pt;}
.y60{bottom:318.400000pt;}
.ya0{bottom:319.680000pt;}
.y72{bottom:320.640000pt;}
.y42{bottom:321.120000pt;}
.y15a{bottom:323.040000pt;}
.y8e{bottom:325.920000pt;}
.y179{bottom:328.000000pt;}
.y2e{bottom:328.800000pt;}
.y7c{bottom:329.920000pt;}
.y11e{bottom:331.200000pt;}
.y17{bottom:333.440000pt;}
.y144{bottom:334.720000pt;}
.ybe{bottom:335.520000pt;}
.y71{bottom:339.040000pt;}
.y49{bottom:339.520000pt;}
.y159{bottom:341.440000pt;}
.y178{bottom:346.400000pt;}
.y7e{bottom:346.880000pt;}
.y11d{bottom:349.600000pt;}
.y143{bottom:353.120000pt;}
.y5f{bottom:355.200000pt;}
.y9f{bottom:356.480000pt;}
.y70{bottom:357.440000pt;}
.y41{bottom:357.920000pt;}
.y158{bottom:359.840000pt;}
.y8d{bottom:362.720000pt;}
.y177{bottom:364.800000pt;}
.y2d{bottom:365.600000pt;}
.y11c{bottom:368.000000pt;}
.y16{bottom:370.240000pt;}
.ybd{bottom:372.320000pt;}
.y6f{bottom:375.840000pt;}
.y142{bottom:378.240000pt;}
.y10c{bottom:379.840000pt;}
.y176{bottom:389.920000pt;}
.y5e{bottom:392.000000pt;}
.y11b{bottom:393.120000pt;}
.y9e{bottom:393.280000pt;}
.y6e{bottom:394.240000pt;}
.y40{bottom:394.720000pt;}
.y141{bottom:396.640000pt;}
.y10b{bottom:398.240000pt;}
.y8c{bottom:399.840000pt;}
.y2c{bottom:402.400000pt;}
.y157{bottom:403.200000pt;}
.y15{bottom:407.040000pt;}
.y175{bottom:408.320000pt;}
.ybc{bottom:409.120000pt;}
.y11a{bottom:411.520000pt;}
.y6d{bottom:412.640000pt;}
.y140{bottom:415.040000pt;}
.y10a{bottom:416.640000pt;}
.y156{bottom:421.600000pt;}
.y174{bottom:426.720000pt;}
.y9d{bottom:430.080000pt;}
.y5d{bottom:431.040000pt;}
.y3f{bottom:431.520000pt;}
.y13f{bottom:433.440000pt;}
.y109{bottom:435.040000pt;}
.y119{bottom:436.640000pt;}
.y8b{bottom:437.600000pt;}
.y2b{bottom:439.200000pt;}
.y155{bottom:440.000000pt;}
.y14{bottom:443.840000pt;}
.y173{bottom:445.120000pt;}
.ybb{bottom:445.920000pt;}
.y6c{bottom:449.440000pt;}
.y108{bottom:453.440000pt;}
.y118{bottom:455.040000pt;}
.y13e{bottom:458.400000pt;}
.y9c{bottom:466.880000pt;}
.y3e{bottom:468.320000pt;}
.y172{bottom:470.080000pt;}
.y117{bottom:473.440000pt;}
.y8a{bottom:474.720000pt;}
.y2a{bottom:476.000000pt;}
.y13d{bottom:476.800000pt;}
.y110{bottom:479.520000pt;}
.y13{bottom:480.480000pt;}
.yba{bottom:482.720000pt;}
.y154{bottom:483.520000pt;}
.y6b{bottom:486.240000pt;}
.y171{bottom:488.480000pt;}
.y107{bottom:490.240000pt;}
.y13c{bottom:495.200000pt;}
.y58{bottom:496.000000pt;}
.y10f{bottom:497.920000pt;}
.y116{bottom:498.400000pt;}
.y153{bottom:501.920000pt;}
.y9b{bottom:503.680000pt;}
.y3d{bottom:505.120000pt;}
.y170{bottom:506.880000pt;}
.y106{bottom:508.640000pt;}
.y89{bottom:511.520000pt;}
.y29{bottom:512.800000pt;}
.y10e{bottom:516.320000pt;}
.y115{bottom:516.800000pt;}
.y12{bottom:517.280000pt;}
.yb9{bottom:519.520000pt;}
.y13b{bottom:520.320000pt;}
.y6a{bottom:523.040000pt;}
.y105{bottom:523.520000pt;}
.y16f{bottom:532.000000pt;}
.y57{bottom:532.800000pt;}
.y10d{bottom:534.720000pt;}
.y114{bottom:535.200000pt;}
.y13a{bottom:538.720000pt;}
.y9a{bottom:540.480000pt;}
.y69{bottom:541.440000pt;}
.y3c{bottom:541.920000pt;}
.y152{bottom:545.280000pt;}
.y87{bottom:547.680000pt;}
.y88{bottom:548.320000pt;}
.y28{bottom:549.600000pt;}
.y16e{bottom:550.400000pt;}
.y11{bottom:554.080000pt;}
.y86{bottom:555.680000pt;}
.yb8{bottom:556.320000pt;}
.y139{bottom:557.120000pt;}
.y68{bottom:559.840000pt;}
.y151{bottom:563.680000pt;}
.y16d{bottom:568.800000pt;}
.y56{bottom:569.600000pt;}
.y10{bottom:572.480000pt;}
.y99{bottom:577.280000pt;}
.y67{bottom:578.240000pt;}
.y3b{bottom:578.720000pt;}
.y138{bottom:582.080000pt;}
.y16c{bottom:587.200000pt;}
.y27{bottom:587.520000pt;}
.yf{bottom:590.880000pt;}
.y66{bottom:593.120000pt;}
.y85{bottom:599.520000pt;}
.y137{bottom:600.480000pt;}
.y55{bottom:606.400000pt;}
.y84{bottom:607.520000pt;}
.y16b{bottom:612.320000pt;}
.y98{bottom:614.080000pt;}
.y3a{bottom:615.520000pt;}
.y136{bottom:618.880000pt;}
.y54{bottom:624.800000pt;}
.y26{bottom:625.600000pt;}
.ye{bottom:625.767040pt;}
.yf6{bottom:629.442400pt;}
.yb7{bottom:629.920000pt;}
.y16a{bottom:630.720000pt;}
.y135{bottom:637.280000pt;}
.yf5{bottom:637.440000pt;}
.y53{bottom:643.200000pt;}
.y150{bottom:644.000000pt;}
.yb6{bottom:648.320000pt;}
.y169{bottom:649.120000pt;}
.y97{bottom:650.880000pt;}
.y39{bottom:652.320000pt;}
.y52{bottom:661.600000pt;}
.y25{bottom:662.400000pt;}
.yb5{bottom:663.840000pt;}
.yd{bottom:665.600000pt;}
.y168{bottom:667.520000pt;}
.yf4{bottom:675.842400pt;}
.yeb{bottom:677.120000pt;}
.y134{bottom:680.800000pt;}
.yb4{bottom:682.880000pt;}
.yf3{bottom:683.840000pt;}
.y96{bottom:688.000000pt;}
.y38{bottom:689.120000pt;}
.y167{bottom:692.480000pt;}
.yea{bottom:695.520000pt;}
.yd8{bottom:696.480000pt;}
.y51{bottom:698.400000pt;}
.y24{bottom:699.200000pt;}
.yc{bottom:699.360000pt;}
.yb2{bottom:701.920000pt;}
.y166{bottom:710.880000pt;}
.yd7{bottom:714.880000pt;}
.ye9{bottom:716.160000pt;}
.yb0{bottom:720.960000pt;}
.y133{bottom:724.320000pt;}
.yf2{bottom:725.120000pt;}
.y95{bottom:725.600000pt;}
.y37{bottom:725.920000pt;}
.yb{bottom:727.047040pt;}
.y165{bottom:729.280000pt;}
.yd6{bottom:730.400000pt;}
.y186{bottom:730.880000pt;}
.ye8{bottom:731.680000pt;}
.y50{bottom:735.200000pt;}
.yaa{bottom:740.160000pt;}
.y132{bottom:742.720000pt;}
.yd5{bottom:746.400000pt;}
.y23{bottom:749.280000pt;}
.y164{bottom:754.400000pt;}
.ye7{bottom:757.600000pt;}
.yac{bottom:760.800000pt;}
.y131{bottom:761.120000pt;}
.yd4{bottom:762.400000pt;}
.y36{bottom:762.720000pt;}
.yaf{bottom:763.200000pt;}
.ya{bottom:766.880000pt;}
.y185{bottom:767.680000pt;}
.y4e{bottom:772.480000pt;}
.y163{bottom:772.800000pt;}
.ye4{bottom:772.960000pt;}
.yd3{bottom:778.400000pt;}
.y14f{bottom:779.520000pt;}
.y4f{bottom:779.674400pt;}
.ya9{bottom:781.120000pt;}
.ye6{bottom:782.880000pt;}
.y22{bottom:786.080000pt;}
.ye1{bottom:793.600000pt;}
.yd2{bottom:794.400000pt;}
.y9{bottom:794.407040pt;}
.y162{bottom:797.920000pt;}
.ye3{bottom:798.880000pt;}
.y35{bottom:799.520000pt;}
.y130{bottom:804.480000pt;}
.yd1{bottom:810.400000pt;}
.y4c{bottom:814.880000pt;}
.y161{bottom:816.320000pt;}
.ya8{bottom:817.920000pt;}
.y4d{bottom:822.074400pt;}
.y12f{bottom:822.880000pt;}
.yd0{bottom:826.400000pt;}
.y8{bottom:834.240000pt;}
.y160{bottom:834.720000pt;}
.y21{bottom:836.320000pt;}
.y12e{bottom:841.280000pt;}
.ycf{bottom:842.400000pt;}
.ya7{bottom:854.720000pt;}
.y4b{bottom:856.162400pt;}
.yce{bottom:858.400000pt;}
.y12d{bottom:859.680000pt;}
.y7{bottom:863.840000pt;}
.y4a{bottom:864.160000pt;}
.y14e{bottom:866.400000pt;}
.y20{bottom:873.120000pt;}
.ycd{bottom:874.400000pt;}
.y15f{bottom:878.080000pt;}
.y6{bottom:882.240000pt;}
.y12c{bottom:884.800000pt;}
.ycc{bottom:890.400000pt;}
.y5{bottom:901.125600pt;}
.y12b{bottom:903.200000pt;}
.y1f{bottom:909.920000pt;}
.y12a{bottom:921.600000pt;}
.y4{bottom:922.557120pt;}
.ycb{bottom:928.320000pt;}
.y3{bottom:944.160000pt;}
.y1e{bottom:946.720000pt;}
.h25{height:15.198667pt;}
.h23{height:15.200000pt;}
.h16{height:15.360000pt;}
.h21{height:18.400000pt;}
.h22{height:18.401333pt;}
.h26{height:20.000000pt;}
.h2b{height:21.120000pt;}
.h2a{height:21.280000pt;}
.h14{height:23.996250pt;}
.h6{height:25.773750pt;}
.ha{height:28.704375pt;}
.h8{height:28.836250pt;}
.h1e{height:29.773125pt;}
.h11{height:30.720000pt;}
.h20{height:35.614687pt;}
.h29{height:36.798667pt;}
.h1d{height:36.800000pt;}
.h13{height:36.883125pt;}
.h15{height:36.909063pt;}
.h7{height:40.882500pt;}
.h5{height:43.375000pt;}
.h12{height:44.119688pt;}
.hf{height:44.437500pt;}
.h1f{height:44.468750pt;}
.h24{height:47.264375pt;}
.h9{height:48.903750pt;}
.h2{height:50.748750pt;}
.h3{height:50.760270pt;}
.h1{height:53.156250pt;}
.he{height:57.865000pt;}
.h4{height:59.934687pt;}
.h10{height:81.500000pt;}
.h1c{height:81.545000pt;}
.h1b{height:82.596250pt;}
.h28{height:85.146650pt;}
.h19{height:85.156250pt;}
.hb{height:95.625000pt;}
.h1a{height:99.465000pt;}
.hd{height:101.365160pt;}
.h27{height:113.490400pt;}
.h17{height:127.625000pt;}
.h18{height:131.465000pt;}
.hc{height:146.815400pt;}
.h0{height:1056.000000pt;}
.w4{width:33.600000pt;}
.w3{width:33.760000pt;}
.w2{width:33.761333pt;}
.w6{width:40.320000pt;}
.w5{width:40.480000pt;}
.w7{width:40.481333pt;}
.w9{width:40.960000pt;}
.w8{width:41.120000pt;}
.wa{width:43.518667pt;}
.w12{width:46.720000pt;}
.w11{width:46.721333pt;}
.w13{width:49.278667pt;}
.w1e{width:49.280000pt;}
.wb{width:50.718667pt;}
.w1b{width:56.000000pt;}
.wd{width:57.760000pt;}
.wf{width:57.761333pt;}
.wc{width:57.918667pt;}
.we{width:57.920000pt;}
.w1c{width:58.080000pt;}
.w10{width:59.200000pt;}
.w1a{width:60.320000pt;}
.w1d{width:62.560000pt;}
.w1{width:67.360000pt;}
.w18{width:71.040000pt;}
.w15{width:71.201333pt;}
.w19{width:74.561333pt;}
.w14{width:76.640000pt;}
.w16{width:84.160000pt;}
.w17{width:84.480000pt;}
.w20{width:132.320000pt;}
.w21{width:138.880000pt;}
.w22{width:142.398667pt;}
.w1f{width:172.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.520000pt;}
.x23{left:8.800000pt;}
.x36{left:10.080000pt;}
.x1a{left:11.040000pt;}
.x27{left:12.160000pt;}
.x2d{left:13.280000pt;}
.x30{left:15.360000pt;}
.x63{left:16.320000pt;}
.x5f{left:17.280000pt;}
.x3e{left:19.040000pt;}
.x4e{left:21.440000pt;}
.x1b{left:22.720000pt;}
.x25{left:24.960000pt;}
.x21{left:26.720000pt;}
.x29{left:28.320000pt;}
.x40{left:31.840000pt;}
.x18{left:33.600000pt;}
.x53{left:35.520000pt;}
.x56{left:38.240000pt;}
.x57{left:39.840000pt;}
.x70{left:40.960000pt;}
.x6e{left:45.760000pt;}
.x6f{left:50.880000pt;}
.x71{left:54.880000pt;}
.x5b{left:58.560000pt;}
.x72{left:66.720000pt;}
.x6d{left:72.320000pt;}
.x3d{left:82.880000pt;}
.x67{left:86.080000pt;}
.x2{left:113.440000pt;}
.x14{left:114.880000pt;}
.x9{left:116.640000pt;}
.x15{left:117.600000pt;}
.xc{left:126.400000pt;}
.x7{left:131.840000pt;}
.x58{left:133.440000pt;}
.x74{left:138.080000pt;}
.x64{left:140.320000pt;}
.x65{left:148.480000pt;}
.xb{left:149.600000pt;}
.xd{left:153.127040pt;}
.x3f{left:154.080000pt;}
.x7b{left:156.160000pt;}
.x3{left:164.000000pt;}
.x41{left:178.400000pt;}
.x17{left:181.760000pt;}
.x16{left:183.680000pt;}
.x5a{left:184.800000pt;}
.x42{left:192.640000pt;}
.x77{left:195.040000pt;}
.x3a{left:200.480000pt;}
.x5c{left:205.120000pt;}
.x4{left:209.115200pt;}
.x59{left:212.000000pt;}
.x78{left:228.960000pt;}
.x43{left:236.960000pt;}
.x51{left:248.800000pt;}
.x19{left:249.760000pt;}
.x10{left:251.359200pt;}
.x6{left:267.680000pt;}
.x5d{left:280.320000pt;}
.x1d{left:284.160000pt;}
.x68{left:287.040000pt;}
.xa{left:290.560000pt;}
.x44{left:295.360000pt;}
.x3b{left:299.680000pt;}
.x1e{left:302.720000pt;}
.xf{left:305.440000pt;}
.x1f{left:318.560000pt;}
.x52{left:326.080000pt;}
.x8{left:329.120640pt;}
.x20{left:341.280000pt;}
.x75{left:348.960000pt;}
.x22{left:352.800000pt;}
.x45{left:353.920000pt;}
.x7a{left:362.400000pt;}
.x12{left:367.183840pt;}
.x24{left:368.960000pt;}
.xe{left:378.240000pt;}
.x26{left:387.200000pt;}
.x66{left:390.237440pt;}
.x54{left:397.920000pt;}
.x28{left:406.720000pt;}
.x5{left:408.004640pt;}
.x46{left:412.320000pt;}
.x69{left:420.000000pt;}
.x47{left:426.240000pt;}
.x2a{left:428.320000pt;}
.x6a{left:438.400000pt;}
.x11{left:442.543840pt;}
.x2b{left:447.840000pt;}
.x5e{left:454.720000pt;}
.x37{left:463.840000pt;}
.x2c{left:469.440000pt;}
.x48{left:470.880000pt;}
.x55{left:482.720000pt;}
.x2e{left:490.080000pt;}
.x2f{left:510.400000pt;}
.x60{left:513.440000pt;}
.x49{left:529.280000pt;}
.x31{left:533.120000pt;}
.x32{left:551.520000pt;}
.x6b{left:559.520000pt;}
.x33{left:574.080000pt;}
.x61{left:576.640000pt;}
.x6c{left:579.680000pt;}
.x38{left:584.000000pt;}
.x4a{left:589.120000pt;}
.x34{left:593.280000pt;}
.x4b{left:615.200000pt;}
.x35{left:618.720000pt;}
.x62{left:626.560000pt;}
.x4c{left:636.480000pt;}
.x76{left:637.440000pt;}
.x79{left:652.000000pt;}
.x4d{left:653.120000pt;}
.x73{left:667.360000pt;}
.x39{left:671.040000pt;}
.x4f{left:683.840000pt;}
.x3c{left:686.560000pt;}
.x1{left:694.560000pt;}
.x50{left:699.680000pt;}
.x13{left:703.360000pt;}
}




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