
    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_f4e4d9e323556e0242762bb6.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_1e39f2ec4f50498fff4331a2.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_a39fdd297ee0d0aa687453d6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4c507378b631e2bc7c57e3d1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7401042e15ae61f5aea248c0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_143804425e58c9bfd7783e1c.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_8d48a26887507682a64857d9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bf3b505532599914386febbb.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a86f681a62292b9685f022c.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;}
.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:-15.442800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:19.939200px;}
.v1{vertical-align:21.619200px;}
.ls57{letter-spacing:-3.420000px;}
.ls92{letter-spacing:-2.064000px;}
.ls53{letter-spacing:-1.776000px;}
.lsc{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.660000px;}
.ls48{letter-spacing:-0.540000px;}
.ls80{letter-spacing:-0.528000px;}
.ls52{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.240000px;}
.ls58{letter-spacing:-0.180000px;}
.ls7e{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.120000px;}
.ls7d{letter-spacing:-0.096000px;}
.ls32{letter-spacing:-0.060000px;}
.ls7f{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls8b{letter-spacing:0.048000px;}
.ls25{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.096000px;}
.ls21{letter-spacing:0.120000px;}
.ls36{letter-spacing:0.144000px;}
.ls4d{letter-spacing:0.168000px;}
.lse{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.240000px;}
.ls7a{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.300000px;}
.ls8e{letter-spacing:0.336000px;}
.ls27{letter-spacing:0.360000px;}
.ls85{letter-spacing:0.384000px;}
.ls22{letter-spacing:0.420000px;}
.ls72{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.507000px;}
.ls6e{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.540000px;}
.ls70{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.624000px;}
.ls16{letter-spacing:0.660000px;}
.ls7c{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.720000px;}
.ls78{letter-spacing:0.768000px;}
.ls8{letter-spacing:0.780000px;}
.ls28{letter-spacing:0.840000px;}
.ls89{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.900000px;}
.ls62{letter-spacing:0.912000px;}
.ls24{letter-spacing:0.960000px;}
.ls65{letter-spacing:1.008000px;}
.ls9{letter-spacing:1.020000px;}
.ls8f{letter-spacing:1.056000px;}
.ls29{letter-spacing:1.080000px;}
.ls77{letter-spacing:1.104000px;}
.ls1d{letter-spacing:1.140000px;}
.ls79{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.200000px;}
.ls71{letter-spacing:1.248000px;}
.ls5{letter-spacing:1.260000px;}
.ls76{letter-spacing:1.296000px;}
.ls3a{letter-spacing:1.320000px;}
.ls84{letter-spacing:1.344000px;}
.ls11{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.392000px;}
.ls12{letter-spacing:1.440000px;}
.ls6a{letter-spacing:1.488000px;}
.ls40{letter-spacing:1.500000px;}
.ls74{letter-spacing:1.536000px;}
.ls3{letter-spacing:1.560000px;}
.ls8d{letter-spacing:1.584000px;}
.ls4c{letter-spacing:1.620000px;}
.ls87{letter-spacing:1.632000px;}
.lsf{letter-spacing:1.680000px;}
.ls6d{letter-spacing:1.728000px;}
.ls1b{letter-spacing:1.740000px;}
.ls8a{letter-spacing:1.776000px;}
.ls7{letter-spacing:1.800000px;}
.ls73{letter-spacing:1.824000px;}
.ls2e{letter-spacing:1.860000px;}
.ls66{letter-spacing:1.872000px;}
.ls2b{letter-spacing:1.920000px;}
.ls69{letter-spacing:1.968000px;}
.ls3d{letter-spacing:1.980000px;}
.ls83{letter-spacing:2.016000px;}
.ls3e{letter-spacing:2.040000px;}
.ls8c{letter-spacing:2.064000px;}
.ls1f{letter-spacing:2.100000px;}
.ls64{letter-spacing:2.112000px;}
.ls1e{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.220000px;}
.ls1a{letter-spacing:2.280000px;}
.ls6c{letter-spacing:2.304000px;}
.ls2a{letter-spacing:2.340000px;}
.ls86{letter-spacing:2.352000px;}
.ls38{letter-spacing:2.400000px;}
.ls63{letter-spacing:2.448000px;}
.ls17{letter-spacing:2.460000px;}
.ls55{letter-spacing:2.520000px;}
.ls3c{letter-spacing:2.580000px;}
.ls6b{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.640000px;}
.ls6f{letter-spacing:2.688000px;}
.ls3b{letter-spacing:2.700000px;}
.ls43{letter-spacing:2.760000px;}
.ls39{letter-spacing:2.820000px;}
.ls7b{letter-spacing:2.832000px;}
.ls82{letter-spacing:2.880000px;}
.ls91{letter-spacing:2.928000px;}
.ls14{letter-spacing:2.940000px;}
.ls88{letter-spacing:2.976000px;}
.ls59{letter-spacing:3.000000px;}
.ls46{letter-spacing:3.060000px;}
.ls2c{letter-spacing:3.120000px;}
.lsa{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.300000px;}
.ls81{letter-spacing:3.312000px;}
.ls19{letter-spacing:3.360000px;}
.ls75{letter-spacing:3.408000px;}
.ls34{letter-spacing:3.480000px;}
.ls56{letter-spacing:3.540000px;}
.ls41{letter-spacing:3.660000px;}
.ls50{letter-spacing:3.720000px;}
.ls4b{letter-spacing:3.780000px;}
.ls4a{letter-spacing:3.840000px;}
.ls1c{letter-spacing:3.960000px;}
.ls3f{letter-spacing:4.020000px;}
.ls31{letter-spacing:4.080000px;}
.ls45{letter-spacing:4.200000px;}
.ls5d{letter-spacing:4.260000px;}
.ls90{letter-spacing:4.272000px;}
.ls44{letter-spacing:4.320000px;}
.ls30{letter-spacing:4.620000px;}
.ls42{letter-spacing:5.040000px;}
.ls5f{letter-spacing:5.880000px;}
.ls54{letter-spacing:5.940000px;}
.ls5c{letter-spacing:6.900000px;}
.ls5e{letter-spacing:6.960000px;}
.ls5b{letter-spacing:7.140000px;}
.ls61{letter-spacing:7.620000px;}
.ls5a{letter-spacing:7.920000px;}
.ls60{letter-spacing:8.760000px;}
.ls51{letter-spacing:248.112000px;}
.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;}
}
.ws7a{word-spacing:-226.080000px;}
.wsa2{word-spacing:-18.660000px;}
.ws8b{word-spacing:-18.300000px;}
.ws95{word-spacing:-18.000000px;}
.ws64{word-spacing:-17.820000px;}
.ws1{word-spacing:-17.514000px;}
.ws51{word-spacing:-17.280000px;}
.ws89{word-spacing:-17.160000px;}
.ws3{word-spacing:-16.680000px;}
.ws6e{word-spacing:-16.620000px;}
.ws70{word-spacing:-16.380000px;}
.ws71{word-spacing:-16.320000px;}
.ws97{word-spacing:-16.260000px;}
.ws3b{word-spacing:-16.140000px;}
.ws50{word-spacing:-16.020000px;}
.ws3a{word-spacing:-15.840000px;}
.ws96{word-spacing:-15.660000px;}
.ws10{word-spacing:-15.420000px;}
.ws6d{word-spacing:-15.300000px;}
.ws6f{word-spacing:-15.180000px;}
.ws52{word-spacing:-15.120000px;}
.ws8c{word-spacing:-15.060000px;}
.wsf{word-spacing:-15.000000px;}
.wscf{word-spacing:-14.976000px;}
.ws98{word-spacing:-14.940000px;}
.wsa1{word-spacing:-14.880000px;}
.wsa7{word-spacing:-14.592000px;}
.wsc9{word-spacing:-14.352000px;}
.wsc7{word-spacing:-14.016000px;}
.wscc{word-spacing:-13.776000px;}
.wscd{word-spacing:-13.632000px;}
.wsac{word-spacing:-13.488000px;}
.wsa6{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.344000px;}
.wsaa{word-spacing:-13.248000px;}
.wsab{word-spacing:-12.768000px;}
.ws2b{word-spacing:-12.720000px;}
.wsa8{word-spacing:-12.624000px;}
.wsce{word-spacing:-12.528000px;}
.ws4{word-spacing:-12.510000px;}
.wscb{word-spacing:-12.480000px;}
.wsc8{word-spacing:-12.192000px;}
.ws2c{word-spacing:-12.000000px;}
.wsa9{word-spacing:-11.856000px;}
.ws8a{word-spacing:-11.580000px;}
.ws0{word-spacing:-10.508400px;}
.wsca{word-spacing:-9.936000px;}
.ws39{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.506000px;}
.wse4{word-spacing:-4.272000px;}
.ws85{word-spacing:-4.200000px;}
.ws42{word-spacing:-3.360000px;}
.wsbe{word-spacing:-3.312000px;}
.ws74{word-spacing:-3.300000px;}
.ws24{word-spacing:-3.240000px;}
.ws9b{word-spacing:-3.000000px;}
.wsdc{word-spacing:-2.976000px;}
.ws13{word-spacing:-2.940000px;}
.wsd0{word-spacing:-2.928000px;}
.ws7{word-spacing:-2.886000px;}
.wsc3{word-spacing:-2.880000px;}
.wsc4{word-spacing:-2.832000px;}
.wsa5{word-spacing:-2.700000px;}
.ws8d{word-spacing:-2.640000px;}
.ws3f{word-spacing:-2.580000px;}
.ws15{word-spacing:-2.520000px;}
.wsaf{word-spacing:-2.448000px;}
.wsd9{word-spacing:-2.400000px;}
.wsd8{word-spacing:-2.352000px;}
.ws16{word-spacing:-2.340000px;}
.ws56{word-spacing:-2.280000px;}
.ws2f{word-spacing:-2.220000px;}
.ws99{word-spacing:-2.160000px;}
.ws4b{word-spacing:-2.100000px;}
.wsde{word-spacing:-2.064000px;}
.ws44{word-spacing:-2.040000px;}
.wsd1{word-spacing:-2.016000px;}
.ws40{word-spacing:-1.980000px;}
.wsc1{word-spacing:-1.968000px;}
.wsb3{word-spacing:-1.872000px;}
.ws29{word-spacing:-1.860000px;}
.wsd6{word-spacing:-1.824000px;}
.wsd4{word-spacing:-1.776000px;}
.ws5c{word-spacing:-1.740000px;}
.wse0{word-spacing:-1.728000px;}
.ws9f{word-spacing:-1.680000px;}
.wse2{word-spacing:-1.632000px;}
.wsdf{word-spacing:-1.584000px;}
.ws1b{word-spacing:-1.560000px;}
.ws9a{word-spacing:-1.500000px;}
.wsc6{word-spacing:-1.488000px;}
.wsb4{word-spacing:-1.392000px;}
.ws59{word-spacing:-1.380000px;}
.wsd2{word-spacing:-1.344000px;}
.wsa0{word-spacing:-1.320000px;}
.wsb9{word-spacing:-1.296000px;}
.ws19{word-spacing:-1.260000px;}
.wsc0{word-spacing:-1.248000px;}
.ws65{word-spacing:-1.200000px;}
.ws8{word-spacing:-1.134000px;}
.ws21{word-spacing:-1.080000px;}
.wsda{word-spacing:-1.056000px;}
.ws54{word-spacing:-1.020000px;}
.wsb1{word-spacing:-1.008000px;}
.ws1d{word-spacing:-0.960000px;}
.ws30{word-spacing:-0.900000px;}
.ws77{word-spacing:-0.864000px;}
.ws67{word-spacing:-0.840000px;}
.ws87{word-spacing:-0.780000px;}
.ws36{word-spacing:-0.720000px;}
.wsc5{word-spacing:-0.672000px;}
.ws9c{word-spacing:-0.660000px;}
.wsbf{word-spacing:-0.624000px;}
.ws86{word-spacing:-0.600000px;}
.wsdd{word-spacing:-0.576000px;}
.ws9e{word-spacing:-0.540000px;}
.wsb7{word-spacing:-0.528000px;}
.ws1a{word-spacing:-0.480000px;}
.wsbb{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.420000px;}
.wsd7{word-spacing:-0.384000px;}
.ws76{word-spacing:-0.360000px;}
.ws48{word-spacing:-0.300000px;}
.wsc2{word-spacing:-0.288000px;}
.ws17{word-spacing:-0.240000px;}
.ws37{word-spacing:-0.192000px;}
.ws2d{word-spacing:-0.180000px;}
.wse1{word-spacing:-0.144000px;}
.ws47{word-spacing:-0.120000px;}
.wsb8{word-spacing:-0.096000px;}
.ws41{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wsba{word-spacing:0.048000px;}
.ws23{word-spacing:0.060000px;}
.wsad{word-spacing:0.096000px;}
.ws14{word-spacing:0.120000px;}
.wsb2{word-spacing:0.144000px;}
.ws4e{word-spacing:0.180000px;}
.ws5a{word-spacing:0.240000px;}
.ws3e{word-spacing:0.300000px;}
.ws31{word-spacing:0.336000px;}
.ws4f{word-spacing:0.360000px;}
.ws3d{word-spacing:0.420000px;}
.ws66{word-spacing:0.480000px;}
.wsbd{word-spacing:0.528000px;}
.ws12{word-spacing:0.540000px;}
.ws62{word-spacing:0.576000px;}
.ws55{word-spacing:0.660000px;}
.ws28{word-spacing:0.780000px;}
.wse{word-spacing:0.900000px;}
.wsd{word-spacing:1.080000px;}
.wsd3{word-spacing:1.104000px;}
.wsbc{word-spacing:1.152000px;}
.ws1e{word-spacing:1.200000px;}
.ws2e{word-spacing:1.260000px;}
.ws38{word-spacing:1.296000px;}
.ws43{word-spacing:1.320000px;}
.wsa{word-spacing:1.380000px;}
.ws20{word-spacing:1.560000px;}
.ws6c{word-spacing:1.584000px;}
.ws35{word-spacing:1.776000px;}
.ws58{word-spacing:1.860000px;}
.ws57{word-spacing:1.920000px;}
.wsa3{word-spacing:1.980000px;}
.wse3{word-spacing:2.016000px;}
.ws88{word-spacing:2.160000px;}
.ws4d{word-spacing:2.220000px;}
.ws92{word-spacing:2.340000px;}
.ws68{word-spacing:2.400000px;}
.wsb0{word-spacing:2.496000px;}
.ws1f{word-spacing:2.520000px;}
.wsb5{word-spacing:2.544000px;}
.ws18{word-spacing:2.580000px;}
.ws9d{word-spacing:2.640000px;}
.ws34{word-spacing:2.736000px;}
.ws5b{word-spacing:2.760000px;}
.ws93{word-spacing:2.820000px;}
.ws63{word-spacing:2.880000px;}
.wsb{word-spacing:3.000000px;}
.ws6b{word-spacing:3.060000px;}
.wsb6{word-spacing:3.072000px;}
.ws3c{word-spacing:3.120000px;}
.ws22{word-spacing:3.180000px;}
.ws94{word-spacing:3.240000px;}
.wsdb{word-spacing:3.312000px;}
.ws26{word-spacing:3.420000px;}
.ws5d{word-spacing:3.540000px;}
.ws4c{word-spacing:3.600000px;}
.ws49{word-spacing:3.660000px;}
.wsd5{word-spacing:3.696000px;}
.ws5e{word-spacing:3.780000px;}
.ws53{word-spacing:3.840000px;}
.ws32{word-spacing:3.936000px;}
.ws25{word-spacing:3.960000px;}
.ws33{word-spacing:3.984000px;}
.ws90{word-spacing:4.020000px;}
.ws46{word-spacing:4.080000px;}
.ws73{word-spacing:4.140000px;}
.ws4a{word-spacing:4.200000px;}
.ws8f{word-spacing:4.320000px;}
.ws69{word-spacing:4.440000px;}
.ws1c{word-spacing:4.560000px;}
.ws45{word-spacing:4.680000px;}
.ws11{word-spacing:4.740000px;}
.ws75{word-spacing:4.860000px;}
.wsae{word-spacing:4.896000px;}
.wsc{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.wsa4{word-spacing:5.520000px;}
.ws91{word-spacing:6.420000px;}
.ws8e{word-spacing:7.260000px;}
.ws6a{word-spacing:7.740000px;}
.ws7b{word-spacing:71.460000px;}
.ws84{word-spacing:145.080000px;}
.ws7d{word-spacing:156.330000px;}
.ws7e{word-spacing:167.580000px;}
.ws7f{word-spacing:171.360000px;}
.ws83{word-spacing:178.830000px;}
.ws81{word-spacing:182.610000px;}
.ws80{word-spacing:186.345000px;}
.ws7c{word-spacing:188.865000px;}
.ws79{word-spacing:212.112000px;}
.ws78{word-spacing:237.456000px;}
.ws82{word-spacing:435.015000px;}
.ws72{word-spacing:672.864000px;}
.ws61{word-spacing:710.256000px;}
.ws60{word-spacing:731.856000px;}
.ws2a{word-spacing:1023.984000px;}
.ws5f{word-spacing:1601.472000px;}
._31{margin-left:-2898.096000px;}
._30{margin-left:-2874.288000px;}
._33{margin-left:-906.384000px;}
._34{margin-left:-775.392000px;}
._5a{margin-left:-248.112000px;}
._2{margin-left:-9.368400px;}
._95{margin-left:-8.100000px;}
._6{margin-left:-6.705000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.035000px;}
._5{width:1.056000px;}
._32{width:2.070000px;}
._9{width:3.075000px;}
._7{width:4.080000px;}
._b{width:5.220000px;}
._a{width:6.720000px;}
._8{width:7.800000px;}
._c{width:8.880000px;}
._84{width:30.375000px;}
._61{width:35.145000px;}
._83{width:37.845000px;}
._8a{width:41.040000px;}
._60{width:45.630000px;}
._e{width:51.408000px;}
._85{width:56.142000px;}
._86{width:68.670000px;}
._87{width:98.667000px;}
._5e{width:105.120000px;}
._24{width:114.144000px;}
._89{width:118.944000px;}
._5c{width:125.040000px;}
._5f{width:127.620000px;}
._15{width:131.472000px;}
._63{width:145.080000px;}
._64{width:156.330000px;}
._2c{width:158.112000px;}
._21{width:160.512000px;}
._67{width:167.580000px;}
._25{width:178.176000px;}
._81{width:179.187000px;}
._6b{width:182.610000px;}
._75{width:183.780000px;}
._69{width:188.508000px;}
._6a{width:193.095000px;}
._73{width:194.625000px;}
._13{width:197.766000px;}
._18{width:200.784000px;}
._65{width:204.345000px;}
._66{width:205.875000px;}
._6e{width:208.395000px;}
._6c{width:215.100000px;}
._22{width:216.438000px;}
._71{width:218.706000px;}
._7d{width:219.783000px;}
._6f{width:220.860000px;}
._7f{width:222.426000px;}
._56{width:223.440000px;}
._1f{width:224.784000px;}
._1e{width:227.472000px;}
._79{width:229.044000px;}
._72{width:232.110000px;}
._76{width:235.734000px;}
._62{width:243.540000px;}
._7e{width:245.115000px;}
._82{width:246.201000px;}
._2a{width:248.406000px;}
._20{width:249.744000px;}
._68{width:251.304000px;}
._54{width:253.488000px;}
._57{width:258.144000px;}
._7b{width:259.800000px;}
._23{width:262.128000px;}
._77{width:263.580000px;}
._74{width:265.635000px;}
._7c{width:267.525000px;}
._88{width:268.560000px;}
._28{width:269.814000px;}
._6d{width:271.260000px;}
._17{width:275.472000px;}
._1b{width:278.112000px;}
._53{width:283.488000px;}
._2d{width:285.648000px;}
._78{width:287.235000px;}
._93{width:288.240000px;}
._94{width:290.256000px;}
._1a{width:299.472000px;}
._90{width:301.065000px;}
._8c{width:306.240000px;}
._59{width:307.632000px;}
._91{width:308.880000px;}
._1d{width:315.456000px;}
._70{width:323.820000px;}
._8d{width:326.256000px;}
._8e{width:330.720000px;}
._7a{width:332.595000px;}
._10{width:336.486000px;}
._8f{width:338.454000px;}
._12{width:358.128000px;}
._27{width:382.128000px;}
._29{width:385.728000px;}
._2e{width:419.376000px;}
._52{width:443.430000px;}
._16{width:449.760000px;}
._8b{width:455.328000px;}
._80{width:499.770000px;}
._41{width:506.256000px;}
._45{width:517.392000px;}
._4e{width:542.736000px;}
._37{width:544.455000px;}
._92{width:552.528000px;}
._26{width:555.072000px;}
._39{width:556.455000px;}
._4f{width:559.680000px;}
._4b{width:564.102000px;}
._58{width:565.920000px;}
._4a{width:570.336000px;}
._50{width:572.928000px;}
._43{width:579.222000px;}
._3b{width:580.848000px;}
._4d{width:583.584000px;}
._3a{width:585.024000px;}
._36{width:593.769000px;}
._19{width:594.960000px;}
._3c{width:599.568000px;}
._44{width:604.848000px;}
._3e{width:613.392000px;}
._3d{width:616.848000px;}
._14{width:619.056000px;}
._40{width:625.392000px;}
._48{width:628.848000px;}
._4c{width:636.630000px;}
._38{width:638.022000px;}
._49{width:652.992000px;}
._3f{width:655.632000px;}
._5d{width:676.800000px;}
._42{width:681.360000px;}
._46{width:693.360000px;}
._51{width:749.376000px;}
._47{width:774.240000px;}
._2b{width:846.864000px;}
._d{width:881.280000px;}
._2f{width:889.584000px;}
._11{width:896.043000px;}
._1c{width:918.912000px;}
._55{width:971.232000px;}
._35{width:1097.616000px;}
._f{width:1201.584000px;}
._5b{width:1234.896000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y11d{bottom:82.912950px;}
.y97{bottom:83.118000px;}
.y115{bottom:83.196600px;}
.y1ca{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y1b9{bottom:83.912100px;}
.ydc{bottom:83.920350px;}
.y110{bottom:83.935350px;}
.yc1{bottom:84.053850px;}
.y1ab{bottom:84.070350px;}
.y23{bottom:88.026750px;}
.y20e{bottom:89.263500px;}
.y187{bottom:93.127350px;}
.y15d{bottom:93.682350px;}
.y92{bottom:93.919350px;}
.y142{bottom:94.395450px;}
.y24e{bottom:95.263500px;}
.y11c{bottom:98.656950px;}
.y96{bottom:98.862000px;}
.y114{bottom:98.940600px;}
.y1c9{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y1b8{bottom:101.912100px;}
.ydb{bottom:101.920350px;}
.y10f{bottom:101.935350px;}
.yc0{bottom:102.053850px;}
.y1aa{bottom:102.070350px;}
.y22{bottom:103.023000px;}
.y20d{bottom:104.263500px;}
.y186{bottom:109.375350px;}
.y15c{bottom:109.930350px;}
.y91{bottom:110.167350px;}
.y24d{bottom:110.263500px;}
.y141{bottom:110.643450px;}
.y95{bottom:114.606000px;}
.y113{bottom:114.684600px;}
.y20c{bottom:119.263500px;}
.y1c8{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y1b7{bottom:119.912100px;}
.yda{bottom:119.920350px;}
.y10e{bottom:119.935350px;}
.ybf{bottom:120.053850px;}
.y1a9{bottom:120.070350px;}
.y24c{bottom:125.263500px;}
.y185{bottom:125.623350px;}
.y15b{bottom:126.178350px;}
.y90{bottom:126.415350px;}
.y140{bottom:126.891450px;}
.y94{bottom:130.350000px;}
.y112{bottom:130.428600px;}
.y20b{bottom:134.263500px;}
.y1c7{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y1b6{bottom:137.912100px;}
.yd9{bottom:137.920350px;}
.y10d{bottom:137.935350px;}
.ybe{bottom:138.053850px;}
.y1a8{bottom:138.070350px;}
.y24b{bottom:140.263500px;}
.y184{bottom:141.871350px;}
.y15a{bottom:142.426350px;}
.y8f{bottom:142.915350px;}
.y13f{bottom:143.139450px;}
.y111{bottom:146.172600px;}
.y20a{bottom:149.263500px;}
.y24a{bottom:155.263500px;}
.y1c6{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y1b5{bottom:155.912100px;}
.yd8{bottom:155.920350px;}
.y10c{bottom:155.935350px;}
.ybd{bottom:156.053850px;}
.y1a7{bottom:156.070350px;}
.y2a{bottom:156.410400px;}
.y8e{bottom:159.163350px;}
.y13e{bottom:159.387450px;}
.y209{bottom:164.263500px;}
.y249{bottom:170.263500px;}
.y183{bottom:170.875350px;}
.y159{bottom:171.430350px;}
.y1c5{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y1b4{bottom:173.912100px;}
.ybc{bottom:174.053850px;}
.y1a6{bottom:174.070350px;}
.y29{bottom:174.410400px;}
.y8d{bottom:175.411350px;}
.y13d{bottom:175.635450px;}
.y208{bottom:179.263500px;}
.y248{bottom:185.263500px;}
.y182{bottom:187.375350px;}
.y1d0{bottom:191.365350px;}
.yd7{bottom:191.515350px;}
.y10b{bottom:191.530350px;}
.y1c4{bottom:191.635350px;}
.y8c{bottom:191.659350px;}
.y5f{bottom:191.770350px;}
.y13c{bottom:191.883450px;}
.y1b3{bottom:191.912100px;}
.ybb{bottom:192.053850px;}
.y1a5{bottom:192.070350px;}
.y28{bottom:192.410400px;}
.y207{bottom:194.263500px;}
.y247{bottom:200.263500px;}
.y158{bottom:200.434350px;}
.y8b{bottom:207.907350px;}
.y13b{bottom:208.131450px;}
.y206{bottom:209.263500px;}
.y1c3{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y1b2{bottom:209.912100px;}
.yba{bottom:210.053850px;}
.y1a4{bottom:210.070350px;}
.y27{bottom:210.410400px;}
.y246{bottom:215.263500px;}
.y181{bottom:216.379350px;}
.y205{bottom:224.263500px;}
.y13a{bottom:224.379450px;}
.y8a{bottom:224.407350px;}
.y1cf{bottom:227.365350px;}
.y1c2{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y10a{bottom:227.785350px;}
.y1b1{bottom:227.912100px;}
.yb9{bottom:228.053850px;}
.y1a3{bottom:228.070350px;}
.y26{bottom:228.410400px;}
.y245{bottom:230.263500px;}
.y157{bottom:232.827600px;}
.y204{bottom:239.263500px;}
.y139{bottom:240.627450px;}
.y89{bottom:240.655350px;}
.y244{bottom:245.263500px;}
.y1c1{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y109{bottom:245.785350px;}
.y1b0{bottom:245.912100px;}
.yb8{bottom:246.053850px;}
.y1a2{bottom:246.070350px;}
.y25{bottom:246.410400px;}
.y180{bottom:248.777100px;}
.y156{bottom:252.327600px;}
.y203{bottom:254.263500px;}
.y138{bottom:256.875450px;}
.y88{bottom:256.903350px;}
.y243{bottom:260.263500px;}
.y1c0{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y108{bottom:263.785350px;}
.y1af{bottom:263.912100px;}
.yb7{bottom:264.053850px;}
.y1a1{bottom:264.070350px;}
.y2c{bottom:264.410400px;}
.y17f{bottom:268.277100px;}
.y202{bottom:269.263500px;}
.y137{bottom:273.123450px;}
.y87{bottom:273.403350px;}
.y242{bottom:275.263500px;}
.y1bf{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y107{bottom:281.785350px;}
.y1ae{bottom:281.912100px;}
.y24{bottom:282.005400px;}
.yb6{bottom:282.053850px;}
.y1a0{bottom:282.070350px;}
.y2b{bottom:282.410400px;}
.y201{bottom:284.263500px;}
.y136{bottom:289.371450px;}
.y86{bottom:289.651350px;}
.y241{bottom:290.263500px;}
.y174{bottom:299.067600px;}
.y200{bottom:299.263500px;}
.y1ce{bottom:299.365350px;}
.y1be{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y106{bottom:299.785350px;}
.y1ad{bottom:299.912100px;}
.yb5{bottom:300.053850px;}
.y19f{bottom:300.070350px;}
.y240{bottom:305.263500px;}
.y135{bottom:305.619450px;}
.y85{bottom:305.899350px;}
.y1ff{bottom:314.263500px;}
.y1bd{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y105{bottom:317.785350px;}
.y17e{bottom:317.912100px;}
.yb4{bottom:318.053850px;}
.y19e{bottom:318.070350px;}
.y23f{bottom:320.263500px;}
.y134{bottom:321.867450px;}
.y84{bottom:322.399350px;}
.y173{bottom:324.439950px;}
.y1fe{bottom:329.263500px;}
.y23e{bottom:335.263500px;}
.y1ac{bottom:335.530350px;}
.y1bc{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y104{bottom:335.785350px;}
.y17d{bottom:335.912100px;}
.yb3{bottom:336.053850px;}
.y19d{bottom:336.070350px;}
.y133{bottom:338.115450px;}
.y83{bottom:338.647350px;}
.y1fd{bottom:344.263500px;}
.y23d{bottom:350.263500px;}
.y172{bottom:352.699950px;}
.y1cd{bottom:353.365350px;}
.y1bb{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y103{bottom:353.785350px;}
.y17c{bottom:353.912100px;}
.yb2{bottom:354.053850px;}
.y19c{bottom:354.070350px;}
.y132{bottom:354.363450px;}
.y82{bottom:354.895350px;}
.y119{bottom:357.384600px;}
.y1fc{bottom:359.263500px;}
.y21{bottom:360.508650px;}
.y23c{bottom:365.263500px;}
.y131{bottom:370.611450px;}
.y81{bottom:371.395350px;}
.y55{bottom:371.770350px;}
.y102{bottom:371.785350px;}
.y17b{bottom:371.912100px;}
.yb1{bottom:372.053850px;}
.y19b{bottom:372.070350px;}
.y1fb{bottom:374.263500px;}
.y20{bottom:378.514200px;}
.y23b{bottom:380.263500px;}
.y171{bottom:380.959950px;}
.y80{bottom:387.643350px;}
.y1ba{bottom:389.230350px;}
.y1fa{bottom:389.263500px;}
.y54{bottom:389.770350px;}
.y101{bottom:389.785350px;}
.y17a{bottom:389.912100px;}
.yb0{bottom:390.053850px;}
.y19a{bottom:390.070350px;}
.y23a{bottom:395.263500px;}
.y170{bottom:396.462450px;}
.y130{bottom:399.615450px;}
.y7f{bottom:403.891350px;}
.y1f9{bottom:404.263500px;}
.y1f{bottom:405.859200px;}
.y53{bottom:407.770350px;}
.y100{bottom:407.785350px;}
.yaf{bottom:408.053850px;}
.y199{bottom:408.070350px;}
.y239{bottom:410.263500px;}
.y16f{bottom:411.964950px;}
.y12f{bottom:416.115450px;}
.y1f8{bottom:419.263500px;}
.y7e{bottom:420.139350px;}
.y1e{bottom:423.859200px;}
.y238{bottom:425.263500px;}
.y179{bottom:425.515350px;}
.y52{bottom:425.770350px;}
.yff{bottom:425.785350px;}
.yae{bottom:426.053850px;}
.y198{bottom:426.070350px;}
.y16e{bottom:427.467450px;}
.y1f7{bottom:434.263500px;}
.y7d{bottom:436.387350px;}
.y237{bottom:440.263500px;}
.y1d{bottom:441.859200px;}
.y16d{bottom:442.969950px;}
.y51{bottom:443.770350px;}
.yfe{bottom:443.785350px;}
.yad{bottom:444.053850px;}
.y12e{bottom:448.510350px;}
.y1f6{bottom:449.263500px;}
.y7c{bottom:452.635350px;}
.y236{bottom:455.263500px;}
.y16c{bottom:458.472450px;}
.y1c{bottom:459.859200px;}
.y197{bottom:461.665350px;}
.y50{bottom:461.770350px;}
.yfd{bottom:461.785350px;}
.yac{bottom:462.053850px;}
.y1f5{bottom:464.263500px;}
.y12d{bottom:468.010350px;}
.y7b{bottom:469.135350px;}
.y235{bottom:470.263500px;}
.y16b{bottom:473.965350px;}
.y1b{bottom:477.859200px;}
.y1f4{bottom:479.263500px;}
.y196{bottom:479.665350px;}
.y4f{bottom:479.770350px;}
.yfc{bottom:479.785350px;}
.yab{bottom:480.053850px;}
.y234{bottom:485.263500px;}
.y7a{bottom:485.383350px;}
.y16a{bottom:489.467850px;}
.y1f3{bottom:494.263500px;}
.y1a{bottom:495.859200px;}
.y4e{bottom:497.770350px;}
.yfb{bottom:497.785350px;}
.yaa{bottom:498.053850px;}
.y233{bottom:500.263500px;}
.y79{bottom:501.883350px;}
.y169{bottom:504.970350px;}
.y1f2{bottom:509.263500px;}
.y19{bottom:513.859200px;}
.y232{bottom:515.263500px;}
.y1cc{bottom:515.365350px;}
.y4d{bottom:515.770350px;}
.yfa{bottom:515.785350px;}
.y195{bottom:515.920350px;}
.ya9{bottom:516.053850px;}
.y78{bottom:518.131350px;}
.y168{bottom:520.472850px;}
.y1f1{bottom:524.263500px;}
.y231{bottom:530.263500px;}
.y18{bottom:531.859200px;}
.y4c{bottom:533.770350px;}
.yf9{bottom:533.785350px;}
.y12c{bottom:533.920350px;}
.ya8{bottom:534.053850px;}
.y77{bottom:534.379350px;}
.y167{bottom:535.975350px;}
.y1f0{bottom:539.263500px;}
.y230{bottom:545.263500px;}
.y17{bottom:549.859200px;}
.y76{bottom:550.627350px;}
.y166{bottom:551.477850px;}
.y4b{bottom:551.770350px;}
.yf8{bottom:551.785350px;}
.y12b{bottom:551.920350px;}
.ya7{bottom:552.053850px;}
.y1ef{bottom:554.263500px;}
.y22f{bottom:560.263500px;}
.y75{bottom:566.875350px;}
.y165{bottom:566.980350px;}
.y16{bottom:567.859200px;}
.y1ee{bottom:569.263500px;}
.y4a{bottom:569.770350px;}
.yf7{bottom:569.785350px;}
.y12a{bottom:569.920350px;}
.ya6{bottom:570.053850px;}
.y22e{bottom:575.263500px;}
.y118{bottom:578.064600px;}
.y164{bottom:582.482850px;}
.y74{bottom:583.375350px;}
.y1ed{bottom:584.263500px;}
.y15{bottom:585.859200px;}
.y49{bottom:587.770350px;}
.yf6{bottom:587.785350px;}
.y129{bottom:587.920350px;}
.ya5{bottom:588.053850px;}
.y22d{bottom:590.263500px;}
.y163{bottom:597.985350px;}
.y1ec{bottom:599.263500px;}
.y73{bottom:599.623350px;}
.y14{bottom:603.859200px;}
.y22c{bottom:605.263500px;}
.y48{bottom:605.770350px;}
.yf5{bottom:605.785350px;}
.y128{bottom:605.920350px;}
.ya4{bottom:606.053850px;}
.y162{bottom:613.487850px;}
.y1eb{bottom:614.263500px;}
.y72{bottom:615.871350px;}
.y22b{bottom:620.263500px;}
.y13{bottom:621.859200px;}
.y1cb{bottom:623.365350px;}
.y47{bottom:623.770350px;}
.yf4{bottom:623.785350px;}
.y127{bottom:623.920350px;}
.ya3{bottom:624.053850px;}
.y161{bottom:628.990350px;}
.y1ea{bottom:629.263500px;}
.y71{bottom:632.119350px;}
.y22a{bottom:635.263500px;}
.y12{bottom:639.859200px;}
.yd6{bottom:641.648850px;}
.y46{bottom:641.770350px;}
.yf3{bottom:641.785350px;}
.y126{bottom:641.920350px;}
.ya2{bottom:642.053850px;}
.y1e9{bottom:644.263500px;}
.y70{bottom:648.367350px;}
.y229{bottom:650.263500px;}
.y160{bottom:657.250350px;}
.y11{bottom:657.859200px;}
.y1e8{bottom:659.263500px;}
.yd5{bottom:659.648850px;}
.y45{bottom:659.770350px;}
.yf2{bottom:659.785350px;}
.y125{bottom:659.920350px;}
.ya1{bottom:660.053850px;}
.y6f{bottom:664.615350px;}
.y228{bottom:665.263500px;}
.y1e7{bottom:674.263500px;}
.y10{bottom:675.859200px;}
.y121{bottom:677.365350px;}
.yd4{bottom:677.648850px;}
.y44{bottom:677.770350px;}
.yf1{bottom:677.785350px;}
.y124{bottom:677.920350px;}
.ya0{bottom:678.053850px;}
.y227{bottom:680.263500px;}
.y6e{bottom:680.863350px;}
.y15f{bottom:685.510350px;}
.y1e6{bottom:689.263500px;}
.y226{bottom:695.263500px;}
.y120{bottom:695.365350px;}
.y43{bottom:695.770350px;}
.yf0{bottom:695.785350px;}
.y194{bottom:695.920350px;}
.y9f{bottom:696.055350px;}
.y6d{bottom:697.111350px;}
.y1e5{bottom:704.263500px;}
.y98{bottom:704.358150px;}
.y225{bottom:710.263500px;}
.yd3{bottom:713.513850px;}
.y123{bottom:713.515350px;}
.y42{bottom:713.770350px;}
.yef{bottom:713.785350px;}
.y193{bottom:713.920350px;}
.y9e{bottom:714.055350px;}
.y15e{bottom:717.278250px;}
.y1e4{bottom:719.263500px;}
.yf{bottom:721.017300px;}
.y224{bottom:725.263500px;}
.y6c{bottom:728.623350px;}
.y11f{bottom:731.230350px;}
.y122{bottom:731.515350px;}
.y41{bottom:731.770350px;}
.yee{bottom:731.785350px;}
.y192{bottom:731.920350px;}
.y9d{bottom:732.055350px;}
.ye{bottom:733.468050px;}
.y1e3{bottom:734.263500px;}
.y223{bottom:740.263500px;}
.y1e2{bottom:749.263500px;}
.yd2{bottom:749.768850px;}
.y40{bottom:749.770350px;}
.yed{bottom:749.785350px;}
.y191{bottom:749.920350px;}
.y222{bottom:755.263500px;}
.y6b{bottom:763.525350px;}
.y1e1{bottom:764.263500px;}
.y9c{bottom:767.650350px;}
.yd1{bottom:767.768850px;}
.y3f{bottom:767.770350px;}
.y152{bottom:767.772600px;}
.yec{bottom:767.785350px;}
.y190{bottom:767.920350px;}
.yd{bottom:769.044300px;}
.y221{bottom:770.263500px;}
.y11a{bottom:774.504600px;}
.y1e0{bottom:779.263500px;}
.yc{bottom:782.544300px;}
.y220{bottom:785.263500px;}
.y9b{bottom:785.650350px;}
.yd0{bottom:785.768850px;}
.y3e{bottom:785.770350px;}
.y151{bottom:785.772600px;}
.yeb{bottom:785.785350px;}
.y18f{bottom:785.920350px;}
.yb{bottom:792.183600px;}
.y1df{bottom:794.263500px;}
.y21f{bottom:800.263500px;}
.ycf{bottom:803.768850px;}
.y3d{bottom:803.770350px;}
.y150{bottom:803.772600px;}
.yea{bottom:803.785350px;}
.y18e{bottom:803.920350px;}
.ya{bottom:805.683600px;}
.y1de{bottom:809.263500px;}
.y21e{bottom:815.263500px;}
.y9{bottom:819.183600px;}
.y9a{bottom:821.515350px;}
.yce{bottom:821.768850px;}
.y3c{bottom:821.770350px;}
.y14f{bottom:821.772600px;}
.ye9{bottom:821.785350px;}
.y18d{bottom:821.920350px;}
.y117{bottom:822.132600px;}
.y1dd{bottom:824.263500px;}
.y21d{bottom:830.263500px;}
.y8{bottom:836.544300px;}
.y1dc{bottom:839.263500px;}
.y178{bottom:839.365350px;}
.ycd{bottom:839.768850px;}
.y3b{bottom:839.770350px;}
.y14e{bottom:839.772600px;}
.ye8{bottom:839.785350px;}
.y18c{bottom:839.920350px;}
.y21c{bottom:845.263500px;}
.y1db{bottom:854.263500px;}
.y177{bottom:857.365350px;}
.ycc{bottom:857.768850px;}
.y3a{bottom:857.770350px;}
.y14d{bottom:857.772600px;}
.ye7{bottom:857.785350px;}
.y18b{bottom:857.920350px;}
.y21b{bottom:860.263500px;}
.y7{bottom:866.836200px;}
.y1da{bottom:869.263500px;}
.y21a{bottom:875.263500px;}
.ycb{bottom:875.768850px;}
.y39{bottom:875.770350px;}
.y14c{bottom:875.772600px;}
.ye6{bottom:875.785350px;}
.y1d9{bottom:884.263500px;}
.y6{bottom:887.830950px;}
.y219{bottom:890.263500px;}
.y176{bottom:893.230350px;}
.y18a{bottom:893.515350px;}
.yca{bottom:893.768850px;}
.y38{bottom:893.770350px;}
.y14b{bottom:893.772600px;}
.ye5{bottom:893.785350px;}
.y1d8{bottom:899.263500px;}
.y218{bottom:905.263500px;}
.y6a{bottom:911.365350px;}
.y189{bottom:911.515350px;}
.yc9{bottom:911.768850px;}
.y37{bottom:911.770350px;}
.y14a{bottom:911.772600px;}
.ye4{bottom:911.785350px;}
.y1d7{bottom:914.263500px;}
.y217{bottom:920.263500px;}
.y1d6{bottom:929.263500px;}
.y69{bottom:929.365350px;}
.yc8{bottom:929.768850px;}
.y36{bottom:929.770350px;}
.y149{bottom:929.772600px;}
.ye3{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y216{bottom:935.263500px;}
.y1d5{bottom:944.263500px;}
.yc7{bottom:947.768850px;}
.y35{bottom:947.770350px;}
.y148{bottom:947.772600px;}
.ye2{bottom:947.785350px;}
.y215{bottom:950.263500px;}
.y1d4{bottom:959.263500px;}
.y68{bottom:965.230350px;}
.y214{bottom:965.263500px;}
.yc6{bottom:965.768850px;}
.y34{bottom:965.770350px;}
.y147{bottom:965.772600px;}
.ye1{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1d3{bottom:974.263500px;}
.y213{bottom:980.263500px;}
.yc5{bottom:983.768850px;}
.y33{bottom:983.770350px;}
.y146{bottom:983.772600px;}
.ye0{bottom:983.785350px;}
.y1d2{bottom:989.263500px;}
.y212{bottom:995.263500px;}
.yc4{bottom:1001.768850px;}
.y32{bottom:1001.770350px;}
.y155{bottom:1001.772600px;}
.ydf{bottom:1001.785350px;}
.y1d1{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y211{bottom:1010.263500px;}
.y145{bottom:1019.367600px;}
.yc3{bottom:1019.768850px;}
.y31{bottom:1019.770350px;}
.y154{bottom:1019.772600px;}
.yde{bottom:1019.785350px;}
.y210{bottom:1025.263500px;}
.y116{bottom:1026.444600px;}
.y144{bottom:1037.367600px;}
.yc2{bottom:1037.768850px;}
.y30{bottom:1037.770350px;}
.y153{bottom:1037.772600px;}
.ydd{bottom:1037.785350px;}
.y20f{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y11b{bottom:1132.404600px;}
.y66{bottom:1132.418700px;}
.y175{bottom:1132.419600px;}
.y11e{bottom:1132.420950px;}
.y67{bottom:1132.421700px;}
.y99{bottom:1132.422150px;}
.y24f{bottom:1132.423500px;}
.y188{bottom:1132.435350px;}
.y143{bottom:1132.491450px;}
.y93{bottom:1132.531350px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.h15{height:31.267090px;}
.h16{height:31.305490px;}
.hd{height:32.761230px;}
.h8{height:32.805176px;}
.h12{height:33.328125px;}
.h11{height:33.351562px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.he{height:41.689453px;}
.ha{height:43.681641px;}
.hc{height:43.718034px;}
.hb{height:43.740234px;}
.h13{height:44.952872px;}
.h14{height:44.958872px;}
.h6{height:49.117634px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:70.582650px;}
.xb{left:76.535400px;}
.x25{left:78.645150px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x15{left:99.921300px;}
.x30{left:102.047400px;}
.x4{left:106.299300px;}
.xc{left:110.555400px;}
.x32{left:123.307350px;}
.x3{left:125.433150px;}
.x7{left:131.816400px;}
.x1a{left:146.267700px;}
.x5{left:191.337150px;}
.x2f{left:194.292600px;}
.x2e{left:211.390350px;}
.x6{left:212.876400px;}
.x27{left:218.994150px;}
.x29{left:220.135350px;}
.x1d{left:232.360350px;}
.x1e{left:268.698600px;}
.x16{left:269.997300px;}
.x26{left:287.124150px;}
.x1f{left:339.666600px;}
.x2a{left:401.289300px;}
.x24{left:409.773150px;}
.x23{left:424.029150px;}
.x20{left:452.034600px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x21{left:476.226600px;}
.x12{left:478.345350px;}
.x8{left:480.476400px;}
.x31{left:482.591400px;}
.xe{left:491.105400px;}
.x33{left:503.863350px;}
.x14{left:512.365350px;}
.x1c{left:538.715700px;}
.x13{left:546.535350px;}
.x1b{left:562.955700px;}
.x2b{left:618.225300px;}
.x17{left:633.537300px;}
.x19{left:653.871750px;}
.x11{left:663.492300px;}
.x22{left:667.566600px;}
.x2{left:693.365400px;}
.x28{left:721.715400px;}
.x2c{left:723.153300px;}
.xf{left:728.391600px;}
.x2d{left:743.445300px;}
.x18{left:749.613300px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:17.723733pt;}
.v1{vertical-align:19.217067pt;}
.ls57{letter-spacing:-3.040000pt;}
.ls92{letter-spacing:-1.834667pt;}
.ls53{letter-spacing:-1.578667pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.586667pt;}
.ls48{letter-spacing:-0.480000pt;}
.ls80{letter-spacing:-0.469333pt;}
.ls52{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls58{letter-spacing:-0.160000pt;}
.ls7e{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.106667pt;}
.ls7d{letter-spacing:-0.085333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls7f{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls8b{letter-spacing:0.042667pt;}
.ls25{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.085333pt;}
.ls21{letter-spacing:0.106667pt;}
.ls36{letter-spacing:0.128000pt;}
.ls4d{letter-spacing:0.149333pt;}
.lse{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.213333pt;}
.ls7a{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls8e{letter-spacing:0.298667pt;}
.ls27{letter-spacing:0.320000pt;}
.ls85{letter-spacing:0.341333pt;}
.ls22{letter-spacing:0.373333pt;}
.ls72{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.450667pt;}
.ls6e{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls70{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.554667pt;}
.ls16{letter-spacing:0.586667pt;}
.ls7c{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls78{letter-spacing:0.682667pt;}
.ls8{letter-spacing:0.693333pt;}
.ls28{letter-spacing:0.746667pt;}
.ls89{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls62{letter-spacing:0.810667pt;}
.ls24{letter-spacing:0.853333pt;}
.ls65{letter-spacing:0.896000pt;}
.ls9{letter-spacing:0.906667pt;}
.ls8f{letter-spacing:0.938667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls77{letter-spacing:0.981333pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls79{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.066667pt;}
.ls71{letter-spacing:1.109333pt;}
.ls5{letter-spacing:1.120000pt;}
.ls76{letter-spacing:1.152000pt;}
.ls3a{letter-spacing:1.173333pt;}
.ls84{letter-spacing:1.194667pt;}
.ls11{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.237333pt;}
.ls12{letter-spacing:1.280000pt;}
.ls6a{letter-spacing:1.322667pt;}
.ls40{letter-spacing:1.333333pt;}
.ls74{letter-spacing:1.365333pt;}
.ls3{letter-spacing:1.386667pt;}
.ls8d{letter-spacing:1.408000pt;}
.ls4c{letter-spacing:1.440000pt;}
.ls87{letter-spacing:1.450667pt;}
.lsf{letter-spacing:1.493333pt;}
.ls6d{letter-spacing:1.536000pt;}
.ls1b{letter-spacing:1.546667pt;}
.ls8a{letter-spacing:1.578667pt;}
.ls7{letter-spacing:1.600000pt;}
.ls73{letter-spacing:1.621333pt;}
.ls2e{letter-spacing:1.653333pt;}
.ls66{letter-spacing:1.664000pt;}
.ls2b{letter-spacing:1.706667pt;}
.ls69{letter-spacing:1.749333pt;}
.ls3d{letter-spacing:1.760000pt;}
.ls83{letter-spacing:1.792000pt;}
.ls3e{letter-spacing:1.813333pt;}
.ls8c{letter-spacing:1.834667pt;}
.ls1f{letter-spacing:1.866667pt;}
.ls64{letter-spacing:1.877333pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:1.973333pt;}
.ls1a{letter-spacing:2.026667pt;}
.ls6c{letter-spacing:2.048000pt;}
.ls2a{letter-spacing:2.080000pt;}
.ls86{letter-spacing:2.090667pt;}
.ls38{letter-spacing:2.133333pt;}
.ls63{letter-spacing:2.176000pt;}
.ls17{letter-spacing:2.186667pt;}
.ls55{letter-spacing:2.240000pt;}
.ls3c{letter-spacing:2.293333pt;}
.ls6b{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.346667pt;}
.ls6f{letter-spacing:2.389333pt;}
.ls3b{letter-spacing:2.400000pt;}
.ls43{letter-spacing:2.453333pt;}
.ls39{letter-spacing:2.506667pt;}
.ls7b{letter-spacing:2.517333pt;}
.ls82{letter-spacing:2.560000pt;}
.ls91{letter-spacing:2.602667pt;}
.ls14{letter-spacing:2.613333pt;}
.ls88{letter-spacing:2.645333pt;}
.ls59{letter-spacing:2.666667pt;}
.ls46{letter-spacing:2.720000pt;}
.ls2c{letter-spacing:2.773333pt;}
.lsa{letter-spacing:2.880000pt;}
.ls20{letter-spacing:2.933333pt;}
.ls81{letter-spacing:2.944000pt;}
.ls19{letter-spacing:2.986667pt;}
.ls75{letter-spacing:3.029333pt;}
.ls34{letter-spacing:3.093333pt;}
.ls56{letter-spacing:3.146667pt;}
.ls41{letter-spacing:3.253333pt;}
.ls50{letter-spacing:3.306667pt;}
.ls4b{letter-spacing:3.360000pt;}
.ls4a{letter-spacing:3.413333pt;}
.ls1c{letter-spacing:3.520000pt;}
.ls3f{letter-spacing:3.573333pt;}
.ls31{letter-spacing:3.626667pt;}
.ls45{letter-spacing:3.733333pt;}
.ls5d{letter-spacing:3.786667pt;}
.ls90{letter-spacing:3.797333pt;}
.ls44{letter-spacing:3.840000pt;}
.ls30{letter-spacing:4.106667pt;}
.ls42{letter-spacing:4.480000pt;}
.ls5f{letter-spacing:5.226667pt;}
.ls54{letter-spacing:5.280000pt;}
.ls5c{letter-spacing:6.133333pt;}
.ls5e{letter-spacing:6.186667pt;}
.ls5b{letter-spacing:6.346667pt;}
.ls61{letter-spacing:6.773333pt;}
.ls5a{letter-spacing:7.040000pt;}
.ls60{letter-spacing:7.786667pt;}
.ls51{letter-spacing:220.544000pt;}
.ws7a{word-spacing:-200.960000pt;}
.wsa2{word-spacing:-16.586667pt;}
.ws8b{word-spacing:-16.266667pt;}
.ws95{word-spacing:-16.000000pt;}
.ws64{word-spacing:-15.840000pt;}
.ws1{word-spacing:-15.568000pt;}
.ws51{word-spacing:-15.360000pt;}
.ws89{word-spacing:-15.253333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws6e{word-spacing:-14.773333pt;}
.ws70{word-spacing:-14.560000pt;}
.ws71{word-spacing:-14.506667pt;}
.ws97{word-spacing:-14.453333pt;}
.ws3b{word-spacing:-14.346667pt;}
.ws50{word-spacing:-14.240000pt;}
.ws3a{word-spacing:-14.080000pt;}
.ws96{word-spacing:-13.920000pt;}
.ws10{word-spacing:-13.706667pt;}
.ws6d{word-spacing:-13.600000pt;}
.ws6f{word-spacing:-13.493333pt;}
.ws52{word-spacing:-13.440000pt;}
.ws8c{word-spacing:-13.386667pt;}
.wsf{word-spacing:-13.333333pt;}
.wscf{word-spacing:-13.312000pt;}
.ws98{word-spacing:-13.280000pt;}
.wsa1{word-spacing:-13.226667pt;}
.wsa7{word-spacing:-12.970667pt;}
.wsc9{word-spacing:-12.757333pt;}
.wsc7{word-spacing:-12.458667pt;}
.wscc{word-spacing:-12.245333pt;}
.wscd{word-spacing:-12.117333pt;}
.wsac{word-spacing:-11.989333pt;}
.wsa6{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.861333pt;}
.wsaa{word-spacing:-11.776000pt;}
.wsab{word-spacing:-11.349333pt;}
.ws2b{word-spacing:-11.306667pt;}
.wsa8{word-spacing:-11.221333pt;}
.wsce{word-spacing:-11.136000pt;}
.ws4{word-spacing:-11.120000pt;}
.wscb{word-spacing:-11.093333pt;}
.wsc8{word-spacing:-10.837333pt;}
.ws2c{word-spacing:-10.666667pt;}
.wsa9{word-spacing:-10.538667pt;}
.ws8a{word-spacing:-10.293333pt;}
.ws0{word-spacing:-9.340800pt;}
.wsca{word-spacing:-8.832000pt;}
.ws39{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.672000pt;}
.wse4{word-spacing:-3.797333pt;}
.ws85{word-spacing:-3.733333pt;}
.ws42{word-spacing:-2.986667pt;}
.wsbe{word-spacing:-2.944000pt;}
.ws74{word-spacing:-2.933333pt;}
.ws24{word-spacing:-2.880000pt;}
.ws9b{word-spacing:-2.666667pt;}
.wsdc{word-spacing:-2.645333pt;}
.ws13{word-spacing:-2.613333pt;}
.wsd0{word-spacing:-2.602667pt;}
.ws7{word-spacing:-2.565333pt;}
.wsc3{word-spacing:-2.560000pt;}
.wsc4{word-spacing:-2.517333pt;}
.wsa5{word-spacing:-2.400000pt;}
.ws8d{word-spacing:-2.346667pt;}
.ws3f{word-spacing:-2.293333pt;}
.ws15{word-spacing:-2.240000pt;}
.wsaf{word-spacing:-2.176000pt;}
.wsd9{word-spacing:-2.133333pt;}
.wsd8{word-spacing:-2.090667pt;}
.ws16{word-spacing:-2.080000pt;}
.ws56{word-spacing:-2.026667pt;}
.ws2f{word-spacing:-1.973333pt;}
.ws99{word-spacing:-1.920000pt;}
.ws4b{word-spacing:-1.866667pt;}
.wsde{word-spacing:-1.834667pt;}
.ws44{word-spacing:-1.813333pt;}
.wsd1{word-spacing:-1.792000pt;}
.ws40{word-spacing:-1.760000pt;}
.wsc1{word-spacing:-1.749333pt;}
.wsb3{word-spacing:-1.664000pt;}
.ws29{word-spacing:-1.653333pt;}
.wsd6{word-spacing:-1.621333pt;}
.wsd4{word-spacing:-1.578667pt;}
.ws5c{word-spacing:-1.546667pt;}
.wse0{word-spacing:-1.536000pt;}
.ws9f{word-spacing:-1.493333pt;}
.wse2{word-spacing:-1.450667pt;}
.wsdf{word-spacing:-1.408000pt;}
.ws1b{word-spacing:-1.386667pt;}
.ws9a{word-spacing:-1.333333pt;}
.wsc6{word-spacing:-1.322667pt;}
.wsb4{word-spacing:-1.237333pt;}
.ws59{word-spacing:-1.226667pt;}
.wsd2{word-spacing:-1.194667pt;}
.wsa0{word-spacing:-1.173333pt;}
.wsb9{word-spacing:-1.152000pt;}
.ws19{word-spacing:-1.120000pt;}
.wsc0{word-spacing:-1.109333pt;}
.ws65{word-spacing:-1.066667pt;}
.ws8{word-spacing:-1.008000pt;}
.ws21{word-spacing:-0.960000pt;}
.wsda{word-spacing:-0.938667pt;}
.ws54{word-spacing:-0.906667pt;}
.wsb1{word-spacing:-0.896000pt;}
.ws1d{word-spacing:-0.853333pt;}
.ws30{word-spacing:-0.800000pt;}
.ws77{word-spacing:-0.768000pt;}
.ws67{word-spacing:-0.746667pt;}
.ws87{word-spacing:-0.693333pt;}
.ws36{word-spacing:-0.640000pt;}
.wsc5{word-spacing:-0.597333pt;}
.ws9c{word-spacing:-0.586667pt;}
.wsbf{word-spacing:-0.554667pt;}
.ws86{word-spacing:-0.533333pt;}
.wsdd{word-spacing:-0.512000pt;}
.ws9e{word-spacing:-0.480000pt;}
.wsb7{word-spacing:-0.469333pt;}
.ws1a{word-spacing:-0.426667pt;}
.wsbb{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.373333pt;}
.wsd7{word-spacing:-0.341333pt;}
.ws76{word-spacing:-0.320000pt;}
.ws48{word-spacing:-0.266667pt;}
.wsc2{word-spacing:-0.256000pt;}
.ws17{word-spacing:-0.213333pt;}
.ws37{word-spacing:-0.170667pt;}
.ws2d{word-spacing:-0.160000pt;}
.wse1{word-spacing:-0.128000pt;}
.ws47{word-spacing:-0.106667pt;}
.wsb8{word-spacing:-0.085333pt;}
.ws41{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wsba{word-spacing:0.042667pt;}
.ws23{word-spacing:0.053333pt;}
.wsad{word-spacing:0.085333pt;}
.ws14{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.128000pt;}
.ws4e{word-spacing:0.160000pt;}
.ws5a{word-spacing:0.213333pt;}
.ws3e{word-spacing:0.266667pt;}
.ws31{word-spacing:0.298667pt;}
.ws4f{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.373333pt;}
.ws66{word-spacing:0.426667pt;}
.wsbd{word-spacing:0.469333pt;}
.ws12{word-spacing:0.480000pt;}
.ws62{word-spacing:0.512000pt;}
.ws55{word-spacing:0.586667pt;}
.ws28{word-spacing:0.693333pt;}
.wse{word-spacing:0.800000pt;}
.wsd{word-spacing:0.960000pt;}
.wsd3{word-spacing:0.981333pt;}
.wsbc{word-spacing:1.024000pt;}
.ws1e{word-spacing:1.066667pt;}
.ws2e{word-spacing:1.120000pt;}
.ws38{word-spacing:1.152000pt;}
.ws43{word-spacing:1.173333pt;}
.wsa{word-spacing:1.226667pt;}
.ws20{word-spacing:1.386667pt;}
.ws6c{word-spacing:1.408000pt;}
.ws35{word-spacing:1.578667pt;}
.ws58{word-spacing:1.653333pt;}
.ws57{word-spacing:1.706667pt;}
.wsa3{word-spacing:1.760000pt;}
.wse3{word-spacing:1.792000pt;}
.ws88{word-spacing:1.920000pt;}
.ws4d{word-spacing:1.973333pt;}
.ws92{word-spacing:2.080000pt;}
.ws68{word-spacing:2.133333pt;}
.wsb0{word-spacing:2.218667pt;}
.ws1f{word-spacing:2.240000pt;}
.wsb5{word-spacing:2.261333pt;}
.ws18{word-spacing:2.293333pt;}
.ws9d{word-spacing:2.346667pt;}
.ws34{word-spacing:2.432000pt;}
.ws5b{word-spacing:2.453333pt;}
.ws93{word-spacing:2.506667pt;}
.ws63{word-spacing:2.560000pt;}
.wsb{word-spacing:2.666667pt;}
.ws6b{word-spacing:2.720000pt;}
.wsb6{word-spacing:2.730667pt;}
.ws3c{word-spacing:2.773333pt;}
.ws22{word-spacing:2.826667pt;}
.ws94{word-spacing:2.880000pt;}
.wsdb{word-spacing:2.944000pt;}
.ws26{word-spacing:3.040000pt;}
.ws5d{word-spacing:3.146667pt;}
.ws4c{word-spacing:3.200000pt;}
.ws49{word-spacing:3.253333pt;}
.wsd5{word-spacing:3.285333pt;}
.ws5e{word-spacing:3.360000pt;}
.ws53{word-spacing:3.413333pt;}
.ws32{word-spacing:3.498667pt;}
.ws25{word-spacing:3.520000pt;}
.ws33{word-spacing:3.541333pt;}
.ws90{word-spacing:3.573333pt;}
.ws46{word-spacing:3.626667pt;}
.ws73{word-spacing:3.680000pt;}
.ws4a{word-spacing:3.733333pt;}
.ws8f{word-spacing:3.840000pt;}
.ws69{word-spacing:3.946667pt;}
.ws1c{word-spacing:4.053333pt;}
.ws45{word-spacing:4.160000pt;}
.ws11{word-spacing:4.213333pt;}
.ws75{word-spacing:4.320000pt;}
.wsae{word-spacing:4.352000pt;}
.wsc{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.wsa4{word-spacing:4.906667pt;}
.ws91{word-spacing:5.706667pt;}
.ws8e{word-spacing:6.453333pt;}
.ws6a{word-spacing:6.880000pt;}
.ws7b{word-spacing:63.520000pt;}
.ws84{word-spacing:128.960000pt;}
.ws7d{word-spacing:138.960000pt;}
.ws7e{word-spacing:148.960000pt;}
.ws7f{word-spacing:152.320000pt;}
.ws83{word-spacing:158.960000pt;}
.ws81{word-spacing:162.320000pt;}
.ws80{word-spacing:165.640000pt;}
.ws7c{word-spacing:167.880000pt;}
.ws79{word-spacing:188.544000pt;}
.ws78{word-spacing:211.072000pt;}
.ws82{word-spacing:386.680000pt;}
.ws72{word-spacing:598.101333pt;}
.ws61{word-spacing:631.338667pt;}
.ws60{word-spacing:650.538667pt;}
.ws2a{word-spacing:910.208000pt;}
.ws5f{word-spacing:1423.530667pt;}
._31{margin-left:-2576.085333pt;}
._30{margin-left:-2554.922667pt;}
._33{margin-left:-805.674667pt;}
._34{margin-left:-689.237333pt;}
._5a{margin-left:-220.544000pt;}
._2{margin-left:-8.327467pt;}
._95{margin-left:-7.200000pt;}
._6{margin-left:-5.960000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.920000pt;}
._5{width:0.938667pt;}
._32{width:1.840000pt;}
._9{width:2.733333pt;}
._7{width:3.626667pt;}
._b{width:4.640000pt;}
._a{width:5.973333pt;}
._8{width:6.933333pt;}
._c{width:7.893333pt;}
._84{width:27.000000pt;}
._61{width:31.240000pt;}
._83{width:33.640000pt;}
._8a{width:36.480000pt;}
._60{width:40.560000pt;}
._e{width:45.696000pt;}
._85{width:49.904000pt;}
._86{width:61.040000pt;}
._87{width:87.704000pt;}
._5e{width:93.440000pt;}
._24{width:101.461333pt;}
._89{width:105.728000pt;}
._5c{width:111.146667pt;}
._5f{width:113.440000pt;}
._15{width:116.864000pt;}
._63{width:128.960000pt;}
._64{width:138.960000pt;}
._2c{width:140.544000pt;}
._21{width:142.677333pt;}
._67{width:148.960000pt;}
._25{width:158.378667pt;}
._81{width:159.277333pt;}
._6b{width:162.320000pt;}
._75{width:163.360000pt;}
._69{width:167.562667pt;}
._6a{width:171.640000pt;}
._73{width:173.000000pt;}
._13{width:175.792000pt;}
._18{width:178.474667pt;}
._65{width:181.640000pt;}
._66{width:183.000000pt;}
._6e{width:185.240000pt;}
._6c{width:191.200000pt;}
._22{width:192.389333pt;}
._71{width:194.405333pt;}
._7d{width:195.362667pt;}
._6f{width:196.320000pt;}
._7f{width:197.712000pt;}
._56{width:198.613333pt;}
._1f{width:199.808000pt;}
._1e{width:202.197333pt;}
._79{width:203.594667pt;}
._72{width:206.320000pt;}
._76{width:209.541333pt;}
._62{width:216.480000pt;}
._7e{width:217.880000pt;}
._82{width:218.845333pt;}
._2a{width:220.805333pt;}
._20{width:221.994667pt;}
._68{width:223.381333pt;}
._54{width:225.322667pt;}
._57{width:229.461333pt;}
._7b{width:230.933333pt;}
._23{width:233.002667pt;}
._77{width:234.293333pt;}
._74{width:236.120000pt;}
._7c{width:237.800000pt;}
._88{width:238.720000pt;}
._28{width:239.834667pt;}
._6d{width:241.120000pt;}
._17{width:244.864000pt;}
._1b{width:247.210667pt;}
._53{width:251.989333pt;}
._2d{width:253.909333pt;}
._78{width:255.320000pt;}
._93{width:256.213333pt;}
._94{width:258.005333pt;}
._1a{width:266.197333pt;}
._90{width:267.613333pt;}
._8c{width:272.213333pt;}
._59{width:273.450667pt;}
._91{width:274.560000pt;}
._1d{width:280.405333pt;}
._70{width:287.840000pt;}
._8d{width:290.005333pt;}
._8e{width:293.973333pt;}
._7a{width:295.640000pt;}
._10{width:299.098667pt;}
._8f{width:300.848000pt;}
._12{width:318.336000pt;}
._27{width:339.669333pt;}
._29{width:342.869333pt;}
._2e{width:372.778667pt;}
._52{width:394.160000pt;}
._16{width:399.786667pt;}
._8b{width:404.736000pt;}
._80{width:444.240000pt;}
._41{width:450.005333pt;}
._45{width:459.904000pt;}
._4e{width:482.432000pt;}
._37{width:483.960000pt;}
._92{width:491.136000pt;}
._26{width:493.397333pt;}
._39{width:494.626667pt;}
._4f{width:497.493333pt;}
._4b{width:501.424000pt;}
._58{width:503.040000pt;}
._4a{width:506.965333pt;}
._50{width:509.269333pt;}
._43{width:514.864000pt;}
._3b{width:516.309333pt;}
._4d{width:518.741333pt;}
._3a{width:520.021333pt;}
._36{width:527.794667pt;}
._19{width:528.853333pt;}
._3c{width:532.949333pt;}
._44{width:537.642667pt;}
._3e{width:545.237333pt;}
._3d{width:548.309333pt;}
._14{width:550.272000pt;}
._40{width:555.904000pt;}
._48{width:558.976000pt;}
._4c{width:565.893333pt;}
._38{width:567.130667pt;}
._49{width:580.437333pt;}
._3f{width:582.784000pt;}
._5d{width:601.600000pt;}
._42{width:605.653333pt;}
._46{width:616.320000pt;}
._51{width:666.112000pt;}
._47{width:688.213333pt;}
._2b{width:752.768000pt;}
._d{width:783.360000pt;}
._2f{width:790.741333pt;}
._11{width:796.482667pt;}
._1c{width:816.810667pt;}
._55{width:863.317333pt;}
._35{width:975.658667pt;}
._f{width:1068.074667pt;}
._5b{width:1097.685333pt;}
.fs5{font-size:24.000000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y11d{bottom:73.700400pt;}
.y97{bottom:73.882667pt;}
.y115{bottom:73.952533pt;}
.y1ca{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y1b9{bottom:74.588533pt;}
.ydc{bottom:74.595867pt;}
.y110{bottom:74.609200pt;}
.yc1{bottom:74.714533pt;}
.y1ab{bottom:74.729200pt;}
.y23{bottom:78.246000pt;}
.y20e{bottom:79.345333pt;}
.y187{bottom:82.779867pt;}
.y15d{bottom:83.273200pt;}
.y92{bottom:83.483867pt;}
.y142{bottom:83.907067pt;}
.y24e{bottom:84.678667pt;}
.y11c{bottom:87.695067pt;}
.y96{bottom:87.877333pt;}
.y114{bottom:87.947200pt;}
.y1c9{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y1b8{bottom:90.588533pt;}
.ydb{bottom:90.595867pt;}
.y10f{bottom:90.609200pt;}
.yc0{bottom:90.714533pt;}
.y1aa{bottom:90.729200pt;}
.y22{bottom:91.576000pt;}
.y20d{bottom:92.678667pt;}
.y186{bottom:97.222533pt;}
.y15c{bottom:97.715867pt;}
.y91{bottom:97.926533pt;}
.y24d{bottom:98.012000pt;}
.y141{bottom:98.349733pt;}
.y95{bottom:101.872000pt;}
.y113{bottom:101.941867pt;}
.y20c{bottom:106.012000pt;}
.y1c8{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y1b7{bottom:106.588533pt;}
.yda{bottom:106.595867pt;}
.y10e{bottom:106.609200pt;}
.ybf{bottom:106.714533pt;}
.y1a9{bottom:106.729200pt;}
.y24c{bottom:111.345333pt;}
.y185{bottom:111.665200pt;}
.y15b{bottom:112.158533pt;}
.y90{bottom:112.369200pt;}
.y140{bottom:112.792400pt;}
.y94{bottom:115.866667pt;}
.y112{bottom:115.936533pt;}
.y20b{bottom:119.345333pt;}
.y1c7{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y1b6{bottom:122.588533pt;}
.yd9{bottom:122.595867pt;}
.y10d{bottom:122.609200pt;}
.ybe{bottom:122.714533pt;}
.y1a8{bottom:122.729200pt;}
.y24b{bottom:124.678667pt;}
.y184{bottom:126.107867pt;}
.y15a{bottom:126.601200pt;}
.y8f{bottom:127.035867pt;}
.y13f{bottom:127.235067pt;}
.y111{bottom:129.931200pt;}
.y20a{bottom:132.678667pt;}
.y24a{bottom:138.012000pt;}
.y1c6{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y1b5{bottom:138.588533pt;}
.yd8{bottom:138.595867pt;}
.y10c{bottom:138.609200pt;}
.ybd{bottom:138.714533pt;}
.y1a7{bottom:138.729200pt;}
.y2a{bottom:139.031467pt;}
.y8e{bottom:141.478533pt;}
.y13e{bottom:141.677733pt;}
.y209{bottom:146.012000pt;}
.y249{bottom:151.345333pt;}
.y183{bottom:151.889200pt;}
.y159{bottom:152.382533pt;}
.y1c5{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y1b4{bottom:154.588533pt;}
.ybc{bottom:154.714533pt;}
.y1a6{bottom:154.729200pt;}
.y29{bottom:155.031467pt;}
.y8d{bottom:155.921200pt;}
.y13d{bottom:156.120400pt;}
.y208{bottom:159.345333pt;}
.y248{bottom:164.678667pt;}
.y182{bottom:166.555867pt;}
.y1d0{bottom:170.102533pt;}
.yd7{bottom:170.235867pt;}
.y10b{bottom:170.249200pt;}
.y1c4{bottom:170.342533pt;}
.y8c{bottom:170.363867pt;}
.y5f{bottom:170.462533pt;}
.y13c{bottom:170.563067pt;}
.y1b3{bottom:170.588533pt;}
.ybb{bottom:170.714533pt;}
.y1a5{bottom:170.729200pt;}
.y28{bottom:171.031467pt;}
.y207{bottom:172.678667pt;}
.y247{bottom:178.012000pt;}
.y158{bottom:178.163867pt;}
.y8b{bottom:184.806533pt;}
.y13b{bottom:185.005733pt;}
.y206{bottom:186.012000pt;}
.y1c3{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y1b2{bottom:186.588533pt;}
.yba{bottom:186.714533pt;}
.y1a4{bottom:186.729200pt;}
.y27{bottom:187.031467pt;}
.y246{bottom:191.345333pt;}
.y181{bottom:192.337200pt;}
.y205{bottom:199.345333pt;}
.y13a{bottom:199.448400pt;}
.y8a{bottom:199.473200pt;}
.y1cf{bottom:202.102533pt;}
.y1c2{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y10a{bottom:202.475867pt;}
.y1b1{bottom:202.588533pt;}
.yb9{bottom:202.714533pt;}
.y1a3{bottom:202.729200pt;}
.y26{bottom:203.031467pt;}
.y245{bottom:204.678667pt;}
.y157{bottom:206.957867pt;}
.y204{bottom:212.678667pt;}
.y139{bottom:213.891067pt;}
.y89{bottom:213.915867pt;}
.y244{bottom:218.012000pt;}
.y1c1{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y109{bottom:218.475867pt;}
.y1b0{bottom:218.588533pt;}
.yb8{bottom:218.714533pt;}
.y1a2{bottom:218.729200pt;}
.y25{bottom:219.031467pt;}
.y180{bottom:221.135200pt;}
.y156{bottom:224.291200pt;}
.y203{bottom:226.012000pt;}
.y138{bottom:228.333733pt;}
.y88{bottom:228.358533pt;}
.y243{bottom:231.345333pt;}
.y1c0{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y108{bottom:234.475867pt;}
.y1af{bottom:234.588533pt;}
.yb7{bottom:234.714533pt;}
.y1a1{bottom:234.729200pt;}
.y2c{bottom:235.031467pt;}
.y17f{bottom:238.468533pt;}
.y202{bottom:239.345333pt;}
.y137{bottom:242.776400pt;}
.y87{bottom:243.025200pt;}
.y242{bottom:244.678667pt;}
.y1bf{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y107{bottom:250.475867pt;}
.y1ae{bottom:250.588533pt;}
.y24{bottom:250.671467pt;}
.yb6{bottom:250.714533pt;}
.y1a0{bottom:250.729200pt;}
.y2b{bottom:251.031467pt;}
.y201{bottom:252.678667pt;}
.y136{bottom:257.219067pt;}
.y86{bottom:257.467867pt;}
.y241{bottom:258.012000pt;}
.y174{bottom:265.837867pt;}
.y200{bottom:266.012000pt;}
.y1ce{bottom:266.102533pt;}
.y1be{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y106{bottom:266.475867pt;}
.y1ad{bottom:266.588533pt;}
.yb5{bottom:266.714533pt;}
.y19f{bottom:266.729200pt;}
.y240{bottom:271.345333pt;}
.y135{bottom:271.661733pt;}
.y85{bottom:271.910533pt;}
.y1ff{bottom:279.345333pt;}
.y1bd{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y105{bottom:282.475867pt;}
.y17e{bottom:282.588533pt;}
.yb4{bottom:282.714533pt;}
.y19e{bottom:282.729200pt;}
.y23f{bottom:284.678667pt;}
.y134{bottom:286.104400pt;}
.y84{bottom:286.577200pt;}
.y173{bottom:288.391067pt;}
.y1fe{bottom:292.678667pt;}
.y23e{bottom:298.012000pt;}
.y1ac{bottom:298.249200pt;}
.y1bc{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y104{bottom:298.475867pt;}
.y17d{bottom:298.588533pt;}
.yb3{bottom:298.714533pt;}
.y19d{bottom:298.729200pt;}
.y133{bottom:300.547067pt;}
.y83{bottom:301.019867pt;}
.y1fd{bottom:306.012000pt;}
.y23d{bottom:311.345333pt;}
.y172{bottom:313.511067pt;}
.y1cd{bottom:314.102533pt;}
.y1bb{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y103{bottom:314.475867pt;}
.y17c{bottom:314.588533pt;}
.yb2{bottom:314.714533pt;}
.y19c{bottom:314.729200pt;}
.y132{bottom:314.989733pt;}
.y82{bottom:315.462533pt;}
.y119{bottom:317.675200pt;}
.y1fc{bottom:319.345333pt;}
.y21{bottom:320.452133pt;}
.y23c{bottom:324.678667pt;}
.y131{bottom:329.432400pt;}
.y81{bottom:330.129200pt;}
.y55{bottom:330.462533pt;}
.y102{bottom:330.475867pt;}
.y17b{bottom:330.588533pt;}
.yb1{bottom:330.714533pt;}
.y19b{bottom:330.729200pt;}
.y1fb{bottom:332.678667pt;}
.y20{bottom:336.457067pt;}
.y23b{bottom:338.012000pt;}
.y171{bottom:338.631067pt;}
.y80{bottom:344.571867pt;}
.y1ba{bottom:345.982533pt;}
.y1fa{bottom:346.012000pt;}
.y54{bottom:346.462533pt;}
.y101{bottom:346.475867pt;}
.y17a{bottom:346.588533pt;}
.yb0{bottom:346.714533pt;}
.y19a{bottom:346.729200pt;}
.y23a{bottom:351.345333pt;}
.y170{bottom:352.411067pt;}
.y130{bottom:355.213733pt;}
.y7f{bottom:359.014533pt;}
.y1f9{bottom:359.345333pt;}
.y1f{bottom:360.763733pt;}
.y53{bottom:362.462533pt;}
.y100{bottom:362.475867pt;}
.yaf{bottom:362.714533pt;}
.y199{bottom:362.729200pt;}
.y239{bottom:364.678667pt;}
.y16f{bottom:366.191067pt;}
.y12f{bottom:369.880400pt;}
.y1f8{bottom:372.678667pt;}
.y7e{bottom:373.457200pt;}
.y1e{bottom:376.763733pt;}
.y238{bottom:378.012000pt;}
.y179{bottom:378.235867pt;}
.y52{bottom:378.462533pt;}
.yff{bottom:378.475867pt;}
.yae{bottom:378.714533pt;}
.y198{bottom:378.729200pt;}
.y16e{bottom:379.971067pt;}
.y1f7{bottom:386.012000pt;}
.y7d{bottom:387.899867pt;}
.y237{bottom:391.345333pt;}
.y1d{bottom:392.763733pt;}
.y16d{bottom:393.751067pt;}
.y51{bottom:394.462533pt;}
.yfe{bottom:394.475867pt;}
.yad{bottom:394.714533pt;}
.y12e{bottom:398.675867pt;}
.y1f6{bottom:399.345333pt;}
.y7c{bottom:402.342533pt;}
.y236{bottom:404.678667pt;}
.y16c{bottom:407.531067pt;}
.y1c{bottom:408.763733pt;}
.y197{bottom:410.369200pt;}
.y50{bottom:410.462533pt;}
.yfd{bottom:410.475867pt;}
.yac{bottom:410.714533pt;}
.y1f5{bottom:412.678667pt;}
.y12d{bottom:416.009200pt;}
.y7b{bottom:417.009200pt;}
.y235{bottom:418.012000pt;}
.y16b{bottom:421.302533pt;}
.y1b{bottom:424.763733pt;}
.y1f4{bottom:426.012000pt;}
.y196{bottom:426.369200pt;}
.y4f{bottom:426.462533pt;}
.yfc{bottom:426.475867pt;}
.yab{bottom:426.714533pt;}
.y234{bottom:431.345333pt;}
.y7a{bottom:431.451867pt;}
.y16a{bottom:435.082533pt;}
.y1f3{bottom:439.345333pt;}
.y1a{bottom:440.763733pt;}
.y4e{bottom:442.462533pt;}
.yfb{bottom:442.475867pt;}
.yaa{bottom:442.714533pt;}
.y233{bottom:444.678667pt;}
.y79{bottom:446.118533pt;}
.y169{bottom:448.862533pt;}
.y1f2{bottom:452.678667pt;}
.y19{bottom:456.763733pt;}
.y232{bottom:458.012000pt;}
.y1cc{bottom:458.102533pt;}
.y4d{bottom:458.462533pt;}
.yfa{bottom:458.475867pt;}
.y195{bottom:458.595867pt;}
.ya9{bottom:458.714533pt;}
.y78{bottom:460.561200pt;}
.y168{bottom:462.642533pt;}
.y1f1{bottom:466.012000pt;}
.y231{bottom:471.345333pt;}
.y18{bottom:472.763733pt;}
.y4c{bottom:474.462533pt;}
.yf9{bottom:474.475867pt;}
.y12c{bottom:474.595867pt;}
.ya8{bottom:474.714533pt;}
.y77{bottom:475.003867pt;}
.y167{bottom:476.422533pt;}
.y1f0{bottom:479.345333pt;}
.y230{bottom:484.678667pt;}
.y17{bottom:488.763733pt;}
.y76{bottom:489.446533pt;}
.y166{bottom:490.202533pt;}
.y4b{bottom:490.462533pt;}
.yf8{bottom:490.475867pt;}
.y12b{bottom:490.595867pt;}
.ya7{bottom:490.714533pt;}
.y1ef{bottom:492.678667pt;}
.y22f{bottom:498.012000pt;}
.y75{bottom:503.889200pt;}
.y165{bottom:503.982533pt;}
.y16{bottom:504.763733pt;}
.y1ee{bottom:506.012000pt;}
.y4a{bottom:506.462533pt;}
.yf7{bottom:506.475867pt;}
.y12a{bottom:506.595867pt;}
.ya6{bottom:506.714533pt;}
.y22e{bottom:511.345333pt;}
.y118{bottom:513.835200pt;}
.y164{bottom:517.762533pt;}
.y74{bottom:518.555867pt;}
.y1ed{bottom:519.345333pt;}
.y15{bottom:520.763733pt;}
.y49{bottom:522.462533pt;}
.yf6{bottom:522.475867pt;}
.y129{bottom:522.595867pt;}
.ya5{bottom:522.714533pt;}
.y22d{bottom:524.678667pt;}
.y163{bottom:531.542533pt;}
.y1ec{bottom:532.678667pt;}
.y73{bottom:532.998533pt;}
.y14{bottom:536.763733pt;}
.y22c{bottom:538.012000pt;}
.y48{bottom:538.462533pt;}
.yf5{bottom:538.475867pt;}
.y128{bottom:538.595867pt;}
.ya4{bottom:538.714533pt;}
.y162{bottom:545.322533pt;}
.y1eb{bottom:546.012000pt;}
.y72{bottom:547.441200pt;}
.y22b{bottom:551.345333pt;}
.y13{bottom:552.763733pt;}
.y1cb{bottom:554.102533pt;}
.y47{bottom:554.462533pt;}
.yf4{bottom:554.475867pt;}
.y127{bottom:554.595867pt;}
.ya3{bottom:554.714533pt;}
.y161{bottom:559.102533pt;}
.y1ea{bottom:559.345333pt;}
.y71{bottom:561.883867pt;}
.y22a{bottom:564.678667pt;}
.y12{bottom:568.763733pt;}
.yd6{bottom:570.354533pt;}
.y46{bottom:570.462533pt;}
.yf3{bottom:570.475867pt;}
.y126{bottom:570.595867pt;}
.ya2{bottom:570.714533pt;}
.y1e9{bottom:572.678667pt;}
.y70{bottom:576.326533pt;}
.y229{bottom:578.012000pt;}
.y160{bottom:584.222533pt;}
.y11{bottom:584.763733pt;}
.y1e8{bottom:586.012000pt;}
.yd5{bottom:586.354533pt;}
.y45{bottom:586.462533pt;}
.yf2{bottom:586.475867pt;}
.y125{bottom:586.595867pt;}
.ya1{bottom:586.714533pt;}
.y6f{bottom:590.769200pt;}
.y228{bottom:591.345333pt;}
.y1e7{bottom:599.345333pt;}
.y10{bottom:600.763733pt;}
.y121{bottom:602.102533pt;}
.yd4{bottom:602.354533pt;}
.y44{bottom:602.462533pt;}
.yf1{bottom:602.475867pt;}
.y124{bottom:602.595867pt;}
.ya0{bottom:602.714533pt;}
.y227{bottom:604.678667pt;}
.y6e{bottom:605.211867pt;}
.y15f{bottom:609.342533pt;}
.y1e6{bottom:612.678667pt;}
.y226{bottom:618.012000pt;}
.y120{bottom:618.102533pt;}
.y43{bottom:618.462533pt;}
.yf0{bottom:618.475867pt;}
.y194{bottom:618.595867pt;}
.y9f{bottom:618.715867pt;}
.y6d{bottom:619.654533pt;}
.y1e5{bottom:626.012000pt;}
.y98{bottom:626.096133pt;}
.y225{bottom:631.345333pt;}
.yd3{bottom:634.234533pt;}
.y123{bottom:634.235867pt;}
.y42{bottom:634.462533pt;}
.yef{bottom:634.475867pt;}
.y193{bottom:634.595867pt;}
.y9e{bottom:634.715867pt;}
.y15e{bottom:637.580667pt;}
.y1e4{bottom:639.345333pt;}
.yf{bottom:640.904267pt;}
.y224{bottom:644.678667pt;}
.y6c{bottom:647.665200pt;}
.y11f{bottom:649.982533pt;}
.y122{bottom:650.235867pt;}
.y41{bottom:650.462533pt;}
.yee{bottom:650.475867pt;}
.y192{bottom:650.595867pt;}
.y9d{bottom:650.715867pt;}
.ye{bottom:651.971600pt;}
.y1e3{bottom:652.678667pt;}
.y223{bottom:658.012000pt;}
.y1e2{bottom:666.012000pt;}
.yd2{bottom:666.461200pt;}
.y40{bottom:666.462533pt;}
.yed{bottom:666.475867pt;}
.y191{bottom:666.595867pt;}
.y222{bottom:671.345333pt;}
.y6b{bottom:678.689200pt;}
.y1e1{bottom:679.345333pt;}
.y9c{bottom:682.355867pt;}
.yd1{bottom:682.461200pt;}
.y3f{bottom:682.462533pt;}
.y152{bottom:682.464533pt;}
.yec{bottom:682.475867pt;}
.y190{bottom:682.595867pt;}
.yd{bottom:683.594933pt;}
.y221{bottom:684.678667pt;}
.y11a{bottom:688.448533pt;}
.y1e0{bottom:692.678667pt;}
.yc{bottom:695.594933pt;}
.y220{bottom:698.012000pt;}
.y9b{bottom:698.355867pt;}
.yd0{bottom:698.461200pt;}
.y3e{bottom:698.462533pt;}
.y151{bottom:698.464533pt;}
.yeb{bottom:698.475867pt;}
.y18f{bottom:698.595867pt;}
.yb{bottom:704.163200pt;}
.y1df{bottom:706.012000pt;}
.y21f{bottom:711.345333pt;}
.ycf{bottom:714.461200pt;}
.y3d{bottom:714.462533pt;}
.y150{bottom:714.464533pt;}
.yea{bottom:714.475867pt;}
.y18e{bottom:714.595867pt;}
.ya{bottom:716.163200pt;}
.y1de{bottom:719.345333pt;}
.y21e{bottom:724.678667pt;}
.y9{bottom:728.163200pt;}
.y9a{bottom:730.235867pt;}
.yce{bottom:730.461200pt;}
.y3c{bottom:730.462533pt;}
.y14f{bottom:730.464533pt;}
.ye9{bottom:730.475867pt;}
.y18d{bottom:730.595867pt;}
.y117{bottom:730.784533pt;}
.y1dd{bottom:732.678667pt;}
.y21d{bottom:738.012000pt;}
.y8{bottom:743.594933pt;}
.y1dc{bottom:746.012000pt;}
.y178{bottom:746.102533pt;}
.ycd{bottom:746.461200pt;}
.y3b{bottom:746.462533pt;}
.y14e{bottom:746.464533pt;}
.ye8{bottom:746.475867pt;}
.y18c{bottom:746.595867pt;}
.y21c{bottom:751.345333pt;}
.y1db{bottom:759.345333pt;}
.y177{bottom:762.102533pt;}
.ycc{bottom:762.461200pt;}
.y3a{bottom:762.462533pt;}
.y14d{bottom:762.464533pt;}
.ye7{bottom:762.475867pt;}
.y18b{bottom:762.595867pt;}
.y21b{bottom:764.678667pt;}
.y7{bottom:770.521067pt;}
.y1da{bottom:772.678667pt;}
.y21a{bottom:778.012000pt;}
.ycb{bottom:778.461200pt;}
.y39{bottom:778.462533pt;}
.y14c{bottom:778.464533pt;}
.ye6{bottom:778.475867pt;}
.y1d9{bottom:786.012000pt;}
.y6{bottom:789.183067pt;}
.y219{bottom:791.345333pt;}
.y176{bottom:793.982533pt;}
.y18a{bottom:794.235867pt;}
.yca{bottom:794.461200pt;}
.y38{bottom:794.462533pt;}
.y14b{bottom:794.464533pt;}
.ye5{bottom:794.475867pt;}
.y1d8{bottom:799.345333pt;}
.y218{bottom:804.678667pt;}
.y6a{bottom:810.102533pt;}
.y189{bottom:810.235867pt;}
.yc9{bottom:810.461200pt;}
.y37{bottom:810.462533pt;}
.y14a{bottom:810.464533pt;}
.ye4{bottom:810.475867pt;}
.y1d7{bottom:812.678667pt;}
.y217{bottom:818.012000pt;}
.y1d6{bottom:826.012000pt;}
.y69{bottom:826.102533pt;}
.yc8{bottom:826.461200pt;}
.y36{bottom:826.462533pt;}
.y149{bottom:826.464533pt;}
.ye3{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y216{bottom:831.345333pt;}
.y1d5{bottom:839.345333pt;}
.yc7{bottom:842.461200pt;}
.y35{bottom:842.462533pt;}
.y148{bottom:842.464533pt;}
.ye2{bottom:842.475867pt;}
.y215{bottom:844.678667pt;}
.y1d4{bottom:852.678667pt;}
.y68{bottom:857.982533pt;}
.y214{bottom:858.012000pt;}
.yc6{bottom:858.461200pt;}
.y34{bottom:858.462533pt;}
.y147{bottom:858.464533pt;}
.ye1{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1d3{bottom:866.012000pt;}
.y213{bottom:871.345333pt;}
.yc5{bottom:874.461200pt;}
.y33{bottom:874.462533pt;}
.y146{bottom:874.464533pt;}
.ye0{bottom:874.475867pt;}
.y1d2{bottom:879.345333pt;}
.y212{bottom:884.678667pt;}
.yc4{bottom:890.461200pt;}
.y32{bottom:890.462533pt;}
.y155{bottom:890.464533pt;}
.ydf{bottom:890.475867pt;}
.y1d1{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y211{bottom:898.012000pt;}
.y145{bottom:906.104533pt;}
.yc3{bottom:906.461200pt;}
.y31{bottom:906.462533pt;}
.y154{bottom:906.464533pt;}
.yde{bottom:906.475867pt;}
.y210{bottom:911.345333pt;}
.y116{bottom:912.395200pt;}
.y144{bottom:922.104533pt;}
.yc2{bottom:922.461200pt;}
.y30{bottom:922.462533pt;}
.y153{bottom:922.464533pt;}
.ydd{bottom:922.475867pt;}
.y20f{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y11b{bottom:1006.581867pt;}
.y66{bottom:1006.594400pt;}
.y175{bottom:1006.595200pt;}
.y11e{bottom:1006.596400pt;}
.y67{bottom:1006.597067pt;}
.y99{bottom:1006.597467pt;}
.y24f{bottom:1006.598667pt;}
.y188{bottom:1006.609200pt;}
.y143{bottom:1006.659067pt;}
.y93{bottom:1006.694533pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.h15{height:27.792969pt;}
.h16{height:27.827102pt;}
.hd{height:29.121094pt;}
.h8{height:29.160156pt;}
.h12{height:29.625000pt;}
.h11{height:29.645833pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.he{height:37.057292pt;}
.ha{height:38.828125pt;}
.hc{height:38.860475pt;}
.hb{height:38.880208pt;}
.h13{height:39.958108pt;}
.h14{height:39.963442pt;}
.h6{height:43.660119pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:62.740133pt;}
.xb{left:68.031467pt;}
.x25{left:69.906800pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x15{left:88.818933pt;}
.x30{left:90.708800pt;}
.x4{left:94.488267pt;}
.xc{left:98.271467pt;}
.x32{left:109.606533pt;}
.x3{left:111.496133pt;}
.x7{left:117.170133pt;}
.x1a{left:130.015733pt;}
.x5{left:170.077467pt;}
.x2f{left:172.704533pt;}
.x2e{left:187.902533pt;}
.x6{left:189.223467pt;}
.x27{left:194.661467pt;}
.x29{left:195.675867pt;}
.x1d{left:206.542533pt;}
.x1e{left:238.843200pt;}
.x16{left:239.997600pt;}
.x26{left:255.221467pt;}
.x1f{left:301.925867pt;}
.x2a{left:356.701600pt;}
.x24{left:364.242800pt;}
.x23{left:376.914800pt;}
.x20{left:401.808533pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x21{left:423.312533pt;}
.x12{left:425.195867pt;}
.x8{left:427.090133pt;}
.x31{left:428.970133pt;}
.xe{left:436.538133pt;}
.x33{left:447.878533pt;}
.x14{left:455.435867pt;}
.x1c{left:478.858400pt;}
.x13{left:485.809200pt;}
.x1b{left:500.405067pt;}
.x2b{left:549.533600pt;}
.x17{left:563.144267pt;}
.x19{left:581.219333pt;}
.x11{left:589.770933pt;}
.x22{left:593.392533pt;}
.x2{left:616.324800pt;}
.x28{left:641.524800pt;}
.x2c{left:642.802933pt;}
.xf{left:647.459200pt;}
.x2d{left:660.840267pt;}
.x18{left:666.322933pt;}
}




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