
    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_c7ea2299198c8f103d16701b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_3e02348fde0a6310b7ac3e5b.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_21c77309a4095349e43fda5a.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_a8cda5e3d951bab3585ecd34.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_6f259bbfec8f70afb8b630b9.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_1aa659e80b5e44d9298801ac.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_54cd5bd09453e042e09c9906.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_252d71bf03aae6ced53fb366.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_deaf66acae349a32e02835b6.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_f75d9d9928785b75a2626828.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f022e5d7cb866186152146fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_222be23b1996e21f8611ce0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls5f{letter-spacing:-7.860000px;}
.ls12{letter-spacing:-7.740000px;}
.ls60{letter-spacing:-7.500000px;}
.ls58{letter-spacing:-7.080000px;}
.ls4c{letter-spacing:-6.900000px;}
.ls4b{letter-spacing:-6.420000px;}
.ls30{letter-spacing:-6.192000px;}
.ls3b{letter-spacing:-5.031000px;}
.ls59{letter-spacing:-4.980000px;}
.ls3a{letter-spacing:-4.680000px;}
.ls90{letter-spacing:-2.640000px;}
.ls3c{letter-spacing:-1.443000px;}
.ls11{letter-spacing:-0.780000px;}
.ls5b{letter-spacing:-0.360000px;}
.ls5a{letter-spacing:-0.240000px;}
.ls52{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.120000px;}
.ls7e{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.060000px;}
.ls7c{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.ls0{letter-spacing:0.005076px;}
.ls4d{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.069600px;}
.ls64{letter-spacing:0.096000px;}
.ls34{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.180000px;}
.ls87{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.240000px;}
.ls65{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.300000px;}
.ls73{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls68{letter-spacing:0.384000px;}
.ls38{letter-spacing:0.420000px;}
.ls71{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.480000px;}
.ls63{letter-spacing:0.528000px;}
.lse{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.600000px;}
.ls7a{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls7f{letter-spacing:0.672000px;}
.ls23{letter-spacing:0.720000px;}
.ls6d{letter-spacing:0.768000px;}
.ls24{letter-spacing:0.780000px;}
.ls62{letter-spacing:0.816000px;}
.ls7{letter-spacing:0.840000px;}
.ls8b{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.900000px;}
.ls80{letter-spacing:0.912000px;}
.ls4{letter-spacing:0.960000px;}
.ls7b{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.020000px;}
.ls84{letter-spacing:1.056000px;}
.ls1d{letter-spacing:1.080000px;}
.ls75{letter-spacing:1.104000px;}
.ls6{letter-spacing:1.140000px;}
.ls6e{letter-spacing:1.152000px;}
.ls9{letter-spacing:1.200000px;}
.ls67{letter-spacing:1.248000px;}
.ls17{letter-spacing:1.260000px;}
.ls2d{letter-spacing:1.320000px;}
.ls81{letter-spacing:1.344000px;}
.lsb{letter-spacing:1.380000px;}
.ls79{letter-spacing:1.392000px;}
.ls18{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.488000px;}
.ls1b{letter-spacing:1.500000px;}
.ls88{letter-spacing:1.536000px;}
.ls21{letter-spacing:1.560000px;}
.ls8d{letter-spacing:1.584000px;}
.ls36{letter-spacing:1.620000px;}
.ls69{letter-spacing:1.632000px;}
.ls37{letter-spacing:1.680000px;}
.ls70{letter-spacing:1.728000px;}
.ls29{letter-spacing:1.740000px;}
.ls89{letter-spacing:1.776000px;}
.ls19{letter-spacing:1.800000px;}
.ls5{letter-spacing:1.860000px;}
.ls6a{letter-spacing:1.872000px;}
.lsa{letter-spacing:1.920000px;}
.ls2e{letter-spacing:1.980000px;}
.ls76{letter-spacing:2.016000px;}
.ls39{letter-spacing:2.040000px;}
.ls77{letter-spacing:2.064000px;}
.ls20{letter-spacing:2.100000px;}
.ls3f{letter-spacing:2.160000px;}
.ls2b{letter-spacing:2.220000px;}
.ls6b{letter-spacing:2.256000px;}
.ls3e{letter-spacing:2.280000px;}
.ls8a{letter-spacing:2.304000px;}
.ls28{letter-spacing:2.400000px;}
.ls27{letter-spacing:2.460000px;}
.lsf{letter-spacing:2.520000px;}
.ls6f{letter-spacing:2.544000px;}
.ls1f{letter-spacing:2.580000px;}
.ls2c{letter-spacing:2.640000px;}
.ls4a{letter-spacing:2.700000px;}
.ls44{letter-spacing:2.760000px;}
.ls4f{letter-spacing:2.820000px;}
.ls5c{letter-spacing:2.880000px;}
.ls7d{letter-spacing:2.928000px;}
.ls40{letter-spacing:2.940000px;}
.ls41{letter-spacing:3.000000px;}
.ls72{letter-spacing:3.024000px;}
.ls33{letter-spacing:3.060000px;}
.ls47{letter-spacing:3.120000px;}
.ls49{letter-spacing:3.180000px;}
.ls55{letter-spacing:3.240000px;}
.ls54{letter-spacing:3.300000px;}
.ls85{letter-spacing:3.312000px;}
.ls82{letter-spacing:3.360000px;}
.ls8e{letter-spacing:3.408000px;}
.ls1a{letter-spacing:3.420000px;}
.ls5d{letter-spacing:3.540000px;}
.ls48{letter-spacing:3.600000px;}
.ls43{letter-spacing:3.660000px;}
.ls83{letter-spacing:3.696000px;}
.ls35{letter-spacing:3.720000px;}
.ls4e{letter-spacing:3.780000px;}
.ls86{letter-spacing:3.792000px;}
.ls51{letter-spacing:3.960000px;}
.lsd{letter-spacing:4.020000px;}
.ls2a{letter-spacing:4.140000px;}
.lsc{letter-spacing:4.200000px;}
.ls14{letter-spacing:4.260000px;}
.ls8f{letter-spacing:4.272000px;}
.ls78{letter-spacing:4.368000px;}
.ls5e{letter-spacing:4.440000px;}
.ls46{letter-spacing:4.740000px;}
.ls6c{letter-spacing:5.040000px;}
.ls53{letter-spacing:5.160000px;}
.ls42{letter-spacing:5.220000px;}
.ls8c{letter-spacing:5.376000px;}
.ls32{letter-spacing:5.400000px;}
.ls56{letter-spacing:5.640000px;}
.ls45{letter-spacing:5.700000px;}
.ls50{letter-spacing:6.420000px;}
.ls61{letter-spacing:7.620000px;}
.ls57{letter-spacing:8.520000px;}
.ls2f{letter-spacing:387.218400px;}
.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;}
}
.ws38{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws63{word-spacing:-21.420000px;}
.ws72{word-spacing:-20.160000px;}
.ws4d{word-spacing:-19.740000px;}
.ws5{word-spacing:-19.200000px;}
.ws8c{word-spacing:-19.140000px;}
.ws8a{word-spacing:-18.540000px;}
.ws18{word-spacing:-18.420000px;}
.ws73{word-spacing:-18.300000px;}
.ws86{word-spacing:-18.240000px;}
.ws4e{word-spacing:-18.120000px;}
.ws8e{word-spacing:-17.940000px;}
.ws88{word-spacing:-17.880000px;}
.ws19{word-spacing:-17.580000px;}
.ws6{word-spacing:-17.520000px;}
.ws4b{word-spacing:-17.400000px;}
.ws8b{word-spacing:-16.920000px;}
.ws4c{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.680000px;}
.ws78{word-spacing:-16.560000px;}
.ws74{word-spacing:-16.500000px;}
.ws16{word-spacing:-16.440000px;}
.ws89{word-spacing:-16.320000px;}
.ws4a{word-spacing:-16.200000px;}
.ws17{word-spacing:-16.140000px;}
.ws87{word-spacing:-16.080000px;}
.ws1a{word-spacing:-15.900000px;}
.ws85{word-spacing:-15.840000px;}
.ws71{word-spacing:-15.720000px;}
.ws77{word-spacing:-15.660000px;}
.ws70{word-spacing:-15.480000px;}
.ws8f{word-spacing:-15.420000px;}
.ws75{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.240000px;}
.ws8d{word-spacing:-15.060000px;}
.wsa4{word-spacing:-15.024000px;}
.ws4{word-spacing:-15.000000px;}
.wsa1{word-spacing:-14.544000px;}
.wsbd{word-spacing:-13.872000px;}
.wsa2{word-spacing:-13.728000px;}
.ws29{word-spacing:-13.500000px;}
.wsa6{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.344000px;}
.wsbe{word-spacing:-12.864000px;}
.wsa7{word-spacing:-12.672000px;}
.ws7{word-spacing:-12.510000px;}
.wsa5{word-spacing:-12.336000px;}
.wsa3{word-spacing:-12.288000px;}
.ws9f{word-spacing:-12.240000px;}
.wsa0{word-spacing:-12.048000px;}
.ws1c{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.ws3a{word-spacing:-9.750000px;}
.wsbc{word-spacing:-9.360000px;}
.ws3{word-spacing:-8.940000px;}
.ws76{word-spacing:-7.260000px;}
.ws5c{word-spacing:-5.700000px;}
.ws64{word-spacing:-5.220000px;}
.ws5d{word-spacing:-4.740000px;}
.wsc3{word-spacing:-3.696000px;}
.ws9b{word-spacing:-3.600000px;}
.wsa{word-spacing:-2.886000px;}
.wsa9{word-spacing:-2.700000px;}
.ws32{word-spacing:-2.640000px;}
.ws3d{word-spacing:-2.520000px;}
.ws65{word-spacing:-2.460000px;}
.ws9c{word-spacing:-2.280000px;}
.ws23{word-spacing:-2.220000px;}
.wsba{word-spacing:-2.064000px;}
.ws96{word-spacing:-1.980000px;}
.wsca{word-spacing:-1.872000px;}
.ws3e{word-spacing:-1.860000px;}
.ws36{word-spacing:-1.776000px;}
.ws30{word-spacing:-1.740000px;}
.wsb4{word-spacing:-1.728000px;}
.wsbb{word-spacing:-1.392000px;}
.ws99{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.260000px;}
.wsb9{word-spacing:-1.200000px;}
.wsb5{word-spacing:-1.152000px;}
.ws57{word-spacing:-1.080000px;}
.wsc4{word-spacing:-1.056000px;}
.ws37{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.840000px;}
.ws79{word-spacing:-0.720000px;}
.ws67{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.540000px;}
.wsb3{word-spacing:-0.480000px;}
.ws5e{word-spacing:-0.420000px;}
.ws31{word-spacing:-0.360000px;}
.wsb8{word-spacing:-0.336000px;}
.ws1d{word-spacing:-0.240000px;}
.ws59{word-spacing:-0.180000px;}
.wsad{word-spacing:-0.144000px;}
.ws83{word-spacing:-0.120000px;}
.ws12{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.wsaa{word-spacing:0.048000px;}
.ws14{word-spacing:0.060000px;}
.ws9d{word-spacing:0.120000px;}
.ws7d{word-spacing:0.180000px;}
.ws26{word-spacing:0.240000px;}
.ws62{word-spacing:0.288000px;}
.wsaf{word-spacing:0.336000px;}
.ws55{word-spacing:0.360000px;}
.ws51{word-spacing:0.480000px;}
.ws28{word-spacing:0.624000px;}
.ws6c{word-spacing:0.780000px;}
.ws41{word-spacing:0.840000px;}
.wsc7{word-spacing:0.864000px;}
.ws40{word-spacing:0.900000px;}
.wsae{word-spacing:0.912000px;}
.ws45{word-spacing:0.960000px;}
.ws44{word-spacing:1.080000px;}
.wse{word-spacing:1.140000px;}
.ws22{word-spacing:1.200000px;}
.ws47{word-spacing:1.296000px;}
.ws3f{word-spacing:1.320000px;}
.ws53{word-spacing:1.440000px;}
.ws43{word-spacing:1.443000px;}
.ws4f{word-spacing:1.500000px;}
.ws52{word-spacing:1.560000px;}
.wsc0{word-spacing:1.632000px;}
.ws93{word-spacing:1.680000px;}
.wscd{word-spacing:1.728000px;}
.ws54{word-spacing:1.740000px;}
.wsd{word-spacing:1.800000px;}
.ws7e{word-spacing:1.860000px;}
.ws49{word-spacing:1.872000px;}
.ws50{word-spacing:1.920000px;}
.ws80{word-spacing:1.980000px;}
.ws66{word-spacing:2.040000px;}
.ws95{word-spacing:2.100000px;}
.wscc{word-spacing:2.112000px;}
.ws1e{word-spacing:2.160000px;}
.ws68{word-spacing:2.220000px;}
.wsab{word-spacing:2.256000px;}
.wsb{word-spacing:2.280000px;}
.ws5a{word-spacing:2.340000px;}
.ws6f{word-spacing:2.400000px;}
.wsac{word-spacing:2.448000px;}
.wsb1{word-spacing:2.592000px;}
.wsb2{word-spacing:2.640000px;}
.wsc1{word-spacing:2.688000px;}
.ws9a{word-spacing:2.700000px;}
.wsb0{word-spacing:2.736000px;}
.ws56{word-spacing:2.760000px;}
.wsc9{word-spacing:2.784000px;}
.ws6a{word-spacing:2.820000px;}
.wsbf{word-spacing:2.832000px;}
.ws90{word-spacing:2.880000px;}
.ws81{word-spacing:2.940000px;}
.ws69{word-spacing:3.000000px;}
.ws82{word-spacing:3.060000px;}
.wsb6{word-spacing:3.072000px;}
.ws5f{word-spacing:3.120000px;}
.ws6e{word-spacing:3.180000px;}
.wsc5{word-spacing:3.216000px;}
.ws6b{word-spacing:3.240000px;}
.wsc2{word-spacing:3.264000px;}
.wsc6{word-spacing:3.312000px;}
.wsc8{word-spacing:3.408000px;}
.ws20{word-spacing:3.420000px;}
.ws6d{word-spacing:3.480000px;}
.ws48{word-spacing:3.504000px;}
.ws2f{word-spacing:3.540000px;}
.wscb{word-spacing:3.552000px;}
.ws25{word-spacing:3.600000px;}
.wsb7{word-spacing:3.648000px;}
.ws27{word-spacing:3.660000px;}
.wsf{word-spacing:3.720000px;}
.ws13{word-spacing:3.780000px;}
.ws24{word-spacing:3.900000px;}
.ws46{word-spacing:3.936000px;}
.ws84{word-spacing:3.960000px;}
.ws60{word-spacing:3.984000px;}
.ws61{word-spacing:4.032000px;}
.ws7a{word-spacing:4.140000px;}
.ws7b{word-spacing:4.260000px;}
.ws21{word-spacing:4.320000px;}
.ws7c{word-spacing:4.500000px;}
.ws98{word-spacing:4.560000px;}
.ws91{word-spacing:4.620000px;}
.ws34{word-spacing:4.680000px;}
.ws33{word-spacing:4.860000px;}
.wsc{word-spacing:4.920000px;}
.ws11{word-spacing:4.980000px;}
.ws42{word-spacing:5.031000px;}
.ws9e{word-spacing:5.460000px;}
.wsa8{word-spacing:5.520000px;}
.ws35{word-spacing:6.192000px;}
.ws58{word-spacing:6.420000px;}
.ws5b{word-spacing:6.900000px;}
.ws7f{word-spacing:7.080000px;}
.ws97{word-spacing:7.500000px;}
.ws92{word-spacing:7.740000px;}
.ws94{word-spacing:7.860000px;}
.ws3b{word-spacing:139.464000px;}
.ws3c{word-spacing:149.214000px;}
.ws2b{word-spacing:170.832000px;}
.ws2a{word-spacing:174.816000px;}
.ws2c{word-spacing:177.504000px;}
.ws2d{word-spacing:192.144000px;}
.ws39{word-spacing:1260.168000px;}
.ws2e{word-spacing:1260.672000px;}
._b{margin-left:-2898.096000px;}
._39{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._3{margin-left:-7.596000px;}
._4b{margin-left:-6.420000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.699000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.012800px;}
._6{width:1.108800px;}
._a{width:3.096000px;}
._9{width:4.800000px;}
._8{width:5.850000px;}
._7{width:7.740000px;}
._4a{width:9.540000px;}
._49{width:10.620000px;}
._40{width:23.394000px;}
._3f{width:36.459000px;}
._3b{width:45.039000px;}
._e{width:47.472000px;}
._14{width:57.792000px;}
._38{width:73.200000px;}
._3e{width:85.794000px;}
._3c{width:90.708000px;}
._3a{width:97.923000px;}
._42{width:99.834000px;}
._3d{width:123.234000px;}
._f{width:130.176000px;}
._41{width:131.229000px;}
._16{width:133.398000px;}
._46{width:135.558000px;}
._22{width:137.232000px;}
._43{width:152.874000px;}
._47{width:156.696000px;}
._45{width:164.766000px;}
._2b{width:180.144000px;}
._2e{width:182.832000px;}
._48{width:184.587000px;}
._19{width:186.816000px;}
._10{width:187.872000px;}
._36{width:189.504000px;}
._33{width:193.200000px;}
._32{width:198.816000px;}
._37{width:201.216000px;}
._29{width:214.512000px;}
._11{width:215.574000px;}
._44{width:217.887000px;}
._30{width:241.200000px;}
._15{width:242.214000px;}
._2f{width:270.576000px;}
._c{width:278.544000px;}
._1a{width:287.526000px;}
._2c{width:294.528000px;}
._27{width:315.216000px;}
._1b{width:322.611000px;}
._28{width:332.400000px;}
._1c{width:373.977000px;}
._23{width:381.219000px;}
._12{width:387.216000px;}
._2a{width:397.728000px;}
._2d{width:400.368000px;}
._18{width:404.400000px;}
._13{width:405.744000px;}
._35{width:407.040000px;}
._31{width:416.400000px;}
._25{width:421.155000px;}
._1f{width:425.569200px;}
._24{width:431.859000px;}
._20{width:433.537200px;}
._17{width:453.219000px;}
._1d{width:469.755000px;}
._1e{width:508.177200px;}
._34{width:526.704000px;}
._26{width:577.972200px;}
._21{width:665.472000px;}
._d{width:694.176000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.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;}
.y2d{bottom:47.777250px;}
.y124{bottom:83.635350px;}
.yae{bottom:83.661150px;}
.yc8{bottom:83.770350px;}
.y100{bottom:83.920350px;}
.ye8{bottom:84.192750px;}
.y51{bottom:84.523350px;}
.y2a{bottom:88.026750px;}
.ye5{bottom:91.112100px;}
.yaa{bottom:91.737750px;}
.y84{bottom:93.702150px;}
.y151{bottom:95.121900px;}
.y191{bottom:95.263500px;}
.yad{bottom:99.405150px;}
.ye7{bottom:99.936750px;}
.y50{bottom:100.267350px;}
.y123{bottom:101.230350px;}
.yc7{bottom:101.770350px;}
.yff{bottom:101.920350px;}
.y29{bottom:103.023000px;}
.ya9{bottom:103.437750px;}
.ye4{bottom:109.112100px;}
.y150{bottom:110.121900px;}
.y190{bottom:110.263500px;}
.yac{bottom:115.149150px;}
.ye6{bottom:115.680750px;}
.ya8{bottom:117.438750px;}
.yc6{bottom:119.770350px;}
.yfe{bottom:119.920350px;}
.y83{bottom:122.706150px;}
.y14f{bottom:125.121900px;}
.y18f{bottom:125.263500px;}
.ye3{bottom:127.112100px;}
.ya7{bottom:129.138750px;}
.y122{bottom:137.635350px;}
.yc5{bottom:137.770350px;}
.yfd{bottom:137.920350px;}
.y82{bottom:138.954150px;}
.y14e{bottom:140.121900px;}
.y18e{bottom:140.263500px;}
.ya6{bottom:143.139750px;}
.ye2{bottom:145.112100px;}
.ya5{bottom:154.839750px;}
.y14d{bottom:155.121900px;}
.y81{bottom:155.202150px;}
.y18d{bottom:155.263500px;}
.y121{bottom:155.635350px;}
.yc4{bottom:155.770350px;}
.yfc{bottom:155.920350px;}
.ye1{bottom:163.112100px;}
.ya4{bottom:168.840750px;}
.y26{bottom:168.880650px;}
.y14c{bottom:170.121900px;}
.y18c{bottom:170.263500px;}
.y80{bottom:171.450150px;}
.y120{bottom:173.635350px;}
.yc3{bottom:173.770350px;}
.yfb{bottom:173.920350px;}
.ya3{bottom:180.540750px;}
.ye0{bottom:181.112100px;}
.y14b{bottom:185.121900px;}
.y18b{bottom:185.263500px;}
.y25{bottom:186.880650px;}
.y7f{bottom:187.698150px;}
.y11f{bottom:191.635350px;}
.yc2{bottom:191.770350px;}
.yfa{bottom:191.920350px;}
.ya2{bottom:194.541750px;}
.ydf{bottom:199.112100px;}
.y14a{bottom:200.121900px;}
.y18a{bottom:200.263500px;}
.y7e{bottom:203.946150px;}
.y24{bottom:204.880650px;}
.ya1{bottom:206.241750px;}
.y11e{bottom:209.635350px;}
.yc1{bottom:209.770350px;}
.yf9{bottom:209.920350px;}
.y149{bottom:215.121900px;}
.y189{bottom:215.263500px;}
.yde{bottom:217.112100px;}
.y7d{bottom:220.194150px;}
.ya0{bottom:220.242750px;}
.y9e{bottom:220.254450px;}
.y23{bottom:222.880650px;}
.y11d{bottom:227.635350px;}
.yc0{bottom:227.770350px;}
.yf8{bottom:227.920350px;}
.y148{bottom:230.121900px;}
.y188{bottom:230.263500px;}
.y9f{bottom:231.942750px;}
.y9d{bottom:231.954450px;}
.ydd{bottom:235.112100px;}
.y7c{bottom:236.442150px;}
.y22{bottom:240.880650px;}
.y147{bottom:245.121900px;}
.y187{bottom:245.263500px;}
.yec{bottom:245.365350px;}
.y11c{bottom:245.635350px;}
.ybf{bottom:245.770350px;}
.yf7{bottom:245.920350px;}
.y9c{bottom:245.955450px;}
.y7b{bottom:252.690150px;}
.ydc{bottom:253.112100px;}
.y9b{bottom:257.655450px;}
.y21{bottom:258.880650px;}
.y146{bottom:260.121900px;}
.y186{bottom:260.263500px;}
.yeb{bottom:263.365350px;}
.y11b{bottom:263.635350px;}
.ybe{bottom:263.770350px;}
.yf6{bottom:263.920350px;}
.y7a{bottom:269.033400px;}
.ydb{bottom:271.112100px;}
.y9a{bottom:271.656450px;}
.y145{bottom:275.121900px;}
.y185{bottom:275.263500px;}
.y20{bottom:276.880650px;}
.y11a{bottom:281.635350px;}
.ybd{bottom:281.770350px;}
.yf5{bottom:281.920350px;}
.y99{bottom:283.356450px;}
.y79{bottom:285.281400px;}
.yda{bottom:289.112100px;}
.y144{bottom:290.121900px;}
.y184{bottom:290.263500px;}
.y1f{bottom:294.880650px;}
.y98{bottom:297.357450px;}
.yea{bottom:299.230350px;}
.y119{bottom:299.635350px;}
.ybc{bottom:299.770350px;}
.yf4{bottom:299.920350px;}
.y78{bottom:301.529400px;}
.y143{bottom:305.121900px;}
.y183{bottom:305.263500px;}
.yd9{bottom:307.112100px;}
.y97{bottom:309.057450px;}
.y1e{bottom:312.880650px;}
.y118{bottom:317.635350px;}
.ybb{bottom:317.770350px;}
.y77{bottom:317.777400px;}
.yf3{bottom:317.920350px;}
.y142{bottom:320.121900px;}
.y182{bottom:320.263500px;}
.y96{bottom:323.058450px;}
.yd8{bottom:325.112100px;}
.y1d{bottom:330.880650px;}
.y76{bottom:334.025400px;}
.y95{bottom:334.758450px;}
.y141{bottom:335.121900px;}
.y181{bottom:335.263500px;}
.y117{bottom:335.635350px;}
.yba{bottom:335.770350px;}
.yf2{bottom:335.920350px;}
.yd7{bottom:343.112100px;}
.y1c{bottom:348.880650px;}
.y140{bottom:350.121900px;}
.y180{bottom:350.263500px;}
.y75{bottom:350.273400px;}
.y116{bottom:353.635350px;}
.yb9{bottom:353.770350px;}
.yf1{bottom:353.920350px;}
.yd6{bottom:361.112100px;}
.y94{bottom:361.512450px;}
.y13f{bottom:365.121900px;}
.y17f{bottom:365.263500px;}
.y74{bottom:366.521400px;}
.y28{bottom:366.880650px;}
.y115{bottom:371.635350px;}
.yb8{bottom:371.770350px;}
.yf0{bottom:371.920350px;}
.y93{bottom:373.212450px;}
.yd5{bottom:379.112100px;}
.y13e{bottom:380.121900px;}
.y17e{bottom:380.263500px;}
.y73{bottom:382.769400px;}
.y1b{bottom:384.477750px;}
.y27{bottom:384.880650px;}
.y92{bottom:384.912450px;}
.y114{bottom:389.635350px;}
.yb7{bottom:389.770350px;}
.yef{bottom:389.920350px;}
.y13d{bottom:395.121900px;}
.y17d{bottom:395.263500px;}
.yd4{bottom:397.112100px;}
.y72{bottom:399.017400px;}
.y113{bottom:407.230350px;}
.yb6{bottom:407.770350px;}
.y13c{bottom:410.121900px;}
.y17c{bottom:410.263500px;}
.y91{bottom:411.666450px;}
.yd3{bottom:415.112100px;}
.y71{bottom:415.265400px;}
.y13b{bottom:425.121900px;}
.y17b{bottom:425.263500px;}
.yee{bottom:425.515350px;}
.yb5{bottom:425.770350px;}
.y70{bottom:431.513400px;}
.yd2{bottom:433.112100px;}
.y13a{bottom:440.121900px;}
.y17a{bottom:440.263500px;}
.y90{bottom:442.180350px;}
.yed{bottom:443.515350px;}
.y112{bottom:443.635350px;}
.yb4{bottom:443.770350px;}
.y6f{bottom:447.761400px;}
.yd1{bottom:451.112100px;}
.y139{bottom:455.121900px;}
.y179{bottom:455.263500px;}
.y111{bottom:461.635350px;}
.y8f{bottom:461.680350px;}
.yb3{bottom:461.770350px;}
.y1a{bottom:462.058500px;}
.y6e{bottom:464.009400px;}
.yd0{bottom:469.112100px;}
.y138{bottom:470.121900px;}
.y178{bottom:470.263500px;}
.y110{bottom:479.635350px;}
.yb2{bottom:479.770350px;}
.y19{bottom:480.064200px;}
.y6d{bottom:480.257400px;}
.y8e{bottom:481.180350px;}
.y137{bottom:485.121900px;}
.y177{bottom:485.263500px;}
.ycf{bottom:487.112100px;}
.y6c{bottom:496.505400px;}
.y10f{bottom:497.635350px;}
.yb1{bottom:497.770350px;}
.y136{bottom:500.121900px;}
.y176{bottom:500.263500px;}
.yce{bottom:505.112100px;}
.y18{bottom:507.409200px;}
.y6b{bottom:512.753400px;}
.y135{bottom:515.121900px;}
.y175{bottom:515.263500px;}
.y10e{bottom:515.635350px;}
.yb0{bottom:515.770350px;}
.ycd{bottom:523.112100px;}
.y17{bottom:525.409200px;}
.y6a{bottom:529.001400px;}
.y134{bottom:530.121900px;}
.y174{bottom:530.263500px;}
.y10d{bottom:533.635350px;}
.y8d{bottom:533.770350px;}
.y16{bottom:543.409200px;}
.y133{bottom:545.121900px;}
.y69{bottom:545.249400px;}
.y1b4{bottom:545.263500px;}
.y173{bottom:545.265900px;}
.y10c{bottom:551.635350px;}
.y8c{bottom:551.770350px;}
.ycc{bottom:557.952750px;}
.y132{bottom:560.121900px;}
.y1b3{bottom:560.263500px;}
.y172{bottom:560.265900px;}
.y15{bottom:561.409200px;}
.y68{bottom:561.497400px;}
.y45{bottom:569.635350px;}
.y4f{bottom:569.770350px;}
.ycb{bottom:573.558750px;}
.y131{bottom:575.121900px;}
.y1b2{bottom:575.263500px;}
.y171{bottom:575.265900px;}
.y67{bottom:577.745400px;}
.y14{bottom:579.409200px;}
.y44{bottom:587.635350px;}
.y4e{bottom:587.770350px;}
.yca{bottom:587.920350px;}
.y130{bottom:590.121900px;}
.y1b1{bottom:590.263500px;}
.y170{bottom:590.265900px;}
.y66{bottom:593.993400px;}
.y13{bottom:597.409200px;}
.y12f{bottom:605.121900px;}
.y10b{bottom:605.230350px;}
.y1b0{bottom:605.263500px;}
.y16f{bottom:605.265900px;}
.yc9{bottom:605.515350px;}
.y43{bottom:605.635350px;}
.y4d{bottom:605.770350px;}
.y65{bottom:610.241400px;}
.y12{bottom:615.409200px;}
.y12e{bottom:620.121900px;}
.y1af{bottom:620.263500px;}
.y16e{bottom:620.265900px;}
.y42{bottom:623.635350px;}
.y8b{bottom:623.770350px;}
.y64{bottom:626.489400px;}
.y11{bottom:633.409200px;}
.y12d{bottom:635.121900px;}
.y1ae{bottom:635.263500px;}
.y16d{bottom:635.265900px;}
.y4c{bottom:641.365350px;}
.y41{bottom:641.635350px;}
.y8a{bottom:641.770350px;}
.y63{bottom:642.737400px;}
.y12c{bottom:650.121900px;}
.y1ad{bottom:650.263500px;}
.y16c{bottom:650.265900px;}
.y10{bottom:651.409200px;}
.y40{bottom:659.635350px;}
.y89{bottom:659.770350px;}
.y12b{bottom:665.121900px;}
.y1ac{bottom:665.263500px;}
.y16b{bottom:665.265900px;}
.yf{bottom:669.409200px;}
.y62{bottom:671.741400px;}
.y4b{bottom:677.230350px;}
.y3f{bottom:677.635350px;}
.y88{bottom:677.770350px;}
.y12a{bottom:680.121900px;}
.y1ab{bottom:680.263500px;}
.y16a{bottom:680.265900px;}
.ye{bottom:687.409200px;}
.y61{bottom:688.241400px;}
.y1aa{bottom:695.263500px;}
.y169{bottom:695.265900px;}
.y3e{bottom:695.635350px;}
.y87{bottom:695.770350px;}
.y1a9{bottom:710.263500px;}
.y168{bottom:710.265900px;}
.y129{bottom:713.230350px;}
.y3d{bottom:713.635350px;}
.y86{bottom:713.770350px;}
.y60{bottom:720.638850px;}
.y1a8{bottom:725.263500px;}
.y167{bottom:725.265900px;}
.y3c{bottom:731.635350px;}
.y4a{bottom:731.770350px;}
.yd{bottom:732.567300px;}
.y5f{bottom:740.138850px;}
.y1a7{bottom:740.263500px;}
.y166{bottom:740.265900px;}
.yc{bottom:745.018050px;}
.y49{bottom:749.770350px;}
.y1a6{bottom:755.263500px;}
.y165{bottom:755.265900px;}
.y3b{bottom:767.230350px;}
.y48{bottom:767.770350px;}
.y1a5{bottom:770.263500px;}
.y164{bottom:770.265900px;}
.yb{bottom:776.733600px;}
.y1a4{bottom:785.263500px;}
.y163{bottom:785.265900px;}
.y128{bottom:785.365350px;}
.y47{bottom:785.770350px;}
.y5e{bottom:793.253850px;}
.ya{bottom:795.658950px;}
.y1a3{bottom:800.263500px;}
.y162{bottom:800.265900px;}
.y9{bottom:803.733600px;}
.y46{bottom:803.770350px;}
.y5d{bottom:811.253850px;}
.y1a2{bottom:815.263500px;}
.y161{bottom:815.265900px;}
.y127{bottom:821.365350px;}
.y3a{bottom:821.770350px;}
.y8{bottom:822.658950px;}
.y5c{bottom:829.253850px;}
.y1a1{bottom:830.263500px;}
.y160{bottom:830.265900px;}
.y39{bottom:839.770350px;}
.y1a0{bottom:845.263500px;}
.y15f{bottom:845.265900px;}
.y5b{bottom:847.253850px;}
.y7{bottom:851.380950px;}
.y38{bottom:857.770350px;}
.y19f{bottom:860.263500px;}
.y15e{bottom:860.265900px;}
.y19e{bottom:875.263500px;}
.y15d{bottom:875.265900px;}
.y37{bottom:875.770350px;}
.y10a{bottom:875.785350px;}
.y5a{bottom:882.094500px;}
.y19d{bottom:890.263500px;}
.y15c{bottom:890.265900px;}
.y126{bottom:893.365350px;}
.y36{bottom:893.770350px;}
.y109{bottom:893.785350px;}
.y6{bottom:897.575250px;}
.y59{bottom:897.700500px;}
.y19c{bottom:905.263500px;}
.y15b{bottom:905.265900px;}
.y35{bottom:911.770350px;}
.y108{bottom:911.785350px;}
.y58{bottom:912.055350px;}
.y19b{bottom:920.263500px;}
.y15a{bottom:920.265900px;}
.y57{bottom:929.650350px;}
.y34{bottom:929.770350px;}
.y107{bottom:929.785350px;}
.y5{bottom:934.036050px;}
.y19a{bottom:935.263500px;}
.y159{bottom:935.265900px;}
.y125{bottom:947.365350px;}
.y33{bottom:947.770350px;}
.y106{bottom:947.785350px;}
.y199{bottom:950.263500px;}
.y158{bottom:950.265900px;}
.y198{bottom:965.263500px;}
.y157{bottom:965.265900px;}
.y56{bottom:965.500350px;}
.y32{bottom:965.770350px;}
.y105{bottom:965.785350px;}
.y4{bottom:970.496850px;}
.y197{bottom:980.263500px;}
.y156{bottom:980.265900px;}
.y55{bottom:983.500350px;}
.y31{bottom:983.770350px;}
.y104{bottom:983.785350px;}
.y196{bottom:995.263500px;}
.y155{bottom:995.265900px;}
.y54{bottom:1001.500350px;}
.y30{bottom:1001.770350px;}
.y103{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y195{bottom:1010.263500px;}
.y154{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y102{bottom:1019.785350px;}
.y194{bottom:1025.263500px;}
.y153{bottom:1025.265900px;}
.y53{bottom:1037.365350px;}
.y2e{bottom:1037.770350px;}
.y101{bottom:1037.785350px;}
.y193{bottom:1040.263500px;}
.y152{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.yab{bottom:1132.418700px;}
.y52{bottom:1132.423350px;}
.y192{bottom:1132.423500px;}
.yaf{bottom:1132.425150px;}
.ye9{bottom:1132.428750px;}
.y85{bottom:1132.458150px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h15{height:27.079102px;}
.h16{height:27.098145px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.h17{height:33.328125px;}
.h12{height:33.351562px;}
.h11{height:34.945312px;}
.h10{height:34.992188px;}
.h13{height:37.520508px;}
.he{height:41.660156px;}
.hd{height:41.689453px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.717434px;}
.h9{height:43.740234px;}
.h14{height:44.100000px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:61.655400px;}
.x2a{left:63.788250px;}
.xc{left:76.535400px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1e{left:99.921300px;}
.x6b{left:102.047400px;}
.x4{left:106.299150px;}
.xd{left:110.548200px;}
.x6c{left:123.307350px;}
.x3{left:125.427900px;}
.x23{left:128.976750px;}
.x52{left:130.254000px;}
.x7{left:131.811000px;}
.x2b{left:136.425750px;}
.xe{left:144.718200px;}
.x63{left:150.538350px;}
.x25{left:183.801000px;}
.x5{left:191.338650px;}
.x24{left:193.005000px;}
.x6a{left:194.270400px;}
.x4b{left:195.510750px;}
.x53{left:198.338250px;}
.x2c{left:201.663000px;}
.x20{left:206.217300px;}
.x6{left:212.876400px;}
.x3d{left:229.782000px;}
.x4c{left:232.005000px;}
.x26{left:233.233500px;}
.x5b{left:243.007350px;}
.x3c{left:246.249750px;}
.x4d{left:289.091250px;}
.x5e{left:291.533100px;}
.x2e{left:296.472000px;}
.x27{left:299.445750px;}
.x2d{left:305.812500px;}
.x28{left:349.278000px;}
.x54{left:350.721000px;}
.x60{left:353.153100px;}
.x30{left:358.121250px;}
.x3f{left:362.967000px;}
.x2f{left:365.024250px;}
.x3e{left:367.432500px;}
.x56{left:412.341000px;}
.x64{left:414.782850px;}
.x32{left:419.770500px;}
.x41{left:424.616250px;}
.x4e{left:429.052500px;}
.x40{left:431.519250px;}
.x31{left:432.767250px;}
.xb{left:455.041500px;}
.xf{left:457.078200px;}
.x5f{left:471.917850px;}
.x59{left:474.404100px;}
.x1d{left:478.342200px;}
.x8{left:480.471000px;}
.x33{left:481.731750px;}
.x42{left:484.140000px;}
.x16{left:488.575350px;}
.x10{left:491.098200px;}
.x1a{left:497.682300px;}
.x15{left:500.650350px;}
.x6d{left:503.875350px;}
.x17{left:510.685350px;}
.x1c{left:512.362200px;}
.x9{left:514.521000px;}
.x1f{left:520.893300px;}
.x66{left:525.805350px;}
.x5c{left:531.480600px;}
.x44{left:538.788750px;}
.x18{left:542.095350px;}
.x35{left:543.693000px;}
.x57{left:545.613750px;}
.x43{left:548.129250px;}
.x55{left:552.097500px;}
.x34{left:554.252250px;}
.x67{left:579.426600px;}
.x11{left:591.643200px;}
.x58{left:596.733000px;}
.x4f{left:598.819500px;}
.x19{left:600.310350px;}
.x61{left:601.397850px;}
.x1b{left:603.103800px;}
.x14{left:604.315350px;}
.x36{left:607.399500px;}
.x62{left:637.716600px;}
.x38{left:645.112500px;}
.x46{left:649.958250px;}
.x45{left:654.423750px;}
.x37{left:658.109250px;}
.x5d{left:660.521850px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x5a{left:700.389600px;}
.x3a{left:702.822750px;}
.x48{left:705.231000px;}
.x65{left:706.366350px;}
.x50{left:709.677000px;}
.x47{left:712.134000px;}
.x39{left:713.382000px;}
.x68{left:721.717650px;}
.x12{left:728.387400px;}
.x69{left:743.868150px;}
.x21{left:749.649900px;}
.x3b{left:760.221000px;}
.x4a{left:762.629250px;}
.x51{left:767.075250px;}
.x49{left:769.532250px;}
.x29{left:772.564500px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls5f{letter-spacing:-6.986667pt;}
.ls12{letter-spacing:-6.880000pt;}
.ls60{letter-spacing:-6.666667pt;}
.ls58{letter-spacing:-6.293333pt;}
.ls4c{letter-spacing:-6.133333pt;}
.ls4b{letter-spacing:-5.706667pt;}
.ls30{letter-spacing:-5.504000pt;}
.ls3b{letter-spacing:-4.472000pt;}
.ls59{letter-spacing:-4.426667pt;}
.ls3a{letter-spacing:-4.160000pt;}
.ls90{letter-spacing:-2.346667pt;}
.ls3c{letter-spacing:-1.282667pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls5b{letter-spacing:-0.320000pt;}
.ls5a{letter-spacing:-0.213333pt;}
.ls52{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls7e{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls7c{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.ls0{letter-spacing:0.004512pt;}
.ls4d{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.061867pt;}
.ls64{letter-spacing:0.085333pt;}
.ls34{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.160000pt;}
.ls87{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.213333pt;}
.ls65{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.266667pt;}
.ls73{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls68{letter-spacing:0.341333pt;}
.ls38{letter-spacing:0.373333pt;}
.ls71{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls63{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.533333pt;}
.ls7a{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls7f{letter-spacing:0.597333pt;}
.ls23{letter-spacing:0.640000pt;}
.ls6d{letter-spacing:0.682667pt;}
.ls24{letter-spacing:0.693333pt;}
.ls62{letter-spacing:0.725333pt;}
.ls7{letter-spacing:0.746667pt;}
.ls8b{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls80{letter-spacing:0.810667pt;}
.ls4{letter-spacing:0.853333pt;}
.ls7b{letter-spacing:0.896000pt;}
.ls31{letter-spacing:0.906667pt;}
.ls84{letter-spacing:0.938667pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls75{letter-spacing:0.981333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls6e{letter-spacing:1.024000pt;}
.ls9{letter-spacing:1.066667pt;}
.ls67{letter-spacing:1.109333pt;}
.ls17{letter-spacing:1.120000pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls81{letter-spacing:1.194667pt;}
.lsb{letter-spacing:1.226667pt;}
.ls79{letter-spacing:1.237333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.322667pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls88{letter-spacing:1.365333pt;}
.ls21{letter-spacing:1.386667pt;}
.ls8d{letter-spacing:1.408000pt;}
.ls36{letter-spacing:1.440000pt;}
.ls69{letter-spacing:1.450667pt;}
.ls37{letter-spacing:1.493333pt;}
.ls70{letter-spacing:1.536000pt;}
.ls29{letter-spacing:1.546667pt;}
.ls89{letter-spacing:1.578667pt;}
.ls19{letter-spacing:1.600000pt;}
.ls5{letter-spacing:1.653333pt;}
.ls6a{letter-spacing:1.664000pt;}
.lsa{letter-spacing:1.706667pt;}
.ls2e{letter-spacing:1.760000pt;}
.ls76{letter-spacing:1.792000pt;}
.ls39{letter-spacing:1.813333pt;}
.ls77{letter-spacing:1.834667pt;}
.ls20{letter-spacing:1.866667pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:1.973333pt;}
.ls6b{letter-spacing:2.005333pt;}
.ls3e{letter-spacing:2.026667pt;}
.ls8a{letter-spacing:2.048000pt;}
.ls28{letter-spacing:2.133333pt;}
.ls27{letter-spacing:2.186667pt;}
.lsf{letter-spacing:2.240000pt;}
.ls6f{letter-spacing:2.261333pt;}
.ls1f{letter-spacing:2.293333pt;}
.ls2c{letter-spacing:2.346667pt;}
.ls4a{letter-spacing:2.400000pt;}
.ls44{letter-spacing:2.453333pt;}
.ls4f{letter-spacing:2.506667pt;}
.ls5c{letter-spacing:2.560000pt;}
.ls7d{letter-spacing:2.602667pt;}
.ls40{letter-spacing:2.613333pt;}
.ls41{letter-spacing:2.666667pt;}
.ls72{letter-spacing:2.688000pt;}
.ls33{letter-spacing:2.720000pt;}
.ls47{letter-spacing:2.773333pt;}
.ls49{letter-spacing:2.826667pt;}
.ls55{letter-spacing:2.880000pt;}
.ls54{letter-spacing:2.933333pt;}
.ls85{letter-spacing:2.944000pt;}
.ls82{letter-spacing:2.986667pt;}
.ls8e{letter-spacing:3.029333pt;}
.ls1a{letter-spacing:3.040000pt;}
.ls5d{letter-spacing:3.146667pt;}
.ls48{letter-spacing:3.200000pt;}
.ls43{letter-spacing:3.253333pt;}
.ls83{letter-spacing:3.285333pt;}
.ls35{letter-spacing:3.306667pt;}
.ls4e{letter-spacing:3.360000pt;}
.ls86{letter-spacing:3.370667pt;}
.ls51{letter-spacing:3.520000pt;}
.lsd{letter-spacing:3.573333pt;}
.ls2a{letter-spacing:3.680000pt;}
.lsc{letter-spacing:3.733333pt;}
.ls14{letter-spacing:3.786667pt;}
.ls8f{letter-spacing:3.797333pt;}
.ls78{letter-spacing:3.882667pt;}
.ls5e{letter-spacing:3.946667pt;}
.ls46{letter-spacing:4.213333pt;}
.ls6c{letter-spacing:4.480000pt;}
.ls53{letter-spacing:4.586667pt;}
.ls42{letter-spacing:4.640000pt;}
.ls8c{letter-spacing:4.778667pt;}
.ls32{letter-spacing:4.800000pt;}
.ls56{letter-spacing:5.013333pt;}
.ls45{letter-spacing:5.066667pt;}
.ls50{letter-spacing:5.706667pt;}
.ls61{letter-spacing:6.773333pt;}
.ls57{letter-spacing:7.573333pt;}
.ls2f{letter-spacing:344.194133pt;}
.ws38{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws63{word-spacing:-19.040000pt;}
.ws72{word-spacing:-17.920000pt;}
.ws4d{word-spacing:-17.546667pt;}
.ws5{word-spacing:-17.066667pt;}
.ws8c{word-spacing:-17.013333pt;}
.ws8a{word-spacing:-16.480000pt;}
.ws18{word-spacing:-16.373333pt;}
.ws73{word-spacing:-16.266667pt;}
.ws86{word-spacing:-16.213333pt;}
.ws4e{word-spacing:-16.106667pt;}
.ws8e{word-spacing:-15.946667pt;}
.ws88{word-spacing:-15.893333pt;}
.ws19{word-spacing:-15.626667pt;}
.ws6{word-spacing:-15.573333pt;}
.ws4b{word-spacing:-15.466667pt;}
.ws8b{word-spacing:-15.040000pt;}
.ws4c{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws78{word-spacing:-14.720000pt;}
.ws74{word-spacing:-14.666667pt;}
.ws16{word-spacing:-14.613333pt;}
.ws89{word-spacing:-14.506667pt;}
.ws4a{word-spacing:-14.400000pt;}
.ws17{word-spacing:-14.346667pt;}
.ws87{word-spacing:-14.293333pt;}
.ws1a{word-spacing:-14.133333pt;}
.ws85{word-spacing:-14.080000pt;}
.ws71{word-spacing:-13.973333pt;}
.ws77{word-spacing:-13.920000pt;}
.ws70{word-spacing:-13.760000pt;}
.ws8f{word-spacing:-13.706667pt;}
.ws75{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.546667pt;}
.ws8d{word-spacing:-13.386667pt;}
.wsa4{word-spacing:-13.354667pt;}
.ws4{word-spacing:-13.333333pt;}
.wsa1{word-spacing:-12.928000pt;}
.wsbd{word-spacing:-12.330667pt;}
.wsa2{word-spacing:-12.202667pt;}
.ws29{word-spacing:-12.000000pt;}
.wsa6{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.861333pt;}
.wsbe{word-spacing:-11.434667pt;}
.wsa7{word-spacing:-11.264000pt;}
.ws7{word-spacing:-11.120000pt;}
.wsa5{word-spacing:-10.965333pt;}
.wsa3{word-spacing:-10.922667pt;}
.ws9f{word-spacing:-10.880000pt;}
.wsa0{word-spacing:-10.709333pt;}
.ws1c{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws3a{word-spacing:-8.666667pt;}
.wsbc{word-spacing:-8.320000pt;}
.ws3{word-spacing:-7.946667pt;}
.ws76{word-spacing:-6.453333pt;}
.ws5c{word-spacing:-5.066667pt;}
.ws64{word-spacing:-4.640000pt;}
.ws5d{word-spacing:-4.213333pt;}
.wsc3{word-spacing:-3.285333pt;}
.ws9b{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.565333pt;}
.wsa9{word-spacing:-2.400000pt;}
.ws32{word-spacing:-2.346667pt;}
.ws3d{word-spacing:-2.240000pt;}
.ws65{word-spacing:-2.186667pt;}
.ws9c{word-spacing:-2.026667pt;}
.ws23{word-spacing:-1.973333pt;}
.wsba{word-spacing:-1.834667pt;}
.ws96{word-spacing:-1.760000pt;}
.wsca{word-spacing:-1.664000pt;}
.ws3e{word-spacing:-1.653333pt;}
.ws36{word-spacing:-1.578667pt;}
.ws30{word-spacing:-1.546667pt;}
.wsb4{word-spacing:-1.536000pt;}
.wsbb{word-spacing:-1.237333pt;}
.ws99{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.120000pt;}
.wsb9{word-spacing:-1.066667pt;}
.wsb5{word-spacing:-1.024000pt;}
.ws57{word-spacing:-0.960000pt;}
.wsc4{word-spacing:-0.938667pt;}
.ws37{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.746667pt;}
.ws79{word-spacing:-0.640000pt;}
.ws67{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.480000pt;}
.wsb3{word-spacing:-0.426667pt;}
.ws5e{word-spacing:-0.373333pt;}
.ws31{word-spacing:-0.320000pt;}
.wsb8{word-spacing:-0.298667pt;}
.ws1d{word-spacing:-0.213333pt;}
.ws59{word-spacing:-0.160000pt;}
.wsad{word-spacing:-0.128000pt;}
.ws83{word-spacing:-0.106667pt;}
.ws12{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.042667pt;}
.ws14{word-spacing:0.053333pt;}
.ws9d{word-spacing:0.106667pt;}
.ws7d{word-spacing:0.160000pt;}
.ws26{word-spacing:0.213333pt;}
.ws62{word-spacing:0.256000pt;}
.wsaf{word-spacing:0.298667pt;}
.ws55{word-spacing:0.320000pt;}
.ws51{word-spacing:0.426667pt;}
.ws28{word-spacing:0.554667pt;}
.ws6c{word-spacing:0.693333pt;}
.ws41{word-spacing:0.746667pt;}
.wsc7{word-spacing:0.768000pt;}
.ws40{word-spacing:0.800000pt;}
.wsae{word-spacing:0.810667pt;}
.ws45{word-spacing:0.853333pt;}
.ws44{word-spacing:0.960000pt;}
.wse{word-spacing:1.013333pt;}
.ws22{word-spacing:1.066667pt;}
.ws47{word-spacing:1.152000pt;}
.ws3f{word-spacing:1.173333pt;}
.ws53{word-spacing:1.280000pt;}
.ws43{word-spacing:1.282667pt;}
.ws4f{word-spacing:1.333333pt;}
.ws52{word-spacing:1.386667pt;}
.wsc0{word-spacing:1.450667pt;}
.ws93{word-spacing:1.493333pt;}
.wscd{word-spacing:1.536000pt;}
.ws54{word-spacing:1.546667pt;}
.wsd{word-spacing:1.600000pt;}
.ws7e{word-spacing:1.653333pt;}
.ws49{word-spacing:1.664000pt;}
.ws50{word-spacing:1.706667pt;}
.ws80{word-spacing:1.760000pt;}
.ws66{word-spacing:1.813333pt;}
.ws95{word-spacing:1.866667pt;}
.wscc{word-spacing:1.877333pt;}
.ws1e{word-spacing:1.920000pt;}
.ws68{word-spacing:1.973333pt;}
.wsab{word-spacing:2.005333pt;}
.wsb{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.080000pt;}
.ws6f{word-spacing:2.133333pt;}
.wsac{word-spacing:2.176000pt;}
.wsb1{word-spacing:2.304000pt;}
.wsb2{word-spacing:2.346667pt;}
.wsc1{word-spacing:2.389333pt;}
.ws9a{word-spacing:2.400000pt;}
.wsb0{word-spacing:2.432000pt;}
.ws56{word-spacing:2.453333pt;}
.wsc9{word-spacing:2.474667pt;}
.ws6a{word-spacing:2.506667pt;}
.wsbf{word-spacing:2.517333pt;}
.ws90{word-spacing:2.560000pt;}
.ws81{word-spacing:2.613333pt;}
.ws69{word-spacing:2.666667pt;}
.ws82{word-spacing:2.720000pt;}
.wsb6{word-spacing:2.730667pt;}
.ws5f{word-spacing:2.773333pt;}
.ws6e{word-spacing:2.826667pt;}
.wsc5{word-spacing:2.858667pt;}
.ws6b{word-spacing:2.880000pt;}
.wsc2{word-spacing:2.901333pt;}
.wsc6{word-spacing:2.944000pt;}
.wsc8{word-spacing:3.029333pt;}
.ws20{word-spacing:3.040000pt;}
.ws6d{word-spacing:3.093333pt;}
.ws48{word-spacing:3.114667pt;}
.ws2f{word-spacing:3.146667pt;}
.wscb{word-spacing:3.157333pt;}
.ws25{word-spacing:3.200000pt;}
.wsb7{word-spacing:3.242667pt;}
.ws27{word-spacing:3.253333pt;}
.wsf{word-spacing:3.306667pt;}
.ws13{word-spacing:3.360000pt;}
.ws24{word-spacing:3.466667pt;}
.ws46{word-spacing:3.498667pt;}
.ws84{word-spacing:3.520000pt;}
.ws60{word-spacing:3.541333pt;}
.ws61{word-spacing:3.584000pt;}
.ws7a{word-spacing:3.680000pt;}
.ws7b{word-spacing:3.786667pt;}
.ws21{word-spacing:3.840000pt;}
.ws7c{word-spacing:4.000000pt;}
.ws98{word-spacing:4.053333pt;}
.ws91{word-spacing:4.106667pt;}
.ws34{word-spacing:4.160000pt;}
.ws33{word-spacing:4.320000pt;}
.wsc{word-spacing:4.373333pt;}
.ws11{word-spacing:4.426667pt;}
.ws42{word-spacing:4.472000pt;}
.ws9e{word-spacing:4.853333pt;}
.wsa8{word-spacing:4.906667pt;}
.ws35{word-spacing:5.504000pt;}
.ws58{word-spacing:5.706667pt;}
.ws5b{word-spacing:6.133333pt;}
.ws7f{word-spacing:6.293333pt;}
.ws97{word-spacing:6.666667pt;}
.ws92{word-spacing:6.880000pt;}
.ws94{word-spacing:6.986667pt;}
.ws3b{word-spacing:123.968000pt;}
.ws3c{word-spacing:132.634667pt;}
.ws2b{word-spacing:151.850667pt;}
.ws2a{word-spacing:155.392000pt;}
.ws2c{word-spacing:157.781333pt;}
.ws2d{word-spacing:170.794667pt;}
.ws39{word-spacing:1120.149333pt;}
.ws2e{word-spacing:1120.597333pt;}
._b{margin-left:-2576.085333pt;}
._39{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._3{margin-left:-6.752000pt;}
._4b{margin-left:-5.706667pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.288000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.900267pt;}
._6{width:0.985600pt;}
._a{width:2.752000pt;}
._9{width:4.266667pt;}
._8{width:5.200000pt;}
._7{width:6.880000pt;}
._4a{width:8.480000pt;}
._49{width:9.440000pt;}
._40{width:20.794667pt;}
._3f{width:32.408000pt;}
._3b{width:40.034667pt;}
._e{width:42.197333pt;}
._14{width:51.370667pt;}
._38{width:65.066667pt;}
._3e{width:76.261333pt;}
._3c{width:80.629333pt;}
._3a{width:87.042667pt;}
._42{width:88.741333pt;}
._3d{width:109.541333pt;}
._f{width:115.712000pt;}
._41{width:116.648000pt;}
._16{width:118.576000pt;}
._46{width:120.496000pt;}
._22{width:121.984000pt;}
._43{width:135.888000pt;}
._47{width:139.285333pt;}
._45{width:146.458667pt;}
._2b{width:160.128000pt;}
._2e{width:162.517333pt;}
._48{width:164.077333pt;}
._19{width:166.058667pt;}
._10{width:166.997333pt;}
._36{width:168.448000pt;}
._33{width:171.733333pt;}
._32{width:176.725333pt;}
._37{width:178.858667pt;}
._29{width:190.677333pt;}
._11{width:191.621333pt;}
._44{width:193.677333pt;}
._30{width:214.400000pt;}
._15{width:215.301333pt;}
._2f{width:240.512000pt;}
._c{width:247.594667pt;}
._1a{width:255.578667pt;}
._2c{width:261.802667pt;}
._27{width:280.192000pt;}
._1b{width:286.765333pt;}
._28{width:295.466667pt;}
._1c{width:332.424000pt;}
._23{width:338.861333pt;}
._12{width:344.192000pt;}
._2a{width:353.536000pt;}
._2d{width:355.882667pt;}
._18{width:359.466667pt;}
._13{width:360.661333pt;}
._35{width:361.813333pt;}
._31{width:370.133333pt;}
._25{width:374.360000pt;}
._1f{width:378.283733pt;}
._24{width:383.874667pt;}
._20{width:385.366400pt;}
._17{width:402.861333pt;}
._1d{width:417.560000pt;}
._1e{width:451.713067pt;}
._34{width:468.181333pt;}
._26{width:513.753067pt;}
._21{width:591.530667pt;}
._d{width:617.045333pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.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;}
.y2d{bottom:42.468667pt;}
.y124{bottom:74.342533pt;}
.yae{bottom:74.365467pt;}
.yc8{bottom:74.462533pt;}
.y100{bottom:74.595867pt;}
.ye8{bottom:74.838000pt;}
.y51{bottom:75.131867pt;}
.y2a{bottom:78.246000pt;}
.ye5{bottom:80.988533pt;}
.yaa{bottom:81.544667pt;}
.y84{bottom:83.290800pt;}
.y151{bottom:84.552800pt;}
.y191{bottom:84.678667pt;}
.yad{bottom:88.360133pt;}
.ye7{bottom:88.832667pt;}
.y50{bottom:89.126533pt;}
.y123{bottom:89.982533pt;}
.yc7{bottom:90.462533pt;}
.yff{bottom:90.595867pt;}
.y29{bottom:91.576000pt;}
.ya9{bottom:91.944667pt;}
.ye4{bottom:96.988533pt;}
.y150{bottom:97.886133pt;}
.y190{bottom:98.012000pt;}
.yac{bottom:102.354800pt;}
.ye6{bottom:102.827333pt;}
.ya8{bottom:104.390000pt;}
.yc6{bottom:106.462533pt;}
.yfe{bottom:106.595867pt;}
.y83{bottom:109.072133pt;}
.y14f{bottom:111.219467pt;}
.y18f{bottom:111.345333pt;}
.ye3{bottom:112.988533pt;}
.ya7{bottom:114.790000pt;}
.y122{bottom:122.342533pt;}
.yc5{bottom:122.462533pt;}
.yfd{bottom:122.595867pt;}
.y82{bottom:123.514800pt;}
.y14e{bottom:124.552800pt;}
.y18e{bottom:124.678667pt;}
.ya6{bottom:127.235333pt;}
.ye2{bottom:128.988533pt;}
.ya5{bottom:137.635333pt;}
.y14d{bottom:137.886133pt;}
.y81{bottom:137.957467pt;}
.y18d{bottom:138.012000pt;}
.y121{bottom:138.342533pt;}
.yc4{bottom:138.462533pt;}
.yfc{bottom:138.595867pt;}
.ye1{bottom:144.988533pt;}
.ya4{bottom:150.080667pt;}
.y26{bottom:150.116133pt;}
.y14c{bottom:151.219467pt;}
.y18c{bottom:151.345333pt;}
.y80{bottom:152.400133pt;}
.y120{bottom:154.342533pt;}
.yc3{bottom:154.462533pt;}
.yfb{bottom:154.595867pt;}
.ya3{bottom:160.480667pt;}
.ye0{bottom:160.988533pt;}
.y14b{bottom:164.552800pt;}
.y18b{bottom:164.678667pt;}
.y25{bottom:166.116133pt;}
.y7f{bottom:166.842800pt;}
.y11f{bottom:170.342533pt;}
.yc2{bottom:170.462533pt;}
.yfa{bottom:170.595867pt;}
.ya2{bottom:172.926000pt;}
.ydf{bottom:176.988533pt;}
.y14a{bottom:177.886133pt;}
.y18a{bottom:178.012000pt;}
.y7e{bottom:181.285467pt;}
.y24{bottom:182.116133pt;}
.ya1{bottom:183.326000pt;}
.y11e{bottom:186.342533pt;}
.yc1{bottom:186.462533pt;}
.yf9{bottom:186.595867pt;}
.y149{bottom:191.219467pt;}
.y189{bottom:191.345333pt;}
.yde{bottom:192.988533pt;}
.y7d{bottom:195.728133pt;}
.ya0{bottom:195.771333pt;}
.y9e{bottom:195.781733pt;}
.y23{bottom:198.116133pt;}
.y11d{bottom:202.342533pt;}
.yc0{bottom:202.462533pt;}
.yf8{bottom:202.595867pt;}
.y148{bottom:204.552800pt;}
.y188{bottom:204.678667pt;}
.y9f{bottom:206.171333pt;}
.y9d{bottom:206.181733pt;}
.ydd{bottom:208.988533pt;}
.y7c{bottom:210.170800pt;}
.y22{bottom:214.116133pt;}
.y147{bottom:217.886133pt;}
.y187{bottom:218.012000pt;}
.yec{bottom:218.102533pt;}
.y11c{bottom:218.342533pt;}
.ybf{bottom:218.462533pt;}
.yf7{bottom:218.595867pt;}
.y9c{bottom:218.627067pt;}
.y7b{bottom:224.613467pt;}
.ydc{bottom:224.988533pt;}
.y9b{bottom:229.027067pt;}
.y21{bottom:230.116133pt;}
.y146{bottom:231.219467pt;}
.y186{bottom:231.345333pt;}
.yeb{bottom:234.102533pt;}
.y11b{bottom:234.342533pt;}
.ybe{bottom:234.462533pt;}
.yf6{bottom:234.595867pt;}
.y7a{bottom:239.140800pt;}
.ydb{bottom:240.988533pt;}
.y9a{bottom:241.472400pt;}
.y145{bottom:244.552800pt;}
.y185{bottom:244.678667pt;}
.y20{bottom:246.116133pt;}
.y11a{bottom:250.342533pt;}
.ybd{bottom:250.462533pt;}
.yf5{bottom:250.595867pt;}
.y99{bottom:251.872400pt;}
.y79{bottom:253.583467pt;}
.yda{bottom:256.988533pt;}
.y144{bottom:257.886133pt;}
.y184{bottom:258.012000pt;}
.y1f{bottom:262.116133pt;}
.y98{bottom:264.317733pt;}
.yea{bottom:265.982533pt;}
.y119{bottom:266.342533pt;}
.ybc{bottom:266.462533pt;}
.yf4{bottom:266.595867pt;}
.y78{bottom:268.026133pt;}
.y143{bottom:271.219467pt;}
.y183{bottom:271.345333pt;}
.yd9{bottom:272.988533pt;}
.y97{bottom:274.717733pt;}
.y1e{bottom:278.116133pt;}
.y118{bottom:282.342533pt;}
.ybb{bottom:282.462533pt;}
.y77{bottom:282.468800pt;}
.yf3{bottom:282.595867pt;}
.y142{bottom:284.552800pt;}
.y182{bottom:284.678667pt;}
.y96{bottom:287.163067pt;}
.yd8{bottom:288.988533pt;}
.y1d{bottom:294.116133pt;}
.y76{bottom:296.911467pt;}
.y95{bottom:297.563067pt;}
.y141{bottom:297.886133pt;}
.y181{bottom:298.012000pt;}
.y117{bottom:298.342533pt;}
.yba{bottom:298.462533pt;}
.yf2{bottom:298.595867pt;}
.yd7{bottom:304.988533pt;}
.y1c{bottom:310.116133pt;}
.y140{bottom:311.219467pt;}
.y180{bottom:311.345333pt;}
.y75{bottom:311.354133pt;}
.y116{bottom:314.342533pt;}
.yb9{bottom:314.462533pt;}
.yf1{bottom:314.595867pt;}
.yd6{bottom:320.988533pt;}
.y94{bottom:321.344400pt;}
.y13f{bottom:324.552800pt;}
.y17f{bottom:324.678667pt;}
.y74{bottom:325.796800pt;}
.y28{bottom:326.116133pt;}
.y115{bottom:330.342533pt;}
.yb8{bottom:330.462533pt;}
.yf0{bottom:330.595867pt;}
.y93{bottom:331.744400pt;}
.yd5{bottom:336.988533pt;}
.y13e{bottom:337.886133pt;}
.y17e{bottom:338.012000pt;}
.y73{bottom:340.239467pt;}
.y1b{bottom:341.758000pt;}
.y27{bottom:342.116133pt;}
.y92{bottom:342.144400pt;}
.y114{bottom:346.342533pt;}
.yb7{bottom:346.462533pt;}
.yef{bottom:346.595867pt;}
.y13d{bottom:351.219467pt;}
.y17d{bottom:351.345333pt;}
.yd4{bottom:352.988533pt;}
.y72{bottom:354.682133pt;}
.y113{bottom:361.982533pt;}
.yb6{bottom:362.462533pt;}
.y13c{bottom:364.552800pt;}
.y17c{bottom:364.678667pt;}
.y91{bottom:365.925733pt;}
.yd3{bottom:368.988533pt;}
.y71{bottom:369.124800pt;}
.y13b{bottom:377.886133pt;}
.y17b{bottom:378.012000pt;}
.yee{bottom:378.235867pt;}
.yb5{bottom:378.462533pt;}
.y70{bottom:383.567467pt;}
.yd2{bottom:384.988533pt;}
.y13a{bottom:391.219467pt;}
.y17a{bottom:391.345333pt;}
.y90{bottom:393.049200pt;}
.yed{bottom:394.235867pt;}
.y112{bottom:394.342533pt;}
.yb4{bottom:394.462533pt;}
.y6f{bottom:398.010133pt;}
.yd1{bottom:400.988533pt;}
.y139{bottom:404.552800pt;}
.y179{bottom:404.678667pt;}
.y111{bottom:410.342533pt;}
.y8f{bottom:410.382533pt;}
.yb3{bottom:410.462533pt;}
.y1a{bottom:410.718667pt;}
.y6e{bottom:412.452800pt;}
.yd0{bottom:416.988533pt;}
.y138{bottom:417.886133pt;}
.y178{bottom:418.012000pt;}
.y110{bottom:426.342533pt;}
.yb2{bottom:426.462533pt;}
.y19{bottom:426.723733pt;}
.y6d{bottom:426.895467pt;}
.y8e{bottom:427.715867pt;}
.y137{bottom:431.219467pt;}
.y177{bottom:431.345333pt;}
.ycf{bottom:432.988533pt;}
.y6c{bottom:441.338133pt;}
.y10f{bottom:442.342533pt;}
.yb1{bottom:442.462533pt;}
.y136{bottom:444.552800pt;}
.y176{bottom:444.678667pt;}
.yce{bottom:448.988533pt;}
.y18{bottom:451.030400pt;}
.y6b{bottom:455.780800pt;}
.y135{bottom:457.886133pt;}
.y175{bottom:458.012000pt;}
.y10e{bottom:458.342533pt;}
.yb0{bottom:458.462533pt;}
.ycd{bottom:464.988533pt;}
.y17{bottom:467.030400pt;}
.y6a{bottom:470.223467pt;}
.y134{bottom:471.219467pt;}
.y174{bottom:471.345333pt;}
.y10d{bottom:474.342533pt;}
.y8d{bottom:474.462533pt;}
.y16{bottom:483.030400pt;}
.y133{bottom:484.552800pt;}
.y69{bottom:484.666133pt;}
.y1b4{bottom:484.678667pt;}
.y173{bottom:484.680800pt;}
.y10c{bottom:490.342533pt;}
.y8c{bottom:490.462533pt;}
.ycc{bottom:495.958000pt;}
.y132{bottom:497.886133pt;}
.y1b3{bottom:498.012000pt;}
.y172{bottom:498.014133pt;}
.y15{bottom:499.030400pt;}
.y68{bottom:499.108800pt;}
.y45{bottom:506.342533pt;}
.y4f{bottom:506.462533pt;}
.ycb{bottom:509.830000pt;}
.y131{bottom:511.219467pt;}
.y1b2{bottom:511.345333pt;}
.y171{bottom:511.347467pt;}
.y67{bottom:513.551467pt;}
.y14{bottom:515.030400pt;}
.y44{bottom:522.342533pt;}
.y4e{bottom:522.462533pt;}
.yca{bottom:522.595867pt;}
.y130{bottom:524.552800pt;}
.y1b1{bottom:524.678667pt;}
.y170{bottom:524.680800pt;}
.y66{bottom:527.994133pt;}
.y13{bottom:531.030400pt;}
.y12f{bottom:537.886133pt;}
.y10b{bottom:537.982533pt;}
.y1b0{bottom:538.012000pt;}
.y16f{bottom:538.014133pt;}
.yc9{bottom:538.235867pt;}
.y43{bottom:538.342533pt;}
.y4d{bottom:538.462533pt;}
.y65{bottom:542.436800pt;}
.y12{bottom:547.030400pt;}
.y12e{bottom:551.219467pt;}
.y1af{bottom:551.345333pt;}
.y16e{bottom:551.347467pt;}
.y42{bottom:554.342533pt;}
.y8b{bottom:554.462533pt;}
.y64{bottom:556.879467pt;}
.y11{bottom:563.030400pt;}
.y12d{bottom:564.552800pt;}
.y1ae{bottom:564.678667pt;}
.y16d{bottom:564.680800pt;}
.y4c{bottom:570.102533pt;}
.y41{bottom:570.342533pt;}
.y8a{bottom:570.462533pt;}
.y63{bottom:571.322133pt;}
.y12c{bottom:577.886133pt;}
.y1ad{bottom:578.012000pt;}
.y16c{bottom:578.014133pt;}
.y10{bottom:579.030400pt;}
.y40{bottom:586.342533pt;}
.y89{bottom:586.462533pt;}
.y12b{bottom:591.219467pt;}
.y1ac{bottom:591.345333pt;}
.y16b{bottom:591.347467pt;}
.yf{bottom:595.030400pt;}
.y62{bottom:597.103467pt;}
.y4b{bottom:601.982533pt;}
.y3f{bottom:602.342533pt;}
.y88{bottom:602.462533pt;}
.y12a{bottom:604.552800pt;}
.y1ab{bottom:604.678667pt;}
.y16a{bottom:604.680800pt;}
.ye{bottom:611.030400pt;}
.y61{bottom:611.770133pt;}
.y1aa{bottom:618.012000pt;}
.y169{bottom:618.014133pt;}
.y3e{bottom:618.342533pt;}
.y87{bottom:618.462533pt;}
.y1a9{bottom:631.345333pt;}
.y168{bottom:631.347467pt;}
.y129{bottom:633.982533pt;}
.y3d{bottom:634.342533pt;}
.y86{bottom:634.462533pt;}
.y60{bottom:640.567867pt;}
.y1a8{bottom:644.678667pt;}
.y167{bottom:644.680800pt;}
.y3c{bottom:650.342533pt;}
.y4a{bottom:650.462533pt;}
.yd{bottom:651.170933pt;}
.y5f{bottom:657.901200pt;}
.y1a7{bottom:658.012000pt;}
.y166{bottom:658.014133pt;}
.yc{bottom:662.238267pt;}
.y49{bottom:666.462533pt;}
.y1a6{bottom:671.345333pt;}
.y165{bottom:671.347467pt;}
.y3b{bottom:681.982533pt;}
.y48{bottom:682.462533pt;}
.y1a5{bottom:684.678667pt;}
.y164{bottom:684.680800pt;}
.yb{bottom:690.429867pt;}
.y1a4{bottom:698.012000pt;}
.y163{bottom:698.014133pt;}
.y128{bottom:698.102533pt;}
.y47{bottom:698.462533pt;}
.y5e{bottom:705.114533pt;}
.ya{bottom:707.252400pt;}
.y1a3{bottom:711.345333pt;}
.y162{bottom:711.347467pt;}
.y9{bottom:714.429867pt;}
.y46{bottom:714.462533pt;}
.y5d{bottom:721.114533pt;}
.y1a2{bottom:724.678667pt;}
.y161{bottom:724.680800pt;}
.y127{bottom:730.102533pt;}
.y3a{bottom:730.462533pt;}
.y8{bottom:731.252400pt;}
.y5c{bottom:737.114533pt;}
.y1a1{bottom:738.012000pt;}
.y160{bottom:738.014133pt;}
.y39{bottom:746.462533pt;}
.y1a0{bottom:751.345333pt;}
.y15f{bottom:751.347467pt;}
.y5b{bottom:753.114533pt;}
.y7{bottom:756.783067pt;}
.y38{bottom:762.462533pt;}
.y19f{bottom:764.678667pt;}
.y15e{bottom:764.680800pt;}
.y19e{bottom:778.012000pt;}
.y15d{bottom:778.014133pt;}
.y37{bottom:778.462533pt;}
.y10a{bottom:778.475867pt;}
.y5a{bottom:784.084000pt;}
.y19d{bottom:791.345333pt;}
.y15c{bottom:791.347467pt;}
.y126{bottom:794.102533pt;}
.y36{bottom:794.462533pt;}
.y109{bottom:794.475867pt;}
.y6{bottom:797.844667pt;}
.y59{bottom:797.956000pt;}
.y19c{bottom:804.678667pt;}
.y15b{bottom:804.680800pt;}
.y35{bottom:810.462533pt;}
.y108{bottom:810.475867pt;}
.y58{bottom:810.715867pt;}
.y19b{bottom:818.012000pt;}
.y15a{bottom:818.014133pt;}
.y57{bottom:826.355867pt;}
.y34{bottom:826.462533pt;}
.y107{bottom:826.475867pt;}
.y5{bottom:830.254267pt;}
.y19a{bottom:831.345333pt;}
.y159{bottom:831.347467pt;}
.y125{bottom:842.102533pt;}
.y33{bottom:842.462533pt;}
.y106{bottom:842.475867pt;}
.y199{bottom:844.678667pt;}
.y158{bottom:844.680800pt;}
.y198{bottom:858.012000pt;}
.y157{bottom:858.014133pt;}
.y56{bottom:858.222533pt;}
.y32{bottom:858.462533pt;}
.y105{bottom:858.475867pt;}
.y4{bottom:862.663867pt;}
.y197{bottom:871.345333pt;}
.y156{bottom:871.347467pt;}
.y55{bottom:874.222533pt;}
.y31{bottom:874.462533pt;}
.y104{bottom:874.475867pt;}
.y196{bottom:884.678667pt;}
.y155{bottom:884.680800pt;}
.y54{bottom:890.222533pt;}
.y30{bottom:890.462533pt;}
.y103{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y195{bottom:898.012000pt;}
.y154{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y102{bottom:906.475867pt;}
.y194{bottom:911.345333pt;}
.y153{bottom:911.347467pt;}
.y53{bottom:922.102533pt;}
.y2e{bottom:922.462533pt;}
.y101{bottom:922.475867pt;}
.y193{bottom:924.678667pt;}
.y152{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.yab{bottom:1006.594400pt;}
.y52{bottom:1006.598533pt;}
.y192{bottom:1006.598667pt;}
.yaf{bottom:1006.600133pt;}
.ye9{bottom:1006.603333pt;}
.y85{bottom:1006.629467pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h15{height:24.070312pt;}
.h16{height:24.087240pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.h17{height:29.625000pt;}
.h12{height:29.645833pt;}
.h11{height:31.062500pt;}
.h10{height:31.104167pt;}
.h13{height:33.351562pt;}
.he{height:37.031250pt;}
.hd{height:37.057292pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.859942pt;}
.h9{height:38.880208pt;}
.h14{height:39.200000pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:54.804800pt;}
.x2a{left:56.700667pt;}
.xc{left:68.031467pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1e{left:88.818933pt;}
.x6b{left:90.708800pt;}
.x4{left:94.488133pt;}
.xd{left:98.265067pt;}
.x6c{left:109.606533pt;}
.x3{left:111.491467pt;}
.x23{left:114.646000pt;}
.x52{left:115.781333pt;}
.x7{left:117.165333pt;}
.x2b{left:121.267333pt;}
.xe{left:128.638400pt;}
.x63{left:133.811867pt;}
.x25{left:163.378667pt;}
.x5{left:170.078800pt;}
.x24{left:171.560000pt;}
.x6a{left:172.684800pt;}
.x4b{left:173.787333pt;}
.x53{left:176.300667pt;}
.x2c{left:179.256000pt;}
.x20{left:183.304267pt;}
.x6{left:189.223467pt;}
.x3d{left:204.250667pt;}
.x4c{left:206.226667pt;}
.x26{left:207.318667pt;}
.x5b{left:216.006533pt;}
.x3c{left:218.888667pt;}
.x4d{left:256.970000pt;}
.x5e{left:259.140533pt;}
.x2e{left:263.530667pt;}
.x27{left:266.174000pt;}
.x2d{left:271.833333pt;}
.x28{left:310.469333pt;}
.x54{left:311.752000pt;}
.x60{left:313.913867pt;}
.x30{left:318.330000pt;}
.x3f{left:322.637333pt;}
.x2f{left:324.466000pt;}
.x3e{left:326.606667pt;}
.x56{left:366.525333pt;}
.x64{left:368.695867pt;}
.x32{left:373.129333pt;}
.x41{left:377.436667pt;}
.x4e{left:381.380000pt;}
.x40{left:383.572667pt;}
.x31{left:384.682000pt;}
.xb{left:404.481333pt;}
.xf{left:406.291733pt;}
.x5f{left:419.482533pt;}
.x59{left:421.692533pt;}
.x1d{left:425.193067pt;}
.x8{left:427.085333pt;}
.x33{left:428.206000pt;}
.x42{left:430.346667pt;}
.x16{left:434.289200pt;}
.x10{left:436.531733pt;}
.x1a{left:442.384267pt;}
.x15{left:445.022533pt;}
.x6d{left:447.889200pt;}
.x17{left:453.942533pt;}
.x1c{left:455.433067pt;}
.x9{left:457.352000pt;}
.x1f{left:463.016267pt;}
.x66{left:467.382533pt;}
.x5c{left:472.427200pt;}
.x44{left:478.923333pt;}
.x18{left:481.862533pt;}
.x35{left:483.282667pt;}
.x57{left:484.990000pt;}
.x43{left:487.226000pt;}
.x55{left:490.753333pt;}
.x34{left:492.668667pt;}
.x67{left:515.045867pt;}
.x11{left:525.905067pt;}
.x58{left:530.429333pt;}
.x4f{left:532.284000pt;}
.x19{left:533.609200pt;}
.x61{left:534.575867pt;}
.x1b{left:536.092267pt;}
.x14{left:537.169200pt;}
.x36{left:539.910667pt;}
.x62{left:566.859200pt;}
.x38{left:573.433333pt;}
.x46{left:577.740667pt;}
.x45{left:581.710000pt;}
.x37{left:584.986000pt;}
.x5d{left:587.130533pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x5a{left:622.568533pt;}
.x3a{left:624.731333pt;}
.x48{left:626.872000pt;}
.x65{left:627.881200pt;}
.x50{left:630.824000pt;}
.x47{left:633.008000pt;}
.x39{left:634.117333pt;}
.x68{left:641.526800pt;}
.x12{left:647.455467pt;}
.x69{left:661.216133pt;}
.x21{left:666.355467pt;}
.x3b{left:675.752000pt;}
.x4a{left:677.892667pt;}
.x51{left:681.844667pt;}
.x49{left:684.028667pt;}
.x29{left:686.724000pt;}
}




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