
    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_58447cfe489e3caefe2b4bd6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_301b23ea0bd0ce5b9221357f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_df1df001c47190da44708638.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_07f96a8ba80b40ee2ec57a25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_80e81d6b6e8a909dbc92b077.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e5a7f11966a48faaeb3de239.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_24aedfaa557d955c6c56be15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_fc1303a3368171f15188e3f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_77814246dfbd0548de5b18e9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a655497f3753df9f8220de65.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:22.515600px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls4d{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.780000px;}
.ls4c{letter-spacing:-0.660000px;}
.ls39{letter-spacing:-0.540000px;}
.ls5f{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.225000px;}
.ls18{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.120000px;}
.ls60{letter-spacing:-0.096000px;}
.ls19{letter-spacing:-0.060000px;}
.ls7b{letter-spacing:-0.048000px;}
.ls1a{letter-spacing:-0.045000px;}
.ls13{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.004140px;}
.ls11{letter-spacing:0.005676px;}
.ls52{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls47{letter-spacing:0.093600px;}
.ls4f{letter-spacing:0.096000px;}
.ls7{letter-spacing:0.120000px;}
.ls46{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls55{letter-spacing:0.192000px;}
.ls22{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.300000px;}
.ls6a{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.420000px;}
.ls59{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls54{letter-spacing:0.528000px;}
.ls4{letter-spacing:0.540000px;}
.ls57{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.600000px;}
.ls53{letter-spacing:0.624000px;}
.ls5{letter-spacing:0.660000px;}
.ls50{letter-spacing:0.672000px;}
.ls3b{letter-spacing:0.720000px;}
.ls75{letter-spacing:0.768000px;}
.ls2{letter-spacing:0.780000px;}
.ls58{letter-spacing:0.816000px;}
.ls2b{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.864000px;}
.ls4b{letter-spacing:0.900000px;}
.ls51{letter-spacing:0.912000px;}
.ls1b{letter-spacing:0.960000px;}
.ls70{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls69{letter-spacing:1.056000px;}
.ls1f{letter-spacing:1.080000px;}
.ls5c{letter-spacing:1.122000px;}
.lse{letter-spacing:1.140000px;}
.lsc{letter-spacing:1.200000px;}
.ls6b{letter-spacing:1.248000px;}
.lsd{letter-spacing:1.260000px;}
.ls2e{letter-spacing:1.320000px;}
.ls56{letter-spacing:1.344000px;}
.ls21{letter-spacing:1.380000px;}
.ls1c{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.500000px;}
.ls6c{letter-spacing:1.536000px;}
.ls2c{letter-spacing:1.560000px;}
.ls78{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.620000px;}
.ls5d{letter-spacing:1.680000px;}
.ls20{letter-spacing:1.740000px;}
.ls79{letter-spacing:1.776000px;}
.ls48{letter-spacing:1.800000px;}
.ls68{letter-spacing:1.824000px;}
.ls5b{letter-spacing:1.859400px;}
.ls32{letter-spacing:1.860000px;}
.ls4e{letter-spacing:1.872000px;}
.ls26{letter-spacing:1.920000px;}
.ls6f{letter-spacing:1.968000px;}
.ls24{letter-spacing:1.980000px;}
.ls1e{letter-spacing:2.040000px;}
.ls2a{letter-spacing:2.100000px;}
.ls3{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.220000px;}
.ls42{letter-spacing:2.280000px;}
.ls30{letter-spacing:2.400000px;}
.ls6d{letter-spacing:2.448000px;}
.ls28{letter-spacing:2.460000px;}
.ls73{letter-spacing:2.496000px;}
.ls35{letter-spacing:2.520000px;}
.ls76{letter-spacing:2.544000px;}
.ls3d{letter-spacing:2.640000px;}
.ls3a{letter-spacing:2.700000px;}
.ls29{letter-spacing:2.760000px;}
.ls61{letter-spacing:2.820000px;}
.ls63{letter-spacing:3.000000px;}
.ls3c{letter-spacing:3.060000px;}
.ls71{letter-spacing:3.072000px;}
.ls2f{letter-spacing:3.120000px;}
.ls77{letter-spacing:3.180000px;}
.ls74{letter-spacing:3.216000px;}
.ls25{letter-spacing:3.240000px;}
.ls72{letter-spacing:3.360000px;}
.ls7a{letter-spacing:3.408000px;}
.ls10{letter-spacing:3.600000px;}
.ls66{letter-spacing:3.780000px;}
.ls2d{letter-spacing:3.840000px;}
.ls64{letter-spacing:4.020000px;}
.ls31{letter-spacing:4.080000px;}
.ls5e{letter-spacing:4.200000px;}
.ls49{letter-spacing:5.220000px;}
.ls62{letter-spacing:5.400000px;}
.ls5a{letter-spacing:5.520000px;}
.ls34{letter-spacing:5.820000px;}
.ls65{letter-spacing:6.060000px;}
.ls37{letter-spacing:6.240000px;}
.ls1{letter-spacing:6.300000px;}
.ls67{letter-spacing:7.620000px;}
.ls4a{letter-spacing:10.140000px;}
.ls33{letter-spacing:10.620000px;}
.ls40{letter-spacing:67.083000px;}
.ls43{letter-spacing:91.083000px;}
.ls3e{letter-spacing:146.064000px;}
.ls45{letter-spacing:261.161400px;}
.ls3f{letter-spacing:407.240400px;}
.ls41{letter-spacing:409.021800px;}
.ls44{letter-spacing:431.240400px;}
.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;}
}
.ws63{word-spacing:-158.064000px;}
.ws3b{word-spacing:-25.620000px;}
.ws2{word-spacing:-21.300000px;}
.ws3d{word-spacing:-21.240000px;}
.ws87{word-spacing:-17.700000px;}
.wsc5{word-spacing:-17.460000px;}
.wsd{word-spacing:-17.160000px;}
.wscb{word-spacing:-17.100000px;}
.ws33{word-spacing:-17.040000px;}
.ws37{word-spacing:-16.680000px;}
.ws11{word-spacing:-16.620000px;}
.ws32{word-spacing:-16.440000px;}
.ws89{word-spacing:-16.320000px;}
.wsb{word-spacing:-16.260000px;}
.ws36{word-spacing:-16.200000px;}
.ws35{word-spacing:-16.140000px;}
.ws34{word-spacing:-16.080000px;}
.wsc{word-spacing:-15.780000px;}
.ws88{word-spacing:-15.720000px;}
.ws3{word-spacing:-15.540000px;}
.ws8{word-spacing:-15.480000px;}
.ws9{word-spacing:-15.420000px;}
.ws7{word-spacing:-15.360000px;}
.ws86{word-spacing:-15.300000px;}
.ws3a{word-spacing:-15.240000px;}
.wsd1{word-spacing:-15.216000px;}
.ws8a{word-spacing:-15.180000px;}
.ws8b{word-spacing:-15.120000px;}
.wsa1{word-spacing:-15.060000px;}
.ws5{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.880000px;}
.ws6{word-spacing:-14.820000px;}
.wsd3{word-spacing:-14.544000px;}
.wsce{word-spacing:-14.496000px;}
.ws3c{word-spacing:-14.460000px;}
.wscc{word-spacing:-13.824000px;}
.ws39{word-spacing:-13.500000px;}
.wsd0{word-spacing:-13.440000px;}
.ws12{word-spacing:-13.344000px;}
.wsd2{word-spacing:-12.768000px;}
.wsbf{word-spacing:-12.480000px;}
.wscd{word-spacing:-12.336000px;}
.ws1{word-spacing:-12.285000px;}
.ws0{word-spacing:-12.240000px;}
.ws69{word-spacing:-12.000000px;}
.wscf{word-spacing:-11.952000px;}
.wsb4{word-spacing:-11.808000px;}
.wsa0{word-spacing:-11.520000px;}
.wsb6{word-spacing:-11.472000px;}
.ws57{word-spacing:-10.620000px;}
.wsab{word-spacing:-10.368000px;}
.wsad{word-spacing:-10.320000px;}
.wsf{word-spacing:-10.210662px;}
.wsa3{word-spacing:-7.824000px;}
.ws10{word-spacing:-7.293330px;}
.wsa7{word-spacing:-6.432000px;}
.ws18{word-spacing:-6.300000px;}
.wsb2{word-spacing:-6.192000px;}
.wsb7{word-spacing:-5.520000px;}
.ws91{word-spacing:-5.220000px;}
.wsa6{word-spacing:-4.944000px;}
.ws55{word-spacing:-4.080000px;}
.wsd6{word-spacing:-4.020000px;}
.wsa9{word-spacing:-3.744000px;}
.ws30{word-spacing:-3.600000px;}
.ws4a{word-spacing:-3.240000px;}
.wsd8{word-spacing:-3.180000px;}
.ws51{word-spacing:-3.120000px;}
.wse6{word-spacing:-3.072000px;}
.ws72{word-spacing:-3.060000px;}
.wsd4{word-spacing:-3.000000px;}
.ws14{word-spacing:-2.886000px;}
.wsca{word-spacing:-2.820000px;}
.ws4e{word-spacing:-2.760000px;}
.ws5b{word-spacing:-2.700000px;}
.wsed{word-spacing:-2.544000px;}
.wse8{word-spacing:-2.496000px;}
.ws4c{word-spacing:-2.460000px;}
.wse1{word-spacing:-2.448000px;}
.ws52{word-spacing:-2.400000px;}
.ws73{word-spacing:-2.280000px;}
.ws47{word-spacing:-2.220000px;}
.ws2e{word-spacing:-2.160000px;}
.ws48{word-spacing:-2.100000px;}
.ws71{word-spacing:-1.980000px;}
.wse2{word-spacing:-1.968000px;}
.wse0{word-spacing:-1.920000px;}
.ws9f{word-spacing:-1.872000px;}
.ws56{word-spacing:-1.860000px;}
.wsd9{word-spacing:-1.824000px;}
.ws76{word-spacing:-1.800000px;}
.wse3{word-spacing:-1.776000px;}
.ws42{word-spacing:-1.740000px;}
.wsd5{word-spacing:-1.620000px;}
.wsdc{word-spacing:-1.584000px;}
.ws5c{word-spacing:-1.560000px;}
.wsdf{word-spacing:-1.536000px;}
.ws21{word-spacing:-1.500000px;}
.ws3f{word-spacing:-1.440000px;}
.wsb0{word-spacing:-1.392000px;}
.ws53{word-spacing:-1.380000px;}
.ws74{word-spacing:-1.320000px;}
.ws27{word-spacing:-1.260000px;}
.wsde{word-spacing:-1.248000px;}
.ws26{word-spacing:-1.200000px;}
.ws2a{word-spacing:-1.140000px;}
.ws31{word-spacing:-1.080000px;}
.wsda{word-spacing:-1.056000px;}
.ws2d{word-spacing:-1.020000px;}
.wse4{word-spacing:-1.008000px;}
.ws3e{word-spacing:-0.960000px;}
.wsa5{word-spacing:-0.912000px;}
.ws98{word-spacing:-0.900000px;}
.ws9c{word-spacing:-0.864000px;}
.ws4f{word-spacing:-0.840000px;}
.wse5{word-spacing:-0.816000px;}
.ws2c{word-spacing:-0.780000px;}
.wsec{word-spacing:-0.768000px;}
.ws49{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.672000px;}
.ws4d{word-spacing:-0.660000px;}
.wsaa{word-spacing:-0.624000px;}
.ws75{word-spacing:-0.600000px;}
.wsb1{word-spacing:-0.576000px;}
.ws5a{word-spacing:-0.540000px;}
.wsae{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.480000px;}
.wsb5{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.420000px;}
.ws1f{word-spacing:-0.360000px;}
.wsdb{word-spacing:-0.336000px;}
.ws46{word-spacing:-0.300000px;}
.ws15{word-spacing:-0.270000px;}
.ws45{word-spacing:-0.240000px;}
.wsaf{word-spacing:-0.192000px;}
.ws1d{word-spacing:-0.180000px;}
.ws84{word-spacing:-0.144000px;}
.wse{word-spacing:-0.126600px;}
.ws29{word-spacing:-0.120000px;}
.ws38{word-spacing:-0.060000px;}
.wsa8{word-spacing:-0.048000px;}
.ws13{word-spacing:0.000000px;}
.wse9{word-spacing:0.048000px;}
.ws25{word-spacing:0.060000px;}
.wsb3{word-spacing:0.096000px;}
.ws1c{word-spacing:0.120000px;}
.ws1e{word-spacing:0.180000px;}
.ws16{word-spacing:0.270000px;}
.ws43{word-spacing:0.300000px;}
.wsb9{word-spacing:0.360000px;}
.wsc2{word-spacing:0.420000px;}
.wsac{word-spacing:0.480000px;}
.ws59{word-spacing:0.540000px;}
.ws93{word-spacing:0.660000px;}
.ws9e{word-spacing:0.816000px;}
.ws95{word-spacing:1.080000px;}
.wsc6{word-spacing:1.200000px;}
.wsbc{word-spacing:1.380000px;}
.ws54{word-spacing:1.560000px;}
.ws19{word-spacing:1.740000px;}
.wsdd{word-spacing:2.016000px;}
.ws77{word-spacing:2.040000px;}
.ws9d{word-spacing:2.064000px;}
.ws24{word-spacing:2.100000px;}
.ws94{word-spacing:2.160000px;}
.wsc0{word-spacing:2.280000px;}
.ws97{word-spacing:2.820000px;}
.wsbd{word-spacing:2.880000px;}
.wsa2{word-spacing:3.060000px;}
.ws9b{word-spacing:3.216000px;}
.ws44{word-spacing:3.240000px;}
.wsc3{word-spacing:3.936000px;}
.ws85{word-spacing:3.984000px;}
.ws50{word-spacing:4.080000px;}
.ws90{word-spacing:4.140000px;}
.ws4b{word-spacing:4.200000px;}
.wsc8{word-spacing:4.260000px;}
.wsc4{word-spacing:4.416000px;}
.wsbb{word-spacing:4.440000px;}
.ws58{word-spacing:4.500000px;}
.wsba{word-spacing:4.560000px;}
.wseb{word-spacing:4.704000px;}
.ws17{word-spacing:4.920000px;}
.ws1a{word-spacing:4.980000px;}
.ws96{word-spacing:5.100000px;}
.wsbe{word-spacing:5.280000px;}
.ws20{word-spacing:5.340000px;}
.ws22{word-spacing:5.400000px;}
.wsea{word-spacing:5.424000px;}
.ws9a{word-spacing:5.460000px;}
.wsd7{word-spacing:5.520000px;}
.ws92{word-spacing:5.640000px;}
.ws2b{word-spacing:5.700000px;}
.wsc1{word-spacing:5.760000px;}
.wsc9{word-spacing:6.120000px;}
.ws41{word-spacing:6.180000px;}
.ws28{word-spacing:6.240000px;}
.ws99{word-spacing:6.300000px;}
.ws40{word-spacing:6.360000px;}
.wse7{word-spacing:6.480000px;}
.wsb8{word-spacing:6.900000px;}
.ws2f{word-spacing:7.080000px;}
.wsc7{word-spacing:7.440000px;}
.ws64{word-spacing:27.456000px;}
.ws65{word-spacing:50.064000px;}
.ws66{word-spacing:62.064000px;}
.ws68{word-spacing:68.064000px;}
.ws67{word-spacing:74.064000px;}
.ws7e{word-spacing:74.976000px;}
.ws6e{word-spacing:75.840000px;}
.ws6a{word-spacing:77.091000px;}
.ws5e{word-spacing:80.736000px;}
.ws6d{word-spacing:86.064000px;}
.ws7f{word-spacing:86.976000px;}
.ws5d{word-spacing:88.320000px;}
.ws60{word-spacing:94.080000px;}
.ws6b{word-spacing:98.064000px;}
.ws79{word-spacing:98.093400px;}
.ws81{word-spacing:98.427000px;}
.ws5f{word-spacing:112.704000px;}
.ws61{word-spacing:115.392000px;}
.ws6c{word-spacing:116.064000px;}
.ws62{word-spacing:134.064000px;}
.ws7c{word-spacing:232.176000px;}
.ws70{word-spacing:244.176000px;}
.ws80{word-spacing:247.169400px;}
.ws7a{word-spacing:256.176000px;}
.ws78{word-spacing:268.176000px;}
.ws7b{word-spacing:393.248400px;}
.ws83{word-spacing:402.240000px;}
.ws82{word-spacing:405.248400px;}
.ws7d{word-spacing:417.248400px;}
.ws8d{word-spacing:419.232000px;}
.ws6f{word-spacing:426.240000px;}
.ws8f{word-spacing:582.336000px;}
.ws8e{word-spacing:618.336000px;}
.ws8c{word-spacing:638.304000px;}
._11{margin-left:-2897.715000px;}
._12{margin-left:-2873.907000px;}
._1e{margin-left:-146.064000px;}
._10{margin-left:-10.860000px;}
._b{margin-left:-9.368400px;}
._c{margin-left:-6.666000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.981000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.014000px;}
._5{width:1.380000px;}
._6{width:2.460000px;}
._d{width:3.600000px;}
._7{width:4.920000px;}
._8{width:6.300000px;}
._9{width:7.380000px;}
._a{width:8.520000px;}
._e{width:9.561000px;}
._4{width:11.130000px;}
._f{width:16.320000px;}
._74{width:20.118000px;}
._73{width:21.990000px;}
._20{width:58.128000px;}
._5e{width:62.064000px;}
._63{width:66.672000px;}
._24{width:74.064000px;}
._21{width:76.752000px;}
._31{width:86.064000px;}
._52{width:87.816000px;}
._23{width:92.064000px;}
._15{width:98.064000px;}
._14{width:99.408000px;}
._16{width:100.752000px;}
._45{width:109.268400px;}
._3d{width:110.461800px;}
._17{width:112.320000px;}
._18{width:114.528000px;}
._1b{width:123.408000px;}
._1a{width:124.752000px;}
._28{width:128.064000px;}
._1c{width:129.984000px;}
._64{width:192.144000px;}
._65{width:214.272000px;}
._2c{width:256.176000px;}
._56{width:268.176000px;}
._67{width:279.693000px;}
._26{width:280.805400px;}
._4a{width:288.342000px;}
._4b{width:308.016000px;}
._57{width:331.296000px;}
._4e{width:345.312000px;}
._4c{width:348.342000px;}
._54{width:354.672000px;}
._36{width:358.656000px;}
._37{width:366.624000px;}
._4d{width:368.016000px;}
._3c{width:376.032000px;}
._5a{width:397.920000px;}
._6a{width:402.432000px;}
._39{width:403.680000px;}
._3a{width:410.688000px;}
._55{width:411.936000px;}
._2f{width:414.240000px;}
._3e{width:418.704000px;}
._48{width:421.344000px;}
._5f{width:423.984000px;}
._58{width:426.240000px;}
._3b{width:433.296000px;}
._44{width:438.240000px;}
._5d{width:439.968000px;}
._3f{width:441.888000px;}
._60{width:447.936000px;}
._38{width:455.952000px;}
._69{width:457.440000px;}
._50{width:458.640000px;}
._6f{width:468.096000px;}
._49{width:472.032000px;}
._2d{width:486.240000px;}
._32{width:496.896000px;}
._2e{width:501.264000px;}
._33{width:502.656000px;}
._30{width:503.904000px;}
._2b{width:509.232000px;}
._22{width:523.965000px;}
._41{width:526.224000px;}
._51{width:530.640000px;}
._34{width:542.262000px;}
._40{width:544.032000px;}
._25{width:553.920000px;}
._61{width:563.616000px;}
._66{width:566.304000px;}
._59{width:571.632000px;}
._53{width:578.640000px;}
._6e{width:630.336000px;}
._47{width:639.648000px;}
._62{width:649.920000px;}
._35{width:661.344000px;}
._6c{width:666.336000px;}
._29{width:670.656000px;}
._4f{width:675.936000px;}
._2a{width:697.248000px;}
._13{width:713.040000px;}
._42{width:716.928000px;}
._43{width:731.952000px;}
._46{width:734.592000px;}
._19{width:739.296000px;}
._1d{width:745.968000px;}
._27{width:753.312000px;}
._1f{width:772.656000px;}
._70{width:818.736000px;}
._68{width:827.376000px;}
._6d{width:837.408000px;}
._6b{width:842.736000px;}
._71{width:872.016000px;}
._72{width:911.517000px;}
._5c{width:1829.952000px;}
._5b{width:1881.936000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsc{font-size:34.980000px;}
.fs6{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y10b{bottom:82.928850px;}
.y109{bottom:82.941150px;}
.y8a{bottom:83.050800px;}
.y174{bottom:83.353950px;}
.y18f{bottom:83.365650px;}
.y172{bottom:83.628600px;}
.y61{bottom:83.635350px;}
.y13f{bottom:83.912100px;}
.y4{bottom:88.026750px;}
.y103{bottom:89.009250px;}
.ye6{bottom:89.757000px;}
.y87{bottom:90.970350px;}
.yad{bottom:92.052450px;}
.y10a{bottom:98.672850px;}
.y108{bottom:98.685150px;}
.y173{bottom:99.097950px;}
.y171{bottom:101.628600px;}
.y60{bottom:101.635350px;}
.y13e{bottom:101.912100px;}
.y3{bottom:103.023000px;}
.y102{bottom:105.257250px;}
.ye5{bottom:106.251300px;}
.yac{bottom:108.300450px;}
.y86{bottom:108.970350px;}
.y170{bottom:119.628600px;}
.y5f{bottom:119.635350px;}
.y13d{bottom:119.912100px;}
.y101{bottom:121.505250px;}
.yab{bottom:124.556550px;}
.y85{bottom:126.970350px;}
.y19f{bottom:128.121900px;}
.ye4{bottom:131.767200px;}
.y16f{bottom:137.628600px;}
.y5e{bottom:137.635350px;}
.y100{bottom:137.753250px;}
.y13c{bottom:137.912100px;}
.y1dc{bottom:140.263500px;}
.yaa{bottom:140.804550px;}
.y19e{bottom:143.121900px;}
.y84{bottom:144.970350px;}
.ye3{bottom:148.027200px;}
.yff{bottom:154.001250px;}
.y1db{bottom:155.263500px;}
.y16e{bottom:155.628600px;}
.y5d{bottom:155.635350px;}
.y13b{bottom:155.912100px;}
.ya9{bottom:157.068300px;}
.y19d{bottom:158.121900px;}
.y15{bottom:160.733250px;}
.y83{bottom:162.970350px;}
.ye2{bottom:164.275200px;}
.yfe{bottom:170.249250px;}
.y1da{bottom:170.263500px;}
.y19c{bottom:173.121900px;}
.ya8{bottom:173.316300px;}
.y16d{bottom:173.628600px;}
.y5c{bottom:173.635350px;}
.y13a{bottom:173.912100px;}
.y14{bottom:178.733250px;}
.ye1{bottom:180.523200px;}
.y82{bottom:180.970350px;}
.y1d9{bottom:185.263500px;}
.yfd{bottom:186.497250px;}
.y19b{bottom:188.121900px;}
.ya7{bottom:189.564300px;}
.y5b{bottom:191.635350px;}
.y16c{bottom:191.642100px;}
.y139{bottom:191.912100px;}
.y13{bottom:196.733250px;}
.ye0{bottom:196.783050px;}
.y81{bottom:198.970350px;}
.y1d8{bottom:200.263500px;}
.yfc{bottom:202.745250px;}
.y19a{bottom:203.121900px;}
.ya6{bottom:205.812300px;}
.y5a{bottom:209.635350px;}
.y16b{bottom:209.642100px;}
.y138{bottom:209.912100px;}
.ydf{bottom:213.031050px;}
.y12{bottom:214.733250px;}
.y1d7{bottom:215.263500px;}
.y80{bottom:216.970350px;}
.y199{bottom:218.121900px;}
.ya5{bottom:222.088200px;}
.y59{bottom:227.635350px;}
.y16a{bottom:227.642100px;}
.yde{bottom:229.279050px;}
.y1d6{bottom:230.263500px;}
.yfb{bottom:231.749250px;}
.y11{bottom:232.733250px;}
.y198{bottom:233.121900px;}
.y7f{bottom:234.970350px;}
.ya4{bottom:238.336200px;}
.y1d5{bottom:245.263500px;}
.y137{bottom:245.405250px;}
.ydd{bottom:245.531100px;}
.y58{bottom:245.635350px;}
.y169{bottom:245.642100px;}
.y197{bottom:248.121900px;}
.y10{bottom:250.733250px;}
.y7e{bottom:252.970350px;}
.ya3{bottom:254.584200px;}
.y1d4{bottom:260.263500px;}
.y136{bottom:260.405250px;}
.yfa{bottom:260.753250px;}
.ydc{bottom:261.802950px;}
.y57{bottom:263.635350px;}
.y168{bottom:263.642100px;}
.yf{bottom:268.733250px;}
.ya2{bottom:270.832200px;}
.y7d{bottom:270.970350px;}
.y1d3{bottom:275.263500px;}
.y135{bottom:275.405250px;}
.ydb{bottom:278.050950px;}
.y196{bottom:281.230350px;}
.y56{bottom:281.635350px;}
.y167{bottom:281.642100px;}
.ye{bottom:286.733250px;}
.ya1{bottom:287.080200px;}
.y7c{bottom:288.970350px;}
.y1d2{bottom:290.263500px;}
.y134{bottom:290.405250px;}
.yf9{bottom:293.144400px;}
.yda{bottom:294.298950px;}
.y55{bottom:299.635350px;}
.y166{bottom:299.642100px;}
.ya0{bottom:303.328200px;}
.yd{bottom:304.733250px;}
.y1d1{bottom:305.263500px;}
.y133{bottom:305.405250px;}
.y7b{bottom:306.970350px;}
.yd9{bottom:310.546950px;}
.y54{bottom:317.635350px;}
.y165{bottom:317.642100px;}
.y9f{bottom:319.576200px;}
.y1d0{bottom:320.263500px;}
.y132{bottom:320.405250px;}
.yc{bottom:322.733250px;}
.y7a{bottom:324.970350px;}
.yd8{bottom:326.794950px;}
.y1cf{bottom:335.263500px;}
.y131{bottom:335.405250px;}
.y53{bottom:335.635350px;}
.y164{bottom:335.642100px;}
.yf5{bottom:335.770350px;}
.y9e{bottom:335.836050px;}
.yb{bottom:340.733250px;}
.y79{bottom:342.970350px;}
.yd7{bottom:343.042950px;}
.y1ce{bottom:350.263500px;}
.y130{bottom:350.405250px;}
.yf8{bottom:351.357750px;}
.y9d{bottom:352.084050px;}
.y195{bottom:353.365350px;}
.y52{bottom:353.635350px;}
.y163{bottom:353.642100px;}
.yf4{bottom:353.770350px;}
.y89{bottom:357.298800px;}
.ya{bottom:358.733250px;}
.yd6{bottom:359.298750px;}
.y78{bottom:360.970350px;}
.y1cd{bottom:365.263500px;}
.y12f{bottom:365.405250px;}
.yf7{bottom:367.101750px;}
.y9c{bottom:368.332050px;}
.y51{bottom:371.635350px;}
.y162{bottom:371.642100px;}
.yf3{bottom:371.770350px;}
.yd5{bottom:375.546750px;}
.y9{bottom:376.733250px;}
.y77{bottom:378.970350px;}
.y1cc{bottom:380.263500px;}
.y12e{bottom:380.405250px;}
.yf6{bottom:382.845750px;}
.y9b{bottom:384.599850px;}
.y50{bottom:389.635350px;}
.y161{bottom:389.642100px;}
.yf2{bottom:389.770350px;}
.yd4{bottom:391.806750px;}
.y8{bottom:394.733250px;}
.y1cb{bottom:395.263500px;}
.y12d{bottom:395.405250px;}
.y76{bottom:396.970350px;}
.y9a{bottom:400.847850px;}
.y194{bottom:407.365350px;}
.y4f{bottom:407.635350px;}
.y160{bottom:407.642100px;}
.yf1{bottom:407.770350px;}
.yd3{bottom:408.054750px;}
.y1ca{bottom:410.263500px;}
.y12c{bottom:410.405250px;}
.y7{bottom:412.733250px;}
.y75{bottom:414.970350px;}
.y99{bottom:417.095850px;}
.yd2{bottom:424.302750px;}
.y1c9{bottom:425.263500px;}
.y12b{bottom:425.405250px;}
.y4e{bottom:425.635350px;}
.y15f{bottom:425.642100px;}
.yf0{bottom:425.770350px;}
.y6{bottom:430.733250px;}
.y74{bottom:432.970350px;}
.y98{bottom:433.343850px;}
.y1c8{bottom:440.265900px;}
.y12a{bottom:440.405250px;}
.yd1{bottom:440.570550px;}
.y4d{bottom:443.635350px;}
.y15e{bottom:443.642100px;}
.yef{bottom:443.770350px;}
.y107{bottom:448.161150px;}
.y17{bottom:448.733250px;}
.y97{bottom:449.591850px;}
.y73{bottom:450.970350px;}
.y1c7{bottom:455.265900px;}
.y129{bottom:455.405250px;}
.yd0{bottom:456.818550px;}
.y4c{bottom:461.635350px;}
.y15d{bottom:461.642100px;}
.yee{bottom:461.770350px;}
.y106{bottom:463.905150px;}
.y96{bottom:465.863550px;}
.y5{bottom:466.328250px;}
.y16{bottom:466.733250px;}
.y72{bottom:468.970350px;}
.y1c6{bottom:470.265900px;}
.y128{bottom:470.405250px;}
.ycf{bottom:473.066550px;}
.y4b{bottom:479.635350px;}
.y15c{bottom:479.642100px;}
.y105{bottom:479.649150px;}
.yed{bottom:479.770350px;}
.y95{bottom:482.111550px;}
.y1c5{bottom:485.265900px;}
.y127{bottom:485.405250px;}
.y71{bottom:486.970350px;}
.yce{bottom:489.314550px;}
.y4a{bottom:497.635350px;}
.y15b{bottom:497.642100px;}
.yec{bottom:497.770350px;}
.y94{bottom:498.359550px;}
.y1c4{bottom:500.265900px;}
.y126{bottom:500.405250px;}
.y70{bottom:504.970350px;}
.ycd{bottom:505.562550px;}
.y1c3{bottom:515.265900px;}
.y125{bottom:515.405250px;}
.y49{bottom:515.635350px;}
.y15a{bottom:515.642100px;}
.yeb{bottom:515.770350px;}
.ycc{bottom:521.846250px;}
.y6f{bottom:522.970350px;}
.y93{bottom:527.363550px;}
.y1c2{bottom:530.265900px;}
.y124{bottom:530.405250px;}
.y159{bottom:533.642100px;}
.yea{bottom:533.770350px;}
.ycb{bottom:538.094250px;}
.y6e{bottom:540.970350px;}
.y2b{bottom:543.064200px;}
.y92{bottom:543.611550px;}
.y1c1{bottom:545.265900px;}
.y123{bottom:545.405250px;}
.y48{bottom:551.230350px;}
.y158{bottom:551.642100px;}
.ye9{bottom:551.770350px;}
.yca{bottom:554.342250px;}
.y6d{bottom:558.970350px;}
.y91{bottom:559.859550px;}
.y1c0{bottom:560.265900px;}
.y122{bottom:560.405250px;}
.y157{bottom:569.642100px;}
.ye8{bottom:569.770350px;}
.y2a{bottom:570.409200px;}
.yc9{bottom:570.590250px;}
.y1bf{bottom:575.265900px;}
.y121{bottom:575.405250px;}
.y90{bottom:576.107550px;}
.y6c{bottom:576.970350px;}
.yc8{bottom:586.838250px;}
.y156{bottom:587.642100px;}
.ye7{bottom:587.770350px;}
.y29{bottom:588.409200px;}
.y1be{bottom:590.265900px;}
.y120{bottom:590.405250px;}
.y6b{bottom:594.970350px;}
.yc7{bottom:603.086250px;}
.y1bd{bottom:605.265900px;}
.y193{bottom:605.365350px;}
.y11f{bottom:605.405250px;}
.y155{bottom:605.642100px;}
.y47{bottom:605.770350px;}
.y28{bottom:606.409200px;}
.y8f{bottom:608.500350px;}
.y6a{bottom:612.970350px;}
.yc6{bottom:619.334250px;}
.y1bc{bottom:620.265900px;}
.y11e{bottom:620.405250px;}
.y154{bottom:623.642100px;}
.y46{bottom:623.770350px;}
.y27{bottom:624.409200px;}
.y8e{bottom:628.000350px;}
.y69{bottom:630.970350px;}
.y1bb{bottom:635.265900px;}
.y11d{bottom:635.405250px;}
.yc5{bottom:635.582250px;}
.y153{bottom:641.642100px;}
.y45{bottom:641.770350px;}
.y26{bottom:642.409200px;}
.y8d{bottom:647.500350px;}
.y68{bottom:648.970350px;}
.y1ba{bottom:650.265900px;}
.y11c{bottom:650.405250px;}
.yc4{bottom:651.830250px;}
.y192{bottom:659.365350px;}
.y152{bottom:659.642100px;}
.y44{bottom:659.770350px;}
.y25{bottom:660.409200px;}
.y1b9{bottom:665.265900px;}
.y11b{bottom:665.405250px;}
.y8c{bottom:667.000350px;}
.yc3{bottom:668.086200px;}
.y151{bottom:677.642100px;}
.y43{bottom:677.770350px;}
.y1b8{bottom:680.265900px;}
.y11a{bottom:680.405250px;}
.y67{bottom:683.811000px;}
.yc2{bottom:684.334200px;}
.y1b7{bottom:695.265900px;}
.y119{bottom:695.405250px;}
.y42{bottom:695.770350px;}
.y66{bottom:699.417000px;}
.yc1{bottom:700.602000px;}
.y24{bottom:705.567300px;}
.y1b6{bottom:710.265900px;}
.y118{bottom:710.405250px;}
.y150{bottom:713.237100px;}
.y17d{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y65{bottom:713.785350px;}
.yc0{bottom:716.850000px;}
.y23{bottom:718.018050px;}
.y1b5{bottom:725.265900px;}
.y117{bottom:725.405250px;}
.y64{bottom:731.380350px;}
.y17c{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y18e{bottom:731.785350px;}
.ybf{bottom:733.098000px;}
.y1b4{bottom:740.265900px;}
.y116{bottom:740.405250px;}
.ybe{bottom:749.346000px;}
.y191{bottom:749.365350px;}
.y63{bottom:749.380350px;}
.y17b{bottom:749.635350px;}
.y22{bottom:749.733600px;}
.y3f{bottom:749.770350px;}
.y18d{bottom:749.785350px;}
.y1b3{bottom:755.265900px;}
.y115{bottom:755.405250px;}
.ybd{bottom:765.594000px;}
.y17a{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.y14f{bottom:767.777100px;}
.y18c{bottom:767.785350px;}
.y21{bottom:768.658950px;}
.y1b2{bottom:770.265900px;}
.y114{bottom:770.405250px;}
.y20{bottom:776.733600px;}
.ybc{bottom:781.857900px;}
.y62{bottom:785.230350px;}
.y1b1{bottom:785.265900px;}
.y113{bottom:785.405250px;}
.y179{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.y14e{bottom:785.777100px;}
.y18b{bottom:785.785350px;}
.y1f{bottom:795.658950px;}
.ybb{bottom:798.105900px;}
.y1b0{bottom:800.265900px;}
.y112{bottom:800.405250px;}
.y178{bottom:803.635350px;}
.y1e{bottom:803.733600px;}
.y3c{bottom:803.770350px;}
.y14d{bottom:803.777100px;}
.y18a{bottom:803.785350px;}
.yba{bottom:814.353900px;}
.y1af{bottom:815.265900px;}
.y111{bottom:815.405250px;}
.y177{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y14c{bottom:821.777100px;}
.y189{bottom:821.785350px;}
.y1d{bottom:822.658950px;}
.y1ae{bottom:830.265900px;}
.y110{bottom:830.405250px;}
.yb9{bottom:830.601900px;}
.y176{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y14b{bottom:839.777100px;}
.y188{bottom:839.785350px;}
.y1ad{bottom:845.265900px;}
.y10f{bottom:845.405250px;}
.yb8{bottom:846.861900px;}
.y1c{bottom:851.380950px;}
.y39{bottom:857.770350px;}
.y14a{bottom:857.777100px;}
.y187{bottom:857.785350px;}
.y1ac{bottom:860.265900px;}
.y10e{bottom:860.405250px;}
.yb7{bottom:863.109900px;}
.y175{bottom:875.230350px;}
.y1ab{bottom:875.265900px;}
.y38{bottom:875.770350px;}
.y149{bottom:875.777100px;}
.y186{bottom:875.785350px;}
.yb6{bottom:879.357900px;}
.y1aa{bottom:890.265900px;}
.y10d{bottom:893.515350px;}
.y37{bottom:893.770350px;}
.y148{bottom:893.777100px;}
.y185{bottom:893.785350px;}
.yb5{bottom:895.625250px;}
.y1b{bottom:897.551250px;}
.y1a9{bottom:905.265900px;}
.y36{bottom:911.770350px;}
.y147{bottom:911.777100px;}
.y184{bottom:911.785350px;}
.yb4{bottom:911.873250px;}
.y1a8{bottom:920.265900px;}
.yb3{bottom:928.121250px;}
.y35{bottom:929.770350px;}
.y146{bottom:929.777100px;}
.y183{bottom:929.785350px;}
.y1a{bottom:934.012050px;}
.y1a7{bottom:935.265900px;}
.y34{bottom:947.770350px;}
.y145{bottom:947.777100px;}
.y182{bottom:947.785350px;}
.y1a6{bottom:950.265900px;}
.yb2{bottom:956.753250px;}
.y1a5{bottom:965.265900px;}
.y33{bottom:965.770350px;}
.y144{bottom:965.777100px;}
.y181{bottom:965.785350px;}
.y19{bottom:970.472850px;}
.yb1{bottom:973.001250px;}
.y1a4{bottom:980.265900px;}
.y190{bottom:983.365350px;}
.y32{bottom:983.770350px;}
.y143{bottom:983.777100px;}
.y180{bottom:983.785350px;}
.yb0{bottom:989.249250px;}
.y1a3{bottom:995.265900px;}
.y31{bottom:1001.770350px;}
.y142{bottom:1001.777100px;}
.y17f{bottom:1001.785350px;}
.yaf{bottom:1005.497250px;}
.y18{bottom:1006.933650px;}
.y1a2{bottom:1010.265900px;}
.y30{bottom:1019.770350px;}
.y141{bottom:1019.777100px;}
.y1a1{bottom:1025.265900px;}
.y17e{bottom:1037.380350px;}
.y2f{bottom:1037.770350px;}
.y140{bottom:1037.777100px;}
.y1a0{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y88{bottom:1132.418700px;}
.y10c{bottom:1132.421700px;}
.y1dd{bottom:1132.423500px;}
.y8b{bottom:1132.426800px;}
.yae{bottom:1132.428450px;}
.y104{bottom:1132.457250px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.hb{height:19.125417px;}
.hc{height:28.393066px;}
.h2{height:30.577148px;}
.h5{height:32.761230px;}
.h4{height:32.805176px;}
.h11{height:33.351562px;}
.h17{height:34.390125px;}
.h12{height:34.453125px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h10{height:37.520508px;}
.h8{height:41.689453px;}
.h16{height:42.584972px;}
.h13{height:42.601772px;}
.h14{height:42.617372px;}
.h19{height:42.618572px;}
.h1b{height:42.632972px;}
.h1a{height:42.648572px;}
.h15{height:42.649172px;}
.h18{height:42.664772px;}
.h1c{height:42.665372px;}
.h1d{height:42.680372px;}
.h1e{height:42.680972px;}
.h1f{height:42.719372px;}
.h7{height:43.066406px;}
.h6{height:43.681641px;}
.hd{height:43.740234px;}
.h21{height:44.686406px;}
.h20{height:53.370715px;}
.h3{height:56.786133px;}
.ha{height:57.121316px;}
.h9{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:70.582650px;}
.xb{left:76.535400px;}
.x18{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x19{left:99.921300px;}
.x8{left:106.299150px;}
.xc{left:110.540400px;}
.x20{left:123.307350px;}
.x7{left:125.432550px;}
.x4{left:131.816400px;}
.xd{left:144.710400px;}
.x1c{left:190.160400px;}
.x3{left:212.876400px;}
.x1f{left:215.530350px;}
.xa{left:455.041500px;}
.xe{left:457.070400px;}
.x11{left:473.285400px;}
.x1a{left:478.346400px;}
.x5{left:480.476400px;}
.xf{left:491.090400px;}
.x21{left:503.851350px;}
.x6{left:514.496400px;}
.x12{left:549.125400px;}
.x13{left:567.395400px;}
.x1b{left:579.394050px;}
.x14{left:580.723500px;}
.x10{left:591.635400px;}
.x16{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:722.608350px;}
.x15{left:729.282150px;}
.x22{left:744.818250px;}
.x17{left:750.547350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:20.013867pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls4d{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls4c{letter-spacing:-0.586667pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls5f{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.200000pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls60{letter-spacing:-0.085333pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls7b{letter-spacing:-0.042667pt;}
.ls1a{letter-spacing:-0.040000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.003680pt;}
.ls11{letter-spacing:0.005045pt;}
.ls52{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls47{letter-spacing:0.083200pt;}
.ls4f{letter-spacing:0.085333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls46{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls55{letter-spacing:0.170667pt;}
.ls22{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.266667pt;}
.ls6a{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.373333pt;}
.ls59{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls54{letter-spacing:0.469333pt;}
.ls4{letter-spacing:0.480000pt;}
.ls57{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.533333pt;}
.ls53{letter-spacing:0.554667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls50{letter-spacing:0.597333pt;}
.ls3b{letter-spacing:0.640000pt;}
.ls75{letter-spacing:0.682667pt;}
.ls2{letter-spacing:0.693333pt;}
.ls58{letter-spacing:0.725333pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.768000pt;}
.ls4b{letter-spacing:0.800000pt;}
.ls51{letter-spacing:0.810667pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls70{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls69{letter-spacing:0.938667pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls5c{letter-spacing:0.997333pt;}
.lse{letter-spacing:1.013333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls6b{letter-spacing:1.109333pt;}
.lsd{letter-spacing:1.120000pt;}
.ls2e{letter-spacing:1.173333pt;}
.ls56{letter-spacing:1.194667pt;}
.ls21{letter-spacing:1.226667pt;}
.ls1c{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.333333pt;}
.ls6c{letter-spacing:1.365333pt;}
.ls2c{letter-spacing:1.386667pt;}
.ls78{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls5d{letter-spacing:1.493333pt;}
.ls20{letter-spacing:1.546667pt;}
.ls79{letter-spacing:1.578667pt;}
.ls48{letter-spacing:1.600000pt;}
.ls68{letter-spacing:1.621333pt;}
.ls5b{letter-spacing:1.652800pt;}
.ls32{letter-spacing:1.653333pt;}
.ls4e{letter-spacing:1.664000pt;}
.ls26{letter-spacing:1.706667pt;}
.ls6f{letter-spacing:1.749333pt;}
.ls24{letter-spacing:1.760000pt;}
.ls1e{letter-spacing:1.813333pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls3{letter-spacing:1.920000pt;}
.ls0{letter-spacing:1.973333pt;}
.ls42{letter-spacing:2.026667pt;}
.ls30{letter-spacing:2.133333pt;}
.ls6d{letter-spacing:2.176000pt;}
.ls28{letter-spacing:2.186667pt;}
.ls73{letter-spacing:2.218667pt;}
.ls35{letter-spacing:2.240000pt;}
.ls76{letter-spacing:2.261333pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls3a{letter-spacing:2.400000pt;}
.ls29{letter-spacing:2.453333pt;}
.ls61{letter-spacing:2.506667pt;}
.ls63{letter-spacing:2.666667pt;}
.ls3c{letter-spacing:2.720000pt;}
.ls71{letter-spacing:2.730667pt;}
.ls2f{letter-spacing:2.773333pt;}
.ls77{letter-spacing:2.826667pt;}
.ls74{letter-spacing:2.858667pt;}
.ls25{letter-spacing:2.880000pt;}
.ls72{letter-spacing:2.986667pt;}
.ls7a{letter-spacing:3.029333pt;}
.ls10{letter-spacing:3.200000pt;}
.ls66{letter-spacing:3.360000pt;}
.ls2d{letter-spacing:3.413333pt;}
.ls64{letter-spacing:3.573333pt;}
.ls31{letter-spacing:3.626667pt;}
.ls5e{letter-spacing:3.733333pt;}
.ls49{letter-spacing:4.640000pt;}
.ls62{letter-spacing:4.800000pt;}
.ls5a{letter-spacing:4.906667pt;}
.ls34{letter-spacing:5.173333pt;}
.ls65{letter-spacing:5.386667pt;}
.ls37{letter-spacing:5.546667pt;}
.ls1{letter-spacing:5.600000pt;}
.ls67{letter-spacing:6.773333pt;}
.ls4a{letter-spacing:9.013333pt;}
.ls33{letter-spacing:9.440000pt;}
.ls40{letter-spacing:59.629333pt;}
.ls43{letter-spacing:80.962667pt;}
.ls3e{letter-spacing:129.834667pt;}
.ls45{letter-spacing:232.143467pt;}
.ls3f{letter-spacing:361.991467pt;}
.ls41{letter-spacing:363.574933pt;}
.ls44{letter-spacing:383.324800pt;}
.ws63{word-spacing:-140.501333pt;}
.ws3b{word-spacing:-22.773333pt;}
.ws2{word-spacing:-18.933333pt;}
.ws3d{word-spacing:-18.880000pt;}
.ws87{word-spacing:-15.733333pt;}
.wsc5{word-spacing:-15.520000pt;}
.wsd{word-spacing:-15.253333pt;}
.wscb{word-spacing:-15.200000pt;}
.ws33{word-spacing:-15.146667pt;}
.ws37{word-spacing:-14.826667pt;}
.ws11{word-spacing:-14.773333pt;}
.ws32{word-spacing:-14.613333pt;}
.ws89{word-spacing:-14.506667pt;}
.wsb{word-spacing:-14.453333pt;}
.ws36{word-spacing:-14.400000pt;}
.ws35{word-spacing:-14.346667pt;}
.ws34{word-spacing:-14.293333pt;}
.wsc{word-spacing:-14.026667pt;}
.ws88{word-spacing:-13.973333pt;}
.ws3{word-spacing:-13.813333pt;}
.ws8{word-spacing:-13.760000pt;}
.ws9{word-spacing:-13.706667pt;}
.ws7{word-spacing:-13.653333pt;}
.ws86{word-spacing:-13.600000pt;}
.ws3a{word-spacing:-13.546667pt;}
.wsd1{word-spacing:-13.525333pt;}
.ws8a{word-spacing:-13.493333pt;}
.ws8b{word-spacing:-13.440000pt;}
.wsa1{word-spacing:-13.386667pt;}
.ws5{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.226667pt;}
.ws6{word-spacing:-13.173333pt;}
.wsd3{word-spacing:-12.928000pt;}
.wsce{word-spacing:-12.885333pt;}
.ws3c{word-spacing:-12.853333pt;}
.wscc{word-spacing:-12.288000pt;}
.ws39{word-spacing:-12.000000pt;}
.wsd0{word-spacing:-11.946667pt;}
.ws12{word-spacing:-11.861333pt;}
.wsd2{word-spacing:-11.349333pt;}
.wsbf{word-spacing:-11.093333pt;}
.wscd{word-spacing:-10.965333pt;}
.ws1{word-spacing:-10.920000pt;}
.ws0{word-spacing:-10.880000pt;}
.ws69{word-spacing:-10.666667pt;}
.wscf{word-spacing:-10.624000pt;}
.wsb4{word-spacing:-10.496000pt;}
.wsa0{word-spacing:-10.240000pt;}
.wsb6{word-spacing:-10.197333pt;}
.ws57{word-spacing:-9.440000pt;}
.wsab{word-spacing:-9.216000pt;}
.wsad{word-spacing:-9.173333pt;}
.wsf{word-spacing:-9.076144pt;}
.wsa3{word-spacing:-6.954667pt;}
.ws10{word-spacing:-6.482960pt;}
.wsa7{word-spacing:-5.717333pt;}
.ws18{word-spacing:-5.600000pt;}
.wsb2{word-spacing:-5.504000pt;}
.wsb7{word-spacing:-4.906667pt;}
.ws91{word-spacing:-4.640000pt;}
.wsa6{word-spacing:-4.394667pt;}
.ws55{word-spacing:-3.626667pt;}
.wsd6{word-spacing:-3.573333pt;}
.wsa9{word-spacing:-3.328000pt;}
.ws30{word-spacing:-3.200000pt;}
.ws4a{word-spacing:-2.880000pt;}
.wsd8{word-spacing:-2.826667pt;}
.ws51{word-spacing:-2.773333pt;}
.wse6{word-spacing:-2.730667pt;}
.ws72{word-spacing:-2.720000pt;}
.wsd4{word-spacing:-2.666667pt;}
.ws14{word-spacing:-2.565333pt;}
.wsca{word-spacing:-2.506667pt;}
.ws4e{word-spacing:-2.453333pt;}
.ws5b{word-spacing:-2.400000pt;}
.wsed{word-spacing:-2.261333pt;}
.wse8{word-spacing:-2.218667pt;}
.ws4c{word-spacing:-2.186667pt;}
.wse1{word-spacing:-2.176000pt;}
.ws52{word-spacing:-2.133333pt;}
.ws73{word-spacing:-2.026667pt;}
.ws47{word-spacing:-1.973333pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws48{word-spacing:-1.866667pt;}
.ws71{word-spacing:-1.760000pt;}
.wse2{word-spacing:-1.749333pt;}
.wse0{word-spacing:-1.706667pt;}
.ws9f{word-spacing:-1.664000pt;}
.ws56{word-spacing:-1.653333pt;}
.wsd9{word-spacing:-1.621333pt;}
.ws76{word-spacing:-1.600000pt;}
.wse3{word-spacing:-1.578667pt;}
.ws42{word-spacing:-1.546667pt;}
.wsd5{word-spacing:-1.440000pt;}
.wsdc{word-spacing:-1.408000pt;}
.ws5c{word-spacing:-1.386667pt;}
.wsdf{word-spacing:-1.365333pt;}
.ws21{word-spacing:-1.333333pt;}
.ws3f{word-spacing:-1.280000pt;}
.wsb0{word-spacing:-1.237333pt;}
.ws53{word-spacing:-1.226667pt;}
.ws74{word-spacing:-1.173333pt;}
.ws27{word-spacing:-1.120000pt;}
.wsde{word-spacing:-1.109333pt;}
.ws26{word-spacing:-1.066667pt;}
.ws2a{word-spacing:-1.013333pt;}
.ws31{word-spacing:-0.960000pt;}
.wsda{word-spacing:-0.938667pt;}
.ws2d{word-spacing:-0.906667pt;}
.wse4{word-spacing:-0.896000pt;}
.ws3e{word-spacing:-0.853333pt;}
.wsa5{word-spacing:-0.810667pt;}
.ws98{word-spacing:-0.800000pt;}
.ws9c{word-spacing:-0.768000pt;}
.ws4f{word-spacing:-0.746667pt;}
.wse5{word-spacing:-0.725333pt;}
.ws2c{word-spacing:-0.693333pt;}
.wsec{word-spacing:-0.682667pt;}
.ws49{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.597333pt;}
.ws4d{word-spacing:-0.586667pt;}
.wsaa{word-spacing:-0.554667pt;}
.ws75{word-spacing:-0.533333pt;}
.wsb1{word-spacing:-0.512000pt;}
.ws5a{word-spacing:-0.480000pt;}
.wsae{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.426667pt;}
.wsb5{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.373333pt;}
.ws1f{word-spacing:-0.320000pt;}
.wsdb{word-spacing:-0.298667pt;}
.ws46{word-spacing:-0.266667pt;}
.ws15{word-spacing:-0.240000pt;}
.ws45{word-spacing:-0.213333pt;}
.wsaf{word-spacing:-0.170667pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws84{word-spacing:-0.128000pt;}
.wse{word-spacing:-0.112533pt;}
.ws29{word-spacing:-0.106667pt;}
.ws38{word-spacing:-0.053333pt;}
.wsa8{word-spacing:-0.042667pt;}
.ws13{word-spacing:0.000000pt;}
.wse9{word-spacing:0.042667pt;}
.ws25{word-spacing:0.053333pt;}
.wsb3{word-spacing:0.085333pt;}
.ws1c{word-spacing:0.106667pt;}
.ws1e{word-spacing:0.160000pt;}
.ws16{word-spacing:0.240000pt;}
.ws43{word-spacing:0.266667pt;}
.wsb9{word-spacing:0.320000pt;}
.wsc2{word-spacing:0.373333pt;}
.wsac{word-spacing:0.426667pt;}
.ws59{word-spacing:0.480000pt;}
.ws93{word-spacing:0.586667pt;}
.ws9e{word-spacing:0.725333pt;}
.ws95{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.066667pt;}
.wsbc{word-spacing:1.226667pt;}
.ws54{word-spacing:1.386667pt;}
.ws19{word-spacing:1.546667pt;}
.wsdd{word-spacing:1.792000pt;}
.ws77{word-spacing:1.813333pt;}
.ws9d{word-spacing:1.834667pt;}
.ws24{word-spacing:1.866667pt;}
.ws94{word-spacing:1.920000pt;}
.wsc0{word-spacing:2.026667pt;}
.ws97{word-spacing:2.506667pt;}
.wsbd{word-spacing:2.560000pt;}
.wsa2{word-spacing:2.720000pt;}
.ws9b{word-spacing:2.858667pt;}
.ws44{word-spacing:2.880000pt;}
.wsc3{word-spacing:3.498667pt;}
.ws85{word-spacing:3.541333pt;}
.ws50{word-spacing:3.626667pt;}
.ws90{word-spacing:3.680000pt;}
.ws4b{word-spacing:3.733333pt;}
.wsc8{word-spacing:3.786667pt;}
.wsc4{word-spacing:3.925333pt;}
.wsbb{word-spacing:3.946667pt;}
.ws58{word-spacing:4.000000pt;}
.wsba{word-spacing:4.053333pt;}
.wseb{word-spacing:4.181333pt;}
.ws17{word-spacing:4.373333pt;}
.ws1a{word-spacing:4.426667pt;}
.ws96{word-spacing:4.533333pt;}
.wsbe{word-spacing:4.693333pt;}
.ws20{word-spacing:4.746667pt;}
.ws22{word-spacing:4.800000pt;}
.wsea{word-spacing:4.821333pt;}
.ws9a{word-spacing:4.853333pt;}
.wsd7{word-spacing:4.906667pt;}
.ws92{word-spacing:5.013333pt;}
.ws2b{word-spacing:5.066667pt;}
.wsc1{word-spacing:5.120000pt;}
.wsc9{word-spacing:5.440000pt;}
.ws41{word-spacing:5.493333pt;}
.ws28{word-spacing:5.546667pt;}
.ws99{word-spacing:5.600000pt;}
.ws40{word-spacing:5.653333pt;}
.wse7{word-spacing:5.760000pt;}
.wsb8{word-spacing:6.133333pt;}
.ws2f{word-spacing:6.293333pt;}
.wsc7{word-spacing:6.613333pt;}
.ws64{word-spacing:24.405333pt;}
.ws65{word-spacing:44.501333pt;}
.ws66{word-spacing:55.168000pt;}
.ws68{word-spacing:60.501333pt;}
.ws67{word-spacing:65.834667pt;}
.ws7e{word-spacing:66.645333pt;}
.ws6e{word-spacing:67.413333pt;}
.ws6a{word-spacing:68.525333pt;}
.ws5e{word-spacing:71.765333pt;}
.ws6d{word-spacing:76.501333pt;}
.ws7f{word-spacing:77.312000pt;}
.ws5d{word-spacing:78.506667pt;}
.ws60{word-spacing:83.626667pt;}
.ws6b{word-spacing:87.168000pt;}
.ws79{word-spacing:87.194133pt;}
.ws81{word-spacing:87.490667pt;}
.ws5f{word-spacing:100.181333pt;}
.ws61{word-spacing:102.570667pt;}
.ws6c{word-spacing:103.168000pt;}
.ws62{word-spacing:119.168000pt;}
.ws7c{word-spacing:206.378667pt;}
.ws70{word-spacing:217.045333pt;}
.ws80{word-spacing:219.706133pt;}
.ws7a{word-spacing:227.712000pt;}
.ws78{word-spacing:238.378667pt;}
.ws7b{word-spacing:349.554133pt;}
.ws83{word-spacing:357.546667pt;}
.ws82{word-spacing:360.220800pt;}
.ws7d{word-spacing:370.887467pt;}
.ws8d{word-spacing:372.650667pt;}
.ws6f{word-spacing:378.880000pt;}
.ws8f{word-spacing:517.632000pt;}
.ws8e{word-spacing:549.632000pt;}
.ws8c{word-spacing:567.381333pt;}
._11{margin-left:-2575.746667pt;}
._12{margin-left:-2554.584000pt;}
._1e{margin-left:-129.834667pt;}
._10{margin-left:-9.653333pt;}
._b{margin-left:-8.327467pt;}
._c{margin-left:-5.925333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.538667pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.901333pt;}
._5{width:1.226667pt;}
._6{width:2.186667pt;}
._d{width:3.200000pt;}
._7{width:4.373333pt;}
._8{width:5.600000pt;}
._9{width:6.560000pt;}
._a{width:7.573333pt;}
._e{width:8.498667pt;}
._4{width:9.893333pt;}
._f{width:14.506667pt;}
._74{width:17.882667pt;}
._73{width:19.546667pt;}
._20{width:51.669333pt;}
._5e{width:55.168000pt;}
._63{width:59.264000pt;}
._24{width:65.834667pt;}
._21{width:68.224000pt;}
._31{width:76.501333pt;}
._52{width:78.058667pt;}
._23{width:81.834667pt;}
._15{width:87.168000pt;}
._14{width:88.362667pt;}
._16{width:89.557333pt;}
._45{width:97.127467pt;}
._3d{width:98.188267pt;}
._17{width:99.840000pt;}
._18{width:101.802667pt;}
._1b{width:109.696000pt;}
._1a{width:110.890667pt;}
._28{width:113.834667pt;}
._1c{width:115.541333pt;}
._64{width:170.794667pt;}
._65{width:190.464000pt;}
._2c{width:227.712000pt;}
._56{width:238.378667pt;}
._67{width:248.616000pt;}
._26{width:249.604800pt;}
._4a{width:256.304000pt;}
._4b{width:273.792000pt;}
._57{width:294.485333pt;}
._4e{width:306.944000pt;}
._4c{width:309.637333pt;}
._54{width:315.264000pt;}
._36{width:318.805333pt;}
._37{width:325.888000pt;}
._4d{width:327.125333pt;}
._3c{width:334.250667pt;}
._5a{width:353.706667pt;}
._6a{width:357.717333pt;}
._39{width:358.826667pt;}
._3a{width:365.056000pt;}
._55{width:366.165333pt;}
._2f{width:368.213333pt;}
._3e{width:372.181333pt;}
._48{width:374.528000pt;}
._5f{width:376.874667pt;}
._58{width:378.880000pt;}
._3b{width:385.152000pt;}
._44{width:389.546667pt;}
._5d{width:391.082667pt;}
._3f{width:392.789333pt;}
._60{width:398.165333pt;}
._38{width:405.290667pt;}
._69{width:406.613333pt;}
._50{width:407.680000pt;}
._6f{width:416.085333pt;}
._49{width:419.584000pt;}
._2d{width:432.213333pt;}
._32{width:441.685333pt;}
._2e{width:445.568000pt;}
._33{width:446.805333pt;}
._30{width:447.914667pt;}
._2b{width:452.650667pt;}
._22{width:465.746667pt;}
._41{width:467.754667pt;}
._51{width:471.680000pt;}
._34{width:482.010667pt;}
._40{width:483.584000pt;}
._25{width:492.373333pt;}
._61{width:500.992000pt;}
._66{width:503.381333pt;}
._59{width:508.117333pt;}
._53{width:514.346667pt;}
._6e{width:560.298667pt;}
._47{width:568.576000pt;}
._62{width:577.706667pt;}
._35{width:587.861333pt;}
._6c{width:592.298667pt;}
._29{width:596.138667pt;}
._4f{width:600.832000pt;}
._2a{width:619.776000pt;}
._13{width:633.813333pt;}
._42{width:637.269333pt;}
._43{width:650.624000pt;}
._46{width:652.970667pt;}
._19{width:657.152000pt;}
._1d{width:663.082667pt;}
._27{width:669.610667pt;}
._1f{width:686.805333pt;}
._70{width:727.765333pt;}
._68{width:735.445333pt;}
._6d{width:744.362667pt;}
._6b{width:749.098667pt;}
._71{width:775.125333pt;}
._72{width:810.237333pt;}
._5c{width:1626.624000pt;}
._5b{width:1672.832000pt;}
.fs7{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsc{font-size:31.093333pt;}
.fs6{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y10b{bottom:73.714533pt;}
.y109{bottom:73.725467pt;}
.y8a{bottom:73.822933pt;}
.y174{bottom:74.092400pt;}
.y18f{bottom:74.102800pt;}
.y172{bottom:74.336533pt;}
.y61{bottom:74.342533pt;}
.y13f{bottom:74.588533pt;}
.y4{bottom:78.246000pt;}
.y103{bottom:79.119333pt;}
.ye6{bottom:79.784000pt;}
.y87{bottom:80.862533pt;}
.yad{bottom:81.824400pt;}
.y10a{bottom:87.709200pt;}
.y108{bottom:87.720133pt;}
.y173{bottom:88.087067pt;}
.y171{bottom:90.336533pt;}
.y60{bottom:90.342533pt;}
.y13e{bottom:90.588533pt;}
.y3{bottom:91.576000pt;}
.y102{bottom:93.562000pt;}
.ye5{bottom:94.445600pt;}
.yac{bottom:96.267067pt;}
.y86{bottom:96.862533pt;}
.y170{bottom:106.336533pt;}
.y5f{bottom:106.342533pt;}
.y13d{bottom:106.588533pt;}
.y101{bottom:108.004667pt;}
.yab{bottom:110.716933pt;}
.y85{bottom:112.862533pt;}
.y19f{bottom:113.886133pt;}
.ye4{bottom:117.126400pt;}
.y16f{bottom:122.336533pt;}
.y5e{bottom:122.342533pt;}
.y100{bottom:122.447333pt;}
.y13c{bottom:122.588533pt;}
.y1dc{bottom:124.678667pt;}
.yaa{bottom:125.159600pt;}
.y19e{bottom:127.219467pt;}
.y84{bottom:128.862533pt;}
.ye3{bottom:131.579733pt;}
.yff{bottom:136.890000pt;}
.y1db{bottom:138.012000pt;}
.y16e{bottom:138.336533pt;}
.y5d{bottom:138.342533pt;}
.y13b{bottom:138.588533pt;}
.ya9{bottom:139.616267pt;}
.y19d{bottom:140.552800pt;}
.y15{bottom:142.874000pt;}
.y83{bottom:144.862533pt;}
.ye2{bottom:146.022400pt;}
.yfe{bottom:151.332667pt;}
.y1da{bottom:151.345333pt;}
.y19c{bottom:153.886133pt;}
.ya8{bottom:154.058933pt;}
.y16d{bottom:154.336533pt;}
.y5c{bottom:154.342533pt;}
.y13a{bottom:154.588533pt;}
.y14{bottom:158.874000pt;}
.ye1{bottom:160.465067pt;}
.y82{bottom:160.862533pt;}
.y1d9{bottom:164.678667pt;}
.yfd{bottom:165.775333pt;}
.y19b{bottom:167.219467pt;}
.ya7{bottom:168.501600pt;}
.y5b{bottom:170.342533pt;}
.y16c{bottom:170.348533pt;}
.y139{bottom:170.588533pt;}
.y13{bottom:174.874000pt;}
.ye0{bottom:174.918267pt;}
.y81{bottom:176.862533pt;}
.y1d8{bottom:178.012000pt;}
.yfc{bottom:180.218000pt;}
.y19a{bottom:180.552800pt;}
.ya6{bottom:182.944267pt;}
.y5a{bottom:186.342533pt;}
.y16b{bottom:186.348533pt;}
.y138{bottom:186.588533pt;}
.ydf{bottom:189.360933pt;}
.y12{bottom:190.874000pt;}
.y1d7{bottom:191.345333pt;}
.y80{bottom:192.862533pt;}
.y199{bottom:193.886133pt;}
.ya5{bottom:197.411733pt;}
.y59{bottom:202.342533pt;}
.y16a{bottom:202.348533pt;}
.yde{bottom:203.803600pt;}
.y1d6{bottom:204.678667pt;}
.yfb{bottom:205.999333pt;}
.y11{bottom:206.874000pt;}
.y198{bottom:207.219467pt;}
.y7f{bottom:208.862533pt;}
.ya4{bottom:211.854400pt;}
.y1d5{bottom:218.012000pt;}
.y137{bottom:218.138000pt;}
.ydd{bottom:218.249867pt;}
.y58{bottom:218.342533pt;}
.y169{bottom:218.348533pt;}
.y197{bottom:220.552800pt;}
.y10{bottom:222.874000pt;}
.y7e{bottom:224.862533pt;}
.ya3{bottom:226.297067pt;}
.y1d4{bottom:231.345333pt;}
.y136{bottom:231.471333pt;}
.yfa{bottom:231.780667pt;}
.ydc{bottom:232.713733pt;}
.y57{bottom:234.342533pt;}
.y168{bottom:234.348533pt;}
.yf{bottom:238.874000pt;}
.ya2{bottom:240.739733pt;}
.y7d{bottom:240.862533pt;}
.y1d3{bottom:244.678667pt;}
.y135{bottom:244.804667pt;}
.ydb{bottom:247.156400pt;}
.y196{bottom:249.982533pt;}
.y56{bottom:250.342533pt;}
.y167{bottom:250.348533pt;}
.ye{bottom:254.874000pt;}
.ya1{bottom:255.182400pt;}
.y7c{bottom:256.862533pt;}
.y1d2{bottom:258.012000pt;}
.y134{bottom:258.138000pt;}
.yf9{bottom:260.572800pt;}
.yda{bottom:261.599067pt;}
.y55{bottom:266.342533pt;}
.y166{bottom:266.348533pt;}
.ya0{bottom:269.625067pt;}
.yd{bottom:270.874000pt;}
.y1d1{bottom:271.345333pt;}
.y133{bottom:271.471333pt;}
.y7b{bottom:272.862533pt;}
.yd9{bottom:276.041733pt;}
.y54{bottom:282.342533pt;}
.y165{bottom:282.348533pt;}
.y9f{bottom:284.067733pt;}
.y1d0{bottom:284.678667pt;}
.y132{bottom:284.804667pt;}
.yc{bottom:286.874000pt;}
.y7a{bottom:288.862533pt;}
.yd8{bottom:290.484400pt;}
.y1cf{bottom:298.012000pt;}
.y131{bottom:298.138000pt;}
.y53{bottom:298.342533pt;}
.y164{bottom:298.348533pt;}
.yf5{bottom:298.462533pt;}
.y9e{bottom:298.520933pt;}
.yb{bottom:302.874000pt;}
.y79{bottom:304.862533pt;}
.yd7{bottom:304.927067pt;}
.y1ce{bottom:311.345333pt;}
.y130{bottom:311.471333pt;}
.yf8{bottom:312.318000pt;}
.y9d{bottom:312.963600pt;}
.y195{bottom:314.102533pt;}
.y52{bottom:314.342533pt;}
.y163{bottom:314.348533pt;}
.yf4{bottom:314.462533pt;}
.y89{bottom:317.598933pt;}
.ya{bottom:318.874000pt;}
.yd6{bottom:319.376667pt;}
.y78{bottom:320.862533pt;}
.y1cd{bottom:324.678667pt;}
.y12f{bottom:324.804667pt;}
.yf7{bottom:326.312667pt;}
.y9c{bottom:327.406267pt;}
.y51{bottom:330.342533pt;}
.y162{bottom:330.348533pt;}
.yf3{bottom:330.462533pt;}
.yd5{bottom:333.819333pt;}
.y9{bottom:334.874000pt;}
.y77{bottom:336.862533pt;}
.y1cc{bottom:338.012000pt;}
.y12e{bottom:338.138000pt;}
.yf6{bottom:340.307333pt;}
.y9b{bottom:341.866533pt;}
.y50{bottom:346.342533pt;}
.y161{bottom:346.348533pt;}
.yf2{bottom:346.462533pt;}
.yd4{bottom:348.272667pt;}
.y8{bottom:350.874000pt;}
.y1cb{bottom:351.345333pt;}
.y12d{bottom:351.471333pt;}
.y76{bottom:352.862533pt;}
.y9a{bottom:356.309200pt;}
.y194{bottom:362.102533pt;}
.y4f{bottom:362.342533pt;}
.y160{bottom:362.348533pt;}
.yf1{bottom:362.462533pt;}
.yd3{bottom:362.715333pt;}
.y1ca{bottom:364.678667pt;}
.y12c{bottom:364.804667pt;}
.y7{bottom:366.874000pt;}
.y75{bottom:368.862533pt;}
.y99{bottom:370.751867pt;}
.yd2{bottom:377.158000pt;}
.y1c9{bottom:378.012000pt;}
.y12b{bottom:378.138000pt;}
.y4e{bottom:378.342533pt;}
.y15f{bottom:378.348533pt;}
.yf0{bottom:378.462533pt;}
.y6{bottom:382.874000pt;}
.y74{bottom:384.862533pt;}
.y98{bottom:385.194533pt;}
.y1c8{bottom:391.347467pt;}
.y12a{bottom:391.471333pt;}
.yd1{bottom:391.618267pt;}
.y4d{bottom:394.342533pt;}
.y15e{bottom:394.348533pt;}
.yef{bottom:394.462533pt;}
.y107{bottom:398.365467pt;}
.y17{bottom:398.874000pt;}
.y97{bottom:399.637200pt;}
.y73{bottom:400.862533pt;}
.y1c7{bottom:404.680800pt;}
.y129{bottom:404.804667pt;}
.yd0{bottom:406.060933pt;}
.y4c{bottom:410.342533pt;}
.y15d{bottom:410.348533pt;}
.yee{bottom:410.462533pt;}
.y106{bottom:412.360133pt;}
.y96{bottom:414.100933pt;}
.y5{bottom:414.514000pt;}
.y16{bottom:414.874000pt;}
.y72{bottom:416.862533pt;}
.y1c6{bottom:418.014133pt;}
.y128{bottom:418.138000pt;}
.ycf{bottom:420.503600pt;}
.y4b{bottom:426.342533pt;}
.y15c{bottom:426.348533pt;}
.y105{bottom:426.354800pt;}
.yed{bottom:426.462533pt;}
.y95{bottom:428.543600pt;}
.y1c5{bottom:431.347467pt;}
.y127{bottom:431.471333pt;}
.y71{bottom:432.862533pt;}
.yce{bottom:434.946267pt;}
.y4a{bottom:442.342533pt;}
.y15b{bottom:442.348533pt;}
.yec{bottom:442.462533pt;}
.y94{bottom:442.986267pt;}
.y1c4{bottom:444.680800pt;}
.y126{bottom:444.804667pt;}
.y70{bottom:448.862533pt;}
.ycd{bottom:449.388933pt;}
.y1c3{bottom:458.014133pt;}
.y125{bottom:458.138000pt;}
.y49{bottom:458.342533pt;}
.y15a{bottom:458.348533pt;}
.yeb{bottom:458.462533pt;}
.ycc{bottom:463.863333pt;}
.y6f{bottom:464.862533pt;}
.y93{bottom:468.767600pt;}
.y1c2{bottom:471.347467pt;}
.y124{bottom:471.471333pt;}
.y159{bottom:474.348533pt;}
.yea{bottom:474.462533pt;}
.ycb{bottom:478.306000pt;}
.y6e{bottom:480.862533pt;}
.y2b{bottom:482.723733pt;}
.y92{bottom:483.210267pt;}
.y1c1{bottom:484.680800pt;}
.y123{bottom:484.804667pt;}
.y48{bottom:489.982533pt;}
.y158{bottom:490.348533pt;}
.ye9{bottom:490.462533pt;}
.yca{bottom:492.748667pt;}
.y6d{bottom:496.862533pt;}
.y91{bottom:497.652933pt;}
.y1c0{bottom:498.014133pt;}
.y122{bottom:498.138000pt;}
.y157{bottom:506.348533pt;}
.ye8{bottom:506.462533pt;}
.y2a{bottom:507.030400pt;}
.yc9{bottom:507.191333pt;}
.y1bf{bottom:511.347467pt;}
.y121{bottom:511.471333pt;}
.y90{bottom:512.095600pt;}
.y6c{bottom:512.862533pt;}
.yc8{bottom:521.634000pt;}
.y156{bottom:522.348533pt;}
.ye7{bottom:522.462533pt;}
.y29{bottom:523.030400pt;}
.y1be{bottom:524.680800pt;}
.y120{bottom:524.804667pt;}
.y6b{bottom:528.862533pt;}
.yc7{bottom:536.076667pt;}
.y1bd{bottom:538.014133pt;}
.y193{bottom:538.102533pt;}
.y11f{bottom:538.138000pt;}
.y155{bottom:538.348533pt;}
.y47{bottom:538.462533pt;}
.y28{bottom:539.030400pt;}
.y8f{bottom:540.889200pt;}
.y6a{bottom:544.862533pt;}
.yc6{bottom:550.519333pt;}
.y1bc{bottom:551.347467pt;}
.y11e{bottom:551.471333pt;}
.y154{bottom:554.348533pt;}
.y46{bottom:554.462533pt;}
.y27{bottom:555.030400pt;}
.y8e{bottom:558.222533pt;}
.y69{bottom:560.862533pt;}
.y1bb{bottom:564.680800pt;}
.y11d{bottom:564.804667pt;}
.yc5{bottom:564.962000pt;}
.y153{bottom:570.348533pt;}
.y45{bottom:570.462533pt;}
.y26{bottom:571.030400pt;}
.y8d{bottom:575.555867pt;}
.y68{bottom:576.862533pt;}
.y1ba{bottom:578.014133pt;}
.y11c{bottom:578.138000pt;}
.yc4{bottom:579.404667pt;}
.y192{bottom:586.102533pt;}
.y152{bottom:586.348533pt;}
.y44{bottom:586.462533pt;}
.y25{bottom:587.030400pt;}
.y1b9{bottom:591.347467pt;}
.y11b{bottom:591.471333pt;}
.y8c{bottom:592.889200pt;}
.yc3{bottom:593.854400pt;}
.y151{bottom:602.348533pt;}
.y43{bottom:602.462533pt;}
.y1b8{bottom:604.680800pt;}
.y11a{bottom:604.804667pt;}
.y67{bottom:607.832000pt;}
.yc2{bottom:608.297067pt;}
.y1b7{bottom:618.014133pt;}
.y119{bottom:618.138000pt;}
.y42{bottom:618.462533pt;}
.y66{bottom:621.704000pt;}
.yc1{bottom:622.757333pt;}
.y24{bottom:627.170933pt;}
.y1b6{bottom:631.347467pt;}
.y118{bottom:631.471333pt;}
.y150{bottom:633.988533pt;}
.y17d{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y65{bottom:634.475867pt;}
.yc0{bottom:637.200000pt;}
.y23{bottom:638.238267pt;}
.y1b5{bottom:644.680800pt;}
.y117{bottom:644.804667pt;}
.y64{bottom:650.115867pt;}
.y17c{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y18e{bottom:650.475867pt;}
.ybf{bottom:651.642667pt;}
.y1b4{bottom:658.014133pt;}
.y116{bottom:658.138000pt;}
.ybe{bottom:666.085333pt;}
.y191{bottom:666.102533pt;}
.y63{bottom:666.115867pt;}
.y17b{bottom:666.342533pt;}
.y22{bottom:666.429867pt;}
.y3f{bottom:666.462533pt;}
.y18d{bottom:666.475867pt;}
.y1b3{bottom:671.347467pt;}
.y115{bottom:671.471333pt;}
.ybd{bottom:680.528000pt;}
.y17a{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.y14f{bottom:682.468533pt;}
.y18c{bottom:682.475867pt;}
.y21{bottom:683.252400pt;}
.y1b2{bottom:684.680800pt;}
.y114{bottom:684.804667pt;}
.y20{bottom:690.429867pt;}
.ybc{bottom:694.984800pt;}
.y62{bottom:697.982533pt;}
.y1b1{bottom:698.014133pt;}
.y113{bottom:698.138000pt;}
.y179{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.y14e{bottom:698.468533pt;}
.y18b{bottom:698.475867pt;}
.y1f{bottom:707.252400pt;}
.ybb{bottom:709.427467pt;}
.y1b0{bottom:711.347467pt;}
.y112{bottom:711.471333pt;}
.y178{bottom:714.342533pt;}
.y1e{bottom:714.429867pt;}
.y3c{bottom:714.462533pt;}
.y14d{bottom:714.468533pt;}
.y18a{bottom:714.475867pt;}
.yba{bottom:723.870133pt;}
.y1af{bottom:724.680800pt;}
.y111{bottom:724.804667pt;}
.y177{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y14c{bottom:730.468533pt;}
.y189{bottom:730.475867pt;}
.y1d{bottom:731.252400pt;}
.y1ae{bottom:738.014133pt;}
.y110{bottom:738.138000pt;}
.yb9{bottom:738.312800pt;}
.y176{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y14b{bottom:746.468533pt;}
.y188{bottom:746.475867pt;}
.y1ad{bottom:751.347467pt;}
.y10f{bottom:751.471333pt;}
.yb8{bottom:752.766133pt;}
.y1c{bottom:756.783067pt;}
.y39{bottom:762.462533pt;}
.y14a{bottom:762.468533pt;}
.y187{bottom:762.475867pt;}
.y1ac{bottom:764.680800pt;}
.y10e{bottom:764.804667pt;}
.yb7{bottom:767.208800pt;}
.y175{bottom:777.982533pt;}
.y1ab{bottom:778.014133pt;}
.y38{bottom:778.462533pt;}
.y149{bottom:778.468533pt;}
.y186{bottom:778.475867pt;}
.yb6{bottom:781.651467pt;}
.y1aa{bottom:791.347467pt;}
.y10d{bottom:794.235867pt;}
.y37{bottom:794.462533pt;}
.y148{bottom:794.468533pt;}
.y185{bottom:794.475867pt;}
.yb5{bottom:796.111333pt;}
.y1b{bottom:797.823333pt;}
.y1a9{bottom:804.680800pt;}
.y36{bottom:810.462533pt;}
.y147{bottom:810.468533pt;}
.y184{bottom:810.475867pt;}
.yb4{bottom:810.554000pt;}
.y1a8{bottom:818.014133pt;}
.yb3{bottom:824.996667pt;}
.y35{bottom:826.462533pt;}
.y146{bottom:826.468533pt;}
.y183{bottom:826.475867pt;}
.y1a{bottom:830.232933pt;}
.y1a7{bottom:831.347467pt;}
.y34{bottom:842.462533pt;}
.y145{bottom:842.468533pt;}
.y182{bottom:842.475867pt;}
.y1a6{bottom:844.680800pt;}
.yb2{bottom:850.447333pt;}
.y1a5{bottom:858.014133pt;}
.y33{bottom:858.462533pt;}
.y144{bottom:858.468533pt;}
.y181{bottom:858.475867pt;}
.y19{bottom:862.642533pt;}
.yb1{bottom:864.890000pt;}
.y1a4{bottom:871.347467pt;}
.y190{bottom:874.102533pt;}
.y32{bottom:874.462533pt;}
.y143{bottom:874.468533pt;}
.y180{bottom:874.475867pt;}
.yb0{bottom:879.332667pt;}
.y1a3{bottom:884.680800pt;}
.y31{bottom:890.462533pt;}
.y142{bottom:890.468533pt;}
.y17f{bottom:890.475867pt;}
.yaf{bottom:893.775333pt;}
.y18{bottom:895.052133pt;}
.y1a2{bottom:898.014133pt;}
.y30{bottom:906.462533pt;}
.y141{bottom:906.468533pt;}
.y1a1{bottom:911.347467pt;}
.y17e{bottom:922.115867pt;}
.y2f{bottom:922.462533pt;}
.y140{bottom:922.468533pt;}
.y1a0{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y88{bottom:1006.594400pt;}
.y10c{bottom:1006.597067pt;}
.y1dd{bottom:1006.598667pt;}
.y8b{bottom:1006.601600pt;}
.yae{bottom:1006.603067pt;}
.y104{bottom:1006.628667pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.hb{height:17.000371pt;}
.hc{height:25.238281pt;}
.h2{height:27.179688pt;}
.h5{height:29.121094pt;}
.h4{height:29.160156pt;}
.h11{height:29.645833pt;}
.h17{height:30.569000pt;}
.h12{height:30.625000pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h10{height:33.351562pt;}
.h8{height:37.057292pt;}
.h16{height:37.853308pt;}
.h13{height:37.868242pt;}
.h14{height:37.882108pt;}
.h19{height:37.883175pt;}
.h1b{height:37.895975pt;}
.h1a{height:37.909842pt;}
.h15{height:37.910375pt;}
.h18{height:37.924242pt;}
.h1c{height:37.924775pt;}
.h1d{height:37.938108pt;}
.h1e{height:37.938642pt;}
.h1f{height:37.972775pt;}
.h7{height:38.281250pt;}
.h6{height:38.828125pt;}
.hd{height:38.880208pt;}
.h21{height:39.721250pt;}
.h20{height:47.440635pt;}
.h3{height:50.476562pt;}
.ha{height:50.774503pt;}
.h9{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:62.740133pt;}
.xb{left:68.031467pt;}
.x18{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x19{left:88.818933pt;}
.x8{left:94.488133pt;}
.xc{left:98.258133pt;}
.x20{left:109.606533pt;}
.x7{left:111.495600pt;}
.x4{left:117.170133pt;}
.xd{left:128.631467pt;}
.x1c{left:169.031467pt;}
.x3{left:189.223467pt;}
.x1f{left:191.582533pt;}
.xa{left:404.481333pt;}
.xe{left:406.284800pt;}
.x11{left:420.698133pt;}
.x1a{left:425.196800pt;}
.x5{left:427.090133pt;}
.xf{left:436.524800pt;}
.x21{left:447.867867pt;}
.x6{left:457.330133pt;}
.x12{left:488.111467pt;}
.x13{left:504.351467pt;}
.x1b{left:515.016933pt;}
.x14{left:516.198667pt;}
.x10{left:525.898133pt;}
.x16{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:642.318533pt;}
.x15{left:648.250800pt;}
.x22{left:662.060667pt;}
.x17{left:667.153200pt;}
}




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