
    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_b6226be61a781451ff62686d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_2a58488621bc39b29ddf001b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_e2c7fcf487f8e6c628eec7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_de1ce0ae152d7eb4ca44bd06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_1d4f74265e5ad6989e3b20b8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_1556863708dc0f5ffb570612.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_3b7acf53b6d73c0c5e5179cb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_76040fa4daed56c3ffc3bfb5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_7fa377ba9b8c80b25cca0c58.woff')format("woff");}.ff9{font-family:ff9;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ca74e210e3cabc7b41437df5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_107e25a441ca842c4f8a2227.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d2315c33ac42fc641deda32e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_f439f530a9bc92a16dd8740c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.944336;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:ffe;src:url('chunks/assets/font_326209ebc9e9635c8d881426.woff')format("woff");}.ffe{font-family:ffe;line-height:0.899414;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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v1{vertical-align:23.760000px;}
.ls66{letter-spacing:-14.976000px;}
.ls6f{letter-spacing:-14.760000px;}
.ls3d{letter-spacing:-14.328000px;}
.ls82{letter-spacing:-7.344000px;}
.ls36{letter-spacing:-7.200000px;}
.ls81{letter-spacing:-7.128000px;}
.ls89{letter-spacing:-6.300000px;}
.ls88{letter-spacing:-6.000000px;}
.ls85{letter-spacing:-4.800000px;}
.ls30{letter-spacing:-4.176000px;}
.ls6e{letter-spacing:-2.880000px;}
.ls78{letter-spacing:-2.808000px;}
.ls83{letter-spacing:-1.872000px;}
.ls50{letter-spacing:-1.224000px;}
.ls5a{letter-spacing:-1.080000px;}
.ls5b{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls51{letter-spacing:-0.302400px;}
.ls7{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.288000px;}
.ls5c{letter-spacing:-0.252000px;}
.ls1d{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.009000px;}
.ls18{letter-spacing:0.029400px;}
.ls4b{letter-spacing:0.050400px;}
.ls3f{letter-spacing:0.055800px;}
.ls14{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.079200px;}
.ls5{letter-spacing:0.144000px;}
.ls6d{letter-spacing:0.151200px;}
.ls68{letter-spacing:0.158400px;}
.ls67{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls74{letter-spacing:0.381600px;}
.ls57{letter-spacing:0.403200px;}
.ls9{letter-spacing:0.432000px;}
.ls7e{letter-spacing:0.446400px;}
.ls1e{letter-spacing:0.504000px;}
.ls77{letter-spacing:0.554400px;}
.ls1f{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.720000px;}
.ls29{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.864000px;}
.ls2a{letter-spacing:0.936000px;}
.ls12{letter-spacing:1.008000px;}
.ls4f{letter-spacing:1.080000px;}
.ls42{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.224000px;}
.ls7d{letter-spacing:1.267200px;}
.ls7c{letter-spacing:1.296000px;}
.ls26{letter-spacing:1.368000px;}
.ls7b{letter-spacing:1.440000px;}
.ls25{letter-spacing:1.512000px;}
.ls6b{letter-spacing:1.656000px;}
.ls5e{letter-spacing:1.800000px;}
.ls46{letter-spacing:2.016000px;}
.ls40{letter-spacing:2.160000px;}
.ls38{letter-spacing:2.376000px;}
.ls3c{letter-spacing:2.448000px;}
.ls58{letter-spacing:2.520000px;}
.ls21{letter-spacing:2.592000px;}
.ls1{letter-spacing:2.850000px;}
.ls84{letter-spacing:2.928000px;}
.ls39{letter-spacing:3.456000px;}
.ls54{letter-spacing:3.528000px;}
.ls61{letter-spacing:3.600000px;}
.ls86{letter-spacing:3.648000px;}
.ls87{letter-spacing:3.660000px;}
.lsb{letter-spacing:3.672000px;}
.ls32{letter-spacing:4.032000px;}
.ls60{letter-spacing:4.392000px;}
.ls3e{letter-spacing:4.413600px;}
.ls53{letter-spacing:4.507200px;}
.ls52{letter-spacing:4.536000px;}
.ls3{letter-spacing:4.560000px;}
.ls80{letter-spacing:4.752000px;}
.ls5d{letter-spacing:4.824000px;}
.ls5f{letter-spacing:4.968000px;}
.ls70{letter-spacing:5.040000px;}
.ls65{letter-spacing:5.112000px;}
.ls63{letter-spacing:5.184000px;}
.ls41{letter-spacing:5.191200px;}
.ls4e{letter-spacing:5.400000px;}
.ls33{letter-spacing:5.544000px;}
.ls48{letter-spacing:5.904000px;}
.ls28{letter-spacing:6.192000px;}
.ls59{letter-spacing:6.696000px;}
.ls69{letter-spacing:6.840000px;}
.ls13{letter-spacing:7.056000px;}
.ls62{letter-spacing:7.128000px;}
.ls4d{letter-spacing:7.182000px;}
.ls35{letter-spacing:7.506000px;}
.ls56{letter-spacing:7.560000px;}
.ls20{letter-spacing:7.614000px;}
.ls16{letter-spacing:7.776000px;}
.ls34{letter-spacing:7.830000px;}
.ls71{letter-spacing:7.938000px;}
.ls2b{letter-spacing:8.046000px;}
.ls27{letter-spacing:8.100000px;}
.ls55{letter-spacing:8.154000px;}
.ls43{letter-spacing:8.262000px;}
.ls64{letter-spacing:8.370000px;}
.ls3b{letter-spacing:8.424000px;}
.ls0{letter-spacing:8.436000px;}
.ls4{letter-spacing:8.460000px;}
.ls7a{letter-spacing:8.532000px;}
.ls2c{letter-spacing:8.640000px;}
.ls47{letter-spacing:8.748000px;}
.ls49{letter-spacing:8.802000px;}
.ls73{letter-spacing:9.050400px;}
.ls75{letter-spacing:9.072000px;}
.ls7f{letter-spacing:9.216000px;}
.ls2f{letter-spacing:9.234000px;}
.ls76{letter-spacing:9.432000px;}
.ls72{letter-spacing:9.504000px;}
.ls45{letter-spacing:10.224000px;}
.ls44{letter-spacing:10.368000px;}
.ls4c{letter-spacing:10.440000px;}
.ls6a{letter-spacing:10.584000px;}
.ls79{letter-spacing:10.656000px;}
.ls2{letter-spacing:10.740000px;}
.ls4a{letter-spacing:11.088000px;}
.ls6c{letter-spacing:13.795500px;}
.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;}
}
.ws74{word-spacing:-72.072000px;}
.ws77{word-spacing:-72.000000px;}
.ws76{word-spacing:-71.856000px;}
.ws83{word-spacing:-59.700000px;}
.ws2{word-spacing:-25.320000px;}
.ws2f{word-spacing:-24.408000px;}
.ws50{word-spacing:-23.976000px;}
.ws4f{word-spacing:-23.922000px;}
.ws36{word-spacing:-23.814000px;}
.ws44{word-spacing:-23.598000px;}
.ws66{word-spacing:-23.544000px;}
.ws4d{word-spacing:-23.436000px;}
.ws59{word-spacing:-23.328000px;}
.ws33{word-spacing:-23.274000px;}
.ws35{word-spacing:-23.220000px;}
.ws6f{word-spacing:-23.112000px;}
.ws3f{word-spacing:-23.004000px;}
.ws1c{word-spacing:-22.950000px;}
.ws60{word-spacing:-22.734000px;}
.ws40{word-spacing:-22.680000px;}
.ws54{word-spacing:-22.356000px;}
.ws10{word-spacing:-20.592000px;}
.wsf{word-spacing:-20.232000px;}
.ws45{word-spacing:-19.944000px;}
.ws49{word-spacing:-19.800000px;}
.ws1{word-spacing:-18.867000px;}
.ws53{word-spacing:-18.792000px;}
.ws51{word-spacing:-18.648000px;}
.ws3d{word-spacing:-18.576000px;}
.ws30{word-spacing:-18.504000px;}
.ws28{word-spacing:-18.360000px;}
.ws27{word-spacing:-18.288000px;}
.ws31{word-spacing:-18.216000px;}
.ws5a{word-spacing:-18.187200px;}
.ws32{word-spacing:-18.144000px;}
.ws4b{word-spacing:-18.000000px;}
.ws6a{word-spacing:-17.928000px;}
.ws75{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws1d{word-spacing:-17.712000px;}
.ws47{word-spacing:-17.640000px;}
.ws46{word-spacing:-17.568000px;}
.ws73{word-spacing:-17.496000px;}
.ws3e{word-spacing:-17.424000px;}
.ws61{word-spacing:-17.136000px;}
.ws3{word-spacing:-16.860000px;}
.ws5b{word-spacing:-16.776000px;}
.ws7f{word-spacing:-16.560000px;}
.ws34{word-spacing:-16.056000px;}
.ws80{word-spacing:-14.820000px;}
.ws70{word-spacing:-14.716800px;}
.ws84{word-spacing:-14.520000px;}
.ws69{word-spacing:-14.313600px;}
.ws4e{word-spacing:-14.212800px;}
.ws1e{word-spacing:-14.162400px;}
.ws5c{word-spacing:-13.910400px;}
.ws55{word-spacing:-13.860000px;}
.ws63{word-spacing:-13.488000px;}
.ws71{word-spacing:-13.248000px;}
.ws1f{word-spacing:-11.856000px;}
.ws72{word-spacing:-8.532000px;}
.wsd{word-spacing:-8.496000px;}
.ws9{word-spacing:-8.460000px;}
.ws2a{word-spacing:-7.614000px;}
.ws7e{word-spacing:-4.752000px;}
.ws8{word-spacing:-4.560000px;}
.ws37{word-spacing:-1.512000px;}
.ws78{word-spacing:-1.440000px;}
.ws38{word-spacing:-1.368000px;}
.ws79{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.224000px;}
.ws4c{word-spacing:-1.152000px;}
.ws56{word-spacing:-1.080000px;}
.ws19{word-spacing:-1.008000px;}
.ws3a{word-spacing:-0.936000px;}
.ws18{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.792000px;}
.ws39{word-spacing:-0.720000px;}
.ws2d{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.576000px;}
.ws2e{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.288000px;}
.ws14{word-spacing:-0.216000px;}
.ws68{word-spacing:-0.189000px;}
.wsa{word-spacing:-0.144000px;}
.ws1a{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:0.072000px;}
.ws16{word-spacing:0.144000px;}
.ws17{word-spacing:0.216000px;}
.ws26{word-spacing:0.240000px;}
.ws21{word-spacing:0.288000px;}
.ws7{word-spacing:0.300000px;}
.ws23{word-spacing:0.360000px;}
.ws22{word-spacing:0.432000px;}
.ws1b{word-spacing:0.504000px;}
.ws2c{word-spacing:0.576000px;}
.ws2b{word-spacing:0.648000px;}
.ws42{word-spacing:0.720000px;}
.ws13{word-spacing:0.792000px;}
.ws12{word-spacing:0.864000px;}
.ws5f{word-spacing:1.008000px;}
.ws5e{word-spacing:1.080000px;}
.ws57{word-spacing:1.224000px;}
.ws7c{word-spacing:1.440000px;}
.ws67{word-spacing:1.512000px;}
.ws82{word-spacing:1.632000px;}
.ws5{word-spacing:1.800000px;}
.ws7d{word-spacing:1.872000px;}
.ws6{word-spacing:2.256000px;}
.ws20{word-spacing:2.400000px;}
.ws5d{word-spacing:2.808000px;}
.ws6d{word-spacing:2.880000px;}
.ws52{word-spacing:3.312000px;}
.ws25{word-spacing:3.360000px;}
.ws11{word-spacing:4.200000px;}
.ws81{word-spacing:4.800000px;}
.ws4a{word-spacing:5.184000px;}
.ws85{word-spacing:6.000000px;}
.ws86{word-spacing:6.300000px;}
.ws6c{word-spacing:7.056000px;}
.ws7a{word-spacing:7.128000px;}
.ws41{word-spacing:7.200000px;}
.ws7b{word-spacing:7.344000px;}
.ws62{word-spacing:7.416000px;}
.ws58{word-spacing:8.640000px;}
.ws43{word-spacing:8.784000px;}
.ws64{word-spacing:9.540000px;}
.ws6b{word-spacing:9.720000px;}
.ws65{word-spacing:9.792000px;}
.ws48{word-spacing:10.152000px;}
.ws6e{word-spacing:14.760000px;}
.ws0{word-spacing:146.196000px;}
._d{margin-left:-948.820800px;}
._10{margin-left:-15.208200px;}
._13{margin-left:-13.826400px;}
._17{margin-left:-11.856000px;}
._14{margin-left:-10.136400px;}
._f{margin-left:-8.994000px;}
._8{margin-left:-7.900500px;}
._9{margin-left:-6.186000px;}
._12{margin-left:-5.162400px;}
._4{margin-left:-3.936000px;}
._6{margin-left:-2.614500px;}
._5{margin-left:-1.560000px;}
._2{width:1.738500px;}
._1{width:2.796000px;}
._0{width:4.296000px;}
._e{width:5.352900px;}
._7{width:6.361200px;}
._3{width:8.352000px;}
._c{width:9.824400px;}
._b{width:10.914300px;}
._a{width:12.498000px;}
._16{width:13.796100px;}
._15{width:14.865300px;}
._11{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.700000px;}
.fs9{font-size:37.800000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y64{bottom:117.000000px;}
.y16a{bottom:117.240000px;}
.y147{bottom:117.246000px;}
.y220{bottom:117.624000px;}
.y45{bottom:118.110000px;}
.y24d{bottom:118.116000px;}
.y21{bottom:119.019900px;}
.y4c{bottom:119.280000px;}
.ye7{bottom:120.186000px;}
.yfd{bottom:120.492300px;}
.y121{bottom:121.207500px;}
.y27e{bottom:121.736250px;}
.yc5{bottom:132.000000px;}
.y21f{bottom:132.468000px;}
.y24c{bottom:133.116000px;}
.y63{bottom:136.207500px;}
.y169{bottom:139.146000px;}
.y146{bottom:139.152000px;}
.ya7{bottom:139.500000px;}
.y27d{bottom:140.336250px;}
.y44{bottom:141.204000px;}
.y20{bottom:141.213900px;}
.y4b{bottom:141.924000px;}
.ye6{bottom:142.542000px;}
.yfc{bottom:143.136300px;}
.y1e9{bottom:143.707500px;}
.y120{bottom:147.000000px;}
.y21e{bottom:147.312000px;}
.y24b{bottom:148.116000px;}
.yc4{bottom:151.207500px;}
.y62{bottom:154.500000px;}
.y204{bottom:158.707500px;}
.y27c{bottom:158.936250px;}
.y168{bottom:161.052000px;}
.y145{bottom:161.058000px;}
.y1c7{bottom:161.376000px;}
.ya6{bottom:162.000000px;}
.y21d{bottom:162.156000px;}
.y24a{bottom:163.116000px;}
.y1f{bottom:163.407900px;}
.y43{bottom:164.298000px;}
.y4a{bottom:164.568000px;}
.ye5{bottom:164.898000px;}
.yfb{bottom:165.780300px;}
.y11f{bottom:166.207500px;}
.y61{bottom:169.500000px;}
.y87{bottom:173.707500px;}
.y1a6{bottom:174.264000px;}
.y18b{bottom:174.294000px;}
.y27b{bottom:177.536250px;}
.y249{bottom:178.116000px;}
.y1e8{bottom:181.207500px;}
.y167{bottom:182.958000px;}
.y144{bottom:182.964000px;}
.y21c{bottom:183.384000px;}
.y60{bottom:184.500000px;}
.y1c6{bottom:184.632000px;}
.y1e{bottom:185.763900px;}
.y49{bottom:187.212000px;}
.ye4{bottom:187.254000px;}
.y42{bottom:187.392000px;}
.yfa{bottom:188.424300px;}
.yc3{bottom:189.558000px;}
.y86{bottom:192.000000px;}
.y248{bottom:193.116000px;}
.y27a{bottom:196.136250px;}
.y1a5{bottom:197.070000px;}
.y18a{bottom:197.100000px;}
.y203{bottom:197.376000px;}
.y5f{bottom:199.500000px;}
.y11e{bottom:203.707500px;}
.y166{bottom:204.864000px;}
.y143{bottom:204.870000px;}
.ya5{bottom:207.000000px;}
.y1c5{bottom:207.888000px;}
.y247{bottom:208.116000px;}
.y1d{bottom:208.119900px;}
.ye3{bottom:209.610000px;}
.y48{bottom:210.306000px;}
.y41{bottom:210.486000px;}
.yf9{bottom:211.068300px;}
.y85{bottom:211.207500px;}
.yc2{bottom:211.914000px;}
.y5e{bottom:214.500000px;}
.y279{bottom:214.736250px;}
.y189{bottom:219.780000px;}
.y1a4{bottom:219.876000px;}
.yaa{bottom:222.000000px;}
.y246{bottom:223.116000px;}
.y1e7{bottom:224.562000px;}
.y165{bottom:226.770000px;}
.y142{bottom:226.776000px;}
.y21b{bottom:228.084000px;}
.ya4{bottom:229.500000px;}
.y1c{bottom:230.475900px;}
.y1c4{bottom:231.144000px;}
.ye2{bottom:231.966000px;}
.y278{bottom:233.336250px;}
.y47{bottom:233.400000px;}
.y40{bottom:233.580000px;}
.y5d{bottom:233.707500px;}
.yf8{bottom:233.712300px;}
.yc1{bottom:234.270000px;}
.ya9{bottom:237.000000px;}
.y245{bottom:238.116000px;}
.y11d{bottom:239.142000px;}
.y1a3{bottom:242.682000px;}
.y21a{bottom:242.928000px;}
.y1e6{bottom:247.368000px;}
.y164{bottom:248.676000px;}
.y141{bottom:248.682000px;}
.y277{bottom:251.936250px;}
.y84{bottom:252.000000px;}
.y1b{bottom:252.825900px;}
.y244{bottom:253.116000px;}
.ye1{bottom:254.322000px;}
.y1c3{bottom:254.400000px;}
.ya8{bottom:256.207500px;}
.yf7{bottom:256.356300px;}
.y46{bottom:256.500000px;}
.yc0{bottom:256.626000px;}
.y3f{bottom:256.674000px;}
.y219{bottom:257.772000px;}
.y11c{bottom:261.336000px;}
.y188{bottom:265.374000px;}
.y1a2{bottom:265.488000px;}
.y83{bottom:267.000000px;}
.y243{bottom:268.116000px;}
.y1e5{bottom:270.012000px;}
.y276{bottom:270.536250px;}
.y163{bottom:270.582000px;}
.y140{bottom:270.588000px;}
.y5c{bottom:273.614250px;}
.ya3{bottom:274.500000px;}
.ye0{bottom:276.678000px;}
.y1c2{bottom:277.704000px;}
.ybf{bottom:278.982000px;}
.y218{bottom:279.000000px;}
.yf6{bottom:279.000300px;}
.y3e{bottom:279.768000px;}
.y82{bottom:282.000000px;}
.y242{bottom:283.116000px;}
.y11b{bottom:283.530000px;}
.y187{bottom:288.180000px;}
.y1a1{bottom:288.294000px;}
.y275{bottom:289.136250px;}
.y162{bottom:292.488000px;}
.y13f{bottom:292.494000px;}
.y1e4{bottom:292.656000px;}
.y5b{bottom:296.114250px;}
.y81{bottom:297.000000px;}
.y1a{bottom:297.525900px;}
.y241{bottom:298.116000px;}
.ydf{bottom:299.034000px;}
.y1c1{bottom:300.960000px;}
.ybe{bottom:301.338000px;}
.yf5{bottom:301.644300px;}
.y3d{bottom:302.862000px;}
.y11a{bottom:305.724000px;}
.y186{bottom:310.986000px;}
.y1a0{bottom:311.100000px;}
.y80{bottom:312.000000px;}
.y240{bottom:313.116000px;}
.y161{bottom:314.394000px;}
.y13e{bottom:314.400000px;}
.y1e3{bottom:315.324000px;}
.y5a{bottom:318.614250px;}
.ya2{bottom:319.500000px;}
.y274{bottom:320.492100px;}
.yde{bottom:321.534000px;}
.y217{bottom:323.538000px;}
.ybd{bottom:323.694000px;}
.y1c0{bottom:324.216000px;}
.yf4{bottom:324.288300px;}
.y19{bottom:324.628800px;}
.y3c{bottom:325.956000px;}
.y7f{bottom:327.000000px;}
.y119{bottom:327.918000px;}
.y23f{bottom:328.116000px;}
.y185{bottom:333.792000px;}
.y19f{bottom:333.864000px;}
.y202{bottom:333.894000px;}
.y13d{bottom:336.228000px;}
.y160{bottom:336.300000px;}
.y1e2{bottom:337.968000px;}
.y59{bottom:341.114250px;}
.ya1{bottom:342.000000px;}
.y23e{bottom:343.116000px;}
.y18{bottom:343.228800px;}
.ydd{bottom:344.034000px;}
.y216{bottom:345.894000px;}
.ybc{bottom:346.050000px;}
.yf3{bottom:346.932300px;}
.y1bf{bottom:347.472000px;}
.y3b{bottom:349.050000px;}
.y118{bottom:350.112000px;}
.y273{bottom:351.294000px;}
.y184{bottom:356.598000px;}
.y201{bottom:356.688000px;}
.y23d{bottom:358.116000px;}
.y13c{bottom:358.134000px;}
.y15f{bottom:358.146000px;}
.y1e1{bottom:360.612000px;}
.y17{bottom:361.828800px;}
.y58{bottom:363.614250px;}
.ya0{bottom:364.500000px;}
.ydc{bottom:366.534000px;}
.y215{bottom:368.250000px;}
.ybb{bottom:368.370000px;}
.y7e{bottom:368.388000px;}
.yf2{bottom:369.618300px;}
.y1be{bottom:370.728000px;}
.y3a{bottom:372.144000px;}
.y117{bottom:372.306000px;}
.y23c{bottom:373.116000px;}
.y183{bottom:379.404000px;}
.y19e{bottom:379.458000px;}
.y200{bottom:379.494000px;}
.y13b{bottom:380.040000px;}
.y15e{bottom:380.052000px;}
.y16{bottom:380.428800px;}
.y1e0{bottom:383.256000px;}
.y57{bottom:386.114250px;}
.y9f{bottom:387.000000px;}
.y23b{bottom:388.116000px;}
.ydb{bottom:389.034000px;}
.y214{bottom:390.606000px;}
.yba{bottom:390.726000px;}
.y7d{bottom:390.744000px;}
.yf1{bottom:392.262300px;}
.y1bd{bottom:393.984000px;}
.y116{bottom:394.500000px;}
.y39{bottom:395.238000px;}
.y15{bottom:399.028800px;}
.y272{bottom:400.242000px;}
.y13a{bottom:401.946000px;}
.y15d{bottom:401.958000px;}
.y182{bottom:402.210000px;}
.y19d{bottom:402.264000px;}
.y1ff{bottom:402.300000px;}
.y23a{bottom:403.116000px;}
.y1df{bottom:405.972000px;}
.y56{bottom:408.614250px;}
.y9e{bottom:409.500000px;}
.yda{bottom:411.534000px;}
.y213{bottom:412.962000px;}
.y7c{bottom:413.046000px;}
.yb9{bottom:413.082000px;}
.yf0{bottom:414.906300px;}
.y271{bottom:415.086000px;}
.y115{bottom:416.772000px;}
.y14{bottom:417.628800px;}
.y239{bottom:418.116000px;}
.y38{bottom:418.332000px;}
.y139{bottom:423.852000px;}
.y15c{bottom:423.864000px;}
.y181{bottom:425.016000px;}
.y19c{bottom:425.070000px;}
.y1fe{bottom:425.082000px;}
.y1de{bottom:428.616000px;}
.y270{bottom:429.930000px;}
.y55{bottom:431.114250px;}
.y9d{bottom:432.000000px;}
.y238{bottom:433.116000px;}
.yd9{bottom:434.034000px;}
.y212{bottom:435.318000px;}
.y7b{bottom:435.402000px;}
.yb8{bottom:435.438000px;}
.y13{bottom:436.228800px;}
.yef{bottom:437.550300px;}
.y114{bottom:438.966000px;}
.y1bc{bottom:440.334000px;}
.y37{bottom:441.426000px;}
.y26f{bottom:444.774000px;}
.y138{bottom:445.758000px;}
.y15b{bottom:445.770000px;}
.y180{bottom:447.822000px;}
.y19b{bottom:447.876000px;}
.y1fd{bottom:447.888000px;}
.y237{bottom:448.116000px;}
.y1dd{bottom:451.260000px;}
.y54{bottom:453.614250px;}
.y9c{bottom:454.500000px;}
.y12{bottom:454.828800px;}
.yd8{bottom:456.534000px;}
.y211{bottom:457.674000px;}
.y7a{bottom:457.758000px;}
.yb7{bottom:457.794000px;}
.y26e{bottom:459.618000px;}
.yee{bottom:460.194300px;}
.y113{bottom:461.160000px;}
.y236{bottom:463.116000px;}
.y1bb{bottom:463.428000px;}
.y36{bottom:464.520000px;}
.y28f{bottom:465.750000px;}
.y137{bottom:467.664000px;}
.y15a{bottom:467.676000px;}
.y17f{bottom:470.628000px;}
.y19a{bottom:470.682000px;}
.y1fc{bottom:470.694000px;}
.y1dc{bottom:473.904000px;}
.y26d{bottom:474.462000px;}
.y53{bottom:476.114250px;}
.y9b{bottom:477.000000px;}
.y235{bottom:478.116000px;}
.y210{bottom:480.030000px;}
.y79{bottom:480.114000px;}
.yb6{bottom:480.150000px;}
.y11{bottom:481.933800px;}
.yed{bottom:482.838300px;}
.y112{bottom:483.354000px;}
.y28e{bottom:484.500000px;}
.y1ba{bottom:486.522000px;}
.y35{bottom:487.614000px;}
.y26c{bottom:489.306000px;}
.y136{bottom:489.570000px;}
.y159{bottom:489.582000px;}
.y234{bottom:493.116000px;}
.y17e{bottom:493.434000px;}
.y1fb{bottom:493.476000px;}
.y199{bottom:493.488000px;}
.y1db{bottom:496.548000px;}
.y52{bottom:498.614250px;}
.y9a{bottom:499.500000px;}
.yd7{bottom:501.534000px;}
.y20f{bottom:502.386000px;}
.yb5{bottom:502.458000px;}
.y78{bottom:502.470000px;}
.y28d{bottom:503.250000px;}
.y26b{bottom:504.150000px;}
.yec{bottom:505.482300px;}
.y111{bottom:505.548000px;}
.y233{bottom:508.116000px;}
.y1b9{bottom:509.616000px;}
.y34{bottom:510.708000px;}
.y135{bottom:511.476000px;}
.y158{bottom:511.488000px;}
.y17d{bottom:516.240000px;}
.y1fa{bottom:516.282000px;}
.y198{bottom:516.294000px;}
.y26a{bottom:518.994000px;}
.y1da{bottom:519.192000px;}
.y51{bottom:521.114250px;}
.y99{bottom:522.000000px;}
.yd6{bottom:524.034000px;}
.y20e{bottom:524.742000px;}
.yb4{bottom:524.814000px;}
.y77{bottom:524.826000px;}
.y10{bottom:526.633800px;}
.y110{bottom:527.742000px;}
.yeb{bottom:528.150300px;}
.y232{bottom:529.500000px;}
.y1b8{bottom:532.710000px;}
.y134{bottom:533.382000px;}
.y157{bottom:533.394000px;}
.y33{bottom:533.802000px;}
.y269{bottom:533.838000px;}
.y17c{bottom:539.046000px;}
.y1f9{bottom:539.088000px;}
.y197{bottom:539.100000px;}
.y1d9{bottom:541.836000px;}
.y50{bottom:543.614250px;}
.y98{bottom:544.500000px;}
.yf{bottom:545.233800px;}
.yd5{bottom:546.534000px;}
.y20d{bottom:547.098000px;}
.yb3{bottom:547.170000px;}
.y76{bottom:547.182000px;}
.y268{bottom:548.682000px;}
.y10f{bottom:549.936000px;}
.yea{bottom:550.794300px;}
.y28c{bottom:552.000000px;}
.y133{bottom:555.288000px;}
.y156{bottom:555.300000px;}
.y1b7{bottom:555.804000px;}
.y32{bottom:556.896000px;}
.y17b{bottom:561.852000px;}
.y196{bottom:561.888000px;}
.y1f8{bottom:561.894000px;}
.y267{bottom:563.526000px;}
.y1d8{bottom:564.480000px;}
.y4f{bottom:566.114250px;}
.y97{bottom:567.000000px;}
.yd4{bottom:569.034000px;}
.y20c{bottom:569.454000px;}
.yb2{bottom:569.526000px;}
.y75{bottom:569.538000px;}
.y10e{bottom:572.130000px;}
.ye{bottom:572.336700px;}
.ye9{bottom:573.438300px;}
.y231{bottom:574.500000px;}
.y155{bottom:577.146000px;}
.y132{bottom:577.194000px;}
.y266{bottom:578.370000px;}
.y1b6{bottom:578.898000px;}
.y31{bottom:579.990000px;}
.y17a{bottom:584.658000px;}
.y1f7{bottom:584.700000px;}
.y1d7{bottom:587.124000px;}
.y4e{bottom:588.614250px;}
.y96{bottom:589.500000px;}
.yd{bottom:590.936700px;}
.yd3{bottom:591.534000px;}
.y20b{bottom:591.810000px;}
.yb1{bottom:591.882000px;}
.y74{bottom:591.894000px;}
.y265{bottom:593.214000px;}
.y28b{bottom:593.250000px;}
.y10d{bottom:594.324000px;}
.ye8{bottom:596.082300px;}
.y154{bottom:599.052000px;}
.y131{bottom:599.100000px;}
.y1b5{bottom:601.992000px;}
.y30{bottom:603.084000px;}
.y230{bottom:604.500000px;}
.y179{bottom:607.464000px;}
.y1f6{bottom:607.470000px;}
.y195{bottom:607.482000px;}
.y264{bottom:608.058000px;}
.yc{bottom:609.536700px;}
.y1d6{bottom:609.768000px;}
.y95{bottom:612.000000px;}
.yd2{bottom:614.034000px;}
.y20a{bottom:614.166000px;}
.yb0{bottom:614.238000px;}
.y73{bottom:614.244000px;}
.y10c{bottom:616.518000px;}
.y22f{bottom:619.500000px;}
.y153{bottom:620.958000px;}
.y130{bottom:620.982000px;}
.y263{bottom:622.902000px;}
.y1b4{bottom:625.086000px;}
.y2f{bottom:626.178000px;}
.yb{bottom:628.136700px;}
.y178{bottom:630.270000px;}
.y1f5{bottom:630.276000px;}
.y194{bottom:630.288000px;}
.y28a{bottom:630.750000px;}
.y1d5{bottom:632.412000px;}
.y94{bottom:634.500000px;}
.y209{bottom:636.522000px;}
.yd1{bottom:636.534000px;}
.yaf{bottom:636.594000px;}
.y72{bottom:636.600000px;}
.y262{bottom:637.746000px;}
.y10b{bottom:638.712000px;}
.y12f{bottom:642.888000px;}
.ya{bottom:646.736700px;}
.y1b3{bottom:648.180000px;}
.y2e{bottom:649.272000px;}
.y22e{bottom:649.500000px;}
.y261{bottom:652.590000px;}
.y177{bottom:653.076000px;}
.y1f4{bottom:653.082000px;}
.y193{bottom:653.094000px;}
.y1d4{bottom:655.056000px;}
.y93{bottom:657.000000px;}
.y208{bottom:658.878000px;}
.yd0{bottom:658.890000px;}
.y71{bottom:658.926000px;}
.yae{bottom:658.932000px;}
.y10a{bottom:660.906000px;}
.y22d{bottom:664.500000px;}
.y152{bottom:664.752000px;}
.y12e{bottom:664.794000px;}
.y9{bottom:665.336700px;}
.y260{bottom:667.434000px;}
.y289{bottom:668.250000px;}
.y1b2{bottom:671.274000px;}
.y2d{bottom:672.366000px;}
.y176{bottom:675.882000px;}
.y1f3{bottom:675.888000px;}
.y192{bottom:675.900000px;}
.y1d3{bottom:677.700000px;}
.y92{bottom:679.500000px;}
.y207{bottom:681.234000px;}
.ycf{bottom:681.246000px;}
.y70{bottom:681.282000px;}
.yad{bottom:681.288000px;}
.y25f{bottom:682.278000px;}
.y109{bottom:683.112000px;}
.y8{bottom:683.936700px;}
.y151{bottom:686.658000px;}
.y12d{bottom:686.700000px;}
.y288{bottom:687.000000px;}
.y1b1{bottom:694.368000px;}
.y22c{bottom:694.500000px;}
.y2c{bottom:695.460000px;}
.y25e{bottom:697.122000px;}
.y191{bottom:698.640000px;}
.y175{bottom:698.688000px;}
.y1f2{bottom:698.694000px;}
.y1d2{bottom:700.368000px;}
.y91{bottom:702.000000px;}
.y7{bottom:702.536700px;}
.y206{bottom:703.590000px;}
.yce{bottom:703.602000px;}
.y6f{bottom:703.638000px;}
.yac{bottom:703.644000px;}
.y108{bottom:705.306000px;}
.y287{bottom:705.750000px;}
.y12c{bottom:708.552000px;}
.y150{bottom:708.564000px;}
.y22b{bottom:709.500000px;}
.y25d{bottom:711.966000px;}
.y1b0{bottom:717.462000px;}
.y2b{bottom:718.554000px;}
.y190{bottom:721.446000px;}
.y174{bottom:721.494000px;}
.y1f1{bottom:721.500000px;}
.y1d1{bottom:723.012000px;}
.y90{bottom:724.500000px;}
.y205{bottom:725.946000px;}
.ycd{bottom:725.958000px;}
.y6e{bottom:725.994000px;}
.yab{bottom:726.000000px;}
.y25c{bottom:726.810000px;}
.y107{bottom:727.500000px;}
.y6{bottom:729.641700px;}
.y12b{bottom:730.458000px;}
.y14f{bottom:730.470000px;}
.y22a{bottom:739.500000px;}
.y1af{bottom:740.556000px;}
.y2a{bottom:741.648000px;}
.y25b{bottom:741.654000px;}
.y286{bottom:743.250000px;}
.y18f{bottom:744.252000px;}
.y1f0{bottom:744.264000px;}
.y173{bottom:744.282000px;}
.y1d0{bottom:745.656000px;}
.y8f{bottom:747.000000px;}
.y6d{bottom:748.302000px;}
.ycc{bottom:748.314000px;}
.y106{bottom:749.736000px;}
.y12a{bottom:752.364000px;}
.y14e{bottom:752.376000px;}
.y229{bottom:754.500000px;}
.y25a{bottom:756.498000px;}
.y285{bottom:762.000000px;}
.y1ae{bottom:763.650000px;}
.y29{bottom:764.742000px;}
.y18e{bottom:767.058000px;}
.y1ef{bottom:767.070000px;}
.y172{bottom:767.088000px;}
.y1cf{bottom:768.300000px;}
.y8e{bottom:769.500000px;}
.y6c{bottom:770.658000px;}
.ycb{bottom:770.670000px;}
.y259{bottom:771.342000px;}
.y105{bottom:771.930000px;}
.y129{bottom:774.270000px;}
.y14d{bottom:774.282000px;}
.y5{bottom:775.377450px;}
.y284{bottom:780.750000px;}
.y228{bottom:784.500000px;}
.y258{bottom:786.186000px;}
.y1ad{bottom:786.720000px;}
.y28{bottom:787.836000px;}
.y18d{bottom:789.864000px;}
.y1ee{bottom:789.876000px;}
.y171{bottom:789.894000px;}
.y1ce{bottom:790.962000px;}
.y8d{bottom:792.000000px;}
.y6b{bottom:793.014000px;}
.yca{bottom:793.026000px;}
.y104{bottom:794.124000px;}
.y128{bottom:796.176000px;}
.y14c{bottom:796.188000px;}
.y4{bottom:797.877450px;}
.y227{bottom:799.500000px;}
.y257{bottom:801.030000px;}
.y1ac{bottom:809.976000px;}
.y27{bottom:810.930000px;}
.y18c{bottom:812.670000px;}
.y1ed{bottom:812.682000px;}
.y170{bottom:812.700000px;}
.y1cd{bottom:813.606000px;}
.y8c{bottom:814.500000px;}
.y6a{bottom:815.370000px;}
.yc9{bottom:815.382000px;}
.y256{bottom:815.886000px;}
.y103{bottom:816.318000px;}
.y127{bottom:818.082000px;}
.y14b{bottom:818.094000px;}
.y283{bottom:818.250000px;}
.y226{bottom:829.500000px;}
.y255{bottom:830.730000px;}
.y1ab{bottom:833.232000px;}
.y26{bottom:834.024000px;}
.y16f{bottom:835.476000px;}
.y1ec{bottom:835.488000px;}
.y1cc{bottom:836.250000px;}
.y8b{bottom:837.000000px;}
.y69{bottom:837.726000px;}
.yc8{bottom:837.738000px;}
.y102{bottom:838.512000px;}
.y126{bottom:839.988000px;}
.y14a{bottom:840.000000px;}
.y225{bottom:844.500000px;}
.y254{bottom:845.574000px;}
.y282{bottom:855.750000px;}
.y1aa{bottom:856.488000px;}
.y25{bottom:857.118000px;}
.y16e{bottom:858.282000px;}
.y1eb{bottom:858.294000px;}
.y1cb{bottom:858.918000px;}
.y8a{bottom:859.500000px;}
.y68{bottom:860.082000px;}
.yc7{bottom:860.094000px;}
.y253{bottom:860.418000px;}
.y101{bottom:860.706000px;}
.y149{bottom:861.882000px;}
.y125{bottom:861.894000px;}
.y3{bottom:865.023150px;}
.y224{bottom:874.500000px;}
.y252{bottom:875.262000px;}
.y1a9{bottom:879.744000px;}
.y24{bottom:880.212000px;}
.y16d{bottom:881.088000px;}
.y1ea{bottom:881.100000px;}
.y1ca{bottom:881.562000px;}
.y89{bottom:882.000000px;}
.y67{bottom:882.438000px;}
.yc6{bottom:882.450000px;}
.y100{bottom:882.912000px;}
.y148{bottom:883.788000px;}
.y124{bottom:883.800000px;}
.y223{bottom:889.500000px;}
.y251{bottom:890.118000px;}
.y281{bottom:893.250000px;}
.y1a8{bottom:903.000000px;}
.y23{bottom:903.306000px;}
.y16c{bottom:903.894000px;}
.y1c9{bottom:904.206000px;}
.y88{bottom:904.500000px;}
.y66{bottom:904.794000px;}
.y250{bottom:904.962000px;}
.yff{bottom:905.106000px;}
.y123{bottom:905.694000px;}
.y280{bottom:912.000000px;}
.y222{bottom:919.500000px;}
.y24f{bottom:919.806000px;}
.y1a7{bottom:926.250000px;}
.y22{bottom:926.400000px;}
.y16b{bottom:926.700000px;}
.y1c8{bottom:926.850000px;}
.y4d{bottom:927.000000px;}
.y65{bottom:927.150000px;}
.yfe{bottom:927.300000px;}
.y122{bottom:927.600000px;}
.y27f{bottom:930.750000px;}
.y221{bottom:934.500000px;}
.y24e{bottom:934.650000px;}
.y2{bottom:940.023150px;}
.h9{height:30.313623px;}
.h14{height:39.072000px;}
.ha{height:40.757812px;}
.h15{height:45.852539px;}
.h7{height:47.988281px;}
.h2{height:48.399902px;}
.h6{height:48.840000px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h5{height:61.136719px;}
.h10{height:66.267703px;}
.h11{height:66.459703px;}
.hf{height:66.507703px;}
.h8{height:66.555703px;}
.hc{height:66.579703px;}
.h13{height:66.603703px;}
.he{height:66.627703px;}
.h12{height:66.651703px;}
.hb{height:66.747703px;}
.hd{height:66.771703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x3{left:82.381950px;}
.x2{left:97.263750px;}
.x5{left:112.500000px;}
.x6{left:127.404000px;}
.x7{left:135.585000px;}
.x4{left:625.781250px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v1{vertical-align:21.120000pt;}
.ls66{letter-spacing:-13.312000pt;}
.ls6f{letter-spacing:-13.120000pt;}
.ls3d{letter-spacing:-12.736000pt;}
.ls82{letter-spacing:-6.528000pt;}
.ls36{letter-spacing:-6.400000pt;}
.ls81{letter-spacing:-6.336000pt;}
.ls89{letter-spacing:-5.600000pt;}
.ls88{letter-spacing:-5.333333pt;}
.ls85{letter-spacing:-4.266667pt;}
.ls30{letter-spacing:-3.712000pt;}
.ls6e{letter-spacing:-2.560000pt;}
.ls78{letter-spacing:-2.496000pt;}
.ls83{letter-spacing:-1.664000pt;}
.ls50{letter-spacing:-1.088000pt;}
.ls5a{letter-spacing:-0.960000pt;}
.ls5b{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls51{letter-spacing:-0.268800pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls5c{letter-spacing:-0.224000pt;}
.ls1d{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.008000pt;}
.ls18{letter-spacing:0.026133pt;}
.ls4b{letter-spacing:0.044800pt;}
.ls3f{letter-spacing:0.049600pt;}
.ls14{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.070400pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6d{letter-spacing:0.134400pt;}
.ls68{letter-spacing:0.140800pt;}
.ls67{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls74{letter-spacing:0.339200pt;}
.ls57{letter-spacing:0.358400pt;}
.ls9{letter-spacing:0.384000pt;}
.ls7e{letter-spacing:0.396800pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls77{letter-spacing:0.492800pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls2a{letter-spacing:0.832000pt;}
.ls12{letter-spacing:0.896000pt;}
.ls4f{letter-spacing:0.960000pt;}
.ls42{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.088000pt;}
.ls7d{letter-spacing:1.126400pt;}
.ls7c{letter-spacing:1.152000pt;}
.ls26{letter-spacing:1.216000pt;}
.ls7b{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.344000pt;}
.ls6b{letter-spacing:1.472000pt;}
.ls5e{letter-spacing:1.600000pt;}
.ls46{letter-spacing:1.792000pt;}
.ls40{letter-spacing:1.920000pt;}
.ls38{letter-spacing:2.112000pt;}
.ls3c{letter-spacing:2.176000pt;}
.ls58{letter-spacing:2.240000pt;}
.ls21{letter-spacing:2.304000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls84{letter-spacing:2.602667pt;}
.ls39{letter-spacing:3.072000pt;}
.ls54{letter-spacing:3.136000pt;}
.ls61{letter-spacing:3.200000pt;}
.ls86{letter-spacing:3.242667pt;}
.ls87{letter-spacing:3.253333pt;}
.lsb{letter-spacing:3.264000pt;}
.ls32{letter-spacing:3.584000pt;}
.ls60{letter-spacing:3.904000pt;}
.ls3e{letter-spacing:3.923200pt;}
.ls53{letter-spacing:4.006400pt;}
.ls52{letter-spacing:4.032000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls80{letter-spacing:4.224000pt;}
.ls5d{letter-spacing:4.288000pt;}
.ls5f{letter-spacing:4.416000pt;}
.ls70{letter-spacing:4.480000pt;}
.ls65{letter-spacing:4.544000pt;}
.ls63{letter-spacing:4.608000pt;}
.ls41{letter-spacing:4.614400pt;}
.ls4e{letter-spacing:4.800000pt;}
.ls33{letter-spacing:4.928000pt;}
.ls48{letter-spacing:5.248000pt;}
.ls28{letter-spacing:5.504000pt;}
.ls59{letter-spacing:5.952000pt;}
.ls69{letter-spacing:6.080000pt;}
.ls13{letter-spacing:6.272000pt;}
.ls62{letter-spacing:6.336000pt;}
.ls4d{letter-spacing:6.384000pt;}
.ls35{letter-spacing:6.672000pt;}
.ls56{letter-spacing:6.720000pt;}
.ls20{letter-spacing:6.768000pt;}
.ls16{letter-spacing:6.912000pt;}
.ls34{letter-spacing:6.960000pt;}
.ls71{letter-spacing:7.056000pt;}
.ls2b{letter-spacing:7.152000pt;}
.ls27{letter-spacing:7.200000pt;}
.ls55{letter-spacing:7.248000pt;}
.ls43{letter-spacing:7.344000pt;}
.ls64{letter-spacing:7.440000pt;}
.ls3b{letter-spacing:7.488000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls4{letter-spacing:7.520000pt;}
.ls7a{letter-spacing:7.584000pt;}
.ls2c{letter-spacing:7.680000pt;}
.ls47{letter-spacing:7.776000pt;}
.ls49{letter-spacing:7.824000pt;}
.ls73{letter-spacing:8.044800pt;}
.ls75{letter-spacing:8.064000pt;}
.ls7f{letter-spacing:8.192000pt;}
.ls2f{letter-spacing:8.208000pt;}
.ls76{letter-spacing:8.384000pt;}
.ls72{letter-spacing:8.448000pt;}
.ls45{letter-spacing:9.088000pt;}
.ls44{letter-spacing:9.216000pt;}
.ls4c{letter-spacing:9.280000pt;}
.ls6a{letter-spacing:9.408000pt;}
.ls79{letter-spacing:9.472000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls4a{letter-spacing:9.856000pt;}
.ls6c{letter-spacing:12.262667pt;}
.ws74{word-spacing:-64.064000pt;}
.ws77{word-spacing:-64.000000pt;}
.ws76{word-spacing:-63.872000pt;}
.ws83{word-spacing:-53.066667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws2f{word-spacing:-21.696000pt;}
.ws50{word-spacing:-21.312000pt;}
.ws4f{word-spacing:-21.264000pt;}
.ws36{word-spacing:-21.168000pt;}
.ws44{word-spacing:-20.976000pt;}
.ws66{word-spacing:-20.928000pt;}
.ws4d{word-spacing:-20.832000pt;}
.ws59{word-spacing:-20.736000pt;}
.ws33{word-spacing:-20.688000pt;}
.ws35{word-spacing:-20.640000pt;}
.ws6f{word-spacing:-20.544000pt;}
.ws3f{word-spacing:-20.448000pt;}
.ws1c{word-spacing:-20.400000pt;}
.ws60{word-spacing:-20.208000pt;}
.ws40{word-spacing:-20.160000pt;}
.ws54{word-spacing:-19.872000pt;}
.ws10{word-spacing:-18.304000pt;}
.wsf{word-spacing:-17.984000pt;}
.ws45{word-spacing:-17.728000pt;}
.ws49{word-spacing:-17.600000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws53{word-spacing:-16.704000pt;}
.ws51{word-spacing:-16.576000pt;}
.ws3d{word-spacing:-16.512000pt;}
.ws30{word-spacing:-16.448000pt;}
.ws28{word-spacing:-16.320000pt;}
.ws27{word-spacing:-16.256000pt;}
.ws31{word-spacing:-16.192000pt;}
.ws5a{word-spacing:-16.166400pt;}
.ws32{word-spacing:-16.128000pt;}
.ws4b{word-spacing:-16.000000pt;}
.ws6a{word-spacing:-15.936000pt;}
.ws75{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws1d{word-spacing:-15.744000pt;}
.ws47{word-spacing:-15.680000pt;}
.ws46{word-spacing:-15.616000pt;}
.ws73{word-spacing:-15.552000pt;}
.ws3e{word-spacing:-15.488000pt;}
.ws61{word-spacing:-15.232000pt;}
.ws3{word-spacing:-14.986667pt;}
.ws5b{word-spacing:-14.912000pt;}
.ws7f{word-spacing:-14.720000pt;}
.ws34{word-spacing:-14.272000pt;}
.ws80{word-spacing:-13.173333pt;}
.ws70{word-spacing:-13.081600pt;}
.ws84{word-spacing:-12.906667pt;}
.ws69{word-spacing:-12.723200pt;}
.ws4e{word-spacing:-12.633600pt;}
.ws1e{word-spacing:-12.588800pt;}
.ws5c{word-spacing:-12.364800pt;}
.ws55{word-spacing:-12.320000pt;}
.ws63{word-spacing:-11.989333pt;}
.ws71{word-spacing:-11.776000pt;}
.ws1f{word-spacing:-10.538667pt;}
.ws72{word-spacing:-7.584000pt;}
.wsd{word-spacing:-7.552000pt;}
.ws9{word-spacing:-7.520000pt;}
.ws2a{word-spacing:-6.768000pt;}
.ws7e{word-spacing:-4.224000pt;}
.ws8{word-spacing:-4.053333pt;}
.ws37{word-spacing:-1.344000pt;}
.ws78{word-spacing:-1.280000pt;}
.ws38{word-spacing:-1.216000pt;}
.ws79{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.088000pt;}
.ws4c{word-spacing:-1.024000pt;}
.ws56{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.896000pt;}
.ws3a{word-spacing:-0.832000pt;}
.ws18{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.704000pt;}
.ws39{word-spacing:-0.640000pt;}
.ws2d{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.512000pt;}
.ws2e{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.256000pt;}
.ws14{word-spacing:-0.192000pt;}
.ws68{word-spacing:-0.168000pt;}
.wsa{word-spacing:-0.128000pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:0.064000pt;}
.ws16{word-spacing:0.128000pt;}
.ws17{word-spacing:0.192000pt;}
.ws26{word-spacing:0.213333pt;}
.ws21{word-spacing:0.256000pt;}
.ws7{word-spacing:0.266667pt;}
.ws23{word-spacing:0.320000pt;}
.ws22{word-spacing:0.384000pt;}
.ws1b{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.512000pt;}
.ws2b{word-spacing:0.576000pt;}
.ws42{word-spacing:0.640000pt;}
.ws13{word-spacing:0.704000pt;}
.ws12{word-spacing:0.768000pt;}
.ws5f{word-spacing:0.896000pt;}
.ws5e{word-spacing:0.960000pt;}
.ws57{word-spacing:1.088000pt;}
.ws7c{word-spacing:1.280000pt;}
.ws67{word-spacing:1.344000pt;}
.ws82{word-spacing:1.450667pt;}
.ws5{word-spacing:1.600000pt;}
.ws7d{word-spacing:1.664000pt;}
.ws6{word-spacing:2.005333pt;}
.ws20{word-spacing:2.133333pt;}
.ws5d{word-spacing:2.496000pt;}
.ws6d{word-spacing:2.560000pt;}
.ws52{word-spacing:2.944000pt;}
.ws25{word-spacing:2.986667pt;}
.ws11{word-spacing:3.733333pt;}
.ws81{word-spacing:4.266667pt;}
.ws4a{word-spacing:4.608000pt;}
.ws85{word-spacing:5.333333pt;}
.ws86{word-spacing:5.600000pt;}
.ws6c{word-spacing:6.272000pt;}
.ws7a{word-spacing:6.336000pt;}
.ws41{word-spacing:6.400000pt;}
.ws7b{word-spacing:6.528000pt;}
.ws62{word-spacing:6.592000pt;}
.ws58{word-spacing:7.680000pt;}
.ws43{word-spacing:7.808000pt;}
.ws64{word-spacing:8.480000pt;}
.ws6b{word-spacing:8.640000pt;}
.ws65{word-spacing:8.704000pt;}
.ws48{word-spacing:9.024000pt;}
.ws6e{word-spacing:13.120000pt;}
.ws0{word-spacing:129.952000pt;}
._d{margin-left:-843.396267pt;}
._10{margin-left:-13.518400pt;}
._13{margin-left:-12.290133pt;}
._17{margin-left:-10.538667pt;}
._14{margin-left:-9.010133pt;}
._f{margin-left:-7.994667pt;}
._8{margin-left:-7.022667pt;}
._9{margin-left:-5.498667pt;}
._12{margin-left:-4.588800pt;}
._4{margin-left:-3.498667pt;}
._6{margin-left:-2.324000pt;}
._5{margin-left:-1.386667pt;}
._2{width:1.545333pt;}
._1{width:2.485333pt;}
._0{width:3.818667pt;}
._e{width:4.758133pt;}
._7{width:5.654400pt;}
._3{width:7.424000pt;}
._c{width:8.732800pt;}
._b{width:9.701600pt;}
._a{width:11.109333pt;}
._16{width:12.263200pt;}
._15{width:13.213600pt;}
._11{width:28.129867pt;}
.fs7{font-size:31.733333pt;}
.fs9{font-size:33.600000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y64{bottom:104.000000pt;}
.y16a{bottom:104.213333pt;}
.y147{bottom:104.218667pt;}
.y220{bottom:104.554667pt;}
.y45{bottom:104.986667pt;}
.y24d{bottom:104.992000pt;}
.y21{bottom:105.795467pt;}
.y4c{bottom:106.026667pt;}
.ye7{bottom:106.832000pt;}
.yfd{bottom:107.104267pt;}
.y121{bottom:107.740000pt;}
.y27e{bottom:108.210000pt;}
.yc5{bottom:117.333333pt;}
.y21f{bottom:117.749333pt;}
.y24c{bottom:118.325333pt;}
.y63{bottom:121.073333pt;}
.y169{bottom:123.685333pt;}
.y146{bottom:123.690667pt;}
.ya7{bottom:124.000000pt;}
.y27d{bottom:124.743333pt;}
.y44{bottom:125.514667pt;}
.y20{bottom:125.523467pt;}
.y4b{bottom:126.154667pt;}
.ye6{bottom:126.704000pt;}
.yfc{bottom:127.232267pt;}
.y1e9{bottom:127.740000pt;}
.y120{bottom:130.666667pt;}
.y21e{bottom:130.944000pt;}
.y24b{bottom:131.658667pt;}
.yc4{bottom:134.406667pt;}
.y62{bottom:137.333333pt;}
.y204{bottom:141.073333pt;}
.y27c{bottom:141.276667pt;}
.y168{bottom:143.157333pt;}
.y145{bottom:143.162667pt;}
.y1c7{bottom:143.445333pt;}
.ya6{bottom:144.000000pt;}
.y21d{bottom:144.138667pt;}
.y24a{bottom:144.992000pt;}
.y1f{bottom:145.251467pt;}
.y43{bottom:146.042667pt;}
.y4a{bottom:146.282667pt;}
.ye5{bottom:146.576000pt;}
.yfb{bottom:147.360267pt;}
.y11f{bottom:147.740000pt;}
.y61{bottom:150.666667pt;}
.y87{bottom:154.406667pt;}
.y1a6{bottom:154.901333pt;}
.y18b{bottom:154.928000pt;}
.y27b{bottom:157.810000pt;}
.y249{bottom:158.325333pt;}
.y1e8{bottom:161.073333pt;}
.y167{bottom:162.629333pt;}
.y144{bottom:162.634667pt;}
.y21c{bottom:163.008000pt;}
.y60{bottom:164.000000pt;}
.y1c6{bottom:164.117333pt;}
.y1e{bottom:165.123467pt;}
.y49{bottom:166.410667pt;}
.ye4{bottom:166.448000pt;}
.y42{bottom:166.570667pt;}
.yfa{bottom:167.488267pt;}
.yc3{bottom:168.496000pt;}
.y86{bottom:170.666667pt;}
.y248{bottom:171.658667pt;}
.y27a{bottom:174.343333pt;}
.y1a5{bottom:175.173333pt;}
.y18a{bottom:175.200000pt;}
.y203{bottom:175.445333pt;}
.y5f{bottom:177.333333pt;}
.y11e{bottom:181.073333pt;}
.y166{bottom:182.101333pt;}
.y143{bottom:182.106667pt;}
.ya5{bottom:184.000000pt;}
.y1c5{bottom:184.789333pt;}
.y247{bottom:184.992000pt;}
.y1d{bottom:184.995467pt;}
.ye3{bottom:186.320000pt;}
.y48{bottom:186.938667pt;}
.y41{bottom:187.098667pt;}
.yf9{bottom:187.616267pt;}
.y85{bottom:187.740000pt;}
.yc2{bottom:188.368000pt;}
.y5e{bottom:190.666667pt;}
.y279{bottom:190.876667pt;}
.y189{bottom:195.360000pt;}
.y1a4{bottom:195.445333pt;}
.yaa{bottom:197.333333pt;}
.y246{bottom:198.325333pt;}
.y1e7{bottom:199.610667pt;}
.y165{bottom:201.573333pt;}
.y142{bottom:201.578667pt;}
.y21b{bottom:202.741333pt;}
.ya4{bottom:204.000000pt;}
.y1c{bottom:204.867467pt;}
.y1c4{bottom:205.461333pt;}
.ye2{bottom:206.192000pt;}
.y278{bottom:207.410000pt;}
.y47{bottom:207.466667pt;}
.y40{bottom:207.626667pt;}
.y5d{bottom:207.740000pt;}
.yf8{bottom:207.744267pt;}
.yc1{bottom:208.240000pt;}
.ya9{bottom:210.666667pt;}
.y245{bottom:211.658667pt;}
.y11d{bottom:212.570667pt;}
.y1a3{bottom:215.717333pt;}
.y21a{bottom:215.936000pt;}
.y1e6{bottom:219.882667pt;}
.y164{bottom:221.045333pt;}
.y141{bottom:221.050667pt;}
.y277{bottom:223.943333pt;}
.y84{bottom:224.000000pt;}
.y1b{bottom:224.734133pt;}
.y244{bottom:224.992000pt;}
.ye1{bottom:226.064000pt;}
.y1c3{bottom:226.133333pt;}
.ya8{bottom:227.740000pt;}
.yf7{bottom:227.872267pt;}
.y46{bottom:228.000000pt;}
.yc0{bottom:228.112000pt;}
.y3f{bottom:228.154667pt;}
.y219{bottom:229.130667pt;}
.y11c{bottom:232.298667pt;}
.y188{bottom:235.888000pt;}
.y1a2{bottom:235.989333pt;}
.y83{bottom:237.333333pt;}
.y243{bottom:238.325333pt;}
.y1e5{bottom:240.010667pt;}
.y276{bottom:240.476667pt;}
.y163{bottom:240.517333pt;}
.y140{bottom:240.522667pt;}
.y5c{bottom:243.212667pt;}
.ya3{bottom:244.000000pt;}
.ye0{bottom:245.936000pt;}
.y1c2{bottom:246.848000pt;}
.ybf{bottom:247.984000pt;}
.y218{bottom:248.000000pt;}
.yf6{bottom:248.000267pt;}
.y3e{bottom:248.682667pt;}
.y82{bottom:250.666667pt;}
.y242{bottom:251.658667pt;}
.y11b{bottom:252.026667pt;}
.y187{bottom:256.160000pt;}
.y1a1{bottom:256.261333pt;}
.y275{bottom:257.010000pt;}
.y162{bottom:259.989333pt;}
.y13f{bottom:259.994667pt;}
.y1e4{bottom:260.138667pt;}
.y5b{bottom:263.212667pt;}
.y81{bottom:264.000000pt;}
.y1a{bottom:264.467467pt;}
.y241{bottom:264.992000pt;}
.ydf{bottom:265.808000pt;}
.y1c1{bottom:267.520000pt;}
.ybe{bottom:267.856000pt;}
.yf5{bottom:268.128267pt;}
.y3d{bottom:269.210667pt;}
.y11a{bottom:271.754667pt;}
.y186{bottom:276.432000pt;}
.y1a0{bottom:276.533333pt;}
.y80{bottom:277.333333pt;}
.y240{bottom:278.325333pt;}
.y161{bottom:279.461333pt;}
.y13e{bottom:279.466667pt;}
.y1e3{bottom:280.288000pt;}
.y5a{bottom:283.212667pt;}
.ya2{bottom:284.000000pt;}
.y274{bottom:284.881867pt;}
.yde{bottom:285.808000pt;}
.y217{bottom:287.589333pt;}
.ybd{bottom:287.728000pt;}
.y1c0{bottom:288.192000pt;}
.yf4{bottom:288.256267pt;}
.y19{bottom:288.558933pt;}
.y3c{bottom:289.738667pt;}
.y7f{bottom:290.666667pt;}
.y119{bottom:291.482667pt;}
.y23f{bottom:291.658667pt;}
.y185{bottom:296.704000pt;}
.y19f{bottom:296.768000pt;}
.y202{bottom:296.794667pt;}
.y13d{bottom:298.869333pt;}
.y160{bottom:298.933333pt;}
.y1e2{bottom:300.416000pt;}
.y59{bottom:303.212667pt;}
.ya1{bottom:304.000000pt;}
.y23e{bottom:304.992000pt;}
.y18{bottom:305.092267pt;}
.ydd{bottom:305.808000pt;}
.y216{bottom:307.461333pt;}
.ybc{bottom:307.600000pt;}
.yf3{bottom:308.384267pt;}
.y1bf{bottom:308.864000pt;}
.y3b{bottom:310.266667pt;}
.y118{bottom:311.210667pt;}
.y273{bottom:312.261333pt;}
.y184{bottom:316.976000pt;}
.y201{bottom:317.056000pt;}
.y23d{bottom:318.325333pt;}
.y13c{bottom:318.341333pt;}
.y15f{bottom:318.352000pt;}
.y1e1{bottom:320.544000pt;}
.y17{bottom:321.625600pt;}
.y58{bottom:323.212667pt;}
.ya0{bottom:324.000000pt;}
.ydc{bottom:325.808000pt;}
.y215{bottom:327.333333pt;}
.ybb{bottom:327.440000pt;}
.y7e{bottom:327.456000pt;}
.yf2{bottom:328.549600pt;}
.y1be{bottom:329.536000pt;}
.y3a{bottom:330.794667pt;}
.y117{bottom:330.938667pt;}
.y23c{bottom:331.658667pt;}
.y183{bottom:337.248000pt;}
.y19e{bottom:337.296000pt;}
.y200{bottom:337.328000pt;}
.y13b{bottom:337.813333pt;}
.y15e{bottom:337.824000pt;}
.y16{bottom:338.158933pt;}
.y1e0{bottom:340.672000pt;}
.y57{bottom:343.212667pt;}
.y9f{bottom:344.000000pt;}
.y23b{bottom:344.992000pt;}
.ydb{bottom:345.808000pt;}
.y214{bottom:347.205333pt;}
.yba{bottom:347.312000pt;}
.y7d{bottom:347.328000pt;}
.yf1{bottom:348.677600pt;}
.y1bd{bottom:350.208000pt;}
.y116{bottom:350.666667pt;}
.y39{bottom:351.322667pt;}
.y15{bottom:354.692267pt;}
.y272{bottom:355.770667pt;}
.y13a{bottom:357.285333pt;}
.y15d{bottom:357.296000pt;}
.y182{bottom:357.520000pt;}
.y19d{bottom:357.568000pt;}
.y1ff{bottom:357.600000pt;}
.y23a{bottom:358.325333pt;}
.y1df{bottom:360.864000pt;}
.y56{bottom:363.212667pt;}
.y9e{bottom:364.000000pt;}
.yda{bottom:365.808000pt;}
.y213{bottom:367.077333pt;}
.y7c{bottom:367.152000pt;}
.yb9{bottom:367.184000pt;}
.yf0{bottom:368.805600pt;}
.y271{bottom:368.965333pt;}
.y115{bottom:370.464000pt;}
.y14{bottom:371.225600pt;}
.y239{bottom:371.658667pt;}
.y38{bottom:371.850667pt;}
.y139{bottom:376.757333pt;}
.y15c{bottom:376.768000pt;}
.y181{bottom:377.792000pt;}
.y19c{bottom:377.840000pt;}
.y1fe{bottom:377.850667pt;}
.y1de{bottom:380.992000pt;}
.y270{bottom:382.160000pt;}
.y55{bottom:383.212667pt;}
.y9d{bottom:384.000000pt;}
.y238{bottom:384.992000pt;}
.yd9{bottom:385.808000pt;}
.y212{bottom:386.949333pt;}
.y7b{bottom:387.024000pt;}
.yb8{bottom:387.056000pt;}
.y13{bottom:387.758933pt;}
.yef{bottom:388.933600pt;}
.y114{bottom:390.192000pt;}
.y1bc{bottom:391.408000pt;}
.y37{bottom:392.378667pt;}
.y26f{bottom:395.354667pt;}
.y138{bottom:396.229333pt;}
.y15b{bottom:396.240000pt;}
.y180{bottom:398.064000pt;}
.y19b{bottom:398.112000pt;}
.y1fd{bottom:398.122667pt;}
.y237{bottom:398.325333pt;}
.y1dd{bottom:401.120000pt;}
.y54{bottom:403.212667pt;}
.y9c{bottom:404.000000pt;}
.y12{bottom:404.292267pt;}
.yd8{bottom:405.808000pt;}
.y211{bottom:406.821333pt;}
.y7a{bottom:406.896000pt;}
.yb7{bottom:406.928000pt;}
.y26e{bottom:408.549333pt;}
.yee{bottom:409.061600pt;}
.y113{bottom:409.920000pt;}
.y236{bottom:411.658667pt;}
.y1bb{bottom:411.936000pt;}
.y36{bottom:412.906667pt;}
.y28f{bottom:414.000000pt;}
.y137{bottom:415.701333pt;}
.y15a{bottom:415.712000pt;}
.y17f{bottom:418.336000pt;}
.y19a{bottom:418.384000pt;}
.y1fc{bottom:418.394667pt;}
.y1dc{bottom:421.248000pt;}
.y26d{bottom:421.744000pt;}
.y53{bottom:423.212667pt;}
.y9b{bottom:424.000000pt;}
.y235{bottom:424.992000pt;}
.y210{bottom:426.693333pt;}
.y79{bottom:426.768000pt;}
.yb6{bottom:426.800000pt;}
.y11{bottom:428.385600pt;}
.yed{bottom:429.189600pt;}
.y112{bottom:429.648000pt;}
.y28e{bottom:430.666667pt;}
.y1ba{bottom:432.464000pt;}
.y35{bottom:433.434667pt;}
.y26c{bottom:434.938667pt;}
.y136{bottom:435.173333pt;}
.y159{bottom:435.184000pt;}
.y234{bottom:438.325333pt;}
.y17e{bottom:438.608000pt;}
.y1fb{bottom:438.645333pt;}
.y199{bottom:438.656000pt;}
.y1db{bottom:441.376000pt;}
.y52{bottom:443.212667pt;}
.y9a{bottom:444.000000pt;}
.yd7{bottom:445.808000pt;}
.y20f{bottom:446.565333pt;}
.yb5{bottom:446.629333pt;}
.y78{bottom:446.640000pt;}
.y28d{bottom:447.333333pt;}
.y26b{bottom:448.133333pt;}
.yec{bottom:449.317600pt;}
.y111{bottom:449.376000pt;}
.y233{bottom:451.658667pt;}
.y1b9{bottom:452.992000pt;}
.y34{bottom:453.962667pt;}
.y135{bottom:454.645333pt;}
.y158{bottom:454.656000pt;}
.y17d{bottom:458.880000pt;}
.y1fa{bottom:458.917333pt;}
.y198{bottom:458.928000pt;}
.y26a{bottom:461.328000pt;}
.y1da{bottom:461.504000pt;}
.y51{bottom:463.212667pt;}
.y99{bottom:464.000000pt;}
.yd6{bottom:465.808000pt;}
.y20e{bottom:466.437333pt;}
.yb4{bottom:466.501333pt;}
.y77{bottom:466.512000pt;}
.y10{bottom:468.118933pt;}
.y110{bottom:469.104000pt;}
.yeb{bottom:469.466933pt;}
.y232{bottom:470.666667pt;}
.y1b8{bottom:473.520000pt;}
.y134{bottom:474.117333pt;}
.y157{bottom:474.128000pt;}
.y33{bottom:474.490667pt;}
.y269{bottom:474.522667pt;}
.y17c{bottom:479.152000pt;}
.y1f9{bottom:479.189333pt;}
.y197{bottom:479.200000pt;}
.y1d9{bottom:481.632000pt;}
.y50{bottom:483.212667pt;}
.y98{bottom:484.000000pt;}
.yf{bottom:484.652267pt;}
.yd5{bottom:485.808000pt;}
.y20d{bottom:486.309333pt;}
.yb3{bottom:486.373333pt;}
.y76{bottom:486.384000pt;}
.y268{bottom:487.717333pt;}
.y10f{bottom:488.832000pt;}
.yea{bottom:489.594933pt;}
.y28c{bottom:490.666667pt;}
.y133{bottom:493.589333pt;}
.y156{bottom:493.600000pt;}
.y1b7{bottom:494.048000pt;}
.y32{bottom:495.018667pt;}
.y17b{bottom:499.424000pt;}
.y196{bottom:499.456000pt;}
.y1f8{bottom:499.461333pt;}
.y267{bottom:500.912000pt;}
.y1d8{bottom:501.760000pt;}
.y4f{bottom:503.212667pt;}
.y97{bottom:504.000000pt;}
.yd4{bottom:505.808000pt;}
.y20c{bottom:506.181333pt;}
.yb2{bottom:506.245333pt;}
.y75{bottom:506.256000pt;}
.y10e{bottom:508.560000pt;}
.ye{bottom:508.743733pt;}
.ye9{bottom:509.722933pt;}
.y231{bottom:510.666667pt;}
.y155{bottom:513.018667pt;}
.y132{bottom:513.061333pt;}
.y266{bottom:514.106667pt;}
.y1b6{bottom:514.576000pt;}
.y31{bottom:515.546667pt;}
.y17a{bottom:519.696000pt;}
.y1f7{bottom:519.733333pt;}
.y1d7{bottom:521.888000pt;}
.y4e{bottom:523.212667pt;}
.y96{bottom:524.000000pt;}
.yd{bottom:525.277067pt;}
.yd3{bottom:525.808000pt;}
.y20b{bottom:526.053333pt;}
.yb1{bottom:526.117333pt;}
.y74{bottom:526.128000pt;}
.y265{bottom:527.301333pt;}
.y28b{bottom:527.333333pt;}
.y10d{bottom:528.288000pt;}
.ye8{bottom:529.850933pt;}
.y154{bottom:532.490667pt;}
.y131{bottom:532.533333pt;}
.y1b5{bottom:535.104000pt;}
.y30{bottom:536.074667pt;}
.y230{bottom:537.333333pt;}
.y179{bottom:539.968000pt;}
.y1f6{bottom:539.973333pt;}
.y195{bottom:539.984000pt;}
.y264{bottom:540.496000pt;}
.yc{bottom:541.810400pt;}
.y1d6{bottom:542.016000pt;}
.y95{bottom:544.000000pt;}
.yd2{bottom:545.808000pt;}
.y20a{bottom:545.925333pt;}
.yb0{bottom:545.989333pt;}
.y73{bottom:545.994667pt;}
.y10c{bottom:548.016000pt;}
.y22f{bottom:550.666667pt;}
.y153{bottom:551.962667pt;}
.y130{bottom:551.984000pt;}
.y263{bottom:553.690667pt;}
.y1b4{bottom:555.632000pt;}
.y2f{bottom:556.602667pt;}
.yb{bottom:558.343733pt;}
.y178{bottom:560.240000pt;}
.y1f5{bottom:560.245333pt;}
.y194{bottom:560.256000pt;}
.y28a{bottom:560.666667pt;}
.y1d5{bottom:562.144000pt;}
.y94{bottom:564.000000pt;}
.y209{bottom:565.797333pt;}
.yd1{bottom:565.808000pt;}
.yaf{bottom:565.861333pt;}
.y72{bottom:565.866667pt;}
.y262{bottom:566.885333pt;}
.y10b{bottom:567.744000pt;}
.y12f{bottom:571.456000pt;}
.ya{bottom:574.877067pt;}
.y1b3{bottom:576.160000pt;}
.y2e{bottom:577.130667pt;}
.y22e{bottom:577.333333pt;}
.y261{bottom:580.080000pt;}
.y177{bottom:580.512000pt;}
.y1f4{bottom:580.517333pt;}
.y193{bottom:580.528000pt;}
.y1d4{bottom:582.272000pt;}
.y93{bottom:584.000000pt;}
.y208{bottom:585.669333pt;}
.yd0{bottom:585.680000pt;}
.y71{bottom:585.712000pt;}
.yae{bottom:585.717333pt;}
.y10a{bottom:587.472000pt;}
.y22d{bottom:590.666667pt;}
.y152{bottom:590.890667pt;}
.y12e{bottom:590.928000pt;}
.y9{bottom:591.410400pt;}
.y260{bottom:593.274667pt;}
.y289{bottom:594.000000pt;}
.y1b2{bottom:596.688000pt;}
.y2d{bottom:597.658667pt;}
.y176{bottom:600.784000pt;}
.y1f3{bottom:600.789333pt;}
.y192{bottom:600.800000pt;}
.y1d3{bottom:602.400000pt;}
.y92{bottom:604.000000pt;}
.y207{bottom:605.541333pt;}
.ycf{bottom:605.552000pt;}
.y70{bottom:605.584000pt;}
.yad{bottom:605.589333pt;}
.y25f{bottom:606.469333pt;}
.y109{bottom:607.210667pt;}
.y8{bottom:607.943733pt;}
.y151{bottom:610.362667pt;}
.y12d{bottom:610.400000pt;}
.y288{bottom:610.666667pt;}
.y1b1{bottom:617.216000pt;}
.y22c{bottom:617.333333pt;}
.y2c{bottom:618.186667pt;}
.y25e{bottom:619.664000pt;}
.y191{bottom:621.013333pt;}
.y175{bottom:621.056000pt;}
.y1f2{bottom:621.061333pt;}
.y1d2{bottom:622.549333pt;}
.y91{bottom:624.000000pt;}
.y7{bottom:624.477067pt;}
.y206{bottom:625.413333pt;}
.yce{bottom:625.424000pt;}
.y6f{bottom:625.456000pt;}
.yac{bottom:625.461333pt;}
.y108{bottom:626.938667pt;}
.y287{bottom:627.333333pt;}
.y12c{bottom:629.824000pt;}
.y150{bottom:629.834667pt;}
.y22b{bottom:630.666667pt;}
.y25d{bottom:632.858667pt;}
.y1b0{bottom:637.744000pt;}
.y2b{bottom:638.714667pt;}
.y190{bottom:641.285333pt;}
.y174{bottom:641.328000pt;}
.y1f1{bottom:641.333333pt;}
.y1d1{bottom:642.677333pt;}
.y90{bottom:644.000000pt;}
.y205{bottom:645.285333pt;}
.ycd{bottom:645.296000pt;}
.y6e{bottom:645.328000pt;}
.yab{bottom:645.333333pt;}
.y25c{bottom:646.053333pt;}
.y107{bottom:646.666667pt;}
.y6{bottom:648.570400pt;}
.y12b{bottom:649.296000pt;}
.y14f{bottom:649.306667pt;}
.y22a{bottom:657.333333pt;}
.y1af{bottom:658.272000pt;}
.y2a{bottom:659.242667pt;}
.y25b{bottom:659.248000pt;}
.y286{bottom:660.666667pt;}
.y18f{bottom:661.557333pt;}
.y1f0{bottom:661.568000pt;}
.y173{bottom:661.584000pt;}
.y1d0{bottom:662.805333pt;}
.y8f{bottom:664.000000pt;}
.y6d{bottom:665.157333pt;}
.ycc{bottom:665.168000pt;}
.y106{bottom:666.432000pt;}
.y12a{bottom:668.768000pt;}
.y14e{bottom:668.778667pt;}
.y229{bottom:670.666667pt;}
.y25a{bottom:672.442667pt;}
.y285{bottom:677.333333pt;}
.y1ae{bottom:678.800000pt;}
.y29{bottom:679.770667pt;}
.y18e{bottom:681.829333pt;}
.y1ef{bottom:681.840000pt;}
.y172{bottom:681.856000pt;}
.y1cf{bottom:682.933333pt;}
.y8e{bottom:684.000000pt;}
.y6c{bottom:685.029333pt;}
.ycb{bottom:685.040000pt;}
.y259{bottom:685.637333pt;}
.y105{bottom:686.160000pt;}
.y129{bottom:688.240000pt;}
.y14d{bottom:688.250667pt;}
.y5{bottom:689.224400pt;}
.y284{bottom:694.000000pt;}
.y228{bottom:697.333333pt;}
.y258{bottom:698.832000pt;}
.y1ad{bottom:699.306667pt;}
.y28{bottom:700.298667pt;}
.y18d{bottom:702.101333pt;}
.y1ee{bottom:702.112000pt;}
.y171{bottom:702.128000pt;}
.y1ce{bottom:703.077333pt;}
.y8d{bottom:704.000000pt;}
.y6b{bottom:704.901333pt;}
.yca{bottom:704.912000pt;}
.y104{bottom:705.888000pt;}
.y128{bottom:707.712000pt;}
.y14c{bottom:707.722667pt;}
.y4{bottom:709.224400pt;}
.y227{bottom:710.666667pt;}
.y257{bottom:712.026667pt;}
.y1ac{bottom:719.978667pt;}
.y27{bottom:720.826667pt;}
.y18c{bottom:722.373333pt;}
.y1ed{bottom:722.384000pt;}
.y170{bottom:722.400000pt;}
.y1cd{bottom:723.205333pt;}
.y8c{bottom:724.000000pt;}
.y6a{bottom:724.773333pt;}
.yc9{bottom:724.784000pt;}
.y256{bottom:725.232000pt;}
.y103{bottom:725.616000pt;}
.y127{bottom:727.184000pt;}
.y14b{bottom:727.194667pt;}
.y283{bottom:727.333333pt;}
.y226{bottom:737.333333pt;}
.y255{bottom:738.426667pt;}
.y1ab{bottom:740.650667pt;}
.y26{bottom:741.354667pt;}
.y16f{bottom:742.645333pt;}
.y1ec{bottom:742.656000pt;}
.y1cc{bottom:743.333333pt;}
.y8b{bottom:744.000000pt;}
.y69{bottom:744.645333pt;}
.yc8{bottom:744.656000pt;}
.y102{bottom:745.344000pt;}
.y126{bottom:746.656000pt;}
.y14a{bottom:746.666667pt;}
.y225{bottom:750.666667pt;}
.y254{bottom:751.621333pt;}
.y282{bottom:760.666667pt;}
.y1aa{bottom:761.322667pt;}
.y25{bottom:761.882667pt;}
.y16e{bottom:762.917333pt;}
.y1eb{bottom:762.928000pt;}
.y1cb{bottom:763.482667pt;}
.y8a{bottom:764.000000pt;}
.y68{bottom:764.517333pt;}
.yc7{bottom:764.528000pt;}
.y253{bottom:764.816000pt;}
.y101{bottom:765.072000pt;}
.y149{bottom:766.117333pt;}
.y125{bottom:766.128000pt;}
.y3{bottom:768.909467pt;}
.y224{bottom:777.333333pt;}
.y252{bottom:778.010667pt;}
.y1a9{bottom:781.994667pt;}
.y24{bottom:782.410667pt;}
.y16d{bottom:783.189333pt;}
.y1ea{bottom:783.200000pt;}
.y1ca{bottom:783.610667pt;}
.y89{bottom:784.000000pt;}
.y67{bottom:784.389333pt;}
.yc6{bottom:784.400000pt;}
.y100{bottom:784.810667pt;}
.y148{bottom:785.589333pt;}
.y124{bottom:785.600000pt;}
.y223{bottom:790.666667pt;}
.y251{bottom:791.216000pt;}
.y281{bottom:794.000000pt;}
.y1a8{bottom:802.666667pt;}
.y23{bottom:802.938667pt;}
.y16c{bottom:803.461333pt;}
.y1c9{bottom:803.738667pt;}
.y88{bottom:804.000000pt;}
.y66{bottom:804.261333pt;}
.y250{bottom:804.410667pt;}
.yff{bottom:804.538667pt;}
.y123{bottom:805.061333pt;}
.y280{bottom:810.666667pt;}
.y222{bottom:817.333333pt;}
.y24f{bottom:817.605333pt;}
.y1a7{bottom:823.333333pt;}
.y22{bottom:823.466667pt;}
.y16b{bottom:823.733333pt;}
.y1c8{bottom:823.866667pt;}
.y4d{bottom:824.000000pt;}
.y65{bottom:824.133333pt;}
.yfe{bottom:824.266667pt;}
.y122{bottom:824.533333pt;}
.y27f{bottom:827.333333pt;}
.y221{bottom:830.666667pt;}
.y24e{bottom:830.800000pt;}
.y2{bottom:835.576133pt;}
.h9{height:26.945443pt;}
.h14{height:34.730667pt;}
.ha{height:36.229167pt;}
.h15{height:40.757812pt;}
.h7{height:42.656250pt;}
.h2{height:43.022135pt;}
.h6{height:43.413333pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h5{height:54.343750pt;}
.h10{height:58.904625pt;}
.h11{height:59.075292pt;}
.hf{height:59.117958pt;}
.h8{height:59.160625pt;}
.hc{height:59.181958pt;}
.h13{height:59.203292pt;}
.he{height:59.224625pt;}
.h12{height:59.245958pt;}
.hb{height:59.331292pt;}
.hd{height:59.352625pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x3{left:73.228400pt;}
.x2{left:86.456667pt;}
.x5{left:100.000000pt;}
.x6{left:113.248000pt;}
.x7{left:120.520000pt;}
.x4{left:556.250000pt;}
}




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