
    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_9cf77f9927106da31f7643f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.134000;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_17ea8ab32ba6ce9c9ed15c9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_168c772a1b89bdc5759e2b5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_c9ce37625acd76e7cbe31460.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.742000;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_453b215d2f4a1c3d80117ba2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.742000;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_453b215d2f4a1c3d80117ba2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.742000;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_65668b71d72b5ed3f6008490.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.742000;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_f851550a0011559fdde7a054.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;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_4c1c46c75158a583703b5c2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.996000;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;}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240921,0.000000,0.000000,0.250000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.840000px;}
.v1{vertical-align:19.800000px;}
.ls62{letter-spacing:-1.776000px;}
.ls8{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-1.200000px;}
.ls44{letter-spacing:-1.140000px;}
.ls63{letter-spacing:-0.960000px;}
.ls43{letter-spacing:-0.900000px;}
.ls40{letter-spacing:-0.840000px;}
.ls42{letter-spacing:-0.780000px;}
.ls4a{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.660000px;}
.ls29{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls54{letter-spacing:-0.384000px;}
.ls28{letter-spacing:-0.360000px;}
.ls5b{letter-spacing:-0.336000px;}
.ls48{letter-spacing:-0.313200px;}
.ls1b{letter-spacing:-0.300000px;}
.ls3c{letter-spacing:-0.288000px;}
.ls5a{letter-spacing:-0.278400px;}
.lsc{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.180000px;}
.ls59{letter-spacing:-0.174000px;}
.lsb{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.096000px;}
.ls3f{letter-spacing:-0.069600px;}
.ls26{letter-spacing:-0.060000px;}
.ls3d{letter-spacing:-0.048000px;}
.ls4f{letter-spacing:-0.034800px;}
.ls55{letter-spacing:-0.027840px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.030000px;}
.ls10{letter-spacing:0.048000px;}
.ls2b{letter-spacing:0.060000px;}
.ls3a{letter-spacing:0.096000px;}
.ls45{letter-spacing:0.104400px;}
.ls1d{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls57{letter-spacing:0.150000px;}
.ls2e{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.192000px;}
.ls36{letter-spacing:0.210000px;}
.ls52{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.231000px;}
.ls7{letter-spacing:0.240000px;}
.ls33{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.300000px;}
.ls34{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.384000px;}
.ls14{letter-spacing:0.420000px;}
.ls50{letter-spacing:0.432000px;}
.ls35{letter-spacing:0.474600px;}
.ls4{letter-spacing:0.480000px;}
.ls4c{letter-spacing:0.510000px;}
.ls49{letter-spacing:0.528000px;}
.ls38{letter-spacing:0.540000px;}
.ls4b{letter-spacing:0.570000px;}
.ls4e{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.600000px;}
.ls3b{letter-spacing:0.624000px;}
.ls23{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.672000px;}
.ls65{letter-spacing:0.684000px;}
.ls21{letter-spacing:0.690000px;}
.ls9{letter-spacing:0.720000px;}
.ls2a{letter-spacing:0.780000px;}
.ls32{letter-spacing:0.810000px;}
.ls51{letter-spacing:0.816000px;}
.ls1e{letter-spacing:0.840000px;}
.ls6a{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.900000px;}
.ls5d{letter-spacing:0.912000px;}
.ls56{letter-spacing:0.930000px;}
.ls1f{letter-spacing:0.960000px;}
.ls4d{letter-spacing:0.990000px;}
.ls13{letter-spacing:1.020000px;}
.ls47{letter-spacing:1.050000px;}
.ls16{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.104000px;}
.ls37{letter-spacing:1.140000px;}
.ls20{letter-spacing:1.200000px;}
.ls69{letter-spacing:1.248000px;}
.ls39{letter-spacing:1.260000px;}
.ls5f{letter-spacing:1.324800px;}
.ls60{letter-spacing:1.325400px;}
.ls5e{letter-spacing:1.344000px;}
.ls12{letter-spacing:1.350000px;}
.ls18{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.392000px;}
.ls58{letter-spacing:1.440000px;}
.ls2d{letter-spacing:1.500000px;}
.ls46{letter-spacing:1.530000px;}
.ls11{letter-spacing:1.560000px;}
.ls64{letter-spacing:1.632000px;}
.ls2f{letter-spacing:1.800000px;}
.ls66{letter-spacing:1.824000px;}
.ls3e{letter-spacing:1.980000px;}
.ls2c{letter-spacing:2.040000px;}
.ls5c{letter-spacing:2.460000px;}
.ls17{letter-spacing:2.880000px;}
.ls61{letter-spacing:71.695200px;}
.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;}
}
.wse{word-spacing:-16.680000px;}
.ws79{word-spacing:-16.620000px;}
.ws77{word-spacing:-16.500000px;}
.ws61{word-spacing:-16.260000px;}
.ws35{word-spacing:-16.140000px;}
.ws8b{word-spacing:-14.688000px;}
.ws55{word-spacing:-13.680000px;}
.ws84{word-spacing:-13.632000px;}
.ws8d{word-spacing:-13.536000px;}
.ws8c{word-spacing:-13.488000px;}
.ws6b{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.344000px;}
.ws5c{word-spacing:-13.296000px;}
.wsa1{word-spacing:-13.248000px;}
.ws85{word-spacing:-13.008000px;}
.ws98{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.116018px;}
.ws1{word-spacing:-11.676000px;}
.ws6a{word-spacing:-9.778800px;}
.wsf{word-spacing:-9.674400px;}
.ws7a{word-spacing:-9.639600px;}
.ws62{word-spacing:-9.604800px;}
.ws82{word-spacing:-9.500400px;}
.ws83{word-spacing:-9.396000px;}
.ws72{word-spacing:-9.361200px;}
.ws7b{word-spacing:-7.739520px;}
.ws7c{word-spacing:-7.711680px;}
.ws37{word-spacing:-3.840000px;}
.ws94{word-spacing:-3.120000px;}
.ws87{word-spacing:-1.800000px;}
.ws9e{word-spacing:-1.776000px;}
.ws16{word-spacing:-1.680000px;}
.ws9b{word-spacing:-1.632000px;}
.ws13{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.560000px;}
.ws21{word-spacing:-1.500000px;}
.ws56{word-spacing:-1.440000px;}
.ws38{word-spacing:-1.380000px;}
.ws7{word-spacing:-1.344000px;}
.ws6c{word-spacing:-1.320000px;}
.ws6{word-spacing:-1.296000px;}
.ws2d{word-spacing:-1.260000px;}
.ws4d{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.152000px;}
.ws51{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.020000px;}
.ws4a{word-spacing:-0.960000px;}
.ws6f{word-spacing:-0.912000px;}
.ws28{word-spacing:-0.900000px;}
.ws54{word-spacing:-0.864000px;}
.ws34{word-spacing:-0.840000px;}
.ws32{word-spacing:-0.780000px;}
.ws93{word-spacing:-0.768000px;}
.ws57{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.660000px;}
.ws59{word-spacing:-0.624000px;}
.ws43{word-spacing:-0.600000px;}
.wsa5{word-spacing:-0.576000px;}
.ws41{word-spacing:-0.540000px;}
.ws53{word-spacing:-0.480000px;}
.ws81{word-spacing:-0.432000px;}
.ws49{word-spacing:-0.420000px;}
.ws9c{word-spacing:-0.384000px;}
.ws3b{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.336000px;}
.ws3c{word-spacing:-0.300000px;}
.ws26{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.240000px;}
.ws70{word-spacing:-0.192000px;}
.ws4b{word-spacing:-0.180000px;}
.ws90{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.120000px;}
.ws92{word-spacing:-0.096000px;}
.ws3a{word-spacing:-0.060000px;}
.ws5e{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws96{word-spacing:0.048000px;}
.ws67{word-spacing:0.060000px;}
.ws22{word-spacing:0.120000px;}
.ws60{word-spacing:0.144000px;}
.ws2c{word-spacing:0.180000px;}
.ws24{word-spacing:0.192000px;}
.ws42{word-spacing:0.240000px;}
.ws80{word-spacing:0.288000px;}
.ws1a{word-spacing:0.300000px;}
.ws50{word-spacing:0.360000px;}
.wsa0{word-spacing:0.384000px;}
.ws64{word-spacing:0.420000px;}
.ws4c{word-spacing:0.480000px;}
.ws14{word-spacing:0.540000px;}
.ws97{word-spacing:0.576000px;}
.ws47{word-spacing:0.600000px;}
.ws25{word-spacing:0.624000px;}
.ws27{word-spacing:0.660000px;}
.ws5f{word-spacing:0.720000px;}
.ws7d{word-spacing:0.768000px;}
.ws44{word-spacing:0.780000px;}
.ws2f{word-spacing:0.840000px;}
.ws1f{word-spacing:0.900000px;}
.ws99{word-spacing:0.912000px;}
.ws1c{word-spacing:0.960000px;}
.ws12{word-spacing:1.020000px;}
.wsa{word-spacing:1.056000px;}
.ws76{word-spacing:1.080000px;}
.wsb{word-spacing:1.104000px;}
.ws1d{word-spacing:1.140000px;}
.ws91{word-spacing:1.152000px;}
.wsc{word-spacing:1.200000px;}
.ws33{word-spacing:1.260000px;}
.ws3{word-spacing:1.296000px;}
.ws18{word-spacing:1.320000px;}
.ws9{word-spacing:1.344000px;}
.ws2b{word-spacing:1.380000px;}
.ws6e{word-spacing:1.392000px;}
.ws58{word-spacing:1.440000px;}
.ws71{word-spacing:1.488000px;}
.ws45{word-spacing:1.500000px;}
.ws66{word-spacing:1.560000px;}
.ws89{word-spacing:1.584000px;}
.ws1b{word-spacing:1.620000px;}
.ws8{word-spacing:1.632000px;}
.ws19{word-spacing:1.680000px;}
.ws5{word-spacing:1.728000px;}
.ws3e{word-spacing:1.740000px;}
.ws7e{word-spacing:1.776000px;}
.ws39{word-spacing:1.800000px;}
.ws30{word-spacing:1.860000px;}
.ws46{word-spacing:1.920000px;}
.ws36{word-spacing:1.980000px;}
.ws40{word-spacing:2.040000px;}
.ws4e{word-spacing:2.100000px;}
.ws7f{word-spacing:2.112000px;}
.ws9d{word-spacing:2.208000px;}
.ws95{word-spacing:2.256000px;}
.ws2a{word-spacing:2.280000px;}
.ws52{word-spacing:2.340000px;}
.ws8e{word-spacing:2.352000px;}
.ws74{word-spacing:2.400000px;}
.ws75{word-spacing:2.460000px;}
.ws15{word-spacing:2.520000px;}
.ws78{word-spacing:2.580000px;}
.ws6d{word-spacing:2.640000px;}
.wsa3{word-spacing:2.736000px;}
.ws1e{word-spacing:2.760000px;}
.ws5b{word-spacing:2.880000px;}
.ws69{word-spacing:2.940000px;}
.ws88{word-spacing:3.060000px;}
.ws2e{word-spacing:3.120000px;}
.wsa4{word-spacing:3.168000px;}
.ws5d{word-spacing:3.180000px;}
.ws8f{word-spacing:3.312000px;}
.ws11{word-spacing:3.360000px;}
.wsa2{word-spacing:3.456000px;}
.ws86{word-spacing:3.660000px;}
.ws48{word-spacing:3.720000px;}
.ws73{word-spacing:3.780000px;}
.ws10{word-spacing:3.960000px;}
.ws9a{word-spacing:4.080000px;}
.ws31{word-spacing:4.140000px;}
.ws9f{word-spacing:4.512000px;}
.ws4f{word-spacing:4.560000px;}
.ws8a{word-spacing:4.680000px;}
.ws68{word-spacing:4.860000px;}
.ws3f{word-spacing:5.100000px;}
.ws20{word-spacing:7.140000px;}
._5{margin-left:-534.877800px;}
._b{margin-left:-7.658400px;}
._6{margin-left:-6.494946px;}
._4{margin-left:-5.347200px;}
._2{margin-left:-3.864000px;}
._0{margin-left:-2.397054px;}
._3{margin-left:-1.164546px;}
._1{width:1.200000px;}
._8{width:3.187800px;}
._c{width:4.954908px;}
._a{width:7.725054px;}
._9{width:9.981054px;}
._7{width:11.565054px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.840000px;}
.fs5{font-size:34.800000px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:43.582800px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:74.834700px;}
.y17{bottom:75.047250px;}
.y11f{bottom:76.535250px;}
.y89{bottom:76.535400px;}
.y60{bottom:76.535550px;}
.y16{bottom:87.901200px;}
.yc{bottom:88.006050px;}
.y11e{bottom:90.935250px;}
.yb0{bottom:90.935400px;}
.y5f{bottom:90.935550px;}
.y25a{bottom:94.387650px;}
.y282{bottom:94.460400px;}
.yd5{bottom:94.601550px;}
.y88{bottom:94.851150px;}
.y1cf{bottom:95.320800px;}
.y15{bottom:100.755000px;}
.yb{bottom:101.177400px;}
.y11d{bottom:105.335250px;}
.yaf{bottom:105.335400px;}
.y5e{bottom:105.335700px;}
.y18a{bottom:107.943150px;}
.y259{bottom:112.240050px;}
.y281{bottom:112.385550px;}
.yd4{bottom:112.667700px;}
.y87{bottom:113.167050px;}
.y1ce{bottom:114.106350px;}
.ya{bottom:114.348900px;}
.y11c{bottom:119.735250px;}
.yae{bottom:119.735400px;}
.y5d{bottom:119.735700px;}
.y14{bottom:122.112900px;}
.y145{bottom:122.343150px;}
.y189{bottom:126.140700px;}
.y258{bottom:130.092150px;}
.y280{bottom:130.310550px;}
.yd3{bottom:130.733850px;}
.y86{bottom:131.482950px;}
.y1cd{bottom:132.891900px;}
.y11b{bottom:134.135250px;}
.y216{bottom:134.135400px;}
.y5c{bottom:134.135700px;}
.y13{bottom:134.966850px;}
.yf7{bottom:136.743150px;}
.y144{bottom:140.417550px;}
.y9{bottom:140.595000px;}
.y188{bottom:144.338100px;}
.y12{bottom:147.820650px;}
.y257{bottom:147.944550px;}
.y27f{bottom:148.235550px;}
.y11a{bottom:148.535250px;}
.y215{bottom:148.535400px;}
.yd2{bottom:148.800000px;}
.y85{bottom:149.798850px;}
.yad{bottom:151.143150px;}
.y1cc{bottom:151.677300px;}
.y8{bottom:153.766500px;}
.yf6{bottom:155.164050px;}
.y143{bottom:158.491950px;}
.y11{bottom:160.674600px;}
.y187{bottom:162.535500px;}
.y166{bottom:162.935400px;}
.y5b{bottom:165.543600px;}
.y256{bottom:165.796800px;}
.y27e{bottom:166.160550px;}
.yd1{bottom:166.866300px;}
.y7{bottom:166.937850px;}
.y84{bottom:168.114600px;}
.yac{bottom:169.421700px;}
.y1ef{bottom:169.576800px;}
.y1cb{bottom:170.462850px;}
.yf5{bottom:173.584800px;}
.y142{bottom:176.566350px;}
.y165{bottom:177.335400px;}
.y119{bottom:179.943150px;}
.y214{bottom:179.943300px;}
.y6{bottom:180.109200px;}
.y186{bottom:180.732900px;}
.y5a{bottom:183.636150px;}
.y255{bottom:183.649050px;}
.y27d{bottom:184.085700px;}
.yd0{bottom:184.932450px;}
.y83{bottom:186.430500px;}
.yab{bottom:187.700250px;}
.y1ee{bottom:188.010300px;}
.y1ca{bottom:189.248400px;}
.y10{bottom:190.536450px;}
.yf4{bottom:192.005550px;}
.y5{bottom:193.280700px;}
.y141{bottom:194.640750px;}
.y1a9{bottom:198.165300px;}
.y213{bottom:198.263100px;}
.y118{bottom:198.449850px;}
.y185{bottom:198.930300px;}
.y254{bottom:201.501300px;}
.y27c{bottom:202.010700px;}
.ycf{bottom:202.998600px;}
.y82{bottom:204.746400px;}
.yaa{bottom:205.978800px;}
.y1ed{bottom:206.443800px;}
.y4{bottom:206.452050px;}
.y1c9{bottom:208.033800px;}
.y164{bottom:208.743150px;}
.yf{bottom:210.290250px;}
.yf3{bottom:210.426450px;}
.y140{bottom:212.715150px;}
.y212{bottom:216.582750px;}
.y117{bottom:216.956550px;}
.y184{bottom:217.127700px;}
.y59{bottom:218.736600px;}
.y253{bottom:219.353550px;}
.y3{bottom:219.623550px;}
.y27b{bottom:219.935700px;}
.yce{bottom:221.064750px;}
.y81{bottom:223.062300px;}
.ya9{bottom:224.257350px;}
.y1ec{bottom:224.877450px;}
.y1c8{bottom:226.819350px;}
.y233{bottom:227.220150px;}
.y163{bottom:227.304900px;}
.yf2{bottom:228.847200px;}
.ye{bottom:230.044200px;}
.y13f{bottom:230.789550px;}
.y2{bottom:232.794900px;}
.y1a8{bottom:233.395350px;}
.y211{bottom:234.902550px;}
.y183{bottom:235.325100px;}
.y116{bottom:235.463250px;}
.y252{bottom:237.205800px;}
.y27a{bottom:237.860850px;}
.ycd{bottom:239.131050px;}
.y80{bottom:241.378050px;}
.ya8{bottom:242.535900px;}
.y1eb{bottom:243.310950px;}
.y1c7{bottom:245.604900px;}
.y232{bottom:245.697000px;}
.y3a{bottom:245.832150px;}
.y162{bottom:245.866500px;}
.yf1{bottom:247.267950px;}
.y13e{bottom:248.863950px;}
.y1{bottom:251.477700px;}
.y210{bottom:253.222200px;}
.y115{bottom:253.969950px;}
.y251{bottom:255.058200px;}
.y279{bottom:255.785850px;}
.ycc{bottom:257.197200px;}
.y7f{bottom:259.693950px;}
.y39{bottom:260.232150px;}
.ya7{bottom:260.814300px;}
.y1ea{bottom:261.744450px;}
.y231{bottom:264.173850px;}
.y1c6{bottom:264.390450px;}
.y161{bottom:264.428100px;}
.yf0{bottom:265.688850px;}
.y58{bottom:265.941000px;}
.y13d{bottom:266.938350px;}
.y182{bottom:270.530400px;}
.y20f{bottom:271.542000px;}
.y114{bottom:272.476500px;}
.y250{bottom:272.910450px;}
.y278{bottom:273.710850px;}
.ycb{bottom:275.263350px;}
.y7e{bottom:278.009850px;}
.ya6{bottom:279.092850px;}
.y1e9{bottom:280.178100px;}
.y1a7{bottom:280.729200px;}
.y230{bottom:282.650850px;}
.y1c5{bottom:283.175850px;}
.y57{bottom:284.033700px;}
.yef{bottom:284.109600px;}
.y13c{bottom:285.012750px;}
.y20e{bottom:289.861800px;}
.y24f{bottom:290.762700px;}
.y113{bottom:290.983200px;}
.y277{bottom:291.635850px;}
.yca{bottom:293.329500px;}
.y7d{bottom:296.325750px;}
.ya5{bottom:297.371400px;}
.y1e8{bottom:298.611600px;}
.y1a6{bottom:298.951200px;}
.y160{bottom:299.997600px;}
.y38{bottom:300.143850px;}
.y22f{bottom:301.127700px;}
.y1c4{bottom:301.961400px;}
.y56{bottom:302.126250px;}
.yee{bottom:302.530350px;}
.y13b{bottom:303.087000px;}
.y20d{bottom:308.181450px;}
.y24e{bottom:308.614950px;}
.y112{bottom:309.489900px;}
.y276{bottom:309.561000px;}
.yc9{bottom:311.395650px;}
.y37{bottom:314.543850px;}
.y7c{bottom:314.641500px;}
.ya4{bottom:315.649950px;}
.y15f{bottom:316.759350px;}
.y1e7{bottom:317.045100px;}
.y1a5{bottom:317.173350px;}
.y181{bottom:317.839650px;}
.y22e{bottom:319.604550px;}
.y55{bottom:320.218800px;}
.y1c3{bottom:320.746800px;}
.yed{bottom:320.951100px;}
.y13a{bottom:321.161400px;}
.y24d{bottom:326.467200px;}
.y20c{bottom:326.501250px;}
.y275{bottom:327.486000px;}
.y111{bottom:327.996600px;}
.y36{bottom:328.943850px;}
.yc8{bottom:329.461950px;}
.y7b{bottom:332.957400px;}
.y15e{bottom:333.520950px;}
.ya3{bottom:333.928350px;}
.y1a4{bottom:335.395500px;}
.y1e6{bottom:335.478600px;}
.y180{bottom:336.037050px;}
.y22d{bottom:338.081550px;}
.y54{bottom:338.311500px;}
.y139{bottom:339.235800px;}
.yec{bottom:339.372000px;}
.y1c2{bottom:339.532350px;}
.y35{bottom:343.343850px;}
.y24c{bottom:344.319450px;}
.y20b{bottom:344.821050px;}
.y274{bottom:345.411000px;}
.y110{bottom:346.503150px;}
.yc7{bottom:347.528100px;}
.y15d{bottom:350.282550px;}
.y7a{bottom:351.273300px;}
.ya2{bottom:352.206900px;}
.y1a3{bottom:353.617500px;}
.y1e5{bottom:353.912250px;}
.y17f{bottom:354.234450px;}
.y53{bottom:356.404050px;}
.y22c{bottom:356.558400px;}
.y138{bottom:357.310200px;}
.y34{bottom:357.743850px;}
.yeb{bottom:357.792750px;}
.y1c1{bottom:358.317900px;}
.y24b{bottom:362.171700px;}
.y20a{bottom:363.140700px;}
.y273{bottom:363.336000px;}
.y10f{bottom:365.009850px;}
.yc6{bottom:365.594250px;}
.y15c{bottom:367.044300px;}
.y79{bottom:369.589200px;}
.ya1{bottom:370.485450px;}
.y1a2{bottom:371.839650px;}
.y33{bottom:372.143850px;}
.y1e4{bottom:372.345750px;}
.y17e{bottom:372.431850px;}
.y52{bottom:374.496600px;}
.y22b{bottom:375.035400px;}
.y137{bottom:375.384600px;}
.yea{bottom:376.213500px;}
.y1c0{bottom:377.103450px;}
.y24a{bottom:380.024100px;}
.y272{bottom:381.261000px;}
.y10e{bottom:383.516550px;}
.yc5{bottom:383.660400px;}
.y32{bottom:386.543850px;}
.y78{bottom:387.905100px;}
.ya0{bottom:388.764000px;}
.y1a1{bottom:390.061800px;}
.y17d{bottom:390.629400px;}
.y1e3{bottom:390.779250px;}
.y51{bottom:392.589300px;}
.y136{bottom:393.459000px;}
.ye9{bottom:394.634400px;}
.y1bf{bottom:395.888850px;}
.y249{bottom:397.876350px;}
.y209{bottom:398.468400px;}
.y271{bottom:399.186150px;}
.y15b{bottom:400.813800px;}
.y31{bottom:400.943850px;}
.yc4{bottom:401.726550px;}
.y10d{bottom:402.023250px;}
.y77{bottom:406.220850px;}
.y9f{bottom:407.042550px;}
.y1a0{bottom:408.283800px;}
.y17c{bottom:408.826650px;}
.y1e2{bottom:409.212900px;}
.y22a{bottom:410.520150px;}
.y50{bottom:410.681850px;}
.y135{bottom:411.533400px;}
.ye8{bottom:413.055150px;}
.y1be{bottom:414.674400px;}
.y208{bottom:414.988200px;}
.y30{bottom:415.343850px;}
.y248{bottom:415.728600px;}
.y270{bottom:417.111150px;}
.y15a{bottom:419.375400px;}
.yc3{bottom:419.792700px;}
.y10c{bottom:420.529950px;}
.y76{bottom:424.536750px;}
.y9e{bottom:425.320950px;}
.y19f{bottom:426.505950px;}
.y17b{bottom:427.024200px;}
.y1e1{bottom:427.646400px;}
.y4f{bottom:428.774400px;}
.y134{bottom:429.607800px;}
.y2f{bottom:429.743850px;}
.ye7{bottom:431.475900px;}
.y207{bottom:431.507850px;}
.y1bd{bottom:433.459950px;}
.y247{bottom:433.580850px;}
.y26f{bottom:435.036150px;}
.yc2{bottom:437.859000px;}
.y159{bottom:437.937000px;}
.y10b{bottom:439.036500px;}
.y75{bottom:442.852650px;}
.y9d{bottom:443.599500px;}
.y2e{bottom:444.143850px;}
.y19e{bottom:444.728100px;}
.y17a{bottom:445.221600px;}
.y1e0{bottom:446.080050px;}
.y4e{bottom:446.866950px;}
.y133{bottom:447.682200px;}
.y206{bottom:448.027650px;}
.ye6{bottom:449.896800px;}
.y246{bottom:451.433100px;}
.y1bc{bottom:452.245350px;}
.y26e{bottom:452.961300px;}
.yc1{bottom:455.925150px;}
.y158{bottom:456.498750px;}
.y10a{bottom:457.543200px;}
.y229{bottom:458.108850px;}
.y2d{bottom:458.543850px;}
.y74{bottom:461.168550px;}
.y9c{bottom:461.878050px;}
.y19d{bottom:462.950100px;}
.y179{bottom:463.419000px;}
.y1df{bottom:464.513550px;}
.y205{bottom:464.547300px;}
.y4d{bottom:464.959650px;}
.y132{bottom:465.756600px;}
.ye5{bottom:468.317550px;}
.y245{bottom:469.285350px;}
.y26d{bottom:470.886300px;}
.y1bb{bottom:471.030900px;}
.y2c{bottom:472.943850px;}
.yc0{bottom:473.991300px;}
.y157{bottom:475.060350px;}
.y109{bottom:476.049900px;}
.y228{bottom:476.585700px;}
.y73{bottom:479.484300px;}
.y9b{bottom:480.156600px;}
.y295{bottom:480.862050px;}
.y204{bottom:481.067100px;}
.y19c{bottom:481.172250px;}
.y178{bottom:481.616400px;}
.y1de{bottom:482.947050px;}
.y4c{bottom:483.052200px;}
.y131{bottom:483.831000px;}
.y244{bottom:487.137750px;}
.y26c{bottom:488.811300px;}
.y1ba{bottom:489.816450px;}
.ybf{bottom:492.057450px;}
.y156{bottom:493.621950px;}
.y108{bottom:494.556600px;}
.y227{bottom:495.062550px;}
.y203{bottom:497.586750px;}
.y72{bottom:497.800200px;}
.y294{bottom:498.262050px;}
.y9a{bottom:498.435000px;}
.y19b{bottom:499.394400px;}
.y177{bottom:499.813800px;}
.y4b{bottom:501.144750px;}
.y1dd{bottom:501.380550px;}
.y130{bottom:501.905400px;}
.ye4{bottom:503.746200px;}
.y243{bottom:504.990000px;}
.y26b{bottom:506.736300px;}
.y1b9{bottom:508.601850px;}
.ybe{bottom:510.123750px;}
.y155{bottom:512.183550px;}
.y2b{bottom:512.855700px;}
.y107{bottom:513.063300px;}
.y226{bottom:513.539550px;}
.y202{bottom:514.106550px;}
.y293{bottom:515.662050px;}
.y71{bottom:516.116100px;}
.y99{bottom:516.713550px;}
.y19a{bottom:517.616400px;}
.y176{bottom:518.011200px;}
.y4a{bottom:519.237450px;}
.y1dc{bottom:519.814200px;}
.y12f{bottom:519.979650px;}
.y242{bottom:522.842250px;}
.y26a{bottom:524.661450px;}
.y2a{bottom:527.255700px;}
.y1b8{bottom:527.387400px;}
.ybd{bottom:528.189900px;}
.y201{bottom:530.626350px;}
.y154{bottom:530.745300px;}
.y106{bottom:531.569850px;}
.y225{bottom:532.016400px;}
.y292{bottom:533.062050px;}
.y70{bottom:534.432000px;}
.y98{bottom:534.992100px;}
.y199{bottom:535.838550px;}
.y175{bottom:536.208600px;}
.y49{bottom:537.330000px;}
.y12e{bottom:538.054200px;}
.y1db{bottom:538.247700px;}
.y241{bottom:540.694500px;}
.y269{bottom:542.586450px;}
.y1b7{bottom:546.172950px;}
.y200{bottom:547.146000px;}
.y153{bottom:549.306900px;}
.y105{bottom:550.076550px;}
.y291{bottom:550.462050px;}
.y224{bottom:550.493250px;}
.ye3{bottom:551.278800px;}
.y6f{bottom:552.747750px;}
.y97{bottom:553.270650px;}
.y198{bottom:554.060550px;}
.y174{bottom:554.406150px;}
.y48{bottom:555.422550px;}
.y12d{bottom:556.128450px;}
.y1da{bottom:556.681200px;}
.y240{bottom:558.546750px;}
.y268{bottom:560.511450px;}
.ybc{bottom:563.263950px;}
.y1ff{bottom:563.665800px;}
.y1b6{bottom:564.958350px;}
.y290{bottom:567.862050px;}
.y152{bottom:567.868500px;}
.y104{bottom:568.583250px;}
.y223{bottom:568.970250px;}
.ye2{bottom:569.699550px;}
.y29{bottom:570.454350px;}
.y6e{bottom:571.063650px;}
.y96{bottom:571.549200px;}
.y197{bottom:572.282700px;}
.y173{bottom:572.603550px;}
.y47{bottom:573.515100px;}
.y12c{bottom:574.202850px;}
.y1d9{bottom:575.114850px;}
.y23f{bottom:576.399150px;}
.y267{bottom:578.436450px;}
.y1fe{bottom:580.185600px;}
.y1b5{bottom:583.743900px;}
.y28{bottom:584.854350px;}
.y28f{bottom:585.262050px;}
.y151{bottom:586.430250px;}
.y103{bottom:587.089950px;}
.y222{bottom:587.447100px;}
.ye1{bottom:588.120450px;}
.y6d{bottom:589.379550px;}
.y95{bottom:589.827600px;}
.y196{bottom:590.504850px;}
.y172{bottom:590.800950px;}
.y46{bottom:591.607800px;}
.y12b{bottom:592.277250px;}
.y1d8{bottom:593.548350px;}
.y23e{bottom:594.251250px;}
.y266{bottom:596.361450px;}
.y1fd{bottom:596.705250px;}
.y1b4{bottom:602.529450px;}
.y28e{bottom:602.662050px;}
.y150{bottom:604.991850px;}
.y102{bottom:605.596500px;}
.y221{bottom:605.923950px;}
.ye0{bottom:606.541200px;}
.y6c{bottom:607.695450px;}
.y94{bottom:608.106150px;}
.y195{bottom:608.726850px;}
.y171{bottom:608.998350px;}
.y45{bottom:609.700350px;}
.y12a{bottom:610.351650px;}
.ybb{bottom:610.441950px;}
.y1d7{bottom:611.981850px;}
.y23d{bottom:612.103650px;}
.y1fc{bottom:613.225050px;}
.y265{bottom:614.286600px;}
.y28d{bottom:620.062050px;}
.y1b3{bottom:621.315000px;}
.y14f{bottom:623.553450px;}
.y101{bottom:624.103200px;}
.y220{bottom:624.400950px;}
.y27{bottom:624.766050px;}
.ydf{bottom:624.961950px;}
.y6b{bottom:626.011350px;}
.y93{bottom:626.384700px;}
.y194{bottom:626.949000px;}
.y170{bottom:627.195750px;}
.y44{bottom:627.792900px;}
.y129{bottom:628.426050px;}
.yba{bottom:628.508100px;}
.y1fb{bottom:629.744850px;}
.y23c{bottom:629.955900px;}
.y1d6{bottom:630.415350px;}
.y264{bottom:632.211600px;}
.y28c{bottom:637.462050px;}
.y26{bottom:639.166050px;}
.y1b2{bottom:640.100400px;}
.y14e{bottom:642.115200px;}
.y100{bottom:642.609900px;}
.y21f{bottom:642.877800px;}
.yde{bottom:643.382700px;}
.y6a{bottom:644.327250px;}
.y92{bottom:644.663250px;}
.y193{bottom:645.171000px;}
.y16f{bottom:645.393150px;}
.y43{bottom:645.885600px;}
.y1fa{bottom:646.264500px;}
.y128{bottom:646.500450px;}
.yb9{bottom:646.574250px;}
.y23b{bottom:647.808150px;}
.y1d5{bottom:648.849000px;}
.y263{bottom:650.136600px;}
.y25{bottom:653.566050px;}
.y28b{bottom:654.862050px;}
.y1b1{bottom:658.885950px;}
.y14d{bottom:660.676800px;}
.yff{bottom:661.116600px;}
.y21e{bottom:661.354650px;}
.ydd{bottom:661.803600px;}
.y69{bottom:662.643000px;}
.y1f9{bottom:662.784300px;}
.y91{bottom:662.941800px;}
.y192{bottom:663.393150px;}
.y16e{bottom:663.590550px;}
.y42{bottom:663.978150px;}
.y127{bottom:664.574850px;}
.yb8{bottom:664.640550px;}
.y23a{bottom:665.660400px;}
.y1d4{bottom:667.282500px;}
.y24{bottom:667.966050px;}
.y262{bottom:668.061750px;}
.y28a{bottom:672.262050px;}
.y1b0{bottom:677.671350px;}
.y14c{bottom:679.238400px;}
.y1f8{bottom:679.304100px;}
.yfe{bottom:679.623300px;}
.y21d{bottom:679.831650px;}
.ydc{bottom:680.224350px;}
.y68{bottom:680.958900px;}
.y90{bottom:681.220350px;}
.y191{bottom:681.615300px;}
.y16d{bottom:681.787950px;}
.y41{bottom:682.070700px;}
.y23{bottom:682.366050px;}
.y126{bottom:682.649250px;}
.yb7{bottom:682.706700px;}
.y239{bottom:683.512650px;}
.y1d3{bottom:685.716000px;}
.y261{bottom:685.986750px;}
.y289{bottom:689.662050px;}
.y1f7{bottom:695.823750px;}
.y1af{bottom:696.456900px;}
.y22{bottom:696.766050px;}
.y14b{bottom:697.800000px;}
.yfd{bottom:698.130000px;}
.y21c{bottom:698.308500px;}
.ydb{bottom:698.645100px;}
.y67{bottom:699.274800px;}
.y8f{bottom:699.498900px;}
.y190{bottom:699.837300px;}
.y16c{bottom:699.985500px;}
.y40{bottom:700.163400px;}
.y125{bottom:700.723650px;}
.yb6{bottom:700.772850px;}
.y238{bottom:701.364900px;}
.y260{bottom:703.911750px;}
.y288{bottom:707.062050px;}
.y21{bottom:711.166050px;}
.y1f6{bottom:712.343550px;}
.y1ae{bottom:715.242450px;}
.y14a{bottom:716.361750px;}
.yfc{bottom:716.636550px;}
.y21b{bottom:716.785500px;}
.yda{bottom:717.066000px;}
.y66{bottom:717.590550px;}
.y8e{bottom:717.777300px;}
.y18f{bottom:718.059450px;}
.y16b{bottom:718.182900px;}
.y3f{bottom:718.255950px;}
.y124{bottom:718.798050px;}
.yb5{bottom:718.839000px;}
.y237{bottom:719.217150px;}
.y1d2{bottom:721.157550px;}
.y25f{bottom:721.836750px;}
.y287{bottom:724.462050px;}
.y20{bottom:725.566050px;}
.y1f5{bottom:728.863200px;}
.y1ad{bottom:734.028000px;}
.y149{bottom:734.923350px;}
.yfb{bottom:735.143250px;}
.y21a{bottom:735.262350px;}
.yd9{bottom:735.486750px;}
.y65{bottom:735.906450px;}
.y8d{bottom:736.055850px;}
.y18e{bottom:736.281600px;}
.y3e{bottom:736.348500px;}
.y16a{bottom:736.380300px;}
.y123{bottom:736.872450px;}
.yb4{bottom:736.905150px;}
.y236{bottom:737.069550px;}
.y25e{bottom:739.761900px;}
.y1f{bottom:739.966050px;}
.y286{bottom:741.862050px;}
.y1d1{bottom:743.191050px;}
.y1f4{bottom:745.383000px;}
.y1ac{bottom:752.813400px;}
.y148{bottom:753.484950px;}
.yfa{bottom:753.649950px;}
.y219{bottom:753.739200px;}
.yd8{bottom:753.907500px;}
.y64{bottom:754.222350px;}
.y8c{bottom:754.334400px;}
.y1e{bottom:754.366050px;}
.y3d{bottom:754.441200px;}
.y18d{bottom:754.503600px;}
.y169{bottom:754.577700px;}
.y235{bottom:754.921800px;}
.y122{bottom:754.946850px;}
.yb3{bottom:754.971450px;}
.y25d{bottom:757.686900px;}
.y285{bottom:759.262050px;}
.y1f3{bottom:761.902800px;}
.y1d{bottom:768.766050px;}
.y1ab{bottom:771.598950px;}
.y147{bottom:772.046700px;}
.yf9{bottom:772.156650px;}
.y218{bottom:772.216050px;}
.yd7{bottom:772.328400px;}
.y3c{bottom:772.533750px;}
.y63{bottom:772.538250px;}
.y8b{bottom:772.612950px;}
.y18c{bottom:772.725750px;}
.y234{bottom:772.774050px;}
.y168{bottom:772.775100px;}
.y121{bottom:773.021100px;}
.yb2{bottom:773.037600px;}
.y25c{bottom:775.611900px;}
.y284{bottom:776.662050px;}
.y1f2{bottom:778.422600px;}
.y1c{bottom:783.166050px;}
.y1aa{bottom:790.384500px;}
.y146{bottom:790.608300px;}
.yf8{bottom:790.663200px;}
.y217{bottom:790.693050px;}
.y1d0{bottom:790.736400px;}
.yd6{bottom:790.749150px;}
.y62{bottom:790.854000px;}
.y8a{bottom:790.891350px;}
.y18b{bottom:790.947900px;}
.y167{bottom:790.972500px;}
.y120{bottom:791.095500px;}
.yb1{bottom:791.103750px;}
.y25b{bottom:793.537050px;}
.y283{bottom:794.062050px;}
.y1f1{bottom:794.942250px;}
.y1b{bottom:797.566200px;}
.y3b{bottom:807.634200px;}
.y61{bottom:809.170050px;}
.y1f0{bottom:811.462050px;}
.y1a{bottom:811.966050px;}
.y18{bottom:857.494350px;}
.y19{bottom:857.494500px;}
.h7{height:30.744000px;}
.h6{height:31.752000px;}
.h3{height:31.902610px;}
.h4{height:32.948597px;}
.h9{height:35.136000px;}
.h8{height:36.288000px;}
.hc{height:36.864000px;}
.h2{height:43.488000px;}
.h5{height:45.360000px;}
.hd{height:46.080000px;}
.hb{height:54.360000px;}
.ha{height:54.432000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x1{left:12.755850px;}
.x4{left:39.127200px;}
.x2{left:54.000000px;}
.x6{left:68.406450px;}
.x5{left:76.151100px;}
.xd{left:89.291400px;}
.x8{left:93.543300px;}
.xa{left:97.420350px;}
.xb{left:102.047250px;}
.xc{left:114.803100px;}
.x9{left:123.307050px;}
.x3{left:229.606350px;}
.x7{left:568.316400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.080000pt;}
.v1{vertical-align:17.600000pt;}
.ls62{letter-spacing:-1.578667pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-1.066667pt;}
.ls44{letter-spacing:-1.013333pt;}
.ls63{letter-spacing:-0.853333pt;}
.ls43{letter-spacing:-0.800000pt;}
.ls40{letter-spacing:-0.746667pt;}
.ls42{letter-spacing:-0.693333pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.586667pt;}
.ls29{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls54{letter-spacing:-0.341333pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls5b{letter-spacing:-0.298667pt;}
.ls48{letter-spacing:-0.278400pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls3c{letter-spacing:-0.256000pt;}
.ls5a{letter-spacing:-0.247467pt;}
.lsc{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls59{letter-spacing:-0.154667pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.085333pt;}
.ls3f{letter-spacing:-0.061867pt;}
.ls26{letter-spacing:-0.053333pt;}
.ls3d{letter-spacing:-0.042667pt;}
.ls4f{letter-spacing:-0.030933pt;}
.ls55{letter-spacing:-0.024747pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.026667pt;}
.ls10{letter-spacing:0.042667pt;}
.ls2b{letter-spacing:0.053333pt;}
.ls3a{letter-spacing:0.085333pt;}
.ls45{letter-spacing:0.092800pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls57{letter-spacing:0.133333pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.170667pt;}
.ls36{letter-spacing:0.186667pt;}
.ls52{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.205333pt;}
.ls7{letter-spacing:0.213333pt;}
.ls33{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.266667pt;}
.ls34{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.341333pt;}
.ls14{letter-spacing:0.373333pt;}
.ls50{letter-spacing:0.384000pt;}
.ls35{letter-spacing:0.421867pt;}
.ls4{letter-spacing:0.426667pt;}
.ls4c{letter-spacing:0.453333pt;}
.ls49{letter-spacing:0.469333pt;}
.ls38{letter-spacing:0.480000pt;}
.ls4b{letter-spacing:0.506667pt;}
.ls4e{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.533333pt;}
.ls3b{letter-spacing:0.554667pt;}
.ls23{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.597333pt;}
.ls65{letter-spacing:0.608000pt;}
.ls21{letter-spacing:0.613333pt;}
.ls9{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.693333pt;}
.ls32{letter-spacing:0.720000pt;}
.ls51{letter-spacing:0.725333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls6a{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.800000pt;}
.ls5d{letter-spacing:0.810667pt;}
.ls56{letter-spacing:0.826667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls4d{letter-spacing:0.880000pt;}
.ls13{letter-spacing:0.906667pt;}
.ls47{letter-spacing:0.933333pt;}
.ls16{letter-spacing:0.960000pt;}
.ls68{letter-spacing:0.981333pt;}
.ls37{letter-spacing:1.013333pt;}
.ls20{letter-spacing:1.066667pt;}
.ls69{letter-spacing:1.109333pt;}
.ls39{letter-spacing:1.120000pt;}
.ls5f{letter-spacing:1.177600pt;}
.ls60{letter-spacing:1.178133pt;}
.ls5e{letter-spacing:1.194667pt;}
.ls12{letter-spacing:1.200000pt;}
.ls18{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.237333pt;}
.ls58{letter-spacing:1.280000pt;}
.ls2d{letter-spacing:1.333333pt;}
.ls46{letter-spacing:1.360000pt;}
.ls11{letter-spacing:1.386667pt;}
.ls64{letter-spacing:1.450667pt;}
.ls2f{letter-spacing:1.600000pt;}
.ls66{letter-spacing:1.621333pt;}
.ls3e{letter-spacing:1.760000pt;}
.ls2c{letter-spacing:1.813333pt;}
.ls5c{letter-spacing:2.186667pt;}
.ls17{letter-spacing:2.560000pt;}
.ls61{letter-spacing:63.729067pt;}
.wse{word-spacing:-14.826667pt;}
.ws79{word-spacing:-14.773333pt;}
.ws77{word-spacing:-14.666667pt;}
.ws61{word-spacing:-14.453333pt;}
.ws35{word-spacing:-14.346667pt;}
.ws8b{word-spacing:-13.056000pt;}
.ws55{word-spacing:-12.160000pt;}
.ws84{word-spacing:-12.117333pt;}
.ws8d{word-spacing:-12.032000pt;}
.ws8c{word-spacing:-11.989333pt;}
.ws6b{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.861333pt;}
.ws5c{word-spacing:-11.818667pt;}
.wsa1{word-spacing:-11.776000pt;}
.ws85{word-spacing:-11.562667pt;}
.ws98{word-spacing:-11.520000pt;}
.ws0{word-spacing:-10.769794pt;}
.ws1{word-spacing:-10.378667pt;}
.ws6a{word-spacing:-8.692267pt;}
.wsf{word-spacing:-8.599467pt;}
.ws7a{word-spacing:-8.568533pt;}
.ws62{word-spacing:-8.537600pt;}
.ws82{word-spacing:-8.444800pt;}
.ws83{word-spacing:-8.352000pt;}
.ws72{word-spacing:-8.321067pt;}
.ws7b{word-spacing:-6.879573pt;}
.ws7c{word-spacing:-6.854827pt;}
.ws37{word-spacing:-3.413333pt;}
.ws94{word-spacing:-2.773333pt;}
.ws87{word-spacing:-1.600000pt;}
.ws9e{word-spacing:-1.578667pt;}
.ws16{word-spacing:-1.493333pt;}
.ws9b{word-spacing:-1.450667pt;}
.ws13{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.386667pt;}
.ws21{word-spacing:-1.333333pt;}
.ws56{word-spacing:-1.280000pt;}
.ws38{word-spacing:-1.226667pt;}
.ws7{word-spacing:-1.194667pt;}
.ws6c{word-spacing:-1.173333pt;}
.ws6{word-spacing:-1.152000pt;}
.ws2d{word-spacing:-1.120000pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.024000pt;}
.ws51{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.906667pt;}
.ws4a{word-spacing:-0.853333pt;}
.ws6f{word-spacing:-0.810667pt;}
.ws28{word-spacing:-0.800000pt;}
.ws54{word-spacing:-0.768000pt;}
.ws34{word-spacing:-0.746667pt;}
.ws32{word-spacing:-0.693333pt;}
.ws93{word-spacing:-0.682667pt;}
.ws57{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.586667pt;}
.ws59{word-spacing:-0.554667pt;}
.ws43{word-spacing:-0.533333pt;}
.wsa5{word-spacing:-0.512000pt;}
.ws41{word-spacing:-0.480000pt;}
.ws53{word-spacing:-0.426667pt;}
.ws81{word-spacing:-0.384000pt;}
.ws49{word-spacing:-0.373333pt;}
.ws9c{word-spacing:-0.341333pt;}
.ws3b{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.298667pt;}
.ws3c{word-spacing:-0.266667pt;}
.ws26{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.213333pt;}
.ws70{word-spacing:-0.170667pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws90{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.106667pt;}
.ws92{word-spacing:-0.085333pt;}
.ws3a{word-spacing:-0.053333pt;}
.ws5e{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws96{word-spacing:0.042667pt;}
.ws67{word-spacing:0.053333pt;}
.ws22{word-spacing:0.106667pt;}
.ws60{word-spacing:0.128000pt;}
.ws2c{word-spacing:0.160000pt;}
.ws24{word-spacing:0.170667pt;}
.ws42{word-spacing:0.213333pt;}
.ws80{word-spacing:0.256000pt;}
.ws1a{word-spacing:0.266667pt;}
.ws50{word-spacing:0.320000pt;}
.wsa0{word-spacing:0.341333pt;}
.ws64{word-spacing:0.373333pt;}
.ws4c{word-spacing:0.426667pt;}
.ws14{word-spacing:0.480000pt;}
.ws97{word-spacing:0.512000pt;}
.ws47{word-spacing:0.533333pt;}
.ws25{word-spacing:0.554667pt;}
.ws27{word-spacing:0.586667pt;}
.ws5f{word-spacing:0.640000pt;}
.ws7d{word-spacing:0.682667pt;}
.ws44{word-spacing:0.693333pt;}
.ws2f{word-spacing:0.746667pt;}
.ws1f{word-spacing:0.800000pt;}
.ws99{word-spacing:0.810667pt;}
.ws1c{word-spacing:0.853333pt;}
.ws12{word-spacing:0.906667pt;}
.wsa{word-spacing:0.938667pt;}
.ws76{word-spacing:0.960000pt;}
.wsb{word-spacing:0.981333pt;}
.ws1d{word-spacing:1.013333pt;}
.ws91{word-spacing:1.024000pt;}
.wsc{word-spacing:1.066667pt;}
.ws33{word-spacing:1.120000pt;}
.ws3{word-spacing:1.152000pt;}
.ws18{word-spacing:1.173333pt;}
.ws9{word-spacing:1.194667pt;}
.ws2b{word-spacing:1.226667pt;}
.ws6e{word-spacing:1.237333pt;}
.ws58{word-spacing:1.280000pt;}
.ws71{word-spacing:1.322667pt;}
.ws45{word-spacing:1.333333pt;}
.ws66{word-spacing:1.386667pt;}
.ws89{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.440000pt;}
.ws8{word-spacing:1.450667pt;}
.ws19{word-spacing:1.493333pt;}
.ws5{word-spacing:1.536000pt;}
.ws3e{word-spacing:1.546667pt;}
.ws7e{word-spacing:1.578667pt;}
.ws39{word-spacing:1.600000pt;}
.ws30{word-spacing:1.653333pt;}
.ws46{word-spacing:1.706667pt;}
.ws36{word-spacing:1.760000pt;}
.ws40{word-spacing:1.813333pt;}
.ws4e{word-spacing:1.866667pt;}
.ws7f{word-spacing:1.877333pt;}
.ws9d{word-spacing:1.962667pt;}
.ws95{word-spacing:2.005333pt;}
.ws2a{word-spacing:2.026667pt;}
.ws52{word-spacing:2.080000pt;}
.ws8e{word-spacing:2.090667pt;}
.ws74{word-spacing:2.133333pt;}
.ws75{word-spacing:2.186667pt;}
.ws15{word-spacing:2.240000pt;}
.ws78{word-spacing:2.293333pt;}
.ws6d{word-spacing:2.346667pt;}
.wsa3{word-spacing:2.432000pt;}
.ws1e{word-spacing:2.453333pt;}
.ws5b{word-spacing:2.560000pt;}
.ws69{word-spacing:2.613333pt;}
.ws88{word-spacing:2.720000pt;}
.ws2e{word-spacing:2.773333pt;}
.wsa4{word-spacing:2.816000pt;}
.ws5d{word-spacing:2.826667pt;}
.ws8f{word-spacing:2.944000pt;}
.ws11{word-spacing:2.986667pt;}
.wsa2{word-spacing:3.072000pt;}
.ws86{word-spacing:3.253333pt;}
.ws48{word-spacing:3.306667pt;}
.ws73{word-spacing:3.360000pt;}
.ws10{word-spacing:3.520000pt;}
.ws9a{word-spacing:3.626667pt;}
.ws31{word-spacing:3.680000pt;}
.ws9f{word-spacing:4.010667pt;}
.ws4f{word-spacing:4.053333pt;}
.ws8a{word-spacing:4.160000pt;}
.ws68{word-spacing:4.320000pt;}
.ws3f{word-spacing:4.533333pt;}
.ws20{word-spacing:6.346667pt;}
._5{margin-left:-475.446933pt;}
._b{margin-left:-6.807467pt;}
._6{margin-left:-5.773285pt;}
._4{margin-left:-4.753067pt;}
._2{margin-left:-3.434667pt;}
._0{margin-left:-2.130715pt;}
._3{margin-left:-1.035152pt;}
._1{width:1.066667pt;}
._8{width:2.833600pt;}
._c{width:4.404363pt;}
._a{width:6.866715pt;}
._9{width:8.872048pt;}
._7{width:10.280048pt;}
.fs6{font-size:24.746667pt;}
.fs5{font-size:30.933333pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:38.740267pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:66.519733pt;}
.y17{bottom:66.708667pt;}
.y11f{bottom:68.031333pt;}
.y89{bottom:68.031467pt;}
.y60{bottom:68.031600pt;}
.y16{bottom:78.134400pt;}
.yc{bottom:78.227600pt;}
.y11e{bottom:80.831333pt;}
.yb0{bottom:80.831467pt;}
.y5f{bottom:80.831600pt;}
.y25a{bottom:83.900133pt;}
.y282{bottom:83.964800pt;}
.yd5{bottom:84.090267pt;}
.y88{bottom:84.312133pt;}
.y1cf{bottom:84.729600pt;}
.y15{bottom:89.560000pt;}
.yb{bottom:89.935467pt;}
.y11d{bottom:93.631333pt;}
.yaf{bottom:93.631467pt;}
.y5e{bottom:93.631733pt;}
.y18a{bottom:95.949467pt;}
.y259{bottom:99.768933pt;}
.y281{bottom:99.898267pt;}
.yd4{bottom:100.149067pt;}
.y87{bottom:100.592933pt;}
.y1ce{bottom:101.427867pt;}
.ya{bottom:101.643467pt;}
.y11c{bottom:106.431333pt;}
.yae{bottom:106.431467pt;}
.y5d{bottom:106.431733pt;}
.y14{bottom:108.544800pt;}
.y145{bottom:108.749467pt;}
.y189{bottom:112.125067pt;}
.y258{bottom:115.637467pt;}
.y280{bottom:115.831600pt;}
.yd3{bottom:116.207867pt;}
.y86{bottom:116.873733pt;}
.y1cd{bottom:118.126133pt;}
.y11b{bottom:119.231333pt;}
.y216{bottom:119.231467pt;}
.y5c{bottom:119.231733pt;}
.y13{bottom:119.970533pt;}
.yf7{bottom:121.549467pt;}
.y144{bottom:124.815600pt;}
.y9{bottom:124.973333pt;}
.y188{bottom:128.300533pt;}
.y12{bottom:131.396133pt;}
.y257{bottom:131.506267pt;}
.y27f{bottom:131.764933pt;}
.y11a{bottom:132.031333pt;}
.y215{bottom:132.031467pt;}
.yd2{bottom:132.266667pt;}
.y85{bottom:133.154533pt;}
.yad{bottom:134.349467pt;}
.y1cc{bottom:134.824267pt;}
.y8{bottom:136.681333pt;}
.yf6{bottom:137.923600pt;}
.y143{bottom:140.881733pt;}
.y11{bottom:142.821867pt;}
.y187{bottom:144.476000pt;}
.y166{bottom:144.831467pt;}
.y5b{bottom:147.149867pt;}
.y256{bottom:147.374933pt;}
.y27e{bottom:147.698267pt;}
.yd1{bottom:148.325600pt;}
.y7{bottom:148.389200pt;}
.y84{bottom:149.435200pt;}
.yac{bottom:150.597067pt;}
.y1ef{bottom:150.734933pt;}
.y1cb{bottom:151.522533pt;}
.yf5{bottom:154.297600pt;}
.y142{bottom:156.947867pt;}
.y165{bottom:157.631467pt;}
.y119{bottom:159.949467pt;}
.y214{bottom:159.949600pt;}
.y6{bottom:160.097067pt;}
.y186{bottom:160.651467pt;}
.y5a{bottom:163.232133pt;}
.y255{bottom:163.243600pt;}
.y27d{bottom:163.631733pt;}
.yd0{bottom:164.384400pt;}
.y83{bottom:165.716000pt;}
.yab{bottom:166.844667pt;}
.y1ee{bottom:167.120267pt;}
.y1ca{bottom:168.220800pt;}
.y10{bottom:169.365733pt;}
.yf4{bottom:170.671600pt;}
.y5{bottom:171.805067pt;}
.y141{bottom:173.014000pt;}
.y1a9{bottom:176.146933pt;}
.y213{bottom:176.233867pt;}
.y118{bottom:176.399867pt;}
.y185{bottom:176.826933pt;}
.y254{bottom:179.112267pt;}
.y27c{bottom:179.565067pt;}
.ycf{bottom:180.443200pt;}
.y82{bottom:181.996800pt;}
.yaa{bottom:183.092267pt;}
.y1ed{bottom:183.505600pt;}
.y4{bottom:183.512933pt;}
.y1c9{bottom:184.918933pt;}
.y164{bottom:185.549467pt;}
.yf{bottom:186.924667pt;}
.yf3{bottom:187.045733pt;}
.y140{bottom:189.080133pt;}
.y212{bottom:192.518000pt;}
.y117{bottom:192.850267pt;}
.y184{bottom:193.002400pt;}
.y59{bottom:194.432533pt;}
.y253{bottom:194.980933pt;}
.y3{bottom:195.220933pt;}
.y27b{bottom:195.498400pt;}
.yce{bottom:196.502000pt;}
.y81{bottom:198.277600pt;}
.ya9{bottom:199.339867pt;}
.y1ec{bottom:199.891067pt;}
.y1c8{bottom:201.617200pt;}
.y233{bottom:201.973467pt;}
.y163{bottom:202.048800pt;}
.yf2{bottom:203.419733pt;}
.ye{bottom:204.483733pt;}
.y13f{bottom:205.146267pt;}
.y2{bottom:206.928800pt;}
.y1a8{bottom:207.462533pt;}
.y211{bottom:208.802267pt;}
.y183{bottom:209.177867pt;}
.y116{bottom:209.300667pt;}
.y252{bottom:210.849600pt;}
.y27a{bottom:211.431867pt;}
.ycd{bottom:212.560933pt;}
.y80{bottom:214.558267pt;}
.ya8{bottom:215.587467pt;}
.y1eb{bottom:216.276400pt;}
.y1c7{bottom:218.315467pt;}
.y232{bottom:218.397333pt;}
.y3a{bottom:218.517467pt;}
.y162{bottom:218.548000pt;}
.yf1{bottom:219.793733pt;}
.y13e{bottom:221.212400pt;}
.y1{bottom:223.535733pt;}
.y210{bottom:225.086400pt;}
.y115{bottom:225.751067pt;}
.y251{bottom:226.718400pt;}
.y279{bottom:227.365200pt;}
.ycc{bottom:228.619733pt;}
.y7f{bottom:230.839067pt;}
.y39{bottom:231.317467pt;}
.ya7{bottom:231.834933pt;}
.y1ea{bottom:232.661733pt;}
.y231{bottom:234.821200pt;}
.y1c6{bottom:235.013733pt;}
.y161{bottom:235.047200pt;}
.yf0{bottom:236.167867pt;}
.y58{bottom:236.392000pt;}
.y13d{bottom:237.278533pt;}
.y182{bottom:240.471467pt;}
.y20f{bottom:241.370667pt;}
.y114{bottom:242.201333pt;}
.y250{bottom:242.587067pt;}
.y278{bottom:243.298533pt;}
.ycb{bottom:244.678533pt;}
.y7e{bottom:247.119867pt;}
.ya6{bottom:248.082533pt;}
.y1e9{bottom:249.047200pt;}
.y1a7{bottom:249.537067pt;}
.y230{bottom:251.245200pt;}
.y1c5{bottom:251.711867pt;}
.y57{bottom:252.474400pt;}
.yef{bottom:252.541867pt;}
.y13c{bottom:253.344667pt;}
.y20e{bottom:257.654933pt;}
.y24f{bottom:258.455733pt;}
.y113{bottom:258.651733pt;}
.y277{bottom:259.231867pt;}
.yca{bottom:260.737333pt;}
.y7d{bottom:263.400667pt;}
.ya5{bottom:264.330133pt;}
.y1e8{bottom:265.432533pt;}
.y1a6{bottom:265.734400pt;}
.y160{bottom:266.664533pt;}
.y38{bottom:266.794533pt;}
.y22f{bottom:267.669067pt;}
.y1c4{bottom:268.410133pt;}
.y56{bottom:268.556667pt;}
.yee{bottom:268.915867pt;}
.y13b{bottom:269.410667pt;}
.y20d{bottom:273.939067pt;}
.y24e{bottom:274.324400pt;}
.y112{bottom:275.102133pt;}
.y276{bottom:275.165333pt;}
.yc9{bottom:276.796133pt;}
.y37{bottom:279.594533pt;}
.y7c{bottom:279.681333pt;}
.ya4{bottom:280.577733pt;}
.y15f{bottom:281.563867pt;}
.y1e7{bottom:281.817867pt;}
.y1a5{bottom:281.931867pt;}
.y181{bottom:282.524133pt;}
.y22e{bottom:284.092933pt;}
.y55{bottom:284.638933pt;}
.y1c3{bottom:285.108267pt;}
.yed{bottom:285.289867pt;}
.y13a{bottom:285.476800pt;}
.y24d{bottom:290.193067pt;}
.y20c{bottom:290.223333pt;}
.y275{bottom:291.098667pt;}
.y111{bottom:291.552533pt;}
.y36{bottom:292.394533pt;}
.yc8{bottom:292.855067pt;}
.y7b{bottom:295.962133pt;}
.y15e{bottom:296.463067pt;}
.ya3{bottom:296.825200pt;}
.y1a4{bottom:298.129333pt;}
.y1e6{bottom:298.203200pt;}
.y180{bottom:298.699600pt;}
.y22d{bottom:300.516933pt;}
.y54{bottom:300.721333pt;}
.y139{bottom:301.542933pt;}
.yec{bottom:301.664000pt;}
.y1c2{bottom:301.806533pt;}
.y35{bottom:305.194533pt;}
.y24c{bottom:306.061733pt;}
.y20b{bottom:306.507600pt;}
.y274{bottom:307.032000pt;}
.y110{bottom:308.002800pt;}
.yc7{bottom:308.913867pt;}
.y15d{bottom:311.362267pt;}
.y7a{bottom:312.242933pt;}
.ya2{bottom:313.072800pt;}
.y1a3{bottom:314.326667pt;}
.y1e5{bottom:314.588667pt;}
.y17f{bottom:314.875067pt;}
.y53{bottom:316.803600pt;}
.y22c{bottom:316.940800pt;}
.y138{bottom:317.609067pt;}
.y34{bottom:317.994533pt;}
.yeb{bottom:318.038000pt;}
.y1c1{bottom:318.504800pt;}
.y24b{bottom:321.930400pt;}
.y20a{bottom:322.791733pt;}
.y273{bottom:322.965333pt;}
.y10f{bottom:324.453200pt;}
.yc6{bottom:324.972667pt;}
.y15c{bottom:326.261600pt;}
.y79{bottom:328.523733pt;}
.ya1{bottom:329.320400pt;}
.y1a2{bottom:330.524133pt;}
.y33{bottom:330.794533pt;}
.y1e4{bottom:330.974000pt;}
.y17e{bottom:331.050533pt;}
.y52{bottom:332.885867pt;}
.y22b{bottom:333.364800pt;}
.y137{bottom:333.675200pt;}
.yea{bottom:334.412000pt;}
.y1c0{bottom:335.203067pt;}
.y24a{bottom:337.799200pt;}
.y272{bottom:338.898667pt;}
.y10e{bottom:340.903600pt;}
.yc5{bottom:341.031467pt;}
.y32{bottom:343.594533pt;}
.y78{bottom:344.804533pt;}
.ya0{bottom:345.568000pt;}
.y1a1{bottom:346.721600pt;}
.y17d{bottom:347.226133pt;}
.y1e3{bottom:347.359333pt;}
.y51{bottom:348.968267pt;}
.y136{bottom:349.741333pt;}
.ye9{bottom:350.786133pt;}
.y1bf{bottom:351.901200pt;}
.y249{bottom:353.667867pt;}
.y209{bottom:354.194133pt;}
.y271{bottom:354.832133pt;}
.y15b{bottom:356.278933pt;}
.y31{bottom:356.394533pt;}
.yc4{bottom:357.090267pt;}
.y10d{bottom:357.354000pt;}
.y77{bottom:361.085200pt;}
.y9f{bottom:361.815600pt;}
.y1a0{bottom:362.918933pt;}
.y17c{bottom:363.401467pt;}
.y1e2{bottom:363.744800pt;}
.y22a{bottom:364.906800pt;}
.y50{bottom:365.050533pt;}
.y135{bottom:365.807467pt;}
.ye8{bottom:367.160133pt;}
.y1be{bottom:368.599467pt;}
.y208{bottom:368.878400pt;}
.y30{bottom:369.194533pt;}
.y248{bottom:369.536533pt;}
.y270{bottom:370.765467pt;}
.y15a{bottom:372.778133pt;}
.yc3{bottom:373.149067pt;}
.y10c{bottom:373.804400pt;}
.y76{bottom:377.366000pt;}
.y9e{bottom:378.063067pt;}
.y19f{bottom:379.116400pt;}
.y17b{bottom:379.577067pt;}
.y1e1{bottom:380.130133pt;}
.y4f{bottom:381.132800pt;}
.y134{bottom:381.873600pt;}
.y2f{bottom:381.994533pt;}
.ye7{bottom:383.534133pt;}
.y207{bottom:383.562533pt;}
.y1bd{bottom:385.297733pt;}
.y247{bottom:385.405200pt;}
.y26f{bottom:386.698800pt;}
.yc2{bottom:389.208000pt;}
.y159{bottom:389.277333pt;}
.y10b{bottom:390.254667pt;}
.y75{bottom:393.646800pt;}
.y9d{bottom:394.310667pt;}
.y2e{bottom:394.794533pt;}
.y19e{bottom:395.313867pt;}
.y17a{bottom:395.752533pt;}
.y1e0{bottom:396.515600pt;}
.y4e{bottom:397.215067pt;}
.y133{bottom:397.939733pt;}
.y206{bottom:398.246800pt;}
.ye6{bottom:399.908267pt;}
.y246{bottom:401.273867pt;}
.y1bc{bottom:401.995867pt;}
.y26e{bottom:402.632267pt;}
.yc1{bottom:405.266800pt;}
.y158{bottom:405.776667pt;}
.y10a{bottom:406.705067pt;}
.y229{bottom:407.207867pt;}
.y2d{bottom:407.594533pt;}
.y74{bottom:409.927600pt;}
.y9c{bottom:410.558267pt;}
.y19d{bottom:411.511200pt;}
.y179{bottom:411.928000pt;}
.y1df{bottom:412.900933pt;}
.y205{bottom:412.930933pt;}
.y4d{bottom:413.297467pt;}
.y132{bottom:414.005867pt;}
.ye5{bottom:416.282267pt;}
.y245{bottom:417.142533pt;}
.y26d{bottom:418.565600pt;}
.y1bb{bottom:418.694133pt;}
.y2c{bottom:420.394533pt;}
.yc0{bottom:421.325600pt;}
.y157{bottom:422.275867pt;}
.y109{bottom:423.155467pt;}
.y228{bottom:423.631733pt;}
.y73{bottom:426.208267pt;}
.y9b{bottom:426.805867pt;}
.y295{bottom:427.432933pt;}
.y204{bottom:427.615200pt;}
.y19c{bottom:427.708667pt;}
.y178{bottom:428.103467pt;}
.y1de{bottom:429.286267pt;}
.y4c{bottom:429.379733pt;}
.y131{bottom:430.072000pt;}
.y244{bottom:433.011333pt;}
.y26c{bottom:434.498933pt;}
.y1ba{bottom:435.392400pt;}
.ybf{bottom:437.384400pt;}
.y156{bottom:438.775067pt;}
.y108{bottom:439.605867pt;}
.y227{bottom:440.055600pt;}
.y203{bottom:442.299333pt;}
.y72{bottom:442.489067pt;}
.y294{bottom:442.899600pt;}
.y9a{bottom:443.053333pt;}
.y19b{bottom:443.906133pt;}
.y177{bottom:444.278933pt;}
.y4b{bottom:445.462000pt;}
.y1dd{bottom:445.671600pt;}
.y130{bottom:446.138133pt;}
.ye4{bottom:447.774400pt;}
.y243{bottom:448.880000pt;}
.y26b{bottom:450.432267pt;}
.y1b9{bottom:452.090533pt;}
.ybe{bottom:453.443333pt;}
.y155{bottom:455.274267pt;}
.y2b{bottom:455.871733pt;}
.y107{bottom:456.056267pt;}
.y226{bottom:456.479600pt;}
.y202{bottom:456.983600pt;}
.y293{bottom:458.366267pt;}
.y71{bottom:458.769867pt;}
.y99{bottom:459.300933pt;}
.y19a{bottom:460.103467pt;}
.y176{bottom:460.454400pt;}
.y4a{bottom:461.544400pt;}
.y1dc{bottom:462.057067pt;}
.y12f{bottom:462.204133pt;}
.y242{bottom:464.748667pt;}
.y26a{bottom:466.365733pt;}
.y2a{bottom:468.671733pt;}
.y1b8{bottom:468.788800pt;}
.ybd{bottom:469.502133pt;}
.y201{bottom:471.667867pt;}
.y154{bottom:471.773600pt;}
.y106{bottom:472.506533pt;}
.y225{bottom:472.903467pt;}
.y292{bottom:473.832933pt;}
.y70{bottom:475.050667pt;}
.y98{bottom:475.548533pt;}
.y199{bottom:476.300933pt;}
.y175{bottom:476.629867pt;}
.y49{bottom:477.626667pt;}
.y12e{bottom:478.270400pt;}
.y1db{bottom:478.442400pt;}
.y241{bottom:480.617333pt;}
.y269{bottom:482.299067pt;}
.y1b7{bottom:485.487067pt;}
.y200{bottom:486.352000pt;}
.y153{bottom:488.272800pt;}
.y105{bottom:488.956933pt;}
.y291{bottom:489.299600pt;}
.y224{bottom:489.327333pt;}
.ye3{bottom:490.025600pt;}
.y6f{bottom:491.331333pt;}
.y97{bottom:491.796133pt;}
.y198{bottom:492.498267pt;}
.y174{bottom:492.805467pt;}
.y48{bottom:493.708933pt;}
.y12d{bottom:494.336400pt;}
.y1da{bottom:494.827733pt;}
.y240{bottom:496.486000pt;}
.y268{bottom:498.232400pt;}
.ybc{bottom:500.679067pt;}
.y1ff{bottom:501.036267pt;}
.y1b6{bottom:502.185200pt;}
.y290{bottom:504.766267pt;}
.y152{bottom:504.772000pt;}
.y104{bottom:505.407333pt;}
.y223{bottom:505.751333pt;}
.ye2{bottom:506.399600pt;}
.y29{bottom:507.070533pt;}
.y6e{bottom:507.612133pt;}
.y96{bottom:508.043733pt;}
.y197{bottom:508.695733pt;}
.y173{bottom:508.980933pt;}
.y47{bottom:509.791200pt;}
.y12c{bottom:510.402533pt;}
.y1d9{bottom:511.213200pt;}
.y23f{bottom:512.354800pt;}
.y267{bottom:514.165733pt;}
.y1fe{bottom:515.720533pt;}
.y1b5{bottom:518.883467pt;}
.y28{bottom:519.870533pt;}
.y28f{bottom:520.232933pt;}
.y151{bottom:521.271333pt;}
.y103{bottom:521.857733pt;}
.y222{bottom:522.175200pt;}
.ye1{bottom:522.773733pt;}
.y6d{bottom:523.892933pt;}
.y95{bottom:524.291200pt;}
.y196{bottom:524.893200pt;}
.y172{bottom:525.156400pt;}
.y46{bottom:525.873600pt;}
.y12b{bottom:526.468667pt;}
.y1d8{bottom:527.598533pt;}
.y23e{bottom:528.223333pt;}
.y266{bottom:530.099067pt;}
.y1fd{bottom:530.404667pt;}
.y1b4{bottom:535.581733pt;}
.y28e{bottom:535.699600pt;}
.y150{bottom:537.770533pt;}
.y102{bottom:538.308000pt;}
.y221{bottom:538.599067pt;}
.ye0{bottom:539.147733pt;}
.y6c{bottom:540.173733pt;}
.y94{bottom:540.538800pt;}
.y195{bottom:541.090533pt;}
.y171{bottom:541.331867pt;}
.y45{bottom:541.955867pt;}
.y12a{bottom:542.534800pt;}
.ybb{bottom:542.615067pt;}
.y1d7{bottom:543.983867pt;}
.y23d{bottom:544.092133pt;}
.y1fc{bottom:545.088933pt;}
.y265{bottom:546.032533pt;}
.y28d{bottom:551.166267pt;}
.y1b3{bottom:552.280000pt;}
.y14f{bottom:554.269733pt;}
.y101{bottom:554.758400pt;}
.y220{bottom:555.023067pt;}
.y27{bottom:555.347600pt;}
.ydf{bottom:555.521733pt;}
.y6b{bottom:556.454533pt;}
.y93{bottom:556.786400pt;}
.y194{bottom:557.288000pt;}
.y170{bottom:557.507333pt;}
.y44{bottom:558.038133pt;}
.y129{bottom:558.600933pt;}
.yba{bottom:558.673867pt;}
.y1fb{bottom:559.773200pt;}
.y23c{bottom:559.960800pt;}
.y1d6{bottom:560.369200pt;}
.y264{bottom:561.965867pt;}
.y28c{bottom:566.632933pt;}
.y26{bottom:568.147600pt;}
.y1b2{bottom:568.978133pt;}
.y14e{bottom:570.769067pt;}
.y100{bottom:571.208800pt;}
.y21f{bottom:571.446933pt;}
.yde{bottom:571.895733pt;}
.y6a{bottom:572.735333pt;}
.y92{bottom:573.034000pt;}
.y193{bottom:573.485333pt;}
.y16f{bottom:573.682800pt;}
.y43{bottom:574.120533pt;}
.y1fa{bottom:574.457333pt;}
.y128{bottom:574.667067pt;}
.yb9{bottom:574.732667pt;}
.y23b{bottom:575.829467pt;}
.y1d5{bottom:576.754667pt;}
.y263{bottom:577.899200pt;}
.y25{bottom:580.947600pt;}
.y28b{bottom:582.099600pt;}
.y1b1{bottom:585.676400pt;}
.y14d{bottom:587.268267pt;}
.yff{bottom:587.659200pt;}
.y21e{bottom:587.870800pt;}
.ydd{bottom:588.269867pt;}
.y69{bottom:589.016000pt;}
.y1f9{bottom:589.141600pt;}
.y91{bottom:589.281600pt;}
.y192{bottom:589.682800pt;}
.y16e{bottom:589.858267pt;}
.y42{bottom:590.202800pt;}
.y127{bottom:590.733200pt;}
.yb8{bottom:590.791600pt;}
.y23a{bottom:591.698133pt;}
.y1d4{bottom:593.140000pt;}
.y24{bottom:593.747600pt;}
.y262{bottom:593.832667pt;}
.y28a{bottom:597.566267pt;}
.y1b0{bottom:602.374533pt;}
.y14c{bottom:603.767467pt;}
.y1f8{bottom:603.825867pt;}
.yfe{bottom:604.109600pt;}
.y21d{bottom:604.294800pt;}
.ydc{bottom:604.643867pt;}
.y68{bottom:605.296800pt;}
.y90{bottom:605.529200pt;}
.y191{bottom:605.880267pt;}
.y16d{bottom:606.033733pt;}
.y41{bottom:606.285067pt;}
.y23{bottom:606.547600pt;}
.y126{bottom:606.799333pt;}
.yb7{bottom:606.850400pt;}
.y239{bottom:607.566800pt;}
.y1d3{bottom:609.525333pt;}
.y261{bottom:609.766000pt;}
.y289{bottom:613.032933pt;}
.y1f7{bottom:618.510000pt;}
.y1af{bottom:619.072800pt;}
.y22{bottom:619.347600pt;}
.y14b{bottom:620.266667pt;}
.yfd{bottom:620.560000pt;}
.y21c{bottom:620.718667pt;}
.ydb{bottom:621.017867pt;}
.y67{bottom:621.577600pt;}
.y8f{bottom:621.776800pt;}
.y190{bottom:622.077600pt;}
.y16c{bottom:622.209333pt;}
.y40{bottom:622.367467pt;}
.y125{bottom:622.865467pt;}
.yb6{bottom:622.909200pt;}
.y238{bottom:623.435467pt;}
.y260{bottom:625.699333pt;}
.y288{bottom:628.499600pt;}
.y21{bottom:632.147600pt;}
.y1f6{bottom:633.194267pt;}
.y1ae{bottom:635.771067pt;}
.y14a{bottom:636.766000pt;}
.yfc{bottom:637.010267pt;}
.y21b{bottom:637.142667pt;}
.yda{bottom:637.392000pt;}
.y66{bottom:637.858267pt;}
.y8e{bottom:638.024267pt;}
.y18f{bottom:638.275067pt;}
.y16b{bottom:638.384800pt;}
.y3f{bottom:638.449733pt;}
.y124{bottom:638.931600pt;}
.yb5{bottom:638.968000pt;}
.y237{bottom:639.304133pt;}
.y1d2{bottom:641.028933pt;}
.y25f{bottom:641.632667pt;}
.y287{bottom:643.966267pt;}
.y20{bottom:644.947600pt;}
.y1f5{bottom:647.878400pt;}
.y1ad{bottom:652.469333pt;}
.y149{bottom:653.265200pt;}
.yfb{bottom:653.460667pt;}
.y21a{bottom:653.566533pt;}
.yd9{bottom:653.766000pt;}
.y65{bottom:654.139067pt;}
.y8d{bottom:654.271867pt;}
.y18e{bottom:654.472533pt;}
.y3e{bottom:654.532000pt;}
.y16a{bottom:654.560267pt;}
.y123{bottom:654.997733pt;}
.yb4{bottom:655.026800pt;}
.y236{bottom:655.172933pt;}
.y25e{bottom:657.566133pt;}
.y1f{bottom:657.747600pt;}
.y286{bottom:659.432933pt;}
.y1d1{bottom:660.614267pt;}
.y1f4{bottom:662.562667pt;}
.y1ac{bottom:669.167467pt;}
.y148{bottom:669.764400pt;}
.yfa{bottom:669.911067pt;}
.y219{bottom:669.990400pt;}
.yd8{bottom:670.140000pt;}
.y64{bottom:670.419867pt;}
.y8c{bottom:670.519467pt;}
.y1e{bottom:670.547600pt;}
.y3d{bottom:670.614400pt;}
.y18d{bottom:670.669867pt;}
.y169{bottom:670.735733pt;}
.y235{bottom:671.041600pt;}
.y122{bottom:671.063867pt;}
.yb3{bottom:671.085733pt;}
.y25d{bottom:673.499467pt;}
.y285{bottom:674.899600pt;}
.y1f3{bottom:677.246933pt;}
.y1d{bottom:683.347600pt;}
.y1ab{bottom:685.865733pt;}
.y147{bottom:686.263733pt;}
.yf9{bottom:686.361467pt;}
.y218{bottom:686.414267pt;}
.yd7{bottom:686.514133pt;}
.y3c{bottom:686.696667pt;}
.y63{bottom:686.700667pt;}
.y8b{bottom:686.767067pt;}
.y18c{bottom:686.867333pt;}
.y234{bottom:686.910267pt;}
.y168{bottom:686.911200pt;}
.y121{bottom:687.129867pt;}
.yb2{bottom:687.144533pt;}
.y25c{bottom:689.432800pt;}
.y284{bottom:690.366267pt;}
.y1f2{bottom:691.931200pt;}
.y1c{bottom:696.147600pt;}
.y1aa{bottom:702.564000pt;}
.y146{bottom:702.762933pt;}
.yf8{bottom:702.811733pt;}
.y217{bottom:702.838267pt;}
.y1d0{bottom:702.876800pt;}
.yd6{bottom:702.888133pt;}
.y62{bottom:702.981333pt;}
.y8a{bottom:703.014533pt;}
.y18b{bottom:703.064800pt;}
.y167{bottom:703.086667pt;}
.y120{bottom:703.196000pt;}
.yb1{bottom:703.203333pt;}
.y25b{bottom:705.366267pt;}
.y283{bottom:705.832933pt;}
.y1f1{bottom:706.615333pt;}
.y1b{bottom:708.947733pt;}
.y3b{bottom:717.897067pt;}
.y61{bottom:719.262267pt;}
.y1f0{bottom:721.299600pt;}
.y1a{bottom:721.747600pt;}
.y18{bottom:762.217200pt;}
.y19{bottom:762.217333pt;}
.h7{height:27.328000pt;}
.h6{height:28.224000pt;}
.h3{height:28.357875pt;}
.h4{height:29.287642pt;}
.h9{height:31.232000pt;}
.h8{height:32.256000pt;}
.hc{height:32.768000pt;}
.h2{height:38.656000pt;}
.h5{height:40.320000pt;}
.hd{height:40.960000pt;}
.hb{height:48.320000pt;}
.ha{height:48.384000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x1{left:11.338533pt;}
.x4{left:34.779733pt;}
.x2{left:48.000000pt;}
.x6{left:60.805733pt;}
.x5{left:67.689867pt;}
.xd{left:79.370133pt;}
.x8{left:83.149600pt;}
.xa{left:86.595867pt;}
.xb{left:90.708667pt;}
.xc{left:102.047200pt;}
.x9{left:109.606267pt;}
.x3{left:204.094533pt;}
.x7{left:505.170133pt;}
}




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