
    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_1772677564f0f889d64c5224.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_45fdaacfa4c39f0aa5f16a78.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_fed9a9551548911b32013967.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_db000ab7d54c17988ce295a8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931152;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_67bce4d215599c328380ddfd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_1bfde3935fefae202f1b1cd6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f13da0abb79c89e47118a4b7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fd1be53cc963da50636e8a63.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b33693bed643a47652c857d6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_e6df592ceac1222912ce6332.woff')format("woff");}.ffa{font-family:ffa;line-height:0.671875;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls36{letter-spacing:-6.192000px;}
.ls58{letter-spacing:-4.800000px;}
.ls4a{letter-spacing:-4.464000px;}
.ls3e{letter-spacing:-2.808000px;}
.ls3b{letter-spacing:-1.512000px;}
.ls3c{letter-spacing:-1.368000px;}
.ls4c{letter-spacing:-1.296000px;}
.ls4d{letter-spacing:-1.224000px;}
.ls50{letter-spacing:-1.152000px;}
.ls4e{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.288000px;}
.ls55{letter-spacing:-0.252000px;}
.ls59{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls2b{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000600px;}
.ls20{letter-spacing:0.043200px;}
.ls42{letter-spacing:0.071400px;}
.ls21{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.158400px;}
.ls49{letter-spacing:0.165600px;}
.ls48{letter-spacing:0.172800px;}
.ls51{letter-spacing:0.187200px;}
.ls26{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.223200px;}
.ls43{letter-spacing:0.240000px;}
.lse{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.325800px;}
.lsb{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.439200px;}
.ls1e{letter-spacing:0.482400px;}
.lsc{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.648000px;}
.ls1c{letter-spacing:0.655200px;}
.ls41{letter-spacing:0.698400px;}
.ls52{letter-spacing:0.705600px;}
.lsa{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.734400px;}
.ls40{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.ls31{letter-spacing:0.936000px;}
.ls13{letter-spacing:1.008000px;}
.ls14{letter-spacing:1.080000px;}
.ls30{letter-spacing:1.094400px;}
.ls23{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.224000px;}
.ls22{letter-spacing:1.296000px;}
.ls38{letter-spacing:1.584000px;}
.ls46{letter-spacing:1.800000px;}
.ls33{letter-spacing:2.160000px;}
.ls32{letter-spacing:2.376000px;}
.ls2{letter-spacing:2.850000px;}
.ls5a{letter-spacing:2.904000px;}
.ls5c{letter-spacing:2.928000px;}
.ls5b{letter-spacing:2.937600px;}
.ls5d{letter-spacing:2.961600px;}
.ls57{letter-spacing:3.360000px;}
.ls1{letter-spacing:4.260000px;}
.ls4{letter-spacing:4.512000px;}
.ls44{letter-spacing:4.536000px;}
.ls9{letter-spacing:4.560000px;}
.ls56{letter-spacing:4.752000px;}
.ls37{letter-spacing:5.040000px;}
.ls3a{letter-spacing:5.544000px;}
.ls3f{letter-spacing:5.976000px;}
.ls4b{letter-spacing:6.696000px;}
.ls2e{letter-spacing:7.614000px;}
.ls27{letter-spacing:7.776000px;}
.ls5e{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls6{letter-spacing:8.460000px;}
.ls39{letter-spacing:9.000000px;}
.ls1f{letter-spacing:9.072000px;}
.ls28{letter-spacing:9.381600px;}
.ls4f{letter-spacing:10.152000px;}
.ls3{letter-spacing:10.740000px;}
.ls54{letter-spacing:13.796100px;}
.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;}
}
.ws1c{word-spacing:-72.000000px;}
.ws33{word-spacing:-71.640000px;}
.ws2{word-spacing:-25.320000px;}
.ws43{word-spacing:-20.592000px;}
.ws28{word-spacing:-20.232000px;}
.ws4d{word-spacing:-19.944000px;}
.ws29{word-spacing:-18.936000px;}
.ws1{word-spacing:-18.867000px;}
.ws3b{word-spacing:-18.720000px;}
.ws49{word-spacing:-18.648000px;}
.ws25{word-spacing:-18.432000px;}
.ws27{word-spacing:-18.360000px;}
.ws5d{word-spacing:-18.288000px;}
.ws52{word-spacing:-18.216000px;}
.ws47{word-spacing:-18.144000px;}
.ws26{word-spacing:-18.072000px;}
.ws45{word-spacing:-18.000000px;}
.ws46{word-spacing:-17.928000px;}
.ws59{word-spacing:-17.856000px;}
.ws24{word-spacing:-17.784000px;}
.ws4c{word-spacing:-17.712000px;}
.ws56{word-spacing:-17.640000px;}
.ws3a{word-spacing:-17.568000px;}
.ws44{word-spacing:-17.496000px;}
.ws1d{word-spacing:-17.424000px;}
.ws58{word-spacing:-17.352000px;}
.ws34{word-spacing:-17.280000px;}
.ws5c{word-spacing:-17.064000px;}
.ws60{word-spacing:-16.860000px;}
.ws39{word-spacing:-16.848000px;}
.ws61{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.520000px;}
.ws1e{word-spacing:-14.162400px;}
.ws72{word-spacing:-13.910400px;}
.ws7c{word-spacing:-13.488000px;}
.ws7b{word-spacing:-12.336000px;}
.ws2a{word-spacing:-11.856000px;}
.wsd{word-spacing:-8.496000px;}
.wsf{word-spacing:-8.460000px;}
.ws82{word-spacing:-8.100000px;}
.ws3d{word-spacing:-7.614000px;}
.ws54{word-spacing:-5.976000px;}
.ws4e{word-spacing:-5.544000px;}
.ws80{word-spacing:-4.752000px;}
.wsc{word-spacing:-4.560000px;}
.ws7d{word-spacing:-3.360000px;}
.ws3f{word-spacing:-2.376000px;}
.ws40{word-spacing:-2.160000px;}
.ws64{word-spacing:-1.800000px;}
.ws48{word-spacing:-1.584000px;}
.ws74{word-spacing:-1.512000px;}
.ws2f{word-spacing:-1.296000px;}
.ws65{word-spacing:-1.224000px;}
.ws1a{word-spacing:-1.080000px;}
.ws19{word-spacing:-1.008000px;}
.ws3e{word-spacing:-0.936000px;}
.ws18{word-spacing:-0.864000px;}
.ws5a{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.648000px;}
.ws12{word-spacing:-0.576000px;}
.ws13{word-spacing:-0.504000px;}
.ws9{word-spacing:-0.480000px;}
.ws16{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.288000px;}
.ws5b{word-spacing:-0.240000px;}
.ws30{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.144000px;}
.ws2b{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.060000px;}
.ws35{word-spacing:0.072000px;}
.ws17{word-spacing:0.144000px;}
.ws32{word-spacing:0.216000px;}
.ws7f{word-spacing:0.240000px;}
.ws15{word-spacing:0.288000px;}
.wsb{word-spacing:0.300000px;}
.ws1f{word-spacing:0.360000px;}
.ws2d{word-spacing:0.432000px;}
.ws23{word-spacing:0.504000px;}
.ws21{word-spacing:0.576000px;}
.ws38{word-spacing:0.648000px;}
.ws37{word-spacing:0.720000px;}
.ws20{word-spacing:0.792000px;}
.ws22{word-spacing:0.864000px;}
.ws4a{word-spacing:0.936000px;}
.ws3c{word-spacing:1.008000px;}
.ws6d{word-spacing:1.080000px;}
.ws6f{word-spacing:1.152000px;}
.ws6c{word-spacing:1.224000px;}
.ws5f{word-spacing:1.296000px;}
.ws51{word-spacing:1.368000px;}
.ws81{word-spacing:1.440000px;}
.ws50{word-spacing:1.512000px;}
.ws7{word-spacing:1.800000px;}
.ws57{word-spacing:2.016000px;}
.ws78{word-spacing:2.160000px;}
.ws62{word-spacing:2.400000px;}
.ws53{word-spacing:2.808000px;}
.ws5e{word-spacing:2.952000px;}
.ws67{word-spacing:3.024000px;}
.ws63{word-spacing:3.360000px;}
.ws69{word-spacing:3.456000px;}
.ws7a{word-spacing:3.528000px;}
.ws36{word-spacing:3.672000px;}
.ws8{word-spacing:3.990000px;}
.wse{word-spacing:4.200000px;}
.ws73{word-spacing:4.320000px;}
.ws6a{word-spacing:4.464000px;}
.ws7e{word-spacing:4.800000px;}
.ws70{word-spacing:5.040000px;}
.ws71{word-spacing:5.400000px;}
.ws2e{word-spacing:5.544000px;}
.ws77{word-spacing:5.616000px;}
.ws42{word-spacing:6.192000px;}
.ws6b{word-spacing:6.696000px;}
.ws4f{word-spacing:6.912000px;}
.ws6e{word-spacing:7.704000px;}
.ws75{word-spacing:7.776000px;}
.ws76{word-spacing:7.920000px;}
.ws79{word-spacing:8.352000px;}
.ws4b{word-spacing:9.288000px;}
.ws68{word-spacing:9.576000px;}
.ws55{word-spacing:10.080000px;}
.ws41{word-spacing:10.152000px;}
.ws31{word-spacing:10.368000px;}
.ws66{word-spacing:11.520000px;}
.ws5{word-spacing:12.780000px;}
.ws6{word-spacing:73.140000px;}
.ws0{word-spacing:146.196000px;}
._a{margin-left:-948.820800px;}
._4{margin-left:-68.880000px;}
._12{margin-left:-19.679700px;}
._22{margin-left:-18.327000px;}
._19{margin-left:-15.610500px;}
._14{margin-left:-13.655400px;}
._16{margin-left:-11.660400px;}
._1a{margin-left:-10.391700px;}
._13{margin-left:-9.205200px;}
._11{margin-left:-7.294200px;}
._8{margin-left:-6.208800px;}
._c{margin-left:-4.854000px;}
._3{margin-left:-2.982000px;}
._1{margin-left:-1.044000px;}
._6{width:1.738500px;}
._2{width:2.982000px;}
._0{width:4.236000px;}
._9{width:5.239500px;}
._e{width:6.420000px;}
._7{width:8.376000px;}
._d{width:9.462600px;}
._10{width:10.915200px;}
._b{width:12.622800px;}
._f{width:13.993500px;}
._18{width:15.430200px;}
._20{width:16.490700px;}
._17{width:17.884800px;}
._23{width:24.467100px;}
._21{width:27.144000px;}
._15{width:31.646100px;}
._5{width:35.280000px;}
._24{width:49.945500px;}
._1e{width:53.184000px;}
._1c{width:70.044000px;}
._1f{width:103.584000px;}
._1d{width:387.744000px;}
._1b{width:417.259500px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.yb3{bottom:117.000000px;}
.yd9{bottom:117.078000px;}
.y1ea{bottom:117.096000px;}
.y247{bottom:117.546000px;}
.y2d9{bottom:118.080000px;}
.y47{bottom:120.420000px;}
.y6b{bottom:120.702000px;}
.y309{bottom:121.136250px;}
.y2a6{bottom:121.188000px;}
.y8e{bottom:121.207500px;}
.y276{bottom:121.218000px;}
.y24{bottom:121.452750px;}
.y1bc{bottom:122.619900px;}
.y226{bottom:122.742000px;}
.y198{bottom:126.718500px;}
.yfc{bottom:132.000000px;}
.y2d8{bottom:133.236000px;}
.y2a5{bottom:136.188000px;}
.yb2{bottom:136.207500px;}
.y275{bottom:136.218000px;}
.yd8{bottom:138.984000px;}
.y1e9{bottom:139.002000px;}
.y13e{bottom:139.500000px;}
.y308{bottom:139.886250px;}
.y23{bottom:139.902750px;}
.y246{bottom:140.352000px;}
.y46{bottom:143.514000px;}
.y6a{bottom:143.652000px;}
.y225{bottom:144.936000px;}
.y1bb{bottom:145.713900px;}
.y197{bottom:146.518500px;}
.yfb{bottom:147.000000px;}
.y2d7{bottom:148.380000px;}
.y2a4{bottom:151.188000px;}
.y1e2{bottom:151.207500px;}
.y274{bottom:151.218000px;}
.yb1{bottom:154.500000px;}
.y307{bottom:158.636250px;}
.yd7{bottom:160.890000px;}
.y1e8{bottom:160.908000px;}
.y1c1{bottom:161.088000px;}
.y8d{bottom:162.000000px;}
.y245{bottom:163.158000px;}
.y2d6{bottom:163.524000px;}
.y2a3{bottom:166.188000px;}
.y273{bottom:166.218000px;}
.y196{bottom:166.318500px;}
.y69{bottom:166.602000px;}
.y45{bottom:166.608000px;}
.y22{bottom:166.855650px;}
.y224{bottom:167.130000px;}
.y1ba{bottom:168.807900px;}
.yb0{bottom:169.500000px;}
.yfa{bottom:177.000000px;}
.y306{bottom:177.386250px;}
.y2d5{bottom:178.824000px;}
.y160{bottom:179.526000px;}
.y2a2{bottom:181.188000px;}
.y11d{bottom:181.207500px;}
.y272{bottom:181.218000px;}
.yd6{bottom:182.796000px;}
.y1e7{bottom:182.814000px;}
.y1c0{bottom:182.994000px;}
.y8c{bottom:184.500000px;}
.y21{bottom:185.305650px;}
.y244{bottom:185.964000px;}
.y195{bottom:186.118500px;}
.y223{bottom:189.324000px;}
.y68{bottom:189.552000px;}
.y44{bottom:189.702000px;}
.y1b9{bottom:191.901900px;}
.y203{bottom:192.000000px;}
.y2d4{bottom:194.124000px;}
.y1e1{bottom:194.898000px;}
.y305{bottom:196.136250px;}
.y2a1{bottom:196.188000px;}
.yf9{bottom:196.207500px;}
.y271{bottom:196.218000px;}
.yaf{bottom:199.500000px;}
.y15f{bottom:202.170000px;}
.y20{bottom:203.755650px;}
.yd5{bottom:204.702000px;}
.y1bf{bottom:204.720000px;}
.y194{bottom:205.918500px;}
.y8b{bottom:207.000000px;}
.y243{bottom:208.770000px;}
.y2d3{bottom:209.424000px;}
.y2a0{bottom:211.188000px;}
.y270{bottom:211.218000px;}
.y222{bottom:211.518000px;}
.y67{bottom:212.502000px;}
.y43{bottom:212.796000px;}
.yae{bottom:214.500000px;}
.y304{bottom:214.886250px;}
.y1b8{bottom:214.995900px;}
.y1e0{bottom:217.092000px;}
.y202{bottom:222.000000px;}
.y1f{bottom:222.205650px;}
.y2d2{bottom:224.724000px;}
.y15e{bottom:224.814000px;}
.y13c{bottom:224.868000px;}
.y193{bottom:225.718500px;}
.y11c{bottom:226.008000px;}
.y29f{bottom:226.188000px;}
.y26f{bottom:226.218000px;}
.yd4{bottom:226.608000px;}
.y1be{bottom:226.626000px;}
.y8a{bottom:229.500000px;}
.y242{bottom:231.576000px;}
.y303{bottom:233.636250px;}
.yf8{bottom:233.707500px;}
.y221{bottom:233.712000px;}
.y66{bottom:235.452000px;}
.y42{bottom:235.890000px;}
.y201{bottom:237.000000px;}
.y1b7{bottom:238.089900px;}
.y1df{bottom:239.286000px;}
.y2d1{bottom:240.024000px;}
.y1e{bottom:240.655650px;}
.y29e{bottom:241.188000px;}
.y26e{bottom:241.218000px;}
.yad{bottom:244.500000px;}
.y192{bottom:245.518500px;}
.y15d{bottom:247.458000px;}
.y13b{bottom:247.512000px;}
.y11b{bottom:247.914000px;}
.yd3{bottom:248.514000px;}
.y1bd{bottom:248.532000px;}
.y171{bottom:248.707500px;}
.y89{bottom:252.000000px;}
.y302{bottom:252.386250px;}
.y241{bottom:254.382000px;}
.y2d0{bottom:255.324000px;}
.y220{bottom:255.906000px;}
.y29d{bottom:256.188000px;}
.y200{bottom:256.207500px;}
.y26d{bottom:256.218000px;}
.y65{bottom:258.402000px;}
.y41{bottom:258.984000px;}
.y1d{bottom:259.105650px;}
.y1b6{bottom:261.183900px;}
.y1de{bottom:261.480000px;}
.yac{bottom:263.707500px;}
.y11a{bottom:269.820000px;}
.y15c{bottom:270.102000px;}
.y13a{bottom:270.156000px;}
.yd2{bottom:270.420000px;}
.y1e6{bottom:270.438000px;}
.y2cf{bottom:270.624000px;}
.y301{bottom:271.136250px;}
.y29c{bottom:271.188000px;}
.y26c{bottom:271.218000px;}
.y191{bottom:272.503500px;}
.y88{bottom:274.500000px;}
.yf7{bottom:275.340000px;}
.y240{bottom:276.882000px;}
.y1c{bottom:277.555650px;}
.y21f{bottom:278.100000px;}
.y64{bottom:281.352000px;}
.y40{bottom:282.078000px;}
.y1dd{bottom:283.674000px;}
.y1b5{bottom:284.277900px;}
.y29b{bottom:286.188000px;}
.y26b{bottom:286.218000px;}
.y2ce{bottom:286.368000px;}
.y1ff{bottom:289.500000px;}
.y300{bottom:289.736250px;}
.y119{bottom:291.726000px;}
.y190{bottom:292.303500px;}
.yd1{bottom:292.326000px;}
.y1e5{bottom:292.344000px;}
.y170{bottom:292.692000px;}
.y15b{bottom:292.746000px;}
.y139{bottom:292.962000px;}
.y1b{bottom:296.005650px;}
.y87{bottom:297.000000px;}
.yf6{bottom:297.084000px;}
.y23f{bottom:299.382000px;}
.y21e{bottom:300.300000px;}
.y26a{bottom:301.218000px;}
.y29a{bottom:301.332000px;}
.y2cd{bottom:302.112000px;}
.y63{bottom:304.302000px;}
.y1fe{bottom:304.500000px;}
.y3f{bottom:305.172000px;}
.yab{bottom:305.832000px;}
.y1dc{bottom:305.868000px;}
.y1b4{bottom:307.371900px;}
.y2ff{bottom:308.336250px;}
.y18f{bottom:312.103500px;}
.y118{bottom:313.632000px;}
.yd0{bottom:314.232000px;}
.y1e4{bottom:314.250000px;}
.y1a{bottom:314.455650px;}
.y16f{bottom:315.336000px;}
.y15a{bottom:315.390000px;}
.y138{bottom:315.606000px;}
.y269{bottom:316.218000px;}
.y299{bottom:316.476000px;}
.y2cc{bottom:317.856000px;}
.yf5{bottom:318.828000px;}
.y86{bottom:319.500000px;}
.y23e{bottom:321.882000px;}
.y2fe{bottom:326.936250px;}
.y62{bottom:327.252000px;}
.yaa{bottom:328.026000px;}
.y1db{bottom:328.062000px;}
.y3e{bottom:328.266000px;}
.y1b3{bottom:330.465900px;}
.y268{bottom:331.218000px;}
.y298{bottom:331.620000px;}
.y18e{bottom:331.903500px;}
.y19{bottom:332.905650px;}
.y2cb{bottom:333.600000px;}
.y1fd{bottom:334.500000px;}
.y117{bottom:335.538000px;}
.ycf{bottom:336.138000px;}
.y1e3{bottom:336.156000px;}
.y16e{bottom:337.980000px;}
.y159{bottom:338.034000px;}
.y137{bottom:338.250000px;}
.yf4{bottom:340.572000px;}
.y85{bottom:342.000000px;}
.y23d{bottom:344.382000px;}
.y21d{bottom:344.700000px;}
.y2fd{bottom:345.536250px;}
.y267{bottom:346.218000px;}
.y297{bottom:346.764000px;}
.y2ca{bottom:349.344000px;}
.y1fc{bottom:349.500000px;}
.y61{bottom:350.202000px;}
.ya9{bottom:350.220000px;}
.y1da{bottom:350.256000px;}
.y18{bottom:351.355650px;}
.y3d{bottom:351.360000px;}
.y18d{bottom:351.703500px;}
.y1b2{bottom:353.559900px;}
.y116{bottom:357.444000px;}
.yce{bottom:358.044000px;}
.y16d{bottom:360.624000px;}
.y158{bottom:360.678000px;}
.y136{bottom:360.894000px;}
.y266{bottom:361.218000px;}
.y296{bottom:361.908000px;}
.yf3{bottom:362.316000px;}
.y84{bottom:364.500000px;}
.y2c9{bottom:365.088000px;}
.y21c{bottom:366.300000px;}
.y23c{bottom:366.882000px;}
.y18c{bottom:371.503500px;}
.ya8{bottom:372.414000px;}
.y1d9{bottom:372.450000px;}
.y60{bottom:373.152000px;}
.y3c{bottom:374.454000px;}
.y31f{bottom:375.750000px;}
.y265{bottom:376.218000px;}
.y1b1{bottom:376.653900px;}
.y2fc{bottom:376.892100px;}
.y295{bottom:377.052000px;}
.y17{bottom:378.310650px;}
.y115{bottom:379.350000px;}
.y1fb{bottom:379.500000px;}
.ycd{bottom:379.950000px;}
.y2c8{bottom:380.832000px;}
.y16c{bottom:383.268000px;}
.y157{bottom:383.322000px;}
.y135{bottom:383.538000px;}
.yf2{bottom:384.060000px;}
.y83{bottom:387.000000px;}
.y21b{bottom:387.900000px;}
.y23b{bottom:389.382000px;}
.y264{bottom:391.218000px;}
.y18b{bottom:391.303500px;}
.y294{bottom:392.196000px;}
.y31e{bottom:394.500000px;}
.ya7{bottom:394.608000px;}
.y1d8{bottom:394.644000px;}
.y5f{bottom:396.102000px;}
.y2c7{bottom:396.576000px;}
.y3b{bottom:397.548000px;}
.y1fa{bottom:398.707500px;}
.y1b0{bottom:399.747900px;}
.y114{bottom:401.256000px;}
.ycc{bottom:401.856000px;}
.yf1{bottom:405.804000px;}
.y16b{bottom:405.912000px;}
.y156{bottom:405.966000px;}
.y134{bottom:406.182000px;}
.y263{bottom:406.218000px;}
.y293{bottom:407.340000px;}
.y2fb{bottom:407.670000px;}
.y82{bottom:409.500000px;}
.y23a{bottom:411.882000px;}
.y2c6{bottom:412.320000px;}
.y31d{bottom:413.250000px;}
.ya6{bottom:416.802000px;}
.y1d7{bottom:416.838000px;}
.y18a{bottom:418.288500px;}
.y5e{bottom:419.052000px;}
.y3a{bottom:420.642000px;}
.y262{bottom:421.218000px;}
.y292{bottom:422.484000px;}
.y16{bottom:422.710650px;}
.y1af{bottom:422.841900px;}
.y113{bottom:423.162000px;}
.ycb{bottom:423.762000px;}
.y2fa{bottom:425.514000px;}
.yf0{bottom:427.548000px;}
.y2c5{bottom:428.064000px;}
.y16a{bottom:428.556000px;}
.y155{bottom:428.610000px;}
.y133{bottom:428.826000px;}
.y21a{bottom:431.100000px;}
.y81{bottom:432.000000px;}
.y239{bottom:434.382000px;}
.y261{bottom:436.218000px;}
.y291{bottom:437.628000px;}
.y189{bottom:437.938500px;}
.y1f9{bottom:438.924000px;}
.ya5{bottom:438.996000px;}
.y1d6{bottom:439.032000px;}
.y15{bottom:441.160650px;}
.y5d{bottom:442.002000px;}
.y39{bottom:443.736000px;}
.y2c4{bottom:443.808000px;}
.y112{bottom:445.068000px;}
.yca{bottom:445.668000px;}
.y1ae{bottom:445.935900px;}
.yef{bottom:449.292000px;}
.y31c{bottom:450.750000px;}
.y169{bottom:451.218000px;}
.y154{bottom:451.254000px;}
.y132{bottom:451.470000px;}
.y219{bottom:452.700000px;}
.y290{bottom:452.772000px;}
.y80{bottom:454.500000px;}
.y238{bottom:456.882000px;}
.y188{bottom:457.588500px;}
.y2c3{bottom:459.552000px;}
.y1f8{bottom:461.118000px;}
.ya4{bottom:461.190000px;}
.y1d5{bottom:461.226000px;}
.y5c{bottom:464.952000px;}
.y260{bottom:466.362000px;}
.y38{bottom:466.830000px;}
.y111{bottom:466.974000px;}
.yc9{bottom:467.574000px;}
.y28f{bottom:467.916000px;}
.y14{bottom:468.113550px;}
.y1ad{bottom:469.035750px;}
.yee{bottom:471.036000px;}
.y168{bottom:473.862000px;}
.y153{bottom:473.898000px;}
.y131{bottom:474.114000px;}
.y218{bottom:474.300000px;}
.y2f9{bottom:474.462000px;}
.y2c2{bottom:475.296000px;}
.y7f{bottom:477.000000px;}
.y187{bottom:477.238500px;}
.y237{bottom:479.382000px;}
.y25f{bottom:481.506000px;}
.y28e{bottom:483.060000px;}
.y1f7{bottom:483.312000px;}
.ya3{bottom:483.384000px;}
.y1d4{bottom:483.420000px;}
.y13{bottom:486.563550px;}
.y5b{bottom:487.902000px;}
.y31b{bottom:488.250000px;}
.y110{bottom:488.880000px;}
.y2f8{bottom:489.306000px;}
.yc8{bottom:489.480000px;}
.y37{bottom:489.924000px;}
.y2c1{bottom:491.040000px;}
.y1ac{bottom:492.135750px;}
.yed{bottom:492.780000px;}
.y217{bottom:495.900000px;}
.y167{bottom:496.506000px;}
.y152{bottom:496.542000px;}
.y25e{bottom:496.650000px;}
.y130{bottom:496.758000px;}
.y186{bottom:496.888500px;}
.y28d{bottom:498.204000px;}
.y7e{bottom:499.500000px;}
.y236{bottom:501.882000px;}
.y2f7{bottom:504.150000px;}
.y12{bottom:505.013550px;}
.y1f6{bottom:505.506000px;}
.ya2{bottom:505.578000px;}
.y1d3{bottom:505.614000px;}
.y2c0{bottom:506.784000px;}
.y10f{bottom:510.786000px;}
.y5a{bottom:510.852000px;}
.yc7{bottom:511.386000px;}
.y25d{bottom:511.806000px;}
.y36{bottom:513.018000px;}
.y28c{bottom:513.348000px;}
.yec{bottom:514.524000px;}
.y185{bottom:516.538500px;}
.y216{bottom:517.500000px;}
.y31a{bottom:518.250000px;}
.y2f6{bottom:518.994000px;}
.y151{bottom:519.186000px;}
.y166{bottom:519.258000px;}
.y12f{bottom:519.402000px;}
.y7d{bottom:522.000000px;}
.y2bf{bottom:522.528000px;}
.y11{bottom:523.463550px;}
.y235{bottom:524.382000px;}
.y25c{bottom:526.950000px;}
.y1f5{bottom:527.766000px;}
.ya1{bottom:527.772000px;}
.y1d2{bottom:527.808000px;}
.y28b{bottom:528.492000px;}
.y10e{bottom:532.692000px;}
.yc6{bottom:533.292000px;}
.y59{bottom:533.802000px;}
.y2f5{bottom:533.838000px;}
.y35{bottom:536.112000px;}
.y184{bottom:536.188500px;}
.yeb{bottom:536.268000px;}
.y319{bottom:537.000000px;}
.y2be{bottom:538.128000px;}
.y215{bottom:539.100000px;}
.y150{bottom:541.830000px;}
.y165{bottom:541.902000px;}
.y10{bottom:541.913550px;}
.y12e{bottom:542.046000px;}
.y25b{bottom:542.094000px;}
.y28a{bottom:543.636000px;}
.y7c{bottom:544.500000px;}
.y234{bottom:546.882000px;}
.y2f4{bottom:548.682000px;}
.y1f4{bottom:549.960000px;}
.ya0{bottom:549.966000px;}
.y1d1{bottom:550.002000px;}
.y1ab{bottom:552.617700px;}
.y2bd{bottom:553.728000px;}
.y10d{bottom:554.598000px;}
.yc5{bottom:555.198000px;}
.y318{bottom:555.750000px;}
.y183{bottom:555.838500px;}
.y58{bottom:556.896000px;}
.y25a{bottom:557.238000px;}
.yea{bottom:558.012000px;}
.y289{bottom:558.780000px;}
.y34{bottom:559.206000px;}
.yf{bottom:560.363550px;}
.y214{bottom:560.700000px;}
.y182{bottom:563.173500px;}
.y2f3{bottom:563.526000px;}
.y14f{bottom:564.474000px;}
.y164{bottom:564.546000px;}
.y12d{bottom:564.690000px;}
.y7b{bottom:567.000000px;}
.y2bc{bottom:569.328000px;}
.y233{bottom:569.382000px;}
.y1aa{bottom:571.825200px;}
.y1f3{bottom:572.154000px;}
.y9f{bottom:572.160000px;}
.y1d0{bottom:572.196000px;}
.y259{bottom:572.382000px;}
.y288{bottom:573.924000px;}
.y317{bottom:574.500000px;}
.y10c{bottom:576.504000px;}
.yc4{bottom:577.104000px;}
.y2f2{bottom:578.370000px;}
.ye{bottom:578.813550px;}
.ye9{bottom:579.756000px;}
.y57{bottom:579.990000px;}
.y33{bottom:582.300000px;}
.y181{bottom:582.823500px;}
.y2bb{bottom:584.928000px;}
.y14e{bottom:587.118000px;}
.y163{bottom:587.190000px;}
.y12c{bottom:587.334000px;}
.y258{bottom:587.526000px;}
.y287{bottom:589.068000px;}
.y7a{bottom:589.500000px;}
.y232{bottom:591.882000px;}
.y1a9{bottom:593.203200px;}
.y2f1{bottom:593.214000px;}
.y316{bottom:593.250000px;}
.y1f2{bottom:594.348000px;}
.y9e{bottom:594.354000px;}
.y1cf{bottom:594.390000px;}
.yd{bottom:597.263550px;}
.y10b{bottom:598.410000px;}
.yc3{bottom:599.010000px;}
.y2ba{bottom:600.528000px;}
.ye8{bottom:601.500000px;}
.y180{bottom:602.473500px;}
.y257{bottom:602.682000px;}
.y56{bottom:603.084000px;}
.y213{bottom:603.900000px;}
.y286{bottom:604.212000px;}
.y32{bottom:605.250000px;}
.y2f0{bottom:608.058000px;}
.y14d{bottom:609.762000px;}
.y162{bottom:609.834000px;}
.y12b{bottom:609.978000px;}
.y79{bottom:612.000000px;}
.y231{bottom:614.382000px;}
.y1a8{bottom:615.375450px;}
.yc{bottom:615.713550px;}
.y2b9{bottom:616.128000px;}
.y1f1{bottom:616.542000px;}
.y9d{bottom:616.548000px;}
.y1ce{bottom:616.584000px;}
.y256{bottom:617.826000px;}
.y285{bottom:619.356000px;}
.y10a{bottom:620.316000px;}
.yc2{bottom:620.916000px;}
.y17f{bottom:622.123500px;}
.y2ef{bottom:622.902000px;}
.ye7{bottom:623.250000px;}
.y212{bottom:625.500000px;}
.y55{bottom:626.178000px;}
.y31{bottom:628.200000px;}
.y315{bottom:630.750000px;}
.y2b8{bottom:631.728000px;}
.y14c{bottom:632.406000px;}
.y161{bottom:632.478000px;}
.y12a{bottom:632.622000px;}
.y255{bottom:632.970000px;}
.yb{bottom:634.163550px;}
.y78{bottom:634.500000px;}
.y1a7{bottom:635.475450px;}
.y230{bottom:636.882000px;}
.y2ee{bottom:637.746000px;}
.y1f0{bottom:638.736000px;}
.y9c{bottom:638.742000px;}
.y1cd{bottom:638.778000px;}
.y17e{bottom:641.773500px;}
.y109{bottom:642.222000px;}
.yc1{bottom:642.822000px;}
.y211{bottom:647.100000px;}
.y2b7{bottom:647.328000px;}
.y254{bottom:648.114000px;}
.y54{bottom:649.272000px;}
.y284{bottom:649.500000px;}
.y30{bottom:651.150000px;}
.y2ed{bottom:652.590000px;}
.y14b{bottom:655.122000px;}
.y129{bottom:655.266000px;}
.y1a6{bottom:655.575450px;}
.y77{bottom:657.000000px;}
.y22f{bottom:659.382000px;}
.y1ef{bottom:660.930000px;}
.y9b{bottom:660.936000px;}
.y1cc{bottom:660.972000px;}
.ya{bottom:661.118550px;}
.y17d{bottom:661.423500px;}
.y2b6{bottom:662.928000px;}
.y253{bottom:663.258000px;}
.y108{bottom:664.128000px;}
.y283{bottom:664.500000px;}
.yc0{bottom:664.728000px;}
.ye6{bottom:666.792000px;}
.y2ec{bottom:667.434000px;}
.y314{bottom:668.250000px;}
.y210{bottom:668.700000px;}
.y53{bottom:672.366000px;}
.y2f{bottom:674.100000px;}
.y1a5{bottom:675.675450px;}
.y14a{bottom:677.766000px;}
.y128{bottom:677.910000px;}
.y252{bottom:678.414000px;}
.y2b5{bottom:678.528000px;}
.y76{bottom:679.500000px;}
.y17c{bottom:681.073500px;}
.y22e{bottom:681.882000px;}
.y2eb{bottom:682.278000px;}
.y1ee{bottom:683.124000px;}
.y9a{bottom:683.130000px;}
.y1cb{bottom:683.166000px;}
.y107{bottom:686.034000px;}
.ybf{bottom:686.634000px;}
.y313{bottom:687.000000px;}
.ye5{bottom:688.536000px;}
.y20f{bottom:690.300000px;}
.y251{bottom:693.558000px;}
.y2b4{bottom:694.128000px;}
.y282{bottom:694.500000px;}
.y52{bottom:695.460000px;}
.y1a4{bottom:695.775450px;}
.y2e{bottom:697.050000px;}
.y2ea{bottom:697.122000px;}
.y149{bottom:700.410000px;}
.y127{bottom:700.554000px;}
.y17b{bottom:700.723500px;}
.y75{bottom:702.000000px;}
.y22d{bottom:704.382000px;}
.y1ed{bottom:705.318000px;}
.y99{bottom:705.324000px;}
.y1ca{bottom:705.360000px;}
.y312{bottom:705.750000px;}
.y9{bottom:706.704300px;}
.y106{bottom:707.940000px;}
.ybe{bottom:708.540000px;}
.y250{bottom:708.702000px;}
.y281{bottom:709.500000px;}
.y2b3{bottom:709.728000px;}
.ye4{bottom:710.280000px;}
.y20e{bottom:711.900000px;}
.y2e9{bottom:711.966000px;}
.y1a3{bottom:715.875450px;}
.y51{bottom:718.554000px;}
.y2d{bottom:720.000000px;}
.y148{bottom:723.054000px;}
.y126{bottom:723.198000px;}
.y24f{bottom:723.846000px;}
.y74{bottom:724.500000px;}
.y8{bottom:726.204300px;}
.y2e8{bottom:726.810000px;}
.y22c{bottom:726.882000px;}
.y1ec{bottom:727.512000px;}
.y98{bottom:727.518000px;}
.y1c9{bottom:727.554000px;}
.y179{bottom:727.708500px;}
.y105{bottom:729.846000px;}
.ybd{bottom:730.446000px;}
.y2b2{bottom:731.700000px;}
.ye3{bottom:732.024000px;}
.y20d{bottom:733.500000px;}
.y1a2{bottom:735.975450px;}
.y24e{bottom:738.990000px;}
.y280{bottom:739.500000px;}
.y50{bottom:741.648000px;}
.y2e7{bottom:741.654000px;}
.y2c{bottom:742.950000px;}
.y311{bottom:743.250000px;}
.y147{bottom:745.698000px;}
.y125{bottom:745.842000px;}
.y73{bottom:747.000000px;}
.y178{bottom:747.358500px;}
.y7{bottom:748.404300px;}
.y22b{bottom:749.382000px;}
.y1eb{bottom:749.706000px;}
.y97{bottom:749.712000px;}
.y1c8{bottom:749.748000px;}
.y104{bottom:751.752000px;}
.ybc{bottom:752.352000px;}
.ye2{bottom:753.768000px;}
.y24d{bottom:754.146000px;}
.y27f{bottom:754.500000px;}
.y20c{bottom:755.100000px;}
.y1a1{bottom:756.075450px;}
.y2e6{bottom:756.498000px;}
.y310{bottom:762.000000px;}
.y4f{bottom:764.742000px;}
.y2b{bottom:765.900000px;}
.y177{bottom:767.008500px;}
.y146{bottom:768.342000px;}
.y124{bottom:768.486000px;}
.y24c{bottom:769.290000px;}
.y72{bottom:769.500000px;}
.y2e5{bottom:771.342000px;}
.y22a{bottom:771.882000px;}
.y96{bottom:771.906000px;}
.y1c7{bottom:771.942000px;}
.y103{bottom:773.658000px;}
.ybb{bottom:774.258000px;}
.ye1{bottom:775.512000px;}
.y1a0{bottom:776.175450px;}
.y20b{bottom:776.700000px;}
.y2b1{bottom:777.900000px;}
.y17a{bottom:779.323500px;}
.y30f{bottom:780.750000px;}
.y24b{bottom:784.434000px;}
.y27e{bottom:784.500000px;}
.y2e4{bottom:786.186000px;}
.y176{bottom:786.658500px;}
.y4e{bottom:787.836000px;}
.y2a{bottom:788.850000px;}
.y145{bottom:790.986000px;}
.y123{bottom:791.130000px;}
.y71{bottom:792.000000px;}
.y2b0{bottom:793.500000px;}
.y95{bottom:794.130000px;}
.y1c6{bottom:794.136000px;}
.y229{bottom:794.382000px;}
.y102{bottom:795.564000px;}
.yba{bottom:796.164000px;}
.y19f{bottom:796.275450px;}
.ye0{bottom:797.256000px;}
.y20a{bottom:798.300000px;}
.y27d{bottom:799.500000px;}
.y24a{bottom:799.578000px;}
.y2e3{bottom:801.030000px;}
.y175{bottom:806.308500px;}
.y2af{bottom:809.100000px;}
.y4d{bottom:810.930000px;}
.y29{bottom:811.800000px;}
.y144{bottom:813.630000px;}
.y122{bottom:813.774000px;}
.y70{bottom:814.500000px;}
.y249{bottom:814.722000px;}
.y6{bottom:815.250000px;}
.y2e2{bottom:815.886000px;}
.y94{bottom:816.324000px;}
.y1c5{bottom:816.330000px;}
.y19e{bottom:816.375450px;}
.y228{bottom:816.882000px;}
.y101{bottom:817.470000px;}
.yb9{bottom:818.070000px;}
.y30e{bottom:818.250000px;}
.ydf{bottom:819.030000px;}
.y209{bottom:819.900000px;}
.y2ae{bottom:824.700000px;}
.y27c{bottom:829.500000px;}
.y2e1{bottom:830.730000px;}
.y174{bottom:833.293500px;}
.y4c{bottom:834.024000px;}
.y28{bottom:834.750000px;}
.y248{bottom:836.250000px;}
.y143{bottom:836.274000px;}
.y121{bottom:836.418000px;}
.y19d{bottom:836.475450px;}
.y6f{bottom:837.000000px;}
.y93{bottom:838.518000px;}
.y1c4{bottom:838.524000px;}
.y100{bottom:839.376000px;}
.y227{bottom:839.382000px;}
.yb8{bottom:839.976000px;}
.y2ad{bottom:840.300000px;}
.yde{bottom:840.774000px;}
.y208{bottom:841.500000px;}
.y27b{bottom:844.500000px;}
.y5{bottom:844.950000px;}
.y2e0{bottom:845.574000px;}
.y30d{bottom:855.750000px;}
.y2ac{bottom:855.900000px;}
.y19c{bottom:856.575450px;}
.y4b{bottom:857.118000px;}
.y27{bottom:857.700000px;}
.y142{bottom:858.918000px;}
.y120{bottom:859.062000px;}
.y6e{bottom:859.500000px;}
.y173{bottom:860.278500px;}
.y2df{bottom:860.418000px;}
.y92{bottom:860.712000px;}
.y1c3{bottom:860.718000px;}
.yff{bottom:861.282000px;}
.yb7{bottom:861.882000px;}
.ydd{bottom:862.518000px;}
.y207{bottom:863.100000px;}
.y2ab{bottom:871.500000px;}
.y27a{bottom:874.500000px;}
.y4{bottom:874.650000px;}
.y2de{bottom:875.262000px;}
.y19b{bottom:876.675450px;}
.y4a{bottom:880.212000px;}
.y26{bottom:880.650000px;}
.y141{bottom:881.562000px;}
.y11f{bottom:881.706000px;}
.y13d{bottom:882.000000px;}
.y91{bottom:882.906000px;}
.y1c2{bottom:882.912000px;}
.yfe{bottom:883.188000px;}
.yb6{bottom:883.788000px;}
.ydc{bottom:884.262000px;}
.y206{bottom:884.700000px;}
.y2aa{bottom:887.100000px;}
.y172{bottom:887.263500px;}
.y279{bottom:889.500000px;}
.y2dd{bottom:890.118000px;}
.y30c{bottom:893.250000px;}
.y2a9{bottom:902.700000px;}
.y49{bottom:903.306000px;}
.y25{bottom:903.600000px;}
.y19a{bottom:903.660450px;}
.y140{bottom:904.206000px;}
.y11e{bottom:904.350000px;}
.y6d{bottom:904.500000px;}
.y2dc{bottom:904.962000px;}
.yfd{bottom:905.094000px;}
.y90{bottom:905.106000px;}
.yb5{bottom:905.694000px;}
.ydb{bottom:906.006000px;}
.y205{bottom:906.300000px;}
.y30b{bottom:912.000000px;}
.y2a8{bottom:918.300000px;}
.y278{bottom:919.500000px;}
.y2db{bottom:919.806000px;}
.y48{bottom:926.400000px;}
.y3{bottom:926.550000px;}
.y13f{bottom:926.850000px;}
.y6c{bottom:927.000000px;}
.y8f{bottom:927.300000px;}
.yb4{bottom:927.600000px;}
.yda{bottom:927.750000px;}
.y204{bottom:927.900000px;}
.y199{bottom:930.645450px;}
.y30a{bottom:930.750000px;}
.y2a7{bottom:933.900000px;}
.y277{bottom:934.500000px;}
.y2da{bottom:934.650000px;}
.hb{height:23.927813px;}
.h13{height:23.985938px;}
.hf{height:30.313623px;}
.h17{height:31.992188px;}
.h18{height:35.991211px;}
.h3{height:37.990723px;}
.h16{height:39.072000px;}
.h8{height:39.990234px;}
.hc{height:40.757812px;}
.h2{height:41.396484px;}
.he{height:45.852539px;}
.ha{height:47.988281px;}
.h7{height:48.399902px;}
.h12{height:48.840000px;}
.h6{height:49.675781px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.h9{height:61.136719px;}
.h14{height:61.856719px;}
.h10{height:65.907703px;}
.h11{height:66.123703px;}
.h15{height:66.291703px;}
.hd{height:66.435703px;}
.h4{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xa{left:73.832700px;}
.x7{left:82.368000px;}
.x9{left:89.717700px;}
.x3{left:97.263750px;}
.x8{left:102.857700px;}
.x5{left:112.500000px;}
.x11{left:116.962500px;}
.xe{left:118.832700px;}
.x6{left:127.381950px;}
.x2{left:135.000000px;}
.xd{left:147.857700px;}
.xc{left:184.982700px;}
.xf{left:229.982700px;}
.xb{left:391.292700px;}
.x10{left:436.292700px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls36{letter-spacing:-5.504000pt;}
.ls58{letter-spacing:-4.266667pt;}
.ls4a{letter-spacing:-3.968000pt;}
.ls3e{letter-spacing:-2.496000pt;}
.ls3b{letter-spacing:-1.344000pt;}
.ls3c{letter-spacing:-1.216000pt;}
.ls4c{letter-spacing:-1.152000pt;}
.ls4d{letter-spacing:-1.088000pt;}
.ls50{letter-spacing:-1.024000pt;}
.ls4e{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls55{letter-spacing:-0.224000pt;}
.ls59{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000533pt;}
.ls20{letter-spacing:0.038400pt;}
.ls42{letter-spacing:0.063467pt;}
.ls21{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.140800pt;}
.ls49{letter-spacing:0.147200pt;}
.ls48{letter-spacing:0.153600pt;}
.ls51{letter-spacing:0.166400pt;}
.ls26{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.198400pt;}
.ls43{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.289600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.390400pt;}
.ls1e{letter-spacing:0.428800pt;}
.lsc{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls1c{letter-spacing:0.582400pt;}
.ls41{letter-spacing:0.620800pt;}
.ls52{letter-spacing:0.627200pt;}
.lsa{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.652800pt;}
.ls40{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls31{letter-spacing:0.832000pt;}
.ls13{letter-spacing:0.896000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls30{letter-spacing:0.972800pt;}
.ls23{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.088000pt;}
.ls22{letter-spacing:1.152000pt;}
.ls38{letter-spacing:1.408000pt;}
.ls46{letter-spacing:1.600000pt;}
.ls33{letter-spacing:1.920000pt;}
.ls32{letter-spacing:2.112000pt;}
.ls2{letter-spacing:2.533333pt;}
.ls5a{letter-spacing:2.581333pt;}
.ls5c{letter-spacing:2.602667pt;}
.ls5b{letter-spacing:2.611200pt;}
.ls5d{letter-spacing:2.632533pt;}
.ls57{letter-spacing:2.986667pt;}
.ls1{letter-spacing:3.786667pt;}
.ls4{letter-spacing:4.010667pt;}
.ls44{letter-spacing:4.032000pt;}
.ls9{letter-spacing:4.053333pt;}
.ls56{letter-spacing:4.224000pt;}
.ls37{letter-spacing:4.480000pt;}
.ls3a{letter-spacing:4.928000pt;}
.ls3f{letter-spacing:5.312000pt;}
.ls4b{letter-spacing:5.952000pt;}
.ls2e{letter-spacing:6.768000pt;}
.ls27{letter-spacing:6.912000pt;}
.ls5e{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls39{letter-spacing:8.000000pt;}
.ls1f{letter-spacing:8.064000pt;}
.ls28{letter-spacing:8.339200pt;}
.ls4f{letter-spacing:9.024000pt;}
.ls3{letter-spacing:9.546667pt;}
.ls54{letter-spacing:12.263200pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws33{word-spacing:-63.680000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws43{word-spacing:-18.304000pt;}
.ws28{word-spacing:-17.984000pt;}
.ws4d{word-spacing:-17.728000pt;}
.ws29{word-spacing:-16.832000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws3b{word-spacing:-16.640000pt;}
.ws49{word-spacing:-16.576000pt;}
.ws25{word-spacing:-16.384000pt;}
.ws27{word-spacing:-16.320000pt;}
.ws5d{word-spacing:-16.256000pt;}
.ws52{word-spacing:-16.192000pt;}
.ws47{word-spacing:-16.128000pt;}
.ws26{word-spacing:-16.064000pt;}
.ws45{word-spacing:-16.000000pt;}
.ws46{word-spacing:-15.936000pt;}
.ws59{word-spacing:-15.872000pt;}
.ws24{word-spacing:-15.808000pt;}
.ws4c{word-spacing:-15.744000pt;}
.ws56{word-spacing:-15.680000pt;}
.ws3a{word-spacing:-15.616000pt;}
.ws44{word-spacing:-15.552000pt;}
.ws1d{word-spacing:-15.488000pt;}
.ws58{word-spacing:-15.424000pt;}
.ws34{word-spacing:-15.360000pt;}
.ws5c{word-spacing:-15.168000pt;}
.ws60{word-spacing:-14.986667pt;}
.ws39{word-spacing:-14.976000pt;}
.ws61{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.906667pt;}
.ws1e{word-spacing:-12.588800pt;}
.ws72{word-spacing:-12.364800pt;}
.ws7c{word-spacing:-11.989333pt;}
.ws7b{word-spacing:-10.965333pt;}
.ws2a{word-spacing:-10.538667pt;}
.wsd{word-spacing:-7.552000pt;}
.wsf{word-spacing:-7.520000pt;}
.ws82{word-spacing:-7.200000pt;}
.ws3d{word-spacing:-6.768000pt;}
.ws54{word-spacing:-5.312000pt;}
.ws4e{word-spacing:-4.928000pt;}
.ws80{word-spacing:-4.224000pt;}
.wsc{word-spacing:-4.053333pt;}
.ws7d{word-spacing:-2.986667pt;}
.ws3f{word-spacing:-2.112000pt;}
.ws40{word-spacing:-1.920000pt;}
.ws64{word-spacing:-1.600000pt;}
.ws48{word-spacing:-1.408000pt;}
.ws74{word-spacing:-1.344000pt;}
.ws2f{word-spacing:-1.152000pt;}
.ws65{word-spacing:-1.088000pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.896000pt;}
.ws3e{word-spacing:-0.832000pt;}
.ws18{word-spacing:-0.768000pt;}
.ws5a{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws12{word-spacing:-0.512000pt;}
.ws13{word-spacing:-0.448000pt;}
.ws9{word-spacing:-0.426667pt;}
.ws16{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.256000pt;}
.ws5b{word-spacing:-0.213333pt;}
.ws30{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.128000pt;}
.ws2b{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053333pt;}
.ws35{word-spacing:0.064000pt;}
.ws17{word-spacing:0.128000pt;}
.ws32{word-spacing:0.192000pt;}
.ws7f{word-spacing:0.213333pt;}
.ws15{word-spacing:0.256000pt;}
.wsb{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.384000pt;}
.ws23{word-spacing:0.448000pt;}
.ws21{word-spacing:0.512000pt;}
.ws38{word-spacing:0.576000pt;}
.ws37{word-spacing:0.640000pt;}
.ws20{word-spacing:0.704000pt;}
.ws22{word-spacing:0.768000pt;}
.ws4a{word-spacing:0.832000pt;}
.ws3c{word-spacing:0.896000pt;}
.ws6d{word-spacing:0.960000pt;}
.ws6f{word-spacing:1.024000pt;}
.ws6c{word-spacing:1.088000pt;}
.ws5f{word-spacing:1.152000pt;}
.ws51{word-spacing:1.216000pt;}
.ws81{word-spacing:1.280000pt;}
.ws50{word-spacing:1.344000pt;}
.ws7{word-spacing:1.600000pt;}
.ws57{word-spacing:1.792000pt;}
.ws78{word-spacing:1.920000pt;}
.ws62{word-spacing:2.133333pt;}
.ws53{word-spacing:2.496000pt;}
.ws5e{word-spacing:2.624000pt;}
.ws67{word-spacing:2.688000pt;}
.ws63{word-spacing:2.986667pt;}
.ws69{word-spacing:3.072000pt;}
.ws7a{word-spacing:3.136000pt;}
.ws36{word-spacing:3.264000pt;}
.ws8{word-spacing:3.546667pt;}
.wse{word-spacing:3.733333pt;}
.ws73{word-spacing:3.840000pt;}
.ws6a{word-spacing:3.968000pt;}
.ws7e{word-spacing:4.266667pt;}
.ws70{word-spacing:4.480000pt;}
.ws71{word-spacing:4.800000pt;}
.ws2e{word-spacing:4.928000pt;}
.ws77{word-spacing:4.992000pt;}
.ws42{word-spacing:5.504000pt;}
.ws6b{word-spacing:5.952000pt;}
.ws4f{word-spacing:6.144000pt;}
.ws6e{word-spacing:6.848000pt;}
.ws75{word-spacing:6.912000pt;}
.ws76{word-spacing:7.040000pt;}
.ws79{word-spacing:7.424000pt;}
.ws4b{word-spacing:8.256000pt;}
.ws68{word-spacing:8.512000pt;}
.ws55{word-spacing:8.960000pt;}
.ws41{word-spacing:9.024000pt;}
.ws31{word-spacing:9.216000pt;}
.ws66{word-spacing:10.240000pt;}
.ws5{word-spacing:11.360000pt;}
.ws6{word-spacing:65.013333pt;}
.ws0{word-spacing:129.952000pt;}
._a{margin-left:-843.396267pt;}
._4{margin-left:-61.226667pt;}
._12{margin-left:-17.493067pt;}
._22{margin-left:-16.290667pt;}
._19{margin-left:-13.876000pt;}
._14{margin-left:-12.138133pt;}
._16{margin-left:-10.364800pt;}
._1a{margin-left:-9.237067pt;}
._13{margin-left:-8.182400pt;}
._11{margin-left:-6.483733pt;}
._8{margin-left:-5.518933pt;}
._c{margin-left:-4.314667pt;}
._3{margin-left:-2.650667pt;}
._1{margin-left:-0.928000pt;}
._6{width:1.545333pt;}
._2{width:2.650667pt;}
._0{width:3.765333pt;}
._9{width:4.657333pt;}
._e{width:5.706667pt;}
._7{width:7.445333pt;}
._d{width:8.411200pt;}
._10{width:9.702400pt;}
._b{width:11.220267pt;}
._f{width:12.438667pt;}
._18{width:13.715733pt;}
._20{width:14.658400pt;}
._17{width:15.897600pt;}
._23{width:21.748533pt;}
._21{width:24.128000pt;}
._15{width:28.129867pt;}
._5{width:31.360000pt;}
._24{width:44.396000pt;}
._1e{width:47.274667pt;}
._1c{width:62.261333pt;}
._1f{width:92.074667pt;}
._1d{width:344.661333pt;}
._1b{width:370.897333pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.yb3{bottom:104.000000pt;}
.yd9{bottom:104.069333pt;}
.y1ea{bottom:104.085333pt;}
.y247{bottom:104.485333pt;}
.y2d9{bottom:104.960000pt;}
.y47{bottom:107.040000pt;}
.y6b{bottom:107.290667pt;}
.y309{bottom:107.676667pt;}
.y2a6{bottom:107.722667pt;}
.y8e{bottom:107.740000pt;}
.y276{bottom:107.749333pt;}
.y24{bottom:107.958000pt;}
.y1bc{bottom:108.995467pt;}
.y226{bottom:109.104000pt;}
.y198{bottom:112.638667pt;}
.yfc{bottom:117.333333pt;}
.y2d8{bottom:118.432000pt;}
.y2a5{bottom:121.056000pt;}
.yb2{bottom:121.073333pt;}
.y275{bottom:121.082667pt;}
.yd8{bottom:123.541333pt;}
.y1e9{bottom:123.557333pt;}
.y13e{bottom:124.000000pt;}
.y308{bottom:124.343333pt;}
.y23{bottom:124.358000pt;}
.y246{bottom:124.757333pt;}
.y46{bottom:127.568000pt;}
.y6a{bottom:127.690667pt;}
.y225{bottom:128.832000pt;}
.y1bb{bottom:129.523467pt;}
.y197{bottom:130.238667pt;}
.yfb{bottom:130.666667pt;}
.y2d7{bottom:131.893333pt;}
.y2a4{bottom:134.389333pt;}
.y1e2{bottom:134.406667pt;}
.y274{bottom:134.416000pt;}
.yb1{bottom:137.333333pt;}
.y307{bottom:141.010000pt;}
.yd7{bottom:143.013333pt;}
.y1e8{bottom:143.029333pt;}
.y1c1{bottom:143.189333pt;}
.y8d{bottom:144.000000pt;}
.y245{bottom:145.029333pt;}
.y2d6{bottom:145.354667pt;}
.y2a3{bottom:147.722667pt;}
.y273{bottom:147.749333pt;}
.y196{bottom:147.838667pt;}
.y69{bottom:148.090667pt;}
.y45{bottom:148.096000pt;}
.y22{bottom:148.316133pt;}
.y224{bottom:148.560000pt;}
.y1ba{bottom:150.051467pt;}
.yb0{bottom:150.666667pt;}
.yfa{bottom:157.333333pt;}
.y306{bottom:157.676667pt;}
.y2d5{bottom:158.954667pt;}
.y160{bottom:159.578667pt;}
.y2a2{bottom:161.056000pt;}
.y11d{bottom:161.073333pt;}
.y272{bottom:161.082667pt;}
.yd6{bottom:162.485333pt;}
.y1e7{bottom:162.501333pt;}
.y1c0{bottom:162.661333pt;}
.y8c{bottom:164.000000pt;}
.y21{bottom:164.716133pt;}
.y244{bottom:165.301333pt;}
.y195{bottom:165.438667pt;}
.y223{bottom:168.288000pt;}
.y68{bottom:168.490667pt;}
.y44{bottom:168.624000pt;}
.y1b9{bottom:170.579467pt;}
.y203{bottom:170.666667pt;}
.y2d4{bottom:172.554667pt;}
.y1e1{bottom:173.242667pt;}
.y305{bottom:174.343333pt;}
.y2a1{bottom:174.389333pt;}
.yf9{bottom:174.406667pt;}
.y271{bottom:174.416000pt;}
.yaf{bottom:177.333333pt;}
.y15f{bottom:179.706667pt;}
.y20{bottom:181.116133pt;}
.yd5{bottom:181.957333pt;}
.y1bf{bottom:181.973333pt;}
.y194{bottom:183.038667pt;}
.y8b{bottom:184.000000pt;}
.y243{bottom:185.573333pt;}
.y2d3{bottom:186.154667pt;}
.y2a0{bottom:187.722667pt;}
.y270{bottom:187.749333pt;}
.y222{bottom:188.016000pt;}
.y67{bottom:188.890667pt;}
.y43{bottom:189.152000pt;}
.yae{bottom:190.666667pt;}
.y304{bottom:191.010000pt;}
.y1b8{bottom:191.107467pt;}
.y1e0{bottom:192.970667pt;}
.y202{bottom:197.333333pt;}
.y1f{bottom:197.516133pt;}
.y2d2{bottom:199.754667pt;}
.y15e{bottom:199.834667pt;}
.y13c{bottom:199.882667pt;}
.y193{bottom:200.638667pt;}
.y11c{bottom:200.896000pt;}
.y29f{bottom:201.056000pt;}
.y26f{bottom:201.082667pt;}
.yd4{bottom:201.429333pt;}
.y1be{bottom:201.445333pt;}
.y8a{bottom:204.000000pt;}
.y242{bottom:205.845333pt;}
.y303{bottom:207.676667pt;}
.yf8{bottom:207.740000pt;}
.y221{bottom:207.744000pt;}
.y66{bottom:209.290667pt;}
.y42{bottom:209.680000pt;}
.y201{bottom:210.666667pt;}
.y1b7{bottom:211.635467pt;}
.y1df{bottom:212.698667pt;}
.y2d1{bottom:213.354667pt;}
.y1e{bottom:213.916133pt;}
.y29e{bottom:214.389333pt;}
.y26e{bottom:214.416000pt;}
.yad{bottom:217.333333pt;}
.y192{bottom:218.238667pt;}
.y15d{bottom:219.962667pt;}
.y13b{bottom:220.010667pt;}
.y11b{bottom:220.368000pt;}
.yd3{bottom:220.901333pt;}
.y1bd{bottom:220.917333pt;}
.y171{bottom:221.073333pt;}
.y89{bottom:224.000000pt;}
.y302{bottom:224.343333pt;}
.y241{bottom:226.117333pt;}
.y2d0{bottom:226.954667pt;}
.y220{bottom:227.472000pt;}
.y29d{bottom:227.722667pt;}
.y200{bottom:227.740000pt;}
.y26d{bottom:227.749333pt;}
.y65{bottom:229.690667pt;}
.y41{bottom:230.208000pt;}
.y1d{bottom:230.316133pt;}
.y1b6{bottom:232.163467pt;}
.y1de{bottom:232.426667pt;}
.yac{bottom:234.406667pt;}
.y11a{bottom:239.840000pt;}
.y15c{bottom:240.090667pt;}
.y13a{bottom:240.138667pt;}
.yd2{bottom:240.373333pt;}
.y1e6{bottom:240.389333pt;}
.y2cf{bottom:240.554667pt;}
.y301{bottom:241.010000pt;}
.y29c{bottom:241.056000pt;}
.y26c{bottom:241.082667pt;}
.y191{bottom:242.225333pt;}
.y88{bottom:244.000000pt;}
.yf7{bottom:244.746667pt;}
.y240{bottom:246.117333pt;}
.y1c{bottom:246.716133pt;}
.y21f{bottom:247.200000pt;}
.y64{bottom:250.090667pt;}
.y40{bottom:250.736000pt;}
.y1dd{bottom:252.154667pt;}
.y1b5{bottom:252.691467pt;}
.y29b{bottom:254.389333pt;}
.y26b{bottom:254.416000pt;}
.y2ce{bottom:254.549333pt;}
.y1ff{bottom:257.333333pt;}
.y300{bottom:257.543333pt;}
.y119{bottom:259.312000pt;}
.y190{bottom:259.825333pt;}
.yd1{bottom:259.845333pt;}
.y1e5{bottom:259.861333pt;}
.y170{bottom:260.170667pt;}
.y15b{bottom:260.218667pt;}
.y139{bottom:260.410667pt;}
.y1b{bottom:263.116133pt;}
.y87{bottom:264.000000pt;}
.yf6{bottom:264.074667pt;}
.y23f{bottom:266.117333pt;}
.y21e{bottom:266.933333pt;}
.y26a{bottom:267.749333pt;}
.y29a{bottom:267.850667pt;}
.y2cd{bottom:268.544000pt;}
.y63{bottom:270.490667pt;}
.y1fe{bottom:270.666667pt;}
.y3f{bottom:271.264000pt;}
.yab{bottom:271.850667pt;}
.y1dc{bottom:271.882667pt;}
.y1b4{bottom:273.219467pt;}
.y2ff{bottom:274.076667pt;}
.y18f{bottom:277.425333pt;}
.y118{bottom:278.784000pt;}
.yd0{bottom:279.317333pt;}
.y1e4{bottom:279.333333pt;}
.y1a{bottom:279.516133pt;}
.y16f{bottom:280.298667pt;}
.y15a{bottom:280.346667pt;}
.y138{bottom:280.538667pt;}
.y269{bottom:281.082667pt;}
.y299{bottom:281.312000pt;}
.y2cc{bottom:282.538667pt;}
.yf5{bottom:283.402667pt;}
.y86{bottom:284.000000pt;}
.y23e{bottom:286.117333pt;}
.y2fe{bottom:290.610000pt;}
.y62{bottom:290.890667pt;}
.yaa{bottom:291.578667pt;}
.y1db{bottom:291.610667pt;}
.y3e{bottom:291.792000pt;}
.y1b3{bottom:293.747467pt;}
.y268{bottom:294.416000pt;}
.y298{bottom:294.773333pt;}
.y18e{bottom:295.025333pt;}
.y19{bottom:295.916133pt;}
.y2cb{bottom:296.533333pt;}
.y1fd{bottom:297.333333pt;}
.y117{bottom:298.256000pt;}
.ycf{bottom:298.789333pt;}
.y1e3{bottom:298.805333pt;}
.y16e{bottom:300.426667pt;}
.y159{bottom:300.474667pt;}
.y137{bottom:300.666667pt;}
.yf4{bottom:302.730667pt;}
.y85{bottom:304.000000pt;}
.y23d{bottom:306.117333pt;}
.y21d{bottom:306.400000pt;}
.y2fd{bottom:307.143333pt;}
.y267{bottom:307.749333pt;}
.y297{bottom:308.234667pt;}
.y2ca{bottom:310.528000pt;}
.y1fc{bottom:310.666667pt;}
.y61{bottom:311.290667pt;}
.ya9{bottom:311.306667pt;}
.y1da{bottom:311.338667pt;}
.y18{bottom:312.316133pt;}
.y3d{bottom:312.320000pt;}
.y18d{bottom:312.625333pt;}
.y1b2{bottom:314.275467pt;}
.y116{bottom:317.728000pt;}
.yce{bottom:318.261333pt;}
.y16d{bottom:320.554667pt;}
.y158{bottom:320.602667pt;}
.y136{bottom:320.794667pt;}
.y266{bottom:321.082667pt;}
.y296{bottom:321.696000pt;}
.yf3{bottom:322.058667pt;}
.y84{bottom:324.000000pt;}
.y2c9{bottom:324.522667pt;}
.y21c{bottom:325.600000pt;}
.y23c{bottom:326.117333pt;}
.y18c{bottom:330.225333pt;}
.ya8{bottom:331.034667pt;}
.y1d9{bottom:331.066667pt;}
.y60{bottom:331.690667pt;}
.y3c{bottom:332.848000pt;}
.y31f{bottom:334.000000pt;}
.y265{bottom:334.416000pt;}
.y1b1{bottom:334.803467pt;}
.y2fc{bottom:335.015200pt;}
.y295{bottom:335.157333pt;}
.y17{bottom:336.276133pt;}
.y115{bottom:337.200000pt;}
.y1fb{bottom:337.333333pt;}
.ycd{bottom:337.733333pt;}
.y2c8{bottom:338.517333pt;}
.y16c{bottom:340.682667pt;}
.y157{bottom:340.730667pt;}
.y135{bottom:340.922667pt;}
.yf2{bottom:341.386667pt;}
.y83{bottom:344.000000pt;}
.y21b{bottom:344.800000pt;}
.y23b{bottom:346.117333pt;}
.y264{bottom:347.749333pt;}
.y18b{bottom:347.825333pt;}
.y294{bottom:348.618667pt;}
.y31e{bottom:350.666667pt;}
.ya7{bottom:350.762667pt;}
.y1d8{bottom:350.794667pt;}
.y5f{bottom:352.090667pt;}
.y2c7{bottom:352.512000pt;}
.y3b{bottom:353.376000pt;}
.y1fa{bottom:354.406667pt;}
.y1b0{bottom:355.331467pt;}
.y114{bottom:356.672000pt;}
.ycc{bottom:357.205333pt;}
.yf1{bottom:360.714667pt;}
.y16b{bottom:360.810667pt;}
.y156{bottom:360.858667pt;}
.y134{bottom:361.050667pt;}
.y263{bottom:361.082667pt;}
.y293{bottom:362.080000pt;}
.y2fb{bottom:362.373333pt;}
.y82{bottom:364.000000pt;}
.y23a{bottom:366.117333pt;}
.y2c6{bottom:366.506667pt;}
.y31d{bottom:367.333333pt;}
.ya6{bottom:370.490667pt;}
.y1d7{bottom:370.522667pt;}
.y18a{bottom:371.812000pt;}
.y5e{bottom:372.490667pt;}
.y3a{bottom:373.904000pt;}
.y262{bottom:374.416000pt;}
.y292{bottom:375.541333pt;}
.y16{bottom:375.742800pt;}
.y1af{bottom:375.859467pt;}
.y113{bottom:376.144000pt;}
.ycb{bottom:376.677333pt;}
.y2fa{bottom:378.234667pt;}
.yf0{bottom:380.042667pt;}
.y2c5{bottom:380.501333pt;}
.y16a{bottom:380.938667pt;}
.y155{bottom:380.986667pt;}
.y133{bottom:381.178667pt;}
.y21a{bottom:383.200000pt;}
.y81{bottom:384.000000pt;}
.y239{bottom:386.117333pt;}
.y261{bottom:387.749333pt;}
.y291{bottom:389.002667pt;}
.y189{bottom:389.278667pt;}
.y1f9{bottom:390.154667pt;}
.ya5{bottom:390.218667pt;}
.y1d6{bottom:390.250667pt;}
.y15{bottom:392.142800pt;}
.y5d{bottom:392.890667pt;}
.y39{bottom:394.432000pt;}
.y2c4{bottom:394.496000pt;}
.y112{bottom:395.616000pt;}
.yca{bottom:396.149333pt;}
.y1ae{bottom:396.387467pt;}
.yef{bottom:399.370667pt;}
.y31c{bottom:400.666667pt;}
.y169{bottom:401.082667pt;}
.y154{bottom:401.114667pt;}
.y132{bottom:401.306667pt;}
.y219{bottom:402.400000pt;}
.y290{bottom:402.464000pt;}
.y80{bottom:404.000000pt;}
.y238{bottom:406.117333pt;}
.y188{bottom:406.745333pt;}
.y2c3{bottom:408.490667pt;}
.y1f8{bottom:409.882667pt;}
.ya4{bottom:409.946667pt;}
.y1d5{bottom:409.978667pt;}
.y5c{bottom:413.290667pt;}
.y260{bottom:414.544000pt;}
.y38{bottom:414.960000pt;}
.y111{bottom:415.088000pt;}
.yc9{bottom:415.621333pt;}
.y28f{bottom:415.925333pt;}
.y14{bottom:416.100933pt;}
.y1ad{bottom:416.920667pt;}
.yee{bottom:418.698667pt;}
.y168{bottom:421.210667pt;}
.y153{bottom:421.242667pt;}
.y131{bottom:421.434667pt;}
.y218{bottom:421.600000pt;}
.y2f9{bottom:421.744000pt;}
.y2c2{bottom:422.485333pt;}
.y7f{bottom:424.000000pt;}
.y187{bottom:424.212000pt;}
.y237{bottom:426.117333pt;}
.y25f{bottom:428.005333pt;}
.y28e{bottom:429.386667pt;}
.y1f7{bottom:429.610667pt;}
.ya3{bottom:429.674667pt;}
.y1d4{bottom:429.706667pt;}
.y13{bottom:432.500933pt;}
.y5b{bottom:433.690667pt;}
.y31b{bottom:434.000000pt;}
.y110{bottom:434.560000pt;}
.y2f8{bottom:434.938667pt;}
.yc8{bottom:435.093333pt;}
.y37{bottom:435.488000pt;}
.y2c1{bottom:436.480000pt;}
.y1ac{bottom:437.454000pt;}
.yed{bottom:438.026667pt;}
.y217{bottom:440.800000pt;}
.y167{bottom:441.338667pt;}
.y152{bottom:441.370667pt;}
.y25e{bottom:441.466667pt;}
.y130{bottom:441.562667pt;}
.y186{bottom:441.678667pt;}
.y28d{bottom:442.848000pt;}
.y7e{bottom:444.000000pt;}
.y236{bottom:446.117333pt;}
.y2f7{bottom:448.133333pt;}
.y12{bottom:448.900933pt;}
.y1f6{bottom:449.338667pt;}
.ya2{bottom:449.402667pt;}
.y1d3{bottom:449.434667pt;}
.y2c0{bottom:450.474667pt;}
.y10f{bottom:454.032000pt;}
.y5a{bottom:454.090667pt;}
.yc7{bottom:454.565333pt;}
.y25d{bottom:454.938667pt;}
.y36{bottom:456.016000pt;}
.y28c{bottom:456.309333pt;}
.yec{bottom:457.354667pt;}
.y185{bottom:459.145333pt;}
.y216{bottom:460.000000pt;}
.y31a{bottom:460.666667pt;}
.y2f6{bottom:461.328000pt;}
.y151{bottom:461.498667pt;}
.y166{bottom:461.562667pt;}
.y12f{bottom:461.690667pt;}
.y7d{bottom:464.000000pt;}
.y2bf{bottom:464.469333pt;}
.y11{bottom:465.300933pt;}
.y235{bottom:466.117333pt;}
.y25c{bottom:468.400000pt;}
.y1f5{bottom:469.125333pt;}
.ya1{bottom:469.130667pt;}
.y1d2{bottom:469.162667pt;}
.y28b{bottom:469.770667pt;}
.y10e{bottom:473.504000pt;}
.yc6{bottom:474.037333pt;}
.y59{bottom:474.490667pt;}
.y2f5{bottom:474.522667pt;}
.y35{bottom:476.544000pt;}
.y184{bottom:476.612000pt;}
.yeb{bottom:476.682667pt;}
.y319{bottom:477.333333pt;}
.y2be{bottom:478.336000pt;}
.y215{bottom:479.200000pt;}
.y150{bottom:481.626667pt;}
.y165{bottom:481.690667pt;}
.y10{bottom:481.700933pt;}
.y12e{bottom:481.818667pt;}
.y25b{bottom:481.861333pt;}
.y28a{bottom:483.232000pt;}
.y7c{bottom:484.000000pt;}
.y234{bottom:486.117333pt;}
.y2f4{bottom:487.717333pt;}
.y1f4{bottom:488.853333pt;}
.ya0{bottom:488.858667pt;}
.y1d1{bottom:488.890667pt;}
.y1ab{bottom:491.215733pt;}
.y2bd{bottom:492.202667pt;}
.y10d{bottom:492.976000pt;}
.yc5{bottom:493.509333pt;}
.y318{bottom:494.000000pt;}
.y183{bottom:494.078667pt;}
.y58{bottom:495.018667pt;}
.y25a{bottom:495.322667pt;}
.yea{bottom:496.010667pt;}
.y289{bottom:496.693333pt;}
.y34{bottom:497.072000pt;}
.yf{bottom:498.100933pt;}
.y214{bottom:498.400000pt;}
.y182{bottom:500.598667pt;}
.y2f3{bottom:500.912000pt;}
.y14f{bottom:501.754667pt;}
.y164{bottom:501.818667pt;}
.y12d{bottom:501.946667pt;}
.y7b{bottom:504.000000pt;}
.y2bc{bottom:506.069333pt;}
.y233{bottom:506.117333pt;}
.y1aa{bottom:508.289067pt;}
.y1f3{bottom:508.581333pt;}
.y9f{bottom:508.586667pt;}
.y1d0{bottom:508.618667pt;}
.y259{bottom:508.784000pt;}
.y288{bottom:510.154667pt;}
.y317{bottom:510.666667pt;}
.y10c{bottom:512.448000pt;}
.yc4{bottom:512.981333pt;}
.y2f2{bottom:514.106667pt;}
.ye{bottom:514.500933pt;}
.ye9{bottom:515.338667pt;}
.y57{bottom:515.546667pt;}
.y33{bottom:517.600000pt;}
.y181{bottom:518.065333pt;}
.y2bb{bottom:519.936000pt;}
.y14e{bottom:521.882667pt;}
.y163{bottom:521.946667pt;}
.y12c{bottom:522.074667pt;}
.y258{bottom:522.245333pt;}
.y287{bottom:523.616000pt;}
.y7a{bottom:524.000000pt;}
.y232{bottom:526.117333pt;}
.y1a9{bottom:527.291733pt;}
.y2f1{bottom:527.301333pt;}
.y316{bottom:527.333333pt;}
.y1f2{bottom:528.309333pt;}
.y9e{bottom:528.314667pt;}
.y1cf{bottom:528.346667pt;}
.yd{bottom:530.900933pt;}
.y10b{bottom:531.920000pt;}
.yc3{bottom:532.453333pt;}
.y2ba{bottom:533.802667pt;}
.ye8{bottom:534.666667pt;}
.y180{bottom:535.532000pt;}
.y257{bottom:535.717333pt;}
.y56{bottom:536.074667pt;}
.y213{bottom:536.800000pt;}
.y286{bottom:537.077333pt;}
.y32{bottom:538.000000pt;}
.y2f0{bottom:540.496000pt;}
.y14d{bottom:542.010667pt;}
.y162{bottom:542.074667pt;}
.y12b{bottom:542.202667pt;}
.y79{bottom:544.000000pt;}
.y231{bottom:546.117333pt;}
.y1a8{bottom:547.000400pt;}
.yc{bottom:547.300933pt;}
.y2b9{bottom:547.669333pt;}
.y1f1{bottom:548.037333pt;}
.y9d{bottom:548.042667pt;}
.y1ce{bottom:548.074667pt;}
.y256{bottom:549.178667pt;}
.y285{bottom:550.538667pt;}
.y10a{bottom:551.392000pt;}
.yc2{bottom:551.925333pt;}
.y17f{bottom:552.998667pt;}
.y2ef{bottom:553.690667pt;}
.ye7{bottom:554.000000pt;}
.y212{bottom:556.000000pt;}
.y55{bottom:556.602667pt;}
.y31{bottom:558.400000pt;}
.y315{bottom:560.666667pt;}
.y2b8{bottom:561.536000pt;}
.y14c{bottom:562.138667pt;}
.y161{bottom:562.202667pt;}
.y12a{bottom:562.330667pt;}
.y255{bottom:562.640000pt;}
.yb{bottom:563.700933pt;}
.y78{bottom:564.000000pt;}
.y1a7{bottom:564.867067pt;}
.y230{bottom:566.117333pt;}
.y2ee{bottom:566.885333pt;}
.y1f0{bottom:567.765333pt;}
.y9c{bottom:567.770667pt;}
.y1cd{bottom:567.802667pt;}
.y17e{bottom:570.465333pt;}
.y109{bottom:570.864000pt;}
.yc1{bottom:571.397333pt;}
.y211{bottom:575.200000pt;}
.y2b7{bottom:575.402667pt;}
.y254{bottom:576.101333pt;}
.y54{bottom:577.130667pt;}
.y284{bottom:577.333333pt;}
.y30{bottom:578.800000pt;}
.y2ed{bottom:580.080000pt;}
.y14b{bottom:582.330667pt;}
.y129{bottom:582.458667pt;}
.y1a6{bottom:582.733733pt;}
.y77{bottom:584.000000pt;}
.y22f{bottom:586.117333pt;}
.y1ef{bottom:587.493333pt;}
.y9b{bottom:587.498667pt;}
.y1cc{bottom:587.530667pt;}
.ya{bottom:587.660933pt;}
.y17d{bottom:587.932000pt;}
.y2b6{bottom:589.269333pt;}
.y253{bottom:589.562667pt;}
.y108{bottom:590.336000pt;}
.y283{bottom:590.666667pt;}
.yc0{bottom:590.869333pt;}
.ye6{bottom:592.704000pt;}
.y2ec{bottom:593.274667pt;}
.y314{bottom:594.000000pt;}
.y210{bottom:594.400000pt;}
.y53{bottom:597.658667pt;}
.y2f{bottom:599.200000pt;}
.y1a5{bottom:600.600400pt;}
.y14a{bottom:602.458667pt;}
.y128{bottom:602.586667pt;}
.y252{bottom:603.034667pt;}
.y2b5{bottom:603.136000pt;}
.y76{bottom:604.000000pt;}
.y17c{bottom:605.398667pt;}
.y22e{bottom:606.117333pt;}
.y2eb{bottom:606.469333pt;}
.y1ee{bottom:607.221333pt;}
.y9a{bottom:607.226667pt;}
.y1cb{bottom:607.258667pt;}
.y107{bottom:609.808000pt;}
.ybf{bottom:610.341333pt;}
.y313{bottom:610.666667pt;}
.ye5{bottom:612.032000pt;}
.y20f{bottom:613.600000pt;}
.y251{bottom:616.496000pt;}
.y2b4{bottom:617.002667pt;}
.y282{bottom:617.333333pt;}
.y52{bottom:618.186667pt;}
.y1a4{bottom:618.467067pt;}
.y2e{bottom:619.600000pt;}
.y2ea{bottom:619.664000pt;}
.y149{bottom:622.586667pt;}
.y127{bottom:622.714667pt;}
.y17b{bottom:622.865333pt;}
.y75{bottom:624.000000pt;}
.y22d{bottom:626.117333pt;}
.y1ed{bottom:626.949333pt;}
.y99{bottom:626.954667pt;}
.y1ca{bottom:626.986667pt;}
.y312{bottom:627.333333pt;}
.y9{bottom:628.181600pt;}
.y106{bottom:629.280000pt;}
.ybe{bottom:629.813333pt;}
.y250{bottom:629.957333pt;}
.y281{bottom:630.666667pt;}
.y2b3{bottom:630.869333pt;}
.ye4{bottom:631.360000pt;}
.y20e{bottom:632.800000pt;}
.y2e9{bottom:632.858667pt;}
.y1a3{bottom:636.333733pt;}
.y51{bottom:638.714667pt;}
.y2d{bottom:640.000000pt;}
.y148{bottom:642.714667pt;}
.y126{bottom:642.842667pt;}
.y24f{bottom:643.418667pt;}
.y74{bottom:644.000000pt;}
.y8{bottom:645.514933pt;}
.y2e8{bottom:646.053333pt;}
.y22c{bottom:646.117333pt;}
.y1ec{bottom:646.677333pt;}
.y98{bottom:646.682667pt;}
.y1c9{bottom:646.714667pt;}
.y179{bottom:646.852000pt;}
.y105{bottom:648.752000pt;}
.ybd{bottom:649.285333pt;}
.y2b2{bottom:650.400000pt;}
.ye3{bottom:650.688000pt;}
.y20d{bottom:652.000000pt;}
.y1a2{bottom:654.200400pt;}
.y24e{bottom:656.880000pt;}
.y280{bottom:657.333333pt;}
.y50{bottom:659.242667pt;}
.y2e7{bottom:659.248000pt;}
.y2c{bottom:660.400000pt;}
.y311{bottom:660.666667pt;}
.y147{bottom:662.842667pt;}
.y125{bottom:662.970667pt;}
.y73{bottom:664.000000pt;}
.y178{bottom:664.318667pt;}
.y7{bottom:665.248267pt;}
.y22b{bottom:666.117333pt;}
.y1eb{bottom:666.405333pt;}
.y97{bottom:666.410667pt;}
.y1c8{bottom:666.442667pt;}
.y104{bottom:668.224000pt;}
.ybc{bottom:668.757333pt;}
.ye2{bottom:670.016000pt;}
.y24d{bottom:670.352000pt;}
.y27f{bottom:670.666667pt;}
.y20c{bottom:671.200000pt;}
.y1a1{bottom:672.067067pt;}
.y2e6{bottom:672.442667pt;}
.y310{bottom:677.333333pt;}
.y4f{bottom:679.770667pt;}
.y2b{bottom:680.800000pt;}
.y177{bottom:681.785333pt;}
.y146{bottom:682.970667pt;}
.y124{bottom:683.098667pt;}
.y24c{bottom:683.813333pt;}
.y72{bottom:684.000000pt;}
.y2e5{bottom:685.637333pt;}
.y22a{bottom:686.117333pt;}
.y96{bottom:686.138667pt;}
.y1c7{bottom:686.170667pt;}
.y103{bottom:687.696000pt;}
.ybb{bottom:688.229333pt;}
.ye1{bottom:689.344000pt;}
.y1a0{bottom:689.933733pt;}
.y20b{bottom:690.400000pt;}
.y2b1{bottom:691.466667pt;}
.y17a{bottom:692.732000pt;}
.y30f{bottom:694.000000pt;}
.y24b{bottom:697.274667pt;}
.y27e{bottom:697.333333pt;}
.y2e4{bottom:698.832000pt;}
.y176{bottom:699.252000pt;}
.y4e{bottom:700.298667pt;}
.y2a{bottom:701.200000pt;}
.y145{bottom:703.098667pt;}
.y123{bottom:703.226667pt;}
.y71{bottom:704.000000pt;}
.y2b0{bottom:705.333333pt;}
.y95{bottom:705.893333pt;}
.y1c6{bottom:705.898667pt;}
.y229{bottom:706.117333pt;}
.y102{bottom:707.168000pt;}
.yba{bottom:707.701333pt;}
.y19f{bottom:707.800400pt;}
.ye0{bottom:708.672000pt;}
.y20a{bottom:709.600000pt;}
.y27d{bottom:710.666667pt;}
.y24a{bottom:710.736000pt;}
.y2e3{bottom:712.026667pt;}
.y175{bottom:716.718667pt;}
.y2af{bottom:719.200000pt;}
.y4d{bottom:720.826667pt;}
.y29{bottom:721.600000pt;}
.y144{bottom:723.226667pt;}
.y122{bottom:723.354667pt;}
.y70{bottom:724.000000pt;}
.y249{bottom:724.197333pt;}
.y6{bottom:724.666667pt;}
.y2e2{bottom:725.232000pt;}
.y94{bottom:725.621333pt;}
.y1c5{bottom:725.626667pt;}
.y19e{bottom:725.667067pt;}
.y228{bottom:726.117333pt;}
.y101{bottom:726.640000pt;}
.yb9{bottom:727.173333pt;}
.y30e{bottom:727.333333pt;}
.ydf{bottom:728.026667pt;}
.y209{bottom:728.800000pt;}
.y2ae{bottom:733.066667pt;}
.y27c{bottom:737.333333pt;}
.y2e1{bottom:738.426667pt;}
.y174{bottom:740.705333pt;}
.y4c{bottom:741.354667pt;}
.y28{bottom:742.000000pt;}
.y248{bottom:743.333333pt;}
.y143{bottom:743.354667pt;}
.y121{bottom:743.482667pt;}
.y19d{bottom:743.533733pt;}
.y6f{bottom:744.000000pt;}
.y93{bottom:745.349333pt;}
.y1c4{bottom:745.354667pt;}
.y100{bottom:746.112000pt;}
.y227{bottom:746.117333pt;}
.yb8{bottom:746.645333pt;}
.y2ad{bottom:746.933333pt;}
.yde{bottom:747.354667pt;}
.y208{bottom:748.000000pt;}
.y27b{bottom:750.666667pt;}
.y5{bottom:751.066667pt;}
.y2e0{bottom:751.621333pt;}
.y30d{bottom:760.666667pt;}
.y2ac{bottom:760.800000pt;}
.y19c{bottom:761.400400pt;}
.y4b{bottom:761.882667pt;}
.y27{bottom:762.400000pt;}
.y142{bottom:763.482667pt;}
.y120{bottom:763.610667pt;}
.y6e{bottom:764.000000pt;}
.y173{bottom:764.692000pt;}
.y2df{bottom:764.816000pt;}
.y92{bottom:765.077333pt;}
.y1c3{bottom:765.082667pt;}
.yff{bottom:765.584000pt;}
.yb7{bottom:766.117333pt;}
.ydd{bottom:766.682667pt;}
.y207{bottom:767.200000pt;}
.y2ab{bottom:774.666667pt;}
.y27a{bottom:777.333333pt;}
.y4{bottom:777.466667pt;}
.y2de{bottom:778.010667pt;}
.y19b{bottom:779.267067pt;}
.y4a{bottom:782.410667pt;}
.y26{bottom:782.800000pt;}
.y141{bottom:783.610667pt;}
.y11f{bottom:783.738667pt;}
.y13d{bottom:784.000000pt;}
.y91{bottom:784.805333pt;}
.y1c2{bottom:784.810667pt;}
.yfe{bottom:785.056000pt;}
.yb6{bottom:785.589333pt;}
.ydc{bottom:786.010667pt;}
.y206{bottom:786.400000pt;}
.y2aa{bottom:788.533333pt;}
.y172{bottom:788.678667pt;}
.y279{bottom:790.666667pt;}
.y2dd{bottom:791.216000pt;}
.y30c{bottom:794.000000pt;}
.y2a9{bottom:802.400000pt;}
.y49{bottom:802.938667pt;}
.y25{bottom:803.200000pt;}
.y19a{bottom:803.253733pt;}
.y140{bottom:803.738667pt;}
.y11e{bottom:803.866667pt;}
.y6d{bottom:804.000000pt;}
.y2dc{bottom:804.410667pt;}
.yfd{bottom:804.528000pt;}
.y90{bottom:804.538667pt;}
.yb5{bottom:805.061333pt;}
.ydb{bottom:805.338667pt;}
.y205{bottom:805.600000pt;}
.y30b{bottom:810.666667pt;}
.y2a8{bottom:816.266667pt;}
.y278{bottom:817.333333pt;}
.y2db{bottom:817.605333pt;}
.y48{bottom:823.466667pt;}
.y3{bottom:823.600000pt;}
.y13f{bottom:823.866667pt;}
.y6c{bottom:824.000000pt;}
.y8f{bottom:824.266667pt;}
.yb4{bottom:824.533333pt;}
.yda{bottom:824.666667pt;}
.y204{bottom:824.800000pt;}
.y199{bottom:827.240400pt;}
.y30a{bottom:827.333333pt;}
.y2a7{bottom:830.133333pt;}
.y277{bottom:830.666667pt;}
.y2da{bottom:830.800000pt;}
.hb{height:21.269167pt;}
.h13{height:21.320833pt;}
.hf{height:26.945443pt;}
.h17{height:28.437500pt;}
.h18{height:31.992188pt;}
.h3{height:33.769531pt;}
.h16{height:34.730667pt;}
.h8{height:35.546875pt;}
.hc{height:36.229167pt;}
.h2{height:36.796875pt;}
.he{height:40.757812pt;}
.ha{height:42.656250pt;}
.h7{height:43.022135pt;}
.h12{height:43.413333pt;}
.h6{height:44.156250pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.h9{height:54.343750pt;}
.h14{height:54.983750pt;}
.h10{height:58.584625pt;}
.h11{height:58.776625pt;}
.h15{height:58.925958pt;}
.hd{height:59.053958pt;}
.h4{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xa{left:65.629067pt;}
.x7{left:73.216000pt;}
.x9{left:79.749067pt;}
.x3{left:86.456667pt;}
.x8{left:91.429067pt;}
.x5{left:100.000000pt;}
.x11{left:103.966667pt;}
.xe{left:105.629067pt;}
.x6{left:113.228400pt;}
.x2{left:120.000000pt;}
.xd{left:131.429067pt;}
.xc{left:164.429067pt;}
.xf{left:204.429067pt;}
.xb{left:347.815733pt;}
.x10{left:387.815733pt;}
.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; }
  