
    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_098065fcfe255c7ad83ee243.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_2de2ecdcefffe702c72b3261.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_a2124055be65165b8049b25e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b23d7a8535b65f83d3f2feac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_f90bcf2886c3c7a2ffb1c3a2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_790bf4adc1fead993dd26cc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.718750;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_f373b09ab98ba0c1b9af9393.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_1a481d5f0a114b05c795bf6e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.476600px;}
.v1{vertical-align:22.655400px;}
.ls5d{letter-spacing:-5.328000px;}
.ls59{letter-spacing:-3.552000px;}
.ls15{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.540000px;}
.ls5c{letter-spacing:-0.420000px;}
.ls4e{letter-spacing:-0.300000px;}
.ls91{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls3d{letter-spacing:-0.060000px;}
.ls90{letter-spacing:-0.048000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls74{letter-spacing:0.048000px;}
.ls2e{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.192000px;}
.ls26{letter-spacing:0.240000px;}
.ls6c{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.336000px;}
.ls21{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.384000px;}
.ls18{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.480000px;}
.ls70{letter-spacing:0.528000px;}
.ls1b{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.624000px;}
.lsf{letter-spacing:0.660000px;}
.ls7d{letter-spacing:0.672000px;}
.ls4d{letter-spacing:0.720000px;}
.ls7b{letter-spacing:0.768000px;}
.ls3f{letter-spacing:0.780000px;}
.ls79{letter-spacing:0.816000px;}
.ls1a{letter-spacing:0.840000px;}
.ls75{letter-spacing:0.864000px;}
.ls1e{letter-spacing:0.900000px;}
.ls8d{letter-spacing:0.912000px;}
.ls44{letter-spacing:0.960000px;}
.ls19{letter-spacing:1.020000px;}
.ls12{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.140000px;}
.ls6{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls8f{letter-spacing:1.248000px;}
.ls2b{letter-spacing:1.260000px;}
.ls6d{letter-spacing:1.296000px;}
.ls25{letter-spacing:1.320000px;}
.ls8e{letter-spacing:1.344000px;}
.ls27{letter-spacing:1.380000px;}
.ls80{letter-spacing:1.392000px;}
.ls1d{letter-spacing:1.440000px;}
.ls68{letter-spacing:1.488000px;}
.ls2a{letter-spacing:1.500000px;}
.ls72{letter-spacing:1.536000px;}
.ls24{letter-spacing:1.560000px;}
.ls89{letter-spacing:1.584000px;}
.ls2f{letter-spacing:1.620000px;}
.ls6a{letter-spacing:1.632000px;}
.ls39{letter-spacing:1.680000px;}
.ls38{letter-spacing:1.740000px;}
.ls87{letter-spacing:1.776000px;}
.ls42{letter-spacing:1.800000px;}
.ls73{letter-spacing:1.824000px;}
.lsc{letter-spacing:1.860000px;}
.ls46{letter-spacing:1.920000px;}
.ls6e{letter-spacing:1.968000px;}
.ls57{letter-spacing:1.980000px;}
.ls4f{letter-spacing:2.016000px;}
.ls41{letter-spacing:2.040000px;}
.ls7a{letter-spacing:2.064000px;}
.lsd{letter-spacing:2.100000px;}
.ls3e{letter-spacing:2.160000px;}
.ls82{letter-spacing:2.208000px;}
.ls45{letter-spacing:2.220000px;}
.ls8c{letter-spacing:2.256000px;}
.ls36{letter-spacing:2.280000px;}
.ls77{letter-spacing:2.304000px;}
.lsb{letter-spacing:2.340000px;}
.ls30{letter-spacing:2.400000px;}
.ls7e{letter-spacing:2.448000px;}
.ls5b{letter-spacing:2.460000px;}
.ls84{letter-spacing:2.496000px;}
.ls50{letter-spacing:2.520000px;}
.ls62{letter-spacing:2.580000px;}
.ls7c{letter-spacing:2.592000px;}
.ls2c{letter-spacing:2.640000px;}
.ls8b{letter-spacing:2.688000px;}
.ls34{letter-spacing:2.700000px;}
.ls32{letter-spacing:2.760000px;}
.ls5e{letter-spacing:2.820000px;}
.ls88{letter-spacing:2.832000px;}
.ls40{letter-spacing:2.880000px;}
.ls8a{letter-spacing:2.928000px;}
.ls53{letter-spacing:2.940000px;}
.ls33{letter-spacing:3.000000px;}
.ls23{letter-spacing:3.060000px;}
.ls1c{letter-spacing:3.120000px;}
.lse{letter-spacing:3.180000px;}
.ls71{letter-spacing:3.216000px;}
.ls4c{letter-spacing:3.240000px;}
.ls83{letter-spacing:3.264000px;}
.ls5f{letter-spacing:3.300000px;}
.ls81{letter-spacing:3.312000px;}
.ls49{letter-spacing:3.360000px;}
.ls54{letter-spacing:3.420000px;}
.ls51{letter-spacing:3.480000px;}
.ls86{letter-spacing:3.504000px;}
.ls29{letter-spacing:3.540000px;}
.ls67{letter-spacing:3.600000px;}
.ls22{letter-spacing:3.660000px;}
.ls85{letter-spacing:3.696000px;}
.ls4a{letter-spacing:3.720000px;}
.ls55{letter-spacing:3.780000px;}
.ls2d{letter-spacing:3.840000px;}
.ls48{letter-spacing:3.900000px;}
.ls69{letter-spacing:3.936000px;}
.ls58{letter-spacing:4.020000px;}
.ls66{letter-spacing:4.080000px;}
.ls35{letter-spacing:4.140000px;}
.ls6f{letter-spacing:4.176000px;}
.ls37{letter-spacing:4.380000px;}
.ls7f{letter-spacing:4.560000px;}
.ls56{letter-spacing:4.680000px;}
.ls76{letter-spacing:4.752000px;}
.ls60{letter-spacing:4.800000px;}
.ls4b{letter-spacing:4.860000px;}
.ls63{letter-spacing:4.920000px;}
.ls43{letter-spacing:5.040000px;}
.ls3a{letter-spacing:5.160000px;}
.ls47{letter-spacing:5.220000px;}
.ls5a{letter-spacing:5.400000px;}
.ls61{letter-spacing:5.760000px;}
.ls64{letter-spacing:6.360000px;}
.ls31{letter-spacing:7.080000px;}
.ls65{letter-spacing:7.320000px;}
.ls52{letter-spacing:7.860000px;}
.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;}
}
.ws0{word-spacing:-23.352000px;}
.ws3{word-spacing:-19.020000px;}
.ws4{word-spacing:-18.780000px;}
.ws1c{word-spacing:-18.420000px;}
.ws5{word-spacing:-17.880000px;}
.ws6{word-spacing:-16.800000px;}
.ws7{word-spacing:-16.680000px;}
.ws5f{word-spacing:-16.500000px;}
.ws5e{word-spacing:-16.260000px;}
.ws71{word-spacing:-15.648000px;}
.ws6f{word-spacing:-15.024000px;}
.ws1d{word-spacing:-14.178000px;}
.ws7f{word-spacing:-14.112000px;}
.ws70{word-spacing:-13.584000px;}
.ws6e{word-spacing:-13.488000px;}
.ws2{word-spacing:-13.344000px;}
.ws80{word-spacing:-13.056000px;}
.ws1{word-spacing:-11.008800px;}
.ws60{word-spacing:-8.016000px;}
.ws4c{word-spacing:-8.006400px;}
.ws77{word-spacing:-4.176000px;}
.ws89{word-spacing:-4.080000px;}
.ws3a{word-spacing:-3.300000px;}
.ws9{word-spacing:-2.664000px;}
.ws4b{word-spacing:-2.640000px;}
.ws56{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.220000px;}
.ws72{word-spacing:-2.040000px;}
.ws59{word-spacing:-1.980000px;}
.ws76{word-spacing:-1.920000px;}
.ws2f{word-spacing:-1.680000px;}
.ws5a{word-spacing:-1.200000px;}
.ws6c{word-spacing:-1.080000px;}
.ws7e{word-spacing:-0.864000px;}
.ws84{word-spacing:-0.768000px;}
.ws75{word-spacing:-0.720000px;}
.ws86{word-spacing:-0.672000px;}
.ws15{word-spacing:-0.660000px;}
.ws7a{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.420000px;}
.ws34{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.336000px;}
.ws8a{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.240000px;}
.wse{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.180000px;}
.ws83{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.120000px;}
.ws7b{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws8b{word-spacing:0.096000px;}
.ws62{word-spacing:0.120000px;}
.ws46{word-spacing:0.180000px;}
.ws3e{word-spacing:0.240000px;}
.ws18{word-spacing:0.540000px;}
.ws8d{word-spacing:0.624000px;}
.ws22{word-spacing:0.660000px;}
.ws38{word-spacing:0.780000px;}
.ws66{word-spacing:0.840000px;}
.ws3f{word-spacing:0.900000px;}
.ws7c{word-spacing:0.912000px;}
.ws58{word-spacing:0.960000px;}
.ws7d{word-spacing:1.008000px;}
.ws2e{word-spacing:1.020000px;}
.ws79{word-spacing:1.056000px;}
.ws2b{word-spacing:1.140000px;}
.ws1b{word-spacing:1.380000px;}
.ws4a{word-spacing:1.392000px;}
.ws3c{word-spacing:1.440000px;}
.ws2a{word-spacing:1.500000px;}
.ws45{word-spacing:1.560000px;}
.ws28{word-spacing:1.620000px;}
.ws3d{word-spacing:1.728000px;}
.ws73{word-spacing:1.776000px;}
.ws20{word-spacing:1.860000px;}
.ws81{word-spacing:1.872000px;}
.ws1f{word-spacing:1.920000px;}
.ws2c{word-spacing:1.980000px;}
.ws33{word-spacing:2.100000px;}
.ws55{word-spacing:2.160000px;}
.ws82{word-spacing:2.208000px;}
.ws13{word-spacing:2.220000px;}
.ws27{word-spacing:2.280000px;}
.ws87{word-spacing:2.352000px;}
.ws6d{word-spacing:2.400000px;}
.ws5c{word-spacing:2.460000px;}
.ws39{word-spacing:2.520000px;}
.ws2d{word-spacing:2.580000px;}
.ws78{word-spacing:2.592000px;}
.ws65{word-spacing:2.640000px;}
.ws24{word-spacing:2.700000px;}
.ws88{word-spacing:2.736000px;}
.ws47{word-spacing:2.880000px;}
.ws35{word-spacing:2.940000px;}
.ws36{word-spacing:3.000000px;}
.ws25{word-spacing:3.060000px;}
.wsd{word-spacing:3.072000px;}
.ws11{word-spacing:3.120000px;}
.ws67{word-spacing:3.180000px;}
.ws74{word-spacing:3.264000px;}
.ws19{word-spacing:3.300000px;}
.ws1a{word-spacing:3.420000px;}
.ws69{word-spacing:3.480000px;}
.ws44{word-spacing:3.540000px;}
.ws85{word-spacing:3.552000px;}
.ws6a{word-spacing:3.600000px;}
.ws8c{word-spacing:3.696000px;}
.wsf{word-spacing:3.840000px;}
.ws40{word-spacing:3.900000px;}
.ws64{word-spacing:3.960000px;}
.ws42{word-spacing:4.020000px;}
.ws68{word-spacing:4.032000px;}
.wsa{word-spacing:4.080000px;}
.ws43{word-spacing:4.140000px;}
.ws5d{word-spacing:4.320000px;}
.ws10{word-spacing:4.368000px;}
.wsb{word-spacing:4.416000px;}
.ws26{word-spacing:4.500000px;}
.ws16{word-spacing:4.560000px;}
.ws63{word-spacing:4.620000px;}
.ws37{word-spacing:4.680000px;}
.ws29{word-spacing:4.740000px;}
.ws5b{word-spacing:4.920000px;}
.ws6b{word-spacing:4.980000px;}
.ws23{word-spacing:5.160000px;}
.ws41{word-spacing:5.220000px;}
.ws57{word-spacing:5.340000px;}
.ws30{word-spacing:5.400000px;}
.ws14{word-spacing:5.460000px;}
.ws12{word-spacing:5.520000px;}
.ws48{word-spacing:163.296000px;}
.ws50{word-spacing:443.184000px;}
.ws4d{word-spacing:456.528000px;}
.ws61{word-spacing:462.816000px;}
.ws4f{word-spacing:481.872000px;}
.ws51{word-spacing:488.544000px;}
.ws4e{word-spacing:495.216000px;}
.ws54{word-spacing:515.232000px;}
.ws53{word-spacing:524.064000px;}
.ws52{word-spacing:530.352000px;}
.ws3b{word-spacing:952.704000px;}
.ws49{word-spacing:1387.296000px;}
._a{margin-left:-2898.126000px;}
._b{margin-left:-2874.309000px;}
._8{margin-left:-7.440000px;}
._2{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.320000px;}
._48{margin-left:-3.312000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.038000px;}
._7{width:1.152000px;}
._47{width:2.280000px;}
._5{width:3.312000px;}
._6{width:4.800000px;}
._9{width:6.060000px;}
._2a{width:7.170000px;}
._f{width:43.680000px;}
._18{width:94.416000px;}
._1b{width:130.464000px;}
._e{width:135.744000px;}
._21{width:137.088000px;}
._17{width:150.432000px;}
._26{width:160.176000px;}
._28{width:173.808000px;}
._22{width:181.680000px;}
._20{width:184.176000px;}
._27{width:187.152000px;}
._15{width:192.624000px;}
._1c{width:195.936000px;}
._16{width:197.520000px;}
._19{width:200.448000px;}
._1d{width:202.416000px;}
._29{width:203.760000px;}
._1a{width:205.152000px;}
._12{width:209.088000px;}
._1e{width:212.064000px;}
._1f{width:213.072000px;}
._13{width:215.760000px;}
._25{width:218.016000px;}
._10{width:220.032000px;}
._11{width:221.088000px;}
._14{width:222.432000px;}
._23{width:227.760000px;}
._d{width:242.448000px;}
._c{width:248.112000px;}
._24{width:273.168000px;}
._45{width:314.592000px;}
._41{width:348.336000px;}
._40{width:353.568000px;}
._3b{width:355.008000px;}
._3c{width:361.680000px;}
._3a{width:362.832000px;}
._44{width:375.024000px;}
._43{width:380.256000px;}
._46{width:453.168000px;}
._3e{width:460.272000px;}
._38{width:466.944000px;}
._2c{width:488.592000px;}
._31{width:515.184000px;}
._30{width:528.576000px;}
._34{width:535.248000px;}
._2f{width:541.920000px;}
._37{width:558.864000px;}
._2b{width:566.208000px;}
._33{width:568.848000px;}
._2d{width:579.312000px;}
._32{width:582.192000px;}
._39{width:585.936000px;}
._42{width:587.568000px;}
._2e{width:595.536000px;}
._3d{width:612.624000px;}
._3f{width:614.256000px;}
._36{width:685.680000px;}
._35{width:858.816000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y12b{bottom:83.148600px;}
.y18e{bottom:83.228850px;}
.y187{bottom:83.266050px;}
.y100{bottom:83.363850px;}
.y62{bottom:83.367600px;}
.y2b{bottom:83.493900px;}
.y10f{bottom:83.513850px;}
.y183{bottom:83.596650px;}
.yc9{bottom:83.597550px;}
.y92{bottom:83.802600px;}
.y149{bottom:84.487200px;}
.y182{bottom:92.467650px;}
.y192{bottom:94.796700px;}
.y1d2{bottom:94.938300px;}
.y186{bottom:99.010050px;}
.y18d{bottom:101.228850px;}
.yff{bottom:101.363850px;}
.y61{bottom:101.367600px;}
.y10e{bottom:101.513850px;}
.y91{bottom:101.802600px;}
.y12a{bottom:108.660600px;}
.y181{bottom:108.715650px;}
.y191{bottom:109.796700px;}
.y1d1{bottom:109.938300px;}
.y148{bottom:109.999200px;}
.y18c{bottom:119.228850px;}
.yfe{bottom:119.363850px;}
.y60{bottom:119.367600px;}
.y10d{bottom:119.513850px;}
.yc4{bottom:119.532600px;}
.y1d{bottom:121.513200px;}
.y190{bottom:124.796700px;}
.y129{bottom:124.908600px;}
.y1d0{bottom:124.938300px;}
.y180{bottom:124.963650px;}
.y147{bottom:126.247200px;}
.y18b{bottom:137.228850px;}
.yfd{bottom:137.363850px;}
.y5f{bottom:137.367600px;}
.y10c{bottom:137.513850px;}
.yc3{bottom:137.532600px;}
.y90{bottom:137.802600px;}
.y18f{bottom:139.796700px;}
.y1cf{bottom:139.938300px;}
.y128{bottom:141.156600px;}
.y17f{bottom:141.211650px;}
.y146{bottom:142.495200px;}
.y1ce{bottom:154.938300px;}
.yfc{bottom:155.363850px;}
.y5e{bottom:155.367600px;}
.y10b{bottom:155.513850px;}
.yc2{bottom:155.532600px;}
.y127{bottom:157.404600px;}
.y17e{bottom:157.459650px;}
.y145{bottom:158.743200px;}
.y1cd{bottom:169.938300px;}
.y231{bottom:169.941300px;}
.y18a{bottom:173.228850px;}
.yfb{bottom:173.363850px;}
.y5d{bottom:173.367600px;}
.y10a{bottom:173.513850px;}
.yc1{bottom:173.532600px;}
.y8f{bottom:173.652600px;}
.y144{bottom:174.991200px;}
.y27{bottom:182.580150px;}
.y1cc{bottom:184.938300px;}
.y230{bottom:184.941300px;}
.y17d{bottom:186.463650px;}
.y126{bottom:189.900600px;}
.y143{bottom:191.239200px;}
.yfa{bottom:191.363850px;}
.y5c{bottom:191.367600px;}
.y109{bottom:191.513850px;}
.yc0{bottom:191.532600px;}
.y8e{bottom:191.652600px;}
.y1cb{bottom:199.938300px;}
.y22f{bottom:199.941300px;}
.y26{bottom:200.580150px;}
.y17b{bottom:200.959650px;}
.y125{bottom:206.148600px;}
.y142{bottom:207.487200px;}
.yf9{bottom:209.363850px;}
.y5b{bottom:209.367600px;}
.y108{bottom:209.513850px;}
.ybf{bottom:209.532600px;}
.y8d{bottom:209.652600px;}
.y1ca{bottom:214.938300px;}
.y22e{bottom:214.941300px;}
.y17c{bottom:215.467650px;}
.y25{bottom:218.580150px;}
.y124{bottom:222.396600px;}
.y141{bottom:223.735200px;}
.yf8{bottom:227.363850px;}
.y5a{bottom:227.367600px;}
.y107{bottom:227.513850px;}
.ybe{bottom:227.532600px;}
.y8c{bottom:227.652600px;}
.y1c9{bottom:229.938300px;}
.y22d{bottom:229.941300px;}
.y24{bottom:236.580150px;}
.y123{bottom:238.696050px;}
.y140{bottom:239.983200px;}
.y1c8{bottom:244.938300px;}
.y22c{bottom:244.941300px;}
.yf7{bottom:245.363850px;}
.y59{bottom:245.367600px;}
.y106{bottom:245.513850px;}
.ybd{bottom:245.532600px;}
.y8b{bottom:245.652600px;}
.y17a{bottom:247.777050px;}
.y23{bottom:254.580150px;}
.y122{bottom:254.944050px;}
.y13f{bottom:256.231200px;}
.y1c7{bottom:259.938300px;}
.y22b{bottom:259.941300px;}
.yf6{bottom:263.363850px;}
.y58{bottom:263.367600px;}
.y105{bottom:263.513850px;}
.ybc{bottom:263.532600px;}
.y8a{bottom:263.652600px;}
.y13e{bottom:272.479200px;}
.y22{bottom:272.580150px;}
.y1c6{bottom:274.938300px;}
.y22a{bottom:274.941300px;}
.yf5{bottom:281.363850px;}
.y57{bottom:281.367600px;}
.y104{bottom:281.513850px;}
.ybb{bottom:281.532600px;}
.y89{bottom:281.652600px;}
.y121{bottom:283.948050px;}
.y13d{bottom:288.727200px;}
.y1c5{bottom:289.938300px;}
.y229{bottom:289.941300px;}
.y21{bottom:290.580150px;}
.yca{bottom:292.867500px;}
.y179{bottom:298.975350px;}
.yf4{bottom:299.363850px;}
.y56{bottom:299.367600px;}
.y103{bottom:299.513850px;}
.yba{bottom:299.532600px;}
.y88{bottom:299.652600px;}
.y120{bottom:300.196050px;}
.y1c4{bottom:304.938300px;}
.y228{bottom:304.941300px;}
.y13c{bottom:304.975200px;}
.y20{bottom:308.580150px;}
.y178{bottom:315.223350px;}
.y11f{bottom:316.444050px;}
.yf3{bottom:317.363850px;}
.y55{bottom:317.367600px;}
.yb9{bottom:317.532600px;}
.y87{bottom:317.652600px;}
.y1c3{bottom:319.938300px;}
.y227{bottom:319.941300px;}
.y13b{bottom:321.223200px;}
.y1f{bottom:326.580150px;}
.y177{bottom:331.471350px;}
.y11e{bottom:332.692050px;}
.y1c2{bottom:334.938300px;}
.y226{bottom:334.941300px;}
.yf2{bottom:335.363850px;}
.y54{bottom:335.367600px;}
.y102{bottom:335.513850px;}
.yb8{bottom:335.532600px;}
.y86{bottom:335.652600px;}
.y28{bottom:344.580150px;}
.yc8{bottom:348.437550px;}
.y11d{bottom:348.940050px;}
.y201{bottom:349.938300px;}
.y1c1{bottom:349.940700px;}
.y225{bottom:349.941300px;}
.y13a{bottom:350.227200px;}
.yf1{bottom:353.363850px;}
.y53{bottom:353.367600px;}
.yb7{bottom:353.532600px;}
.y85{bottom:353.652600px;}
.y176{bottom:360.475350px;}
.y1e{bottom:362.580150px;}
.yc7{bottom:364.181550px;}
.y200{bottom:364.938300px;}
.y1c0{bottom:364.940700px;}
.y224{bottom:364.941300px;}
.y11c{bottom:365.188050px;}
.y139{bottom:366.727200px;}
.yf0{bottom:371.363850px;}
.y52{bottom:371.367600px;}
.yb6{bottom:371.532600px;}
.y84{bottom:371.652600px;}
.y174{bottom:374.971350px;}
.yc6{bottom:379.925550px;}
.y1ff{bottom:379.938300px;}
.y1bf{bottom:379.940700px;}
.y223{bottom:379.941300px;}
.y11b{bottom:381.436050px;}
.yef{bottom:389.363850px;}
.y51{bottom:389.367600px;}
.y175{bottom:389.479350px;}
.yb5{bottom:389.532600px;}
.y83{bottom:389.652600px;}
.y189{bottom:391.522050px;}
.y1fe{bottom:394.938300px;}
.y1be{bottom:394.940700px;}
.y222{bottom:394.941300px;}
.yc5{bottom:395.669550px;}
.y11a{bottom:397.684050px;}
.y138{bottom:399.057600px;}
.y185{bottom:405.556650px;}
.yee{bottom:407.363850px;}
.y50{bottom:407.367600px;}
.yb4{bottom:407.532600px;}
.y82{bottom:407.652600px;}
.y1fd{bottom:409.938300px;}
.y1bd{bottom:409.940700px;}
.y221{bottom:409.941300px;}
.y119{bottom:413.932050px;}
.y173{bottom:421.788900px;}
.y1fc{bottom:424.938300px;}
.y1bc{bottom:424.940700px;}
.y220{bottom:424.941300px;}
.yed{bottom:425.363850px;}
.y4f{bottom:425.367600px;}
.yb3{bottom:425.532600px;}
.y81{bottom:425.652600px;}
.y118{bottom:430.180050px;}
.y12e{bottom:439.771950px;}
.y1fb{bottom:439.938300px;}
.y1bb{bottom:439.940700px;}
.y21f{bottom:439.941300px;}
.yec{bottom:443.363850px;}
.y4e{bottom:443.367600px;}
.yb2{bottom:443.532600px;}
.y80{bottom:443.652600px;}
.y1c{bottom:447.338550px;}
.y1fa{bottom:454.938300px;}
.y1ba{bottom:454.940700px;}
.y21e{bottom:454.941300px;}
.y12d{bottom:455.515950px;}
.y117{bottom:459.184050px;}
.yeb{bottom:461.363850px;}
.y4d{bottom:461.367600px;}
.y7f{bottom:461.652600px;}
.y172{bottom:463.998900px;}
.y1f9{bottom:469.938300px;}
.y1b9{bottom:469.940700px;}
.y21d{bottom:469.941300px;}
.y116{bottom:475.684050px;}
.yea{bottom:479.363850px;}
.y4c{bottom:479.367600px;}
.yb1{bottom:479.532600px;}
.y1b{bottom:480.194550px;}
.y1f8{bottom:484.938300px;}
.y1b8{bottom:484.940700px;}
.y21c{bottom:484.941300px;}
.y171{bottom:489.510900px;}
.y1a{bottom:495.194550px;}
.ye9{bottom:497.363850px;}
.y4b{bottom:497.367600px;}
.y7e{bottom:497.652600px;}
.y1f7{bottom:499.938300px;}
.y1b7{bottom:499.940700px;}
.y21b{bottom:499.941300px;}
.y170{bottom:505.758900px;}
.y115{bottom:507.997500px;}
.y19{bottom:510.194550px;}
.y1f6{bottom:514.938300px;}
.y1b6{bottom:514.940700px;}
.y21a{bottom:514.941300px;}
.ye8{bottom:515.363850px;}
.y4a{bottom:515.367600px;}
.yb0{bottom:515.382600px;}
.y16f{bottom:522.006900px;}
.y18{bottom:525.194550px;}
.y1f5{bottom:529.938300px;}
.y1b5{bottom:529.940700px;}
.y219{bottom:529.941300px;}
.ye7{bottom:533.363850px;}
.y49{bottom:533.367600px;}
.yaf{bottom:533.382600px;}
.y7d{bottom:533.502600px;}
.y16e{bottom:538.254900px;}
.y17{bottom:540.194550px;}
.y1f4{bottom:544.938300px;}
.y1b4{bottom:544.940700px;}
.y218{bottom:544.941300px;}
.ye6{bottom:551.363850px;}
.y48{bottom:551.367600px;}
.yae{bottom:551.382600px;}
.y7c{bottom:551.502600px;}
.y114{bottom:552.648150px;}
.y16d{bottom:554.502900px;}
.y16{bottom:555.194550px;}
.y1f3{bottom:559.938300px;}
.y1b3{bottom:559.940700px;}
.y217{bottom:559.941300px;}
.y113{bottom:568.392150px;}
.ye5{bottom:569.363850px;}
.y47{bottom:569.367600px;}
.yad{bottom:569.382600px;}
.y7b{bottom:569.502600px;}
.y15{bottom:570.194550px;}
.y16c{bottom:570.750900px;}
.y1f2{bottom:574.938300px;}
.y1b2{bottom:574.940700px;}
.y216{bottom:574.941300px;}
.y112{bottom:584.136150px;}
.y14{bottom:585.194550px;}
.ye4{bottom:587.363850px;}
.y46{bottom:587.367600px;}
.yac{bottom:587.382600px;}
.y7a{bottom:587.502600px;}
.y1f1{bottom:589.938300px;}
.y1b1{bottom:589.940700px;}
.y215{bottom:589.941300px;}
.y16b{bottom:599.754900px;}
.y111{bottom:599.880150px;}
.y13{bottom:600.194550px;}
.y1f0{bottom:604.938300px;}
.y1b0{bottom:604.940700px;}
.y214{bottom:604.941300px;}
.ye3{bottom:605.363850px;}
.y45{bottom:605.367600px;}
.yab{bottom:605.382600px;}
.y79{bottom:605.502600px;}
.y169{bottom:614.250900px;}
.y12{bottom:615.194550px;}
.y110{bottom:615.624150px;}
.y1ef{bottom:619.938300px;}
.y1af{bottom:619.940700px;}
.y213{bottom:619.941300px;}
.ye2{bottom:623.363850px;}
.y44{bottom:623.367600px;}
.yaa{bottom:623.382600px;}
.y78{bottom:623.502600px;}
.y16a{bottom:628.758900px;}
.y11{bottom:630.194550px;}
.y1ee{bottom:634.938300px;}
.y1ae{bottom:634.940700px;}
.y212{bottom:634.941300px;}
.ye1{bottom:641.363850px;}
.y43{bottom:641.367600px;}
.ya9{bottom:641.382600px;}
.y77{bottom:641.502600px;}
.y10{bottom:645.194550px;}
.y1ed{bottom:649.938300px;}
.y1ad{bottom:649.940700px;}
.y211{bottom:649.941300px;}
.ye0{bottom:659.363850px;}
.y42{bottom:659.367600px;}
.ya8{bottom:659.382600px;}
.y76{bottom:659.502600px;}
.yf{bottom:660.194550px;}
.y168{bottom:661.088850px;}
.y1ec{bottom:664.938300px;}
.y1ac{bottom:664.940700px;}
.y210{bottom:664.941300px;}
.y188{bottom:665.134050px;}
.ye{bottom:675.194550px;}
.ydf{bottom:677.363850px;}
.y41{bottom:677.367600px;}
.ya7{bottom:677.382600px;}
.y75{bottom:677.502600px;}
.y1eb{bottom:679.938300px;}
.y1ab{bottom:679.940700px;}
.y20f{bottom:679.941300px;}
.yd{bottom:690.194550px;}
.y1ea{bottom:694.938300px;}
.y1aa{bottom:694.940700px;}
.y20e{bottom:694.941300px;}
.yde{bottom:695.363850px;}
.y40{bottom:695.367600px;}
.ya6{bottom:695.382600px;}
.y74{bottom:695.502600px;}
.yc{bottom:705.194550px;}
.y1e9{bottom:709.938300px;}
.y1a9{bottom:709.940700px;}
.y20d{bottom:709.941300px;}
.y167{bottom:713.243850px;}
.ydd{bottom:713.363850px;}
.y3f{bottom:713.367600px;}
.ya5{bottom:713.382600px;}
.y73{bottom:713.502600px;}
.y157{bottom:713.663850px;}
.yb{bottom:720.194550px;}
.y184{bottom:723.172650px;}
.y1e8{bottom:724.938300px;}
.y1a8{bottom:724.940700px;}
.y20c{bottom:724.941300px;}
.y166{bottom:731.243850px;}
.ydc{bottom:731.363850px;}
.y3e{bottom:731.367600px;}
.ya4{bottom:731.382600px;}
.y72{bottom:731.502600px;}
.y156{bottom:731.663850px;}
.y1e7{bottom:739.938300px;}
.y1a7{bottom:739.940700px;}
.y20b{bottom:739.941300px;}
.y165{bottom:749.243850px;}
.ydb{bottom:749.363850px;}
.y3d{bottom:749.367600px;}
.ya3{bottom:749.382600px;}
.y71{bottom:749.502600px;}
.y1e6{bottom:754.938300px;}
.y1a6{bottom:754.940700px;}
.y20a{bottom:754.941300px;}
.y164{bottom:767.243850px;}
.yda{bottom:767.363850px;}
.y3c{bottom:767.367600px;}
.ya2{bottom:767.382600px;}
.y70{bottom:767.502600px;}
.y155{bottom:767.663850px;}
.ya{bottom:768.938550px;}
.y1e5{bottom:769.938300px;}
.y1a5{bottom:769.940700px;}
.y209{bottom:769.941300px;}
.y9{bottom:783.338550px;}
.y1e4{bottom:784.938300px;}
.y1a4{bottom:784.940700px;}
.y208{bottom:784.941300px;}
.y163{bottom:785.243850px;}
.yd9{bottom:785.363850px;}
.y3b{bottom:785.367600px;}
.ya1{bottom:785.382600px;}
.y6f{bottom:785.502600px;}
.y137{bottom:785.517600px;}
.y1e3{bottom:799.938300px;}
.y1a3{bottom:799.940700px;}
.y207{bottom:799.941300px;}
.y162{bottom:803.243850px;}
.yd8{bottom:803.363850px;}
.y3a{bottom:803.367600px;}
.ya0{bottom:803.382600px;}
.y6e{bottom:803.502600px;}
.y154{bottom:803.513850px;}
.y136{bottom:803.517600px;}
.y8{bottom:810.494550px;}
.y1e2{bottom:814.938300px;}
.y1a2{bottom:814.940700px;}
.y206{bottom:814.941300px;}
.y161{bottom:821.243850px;}
.yd7{bottom:821.363850px;}
.y39{bottom:821.367600px;}
.y9f{bottom:821.382600px;}
.y6d{bottom:821.502600px;}
.y153{bottom:821.513850px;}
.y135{bottom:821.517600px;}
.y1e1{bottom:829.938300px;}
.y1a1{bottom:829.940700px;}
.y205{bottom:829.941300px;}
.y160{bottom:839.243850px;}
.yd6{bottom:839.363850px;}
.y38{bottom:839.367600px;}
.y9e{bottom:839.382600px;}
.y6c{bottom:839.502600px;}
.y152{bottom:839.513850px;}
.y134{bottom:839.517600px;}
.y1e0{bottom:844.938300px;}
.y1a0{bottom:844.940700px;}
.y204{bottom:844.941300px;}
.y7{bottom:844.994550px;}
.y15f{bottom:857.243850px;}
.yd5{bottom:857.363850px;}
.y37{bottom:857.367600px;}
.y9d{bottom:857.382600px;}
.y6b{bottom:857.502600px;}
.y151{bottom:857.513850px;}
.y133{bottom:857.517600px;}
.y1df{bottom:859.938300px;}
.y19f{bottom:859.940700px;}
.y203{bottom:859.941300px;}
.y6{bottom:865.612500px;}
.y1de{bottom:874.938300px;}
.y19e{bottom:874.940700px;}
.y202{bottom:874.941300px;}
.yd4{bottom:875.363850px;}
.y36{bottom:875.367600px;}
.y9c{bottom:875.382600px;}
.y6a{bottom:875.502600px;}
.y150{bottom:875.513850px;}
.y132{bottom:875.517600px;}
.y5{bottom:880.879800px;}
.y1dd{bottom:889.938300px;}
.y19d{bottom:889.940700px;}
.y15e{bottom:893.243850px;}
.yd3{bottom:893.363850px;}
.y35{bottom:893.367600px;}
.y9b{bottom:893.382600px;}
.y69{bottom:893.502600px;}
.y14f{bottom:893.513850px;}
.y131{bottom:893.517600px;}
.y1dc{bottom:904.938300px;}
.y19c{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y12c{bottom:909.000600px;}
.y101{bottom:911.228850px;}
.yd2{bottom:911.363850px;}
.y34{bottom:911.367600px;}
.y9a{bottom:911.382600px;}
.y68{bottom:911.502600px;}
.y14e{bottom:911.513850px;}
.y130{bottom:911.517600px;}
.y1db{bottom:919.938300px;}
.y19b{bottom:919.940700px;}
.yd1{bottom:929.363850px;}
.y33{bottom:929.367600px;}
.y99{bottom:929.382600px;}
.y67{bottom:929.502600px;}
.y14d{bottom:929.513850px;}
.y1da{bottom:934.938300px;}
.y19a{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.yd0{bottom:947.363850px;}
.y32{bottom:947.367600px;}
.y15d{bottom:947.378850px;}
.y98{bottom:947.382600px;}
.y66{bottom:947.502600px;}
.y14c{bottom:947.513850px;}
.y12f{bottom:947.517600px;}
.y1d9{bottom:949.938300px;}
.y199{bottom:949.940700px;}
.y1d8{bottom:964.938300px;}
.y198{bottom:964.940700px;}
.ycf{bottom:965.363850px;}
.y31{bottom:965.367600px;}
.y15c{bottom:965.378850px;}
.y97{bottom:965.382600px;}
.y65{bottom:965.502600px;}
.y14b{bottom:965.513850px;}
.y1d7{bottom:979.938300px;}
.y197{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.yce{bottom:983.363850px;}
.y30{bottom:983.367600px;}
.y15b{bottom:983.378850px;}
.y96{bottom:983.382600px;}
.y1d6{bottom:994.938300px;}
.y196{bottom:994.940700px;}
.ycd{bottom:1001.363850px;}
.y2f{bottom:1001.367600px;}
.y15a{bottom:1001.378850px;}
.y95{bottom:1001.382600px;}
.y64{bottom:1001.502600px;}
.y14a{bottom:1001.513850px;}
.y1d5{bottom:1009.938300px;}
.y195{bottom:1009.940700px;}
.ycc{bottom:1019.363850px;}
.y2e{bottom:1019.367600px;}
.y159{bottom:1019.378850px;}
.y94{bottom:1019.382600px;}
.y1d4{bottom:1024.938300px;}
.y194{bottom:1024.940700px;}
.ycb{bottom:1037.363850px;}
.y2d{bottom:1037.367600px;}
.y158{bottom:1037.378850px;}
.y93{bottom:1037.382600px;}
.y1d3{bottom:1039.938300px;}
.y193{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y63{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:31.171875px;}
.h7{height:34.992188px;}
.h9{height:35.554688px;}
.ha{height:35.580600px;}
.h10{height:35.615400px;}
.h8{height:35.625000px;}
.hd{height:37.851562px;}
.hf{height:37.851600px;}
.hb{height:43.681641px;}
.he{height:44.443359px;}
.hc{height:44.531250px;}
.h5{height:52.046025px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x17{left:78.661350px;}
.x15{left:87.803100px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1f{left:99.921300px;}
.x2e{left:106.295400px;}
.xc{left:110.555400px;}
.x3{left:125.427450px;}
.x30{left:127.555350px;}
.x6{left:131.816400px;}
.x4{left:161.571450px;}
.x11{left:165.982200px;}
.x2d{left:194.285400px;}
.x5{left:212.876400px;}
.x18{left:238.993350px;}
.x20{left:268.161300px;}
.x29{left:281.449350px;}
.x21{left:282.837300px;}
.x19{left:315.601350px;}
.x1a{left:317.929350px;}
.x1b{left:391.213350px;}
.x22{left:414.981300px;}
.x23{left:425.997300px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x12{left:478.372200px;}
.x7{left:480.491400px;}
.x2f{left:486.839400px;}
.xe{left:491.105400px;}
.x31{left:507.967350px;}
.x13{left:512.392200px;}
.x8{left:514.526400px;}
.x24{left:569.805300px;}
.x28{left:579.410400px;}
.x25{left:581.157300px;}
.x2b{left:591.940350px;}
.x1c{left:600.733350px;}
.x16{left:612.910350px;}
.x10{left:663.492300px;}
.x1d{left:667.009350px;}
.x1e{left:668.665350px;}
.x26{left:699.273300px;}
.x2{left:704.338650px;}
.x27{left:714.765300px;}
.x2a{left:717.130200px;}
.xf{left:724.221150px;}
.x2c{left:739.336350px;}
.x14{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.645867pt;}
.v1{vertical-align:20.138133pt;}
.ls5d{letter-spacing:-4.736000pt;}
.ls59{letter-spacing:-3.157333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls5c{letter-spacing:-0.373333pt;}
.ls4e{letter-spacing:-0.266667pt;}
.ls91{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls90{letter-spacing:-0.042667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls74{letter-spacing:0.042667pt;}
.ls2e{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.085333pt;}
.ls11{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.170667pt;}
.ls26{letter-spacing:0.213333pt;}
.ls6c{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.298667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.341333pt;}
.ls18{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls70{letter-spacing:0.469333pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.554667pt;}
.lsf{letter-spacing:0.586667pt;}
.ls7d{letter-spacing:0.597333pt;}
.ls4d{letter-spacing:0.640000pt;}
.ls7b{letter-spacing:0.682667pt;}
.ls3f{letter-spacing:0.693333pt;}
.ls79{letter-spacing:0.725333pt;}
.ls1a{letter-spacing:0.746667pt;}
.ls75{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls8d{letter-spacing:0.810667pt;}
.ls44{letter-spacing:0.853333pt;}
.ls19{letter-spacing:0.906667pt;}
.ls12{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.013333pt;}
.ls6{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls8f{letter-spacing:1.109333pt;}
.ls2b{letter-spacing:1.120000pt;}
.ls6d{letter-spacing:1.152000pt;}
.ls25{letter-spacing:1.173333pt;}
.ls8e{letter-spacing:1.194667pt;}
.ls27{letter-spacing:1.226667pt;}
.ls80{letter-spacing:1.237333pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls68{letter-spacing:1.322667pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls72{letter-spacing:1.365333pt;}
.ls24{letter-spacing:1.386667pt;}
.ls89{letter-spacing:1.408000pt;}
.ls2f{letter-spacing:1.440000pt;}
.ls6a{letter-spacing:1.450667pt;}
.ls39{letter-spacing:1.493333pt;}
.ls38{letter-spacing:1.546667pt;}
.ls87{letter-spacing:1.578667pt;}
.ls42{letter-spacing:1.600000pt;}
.ls73{letter-spacing:1.621333pt;}
.lsc{letter-spacing:1.653333pt;}
.ls46{letter-spacing:1.706667pt;}
.ls6e{letter-spacing:1.749333pt;}
.ls57{letter-spacing:1.760000pt;}
.ls4f{letter-spacing:1.792000pt;}
.ls41{letter-spacing:1.813333pt;}
.ls7a{letter-spacing:1.834667pt;}
.lsd{letter-spacing:1.866667pt;}
.ls3e{letter-spacing:1.920000pt;}
.ls82{letter-spacing:1.962667pt;}
.ls45{letter-spacing:1.973333pt;}
.ls8c{letter-spacing:2.005333pt;}
.ls36{letter-spacing:2.026667pt;}
.ls77{letter-spacing:2.048000pt;}
.lsb{letter-spacing:2.080000pt;}
.ls30{letter-spacing:2.133333pt;}
.ls7e{letter-spacing:2.176000pt;}
.ls5b{letter-spacing:2.186667pt;}
.ls84{letter-spacing:2.218667pt;}
.ls50{letter-spacing:2.240000pt;}
.ls62{letter-spacing:2.293333pt;}
.ls7c{letter-spacing:2.304000pt;}
.ls2c{letter-spacing:2.346667pt;}
.ls8b{letter-spacing:2.389333pt;}
.ls34{letter-spacing:2.400000pt;}
.ls32{letter-spacing:2.453333pt;}
.ls5e{letter-spacing:2.506667pt;}
.ls88{letter-spacing:2.517333pt;}
.ls40{letter-spacing:2.560000pt;}
.ls8a{letter-spacing:2.602667pt;}
.ls53{letter-spacing:2.613333pt;}
.ls33{letter-spacing:2.666667pt;}
.ls23{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:2.773333pt;}
.lse{letter-spacing:2.826667pt;}
.ls71{letter-spacing:2.858667pt;}
.ls4c{letter-spacing:2.880000pt;}
.ls83{letter-spacing:2.901333pt;}
.ls5f{letter-spacing:2.933333pt;}
.ls81{letter-spacing:2.944000pt;}
.ls49{letter-spacing:2.986667pt;}
.ls54{letter-spacing:3.040000pt;}
.ls51{letter-spacing:3.093333pt;}
.ls86{letter-spacing:3.114667pt;}
.ls29{letter-spacing:3.146667pt;}
.ls67{letter-spacing:3.200000pt;}
.ls22{letter-spacing:3.253333pt;}
.ls85{letter-spacing:3.285333pt;}
.ls4a{letter-spacing:3.306667pt;}
.ls55{letter-spacing:3.360000pt;}
.ls2d{letter-spacing:3.413333pt;}
.ls48{letter-spacing:3.466667pt;}
.ls69{letter-spacing:3.498667pt;}
.ls58{letter-spacing:3.573333pt;}
.ls66{letter-spacing:3.626667pt;}
.ls35{letter-spacing:3.680000pt;}
.ls6f{letter-spacing:3.712000pt;}
.ls37{letter-spacing:3.893333pt;}
.ls7f{letter-spacing:4.053333pt;}
.ls56{letter-spacing:4.160000pt;}
.ls76{letter-spacing:4.224000pt;}
.ls60{letter-spacing:4.266667pt;}
.ls4b{letter-spacing:4.320000pt;}
.ls63{letter-spacing:4.373333pt;}
.ls43{letter-spacing:4.480000pt;}
.ls3a{letter-spacing:4.586667pt;}
.ls47{letter-spacing:4.640000pt;}
.ls5a{letter-spacing:4.800000pt;}
.ls61{letter-spacing:5.120000pt;}
.ls64{letter-spacing:5.653333pt;}
.ls31{letter-spacing:6.293333pt;}
.ls65{letter-spacing:6.506667pt;}
.ls52{letter-spacing:6.986667pt;}
.ws0{word-spacing:-20.757333pt;}
.ws3{word-spacing:-16.906667pt;}
.ws4{word-spacing:-16.693333pt;}
.ws1c{word-spacing:-16.373333pt;}
.ws5{word-spacing:-15.893333pt;}
.ws6{word-spacing:-14.933333pt;}
.ws7{word-spacing:-14.826667pt;}
.ws5f{word-spacing:-14.666667pt;}
.ws5e{word-spacing:-14.453333pt;}
.ws71{word-spacing:-13.909333pt;}
.ws6f{word-spacing:-13.354667pt;}
.ws1d{word-spacing:-12.602667pt;}
.ws7f{word-spacing:-12.544000pt;}
.ws70{word-spacing:-12.074667pt;}
.ws6e{word-spacing:-11.989333pt;}
.ws2{word-spacing:-11.861333pt;}
.ws80{word-spacing:-11.605333pt;}
.ws1{word-spacing:-9.785600pt;}
.ws60{word-spacing:-7.125333pt;}
.ws4c{word-spacing:-7.116800pt;}
.ws77{word-spacing:-3.712000pt;}
.ws89{word-spacing:-3.626667pt;}
.ws3a{word-spacing:-2.933333pt;}
.ws9{word-spacing:-2.368000pt;}
.ws4b{word-spacing:-2.346667pt;}
.ws56{word-spacing:-2.240000pt;}
.ws31{word-spacing:-1.973333pt;}
.ws72{word-spacing:-1.813333pt;}
.ws59{word-spacing:-1.760000pt;}
.ws76{word-spacing:-1.706667pt;}
.ws2f{word-spacing:-1.493333pt;}
.ws5a{word-spacing:-1.066667pt;}
.ws6c{word-spacing:-0.960000pt;}
.ws7e{word-spacing:-0.768000pt;}
.ws84{word-spacing:-0.682667pt;}
.ws75{word-spacing:-0.640000pt;}
.ws86{word-spacing:-0.597333pt;}
.ws15{word-spacing:-0.586667pt;}
.ws7a{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.373333pt;}
.ws34{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.298667pt;}
.ws8a{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.160000pt;}
.ws83{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.106667pt;}
.ws7b{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.085333pt;}
.ws62{word-spacing:0.106667pt;}
.ws46{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws18{word-spacing:0.480000pt;}
.ws8d{word-spacing:0.554667pt;}
.ws22{word-spacing:0.586667pt;}
.ws38{word-spacing:0.693333pt;}
.ws66{word-spacing:0.746667pt;}
.ws3f{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.810667pt;}
.ws58{word-spacing:0.853333pt;}
.ws7d{word-spacing:0.896000pt;}
.ws2e{word-spacing:0.906667pt;}
.ws79{word-spacing:0.938667pt;}
.ws2b{word-spacing:1.013333pt;}
.ws1b{word-spacing:1.226667pt;}
.ws4a{word-spacing:1.237333pt;}
.ws3c{word-spacing:1.280000pt;}
.ws2a{word-spacing:1.333333pt;}
.ws45{word-spacing:1.386667pt;}
.ws28{word-spacing:1.440000pt;}
.ws3d{word-spacing:1.536000pt;}
.ws73{word-spacing:1.578667pt;}
.ws20{word-spacing:1.653333pt;}
.ws81{word-spacing:1.664000pt;}
.ws1f{word-spacing:1.706667pt;}
.ws2c{word-spacing:1.760000pt;}
.ws33{word-spacing:1.866667pt;}
.ws55{word-spacing:1.920000pt;}
.ws82{word-spacing:1.962667pt;}
.ws13{word-spacing:1.973333pt;}
.ws27{word-spacing:2.026667pt;}
.ws87{word-spacing:2.090667pt;}
.ws6d{word-spacing:2.133333pt;}
.ws5c{word-spacing:2.186667pt;}
.ws39{word-spacing:2.240000pt;}
.ws2d{word-spacing:2.293333pt;}
.ws78{word-spacing:2.304000pt;}
.ws65{word-spacing:2.346667pt;}
.ws24{word-spacing:2.400000pt;}
.ws88{word-spacing:2.432000pt;}
.ws47{word-spacing:2.560000pt;}
.ws35{word-spacing:2.613333pt;}
.ws36{word-spacing:2.666667pt;}
.ws25{word-spacing:2.720000pt;}
.wsd{word-spacing:2.730667pt;}
.ws11{word-spacing:2.773333pt;}
.ws67{word-spacing:2.826667pt;}
.ws74{word-spacing:2.901333pt;}
.ws19{word-spacing:2.933333pt;}
.ws1a{word-spacing:3.040000pt;}
.ws69{word-spacing:3.093333pt;}
.ws44{word-spacing:3.146667pt;}
.ws85{word-spacing:3.157333pt;}
.ws6a{word-spacing:3.200000pt;}
.ws8c{word-spacing:3.285333pt;}
.wsf{word-spacing:3.413333pt;}
.ws40{word-spacing:3.466667pt;}
.ws64{word-spacing:3.520000pt;}
.ws42{word-spacing:3.573333pt;}
.ws68{word-spacing:3.584000pt;}
.wsa{word-spacing:3.626667pt;}
.ws43{word-spacing:3.680000pt;}
.ws5d{word-spacing:3.840000pt;}
.ws10{word-spacing:3.882667pt;}
.wsb{word-spacing:3.925333pt;}
.ws26{word-spacing:4.000000pt;}
.ws16{word-spacing:4.053333pt;}
.ws63{word-spacing:4.106667pt;}
.ws37{word-spacing:4.160000pt;}
.ws29{word-spacing:4.213333pt;}
.ws5b{word-spacing:4.373333pt;}
.ws6b{word-spacing:4.426667pt;}
.ws23{word-spacing:4.586667pt;}
.ws41{word-spacing:4.640000pt;}
.ws57{word-spacing:4.746667pt;}
.ws30{word-spacing:4.800000pt;}
.ws14{word-spacing:4.853333pt;}
.ws12{word-spacing:4.906667pt;}
.ws48{word-spacing:145.152000pt;}
.ws50{word-spacing:393.941333pt;}
.ws4d{word-spacing:405.802667pt;}
.ws61{word-spacing:411.392000pt;}
.ws4f{word-spacing:428.330667pt;}
.ws51{word-spacing:434.261333pt;}
.ws4e{word-spacing:440.192000pt;}
.ws54{word-spacing:457.984000pt;}
.ws53{word-spacing:465.834667pt;}
.ws52{word-spacing:471.424000pt;}
.ws3b{word-spacing:846.848000pt;}
.ws49{word-spacing:1233.152000pt;}
._a{margin-left:-2576.112000pt;}
._b{margin-left:-2554.941333pt;}
._8{margin-left:-6.613333pt;}
._2{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.840000pt;}
._48{margin-left:-2.944000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.922667pt;}
._7{width:1.024000pt;}
._47{width:2.026667pt;}
._5{width:2.944000pt;}
._6{width:4.266667pt;}
._9{width:5.386667pt;}
._2a{width:6.373333pt;}
._f{width:38.826667pt;}
._18{width:83.925333pt;}
._1b{width:115.968000pt;}
._e{width:120.661333pt;}
._21{width:121.856000pt;}
._17{width:133.717333pt;}
._26{width:142.378667pt;}
._28{width:154.496000pt;}
._22{width:161.493333pt;}
._20{width:163.712000pt;}
._27{width:166.357333pt;}
._15{width:171.221333pt;}
._1c{width:174.165333pt;}
._16{width:175.573333pt;}
._19{width:178.176000pt;}
._1d{width:179.925333pt;}
._29{width:181.120000pt;}
._1a{width:182.357333pt;}
._12{width:185.856000pt;}
._1e{width:188.501333pt;}
._1f{width:189.397333pt;}
._13{width:191.786667pt;}
._25{width:193.792000pt;}
._10{width:195.584000pt;}
._11{width:196.522667pt;}
._14{width:197.717333pt;}
._23{width:202.453333pt;}
._d{width:215.509333pt;}
._c{width:220.544000pt;}
._24{width:242.816000pt;}
._45{width:279.637333pt;}
._41{width:309.632000pt;}
._40{width:314.282667pt;}
._3b{width:315.562667pt;}
._3c{width:321.493333pt;}
._3a{width:322.517333pt;}
._44{width:333.354667pt;}
._43{width:338.005333pt;}
._46{width:402.816000pt;}
._3e{width:409.130667pt;}
._38{width:415.061333pt;}
._2c{width:434.304000pt;}
._31{width:457.941333pt;}
._30{width:469.845333pt;}
._34{width:475.776000pt;}
._2f{width:481.706667pt;}
._37{width:496.768000pt;}
._2b{width:503.296000pt;}
._33{width:505.642667pt;}
._2d{width:514.944000pt;}
._32{width:517.504000pt;}
._39{width:520.832000pt;}
._42{width:522.282667pt;}
._2e{width:529.365333pt;}
._3d{width:544.554667pt;}
._3f{width:546.005333pt;}
._36{width:609.493333pt;}
._35{width:763.392000pt;}
.fs5{font-size:25.600000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y12b{bottom:73.909867pt;}
.y18e{bottom:73.981200pt;}
.y187{bottom:74.014267pt;}
.y100{bottom:74.101200pt;}
.y62{bottom:74.104533pt;}
.y2b{bottom:74.216800pt;}
.y10f{bottom:74.234533pt;}
.y183{bottom:74.308133pt;}
.yc9{bottom:74.308933pt;}
.y92{bottom:74.491200pt;}
.y149{bottom:75.099733pt;}
.y182{bottom:82.193467pt;}
.y192{bottom:84.263733pt;}
.y1d2{bottom:84.389600pt;}
.y186{bottom:88.008933pt;}
.y18d{bottom:89.981200pt;}
.yff{bottom:90.101200pt;}
.y61{bottom:90.104533pt;}
.y10e{bottom:90.234533pt;}
.y91{bottom:90.491200pt;}
.y12a{bottom:96.587200pt;}
.y181{bottom:96.636133pt;}
.y191{bottom:97.597067pt;}
.y1d1{bottom:97.722933pt;}
.y148{bottom:97.777067pt;}
.y18c{bottom:105.981200pt;}
.yfe{bottom:106.101200pt;}
.y60{bottom:106.104533pt;}
.y10d{bottom:106.234533pt;}
.yc4{bottom:106.251200pt;}
.y1d{bottom:108.011733pt;}
.y190{bottom:110.930400pt;}
.y129{bottom:111.029867pt;}
.y1d0{bottom:111.056267pt;}
.y180{bottom:111.078800pt;}
.y147{bottom:112.219733pt;}
.y18b{bottom:121.981200pt;}
.yfd{bottom:122.101200pt;}
.y5f{bottom:122.104533pt;}
.y10c{bottom:122.234533pt;}
.yc3{bottom:122.251200pt;}
.y90{bottom:122.491200pt;}
.y18f{bottom:124.263733pt;}
.y1cf{bottom:124.389600pt;}
.y128{bottom:125.472533pt;}
.y17f{bottom:125.521467pt;}
.y146{bottom:126.662400pt;}
.y1ce{bottom:137.722933pt;}
.yfc{bottom:138.101200pt;}
.y5e{bottom:138.104533pt;}
.y10b{bottom:138.234533pt;}
.yc2{bottom:138.251200pt;}
.y127{bottom:139.915200pt;}
.y17e{bottom:139.964133pt;}
.y145{bottom:141.105067pt;}
.y1cd{bottom:151.056267pt;}
.y231{bottom:151.058933pt;}
.y18a{bottom:153.981200pt;}
.yfb{bottom:154.101200pt;}
.y5d{bottom:154.104533pt;}
.y10a{bottom:154.234533pt;}
.yc1{bottom:154.251200pt;}
.y8f{bottom:154.357867pt;}
.y144{bottom:155.547733pt;}
.y27{bottom:162.293467pt;}
.y1cc{bottom:164.389600pt;}
.y230{bottom:164.392267pt;}
.y17d{bottom:165.745467pt;}
.y126{bottom:168.800533pt;}
.y143{bottom:169.990400pt;}
.yfa{bottom:170.101200pt;}
.y5c{bottom:170.104533pt;}
.y109{bottom:170.234533pt;}
.yc0{bottom:170.251200pt;}
.y8e{bottom:170.357867pt;}
.y1cb{bottom:177.722933pt;}
.y22f{bottom:177.725600pt;}
.y26{bottom:178.293467pt;}
.y17b{bottom:178.630800pt;}
.y125{bottom:183.243200pt;}
.y142{bottom:184.433067pt;}
.yf9{bottom:186.101200pt;}
.y5b{bottom:186.104533pt;}
.y108{bottom:186.234533pt;}
.ybf{bottom:186.251200pt;}
.y8d{bottom:186.357867pt;}
.y1ca{bottom:191.056267pt;}
.y22e{bottom:191.058933pt;}
.y17c{bottom:191.526800pt;}
.y25{bottom:194.293467pt;}
.y124{bottom:197.685867pt;}
.y141{bottom:198.875733pt;}
.yf8{bottom:202.101200pt;}
.y5a{bottom:202.104533pt;}
.y107{bottom:202.234533pt;}
.ybe{bottom:202.251200pt;}
.y8c{bottom:202.357867pt;}
.y1c9{bottom:204.389600pt;}
.y22d{bottom:204.392267pt;}
.y24{bottom:210.293467pt;}
.y123{bottom:212.174267pt;}
.y140{bottom:213.318400pt;}
.y1c8{bottom:217.722933pt;}
.y22c{bottom:217.725600pt;}
.yf7{bottom:218.101200pt;}
.y59{bottom:218.104533pt;}
.y106{bottom:218.234533pt;}
.ybd{bottom:218.251200pt;}
.y8b{bottom:218.357867pt;}
.y17a{bottom:220.246267pt;}
.y23{bottom:226.293467pt;}
.y122{bottom:226.616933pt;}
.y13f{bottom:227.761067pt;}
.y1c7{bottom:231.056267pt;}
.y22b{bottom:231.058933pt;}
.yf6{bottom:234.101200pt;}
.y58{bottom:234.104533pt;}
.y105{bottom:234.234533pt;}
.ybc{bottom:234.251200pt;}
.y8a{bottom:234.357867pt;}
.y13e{bottom:242.203733pt;}
.y22{bottom:242.293467pt;}
.y1c6{bottom:244.389600pt;}
.y22a{bottom:244.392267pt;}
.yf5{bottom:250.101200pt;}
.y57{bottom:250.104533pt;}
.y104{bottom:250.234533pt;}
.ybb{bottom:250.251200pt;}
.y89{bottom:250.357867pt;}
.y121{bottom:252.398267pt;}
.y13d{bottom:256.646400pt;}
.y1c5{bottom:257.722933pt;}
.y229{bottom:257.725600pt;}
.y21{bottom:258.293467pt;}
.yca{bottom:260.326667pt;}
.y179{bottom:265.755867pt;}
.yf4{bottom:266.101200pt;}
.y56{bottom:266.104533pt;}
.y103{bottom:266.234533pt;}
.yba{bottom:266.251200pt;}
.y88{bottom:266.357867pt;}
.y120{bottom:266.840933pt;}
.y1c4{bottom:271.056267pt;}
.y228{bottom:271.058933pt;}
.y13c{bottom:271.089067pt;}
.y20{bottom:274.293467pt;}
.y178{bottom:280.198533pt;}
.y11f{bottom:281.283600pt;}
.yf3{bottom:282.101200pt;}
.y55{bottom:282.104533pt;}
.yb9{bottom:282.251200pt;}
.y87{bottom:282.357867pt;}
.y1c3{bottom:284.389600pt;}
.y227{bottom:284.392267pt;}
.y13b{bottom:285.531733pt;}
.y1f{bottom:290.293467pt;}
.y177{bottom:294.641200pt;}
.y11e{bottom:295.726267pt;}
.y1c2{bottom:297.722933pt;}
.y226{bottom:297.725600pt;}
.yf2{bottom:298.101200pt;}
.y54{bottom:298.104533pt;}
.y102{bottom:298.234533pt;}
.yb8{bottom:298.251200pt;}
.y86{bottom:298.357867pt;}
.y28{bottom:306.293467pt;}
.yc8{bottom:309.722267pt;}
.y11d{bottom:310.168933pt;}
.y201{bottom:311.056267pt;}
.y1c1{bottom:311.058400pt;}
.y225{bottom:311.058933pt;}
.y13a{bottom:311.313067pt;}
.yf1{bottom:314.101200pt;}
.y53{bottom:314.104533pt;}
.yb7{bottom:314.251200pt;}
.y85{bottom:314.357867pt;}
.y176{bottom:320.422533pt;}
.y1e{bottom:322.293467pt;}
.yc7{bottom:323.716933pt;}
.y200{bottom:324.389600pt;}
.y1c0{bottom:324.391733pt;}
.y224{bottom:324.392267pt;}
.y11c{bottom:324.611600pt;}
.y139{bottom:325.979733pt;}
.yf0{bottom:330.101200pt;}
.y52{bottom:330.104533pt;}
.yb6{bottom:330.251200pt;}
.y84{bottom:330.357867pt;}
.y174{bottom:333.307867pt;}
.yc6{bottom:337.711600pt;}
.y1ff{bottom:337.722933pt;}
.y1bf{bottom:337.725067pt;}
.y223{bottom:337.725600pt;}
.y11b{bottom:339.054267pt;}
.yef{bottom:346.101200pt;}
.y51{bottom:346.104533pt;}
.y175{bottom:346.203867pt;}
.yb5{bottom:346.251200pt;}
.y83{bottom:346.357867pt;}
.y189{bottom:348.019600pt;}
.y1fe{bottom:351.056267pt;}
.y1be{bottom:351.058400pt;}
.y222{bottom:351.058933pt;}
.yc5{bottom:351.706267pt;}
.y11a{bottom:353.496933pt;}
.y138{bottom:354.717867pt;}
.y185{bottom:360.494800pt;}
.yee{bottom:362.101200pt;}
.y50{bottom:362.104533pt;}
.yb4{bottom:362.251200pt;}
.y82{bottom:362.357867pt;}
.y1fd{bottom:364.389600pt;}
.y1bd{bottom:364.391733pt;}
.y221{bottom:364.392267pt;}
.y119{bottom:367.939600pt;}
.y173{bottom:374.923467pt;}
.y1fc{bottom:377.722933pt;}
.y1bc{bottom:377.725067pt;}
.y220{bottom:377.725600pt;}
.yed{bottom:378.101200pt;}
.y4f{bottom:378.104533pt;}
.yb3{bottom:378.251200pt;}
.y81{bottom:378.357867pt;}
.y118{bottom:382.382267pt;}
.y12e{bottom:390.908400pt;}
.y1fb{bottom:391.056267pt;}
.y1bb{bottom:391.058400pt;}
.y21f{bottom:391.058933pt;}
.yec{bottom:394.101200pt;}
.y4e{bottom:394.104533pt;}
.yb2{bottom:394.251200pt;}
.y80{bottom:394.357867pt;}
.y1c{bottom:397.634267pt;}
.y1fa{bottom:404.389600pt;}
.y1ba{bottom:404.391733pt;}
.y21e{bottom:404.392267pt;}
.y12d{bottom:404.903067pt;}
.y117{bottom:408.163600pt;}
.yeb{bottom:410.101200pt;}
.y4d{bottom:410.104533pt;}
.y7f{bottom:410.357867pt;}
.y172{bottom:412.443467pt;}
.y1f9{bottom:417.722933pt;}
.y1b9{bottom:417.725067pt;}
.y21d{bottom:417.725600pt;}
.y116{bottom:422.830267pt;}
.yea{bottom:426.101200pt;}
.y4c{bottom:426.104533pt;}
.yb1{bottom:426.251200pt;}
.y1b{bottom:426.839600pt;}
.y1f8{bottom:431.056267pt;}
.y1b8{bottom:431.058400pt;}
.y21c{bottom:431.058933pt;}
.y171{bottom:435.120800pt;}
.y1a{bottom:440.172933pt;}
.ye9{bottom:442.101200pt;}
.y4b{bottom:442.104533pt;}
.y7e{bottom:442.357867pt;}
.y1f7{bottom:444.389600pt;}
.y1b7{bottom:444.391733pt;}
.y21b{bottom:444.392267pt;}
.y170{bottom:449.563467pt;}
.y115{bottom:451.553333pt;}
.y19{bottom:453.506267pt;}
.y1f6{bottom:457.722933pt;}
.y1b6{bottom:457.725067pt;}
.y21a{bottom:457.725600pt;}
.ye8{bottom:458.101200pt;}
.y4a{bottom:458.104533pt;}
.yb0{bottom:458.117867pt;}
.y16f{bottom:464.006133pt;}
.y18{bottom:466.839600pt;}
.y1f5{bottom:471.056267pt;}
.y1b5{bottom:471.058400pt;}
.y219{bottom:471.058933pt;}
.ye7{bottom:474.101200pt;}
.y49{bottom:474.104533pt;}
.yaf{bottom:474.117867pt;}
.y7d{bottom:474.224533pt;}
.y16e{bottom:478.448800pt;}
.y17{bottom:480.172933pt;}
.y1f4{bottom:484.389600pt;}
.y1b4{bottom:484.391733pt;}
.y218{bottom:484.392267pt;}
.ye6{bottom:490.101200pt;}
.y48{bottom:490.104533pt;}
.yae{bottom:490.117867pt;}
.y7c{bottom:490.224533pt;}
.y114{bottom:491.242800pt;}
.y16d{bottom:492.891467pt;}
.y16{bottom:493.506267pt;}
.y1f3{bottom:497.722933pt;}
.y1b3{bottom:497.725067pt;}
.y217{bottom:497.725600pt;}
.y113{bottom:505.237467pt;}
.ye5{bottom:506.101200pt;}
.y47{bottom:506.104533pt;}
.yad{bottom:506.117867pt;}
.y7b{bottom:506.224533pt;}
.y15{bottom:506.839600pt;}
.y16c{bottom:507.334133pt;}
.y1f2{bottom:511.056267pt;}
.y1b2{bottom:511.058400pt;}
.y216{bottom:511.058933pt;}
.y112{bottom:519.232133pt;}
.y14{bottom:520.172933pt;}
.ye4{bottom:522.101200pt;}
.y46{bottom:522.104533pt;}
.yac{bottom:522.117867pt;}
.y7a{bottom:522.224533pt;}
.y1f1{bottom:524.389600pt;}
.y1b1{bottom:524.391733pt;}
.y215{bottom:524.392267pt;}
.y16b{bottom:533.115467pt;}
.y111{bottom:533.226800pt;}
.y13{bottom:533.506267pt;}
.y1f0{bottom:537.722933pt;}
.y1b0{bottom:537.725067pt;}
.y214{bottom:537.725600pt;}
.ye3{bottom:538.101200pt;}
.y45{bottom:538.104533pt;}
.yab{bottom:538.117867pt;}
.y79{bottom:538.224533pt;}
.y169{bottom:546.000800pt;}
.y12{bottom:546.839600pt;}
.y110{bottom:547.221467pt;}
.y1ef{bottom:551.056267pt;}
.y1af{bottom:551.058400pt;}
.y213{bottom:551.058933pt;}
.ye2{bottom:554.101200pt;}
.y44{bottom:554.104533pt;}
.yaa{bottom:554.117867pt;}
.y78{bottom:554.224533pt;}
.y16a{bottom:558.896800pt;}
.y11{bottom:560.172933pt;}
.y1ee{bottom:564.389600pt;}
.y1ae{bottom:564.391733pt;}
.y212{bottom:564.392267pt;}
.ye1{bottom:570.101200pt;}
.y43{bottom:570.104533pt;}
.ya9{bottom:570.117867pt;}
.y77{bottom:570.224533pt;}
.y10{bottom:573.506267pt;}
.y1ed{bottom:577.722933pt;}
.y1ad{bottom:577.725067pt;}
.y211{bottom:577.725600pt;}
.ye0{bottom:586.101200pt;}
.y42{bottom:586.104533pt;}
.ya8{bottom:586.117867pt;}
.y76{bottom:586.224533pt;}
.yf{bottom:586.839600pt;}
.y168{bottom:587.634533pt;}
.y1ec{bottom:591.056267pt;}
.y1ac{bottom:591.058400pt;}
.y210{bottom:591.058933pt;}
.y188{bottom:591.230267pt;}
.ye{bottom:600.172933pt;}
.ydf{bottom:602.101200pt;}
.y41{bottom:602.104533pt;}
.ya7{bottom:602.117867pt;}
.y75{bottom:602.224533pt;}
.y1eb{bottom:604.389600pt;}
.y1ab{bottom:604.391733pt;}
.y20f{bottom:604.392267pt;}
.yd{bottom:613.506267pt;}
.y1ea{bottom:617.722933pt;}
.y1aa{bottom:617.725067pt;}
.y20e{bottom:617.725600pt;}
.yde{bottom:618.101200pt;}
.y40{bottom:618.104533pt;}
.ya6{bottom:618.117867pt;}
.y74{bottom:618.224533pt;}
.yc{bottom:626.839600pt;}
.y1e9{bottom:631.056267pt;}
.y1a9{bottom:631.058400pt;}
.y20d{bottom:631.058933pt;}
.y167{bottom:633.994533pt;}
.ydd{bottom:634.101200pt;}
.y3f{bottom:634.104533pt;}
.ya5{bottom:634.117867pt;}
.y73{bottom:634.224533pt;}
.y157{bottom:634.367867pt;}
.yb{bottom:640.172933pt;}
.y184{bottom:642.820133pt;}
.y1e8{bottom:644.389600pt;}
.y1a8{bottom:644.391733pt;}
.y20c{bottom:644.392267pt;}
.y166{bottom:649.994533pt;}
.ydc{bottom:650.101200pt;}
.y3e{bottom:650.104533pt;}
.ya4{bottom:650.117867pt;}
.y72{bottom:650.224533pt;}
.y156{bottom:650.367867pt;}
.y1e7{bottom:657.722933pt;}
.y1a7{bottom:657.725067pt;}
.y20b{bottom:657.725600pt;}
.y165{bottom:665.994533pt;}
.ydb{bottom:666.101200pt;}
.y3d{bottom:666.104533pt;}
.ya3{bottom:666.117867pt;}
.y71{bottom:666.224533pt;}
.y1e6{bottom:671.056267pt;}
.y1a6{bottom:671.058400pt;}
.y20a{bottom:671.058933pt;}
.y164{bottom:681.994533pt;}
.yda{bottom:682.101200pt;}
.y3c{bottom:682.104533pt;}
.ya2{bottom:682.117867pt;}
.y70{bottom:682.224533pt;}
.y155{bottom:682.367867pt;}
.ya{bottom:683.500933pt;}
.y1e5{bottom:684.389600pt;}
.y1a5{bottom:684.391733pt;}
.y209{bottom:684.392267pt;}
.y9{bottom:696.300933pt;}
.y1e4{bottom:697.722933pt;}
.y1a4{bottom:697.725067pt;}
.y208{bottom:697.725600pt;}
.y163{bottom:697.994533pt;}
.yd9{bottom:698.101200pt;}
.y3b{bottom:698.104533pt;}
.ya1{bottom:698.117867pt;}
.y6f{bottom:698.224533pt;}
.y137{bottom:698.237867pt;}
.y1e3{bottom:711.056267pt;}
.y1a3{bottom:711.058400pt;}
.y207{bottom:711.058933pt;}
.y162{bottom:713.994533pt;}
.yd8{bottom:714.101200pt;}
.y3a{bottom:714.104533pt;}
.ya0{bottom:714.117867pt;}
.y6e{bottom:714.224533pt;}
.y154{bottom:714.234533pt;}
.y136{bottom:714.237867pt;}
.y8{bottom:720.439600pt;}
.y1e2{bottom:724.389600pt;}
.y1a2{bottom:724.391733pt;}
.y206{bottom:724.392267pt;}
.y161{bottom:729.994533pt;}
.yd7{bottom:730.101200pt;}
.y39{bottom:730.104533pt;}
.y9f{bottom:730.117867pt;}
.y6d{bottom:730.224533pt;}
.y153{bottom:730.234533pt;}
.y135{bottom:730.237867pt;}
.y1e1{bottom:737.722933pt;}
.y1a1{bottom:737.725067pt;}
.y205{bottom:737.725600pt;}
.y160{bottom:745.994533pt;}
.yd6{bottom:746.101200pt;}
.y38{bottom:746.104533pt;}
.y9e{bottom:746.117867pt;}
.y6c{bottom:746.224533pt;}
.y152{bottom:746.234533pt;}
.y134{bottom:746.237867pt;}
.y1e0{bottom:751.056267pt;}
.y1a0{bottom:751.058400pt;}
.y204{bottom:751.058933pt;}
.y7{bottom:751.106267pt;}
.y15f{bottom:761.994533pt;}
.yd5{bottom:762.101200pt;}
.y37{bottom:762.104533pt;}
.y9d{bottom:762.117867pt;}
.y6b{bottom:762.224533pt;}
.y151{bottom:762.234533pt;}
.y133{bottom:762.237867pt;}
.y1df{bottom:764.389600pt;}
.y19f{bottom:764.391733pt;}
.y203{bottom:764.392267pt;}
.y6{bottom:769.433333pt;}
.y1de{bottom:777.722933pt;}
.y19e{bottom:777.725067pt;}
.y202{bottom:777.725600pt;}
.yd4{bottom:778.101200pt;}
.y36{bottom:778.104533pt;}
.y9c{bottom:778.117867pt;}
.y6a{bottom:778.224533pt;}
.y150{bottom:778.234533pt;}
.y132{bottom:778.237867pt;}
.y5{bottom:783.004267pt;}
.y1dd{bottom:791.056267pt;}
.y19d{bottom:791.058400pt;}
.y15e{bottom:793.994533pt;}
.yd3{bottom:794.101200pt;}
.y35{bottom:794.104533pt;}
.y9b{bottom:794.117867pt;}
.y69{bottom:794.224533pt;}
.y14f{bottom:794.234533pt;}
.y131{bottom:794.237867pt;}
.y1dc{bottom:804.389600pt;}
.y19c{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y12c{bottom:808.000533pt;}
.y101{bottom:809.981200pt;}
.yd2{bottom:810.101200pt;}
.y34{bottom:810.104533pt;}
.y9a{bottom:810.117867pt;}
.y68{bottom:810.224533pt;}
.y14e{bottom:810.234533pt;}
.y130{bottom:810.237867pt;}
.y1db{bottom:817.722933pt;}
.y19b{bottom:817.725067pt;}
.yd1{bottom:826.101200pt;}
.y33{bottom:826.104533pt;}
.y99{bottom:826.117867pt;}
.y67{bottom:826.224533pt;}
.y14d{bottom:826.234533pt;}
.y1da{bottom:831.056267pt;}
.y19a{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.yd0{bottom:842.101200pt;}
.y32{bottom:842.104533pt;}
.y15d{bottom:842.114533pt;}
.y98{bottom:842.117867pt;}
.y66{bottom:842.224533pt;}
.y14c{bottom:842.234533pt;}
.y12f{bottom:842.237867pt;}
.y1d9{bottom:844.389600pt;}
.y199{bottom:844.391733pt;}
.y1d8{bottom:857.722933pt;}
.y198{bottom:857.725067pt;}
.ycf{bottom:858.101200pt;}
.y31{bottom:858.104533pt;}
.y15c{bottom:858.114533pt;}
.y97{bottom:858.117867pt;}
.y65{bottom:858.224533pt;}
.y14b{bottom:858.234533pt;}
.y1d7{bottom:871.056267pt;}
.y197{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.yce{bottom:874.101200pt;}
.y30{bottom:874.104533pt;}
.y15b{bottom:874.114533pt;}
.y96{bottom:874.117867pt;}
.y1d6{bottom:884.389600pt;}
.y196{bottom:884.391733pt;}
.ycd{bottom:890.101200pt;}
.y2f{bottom:890.104533pt;}
.y15a{bottom:890.114533pt;}
.y95{bottom:890.117867pt;}
.y64{bottom:890.224533pt;}
.y14a{bottom:890.234533pt;}
.y1d5{bottom:897.722933pt;}
.y195{bottom:897.725067pt;}
.ycc{bottom:906.101200pt;}
.y2e{bottom:906.104533pt;}
.y159{bottom:906.114533pt;}
.y94{bottom:906.117867pt;}
.y1d4{bottom:911.056267pt;}
.y194{bottom:911.058400pt;}
.ycb{bottom:922.101200pt;}
.y2d{bottom:922.104533pt;}
.y158{bottom:922.114533pt;}
.y93{bottom:922.117867pt;}
.y1d3{bottom:924.389600pt;}
.y193{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y63{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.708333pt;}
.h7{height:31.104167pt;}
.h9{height:31.604167pt;}
.ha{height:31.627200pt;}
.h10{height:31.658133pt;}
.h8{height:31.666667pt;}
.hd{height:33.645833pt;}
.hf{height:33.645867pt;}
.hb{height:38.828125pt;}
.he{height:39.505208pt;}
.hc{height:39.583333pt;}
.h5{height:46.263133pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x17{left:69.921200pt;}
.x15{left:78.047200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1f{left:88.818933pt;}
.x2e{left:94.484800pt;}
.xc{left:98.271467pt;}
.x3{left:111.491067pt;}
.x30{left:113.382533pt;}
.x6{left:117.170133pt;}
.x4{left:143.619067pt;}
.x11{left:147.539733pt;}
.x2d{left:172.698133pt;}
.x5{left:189.223467pt;}
.x18{left:212.438533pt;}
.x20{left:238.365600pt;}
.x29{left:250.177200pt;}
.x21{left:251.410933pt;}
.x19{left:280.534533pt;}
.x1a{left:282.603867pt;}
.x1b{left:347.745200pt;}
.x22{left:368.872267pt;}
.x23{left:378.664267pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x12{left:425.219733pt;}
.x7{left:427.103467pt;}
.x2f{left:432.746133pt;}
.xe{left:436.538133pt;}
.x31{left:451.526533pt;}
.x13{left:455.459733pt;}
.x8{left:457.356800pt;}
.x24{left:506.493600pt;}
.x28{left:515.031467pt;}
.x25{left:516.584267pt;}
.x2b{left:526.169200pt;}
.x1c{left:533.985200pt;}
.x16{left:544.809200pt;}
.x10{left:589.770933pt;}
.x1d{left:592.897200pt;}
.x1e{left:594.369200pt;}
.x26{left:621.576267pt;}
.x2{left:626.078800pt;}
.x27{left:635.346933pt;}
.x2a{left:637.449067pt;}
.xf{left:643.752133pt;}
.x2c{left:657.187867pt;}
.x14{left:662.649733pt;}
}




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