
    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_2192413d5bf1d39ef8aec5a0.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_2231e5f822c58d6e33c78f04.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_4fdba5919996743b03402e6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_273deb5cd0d157a55d9eccf2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_151f64195631616da6ef4430.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_72c30225093144c07b2565ee.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_84e157eea0215a7a74b8e336.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_96d0c1a23b9038eaf9f28b8b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3cf476bdef21a5ff08cb7c8e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f085377c2590ace5a557dd76.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls1a{letter-spacing:-0.780000px;}
.ls3c{letter-spacing:-0.660000px;}
.ls3b{letter-spacing:-0.480000px;}
.ls54{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.240000px;}
.ls38{letter-spacing:-0.180000px;}
.ls82{letter-spacing:-0.144000px;}
.ls55{letter-spacing:-0.126000px;}
.ls39{letter-spacing:-0.120000px;}
.ls51{letter-spacing:-0.096000px;}
.ls1c{letter-spacing:-0.060000px;}
.ls81{letter-spacing:-0.048000px;}
.ls56{letter-spacing:-0.042000px;}
.ls19{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls4c{letter-spacing:0.048000px;}
.ls24{letter-spacing:0.060000px;}
.ls86{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.120000px;}
.ls7a{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.180000px;}
.ls8a{letter-spacing:0.192000px;}
.ls32{letter-spacing:0.240000px;}
.ls79{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.300000px;}
.ls69{letter-spacing:0.336000px;}
.ls11{letter-spacing:0.360000px;}
.ls72{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.420000px;}
.ls85{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.480000px;}
.ls4b{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.600000px;}
.ls7f{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.660000px;}
.ls65{letter-spacing:0.672000px;}
.ls2{letter-spacing:0.720000px;}
.ls7d{letter-spacing:0.768000px;}
.ls2a{letter-spacing:0.780000px;}
.ls67{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.900000px;}
.ls64{letter-spacing:0.912000px;}
.ls2b{letter-spacing:0.960000px;}
.ls61{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.080000px;}
.ls73{letter-spacing:1.104000px;}
.ls21{letter-spacing:1.140000px;}
.ls7e{letter-spacing:1.152000px;}
.ls41{letter-spacing:1.200000px;}
.ls4a{letter-spacing:1.248000px;}
.ls1d{letter-spacing:1.260000px;}
.ls6b{letter-spacing:1.296000px;}
.ls31{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.344000px;}
.ls2c{letter-spacing:1.380000px;}
.ls7b{letter-spacing:1.392000px;}
.lsb{letter-spacing:1.440000px;}
.ls63{letter-spacing:1.488000px;}
.ls2e{letter-spacing:1.500000px;}
.ls8d{letter-spacing:1.536000px;}
.ls1f{letter-spacing:1.560000px;}
.ls7c{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.632000px;}
.ls22{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.728000px;}
.ls27{letter-spacing:1.740000px;}
.ls6e{letter-spacing:1.776000px;}
.ls15{letter-spacing:1.800000px;}
.ls75{letter-spacing:1.824000px;}
.ls7{letter-spacing:1.860000px;}
.ls23{letter-spacing:1.920000px;}
.ls78{letter-spacing:1.968000px;}
.ls46{letter-spacing:1.980000px;}
.ls59{letter-spacing:2.040000px;}
.ls80{letter-spacing:2.064000px;}
.ls58{letter-spacing:2.100000px;}
.ls8b{letter-spacing:2.112000px;}
.ls9{letter-spacing:2.160000px;}
.ls42{letter-spacing:2.220000px;}
.ls6c{letter-spacing:2.256000px;}
.ls50{letter-spacing:2.280000px;}
.ls70{letter-spacing:2.304000px;}
.ls26{letter-spacing:2.340000px;}
.ls8c{letter-spacing:2.352000px;}
.ls12{letter-spacing:2.400000px;}
.ls71{letter-spacing:2.448000px;}
.lsd{letter-spacing:2.460000px;}
.ls47{letter-spacing:2.520000px;}
.ls6d{letter-spacing:2.544000px;}
.ls14{letter-spacing:2.580000px;}
.ls83{letter-spacing:2.592000px;}
.ls48{letter-spacing:2.640000px;}
.ls6a{letter-spacing:2.688000px;}
.ls36{letter-spacing:2.700000px;}
.ls28{letter-spacing:2.760000px;}
.lse{letter-spacing:2.820000px;}
.ls16{letter-spacing:2.880000px;}
.ls68{letter-spacing:2.928000px;}
.ls5a{letter-spacing:2.940000px;}
.ls6f{letter-spacing:2.976000px;}
.ls43{letter-spacing:3.000000px;}
.ls60{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.120000px;}
.ls34{letter-spacing:3.180000px;}
.ls4f{letter-spacing:3.240000px;}
.ls4d{letter-spacing:3.300000px;}
.ls76{letter-spacing:3.312000px;}
.ls1e{letter-spacing:3.360000px;}
.ls13{letter-spacing:3.420000px;}
.ls89{letter-spacing:3.456000px;}
.ls40{letter-spacing:3.480000px;}
.ls33{letter-spacing:3.540000px;}
.ls18{letter-spacing:3.720000px;}
.ls5d{letter-spacing:3.780000px;}
.ls30{letter-spacing:3.840000px;}
.ls3a{letter-spacing:3.960000px;}
.ls29{letter-spacing:4.140000px;}
.ls35{letter-spacing:4.260000px;}
.ls88{letter-spacing:4.272000px;}
.ls45{letter-spacing:4.320000px;}
.ls3e{letter-spacing:4.380000px;}
.ls53{letter-spacing:4.680000px;}
.ls84{letter-spacing:4.704000px;}
.ls3f{letter-spacing:4.860000px;}
.ls5b{letter-spacing:4.980000px;}
.ls3d{letter-spacing:5.100000px;}
.ls5e{letter-spacing:5.160000px;}
.ls5f{letter-spacing:5.460000px;}
.ls52{letter-spacing:5.760000px;}
.ls5c{letter-spacing:5.880000px;}
.ls57{letter-spacing:5.940000px;}
.ls77{letter-spacing:6.336000px;}
.ls44{letter-spacing:7.980000px;}
.ls4e{letter-spacing:8.580000px;}
.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;}
}
.ws6e{word-spacing:-19.200000px;}
.ws42{word-spacing:-18.720000px;}
.ws6c{word-spacing:-18.360000px;}
.ws2a{word-spacing:-18.120000px;}
.ws2b{word-spacing:-18.000000px;}
.ws43{word-spacing:-17.880000px;}
.ws2e{word-spacing:-17.640000px;}
.wsd{word-spacing:-17.580000px;}
.ws5d{word-spacing:-17.400000px;}
.ws41{word-spacing:-17.160000px;}
.ws61{word-spacing:-16.980000px;}
.ws6d{word-spacing:-16.740000px;}
.wse{word-spacing:-16.680000px;}
.ws2d{word-spacing:-16.560000px;}
.ws44{word-spacing:-16.500000px;}
.wsb{word-spacing:-16.440000px;}
.ws18{word-spacing:-16.380000px;}
.ws40{word-spacing:-16.200000px;}
.wsc{word-spacing:-16.140000px;}
.ws29{word-spacing:-16.080000px;}
.ws2c{word-spacing:-15.720000px;}
.ws27{word-spacing:-15.660000px;}
.ws60{word-spacing:-15.600000px;}
.ws5e{word-spacing:-15.300000px;}
.ws5f{word-spacing:-15.180000px;}
.ws28{word-spacing:-15.060000px;}
.ws26{word-spacing:-15.000000px;}
.ws45{word-spacing:-14.940000px;}
.ws84{word-spacing:-14.928000px;}
.ws7e{word-spacing:-14.688000px;}
.ws99{word-spacing:-14.400000px;}
.ws96{word-spacing:-14.160000px;}
.ws82{word-spacing:-13.968000px;}
.ws19{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.344000px;}
.ws98{word-spacing:-13.152000px;}
.ws80{word-spacing:-12.864000px;}
.ws85{word-spacing:-12.672000px;}
.ws83{word-spacing:-12.624000px;}
.ws1a{word-spacing:-12.576000px;}
.ws1{word-spacing:-12.510000px;}
.ws81{word-spacing:-12.144000px;}
.ws97{word-spacing:-12.096000px;}
.ws7f{word-spacing:-12.000000px;}
.ws7d{word-spacing:-11.952000px;}
.ws0{word-spacing:-10.508400px;}
.ws5{word-spacing:-4.684200px;}
.ws39{word-spacing:-4.380000px;}
.ws65{word-spacing:-3.840000px;}
.ws51{word-spacing:-3.720000px;}
.ws76{word-spacing:-3.420000px;}
.ws20{word-spacing:-3.300000px;}
.ws38{word-spacing:-3.000000px;}
.ws4{word-spacing:-2.886000px;}
.ws3c{word-spacing:-2.640000px;}
.ws11{word-spacing:-2.580000px;}
.ws63{word-spacing:-2.400000px;}
.wsa2{word-spacing:-2.352000px;}
.ws6b{word-spacing:-2.310000px;}
.ws8c{word-spacing:-2.304000px;}
.ws17{word-spacing:-2.220000px;}
.wsa1{word-spacing:-2.112000px;}
.ws94{word-spacing:-2.064000px;}
.ws69{word-spacing:-1.980000px;}
.ws34{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.620000px;}
.ws3a{word-spacing:-1.560000px;}
.ws9f{word-spacing:-1.488000px;}
.ws10{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.380000px;}
.ws4f{word-spacing:-1.200000px;}
.ws2f{word-spacing:-0.960000px;}
.ws71{word-spacing:-0.840000px;}
.ws77{word-spacing:-0.720000px;}
.ws3e{word-spacing:-0.660000px;}
.ws4c{word-spacing:-0.480000px;}
.ws93{word-spacing:-0.384000px;}
.ws64{word-spacing:-0.360000px;}
.ws4e{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.288000px;}
.ws8e{word-spacing:-0.240000px;}
.ws53{word-spacing:-0.180000px;}
.ws9b{word-spacing:-0.096000px;}
.ws35{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws95{word-spacing:0.048000px;}
.ws1f{word-spacing:0.060000px;}
.ws49{word-spacing:0.240000px;}
.ws9d{word-spacing:0.288000px;}
.ws6{word-spacing:0.300000px;}
.ws89{word-spacing:0.528000px;}
.wsa{word-spacing:0.540000px;}
.ws92{word-spacing:0.576000px;}
.ws7a{word-spacing:0.600000px;}
.ws87{word-spacing:0.624000px;}
.ws5a{word-spacing:0.660000px;}
.ws88{word-spacing:0.720000px;}
.ws9{word-spacing:0.780000px;}
.ws59{word-spacing:0.840000px;}
.ws5b{word-spacing:0.864000px;}
.ws56{word-spacing:0.960000px;}
.ws91{word-spacing:1.008000px;}
.ws67{word-spacing:1.140000px;}
.ws30{word-spacing:1.200000px;}
.ws9a{word-spacing:1.296000px;}
.ws9c{word-spacing:1.440000px;}
.ws79{word-spacing:1.560000px;}
.ws4d{word-spacing:1.620000px;}
.ws8b{word-spacing:1.632000px;}
.ws14{word-spacing:1.680000px;}
.ws4b{word-spacing:1.800000px;}
.ws33{word-spacing:1.920000px;}
.wsa0{word-spacing:2.016000px;}
.ws86{word-spacing:2.040000px;}
.ws3d{word-spacing:2.160000px;}
.ws9e{word-spacing:2.208000px;}
.ws6f{word-spacing:2.220000px;}
.ws74{word-spacing:2.280000px;}
.ws4a{word-spacing:2.640000px;}
.ws1e{word-spacing:2.760000px;}
.ws32{word-spacing:2.820000px;}
.ws47{word-spacing:2.832000px;}
.ws1d{word-spacing:2.880000px;}
.ws54{word-spacing:2.940000px;}
.ws5c{word-spacing:2.976000px;}
.ws31{word-spacing:3.060000px;}
.ws57{word-spacing:3.120000px;}
.ws8a{word-spacing:3.168000px;}
.ws48{word-spacing:3.420000px;}
.ws73{word-spacing:3.480000px;}
.ws55{word-spacing:3.540000px;}
.ws46{word-spacing:3.696000px;}
.ws58{word-spacing:3.720000px;}
.ws8f{word-spacing:3.744000px;}
.ws50{word-spacing:3.840000px;}
.ws8d{word-spacing:3.888000px;}
.ws12{word-spacing:3.900000px;}
.ws24{word-spacing:3.936000px;}
.ws25{word-spacing:3.984000px;}
.ws16{word-spacing:4.020000px;}
.ws78{word-spacing:4.080000px;}
.ws1b{word-spacing:4.140000px;}
.ws6a{word-spacing:4.260000px;}
.ws62{word-spacing:4.380000px;}
.ws23{word-spacing:4.512000px;}
.ws15{word-spacing:4.620000px;}
.ws70{word-spacing:4.680000px;}
.ws72{word-spacing:4.800000px;}
.ws1c{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws37{word-spacing:5.040000px;}
.ws66{word-spacing:5.160000px;}
.ws3f{word-spacing:5.184000px;}
.ws7b{word-spacing:5.460000px;}
.ws7c{word-spacing:5.520000px;}
.ws68{word-spacing:5.580000px;}
.ws36{word-spacing:6.000000px;}
.ws22{word-spacing:6.300000px;}
.wsf{word-spacing:6.360000px;}
.ws13{word-spacing:6.660000px;}
.ws75{word-spacing:8.340000px;}
.ws52{word-spacing:8.700000px;}
._a{margin-left:-2898.291000px;}
._c{margin-left:-2874.483000px;}
._2{margin-left:-9.368400px;}
._9{margin-left:-8.004000px;}
._3{margin-left:-6.994800px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.405000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._6{width:1.245000px;}
._b{width:2.805000px;}
._8{width:3.915000px;}
._f{width:5.400000px;}
._d{width:6.480000px;}
._7{width:7.740000px;}
._19{width:8.745000px;}
._e{width:10.440000px;}
._17{width:84.924000px;}
._15{width:103.656000px;}
._18{width:136.374000px;}
._14{width:164.304000px;}
._13{width:192.915000px;}
._16{width:251.748000px;}
._10{width:303.936000px;}
._11{width:402.765000px;}
._12{width:460.848000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:27.000000px;}
.fs6{font-size:37.800000px;}
.fs9{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y127{bottom:83.628600px;}
.y16e{bottom:83.630850px;}
.y42{bottom:83.897250px;}
.y19e{bottom:83.915850px;}
.y68{bottom:83.920350px;}
.yce{bottom:84.074700px;}
.y85{bottom:84.098100px;}
.ybb{bottom:86.770350px;}
.y1a{bottom:88.026750px;}
.y102{bottom:89.770350px;}
.yc9{bottom:90.236250px;}
.y157{bottom:91.002000px;}
.y158{bottom:94.509000px;}
.y1cf{bottom:95.121900px;}
.y20f{bottom:95.263500px;}
.ycd{bottom:99.818700px;}
.y84{bottom:99.842100px;}
.y19d{bottom:101.510850px;}
.y126{bottom:101.628600px;}
.y16d{bottom:101.630850px;}
.y67{bottom:101.920350px;}
.y19{bottom:103.023000px;}
.yba{bottom:104.770350px;}
.yc8{bottom:105.842250px;}
.y101{bottom:107.770350px;}
.y1ce{bottom:110.121900px;}
.y20e{bottom:110.263500px;}
.y15d{bottom:110.418300px;}
.ycc{bottom:115.562700px;}
.y125{bottom:119.628600px;}
.y16c{bottom:119.630850px;}
.y66{bottom:119.920350px;}
.yc7{bottom:120.205350px;}
.y12b{bottom:120.641550px;}
.yb9{bottom:122.770350px;}
.y1cd{bottom:125.121900px;}
.y20d{bottom:125.263500px;}
.y100{bottom:125.770350px;}
.y15c{bottom:126.913800px;}
.ycb{bottom:131.306700px;}
.y12a{bottom:136.385550px;}
.y124{bottom:137.628600px;}
.y16b{bottom:137.630850px;}
.yc6{bottom:137.800350px;}
.y19c{bottom:137.915850px;}
.y65{bottom:137.920350px;}
.y1cc{bottom:140.121900px;}
.y20c{bottom:140.263500px;}
.yb8{bottom:140.770350px;}
.y15b{bottom:143.409300px;}
.y15e{bottom:143.419800px;}
.yff{bottom:143.770350px;}
.y129{bottom:152.129550px;}
.y1cb{bottom:155.121900px;}
.y20b{bottom:155.263500px;}
.y19b{bottom:155.510850px;}
.y123{bottom:155.628600px;}
.y16a{bottom:155.630850px;}
.yc5{bottom:155.800350px;}
.y64{bottom:155.920350px;}
.yb7{bottom:158.770350px;}
.y15a{bottom:158.917800px;}
.y2a{bottom:159.599400px;}
.yfe{bottom:161.770350px;}
.y128{bottom:167.873550px;}
.y1ca{bottom:170.121900px;}
.y20a{bottom:170.263500px;}
.y122{bottom:173.628600px;}
.y169{bottom:173.630850px;}
.y159{bottom:175.413300px;}
.yb6{bottom:176.770350px;}
.y29{bottom:177.599400px;}
.yfd{bottom:179.770350px;}
.y1c9{bottom:185.121900px;}
.y209{bottom:185.263500px;}
.y63{bottom:191.515350px;}
.y121{bottom:191.628600px;}
.y168{bottom:191.630850px;}
.y19a{bottom:191.915850px;}
.yc4{bottom:192.055350px;}
.yb5{bottom:194.770350px;}
.y28{bottom:195.599400px;}
.yfc{bottom:197.770350px;}
.y1c8{bottom:200.121900px;}
.y208{bottom:200.263500px;}
.y152{bottom:203.004450px;}
.y155{bottom:203.014950px;}
.y120{bottom:209.628600px;}
.y167{bottom:209.630850px;}
.y199{bottom:209.915850px;}
.yc3{bottom:210.055350px;}
.yb4{bottom:212.770350px;}
.y27{bottom:213.599400px;}
.y1c7{bottom:215.121900px;}
.y207{bottom:215.263500px;}
.yfb{bottom:215.770350px;}
.y151{bottom:219.499950px;}
.y154{bottom:219.510450px;}
.y11f{bottom:227.628600px;}
.y166{bottom:227.630850px;}
.y62{bottom:227.770350px;}
.y198{bottom:227.915850px;}
.yc2{bottom:228.055350px;}
.y1c6{bottom:230.121900px;}
.y206{bottom:230.263500px;}
.yb3{bottom:230.770350px;}
.y26{bottom:231.599400px;}
.yfa{bottom:233.770350px;}
.y150{bottom:235.995450px;}
.y153{bottom:236.005950px;}
.y156{bottom:236.016450px;}
.y1c5{bottom:245.121900px;}
.y205{bottom:245.263500px;}
.y197{bottom:245.510850px;}
.y165{bottom:245.630850px;}
.y11e{bottom:245.635350px;}
.y61{bottom:245.770350px;}
.yc1{bottom:246.055350px;}
.yb2{bottom:248.770350px;}
.y25{bottom:249.599400px;}
.y14e{bottom:250.747950px;}
.yf9{bottom:251.770350px;}
.y1c4{bottom:260.121900px;}
.y204{bottom:260.263500px;}
.y164{bottom:263.630850px;}
.y11d{bottom:263.635350px;}
.y60{bottom:263.770350px;}
.yb1{bottom:266.770350px;}
.y14d{bottom:267.243450px;}
.y24{bottom:267.599400px;}
.yf8{bottom:269.770350px;}
.y1c3{bottom:275.121900px;}
.y203{bottom:275.263500px;}
.y163{bottom:281.630850px;}
.y11c{bottom:281.635350px;}
.yc0{bottom:281.650350px;}
.y5f{bottom:281.770350px;}
.y196{bottom:281.915850px;}
.y14c{bottom:283.738950px;}
.yb0{bottom:284.770350px;}
.y23{bottom:285.599400px;}
.yf7{bottom:287.770350px;}
.y1c2{bottom:290.121900px;}
.y202{bottom:290.263500px;}
.y162{bottom:299.630850px;}
.y11b{bottom:299.635350px;}
.y5e{bottom:299.770350px;}
.y195{bottom:299.915850px;}
.y14b{bottom:300.234450px;}
.y14f{bottom:300.244950px;}
.yaf{bottom:302.770350px;}
.y22{bottom:303.599400px;}
.y1c1{bottom:305.121900px;}
.y201{bottom:305.263500px;}
.yf6{bottom:305.770350px;}
.y14a{bottom:314.986950px;}
.ybf{bottom:317.515350px;}
.y161{bottom:317.630850px;}
.y11a{bottom:317.635350px;}
.y5d{bottom:317.770350px;}
.y194{bottom:317.915850px;}
.y1c0{bottom:320.121900px;}
.y200{bottom:320.263500px;}
.yae{bottom:320.770350px;}
.y21{bottom:321.599400px;}
.yf5{bottom:323.770350px;}
.y149{bottom:331.482450px;}
.y1bf{bottom:335.121900px;}
.y1ff{bottom:335.263500px;}
.ybe{bottom:335.515350px;}
.y160{bottom:335.630850px;}
.y119{bottom:335.635350px;}
.y5c{bottom:335.770350px;}
.y193{bottom:335.915850px;}
.yad{bottom:338.770350px;}
.y20{bottom:339.599400px;}
.yf4{bottom:341.770350px;}
.y130{bottom:343.141350px;}
.y147{bottom:346.234950px;}
.y1be{bottom:350.121900px;}
.y1fe{bottom:350.263500px;}
.ybd{bottom:353.515350px;}
.y118{bottom:353.635350px;}
.y5b{bottom:353.770350px;}
.y192{bottom:353.915850px;}
.yac{bottom:356.770350px;}
.y1f{bottom:357.599400px;}
.yf3{bottom:359.770350px;}
.y146{bottom:362.730450px;}
.y1bd{bottom:365.121900px;}
.y1fd{bottom:365.263500px;}
.y131{bottom:366.325350px;}
.y15f{bottom:371.225850px;}
.ybc{bottom:371.515350px;}
.y117{bottom:371.635350px;}
.y5a{bottom:371.770350px;}
.y191{bottom:371.915850px;}
.yab{bottom:374.770350px;}
.y1e{bottom:375.599400px;}
.yf2{bottom:377.770350px;}
.y145{bottom:379.225950px;}
.y1bc{bottom:380.121900px;}
.y1fc{bottom:380.263500px;}
.y116{bottom:389.635350px;}
.y59{bottom:389.770350px;}
.y190{bottom:389.915850px;}
.yaa{bottom:392.770350px;}
.y1d{bottom:393.599400px;}
.y1bb{bottom:395.121900px;}
.y1fb{bottom:395.263500px;}
.y144{bottom:395.721450px;}
.y148{bottom:395.731950px;}
.yf1{bottom:395.770350px;}
.y115{bottom:407.635350px;}
.y58{bottom:407.770350px;}
.y18f{bottom:407.915850px;}
.y1ba{bottom:410.121900px;}
.y1fa{bottom:410.263500px;}
.y143{bottom:410.473950px;}
.ya9{bottom:410.770350px;}
.y1c{bottom:411.599400px;}
.yf0{bottom:413.770350px;}
.y1b9{bottom:425.121900px;}
.y1f9{bottom:425.263500px;}
.y114{bottom:425.635350px;}
.y57{bottom:425.770350px;}
.y18e{bottom:425.915850px;}
.y142{bottom:426.969450px;}
.ya8{bottom:428.770350px;}
.y2c{bottom:429.599400px;}
.yef{bottom:431.770350px;}
.y83{bottom:438.888750px;}
.y1b8{bottom:440.121900px;}
.y1f8{bottom:440.263500px;}
.y140{bottom:441.721950px;}
.y113{bottom:443.635350px;}
.y56{bottom:443.770350px;}
.y18d{bottom:443.915850px;}
.ya7{bottom:446.770350px;}
.y1b{bottom:447.194400px;}
.y2b{bottom:447.599400px;}
.yee{bottom:449.770350px;}
.y82{bottom:453.888750px;}
.y1b7{bottom:455.121900px;}
.y1f7{bottom:455.263500px;}
.y13f{bottom:458.217450px;}
.y112{bottom:461.635350px;}
.y55{bottom:461.770350px;}
.y18c{bottom:461.915850px;}
.ya6{bottom:464.770350px;}
.yed{bottom:467.770350px;}
.y1b6{bottom:470.121900px;}
.y1f6{bottom:470.263500px;}
.y13e{bottom:474.712950px;}
.y141{bottom:474.723450px;}
.y111{bottom:479.635350px;}
.y54{bottom:479.770350px;}
.y18b{bottom:479.915850px;}
.ya5{bottom:482.770350px;}
.y1b5{bottom:485.121900px;}
.y1f5{bottom:485.263500px;}
.yec{bottom:485.770350px;}
.y81{bottom:486.236100px;}
.y13c{bottom:489.465450px;}
.y110{bottom:497.635350px;}
.y53{bottom:497.770350px;}
.y18a{bottom:497.915850px;}
.y1b4{bottom:500.121900px;}
.y233{bottom:500.263500px;}
.y1f4{bottom:500.265900px;}
.ya4{bottom:500.770350px;}
.y80{bottom:501.842100px;}
.yeb{bottom:503.770350px;}
.y13b{bottom:505.960950px;}
.y1b3{bottom:515.121900px;}
.y232{bottom:515.263500px;}
.y1f3{bottom:515.265900px;}
.y10f{bottom:515.635350px;}
.y52{bottom:515.770350px;}
.y189{bottom:515.915850px;}
.y7f{bottom:516.205350px;}
.ya3{bottom:518.770350px;}
.y18{bottom:520.160250px;}
.yea{bottom:521.770350px;}
.y13a{bottom:522.456450px;}
.y1b2{bottom:530.121900px;}
.y231{bottom:530.263500px;}
.y1f2{bottom:530.265900px;}
.y10e{bottom:533.635350px;}
.y51{bottom:533.770350px;}
.y7e{bottom:533.800350px;}
.y188{bottom:533.915850px;}
.ya2{bottom:536.770350px;}
.y139{bottom:538.951950px;}
.y13d{bottom:538.962450px;}
.ye9{bottom:539.770350px;}
.y1b1{bottom:545.121900px;}
.y230{bottom:545.263500px;}
.y1f1{bottom:545.265900px;}
.y17{bottom:547.505250px;}
.y187{bottom:551.510850px;}
.y10d{bottom:551.635350px;}
.y50{bottom:551.770350px;}
.y134{bottom:553.693950px;}
.y137{bottom:553.704450px;}
.ya1{bottom:554.770350px;}
.ye8{bottom:557.770350px;}
.y1b0{bottom:560.121900px;}
.y22f{bottom:560.263500px;}
.y1f0{bottom:560.265900px;}
.y16{bottom:565.505250px;}
.y10c{bottom:569.635350px;}
.y4f{bottom:569.770350px;}
.y7d{bottom:570.055350px;}
.y133{bottom:570.189450px;}
.y136{bottom:570.199950px;}
.ya0{bottom:572.770350px;}
.y1af{bottom:575.121900px;}
.y22e{bottom:575.263500px;}
.y1ef{bottom:575.265900px;}
.ye7{bottom:575.770350px;}
.y15{bottom:583.505250px;}
.y132{bottom:586.684950px;}
.y135{bottom:586.695450px;}
.y138{bottom:586.705950px;}
.y10b{bottom:587.635350px;}
.y4e{bottom:587.770350px;}
.y186{bottom:587.915850px;}
.y7c{bottom:588.055350px;}
.y1ae{bottom:590.121900px;}
.y22d{bottom:590.263500px;}
.y1ee{bottom:590.265900px;}
.y9f{bottom:590.770350px;}
.ye6{bottom:593.770350px;}
.y14{bottom:601.505250px;}
.y1ad{bottom:605.121900px;}
.y22c{bottom:605.263500px;}
.y1ed{bottom:605.265900px;}
.y10a{bottom:605.635350px;}
.y4d{bottom:605.770350px;}
.y185{bottom:605.915850px;}
.y7b{bottom:606.055350px;}
.y9e{bottom:608.770350px;}
.ye5{bottom:611.770350px;}
.y12f{bottom:614.446200px;}
.y13{bottom:619.505250px;}
.y1ac{bottom:620.121900px;}
.y22b{bottom:620.263500px;}
.y1ec{bottom:620.265900px;}
.y109{bottom:623.635350px;}
.y4c{bottom:623.770350px;}
.y184{bottom:623.915850px;}
.y9d{bottom:626.770350px;}
.ye4{bottom:629.770350px;}
.y12e{bottom:630.946200px;}
.y1ab{bottom:635.121900px;}
.y22a{bottom:635.263500px;}
.y1eb{bottom:635.265900px;}
.y12{bottom:637.505250px;}
.y108{bottom:641.635350px;}
.y7a{bottom:641.650350px;}
.y4b{bottom:641.770350px;}
.y183{bottom:641.915850px;}
.y9c{bottom:644.770350px;}
.ye3{bottom:647.770350px;}
.y1aa{bottom:650.121900px;}
.y229{bottom:650.263500px;}
.y1ea{bottom:650.265900px;}
.y11{bottom:655.505250px;}
.y107{bottom:659.635350px;}
.y4a{bottom:659.770350px;}
.y182{bottom:659.915850px;}
.y9b{bottom:662.770350px;}
.y12d{bottom:663.340350px;}
.y1a9{bottom:665.121900px;}
.y228{bottom:665.263500px;}
.y1e9{bottom:665.265900px;}
.ye2{bottom:665.770350px;}
.y10{bottom:673.505250px;}
.y79{bottom:677.515350px;}
.y106{bottom:677.635350px;}
.y49{bottom:677.770350px;}
.y181{bottom:677.915850px;}
.y1a8{bottom:680.121900px;}
.y227{bottom:680.263500px;}
.y1e8{bottom:680.265900px;}
.y9a{bottom:680.770350px;}
.y12c{bottom:682.840350px;}
.ye1{bottom:683.770350px;}
.y1a7{bottom:695.121900px;}
.y226{bottom:695.263500px;}
.y1e7{bottom:695.265900px;}
.y78{bottom:695.515350px;}
.y105{bottom:695.635350px;}
.y48{bottom:695.770350px;}
.y180{bottom:695.915850px;}
.y99{bottom:698.770350px;}
.ye0{bottom:701.770350px;}
.yf{bottom:706.640100px;}
.y1a6{bottom:710.121900px;}
.y225{bottom:710.263500px;}
.y1e6{bottom:710.265900px;}
.y77{bottom:713.515350px;}
.y104{bottom:713.635350px;}
.y47{bottom:713.770350px;}
.y17f{bottom:713.915850px;}
.y43{bottom:714.137550px;}
.y98{bottom:716.770350px;}
.ydf{bottom:719.770350px;}
.y1a5{bottom:725.121900px;}
.y224{bottom:725.263500px;}
.y1e5{bottom:725.265900px;}
.y76{bottom:731.515350px;}
.y46{bottom:731.770350px;}
.y17e{bottom:731.915850px;}
.ye{bottom:731.968050px;}
.y97{bottom:734.770350px;}
.yde{bottom:737.770350px;}
.y1a4{bottom:740.121900px;}
.y223{bottom:740.263500px;}
.y1e4{bottom:740.265900px;}
.y103{bottom:749.230350px;}
.y75{bottom:749.515350px;}
.y45{bottom:749.770350px;}
.y17d{bottom:749.915850px;}
.y96{bottom:752.770350px;}
.y1a3{bottom:755.121900px;}
.y222{bottom:755.263500px;}
.y1e3{bottom:755.265900px;}
.ydd{bottom:755.770350px;}
.yd{bottom:763.683600px;}
.y3f{bottom:767.770350px;}
.y17c{bottom:767.915850px;}
.y1a2{bottom:770.121900px;}
.y221{bottom:770.263500px;}
.y1e2{bottom:770.265900px;}
.y95{bottom:770.770350px;}
.ydc{bottom:773.770350px;}
.yc{bottom:781.044300px;}
.y220{bottom:785.263500px;}
.y1e1{bottom:785.265900px;}
.y74{bottom:785.380350px;}
.y3e{bottom:785.770350px;}
.y17b{bottom:785.915850px;}
.y94{bottom:788.770350px;}
.yb{bottom:790.683600px;}
.ydb{bottom:791.770350px;}
.y21f{bottom:800.263500px;}
.y1e0{bottom:800.265900px;}
.y1a1{bottom:803.230350px;}
.y3d{bottom:803.770350px;}
.y17a{bottom:803.915850px;}
.ya{bottom:804.183600px;}
.y93{bottom:806.770350px;}
.yda{bottom:809.770350px;}
.y21e{bottom:815.263500px;}
.y1df{bottom:815.265900px;}
.y73{bottom:821.245350px;}
.y9{bottom:821.544300px;}
.y3c{bottom:821.770350px;}
.y179{bottom:821.915850px;}
.y92{bottom:824.770350px;}
.yd9{bottom:827.770350px;}
.y21d{bottom:830.263500px;}
.y1de{bottom:830.265900px;}
.y41{bottom:839.365350px;}
.y3b{bottom:839.770350px;}
.y178{bottom:839.915850px;}
.y91{bottom:842.770350px;}
.y21c{bottom:845.263500px;}
.y1dd{bottom:845.265900px;}
.yd8{bottom:845.770350px;}
.y8{bottom:851.830950px;}
.y3a{bottom:857.770350px;}
.y177{bottom:857.915850px;}
.y21b{bottom:860.263500px;}
.y1dc{bottom:860.265900px;}
.y90{bottom:860.770350px;}
.yd7{bottom:863.770350px;}
.y40{bottom:875.230350px;}
.y21a{bottom:875.263500px;}
.y1db{bottom:875.265900px;}
.y1a0{bottom:875.365350px;}
.y39{bottom:875.770350px;}
.y72{bottom:875.785350px;}
.y176{bottom:875.915850px;}
.y8f{bottom:878.770350px;}
.yd6{bottom:881.770350px;}
.y219{bottom:890.263500px;}
.y1da{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y71{bottom:893.785350px;}
.y8e{bottom:896.770350px;}
.y7{bottom:898.004400px;}
.yd5{bottom:899.770350px;}
.y218{bottom:905.263500px;}
.y1d9{bottom:905.265900px;}
.y19f{bottom:911.365350px;}
.y175{bottom:911.510850px;}
.y37{bottom:911.770350px;}
.y70{bottom:911.785350px;}
.y8d{bottom:914.770350px;}
.yd4{bottom:917.770350px;}
.y217{bottom:920.263500px;}
.y1d8{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y6f{bottom:929.785350px;}
.y8c{bottom:932.770350px;}
.y6{bottom:934.465200px;}
.y216{bottom:935.263500px;}
.y1d7{bottom:935.265900px;}
.yd3{bottom:935.770350px;}
.y174{bottom:947.765850px;}
.y35{bottom:947.770350px;}
.y6e{bottom:947.785350px;}
.y215{bottom:950.263500px;}
.y1d6{bottom:950.265900px;}
.y8b{bottom:950.770350px;}
.yd2{bottom:953.770350px;}
.y214{bottom:965.263500px;}
.y1d5{bottom:965.265900px;}
.y173{bottom:965.765850px;}
.y34{bottom:965.770350px;}
.y6d{bottom:965.785350px;}
.y8a{bottom:968.770350px;}
.y5{bottom:970.926000px;}
.yd1{bottom:971.770350px;}
.y213{bottom:980.263500px;}
.y1d4{bottom:980.265900px;}
.y172{bottom:983.765850px;}
.y33{bottom:983.770350px;}
.y6c{bottom:983.785350px;}
.y89{bottom:986.770350px;}
.yd0{bottom:989.770350px;}
.y212{bottom:995.263500px;}
.y1d3{bottom:995.265900px;}
.y171{bottom:1001.765850px;}
.y32{bottom:1001.770350px;}
.y6b{bottom:1001.785350px;}
.y88{bottom:1004.770350px;}
.y211{bottom:1010.263500px;}
.y1d2{bottom:1010.265900px;}
.y170{bottom:1019.765850px;}
.y31{bottom:1019.770350px;}
.y6a{bottom:1019.785350px;}
.y4{bottom:1021.210200px;}
.ycf{bottom:1025.263500px;}
.y1d1{bottom:1025.265900px;}
.y16f{bottom:1037.765850px;}
.y30{bottom:1037.770350px;}
.y69{bottom:1037.785350px;}
.y87{bottom:1040.263500px;}
.y1d0{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.yca{bottom:1132.418700px;}
.y44{bottom:1132.421550px;}
.y210{bottom:1132.423500px;}
.y86{bottom:1132.430100px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.ha{height:24.139160px;}
.h8{height:24.789134px;}
.hb{height:28.412109px;}
.h14{height:29.182617px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h12{height:33.351562px;}
.h4{height:34.945312px;}
.h11{height:34.968750px;}
.h13{height:37.520508px;}
.h9{height:40.231934px;}
.hf{height:41.689453px;}
.h10{height:42.914062px;}
.hd{height:43.681641px;}
.hc{height:43.710938px;}
.h7{height:49.138634px;}
.h5{height:53.642578px;}
.h3{height:56.786133px;}
.h6{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:76.535400px;}
.x2a{left:78.661350px;}
.xb{left:96.094500px;}
.x1{left:97.795200px;}
.x28{left:102.047400px;}
.x6{left:104.173200px;}
.x3{left:106.724400px;}
.x21{left:110.551200px;}
.x2c{left:118.020750px;}
.x39{left:123.307350px;}
.x5{left:125.433000px;}
.x8{left:131.816400px;}
.x2b{left:138.193350px;}
.x31{left:146.694000px;}
.x4{left:173.849850px;}
.x11{left:179.655750px;}
.x36{left:194.285400px;}
.x35{left:211.392300px;}
.x7{left:212.876400px;}
.x32{left:261.501000px;}
.x2d{left:270.006000px;}
.x33{left:278.511000px;}
.x2e{left:427.327500px;}
.x2f{left:435.832500px;}
.x34{left:444.337500px;}
.xc{left:455.041500px;}
.xe{left:457.070400px;}
.x23{left:458.864700px;}
.x24{left:471.059700px;}
.x27{left:475.301700px;}
.x14{left:478.345350px;}
.x1a{left:479.425350px;}
.x9{left:480.476400px;}
.x37{left:482.603400px;}
.x18{left:484.405350px;}
.x10{left:491.090400px;}
.x1e{left:496.561650px;}
.x1f{left:503.858400px;}
.x25{left:506.744700px;}
.x15{left:512.365350px;}
.xa{left:514.496400px;}
.x1c{left:522.310350px;}
.xf{left:525.260400px;}
.x22{left:561.074700px;}
.x29{left:579.496200px;}
.x19{left:582.340350px;}
.x26{left:603.584700px;}
.x17{left:604.720350px;}
.x1b{left:606.925350px;}
.x16{left:612.910350px;}
.x1d{left:624.880350px;}
.x30{left:661.183500px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x38{left:722.619450px;}
.x12{left:729.279750px;}
.x3a{left:744.763350px;}
.x20{left:750.542400px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls3c{letter-spacing:-0.586667pt;}
.ls3b{letter-spacing:-0.426667pt;}
.ls54{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls82{letter-spacing:-0.128000pt;}
.ls55{letter-spacing:-0.112000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls51{letter-spacing:-0.085333pt;}
.ls1c{letter-spacing:-0.053333pt;}
.ls81{letter-spacing:-0.042667pt;}
.ls56{letter-spacing:-0.037333pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls4c{letter-spacing:0.042667pt;}
.ls24{letter-spacing:0.053333pt;}
.ls86{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls7a{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls8a{letter-spacing:0.170667pt;}
.ls32{letter-spacing:0.213333pt;}
.ls79{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls69{letter-spacing:0.298667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls72{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.373333pt;}
.ls85{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls4b{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls7f{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.586667pt;}
.ls65{letter-spacing:0.597333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls7d{letter-spacing:0.682667pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls67{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls64{letter-spacing:0.810667pt;}
.ls2b{letter-spacing:0.853333pt;}
.ls61{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls73{letter-spacing:0.981333pt;}
.ls21{letter-spacing:1.013333pt;}
.ls7e{letter-spacing:1.024000pt;}
.ls41{letter-spacing:1.066667pt;}
.ls4a{letter-spacing:1.109333pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls6b{letter-spacing:1.152000pt;}
.ls31{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.194667pt;}
.ls2c{letter-spacing:1.226667pt;}
.ls7b{letter-spacing:1.237333pt;}
.lsb{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.322667pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls8d{letter-spacing:1.365333pt;}
.ls1f{letter-spacing:1.386667pt;}
.ls7c{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.450667pt;}
.ls22{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.536000pt;}
.ls27{letter-spacing:1.546667pt;}
.ls6e{letter-spacing:1.578667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls75{letter-spacing:1.621333pt;}
.ls7{letter-spacing:1.653333pt;}
.ls23{letter-spacing:1.706667pt;}
.ls78{letter-spacing:1.749333pt;}
.ls46{letter-spacing:1.760000pt;}
.ls59{letter-spacing:1.813333pt;}
.ls80{letter-spacing:1.834667pt;}
.ls58{letter-spacing:1.866667pt;}
.ls8b{letter-spacing:1.877333pt;}
.ls9{letter-spacing:1.920000pt;}
.ls42{letter-spacing:1.973333pt;}
.ls6c{letter-spacing:2.005333pt;}
.ls50{letter-spacing:2.026667pt;}
.ls70{letter-spacing:2.048000pt;}
.ls26{letter-spacing:2.080000pt;}
.ls8c{letter-spacing:2.090667pt;}
.ls12{letter-spacing:2.133333pt;}
.ls71{letter-spacing:2.176000pt;}
.lsd{letter-spacing:2.186667pt;}
.ls47{letter-spacing:2.240000pt;}
.ls6d{letter-spacing:2.261333pt;}
.ls14{letter-spacing:2.293333pt;}
.ls83{letter-spacing:2.304000pt;}
.ls48{letter-spacing:2.346667pt;}
.ls6a{letter-spacing:2.389333pt;}
.ls36{letter-spacing:2.400000pt;}
.ls28{letter-spacing:2.453333pt;}
.lse{letter-spacing:2.506667pt;}
.ls16{letter-spacing:2.560000pt;}
.ls68{letter-spacing:2.602667pt;}
.ls5a{letter-spacing:2.613333pt;}
.ls6f{letter-spacing:2.645333pt;}
.ls43{letter-spacing:2.666667pt;}
.ls60{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:2.773333pt;}
.ls34{letter-spacing:2.826667pt;}
.ls4f{letter-spacing:2.880000pt;}
.ls4d{letter-spacing:2.933333pt;}
.ls76{letter-spacing:2.944000pt;}
.ls1e{letter-spacing:2.986667pt;}
.ls13{letter-spacing:3.040000pt;}
.ls89{letter-spacing:3.072000pt;}
.ls40{letter-spacing:3.093333pt;}
.ls33{letter-spacing:3.146667pt;}
.ls18{letter-spacing:3.306667pt;}
.ls5d{letter-spacing:3.360000pt;}
.ls30{letter-spacing:3.413333pt;}
.ls3a{letter-spacing:3.520000pt;}
.ls29{letter-spacing:3.680000pt;}
.ls35{letter-spacing:3.786667pt;}
.ls88{letter-spacing:3.797333pt;}
.ls45{letter-spacing:3.840000pt;}
.ls3e{letter-spacing:3.893333pt;}
.ls53{letter-spacing:4.160000pt;}
.ls84{letter-spacing:4.181333pt;}
.ls3f{letter-spacing:4.320000pt;}
.ls5b{letter-spacing:4.426667pt;}
.ls3d{letter-spacing:4.533333pt;}
.ls5e{letter-spacing:4.586667pt;}
.ls5f{letter-spacing:4.853333pt;}
.ls52{letter-spacing:5.120000pt;}
.ls5c{letter-spacing:5.226667pt;}
.ls57{letter-spacing:5.280000pt;}
.ls77{letter-spacing:5.632000pt;}
.ls44{letter-spacing:7.093333pt;}
.ls4e{letter-spacing:7.626667pt;}
.ws6e{word-spacing:-17.066667pt;}
.ws42{word-spacing:-16.640000pt;}
.ws6c{word-spacing:-16.320000pt;}
.ws2a{word-spacing:-16.106667pt;}
.ws2b{word-spacing:-16.000000pt;}
.ws43{word-spacing:-15.893333pt;}
.ws2e{word-spacing:-15.680000pt;}
.wsd{word-spacing:-15.626667pt;}
.ws5d{word-spacing:-15.466667pt;}
.ws41{word-spacing:-15.253333pt;}
.ws61{word-spacing:-15.093333pt;}
.ws6d{word-spacing:-14.880000pt;}
.wse{word-spacing:-14.826667pt;}
.ws2d{word-spacing:-14.720000pt;}
.ws44{word-spacing:-14.666667pt;}
.wsb{word-spacing:-14.613333pt;}
.ws18{word-spacing:-14.560000pt;}
.ws40{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.346667pt;}
.ws29{word-spacing:-14.293333pt;}
.ws2c{word-spacing:-13.973333pt;}
.ws27{word-spacing:-13.920000pt;}
.ws60{word-spacing:-13.866667pt;}
.ws5e{word-spacing:-13.600000pt;}
.ws5f{word-spacing:-13.493333pt;}
.ws28{word-spacing:-13.386667pt;}
.ws26{word-spacing:-13.333333pt;}
.ws45{word-spacing:-13.280000pt;}
.ws84{word-spacing:-13.269333pt;}
.ws7e{word-spacing:-13.056000pt;}
.ws99{word-spacing:-12.800000pt;}
.ws96{word-spacing:-12.586667pt;}
.ws82{word-spacing:-12.416000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws98{word-spacing:-11.690667pt;}
.ws80{word-spacing:-11.434667pt;}
.ws85{word-spacing:-11.264000pt;}
.ws83{word-spacing:-11.221333pt;}
.ws1a{word-spacing:-11.178667pt;}
.ws1{word-spacing:-11.120000pt;}
.ws81{word-spacing:-10.794667pt;}
.ws97{word-spacing:-10.752000pt;}
.ws7f{word-spacing:-10.666667pt;}
.ws7d{word-spacing:-10.624000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws5{word-spacing:-4.163733pt;}
.ws39{word-spacing:-3.893333pt;}
.ws65{word-spacing:-3.413333pt;}
.ws51{word-spacing:-3.306667pt;}
.ws76{word-spacing:-3.040000pt;}
.ws20{word-spacing:-2.933333pt;}
.ws38{word-spacing:-2.666667pt;}
.ws4{word-spacing:-2.565333pt;}
.ws3c{word-spacing:-2.346667pt;}
.ws11{word-spacing:-2.293333pt;}
.ws63{word-spacing:-2.133333pt;}
.wsa2{word-spacing:-2.090667pt;}
.ws6b{word-spacing:-2.053333pt;}
.ws8c{word-spacing:-2.048000pt;}
.ws17{word-spacing:-1.973333pt;}
.wsa1{word-spacing:-1.877333pt;}
.ws94{word-spacing:-1.834667pt;}
.ws69{word-spacing:-1.760000pt;}
.ws34{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.440000pt;}
.ws3a{word-spacing:-1.386667pt;}
.ws9f{word-spacing:-1.322667pt;}
.ws10{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.226667pt;}
.ws4f{word-spacing:-1.066667pt;}
.ws2f{word-spacing:-0.853333pt;}
.ws71{word-spacing:-0.746667pt;}
.ws77{word-spacing:-0.640000pt;}
.ws3e{word-spacing:-0.586667pt;}
.ws4c{word-spacing:-0.426667pt;}
.ws93{word-spacing:-0.341333pt;}
.ws64{word-spacing:-0.320000pt;}
.ws4e{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.256000pt;}
.ws8e{word-spacing:-0.213333pt;}
.ws53{word-spacing:-0.160000pt;}
.ws9b{word-spacing:-0.085333pt;}
.ws35{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws95{word-spacing:0.042667pt;}
.ws1f{word-spacing:0.053333pt;}
.ws49{word-spacing:0.213333pt;}
.ws9d{word-spacing:0.256000pt;}
.ws6{word-spacing:0.266667pt;}
.ws89{word-spacing:0.469333pt;}
.wsa{word-spacing:0.480000pt;}
.ws92{word-spacing:0.512000pt;}
.ws7a{word-spacing:0.533333pt;}
.ws87{word-spacing:0.554667pt;}
.ws5a{word-spacing:0.586667pt;}
.ws88{word-spacing:0.640000pt;}
.ws9{word-spacing:0.693333pt;}
.ws59{word-spacing:0.746667pt;}
.ws5b{word-spacing:0.768000pt;}
.ws56{word-spacing:0.853333pt;}
.ws91{word-spacing:0.896000pt;}
.ws67{word-spacing:1.013333pt;}
.ws30{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.152000pt;}
.ws9c{word-spacing:1.280000pt;}
.ws79{word-spacing:1.386667pt;}
.ws4d{word-spacing:1.440000pt;}
.ws8b{word-spacing:1.450667pt;}
.ws14{word-spacing:1.493333pt;}
.ws4b{word-spacing:1.600000pt;}
.ws33{word-spacing:1.706667pt;}
.wsa0{word-spacing:1.792000pt;}
.ws86{word-spacing:1.813333pt;}
.ws3d{word-spacing:1.920000pt;}
.ws9e{word-spacing:1.962667pt;}
.ws6f{word-spacing:1.973333pt;}
.ws74{word-spacing:2.026667pt;}
.ws4a{word-spacing:2.346667pt;}
.ws1e{word-spacing:2.453333pt;}
.ws32{word-spacing:2.506667pt;}
.ws47{word-spacing:2.517333pt;}
.ws1d{word-spacing:2.560000pt;}
.ws54{word-spacing:2.613333pt;}
.ws5c{word-spacing:2.645333pt;}
.ws31{word-spacing:2.720000pt;}
.ws57{word-spacing:2.773333pt;}
.ws8a{word-spacing:2.816000pt;}
.ws48{word-spacing:3.040000pt;}
.ws73{word-spacing:3.093333pt;}
.ws55{word-spacing:3.146667pt;}
.ws46{word-spacing:3.285333pt;}
.ws58{word-spacing:3.306667pt;}
.ws8f{word-spacing:3.328000pt;}
.ws50{word-spacing:3.413333pt;}
.ws8d{word-spacing:3.456000pt;}
.ws12{word-spacing:3.466667pt;}
.ws24{word-spacing:3.498667pt;}
.ws25{word-spacing:3.541333pt;}
.ws16{word-spacing:3.573333pt;}
.ws78{word-spacing:3.626667pt;}
.ws1b{word-spacing:3.680000pt;}
.ws6a{word-spacing:3.786667pt;}
.ws62{word-spacing:3.893333pt;}
.ws23{word-spacing:4.010667pt;}
.ws15{word-spacing:4.106667pt;}
.ws70{word-spacing:4.160000pt;}
.ws72{word-spacing:4.266667pt;}
.ws1c{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws37{word-spacing:4.480000pt;}
.ws66{word-spacing:4.586667pt;}
.ws3f{word-spacing:4.608000pt;}
.ws7b{word-spacing:4.853333pt;}
.ws7c{word-spacing:4.906667pt;}
.ws68{word-spacing:4.960000pt;}
.ws36{word-spacing:5.333333pt;}
.ws22{word-spacing:5.600000pt;}
.wsf{word-spacing:5.653333pt;}
.ws13{word-spacing:5.920000pt;}
.ws75{word-spacing:7.413333pt;}
.ws52{word-spacing:7.733333pt;}
._a{margin-left:-2576.258667pt;}
._c{margin-left:-2555.096000pt;}
._2{margin-left:-8.327467pt;}
._9{margin-left:-7.114667pt;}
._3{margin-left:-6.217600pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.026667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._6{width:1.106667pt;}
._b{width:2.493333pt;}
._8{width:3.480000pt;}
._f{width:4.800000pt;}
._d{width:5.760000pt;}
._7{width:6.880000pt;}
._19{width:7.773333pt;}
._e{width:9.280000pt;}
._17{width:75.488000pt;}
._15{width:92.138667pt;}
._18{width:121.221333pt;}
._14{width:146.048000pt;}
._13{width:171.480000pt;}
._16{width:223.776000pt;}
._10{width:270.165333pt;}
._11{width:358.013333pt;}
._12{width:409.642667pt;}
.fs7{font-size:24.000000pt;}
.fs6{font-size:33.600000pt;}
.fs9{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y127{bottom:74.336533pt;}
.y16e{bottom:74.338533pt;}
.y42{bottom:74.575333pt;}
.y19e{bottom:74.591867pt;}
.y68{bottom:74.595867pt;}
.yce{bottom:74.733067pt;}
.y85{bottom:74.753867pt;}
.ybb{bottom:77.129200pt;}
.y1a{bottom:78.246000pt;}
.y102{bottom:79.795867pt;}
.yc9{bottom:80.210000pt;}
.y157{bottom:80.890667pt;}
.y158{bottom:84.008000pt;}
.y1cf{bottom:84.552800pt;}
.y20f{bottom:84.678667pt;}
.ycd{bottom:88.727733pt;}
.y84{bottom:88.748533pt;}
.y19d{bottom:90.231867pt;}
.y126{bottom:90.336533pt;}
.y16d{bottom:90.338533pt;}
.y67{bottom:90.595867pt;}
.y19{bottom:91.576000pt;}
.yba{bottom:93.129200pt;}
.yc8{bottom:94.082000pt;}
.y101{bottom:95.795867pt;}
.y1ce{bottom:97.886133pt;}
.y20e{bottom:98.012000pt;}
.y15d{bottom:98.149600pt;}
.ycc{bottom:102.722400pt;}
.y125{bottom:106.336533pt;}
.y16c{bottom:106.338533pt;}
.y66{bottom:106.595867pt;}
.yc7{bottom:106.849200pt;}
.y12b{bottom:107.236933pt;}
.yb9{bottom:109.129200pt;}
.y1cd{bottom:111.219467pt;}
.y20d{bottom:111.345333pt;}
.y100{bottom:111.795867pt;}
.y15c{bottom:112.812267pt;}
.ycb{bottom:116.717067pt;}
.y12a{bottom:121.231600pt;}
.y124{bottom:122.336533pt;}
.y16b{bottom:122.338533pt;}
.yc6{bottom:122.489200pt;}
.y19c{bottom:122.591867pt;}
.y65{bottom:122.595867pt;}
.y1cc{bottom:124.552800pt;}
.y20c{bottom:124.678667pt;}
.yb8{bottom:125.129200pt;}
.y15b{bottom:127.474933pt;}
.y15e{bottom:127.484267pt;}
.yff{bottom:127.795867pt;}
.y129{bottom:135.226267pt;}
.y1cb{bottom:137.886133pt;}
.y20b{bottom:138.012000pt;}
.y19b{bottom:138.231867pt;}
.y123{bottom:138.336533pt;}
.y16a{bottom:138.338533pt;}
.yc5{bottom:138.489200pt;}
.y64{bottom:138.595867pt;}
.yb7{bottom:141.129200pt;}
.y15a{bottom:141.260267pt;}
.y2a{bottom:141.866133pt;}
.yfe{bottom:143.795867pt;}
.y128{bottom:149.220933pt;}
.y1ca{bottom:151.219467pt;}
.y20a{bottom:151.345333pt;}
.y122{bottom:154.336533pt;}
.y169{bottom:154.338533pt;}
.y159{bottom:155.922933pt;}
.yb6{bottom:157.129200pt;}
.y29{bottom:157.866133pt;}
.yfd{bottom:159.795867pt;}
.y1c9{bottom:164.552800pt;}
.y209{bottom:164.678667pt;}
.y63{bottom:170.235867pt;}
.y121{bottom:170.336533pt;}
.y168{bottom:170.338533pt;}
.y19a{bottom:170.591867pt;}
.yc4{bottom:170.715867pt;}
.yb5{bottom:173.129200pt;}
.y28{bottom:173.866133pt;}
.yfc{bottom:175.795867pt;}
.y1c8{bottom:177.886133pt;}
.y208{bottom:178.012000pt;}
.y152{bottom:180.448400pt;}
.y155{bottom:180.457733pt;}
.y120{bottom:186.336533pt;}
.y167{bottom:186.338533pt;}
.y199{bottom:186.591867pt;}
.yc3{bottom:186.715867pt;}
.yb4{bottom:189.129200pt;}
.y27{bottom:189.866133pt;}
.y1c7{bottom:191.219467pt;}
.y207{bottom:191.345333pt;}
.yfb{bottom:191.795867pt;}
.y151{bottom:195.111067pt;}
.y154{bottom:195.120400pt;}
.y11f{bottom:202.336533pt;}
.y166{bottom:202.338533pt;}
.y62{bottom:202.462533pt;}
.y198{bottom:202.591867pt;}
.yc2{bottom:202.715867pt;}
.y1c6{bottom:204.552800pt;}
.y206{bottom:204.678667pt;}
.yb3{bottom:205.129200pt;}
.y26{bottom:205.866133pt;}
.yfa{bottom:207.795867pt;}
.y150{bottom:209.773733pt;}
.y153{bottom:209.783067pt;}
.y156{bottom:209.792400pt;}
.y1c5{bottom:217.886133pt;}
.y205{bottom:218.012000pt;}
.y197{bottom:218.231867pt;}
.y165{bottom:218.338533pt;}
.y11e{bottom:218.342533pt;}
.y61{bottom:218.462533pt;}
.yc1{bottom:218.715867pt;}
.yb2{bottom:221.129200pt;}
.y25{bottom:221.866133pt;}
.y14e{bottom:222.887067pt;}
.yf9{bottom:223.795867pt;}
.y1c4{bottom:231.219467pt;}
.y204{bottom:231.345333pt;}
.y164{bottom:234.338533pt;}
.y11d{bottom:234.342533pt;}
.y60{bottom:234.462533pt;}
.yb1{bottom:237.129200pt;}
.y14d{bottom:237.549733pt;}
.y24{bottom:237.866133pt;}
.yf8{bottom:239.795867pt;}
.y1c3{bottom:244.552800pt;}
.y203{bottom:244.678667pt;}
.y163{bottom:250.338533pt;}
.y11c{bottom:250.342533pt;}
.yc0{bottom:250.355867pt;}
.y5f{bottom:250.462533pt;}
.y196{bottom:250.591867pt;}
.y14c{bottom:252.212400pt;}
.yb0{bottom:253.129200pt;}
.y23{bottom:253.866133pt;}
.yf7{bottom:255.795867pt;}
.y1c2{bottom:257.886133pt;}
.y202{bottom:258.012000pt;}
.y162{bottom:266.338533pt;}
.y11b{bottom:266.342533pt;}
.y5e{bottom:266.462533pt;}
.y195{bottom:266.591867pt;}
.y14b{bottom:266.875067pt;}
.y14f{bottom:266.884400pt;}
.yaf{bottom:269.129200pt;}
.y22{bottom:269.866133pt;}
.y1c1{bottom:271.219467pt;}
.y201{bottom:271.345333pt;}
.yf6{bottom:271.795867pt;}
.y14a{bottom:279.988400pt;}
.ybf{bottom:282.235867pt;}
.y161{bottom:282.338533pt;}
.y11a{bottom:282.342533pt;}
.y5d{bottom:282.462533pt;}
.y194{bottom:282.591867pt;}
.y1c0{bottom:284.552800pt;}
.y200{bottom:284.678667pt;}
.yae{bottom:285.129200pt;}
.y21{bottom:285.866133pt;}
.yf5{bottom:287.795867pt;}
.y149{bottom:294.651067pt;}
.y1bf{bottom:297.886133pt;}
.y1ff{bottom:298.012000pt;}
.ybe{bottom:298.235867pt;}
.y160{bottom:298.338533pt;}
.y119{bottom:298.342533pt;}
.y5c{bottom:298.462533pt;}
.y193{bottom:298.591867pt;}
.yad{bottom:301.129200pt;}
.y20{bottom:301.866133pt;}
.yf4{bottom:303.795867pt;}
.y130{bottom:305.014533pt;}
.y147{bottom:307.764400pt;}
.y1be{bottom:311.219467pt;}
.y1fe{bottom:311.345333pt;}
.ybd{bottom:314.235867pt;}
.y118{bottom:314.342533pt;}
.y5b{bottom:314.462533pt;}
.y192{bottom:314.591867pt;}
.yac{bottom:317.129200pt;}
.y1f{bottom:317.866133pt;}
.yf3{bottom:319.795867pt;}
.y146{bottom:322.427067pt;}
.y1bd{bottom:324.552800pt;}
.y1fd{bottom:324.678667pt;}
.y131{bottom:325.622533pt;}
.y15f{bottom:329.978533pt;}
.ybc{bottom:330.235867pt;}
.y117{bottom:330.342533pt;}
.y5a{bottom:330.462533pt;}
.y191{bottom:330.591867pt;}
.yab{bottom:333.129200pt;}
.y1e{bottom:333.866133pt;}
.yf2{bottom:335.795867pt;}
.y145{bottom:337.089733pt;}
.y1bc{bottom:337.886133pt;}
.y1fc{bottom:338.012000pt;}
.y116{bottom:346.342533pt;}
.y59{bottom:346.462533pt;}
.y190{bottom:346.591867pt;}
.yaa{bottom:349.129200pt;}
.y1d{bottom:349.866133pt;}
.y1bb{bottom:351.219467pt;}
.y1fb{bottom:351.345333pt;}
.y144{bottom:351.752400pt;}
.y148{bottom:351.761733pt;}
.yf1{bottom:351.795867pt;}
.y115{bottom:362.342533pt;}
.y58{bottom:362.462533pt;}
.y18f{bottom:362.591867pt;}
.y1ba{bottom:364.552800pt;}
.y1fa{bottom:364.678667pt;}
.y143{bottom:364.865733pt;}
.ya9{bottom:365.129200pt;}
.y1c{bottom:365.866133pt;}
.yf0{bottom:367.795867pt;}
.y1b9{bottom:377.886133pt;}
.y1f9{bottom:378.012000pt;}
.y114{bottom:378.342533pt;}
.y57{bottom:378.462533pt;}
.y18e{bottom:378.591867pt;}
.y142{bottom:379.528400pt;}
.ya8{bottom:381.129200pt;}
.y2c{bottom:381.866133pt;}
.yef{bottom:383.795867pt;}
.y83{bottom:390.123333pt;}
.y1b8{bottom:391.219467pt;}
.y1f8{bottom:391.345333pt;}
.y140{bottom:392.641733pt;}
.y113{bottom:394.342533pt;}
.y56{bottom:394.462533pt;}
.y18d{bottom:394.591867pt;}
.ya7{bottom:397.129200pt;}
.y1b{bottom:397.506133pt;}
.y2b{bottom:397.866133pt;}
.yee{bottom:399.795867pt;}
.y82{bottom:403.456667pt;}
.y1b7{bottom:404.552800pt;}
.y1f7{bottom:404.678667pt;}
.y13f{bottom:407.304400pt;}
.y112{bottom:410.342533pt;}
.y55{bottom:410.462533pt;}
.y18c{bottom:410.591867pt;}
.ya6{bottom:413.129200pt;}
.yed{bottom:415.795867pt;}
.y1b6{bottom:417.886133pt;}
.y1f6{bottom:418.012000pt;}
.y13e{bottom:421.967067pt;}
.y141{bottom:421.976400pt;}
.y111{bottom:426.342533pt;}
.y54{bottom:426.462533pt;}
.y18b{bottom:426.591867pt;}
.ya5{bottom:429.129200pt;}
.y1b5{bottom:431.219467pt;}
.y1f5{bottom:431.345333pt;}
.yec{bottom:431.795867pt;}
.y81{bottom:432.209867pt;}
.y13c{bottom:435.080400pt;}
.y110{bottom:442.342533pt;}
.y53{bottom:442.462533pt;}
.y18a{bottom:442.591867pt;}
.y1b4{bottom:444.552800pt;}
.y233{bottom:444.678667pt;}
.y1f4{bottom:444.680800pt;}
.ya4{bottom:445.129200pt;}
.y80{bottom:446.081867pt;}
.yeb{bottom:447.795867pt;}
.y13b{bottom:449.743067pt;}
.y1b3{bottom:457.886133pt;}
.y232{bottom:458.012000pt;}
.y1f3{bottom:458.014133pt;}
.y10f{bottom:458.342533pt;}
.y52{bottom:458.462533pt;}
.y189{bottom:458.591867pt;}
.y7f{bottom:458.849200pt;}
.ya3{bottom:461.129200pt;}
.y18{bottom:462.364667pt;}
.yea{bottom:463.795867pt;}
.y13a{bottom:464.405733pt;}
.y1b2{bottom:471.219467pt;}
.y231{bottom:471.345333pt;}
.y1f2{bottom:471.347467pt;}
.y10e{bottom:474.342533pt;}
.y51{bottom:474.462533pt;}
.y7e{bottom:474.489200pt;}
.y188{bottom:474.591867pt;}
.ya2{bottom:477.129200pt;}
.y139{bottom:479.068400pt;}
.y13d{bottom:479.077733pt;}
.ye9{bottom:479.795867pt;}
.y1b1{bottom:484.552800pt;}
.y230{bottom:484.678667pt;}
.y1f1{bottom:484.680800pt;}
.y17{bottom:486.671333pt;}
.y187{bottom:490.231867pt;}
.y10d{bottom:490.342533pt;}
.y50{bottom:490.462533pt;}
.y134{bottom:492.172400pt;}
.y137{bottom:492.181733pt;}
.ya1{bottom:493.129200pt;}
.ye8{bottom:495.795867pt;}
.y1b0{bottom:497.886133pt;}
.y22f{bottom:498.012000pt;}
.y1f0{bottom:498.014133pt;}
.y16{bottom:502.671333pt;}
.y10c{bottom:506.342533pt;}
.y4f{bottom:506.462533pt;}
.y7d{bottom:506.715867pt;}
.y133{bottom:506.835067pt;}
.y136{bottom:506.844400pt;}
.ya0{bottom:509.129200pt;}
.y1af{bottom:511.219467pt;}
.y22e{bottom:511.345333pt;}
.y1ef{bottom:511.347467pt;}
.ye7{bottom:511.795867pt;}
.y15{bottom:518.671333pt;}
.y132{bottom:521.497733pt;}
.y135{bottom:521.507067pt;}
.y138{bottom:521.516400pt;}
.y10b{bottom:522.342533pt;}
.y4e{bottom:522.462533pt;}
.y186{bottom:522.591867pt;}
.y7c{bottom:522.715867pt;}
.y1ae{bottom:524.552800pt;}
.y22d{bottom:524.678667pt;}
.y1ee{bottom:524.680800pt;}
.y9f{bottom:525.129200pt;}
.ye6{bottom:527.795867pt;}
.y14{bottom:534.671333pt;}
.y1ad{bottom:537.886133pt;}
.y22c{bottom:538.012000pt;}
.y1ed{bottom:538.014133pt;}
.y10a{bottom:538.342533pt;}
.y4d{bottom:538.462533pt;}
.y185{bottom:538.591867pt;}
.y7b{bottom:538.715867pt;}
.y9e{bottom:541.129200pt;}
.ye5{bottom:543.795867pt;}
.y12f{bottom:546.174400pt;}
.y13{bottom:550.671333pt;}
.y1ac{bottom:551.219467pt;}
.y22b{bottom:551.345333pt;}
.y1ec{bottom:551.347467pt;}
.y109{bottom:554.342533pt;}
.y4c{bottom:554.462533pt;}
.y184{bottom:554.591867pt;}
.y9d{bottom:557.129200pt;}
.ye4{bottom:559.795867pt;}
.y12e{bottom:560.841067pt;}
.y1ab{bottom:564.552800pt;}
.y22a{bottom:564.678667pt;}
.y1eb{bottom:564.680800pt;}
.y12{bottom:566.671333pt;}
.y108{bottom:570.342533pt;}
.y7a{bottom:570.355867pt;}
.y4b{bottom:570.462533pt;}
.y183{bottom:570.591867pt;}
.y9c{bottom:573.129200pt;}
.ye3{bottom:575.795867pt;}
.y1aa{bottom:577.886133pt;}
.y229{bottom:578.012000pt;}
.y1ea{bottom:578.014133pt;}
.y11{bottom:582.671333pt;}
.y107{bottom:586.342533pt;}
.y4a{bottom:586.462533pt;}
.y182{bottom:586.591867pt;}
.y9b{bottom:589.129200pt;}
.y12d{bottom:589.635867pt;}
.y1a9{bottom:591.219467pt;}
.y228{bottom:591.345333pt;}
.y1e9{bottom:591.347467pt;}
.ye2{bottom:591.795867pt;}
.y10{bottom:598.671333pt;}
.y79{bottom:602.235867pt;}
.y106{bottom:602.342533pt;}
.y49{bottom:602.462533pt;}
.y181{bottom:602.591867pt;}
.y1a8{bottom:604.552800pt;}
.y227{bottom:604.678667pt;}
.y1e8{bottom:604.680800pt;}
.y9a{bottom:605.129200pt;}
.y12c{bottom:606.969200pt;}
.ye1{bottom:607.795867pt;}
.y1a7{bottom:617.886133pt;}
.y226{bottom:618.012000pt;}
.y1e7{bottom:618.014133pt;}
.y78{bottom:618.235867pt;}
.y105{bottom:618.342533pt;}
.y48{bottom:618.462533pt;}
.y180{bottom:618.591867pt;}
.y99{bottom:621.129200pt;}
.ye0{bottom:623.795867pt;}
.yf{bottom:628.124533pt;}
.y1a6{bottom:631.219467pt;}
.y225{bottom:631.345333pt;}
.y1e6{bottom:631.347467pt;}
.y77{bottom:634.235867pt;}
.y104{bottom:634.342533pt;}
.y47{bottom:634.462533pt;}
.y17f{bottom:634.591867pt;}
.y43{bottom:634.788933pt;}
.y98{bottom:637.129200pt;}
.ydf{bottom:639.795867pt;}
.y1a5{bottom:644.552800pt;}
.y224{bottom:644.678667pt;}
.y1e5{bottom:644.680800pt;}
.y76{bottom:650.235867pt;}
.y46{bottom:650.462533pt;}
.y17e{bottom:650.591867pt;}
.ye{bottom:650.638267pt;}
.y97{bottom:653.129200pt;}
.yde{bottom:655.795867pt;}
.y1a4{bottom:657.886133pt;}
.y223{bottom:658.012000pt;}
.y1e4{bottom:658.014133pt;}
.y103{bottom:665.982533pt;}
.y75{bottom:666.235867pt;}
.y45{bottom:666.462533pt;}
.y17d{bottom:666.591867pt;}
.y96{bottom:669.129200pt;}
.y1a3{bottom:671.219467pt;}
.y222{bottom:671.345333pt;}
.y1e3{bottom:671.347467pt;}
.ydd{bottom:671.795867pt;}
.yd{bottom:678.829867pt;}
.y3f{bottom:682.462533pt;}
.y17c{bottom:682.591867pt;}
.y1a2{bottom:684.552800pt;}
.y221{bottom:684.678667pt;}
.y1e2{bottom:684.680800pt;}
.y95{bottom:685.129200pt;}
.ydc{bottom:687.795867pt;}
.yc{bottom:694.261600pt;}
.y220{bottom:698.012000pt;}
.y1e1{bottom:698.014133pt;}
.y74{bottom:698.115867pt;}
.y3e{bottom:698.462533pt;}
.y17b{bottom:698.591867pt;}
.y94{bottom:701.129200pt;}
.yb{bottom:702.829867pt;}
.ydb{bottom:703.795867pt;}
.y21f{bottom:711.345333pt;}
.y1e0{bottom:711.347467pt;}
.y1a1{bottom:713.982533pt;}
.y3d{bottom:714.462533pt;}
.y17a{bottom:714.591867pt;}
.ya{bottom:714.829867pt;}
.y93{bottom:717.129200pt;}
.yda{bottom:719.795867pt;}
.y21e{bottom:724.678667pt;}
.y1df{bottom:724.680800pt;}
.y73{bottom:729.995867pt;}
.y9{bottom:730.261600pt;}
.y3c{bottom:730.462533pt;}
.y179{bottom:730.591867pt;}
.y92{bottom:733.129200pt;}
.yd9{bottom:735.795867pt;}
.y21d{bottom:738.012000pt;}
.y1de{bottom:738.014133pt;}
.y41{bottom:746.102533pt;}
.y3b{bottom:746.462533pt;}
.y178{bottom:746.591867pt;}
.y91{bottom:749.129200pt;}
.y21c{bottom:751.345333pt;}
.y1dd{bottom:751.347467pt;}
.yd8{bottom:751.795867pt;}
.y8{bottom:757.183067pt;}
.y3a{bottom:762.462533pt;}
.y177{bottom:762.591867pt;}
.y21b{bottom:764.678667pt;}
.y1dc{bottom:764.680800pt;}
.y90{bottom:765.129200pt;}
.yd7{bottom:767.795867pt;}
.y40{bottom:777.982533pt;}
.y21a{bottom:778.012000pt;}
.y1db{bottom:778.014133pt;}
.y1a0{bottom:778.102533pt;}
.y39{bottom:778.462533pt;}
.y72{bottom:778.475867pt;}
.y176{bottom:778.591867pt;}
.y8f{bottom:781.129200pt;}
.yd6{bottom:783.795867pt;}
.y219{bottom:791.345333pt;}
.y1da{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y71{bottom:794.475867pt;}
.y8e{bottom:797.129200pt;}
.y7{bottom:798.226133pt;}
.yd5{bottom:799.795867pt;}
.y218{bottom:804.678667pt;}
.y1d9{bottom:804.680800pt;}
.y19f{bottom:810.102533pt;}
.y175{bottom:810.231867pt;}
.y37{bottom:810.462533pt;}
.y70{bottom:810.475867pt;}
.y8d{bottom:813.129200pt;}
.yd4{bottom:815.795867pt;}
.y217{bottom:818.012000pt;}
.y1d8{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y6f{bottom:826.475867pt;}
.y8c{bottom:829.129200pt;}
.y6{bottom:830.635733pt;}
.y216{bottom:831.345333pt;}
.y1d7{bottom:831.347467pt;}
.yd3{bottom:831.795867pt;}
.y174{bottom:842.458533pt;}
.y35{bottom:842.462533pt;}
.y6e{bottom:842.475867pt;}
.y215{bottom:844.678667pt;}
.y1d6{bottom:844.680800pt;}
.y8b{bottom:845.129200pt;}
.yd2{bottom:847.795867pt;}
.y214{bottom:858.012000pt;}
.y1d5{bottom:858.014133pt;}
.y173{bottom:858.458533pt;}
.y34{bottom:858.462533pt;}
.y6d{bottom:858.475867pt;}
.y8a{bottom:861.129200pt;}
.y5{bottom:863.045333pt;}
.yd1{bottom:863.795867pt;}
.y213{bottom:871.345333pt;}
.y1d4{bottom:871.347467pt;}
.y172{bottom:874.458533pt;}
.y33{bottom:874.462533pt;}
.y6c{bottom:874.475867pt;}
.y89{bottom:877.129200pt;}
.yd0{bottom:879.795867pt;}
.y212{bottom:884.678667pt;}
.y1d3{bottom:884.680800pt;}
.y171{bottom:890.458533pt;}
.y32{bottom:890.462533pt;}
.y6b{bottom:890.475867pt;}
.y88{bottom:893.129200pt;}
.y211{bottom:898.012000pt;}
.y1d2{bottom:898.014133pt;}
.y170{bottom:906.458533pt;}
.y31{bottom:906.462533pt;}
.y6a{bottom:906.475867pt;}
.y4{bottom:907.742400pt;}
.ycf{bottom:911.345333pt;}
.y1d1{bottom:911.347467pt;}
.y16f{bottom:922.458533pt;}
.y30{bottom:922.462533pt;}
.y69{bottom:922.475867pt;}
.y87{bottom:924.678667pt;}
.y1d0{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.yca{bottom:1006.594400pt;}
.y44{bottom:1006.596933pt;}
.y210{bottom:1006.598667pt;}
.y86{bottom:1006.604533pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.ha{height:21.457031pt;}
.h8{height:22.034785pt;}
.hb{height:25.255208pt;}
.h14{height:25.940104pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h12{height:29.645833pt;}
.h4{height:31.062500pt;}
.h11{height:31.083333pt;}
.h13{height:33.351562pt;}
.h9{height:35.761719pt;}
.hf{height:37.057292pt;}
.h10{height:38.145833pt;}
.hd{height:38.828125pt;}
.hc{height:38.854167pt;}
.h7{height:43.678785pt;}
.h5{height:47.682292pt;}
.h3{height:50.476562pt;}
.h6{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:68.031467pt;}
.x2a{left:69.921200pt;}
.xb{left:85.417333pt;}
.x1{left:86.929067pt;}
.x28{left:90.708800pt;}
.x6{left:92.598400pt;}
.x3{left:94.866133pt;}
.x21{left:98.267733pt;}
.x2c{left:104.907333pt;}
.x39{left:109.606533pt;}
.x5{left:111.496000pt;}
.x8{left:117.170133pt;}
.x2b{left:122.838533pt;}
.x31{left:130.394667pt;}
.x4{left:154.533200pt;}
.x11{left:159.694000pt;}
.x36{left:172.698133pt;}
.x35{left:187.904267pt;}
.x7{left:189.223467pt;}
.x32{left:232.445333pt;}
.x2d{left:240.005333pt;}
.x33{left:247.565333pt;}
.x2e{left:379.846667pt;}
.x2f{left:387.406667pt;}
.x34{left:394.966667pt;}
.xc{left:404.481333pt;}
.xe{left:406.284800pt;}
.x23{left:407.879733pt;}
.x24{left:418.719733pt;}
.x27{left:422.490400pt;}
.x14{left:425.195867pt;}
.x1a{left:426.155867pt;}
.x9{left:427.090133pt;}
.x37{left:428.980800pt;}
.x18{left:430.582533pt;}
.x10{left:436.524800pt;}
.x1e{left:441.388133pt;}
.x1f{left:447.874133pt;}
.x25{left:450.439733pt;}
.x15{left:455.435867pt;}
.xa{left:457.330133pt;}
.x1c{left:464.275867pt;}
.xf{left:466.898133pt;}
.x22{left:498.733067pt;}
.x29{left:515.107733pt;}
.x19{left:517.635867pt;}
.x26{left:536.519733pt;}
.x17{left:537.529200pt;}
.x1b{left:539.489200pt;}
.x16{left:544.809200pt;}
.x1d{left:555.449200pt;}
.x30{left:587.718667pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x38{left:642.328400pt;}
.x12{left:648.248667pt;}
.x3a{left:662.011867pt;}
.x20{left:667.148800pt;}
}




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