
    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_0812f54351dbaba34b27f41e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_63ddf98640678e2f4777da99.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8523119c599422617b6d388e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fe09b7ca8a92f7dd2fac5138.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904785;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_4170c593d75fb9e35db8b7a0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_c07d549fdf30dce05b0ca718.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6bbd1f5c9dc75b56b610d51d.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_e79b6e8befcaef784f34bbba.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7306ab88ec4a04ce97c317bc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.904785;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_882aa7c4571a6fa6d70267c5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.911133;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_46a0fe50b7eda3dbb0e70d08.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_595a34ba23b9bda721dfbded.woff')format("woff");}.ffc{font-family:ffc;line-height:0.912000;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_2c2d50e706853af38b995f33.woff')format("woff");}.ffd{font-family:ffd;line-height:0.912000;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_a12a5920cdf6eebd4283cdb0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666992;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);}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-4.800000px;}
.ls20{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.ls30{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.936000px;}
.ls28{letter-spacing:1.008000px;}
.ls2c{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.224000px;}
.lsc{letter-spacing:1.296000px;}
.ls2b{letter-spacing:1.512000px;}
.ls29{letter-spacing:1.656000px;}
.ls2a{letter-spacing:1.728000px;}
.ls0{letter-spacing:2.850000px;}
.ls2d{letter-spacing:2.928000px;}
.ls18{letter-spacing:4.260000px;}
.ls5{letter-spacing:4.560000px;}
.ls2e{letter-spacing:4.752000px;}
.ls6{letter-spacing:4.848000px;}
.ls31{letter-spacing:8.100000px;}
.ls3{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.ls25{letter-spacing:11.224800px;}
.ls24{letter-spacing:378.144000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6e{word-spacing:-426.144000px;}
.ws83{word-spacing:-52.272000px;}
.ws1{word-spacing:-25.320000px;}
.ws9e{word-spacing:-20.952000px;}
.ws7f{word-spacing:-20.664000px;}
.ws90{word-spacing:-20.232000px;}
.ws0{word-spacing:-18.867000px;}
.ws74{word-spacing:-18.216000px;}
.ws2{word-spacing:-16.860000px;}
.ws8a{word-spacing:-14.820000px;}
.wsa5{word-spacing:-11.856000px;}
.ws75{word-spacing:-8.532000px;}
.ws32{word-spacing:-8.460000px;}
.wsaa{word-spacing:-8.100000px;}
.ws76{word-spacing:-7.938000px;}
.ws6d{word-spacing:-7.536000px;}
.ws6c{word-spacing:-7.056000px;}
.wsa6{word-spacing:-4.752000px;}
.wsb{word-spacing:-4.560000px;}
.ws43{word-spacing:-2.088000px;}
.ws44{word-spacing:-2.016000px;}
.ws80{word-spacing:-1.656000px;}
.wsa0{word-spacing:-1.512000px;}
.ws1e{word-spacing:-1.296000px;}
.ws8e{word-spacing:-1.008000px;}
.ws3f{word-spacing:-0.792000px;}
.ws4e{word-spacing:-0.720000px;}
.ws56{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.600000px;}
.ws71{word-spacing:-0.576000px;}
.ws8c{word-spacing:-0.504000px;}
.ws77{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.360000px;}
.ws3d{word-spacing:-0.288000px;}
.ws60{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.144000px;}
.ws38{word-spacing:-0.072000px;}
.wsd{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws6a{word-spacing:0.072000px;}
.ws41{word-spacing:0.144000px;}
.ws54{word-spacing:0.216000px;}
.ws48{word-spacing:0.288000px;}
.ws35{word-spacing:0.360000px;}
.ws4c{word-spacing:0.432000px;}
.wsa8{word-spacing:0.480000px;}
.ws4d{word-spacing:0.504000px;}
.ws2c{word-spacing:0.576000px;}
.ws45{word-spacing:0.720000px;}
.ws78{word-spacing:0.792000px;}
.ws34{word-spacing:0.864000px;}
.ws95{word-spacing:0.936000px;}
.ws51{word-spacing:1.080000px;}
.ws70{word-spacing:1.152000px;}
.ws6b{word-spacing:1.296000px;}
.ws6{word-spacing:1.440000px;}
.ws7e{word-spacing:1.512000px;}
.ws68{word-spacing:1.656000px;}
.ws72{word-spacing:1.776000px;}
.ws8{word-spacing:1.800000px;}
.ws3a{word-spacing:1.872000px;}
.ws5b{word-spacing:1.944000px;}
.ws10{word-spacing:1.980000px;}
.ws7b{word-spacing:1.998000px;}
.ws2e{word-spacing:2.016000px;}
.ws12{word-spacing:2.088000px;}
.ws7a{word-spacing:2.106000px;}
.ws17{word-spacing:2.160000px;}
.ws29{word-spacing:2.232000px;}
.ws5f{word-spacing:2.304000px;}
.ws57{word-spacing:2.376000px;}
.ws6f{word-spacing:2.400000px;}
.ws11{word-spacing:2.448000px;}
.ws93{word-spacing:2.520000px;}
.ws61{word-spacing:2.592000px;}
.ws40{word-spacing:2.736000px;}
.ws65{word-spacing:2.808000px;}
.ws50{word-spacing:2.880000px;}
.wsa4{word-spacing:2.952000px;}
.wsa7{word-spacing:2.976000px;}
.ws81{word-spacing:3.024000px;}
.ws96{word-spacing:3.096000px;}
.ws36{word-spacing:3.168000px;}
.ws3b{word-spacing:3.240000px;}
.wse{word-spacing:3.312000px;}
.wsa9{word-spacing:3.360000px;}
.ws82{word-spacing:3.384000px;}
.wsc{word-spacing:3.420000px;}
.ws24{word-spacing:3.456000px;}
.ws28{word-spacing:3.528000px;}
.ws3{word-spacing:3.600000px;}
.ws9b{word-spacing:3.672000px;}
.ws4{word-spacing:3.720000px;}
.ws4f{word-spacing:3.816000px;}
.ws55{word-spacing:3.888000px;}
.ws9a{word-spacing:3.960000px;}
.ws52{word-spacing:4.104000px;}
.ws63{word-spacing:4.176000px;}
.wsa{word-spacing:4.200000px;}
.ws92{word-spacing:4.248000px;}
.ws46{word-spacing:4.320000px;}
.ws13{word-spacing:4.392000px;}
.ws9{word-spacing:4.464000px;}
.ws47{word-spacing:4.536000px;}
.ws1f{word-spacing:4.608000px;}
.ws2b{word-spacing:4.752000px;}
.ws1b{word-spacing:4.824000px;}
.ws79{word-spacing:4.896000px;}
.ws2a{word-spacing:4.968000px;}
.ws16{word-spacing:5.040000px;}
.ws5e{word-spacing:5.112000px;}
.ws98{word-spacing:5.184000px;}
.ws15{word-spacing:5.256000px;}
.ws64{word-spacing:5.328000px;}
.ws8b{word-spacing:5.472000px;}
.ws89{word-spacing:5.544000px;}
.ws53{word-spacing:5.616000px;}
.ws25{word-spacing:5.688000px;}
.ws22{word-spacing:5.760000px;}
.ws21{word-spacing:5.832000px;}
.ws19{word-spacing:5.976000px;}
.ws2d{word-spacing:6.120000px;}
.ws2f{word-spacing:6.192000px;}
.ws88{word-spacing:6.264000px;}
.ws58{word-spacing:6.336000px;}
.ws8d{word-spacing:6.408000px;}
.ws9f{word-spacing:6.480000px;}
.ws18{word-spacing:6.552000px;}
.ws87{word-spacing:6.624000px;}
.ws5d{word-spacing:6.696000px;}
.ws97{word-spacing:6.768000px;}
.ws85{word-spacing:6.912000px;}
.ws69{word-spacing:6.984000px;}
.ws4b{word-spacing:7.056000px;}
.ws67{word-spacing:7.128000px;}
.ws66{word-spacing:7.272000px;}
.ws5a{word-spacing:7.344000px;}
.ws42{word-spacing:7.416000px;}
.wsa1{word-spacing:7.488000px;}
.wsa3{word-spacing:7.632000px;}
.ws3c{word-spacing:7.704000px;}
.ws7d{word-spacing:7.776000px;}
.ws9c{word-spacing:7.920000px;}
.ws94{word-spacing:7.992000px;}
.ws37{word-spacing:8.064000px;}
.ws91{word-spacing:8.280000px;}
.ws99{word-spacing:8.352000px;}
.ws33{word-spacing:8.376000px;}
.ws7{word-spacing:8.400000px;}
.ws8f{word-spacing:8.424000px;}
.ws49{word-spacing:8.496000px;}
.ws5c{word-spacing:8.568000px;}
.ws14{word-spacing:8.640000px;}
.wsa2{word-spacing:8.712000px;}
.ws3e{word-spacing:8.928000px;}
.ws27{word-spacing:9.000000px;}
.ws59{word-spacing:9.144000px;}
.ws39{word-spacing:9.288000px;}
.ws84{word-spacing:9.360000px;}
.ws62{word-spacing:9.432000px;}
.ws31{word-spacing:9.504000px;}
.ws23{word-spacing:9.648000px;}
.ws86{word-spacing:9.720000px;}
.ws26{word-spacing:9.792000px;}
.ws4a{word-spacing:9.864000px;}
.ws20{word-spacing:10.080000px;}
.ws1a{word-spacing:10.152000px;}
.ws9d{word-spacing:10.224000px;}
.ws73{word-spacing:10.464000px;}
.ws30{word-spacing:11.088000px;}
.ws7c{word-spacing:234.036000px;}
._3{margin-left:-1791.936000px;}
._13{margin-left:-1790.898000px;}
._b{margin-left:-940.387800px;}
._35{margin-left:-342.000000px;}
._18{margin-left:-14.860800px;}
._14{margin-left:-13.188000px;}
._5{margin-left:-11.928000px;}
._3d{margin-left:-10.742700px;}
._10{margin-left:-9.692700px;}
._e{margin-left:-8.658000px;}
._1{margin-left:-6.738000px;}
._8{margin-left:-5.322000px;}
._2{margin-left:-3.984000px;}
._9{margin-left:-2.820000px;}
._0{margin-left:-1.782000px;}
._4{width:1.738500px;}
._c{width:2.746200px;}
._6{width:3.756000px;}
._a{width:5.550300px;}
._7{width:6.984000px;}
._12{width:8.424600px;}
._d{width:9.597300px;}
._f{width:10.995900px;}
._11{width:12.996000px;}
._22{width:14.592000px;}
._27{width:16.128000px;}
._17{width:17.136000px;}
._16{width:19.166400px;}
._24{width:20.592000px;}
._15{width:21.960000px;}
._2c{width:23.424000px;}
._26{width:34.464000px;}
._2b{width:40.464000px;}
._45{width:46.302900px;}
._37{width:55.512000px;}
._1c{width:61.344000px;}
._46{width:66.633900px;}
._44{width:68.504100px;}
._20{width:72.624000px;}
._19{width:79.830000px;}
._1b{width:86.304000px;}
._3c{width:88.695300px;}
._1e{width:94.315500px;}
._2a{width:96.914700px;}
._23{width:97.926000px;}
._3a{width:99.792000px;}
._33{width:103.302000px;}
._2e{width:108.240000px;}
._21{width:115.771500px;}
._1a{width:119.424000px;}
._30{width:121.584000px;}
._28{width:127.734000px;}
._1d{width:136.854000px;}
._1f{width:147.222000px;}
._2f{width:157.968000px;}
._25{width:166.357500px;}
._34{width:181.776000px;}
._43{width:189.001200px;}
._31{width:202.464000px;}
._32{width:215.760000px;}
._42{width:220.260000px;}
._38{width:271.770000px;}
._39{width:286.254000px;}
._40{width:299.940000px;}
._29{width:304.464000px;}
._3e{width:353.040000px;}
._36{width:366.000000px;}
._41{width:371.162700px;}
._2d{width:376.464000px;}
._3b{width:481.764000px;}
._3f{width:695.049000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs5{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;}
.y1{bottom:72.000000px;}
.y8e{bottom:118.874100px;}
.y32d{bottom:118.896000px;}
.y1c8{bottom:118.906050px;}
.y224{bottom:119.004000px;}
.y22{bottom:119.147400px;}
.yaf{bottom:119.192100px;}
.y16a{bottom:119.250000px;}
.y2e0{bottom:119.388300px;}
.y1e4{bottom:119.520000px;}
.y11e{bottom:119.802000px;}
.y144{bottom:119.832000px;}
.yd4{bottom:119.998200px;}
.y19b{bottom:120.196950px;}
.y25f{bottom:120.276450px;}
.y17c{bottom:120.720450px;}
.y207{bottom:120.796350px;}
.y29c{bottom:120.846000px;}
.y2bc{bottom:121.054050px;}
.y47{bottom:121.390050px;}
.y2f7{bottom:121.422000px;}
.y6b{bottom:121.638150px;}
.y281{bottom:121.662000px;}
.yf9{bottom:122.376000px;}
.y241{bottom:126.527850px;}
.y32c{bottom:133.740000px;}
.yae{bottom:138.242100px;}
.y25e{bottom:138.576450px;}
.y21{bottom:138.647400px;}
.y169{bottom:140.544000px;}
.y6a{bottom:140.688150px;}
.y223{bottom:141.504000px;}
.y8d{bottom:141.680100px;}
.y143{bottom:141.738000px;}
.y11d{bottom:141.996000px;}
.y1e3{bottom:142.020000px;}
.y1c7{bottom:142.162050px;}
.y2df{bottom:142.338300px;}
.yd3{bottom:142.354200px;}
.y19a{bottom:142.696950px;}
.y206{bottom:142.990350px;}
.y17b{bottom:143.220450px;}
.y2bb{bottom:143.860050px;}
.y46{bottom:143.890050px;}
.y29b{bottom:143.940000px;}
.y280{bottom:144.162000px;}
.y2f6{bottom:144.372000px;}
.yf8{bottom:144.876000px;}
.y32b{bottom:148.596000px;}
.y240{bottom:153.512850px;}
.y20{bottom:158.147400px;}
.y69{bottom:159.738150px;}
.y168{bottom:161.838000px;}
.y32a{bottom:163.440000px;}
.y142{bottom:163.644000px;}
.y222{bottom:164.004000px;}
.y11c{bottom:164.190000px;}
.y8c{bottom:164.486100px;}
.y1e2{bottom:164.520000px;}
.yd2{bottom:164.710200px;}
.y205{bottom:165.184350px;}
.y199{bottom:165.196950px;}
.y25d{bottom:165.380250px;}
.y1c6{bottom:165.418050px;}
.yad{bottom:165.718050px;}
.y17a{bottom:165.720450px;}
.y45{bottom:166.246050px;}
.yf7{bottom:166.620000px;}
.y2ba{bottom:166.666050px;}
.y29a{bottom:167.034000px;}
.y27f{bottom:167.256000px;}
.y2f5{bottom:167.322000px;}
.y2de{bottom:173.792100px;}
.y1f{bottom:177.647400px;}
.y329{bottom:178.296000px;}
.y68{bottom:178.788150px;}
.y23f{bottom:180.497850px;}
.y167{bottom:183.132000px;}
.y141{bottom:185.550000px;}
.y221{bottom:186.360000px;}
.y11b{bottom:186.384000px;}
.y1e1{bottom:187.020000px;}
.yd1{bottom:187.066200px;}
.y8b{bottom:187.292100px;}
.y25c{bottom:187.430250px;}
.y204{bottom:187.684350px;}
.y198{bottom:187.696950px;}
.y179{bottom:188.220450px;}
.yf6{bottom:188.364000px;}
.yac{bottom:188.524050px;}
.y44{bottom:188.602050px;}
.y1c5{bottom:188.674050px;}
.y2b9{bottom:189.472050px;}
.y299{bottom:190.128000px;}
.y2f4{bottom:190.272000px;}
.y27e{bottom:190.350000px;}
.y2dd{bottom:192.992100px;}
.y328{bottom:193.140000px;}
.y1e{bottom:197.147400px;}
.y67{bottom:197.838150px;}
.y166{bottom:204.426000px;}
.y140{bottom:207.456000px;}
.y327{bottom:207.984000px;}
.y11a{bottom:208.578000px;}
.yd0{bottom:209.422200px;}
.y25b{bottom:209.480250px;}
.y1e0{bottom:209.520000px;}
.y8a{bottom:210.092100px;}
.yf5{bottom:210.108000px;}
.y203{bottom:210.184350px;}
.y197{bottom:210.196950px;}
.y178{bottom:210.720450px;}
.y43{bottom:210.958050px;}
.yab{bottom:211.330050px;}
.y1c4{bottom:211.930050px;}
.y2dc{bottom:212.192100px;}
.y2b8{bottom:212.278050px;}
.y298{bottom:213.078000px;}
.y2f3{bottom:213.222000px;}
.y27d{bottom:213.450000px;}
.y1d{bottom:216.647400px;}
.y220{bottom:217.212000px;}
.y23e{bottom:220.234200px;}
.y326{bottom:222.828000px;}
.y66{bottom:225.374100px;}
.y165{bottom:225.720000px;}
.y13f{bottom:229.362000px;}
.y119{bottom:230.772000px;}
.y2db{bottom:231.392100px;}
.y25a{bottom:231.530250px;}
.ycf{bottom:231.778200px;}
.yf4{bottom:231.852000px;}
.y1df{bottom:232.020000px;}
.y202{bottom:232.684350px;}
.y196{bottom:232.696950px;}
.y177{bottom:233.220450px;}
.y42{bottom:233.314050px;}
.yaa{bottom:234.136050px;}
.y2b7{bottom:235.084050px;}
.y1c3{bottom:235.186050px;}
.y297{bottom:236.028000px;}
.y1c{bottom:236.147400px;}
.y2f2{bottom:236.172000px;}
.y325{bottom:237.672000px;}
.y21f{bottom:239.568000px;}
.y23d{bottom:242.284200px;}
.y164{bottom:247.014000px;}
.y65{bottom:248.180100px;}
.y2da{bottom:250.592100px;}
.y13e{bottom:251.106000px;}
.y324{bottom:252.516000px;}
.y118{bottom:252.966000px;}
.yf3{bottom:253.596000px;}
.yce{bottom:254.134200px;}
.y1de{bottom:254.520000px;}
.y201{bottom:255.184350px;}
.y195{bottom:255.196950px;}
.y89{bottom:255.566100px;}
.y1b{bottom:255.647400px;}
.y41{bottom:255.670050px;}
.y176{bottom:255.720450px;}
.ya9{bottom:256.942050px;}
.y2b6{bottom:257.890050px;}
.y1c2{bottom:258.442050px;}
.y296{bottom:258.978000px;}
.y2f1{bottom:259.122000px;}
.y27c{bottom:259.698000px;}
.y21e{bottom:261.924000px;}
.y259{bottom:262.084200px;}
.y23c{bottom:264.334200px;}
.y323{bottom:267.372000px;}
.y163{bottom:268.308000px;}
.y2d9{bottom:269.792100px;}
.y64{bottom:270.986100px;}
.y13d{bottom:272.850000px;}
.y1a{bottom:275.147400px;}
.y117{bottom:275.160000px;}
.yf2{bottom:275.340000px;}
.y1dd{bottom:277.020000px;}
.y200{bottom:277.684350px;}
.y40{bottom:278.026050px;}
.y175{bottom:278.220450px;}
.y88{bottom:278.372100px;}
.ya8{bottom:279.748050px;}
.y258{bottom:280.384200px;}
.y2b5{bottom:280.696050px;}
.y1c1{bottom:281.698050px;}
.y295{bottom:281.928000px;}
.y2f0{bottom:282.072000px;}
.y322{bottom:282.216000px;}
.y27b{bottom:282.648000px;}
.ycd{bottom:284.988150px;}
.y194{bottom:286.192950px;}
.y23b{bottom:286.384200px;}
.y34c{bottom:287.238150px;}
.y162{bottom:289.602000px;}
.y21d{bottom:292.776000px;}
.y63{bottom:293.792100px;}
.y13c{bottom:294.594000px;}
.y321{bottom:297.060000px;}
.yf1{bottom:297.084000px;}
.y116{bottom:297.354000px;}
.y2d8{bottom:297.492000px;}
.y257{bottom:298.684200px;}
.y1dc{bottom:299.520000px;}
.y1ff{bottom:300.184350px;}
.y3f{bottom:300.382050px;}
.y174{bottom:300.720450px;}
.y87{bottom:301.178100px;}
.ya7{bottom:302.554050px;}
.y19{bottom:303.152400px;}
.y2b4{bottom:303.496050px;}
.ycc{bottom:303.588150px;}
.y294{bottom:304.878000px;}
.y1c0{bottom:304.954050px;}
.y2ef{bottom:305.022000px;}
.y27a{bottom:305.598000px;}
.y34b{bottom:305.988150px;}
.y23a{bottom:308.434200px;}
.y193{bottom:308.692950px;}
.y161{bottom:310.896000px;}
.y320{bottom:311.904000px;}
.y21c{bottom:315.132000px;}
.y13b{bottom:316.338000px;}
.y62{bottom:316.592100px;}
.y256{bottom:316.984200px;}
.yf0{bottom:318.828000px;}
.y115{bottom:319.548000px;}
.y2d7{bottom:320.442000px;}
.y1db{bottom:322.020000px;}
.ycb{bottom:322.188150px;}
.y1fe{bottom:322.684350px;}
.y3e{bottom:322.738050px;}
.y173{bottom:323.220450px;}
.y86{bottom:323.984100px;}
.y34a{bottom:324.738150px;}
.ya6{bottom:325.360050px;}
.y31f{bottom:326.748000px;}
.y293{bottom:327.828000px;}
.y2ee{bottom:327.972000px;}
.y1bf{bottom:328.210050px;}
.y279{bottom:328.548000px;}
.y239{bottom:330.484200px;}
.y192{bottom:331.192950px;}
.y160{bottom:332.190000px;}
.y21b{bottom:337.488000px;}
.y13a{bottom:338.082000px;}
.yef{bottom:340.572000px;}
.yca{bottom:340.788150px;}
.y31e{bottom:341.604000px;}
.y114{bottom:341.742000px;}
.y2d6{bottom:343.392000px;}
.y349{bottom:343.488150px;}
.y255{bottom:343.788150px;}
.y1da{bottom:344.520000px;}
.y3d{bottom:345.094050px;}
.y1fd{bottom:345.184350px;}
.y85{bottom:346.790100px;}
.ya5{bottom:348.166050px;}
.y2b3{bottom:348.966000px;}
.y18{bottom:349.652400px;}
.y292{bottom:350.778000px;}
.y2ed{bottom:350.922000px;}
.y1be{bottom:351.466050px;}
.y278{bottom:351.498000px;}
.y238{bottom:352.534200px;}
.y15f{bottom:353.484000px;}
.y191{bottom:353.692950px;}
.y31d{bottom:356.448000px;}
.y139{bottom:359.826000px;}
.y61{bottom:362.090100px;}
.yee{bottom:362.316000px;}
.y113{bottom:363.936000px;}
.y254{bottom:365.838150px;}
.y2d5{bottom:366.342000px;}
.y3c{bottom:367.450050px;}
.y1fc{bottom:367.684350px;}
.yc9{bottom:367.892100px;}
.y21a{bottom:368.340000px;}
.y17{bottom:369.152400px;}
.y84{bottom:369.596100px;}
.ya4{bottom:370.972050px;}
.y31c{bottom:371.292000px;}
.y2b2{bottom:371.772000px;}
.y348{bottom:373.488150px;}
.y18e{bottom:373.536450px;}
.y291{bottom:373.728000px;}
.y2ec{bottom:373.872000px;}
.y277{bottom:374.448000px;}
.y237{bottom:374.584200px;}
.y1bd{bottom:374.722050px;}
.y1d9{bottom:375.516000px;}
.y190{bottom:376.192950px;}
.y138{bottom:381.570000px;}
.y15e{bottom:383.292000px;}
.yed{bottom:384.060000px;}
.y60{bottom:384.896100px;}
.y112{bottom:386.130000px;}
.y31b{bottom:386.136000px;}
.y253{bottom:387.888150px;}
.y18d{bottom:388.536450px;}
.y2d4{bottom:389.292000px;}
.y3b{bottom:389.806050px;}
.y1fb{bottom:390.184350px;}
.yc8{bottom:390.392100px;}
.y219{bottom:390.696000px;}
.y83{bottom:392.402100px;}
.ya3{bottom:393.778050px;}
.y2b1{bottom:394.578000px;}
.y236{bottom:396.634200px;}
.y290{bottom:396.678000px;}
.y2eb{bottom:396.822000px;}
.y16{bottom:397.154100px;}
.y276{bottom:397.398000px;}
.y1bc{bottom:397.978050px;}
.y1d8{bottom:398.016000px;}
.y18f{bottom:398.692950px;}
.y31a{bottom:400.980000px;}
.y137{bottom:403.314000px;}
.y18c{bottom:403.536450px;}
.y15d{bottom:404.748000px;}
.yec{bottom:405.804000px;}
.y5f{bottom:407.702100px;}
.y111{bottom:408.324000px;}
.y252{bottom:409.938150px;}
.y3a{bottom:412.162050px;}
.y2d3{bottom:412.242000px;}
.y1fa{bottom:412.684350px;}
.yc7{bottom:412.892100px;}
.y218{bottom:413.052000px;}
.y347{bottom:414.738150px;}
.y82{bottom:415.208100px;}
.y319{bottom:415.836000px;}
.ya2{bottom:416.584050px;}
.y15{bottom:416.654100px;}
.y2b0{bottom:417.384000px;}
.y18b{bottom:418.536450px;}
.y235{bottom:418.684200px;}
.y28f{bottom:419.628000px;}
.y2ea{bottom:419.772000px;}
.y275{bottom:420.348000px;}
.y1d7{bottom:420.516000px;}
.y1bb{bottom:421.234050px;}
.y136{bottom:425.058000px;}
.y15c{bottom:426.204000px;}
.yeb{bottom:427.548000px;}
.y5e{bottom:430.508100px;}
.y110{bottom:430.518000px;}
.y318{bottom:430.680000px;}
.y251{bottom:431.988150px;}
.y346{bottom:433.488150px;}
.y18a{bottom:433.536450px;}
.y39{bottom:434.518050px;}
.y1f9{bottom:435.184350px;}
.y2d2{bottom:435.192000px;}
.yc6{bottom:435.392100px;}
.y217{bottom:435.408000px;}
.y14{bottom:436.154100px;}
.y81{bottom:438.014100px;}
.ya1{bottom:439.390050px;}
.y2af{bottom:440.190000px;}
.y234{bottom:440.734200px;}
.y28e{bottom:442.578000px;}
.y2e9{bottom:442.722000px;}
.y1d6{bottom:443.016000px;}
.y274{bottom:443.298000px;}
.y1ba{bottom:444.490050px;}
.y317{bottom:445.524000px;}
.y135{bottom:446.802000px;}
.y15b{bottom:447.660000px;}
.y189{bottom:448.536450px;}
.yea{bottom:449.292000px;}
.y345{bottom:452.238150px;}
.y10f{bottom:452.712000px;}
.y1a5{bottom:452.804850px;}
.y5d{bottom:453.314100px;}
.y13{bottom:455.654100px;}
.y38{bottom:456.874050px;}
.y1f8{bottom:457.684350px;}
.y216{bottom:457.764000px;}
.yc5{bottom:457.892100px;}
.y316{bottom:460.368000px;}
.y80{bottom:460.820100px;}
.ya0{bottom:462.196050px;}
.y250{bottom:462.542100px;}
.y233{bottom:462.784200px;}
.y2ae{bottom:462.996000px;}
.y188{bottom:463.536450px;}
.y1d5{bottom:465.516000px;}
.y28d{bottom:465.528000px;}
.y2e8{bottom:465.672000px;}
.y273{bottom:466.248000px;}
.y2d1{bottom:466.638000px;}
.y1b9{bottom:467.746050px;}
.y134{bottom:468.546000px;}
.y15a{bottom:469.116000px;}
.y344{bottom:470.988150px;}
.ye9{bottom:471.036000px;}
.y10e{bottom:474.906000px;}
.y12{bottom:475.154100px;}
.y315{bottom:475.212000px;}
.y5c{bottom:476.120100px;}
.y187{bottom:478.536450px;}
.y37{bottom:479.230050px;}
.y215{bottom:480.120000px;}
.y1f7{bottom:480.184350px;}
.yc4{bottom:480.392100px;}
.y24f{bottom:480.692100px;}
.y7f{bottom:483.626100px;}
.y232{bottom:484.834200px;}
.y9f{bottom:484.996050px;}
.y2ad{bottom:485.802000px;}
.y1d4{bottom:488.016000px;}
.y28c{bottom:488.478000px;}
.y2e7{bottom:488.622000px;}
.y272{bottom:489.198000px;}
.y2d0{bottom:489.588000px;}
.y343{bottom:489.738150px;}
.y314{bottom:490.068000px;}
.y133{bottom:490.290000px;}
.y159{bottom:490.572000px;}
.y1b8{bottom:490.996050px;}
.ye8{bottom:492.780000px;}
.y186{bottom:493.536450px;}
.y11{bottom:494.654100px;}
.y10d{bottom:497.100000px;}
.y24e{bottom:498.842100px;}
.y5b{bottom:498.926100px;}
.y36{bottom:501.586050px;}
.y214{bottom:502.476000px;}
.y1f6{bottom:502.684350px;}
.yc3{bottom:502.892100px;}
.y313{bottom:504.912000px;}
.y1a4{bottom:505.684350px;}
.y7e{bottom:506.432100px;}
.y231{bottom:506.884200px;}
.y9e{bottom:507.796050px;}
.y342{bottom:508.488150px;}
.y185{bottom:508.536450px;}
.y2ac{bottom:508.608000px;}
.y1d3{bottom:510.516000px;}
.y28b{bottom:511.428000px;}
.y2e6{bottom:511.572000px;}
.y158{bottom:512.028000px;}
.y132{bottom:512.034000px;}
.y271{bottom:512.148000px;}
.y2cf{bottom:512.538000px;}
.y1b7{bottom:514.246050px;}
.ye7{bottom:514.524000px;}
.y10c{bottom:519.294000px;}
.y312{bottom:519.756000px;}
.y5a{bottom:521.732100px;}
.y10{bottom:522.659100px;}
.y35{bottom:523.942050px;}
.y213{bottom:524.832000px;}
.y1f5{bottom:525.184350px;}
.yc2{bottom:525.392100px;}
.y24d{bottom:525.426000px;}
.y341{bottom:527.238150px;}
.y230{bottom:528.934200px;}
.y7d{bottom:529.238100px;}
.y2ab{bottom:531.414000px;}
.y184{bottom:532.044450px;}
.y157{bottom:533.484000px;}
.y131{bottom:533.778000px;}
.y28a{bottom:534.378000px;}
.y2e5{bottom:534.522000px;}
.y311{bottom:534.600000px;}
.y270{bottom:535.098000px;}
.y2ce{bottom:535.488000px;}
.ye6{bottom:536.268000px;}
.y1d2{bottom:541.512000px;}
.yf{bottom:542.159100px;}
.y1a3{bottom:543.106350px;}
.y59{bottom:544.538100px;}
.y340{bottom:545.988150px;}
.y34{bottom:546.298050px;}
.y212{bottom:547.188000px;}
.y1f4{bottom:547.684350px;}
.yc1{bottom:547.892100px;}
.y310{bottom:549.444000px;}
.y10b{bottom:550.002000px;}
.y22f{bottom:550.984200px;}
.y7c{bottom:552.044100px;}
.y9d{bottom:553.308000px;}
.y2aa{bottom:554.220000px;}
.y156{bottom:554.940000px;}
.y130{bottom:555.522000px;}
.y24c{bottom:555.828000px;}
.y289{bottom:557.328000px;}
.y2e4{bottom:557.472000px;}
.ye5{bottom:558.012000px;}
.y26f{bottom:558.048000px;}
.y2cd{bottom:558.438000px;}
.y1b6{bottom:560.674050px;}
.ye{bottom:561.659100px;}
.y1d1{bottom:564.012000px;}
.y30f{bottom:564.300000px;}
.y183{bottom:564.312450px;}
.y33f{bottom:564.738150px;}
.y58{bottom:567.344100px;}
.y33{bottom:568.654050px;}
.y211{bottom:569.544000px;}
.y1f3{bottom:570.184350px;}
.yc0{bottom:570.392100px;}
.y10a{bottom:572.196000px;}
.y22e{bottom:573.034200px;}
.y7b{bottom:574.850100px;}
.y9c{bottom:576.114000px;}
.y155{bottom:576.396000px;}
.y2a9{bottom:577.026000px;}
.y12f{bottom:577.266000px;}
.y24b{bottom:577.734000px;}
.y30e{bottom:579.144000px;}
.y182{bottom:579.312450px;}
.ye4{bottom:579.756000px;}
.y288{bottom:580.278000px;}
.y2e3{bottom:580.422000px;}
.y26e{bottom:580.998000px;}
.yd{bottom:581.159100px;}
.y2cc{bottom:581.388000px;}
.y33e{bottom:583.488150px;}
.y1b5{bottom:583.930050px;}
.y1d0{bottom:586.512000px;}
.y57{bottom:590.150100px;}
.y32{bottom:591.010050px;}
.y210{bottom:591.900000px;}
.y1f2{bottom:592.684350px;}
.ybf{bottom:592.892100px;}
.y30d{bottom:593.988000px;}
.y181{bottom:594.312450px;}
.y109{bottom:594.390000px;}
.y7a{bottom:597.656100px;}
.y154{bottom:597.852000px;}
.y9b{bottom:598.920000px;}
.y12e{bottom:599.010000px;}
.y24a{bottom:599.640000px;}
.y2a8{bottom:599.832000px;}
.yc{bottom:600.659100px;}
.ye3{bottom:601.500000px;}
.y1a2{bottom:601.858350px;}
.y33d{bottom:602.238150px;}
.y287{bottom:603.228000px;}
.y2e2{bottom:603.372000px;}
.y22d{bottom:603.588150px;}
.y26d{bottom:603.948000px;}
.y2cb{bottom:604.338000px;}
.y1b4{bottom:607.186050px;}
.y30c{bottom:608.832000px;}
.y1cf{bottom:609.012000px;}
.y180{bottom:609.312450px;}
.y56{bottom:612.956100px;}
.y31{bottom:613.366050px;}
.y20f{bottom:614.250000px;}
.y1f1{bottom:615.184350px;}
.ybe{bottom:615.392100px;}
.y108{bottom:616.584000px;}
.y153{bottom:619.308000px;}
.y1a1{bottom:619.853850px;}
.yb{bottom:620.159100px;}
.y79{bottom:620.462100px;}
.y12d{bottom:620.916000px;}
.y33c{bottom:620.988150px;}
.y249{bottom:621.546000px;}
.y9a{bottom:621.726000px;}
.y22c{bottom:621.738150px;}
.y2a7{bottom:622.638000px;}
.ye2{bottom:623.250000px;}
.y30b{bottom:623.688000px;}
.y286{bottom:626.178000px;}
.y2e1{bottom:626.322000px;}
.y26c{bottom:626.898000px;}
.y2ca{bottom:627.288000px;}
.y1b3{bottom:630.442050px;}
.y17f{bottom:633.720450px;}
.y30{bottom:635.722050px;}
.y55{bottom:635.762100px;}
.y1f0{bottom:637.684350px;}
.ybd{bottom:637.892100px;}
.y30a{bottom:638.532000px;}
.y107{bottom:638.778000px;}
.ya{bottom:639.659100px;}
.y33b{bottom:639.738150px;}
.y22b{bottom:639.888150px;}
.y1ce{bottom:640.008000px;}
.y152{bottom:640.602000px;}
.y1a0{bottom:642.533850px;}
.y12c{bottom:642.822000px;}
.y78{bottom:643.268100px;}
.y248{bottom:643.452000px;}
.y99{bottom:644.532000px;}
.y2a6{bottom:645.444000px;}
.y285{bottom:649.272000px;}
.y26b{bottom:649.848000px;}
.y2c9{bottom:650.238000px;}
.y309{bottom:653.376000px;}
.y1b2{bottom:653.698050px;}
.y2f{bottom:658.078050px;}
.y33a{bottom:658.488150px;}
.y54{bottom:658.568100px;}
.y20e{bottom:658.878000px;}
.y9{bottom:659.159100px;}
.y1ef{bottom:660.184350px;}
.ybc{bottom:660.392100px;}
.y106{bottom:660.972000px;}
.y151{bottom:661.896000px;}
.y1cd{bottom:662.508000px;}
.y12b{bottom:664.728000px;}
.y247{bottom:665.358000px;}
.y77{bottom:666.074100px;}
.y22a{bottom:666.542100px;}
.ye1{bottom:666.822000px;}
.y98{bottom:667.338000px;}
.y308{bottom:668.220000px;}
.y2a5{bottom:668.250000px;}
.y284{bottom:672.366000px;}
.y26a{bottom:672.798000px;}
.y2c8{bottom:673.188000px;}
.y1b1{bottom:676.954050px;}
.y339{bottom:677.238150px;}
.y17d{bottom:678.294600px;}
.y8{bottom:678.659100px;}
.y2e{bottom:680.434050px;}
.y20d{bottom:681.234000px;}
.y53{bottom:681.374100px;}
.ybb{bottom:682.892100px;}
.y307{bottom:683.064000px;}
.y105{bottom:683.166000px;}
.y150{bottom:683.190000px;}
.y1cc{bottom:685.008000px;}
.y12a{bottom:686.634000px;}
.y246{bottom:687.264000px;}
.ye0{bottom:688.566000px;}
.y76{bottom:688.880100px;}
.y97{bottom:690.144000px;}
.y2a4{bottom:691.056000px;}
.y283{bottom:695.460000px;}
.y269{bottom:695.748000px;}
.y338{bottom:695.988150px;}
.y19f{bottom:696.034350px;}
.y2c7{bottom:696.138000px;}
.y229{bottom:696.946050px;}
.y306{bottom:697.920000px;}
.y1b0{bottom:700.210050px;}
.y1ee{bottom:700.708500px;}
.y17e{bottom:700.830750px;}
.y2d{bottom:702.790050px;}
.y20c{bottom:703.590000px;}
.y52{bottom:704.180100px;}
.y14f{bottom:704.484000px;}
.y104{bottom:705.360000px;}
.y7{bottom:706.664100px;}
.y129{bottom:708.540000px;}
.y245{bottom:709.170000px;}
.ydf{bottom:710.310000px;}
.y75{bottom:711.686100px;}
.y305{bottom:712.764000px;}
.y96{bottom:712.950000px;}
.y2a3{bottom:713.862000px;}
.yba{bottom:713.896050px;}
.y19e{bottom:714.029850px;}
.y337{bottom:714.738150px;}
.y228{bottom:715.096050px;}
.y1cb{bottom:716.004000px;}
.y282{bottom:718.554000px;}
.y268{bottom:718.698000px;}
.y2c6{bottom:719.088000px;}
.y1ed{bottom:719.458500px;}
.y1af{bottom:723.466050px;}
.y2c{bottom:725.146050px;}
.y14e{bottom:725.778000px;}
.y20b{bottom:725.946000px;}
.y51{bottom:726.986100px;}
.y103{bottom:727.554000px;}
.y304{bottom:727.608000px;}
.y128{bottom:730.446000px;}
.y244{bottom:731.076000px;}
.yde{bottom:732.054000px;}
.yb9{bottom:732.496050px;}
.y227{bottom:733.246050px;}
.y336{bottom:733.488150px;}
.y74{bottom:734.492100px;}
.y95{bottom:735.756000px;}
.y2a2{bottom:736.668000px;}
.y1ca{bottom:738.504000px;}
.y267{bottom:741.648000px;}
.y2c5{bottom:742.038000px;}
.y303{bottom:742.452000px;}
.y1ec{bottom:746.443500px;}
.y1ae{bottom:746.722050px;}
.y172{bottom:747.000000px;}
.y14d{bottom:747.072000px;}
.y2b{bottom:747.496050px;}
.y20a{bottom:748.302000px;}
.y102{bottom:749.748000px;}
.y50{bottom:749.792100px;}
.yb8{bottom:751.096050px;}
.y226{bottom:751.396050px;}
.y335{bottom:752.238150px;}
.y127{bottom:752.352000px;}
.y6{bottom:753.300000px;}
.ydd{bottom:753.798000px;}
.y302{bottom:757.296000px;}
.y19d{bottom:757.891350px;}
.y94{bottom:758.562000px;}
.y2a1{bottom:759.474000px;}
.y1c9{bottom:761.004000px;}
.y243{bottom:763.620000px;}
.y266{bottom:764.742000px;}
.y2c4{bottom:764.988000px;}
.y1eb{bottom:765.193500px;}
.y73{bottom:765.796050px;}
.y14c{bottom:768.366000px;}
.y225{bottom:769.546050px;}
.yb7{bottom:769.696050px;}
.y1ad{bottom:769.978050px;}
.y209{bottom:770.658000px;}
.y334{bottom:770.988150px;}
.y101{bottom:771.942000px;}
.y301{bottom:772.152000px;}
.y126{bottom:774.258000px;}
.ydc{bottom:775.542000px;}
.y19c{bottom:775.886850px;}
.y5{bottom:776.550000px;}
.y4f{bottom:781.096050px;}
.y2a0{bottom:782.280000px;}
.y72{bottom:784.846050px;}
.y242{bottom:785.526000px;}
.y300{bottom:786.996000px;}
.y265{bottom:787.836000px;}
.y2c3{bottom:787.938000px;}
.yb6{bottom:788.296050px;}
.y14b{bottom:789.660000px;}
.y333{bottom:789.738150px;}
.y93{bottom:789.864000px;}
.y171{bottom:792.000000px;}
.y1ea{bottom:792.178500px;}
.y2a{bottom:792.196050px;}
.y208{bottom:793.014000px;}
.y1ac{bottom:793.234050px;}
.y100{bottom:794.136000px;}
.y125{bottom:796.164000px;}
.ydb{bottom:797.286000px;}
.y4e{bottom:800.146050px;}
.y2ff{bottom:801.840000px;}
.y71{bottom:803.896050px;}
.y332{bottom:808.488150px;}
.y29{bottom:810.796050px;}
.y2c2{bottom:810.888000px;}
.y264{bottom:810.930000px;}
.y14a{bottom:810.954000px;}
.y92{bottom:812.670000px;}
.y29f{bottom:813.582000px;}
.y170{bottom:814.500000px;}
.yb5{bottom:815.370000px;}
.yff{bottom:816.330000px;}
.y1ab{bottom:816.490050px;}
.y2fe{bottom:816.684000px;}
.y124{bottom:818.070000px;}
.yda{bottom:819.030000px;}
.y1e9{bottom:819.163500px;}
.y4d{bottom:819.196050px;}
.y70{bottom:822.946050px;}
.y331{bottom:827.238150px;}
.y2fd{bottom:831.528000px;}
.y149{bottom:832.248000px;}
.y2c1{bottom:833.838000px;}
.y263{bottom:834.024000px;}
.y91{bottom:835.476000px;}
.y29e{bottom:836.388000px;}
.y16f{bottom:837.000000px;}
.yb4{bottom:837.726000px;}
.y28{bottom:837.900000px;}
.y4c{bottom:838.246050px;}
.yfe{bottom:838.524000px;}
.y1aa{bottom:839.746050px;}
.y123{bottom:839.976000px;}
.yd9{bottom:840.774000px;}
.y6f{bottom:841.996050px;}
.y330{bottom:845.988150px;}
.y4{bottom:846.300000px;}
.y2fc{bottom:846.384000px;}
.y148{bottom:853.542000px;}
.y27{bottom:856.500000px;}
.y2c0{bottom:856.788000px;}
.y262{bottom:857.118000px;}
.y4b{bottom:857.296050px;}
.y90{bottom:858.282000px;}
.y1e8{bottom:858.918000px;}
.y29d{bottom:859.194000px;}
.y16e{bottom:859.500000px;}
.yb3{bottom:860.082000px;}
.yfd{bottom:860.718000px;}
.y6e{bottom:861.046050px;}
.y2fb{bottom:861.228000px;}
.y122{bottom:861.882000px;}
.yd8{bottom:862.518000px;}
.y32f{bottom:864.738150px;}
.y1a9{bottom:871.500000px;}
.y26{bottom:875.100000px;}
.y2fa{bottom:876.072000px;}
.y4a{bottom:876.346050px;}
.y3{bottom:877.050000px;}
.y2bf{bottom:879.738000px;}
.y6d{bottom:880.096050px;}
.y261{bottom:880.212000px;}
.y8f{bottom:881.088000px;}
.y1e7{bottom:881.562000px;}
.y16d{bottom:882.000000px;}
.yb2{bottom:882.438000px;}
.yfc{bottom:882.912000px;}
.y147{bottom:883.350000px;}
.y121{bottom:883.788000px;}
.yd7{bottom:884.262000px;}
.y2f9{bottom:890.928000px;}
.y1a8{bottom:891.000000px;}
.y25{bottom:893.700000px;}
.y32e{bottom:896.244150px;}
.y6c{bottom:899.146050px;}
.y2be{bottom:902.994000px;}
.y260{bottom:903.306000px;}
.y49{bottom:903.894000px;}
.y1e6{bottom:904.206000px;}
.y16c{bottom:904.500000px;}
.yb1{bottom:904.794000px;}
.yfb{bottom:905.106000px;}
.y146{bottom:905.400000px;}
.y120{bottom:905.694000px;}
.y2f8{bottom:905.772000px;}
.yd6{bottom:906.006000px;}
.y1a7{bottom:910.500000px;}
.y24{bottom:912.300000px;}
.y2bd{bottom:926.250000px;}
.y2{bottom:926.400000px;}
.y48{bottom:926.700000px;}
.y1e5{bottom:926.850000px;}
.y16b{bottom:927.000000px;}
.yb0{bottom:927.150000px;}
.yfa{bottom:927.300000px;}
.y145{bottom:927.450000px;}
.y11f{bottom:927.600000px;}
.yd5{bottom:927.750000px;}
.y1a6{bottom:930.000000px;}
.y23{bottom:930.900000px;}
.h11{height:32.250000px;}
.hc{height:33.600000px;}
.h12{height:36.281250px;}
.he{height:37.800000px;}
.h2{height:38.296875px;}
.hf{height:39.072000px;}
.h9{height:39.990234px;}
.h1{height:40.312500px;}
.ha{height:40.693359px;}
.h10{height:40.757812px;}
.h4{height:42.000000px;}
.hd{height:43.956000px;}
.h5{height:47.988281px;}
.h7{height:48.375000px;}
.hb{height:48.840000px;}
.h6{height:50.947266px;}
.h8{height:61.136719px;}
.h3{height:80.625000px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x2{left:67.500000px;}
.x1a{left:73.827750px;}
.xd{left:80.503950px;}
.x8{left:82.381950px;}
.x3{left:97.263750px;}
.xa{left:99.389700px;}
.x1c{left:105.763950px;}
.x6{left:112.620000px;}
.x7{left:127.381950px;}
.x1{left:135.000000px;}
.x5{left:142.263750px;}
.x9{left:144.391950px;}
.xc{left:150.763950px;}
.x15{left:152.217300px;}
.x12{left:186.588300px;}
.x11{left:195.660300px;}
.x10{left:310.585800px;}
.x1b{left:330.462750px;}
.xf{left:354.177300px;}
.x17{left:356.931300px;}
.xe{left:365.811000px;}
.x16{left:380.934300px;}
.x14{left:497.533800px;}
.x13{left:514.678800px;}
.x19{left:542.151300px;}
.x18{left:573.174300px;}
.xb{left:635.390550px;}
.x4{left:645.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-4.266667pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls30{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.832000pt;}
.ls28{letter-spacing:0.896000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.088000pt;}
.lsc{letter-spacing:1.152000pt;}
.ls2b{letter-spacing:1.344000pt;}
.ls29{letter-spacing:1.472000pt;}
.ls2a{letter-spacing:1.536000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls2d{letter-spacing:2.602667pt;}
.ls18{letter-spacing:3.786667pt;}
.ls5{letter-spacing:4.053333pt;}
.ls2e{letter-spacing:4.224000pt;}
.ls6{letter-spacing:4.309333pt;}
.ls31{letter-spacing:7.200000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls25{letter-spacing:9.977600pt;}
.ls24{letter-spacing:336.128000pt;}
.ws6e{word-spacing:-378.794667pt;}
.ws83{word-spacing:-46.464000pt;}
.ws1{word-spacing:-22.506667pt;}
.ws9e{word-spacing:-18.624000pt;}
.ws7f{word-spacing:-18.368000pt;}
.ws90{word-spacing:-17.984000pt;}
.ws0{word-spacing:-16.770667pt;}
.ws74{word-spacing:-16.192000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws8a{word-spacing:-13.173333pt;}
.wsa5{word-spacing:-10.538667pt;}
.ws75{word-spacing:-7.584000pt;}
.ws32{word-spacing:-7.520000pt;}
.wsaa{word-spacing:-7.200000pt;}
.ws76{word-spacing:-7.056000pt;}
.ws6d{word-spacing:-6.698667pt;}
.ws6c{word-spacing:-6.272000pt;}
.wsa6{word-spacing:-4.224000pt;}
.wsb{word-spacing:-4.053333pt;}
.ws43{word-spacing:-1.856000pt;}
.ws44{word-spacing:-1.792000pt;}
.ws80{word-spacing:-1.472000pt;}
.wsa0{word-spacing:-1.344000pt;}
.ws1e{word-spacing:-1.152000pt;}
.ws8e{word-spacing:-0.896000pt;}
.ws3f{word-spacing:-0.704000pt;}
.ws4e{word-spacing:-0.640000pt;}
.ws56{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.533333pt;}
.ws71{word-spacing:-0.512000pt;}
.ws8c{word-spacing:-0.448000pt;}
.ws77{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws3d{word-spacing:-0.256000pt;}
.ws60{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws38{word-spacing:-0.064000pt;}
.wsd{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.064000pt;}
.ws41{word-spacing:0.128000pt;}
.ws54{word-spacing:0.192000pt;}
.ws48{word-spacing:0.256000pt;}
.ws35{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.384000pt;}
.wsa8{word-spacing:0.426667pt;}
.ws4d{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.512000pt;}
.ws45{word-spacing:0.640000pt;}
.ws78{word-spacing:0.704000pt;}
.ws34{word-spacing:0.768000pt;}
.ws95{word-spacing:0.832000pt;}
.ws51{word-spacing:0.960000pt;}
.ws70{word-spacing:1.024000pt;}
.ws6b{word-spacing:1.152000pt;}
.ws6{word-spacing:1.280000pt;}
.ws7e{word-spacing:1.344000pt;}
.ws68{word-spacing:1.472000pt;}
.ws72{word-spacing:1.578667pt;}
.ws8{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.664000pt;}
.ws5b{word-spacing:1.728000pt;}
.ws10{word-spacing:1.760000pt;}
.ws7b{word-spacing:1.776000pt;}
.ws2e{word-spacing:1.792000pt;}
.ws12{word-spacing:1.856000pt;}
.ws7a{word-spacing:1.872000pt;}
.ws17{word-spacing:1.920000pt;}
.ws29{word-spacing:1.984000pt;}
.ws5f{word-spacing:2.048000pt;}
.ws57{word-spacing:2.112000pt;}
.ws6f{word-spacing:2.133333pt;}
.ws11{word-spacing:2.176000pt;}
.ws93{word-spacing:2.240000pt;}
.ws61{word-spacing:2.304000pt;}
.ws40{word-spacing:2.432000pt;}
.ws65{word-spacing:2.496000pt;}
.ws50{word-spacing:2.560000pt;}
.wsa4{word-spacing:2.624000pt;}
.wsa7{word-spacing:2.645333pt;}
.ws81{word-spacing:2.688000pt;}
.ws96{word-spacing:2.752000pt;}
.ws36{word-spacing:2.816000pt;}
.ws3b{word-spacing:2.880000pt;}
.wse{word-spacing:2.944000pt;}
.wsa9{word-spacing:2.986667pt;}
.ws82{word-spacing:3.008000pt;}
.wsc{word-spacing:3.040000pt;}
.ws24{word-spacing:3.072000pt;}
.ws28{word-spacing:3.136000pt;}
.ws3{word-spacing:3.200000pt;}
.ws9b{word-spacing:3.264000pt;}
.ws4{word-spacing:3.306667pt;}
.ws4f{word-spacing:3.392000pt;}
.ws55{word-spacing:3.456000pt;}
.ws9a{word-spacing:3.520000pt;}
.ws52{word-spacing:3.648000pt;}
.ws63{word-spacing:3.712000pt;}
.wsa{word-spacing:3.733333pt;}
.ws92{word-spacing:3.776000pt;}
.ws46{word-spacing:3.840000pt;}
.ws13{word-spacing:3.904000pt;}
.ws9{word-spacing:3.968000pt;}
.ws47{word-spacing:4.032000pt;}
.ws1f{word-spacing:4.096000pt;}
.ws2b{word-spacing:4.224000pt;}
.ws1b{word-spacing:4.288000pt;}
.ws79{word-spacing:4.352000pt;}
.ws2a{word-spacing:4.416000pt;}
.ws16{word-spacing:4.480000pt;}
.ws5e{word-spacing:4.544000pt;}
.ws98{word-spacing:4.608000pt;}
.ws15{word-spacing:4.672000pt;}
.ws64{word-spacing:4.736000pt;}
.ws8b{word-spacing:4.864000pt;}
.ws89{word-spacing:4.928000pt;}
.ws53{word-spacing:4.992000pt;}
.ws25{word-spacing:5.056000pt;}
.ws22{word-spacing:5.120000pt;}
.ws21{word-spacing:5.184000pt;}
.ws19{word-spacing:5.312000pt;}
.ws2d{word-spacing:5.440000pt;}
.ws2f{word-spacing:5.504000pt;}
.ws88{word-spacing:5.568000pt;}
.ws58{word-spacing:5.632000pt;}
.ws8d{word-spacing:5.696000pt;}
.ws9f{word-spacing:5.760000pt;}
.ws18{word-spacing:5.824000pt;}
.ws87{word-spacing:5.888000pt;}
.ws5d{word-spacing:5.952000pt;}
.ws97{word-spacing:6.016000pt;}
.ws85{word-spacing:6.144000pt;}
.ws69{word-spacing:6.208000pt;}
.ws4b{word-spacing:6.272000pt;}
.ws67{word-spacing:6.336000pt;}
.ws66{word-spacing:6.464000pt;}
.ws5a{word-spacing:6.528000pt;}
.ws42{word-spacing:6.592000pt;}
.wsa1{word-spacing:6.656000pt;}
.wsa3{word-spacing:6.784000pt;}
.ws3c{word-spacing:6.848000pt;}
.ws7d{word-spacing:6.912000pt;}
.ws9c{word-spacing:7.040000pt;}
.ws94{word-spacing:7.104000pt;}
.ws37{word-spacing:7.168000pt;}
.ws91{word-spacing:7.360000pt;}
.ws99{word-spacing:7.424000pt;}
.ws33{word-spacing:7.445333pt;}
.ws7{word-spacing:7.466667pt;}
.ws8f{word-spacing:7.488000pt;}
.ws49{word-spacing:7.552000pt;}
.ws5c{word-spacing:7.616000pt;}
.ws14{word-spacing:7.680000pt;}
.wsa2{word-spacing:7.744000pt;}
.ws3e{word-spacing:7.936000pt;}
.ws27{word-spacing:8.000000pt;}
.ws59{word-spacing:8.128000pt;}
.ws39{word-spacing:8.256000pt;}
.ws84{word-spacing:8.320000pt;}
.ws62{word-spacing:8.384000pt;}
.ws31{word-spacing:8.448000pt;}
.ws23{word-spacing:8.576000pt;}
.ws86{word-spacing:8.640000pt;}
.ws26{word-spacing:8.704000pt;}
.ws4a{word-spacing:8.768000pt;}
.ws20{word-spacing:8.960000pt;}
.ws1a{word-spacing:9.024000pt;}
.ws9d{word-spacing:9.088000pt;}
.ws73{word-spacing:9.301333pt;}
.ws30{word-spacing:9.856000pt;}
.ws7c{word-spacing:208.032000pt;}
._3{margin-left:-1592.832000pt;}
._13{margin-left:-1591.909333pt;}
._b{margin-left:-835.900267pt;}
._35{margin-left:-304.000000pt;}
._18{margin-left:-13.209600pt;}
._14{margin-left:-11.722667pt;}
._5{margin-left:-10.602667pt;}
._3d{margin-left:-9.549067pt;}
._10{margin-left:-8.615733pt;}
._e{margin-left:-7.696000pt;}
._1{margin-left:-5.989333pt;}
._8{margin-left:-4.730667pt;}
._2{margin-left:-3.541333pt;}
._9{margin-left:-2.506667pt;}
._0{margin-left:-1.584000pt;}
._4{width:1.545333pt;}
._c{width:2.441067pt;}
._6{width:3.338667pt;}
._a{width:4.933600pt;}
._7{width:6.208000pt;}
._12{width:7.488533pt;}
._d{width:8.530933pt;}
._f{width:9.774133pt;}
._11{width:11.552000pt;}
._22{width:12.970667pt;}
._27{width:14.336000pt;}
._17{width:15.232000pt;}
._16{width:17.036800pt;}
._24{width:18.304000pt;}
._15{width:19.520000pt;}
._2c{width:20.821333pt;}
._26{width:30.634667pt;}
._2b{width:35.968000pt;}
._45{width:41.158133pt;}
._37{width:49.344000pt;}
._1c{width:54.528000pt;}
._46{width:59.230133pt;}
._44{width:60.892533pt;}
._20{width:64.554667pt;}
._19{width:70.960000pt;}
._1b{width:76.714667pt;}
._3c{width:78.840267pt;}
._1e{width:83.836000pt;}
._2a{width:86.146400pt;}
._23{width:87.045333pt;}
._3a{width:88.704000pt;}
._33{width:91.824000pt;}
._2e{width:96.213333pt;}
._21{width:102.908000pt;}
._1a{width:106.154667pt;}
._30{width:108.074667pt;}
._28{width:113.541333pt;}
._1d{width:121.648000pt;}
._1f{width:130.864000pt;}
._2f{width:140.416000pt;}
._25{width:147.873333pt;}
._34{width:161.578667pt;}
._43{width:168.001067pt;}
._31{width:179.968000pt;}
._32{width:191.786667pt;}
._42{width:195.786667pt;}
._38{width:241.573333pt;}
._39{width:254.448000pt;}
._40{width:266.613333pt;}
._29{width:270.634667pt;}
._3e{width:313.813333pt;}
._36{width:325.333333pt;}
._41{width:329.922400pt;}
._2d{width:334.634667pt;}
._3b{width:428.234667pt;}
._3f{width:617.821333pt;}
.fs4{font-size:42.666667pt;}
.fs5{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;}
.y1{bottom:64.000000pt;}
.y8e{bottom:105.665867pt;}
.y32d{bottom:105.685333pt;}
.y1c8{bottom:105.694267pt;}
.y224{bottom:105.781333pt;}
.y22{bottom:105.908800pt;}
.yaf{bottom:105.948533pt;}
.y16a{bottom:106.000000pt;}
.y2e0{bottom:106.122933pt;}
.y1e4{bottom:106.240000pt;}
.y11e{bottom:106.490667pt;}
.y144{bottom:106.517333pt;}
.yd4{bottom:106.665067pt;}
.y19b{bottom:106.841733pt;}
.y25f{bottom:106.912400pt;}
.y17c{bottom:107.307067pt;}
.y207{bottom:107.374533pt;}
.y29c{bottom:107.418667pt;}
.y2bc{bottom:107.603600pt;}
.y47{bottom:107.902267pt;}
.y2f7{bottom:107.930667pt;}
.y6b{bottom:108.122800pt;}
.y281{bottom:108.144000pt;}
.yf9{bottom:108.778667pt;}
.y241{bottom:112.469200pt;}
.y32c{bottom:118.880000pt;}
.yae{bottom:122.881867pt;}
.y25e{bottom:123.179067pt;}
.y21{bottom:123.242133pt;}
.y169{bottom:124.928000pt;}
.y6a{bottom:125.056133pt;}
.y223{bottom:125.781333pt;}
.y8d{bottom:125.937867pt;}
.y143{bottom:125.989333pt;}
.y11d{bottom:126.218667pt;}
.y1e3{bottom:126.240000pt;}
.y1c7{bottom:126.366267pt;}
.y2df{bottom:126.522933pt;}
.yd3{bottom:126.537067pt;}
.y19a{bottom:126.841733pt;}
.y206{bottom:127.102533pt;}
.y17b{bottom:127.307067pt;}
.y2bb{bottom:127.875600pt;}
.y46{bottom:127.902267pt;}
.y29b{bottom:127.946667pt;}
.y280{bottom:128.144000pt;}
.y2f6{bottom:128.330667pt;}
.yf8{bottom:128.778667pt;}
.y32b{bottom:132.085333pt;}
.y240{bottom:136.455867pt;}
.y20{bottom:140.575467pt;}
.y69{bottom:141.989467pt;}
.y168{bottom:143.856000pt;}
.y32a{bottom:145.280000pt;}
.y142{bottom:145.461333pt;}
.y222{bottom:145.781333pt;}
.y11c{bottom:145.946667pt;}
.y8c{bottom:146.209867pt;}
.y1e2{bottom:146.240000pt;}
.yd2{bottom:146.409067pt;}
.y205{bottom:146.830533pt;}
.y199{bottom:146.841733pt;}
.y25d{bottom:147.004667pt;}
.y1c6{bottom:147.038267pt;}
.yad{bottom:147.304933pt;}
.y17a{bottom:147.307067pt;}
.y45{bottom:147.774267pt;}
.yf7{bottom:148.106667pt;}
.y2ba{bottom:148.147600pt;}
.y29a{bottom:148.474667pt;}
.y27f{bottom:148.672000pt;}
.y2f5{bottom:148.730667pt;}
.y2de{bottom:154.481867pt;}
.y1f{bottom:157.908800pt;}
.y329{bottom:158.485333pt;}
.y68{bottom:158.922800pt;}
.y23f{bottom:160.442533pt;}
.y167{bottom:162.784000pt;}
.y141{bottom:164.933333pt;}
.y221{bottom:165.653333pt;}
.y11b{bottom:165.674667pt;}
.y1e1{bottom:166.240000pt;}
.yd1{bottom:166.281067pt;}
.y8b{bottom:166.481867pt;}
.y25c{bottom:166.604667pt;}
.y204{bottom:166.830533pt;}
.y198{bottom:166.841733pt;}
.y179{bottom:167.307067pt;}
.yf6{bottom:167.434667pt;}
.yac{bottom:167.576933pt;}
.y44{bottom:167.646267pt;}
.y1c5{bottom:167.710267pt;}
.y2b9{bottom:168.419600pt;}
.y299{bottom:169.002667pt;}
.y2f4{bottom:169.130667pt;}
.y27e{bottom:169.200000pt;}
.y2dd{bottom:171.548533pt;}
.y328{bottom:171.680000pt;}
.y1e{bottom:175.242133pt;}
.y67{bottom:175.856133pt;}
.y166{bottom:181.712000pt;}
.y140{bottom:184.405333pt;}
.y327{bottom:184.874667pt;}
.y11a{bottom:185.402667pt;}
.yd0{bottom:186.153067pt;}
.y25b{bottom:186.204667pt;}
.y1e0{bottom:186.240000pt;}
.y8a{bottom:186.748533pt;}
.yf5{bottom:186.762667pt;}
.y203{bottom:186.830533pt;}
.y197{bottom:186.841733pt;}
.y178{bottom:187.307067pt;}
.y43{bottom:187.518267pt;}
.yab{bottom:187.848933pt;}
.y1c4{bottom:188.382267pt;}
.y2dc{bottom:188.615200pt;}
.y2b8{bottom:188.691600pt;}
.y298{bottom:189.402667pt;}
.y2f3{bottom:189.530667pt;}
.y27d{bottom:189.733333pt;}
.y1d{bottom:192.575467pt;}
.y220{bottom:193.077333pt;}
.y23e{bottom:195.763733pt;}
.y326{bottom:198.069333pt;}
.y66{bottom:200.332533pt;}
.y165{bottom:200.640000pt;}
.y13f{bottom:203.877333pt;}
.y119{bottom:205.130667pt;}
.y2db{bottom:205.681867pt;}
.y25a{bottom:205.804667pt;}
.ycf{bottom:206.025067pt;}
.yf4{bottom:206.090667pt;}
.y1df{bottom:206.240000pt;}
.y202{bottom:206.830533pt;}
.y196{bottom:206.841733pt;}
.y177{bottom:207.307067pt;}
.y42{bottom:207.390267pt;}
.yaa{bottom:208.120933pt;}
.y2b7{bottom:208.963600pt;}
.y1c3{bottom:209.054267pt;}
.y297{bottom:209.802667pt;}
.y1c{bottom:209.908800pt;}
.y2f2{bottom:209.930667pt;}
.y325{bottom:211.264000pt;}
.y21f{bottom:212.949333pt;}
.y23d{bottom:215.363733pt;}
.y164{bottom:219.568000pt;}
.y65{bottom:220.604533pt;}
.y2da{bottom:222.748533pt;}
.y13e{bottom:223.205333pt;}
.y324{bottom:224.458667pt;}
.y118{bottom:224.858667pt;}
.yf3{bottom:225.418667pt;}
.yce{bottom:225.897067pt;}
.y1de{bottom:226.240000pt;}
.y201{bottom:226.830533pt;}
.y195{bottom:226.841733pt;}
.y89{bottom:227.169867pt;}
.y1b{bottom:227.242133pt;}
.y41{bottom:227.262267pt;}
.y176{bottom:227.307067pt;}
.ya9{bottom:228.392933pt;}
.y2b6{bottom:229.235600pt;}
.y1c2{bottom:229.726267pt;}
.y296{bottom:230.202667pt;}
.y2f1{bottom:230.330667pt;}
.y27c{bottom:230.842667pt;}
.y21e{bottom:232.821333pt;}
.y259{bottom:232.963733pt;}
.y23c{bottom:234.963733pt;}
.y323{bottom:237.664000pt;}
.y163{bottom:238.496000pt;}
.y2d9{bottom:239.815200pt;}
.y64{bottom:240.876533pt;}
.y13d{bottom:242.533333pt;}
.y1a{bottom:244.575467pt;}
.y117{bottom:244.586667pt;}
.yf2{bottom:244.746667pt;}
.y1dd{bottom:246.240000pt;}
.y200{bottom:246.830533pt;}
.y40{bottom:247.134267pt;}
.y175{bottom:247.307067pt;}
.y88{bottom:247.441867pt;}
.ya8{bottom:248.664933pt;}
.y258{bottom:249.230400pt;}
.y2b5{bottom:249.507600pt;}
.y1c1{bottom:250.398267pt;}
.y295{bottom:250.602667pt;}
.y2f0{bottom:250.730667pt;}
.y322{bottom:250.858667pt;}
.y27b{bottom:251.242667pt;}
.ycd{bottom:253.322800pt;}
.y194{bottom:254.393733pt;}
.y23b{bottom:254.563733pt;}
.y34c{bottom:255.322800pt;}
.y162{bottom:257.424000pt;}
.y21d{bottom:260.245333pt;}
.y63{bottom:261.148533pt;}
.y13c{bottom:261.861333pt;}
.y321{bottom:264.053333pt;}
.yf1{bottom:264.074667pt;}
.y116{bottom:264.314667pt;}
.y2d8{bottom:264.437333pt;}
.y257{bottom:265.497067pt;}
.y1dc{bottom:266.240000pt;}
.y1ff{bottom:266.830533pt;}
.y3f{bottom:267.006267pt;}
.y174{bottom:267.307067pt;}
.y87{bottom:267.713867pt;}
.ya7{bottom:268.936933pt;}
.y19{bottom:269.468800pt;}
.y2b4{bottom:269.774267pt;}
.ycc{bottom:269.856133pt;}
.y294{bottom:271.002667pt;}
.y1c0{bottom:271.070267pt;}
.y2ef{bottom:271.130667pt;}
.y27a{bottom:271.642667pt;}
.y34b{bottom:271.989467pt;}
.y23a{bottom:274.163733pt;}
.y193{bottom:274.393733pt;}
.y161{bottom:276.352000pt;}
.y320{bottom:277.248000pt;}
.y21c{bottom:280.117333pt;}
.y13b{bottom:281.189333pt;}
.y62{bottom:281.415200pt;}
.y256{bottom:281.763733pt;}
.yf0{bottom:283.402667pt;}
.y115{bottom:284.042667pt;}
.y2d7{bottom:284.837333pt;}
.y1db{bottom:286.240000pt;}
.ycb{bottom:286.389467pt;}
.y1fe{bottom:286.830533pt;}
.y3e{bottom:286.878267pt;}
.y173{bottom:287.307067pt;}
.y86{bottom:287.985867pt;}
.y34a{bottom:288.656133pt;}
.ya6{bottom:289.208933pt;}
.y31f{bottom:290.442667pt;}
.y293{bottom:291.402667pt;}
.y2ee{bottom:291.530667pt;}
.y1bf{bottom:291.742267pt;}
.y279{bottom:292.042667pt;}
.y239{bottom:293.763733pt;}
.y192{bottom:294.393733pt;}
.y160{bottom:295.280000pt;}
.y21b{bottom:299.989333pt;}
.y13a{bottom:300.517333pt;}
.yef{bottom:302.730667pt;}
.yca{bottom:302.922800pt;}
.y31e{bottom:303.648000pt;}
.y114{bottom:303.770667pt;}
.y2d6{bottom:305.237333pt;}
.y349{bottom:305.322800pt;}
.y255{bottom:305.589467pt;}
.y1da{bottom:306.240000pt;}
.y3d{bottom:306.750267pt;}
.y1fd{bottom:306.830533pt;}
.y85{bottom:308.257867pt;}
.ya5{bottom:309.480933pt;}
.y2b3{bottom:310.192000pt;}
.y18{bottom:310.802133pt;}
.y292{bottom:311.802667pt;}
.y2ed{bottom:311.930667pt;}
.y1be{bottom:312.414267pt;}
.y278{bottom:312.442667pt;}
.y238{bottom:313.363733pt;}
.y15f{bottom:314.208000pt;}
.y191{bottom:314.393733pt;}
.y31d{bottom:316.842667pt;}
.y139{bottom:319.845333pt;}
.y61{bottom:321.857867pt;}
.yee{bottom:322.058667pt;}
.y113{bottom:323.498667pt;}
.y254{bottom:325.189467pt;}
.y2d5{bottom:325.637333pt;}
.y3c{bottom:326.622267pt;}
.y1fc{bottom:326.830533pt;}
.yc9{bottom:327.015200pt;}
.y21a{bottom:327.413333pt;}
.y17{bottom:328.135467pt;}
.y84{bottom:328.529867pt;}
.ya4{bottom:329.752933pt;}
.y31c{bottom:330.037333pt;}
.y2b2{bottom:330.464000pt;}
.y348{bottom:331.989467pt;}
.y18e{bottom:332.032400pt;}
.y291{bottom:332.202667pt;}
.y2ec{bottom:332.330667pt;}
.y277{bottom:332.842667pt;}
.y237{bottom:332.963733pt;}
.y1bd{bottom:333.086267pt;}
.y1d9{bottom:333.792000pt;}
.y190{bottom:334.393733pt;}
.y138{bottom:339.173333pt;}
.y15e{bottom:340.704000pt;}
.yed{bottom:341.386667pt;}
.y60{bottom:342.129867pt;}
.y112{bottom:343.226667pt;}
.y31b{bottom:343.232000pt;}
.y253{bottom:344.789467pt;}
.y18d{bottom:345.365733pt;}
.y2d4{bottom:346.037333pt;}
.y3b{bottom:346.494267pt;}
.y1fb{bottom:346.830533pt;}
.yc8{bottom:347.015200pt;}
.y219{bottom:347.285333pt;}
.y83{bottom:348.801867pt;}
.ya3{bottom:350.024933pt;}
.y2b1{bottom:350.736000pt;}
.y236{bottom:352.563733pt;}
.y290{bottom:352.602667pt;}
.y2eb{bottom:352.730667pt;}
.y16{bottom:353.025867pt;}
.y276{bottom:353.242667pt;}
.y1bc{bottom:353.758267pt;}
.y1d8{bottom:353.792000pt;}
.y18f{bottom:354.393733pt;}
.y31a{bottom:356.426667pt;}
.y137{bottom:358.501333pt;}
.y18c{bottom:358.699067pt;}
.y15d{bottom:359.776000pt;}
.yec{bottom:360.714667pt;}
.y5f{bottom:362.401867pt;}
.y111{bottom:362.954667pt;}
.y252{bottom:364.389467pt;}
.y3a{bottom:366.366267pt;}
.y2d3{bottom:366.437333pt;}
.y1fa{bottom:366.830533pt;}
.yc7{bottom:367.015200pt;}
.y218{bottom:367.157333pt;}
.y347{bottom:368.656133pt;}
.y82{bottom:369.073867pt;}
.y319{bottom:369.632000pt;}
.ya2{bottom:370.296933pt;}
.y15{bottom:370.359200pt;}
.y2b0{bottom:371.008000pt;}
.y18b{bottom:372.032400pt;}
.y235{bottom:372.163733pt;}
.y28f{bottom:373.002667pt;}
.y2ea{bottom:373.130667pt;}
.y275{bottom:373.642667pt;}
.y1d7{bottom:373.792000pt;}
.y1bb{bottom:374.430267pt;}
.y136{bottom:377.829333pt;}
.y15c{bottom:378.848000pt;}
.yeb{bottom:380.042667pt;}
.y5e{bottom:382.673867pt;}
.y110{bottom:382.682667pt;}
.y318{bottom:382.826667pt;}
.y251{bottom:383.989467pt;}
.y346{bottom:385.322800pt;}
.y18a{bottom:385.365733pt;}
.y39{bottom:386.238267pt;}
.y1f9{bottom:386.830533pt;}
.y2d2{bottom:386.837333pt;}
.yc6{bottom:387.015200pt;}
.y217{bottom:387.029333pt;}
.y14{bottom:387.692533pt;}
.y81{bottom:389.345867pt;}
.ya1{bottom:390.568933pt;}
.y2af{bottom:391.280000pt;}
.y234{bottom:391.763733pt;}
.y28e{bottom:393.402667pt;}
.y2e9{bottom:393.530667pt;}
.y1d6{bottom:393.792000pt;}
.y274{bottom:394.042667pt;}
.y1ba{bottom:395.102267pt;}
.y317{bottom:396.021333pt;}
.y135{bottom:397.157333pt;}
.y15b{bottom:397.920000pt;}
.y189{bottom:398.699067pt;}
.yea{bottom:399.370667pt;}
.y345{bottom:401.989467pt;}
.y10f{bottom:402.410667pt;}
.y1a5{bottom:402.493200pt;}
.y5d{bottom:402.945867pt;}
.y13{bottom:405.025867pt;}
.y38{bottom:406.110267pt;}
.y1f8{bottom:406.830533pt;}
.y216{bottom:406.901333pt;}
.yc5{bottom:407.015200pt;}
.y316{bottom:409.216000pt;}
.y80{bottom:409.617867pt;}
.ya0{bottom:410.840933pt;}
.y250{bottom:411.148533pt;}
.y233{bottom:411.363733pt;}
.y2ae{bottom:411.552000pt;}
.y188{bottom:412.032400pt;}
.y1d5{bottom:413.792000pt;}
.y28d{bottom:413.802667pt;}
.y2e8{bottom:413.930667pt;}
.y273{bottom:414.442667pt;}
.y2d1{bottom:414.789333pt;}
.y1b9{bottom:415.774267pt;}
.y134{bottom:416.485333pt;}
.y15a{bottom:416.992000pt;}
.y344{bottom:418.656133pt;}
.ye9{bottom:418.698667pt;}
.y10e{bottom:422.138667pt;}
.y12{bottom:422.359200pt;}
.y315{bottom:422.410667pt;}
.y5c{bottom:423.217867pt;}
.y187{bottom:425.365733pt;}
.y37{bottom:425.982267pt;}
.y215{bottom:426.773333pt;}
.y1f7{bottom:426.830533pt;}
.yc4{bottom:427.015200pt;}
.y24f{bottom:427.281867pt;}
.y7f{bottom:429.889867pt;}
.y232{bottom:430.963733pt;}
.y9f{bottom:431.107600pt;}
.y2ad{bottom:431.824000pt;}
.y1d4{bottom:433.792000pt;}
.y28c{bottom:434.202667pt;}
.y2e7{bottom:434.330667pt;}
.y272{bottom:434.842667pt;}
.y2d0{bottom:435.189333pt;}
.y343{bottom:435.322800pt;}
.y314{bottom:435.616000pt;}
.y133{bottom:435.813333pt;}
.y159{bottom:436.064000pt;}
.y1b8{bottom:436.440933pt;}
.ye8{bottom:438.026667pt;}
.y186{bottom:438.699067pt;}
.y11{bottom:439.692533pt;}
.y10d{bottom:441.866667pt;}
.y24e{bottom:443.415200pt;}
.y5b{bottom:443.489867pt;}
.y36{bottom:445.854267pt;}
.y214{bottom:446.645333pt;}
.y1f6{bottom:446.830533pt;}
.yc3{bottom:447.015200pt;}
.y313{bottom:448.810667pt;}
.y1a4{bottom:449.497200pt;}
.y7e{bottom:450.161867pt;}
.y231{bottom:450.563733pt;}
.y9e{bottom:451.374267pt;}
.y342{bottom:451.989467pt;}
.y185{bottom:452.032400pt;}
.y2ac{bottom:452.096000pt;}
.y1d3{bottom:453.792000pt;}
.y28b{bottom:454.602667pt;}
.y2e6{bottom:454.730667pt;}
.y158{bottom:455.136000pt;}
.y132{bottom:455.141333pt;}
.y271{bottom:455.242667pt;}
.y2cf{bottom:455.589333pt;}
.y1b7{bottom:457.107600pt;}
.ye7{bottom:457.354667pt;}
.y10c{bottom:461.594667pt;}
.y312{bottom:462.005333pt;}
.y5a{bottom:463.761867pt;}
.y10{bottom:464.585867pt;}
.y35{bottom:465.726267pt;}
.y213{bottom:466.517333pt;}
.y1f5{bottom:466.830533pt;}
.yc2{bottom:467.015200pt;}
.y24d{bottom:467.045333pt;}
.y341{bottom:468.656133pt;}
.y230{bottom:470.163733pt;}
.y7d{bottom:470.433867pt;}
.y2ab{bottom:472.368000pt;}
.y184{bottom:472.928400pt;}
.y157{bottom:474.208000pt;}
.y131{bottom:474.469333pt;}
.y28a{bottom:475.002667pt;}
.y2e5{bottom:475.130667pt;}
.y311{bottom:475.200000pt;}
.y270{bottom:475.642667pt;}
.y2ce{bottom:475.989333pt;}
.ye6{bottom:476.682667pt;}
.y1d2{bottom:481.344000pt;}
.yf{bottom:481.919200pt;}
.y1a3{bottom:482.761200pt;}
.y59{bottom:484.033867pt;}
.y340{bottom:485.322800pt;}
.y34{bottom:485.598267pt;}
.y212{bottom:486.389333pt;}
.y1f4{bottom:486.830533pt;}
.yc1{bottom:487.015200pt;}
.y310{bottom:488.394667pt;}
.y10b{bottom:488.890667pt;}
.y22f{bottom:489.763733pt;}
.y7c{bottom:490.705867pt;}
.y9d{bottom:491.829333pt;}
.y2aa{bottom:492.640000pt;}
.y156{bottom:493.280000pt;}
.y130{bottom:493.797333pt;}
.y24c{bottom:494.069333pt;}
.y289{bottom:495.402667pt;}
.y2e4{bottom:495.530667pt;}
.ye5{bottom:496.010667pt;}
.y26f{bottom:496.042667pt;}
.y2cd{bottom:496.389333pt;}
.y1b6{bottom:498.376933pt;}
.ye{bottom:499.252533pt;}
.y1d1{bottom:501.344000pt;}
.y30f{bottom:501.600000pt;}
.y183{bottom:501.611067pt;}
.y33f{bottom:501.989467pt;}
.y58{bottom:504.305867pt;}
.y33{bottom:505.470267pt;}
.y211{bottom:506.261333pt;}
.y1f3{bottom:506.830533pt;}
.yc0{bottom:507.015200pt;}
.y10a{bottom:508.618667pt;}
.y22e{bottom:509.363733pt;}
.y7b{bottom:510.977867pt;}
.y9c{bottom:512.101333pt;}
.y155{bottom:512.352000pt;}
.y2a9{bottom:512.912000pt;}
.y12f{bottom:513.125333pt;}
.y24b{bottom:513.541333pt;}
.y30e{bottom:514.794667pt;}
.y182{bottom:514.944400pt;}
.ye4{bottom:515.338667pt;}
.y288{bottom:515.802667pt;}
.y2e3{bottom:515.930667pt;}
.y26e{bottom:516.442667pt;}
.yd{bottom:516.585867pt;}
.y2cc{bottom:516.789333pt;}
.y33e{bottom:518.656133pt;}
.y1b5{bottom:519.048933pt;}
.y1d0{bottom:521.344000pt;}
.y57{bottom:524.577867pt;}
.y32{bottom:525.342267pt;}
.y210{bottom:526.133333pt;}
.y1f2{bottom:526.830533pt;}
.ybf{bottom:527.015200pt;}
.y30d{bottom:527.989333pt;}
.y181{bottom:528.277733pt;}
.y109{bottom:528.346667pt;}
.y7a{bottom:531.249867pt;}
.y154{bottom:531.424000pt;}
.y9b{bottom:532.373333pt;}
.y12e{bottom:532.453333pt;}
.y24a{bottom:533.013333pt;}
.y2a8{bottom:533.184000pt;}
.yc{bottom:533.919200pt;}
.ye3{bottom:534.666667pt;}
.y1a2{bottom:534.985200pt;}
.y33d{bottom:535.322800pt;}
.y287{bottom:536.202667pt;}
.y2e2{bottom:536.330667pt;}
.y22d{bottom:536.522800pt;}
.y26d{bottom:536.842667pt;}
.y2cb{bottom:537.189333pt;}
.y1b4{bottom:539.720933pt;}
.y30c{bottom:541.184000pt;}
.y1cf{bottom:541.344000pt;}
.y180{bottom:541.611067pt;}
.y56{bottom:544.849867pt;}
.y31{bottom:545.214267pt;}
.y20f{bottom:546.000000pt;}
.y1f1{bottom:546.830533pt;}
.ybe{bottom:547.015200pt;}
.y108{bottom:548.074667pt;}
.y153{bottom:550.496000pt;}
.y1a1{bottom:550.981200pt;}
.yb{bottom:551.252533pt;}
.y79{bottom:551.521867pt;}
.y12d{bottom:551.925333pt;}
.y33c{bottom:551.989467pt;}
.y249{bottom:552.485333pt;}
.y9a{bottom:552.645333pt;}
.y22c{bottom:552.656133pt;}
.y2a7{bottom:553.456000pt;}
.ye2{bottom:554.000000pt;}
.y30b{bottom:554.389333pt;}
.y286{bottom:556.602667pt;}
.y2e1{bottom:556.730667pt;}
.y26c{bottom:557.242667pt;}
.y2ca{bottom:557.589333pt;}
.y1b3{bottom:560.392933pt;}
.y17f{bottom:563.307067pt;}
.y30{bottom:565.086267pt;}
.y55{bottom:565.121867pt;}
.y1f0{bottom:566.830533pt;}
.ybd{bottom:567.015200pt;}
.y30a{bottom:567.584000pt;}
.y107{bottom:567.802667pt;}
.ya{bottom:568.585867pt;}
.y33b{bottom:568.656133pt;}
.y22b{bottom:568.789467pt;}
.y1ce{bottom:568.896000pt;}
.y152{bottom:569.424000pt;}
.y1a0{bottom:571.141200pt;}
.y12c{bottom:571.397333pt;}
.y78{bottom:571.793867pt;}
.y248{bottom:571.957333pt;}
.y99{bottom:572.917333pt;}
.y2a6{bottom:573.728000pt;}
.y285{bottom:577.130667pt;}
.y26b{bottom:577.642667pt;}
.y2c9{bottom:577.989333pt;}
.y309{bottom:580.778667pt;}
.y1b2{bottom:581.064933pt;}
.y2f{bottom:584.958267pt;}
.y33a{bottom:585.322800pt;}
.y54{bottom:585.393867pt;}
.y20e{bottom:585.669333pt;}
.y9{bottom:585.919200pt;}
.y1ef{bottom:586.830533pt;}
.ybc{bottom:587.015200pt;}
.y106{bottom:587.530667pt;}
.y151{bottom:588.352000pt;}
.y1cd{bottom:588.896000pt;}
.y12b{bottom:590.869333pt;}
.y247{bottom:591.429333pt;}
.y77{bottom:592.065867pt;}
.y22a{bottom:592.481867pt;}
.ye1{bottom:592.730667pt;}
.y98{bottom:593.189333pt;}
.y308{bottom:593.973333pt;}
.y2a5{bottom:594.000000pt;}
.y284{bottom:597.658667pt;}
.y26a{bottom:598.042667pt;}
.y2c8{bottom:598.389333pt;}
.y1b1{bottom:601.736933pt;}
.y339{bottom:601.989467pt;}
.y17d{bottom:602.928533pt;}
.y8{bottom:603.252533pt;}
.y2e{bottom:604.830267pt;}
.y20d{bottom:605.541333pt;}
.y53{bottom:605.665867pt;}
.ybb{bottom:607.015200pt;}
.y307{bottom:607.168000pt;}
.y105{bottom:607.258667pt;}
.y150{bottom:607.280000pt;}
.y1cc{bottom:608.896000pt;}
.y12a{bottom:610.341333pt;}
.y246{bottom:610.901333pt;}
.ye0{bottom:612.058667pt;}
.y76{bottom:612.337867pt;}
.y97{bottom:613.461333pt;}
.y2a4{bottom:614.272000pt;}
.y283{bottom:618.186667pt;}
.y269{bottom:618.442667pt;}
.y338{bottom:618.656133pt;}
.y19f{bottom:618.697200pt;}
.y2c7{bottom:618.789333pt;}
.y229{bottom:619.507600pt;}
.y306{bottom:620.373333pt;}
.y1b0{bottom:622.408933pt;}
.y1ee{bottom:622.852000pt;}
.y17e{bottom:622.960667pt;}
.y2d{bottom:624.702267pt;}
.y20c{bottom:625.413333pt;}
.y52{bottom:625.937867pt;}
.y14f{bottom:626.208000pt;}
.y104{bottom:626.986667pt;}
.y7{bottom:628.145867pt;}
.y129{bottom:629.813333pt;}
.y245{bottom:630.373333pt;}
.ydf{bottom:631.386667pt;}
.y75{bottom:632.609867pt;}
.y305{bottom:633.568000pt;}
.y96{bottom:633.733333pt;}
.y2a3{bottom:634.544000pt;}
.yba{bottom:634.574267pt;}
.y19e{bottom:634.693200pt;}
.y337{bottom:635.322800pt;}
.y228{bottom:635.640933pt;}
.y1cb{bottom:636.448000pt;}
.y282{bottom:638.714667pt;}
.y268{bottom:638.842667pt;}
.y2c6{bottom:639.189333pt;}
.y1ed{bottom:639.518667pt;}
.y1af{bottom:643.080933pt;}
.y2c{bottom:644.574267pt;}
.y14e{bottom:645.136000pt;}
.y20b{bottom:645.285333pt;}
.y51{bottom:646.209867pt;}
.y103{bottom:646.714667pt;}
.y304{bottom:646.762667pt;}
.y128{bottom:649.285333pt;}
.y244{bottom:649.845333pt;}
.yde{bottom:650.714667pt;}
.yb9{bottom:651.107600pt;}
.y227{bottom:651.774267pt;}
.y336{bottom:651.989467pt;}
.y74{bottom:652.881867pt;}
.y95{bottom:654.005333pt;}
.y2a2{bottom:654.816000pt;}
.y1ca{bottom:656.448000pt;}
.y267{bottom:659.242667pt;}
.y2c5{bottom:659.589333pt;}
.y303{bottom:659.957333pt;}
.y1ec{bottom:663.505333pt;}
.y1ae{bottom:663.752933pt;}
.y172{bottom:664.000000pt;}
.y14d{bottom:664.064000pt;}
.y2b{bottom:664.440933pt;}
.y20a{bottom:665.157333pt;}
.y102{bottom:666.442667pt;}
.y50{bottom:666.481867pt;}
.yb8{bottom:667.640933pt;}
.y226{bottom:667.907600pt;}
.y335{bottom:668.656133pt;}
.y127{bottom:668.757333pt;}
.y6{bottom:669.600000pt;}
.ydd{bottom:670.042667pt;}
.y302{bottom:673.152000pt;}
.y19d{bottom:673.681200pt;}
.y94{bottom:674.277333pt;}
.y2a1{bottom:675.088000pt;}
.y1c9{bottom:676.448000pt;}
.y243{bottom:678.773333pt;}
.y266{bottom:679.770667pt;}
.y2c4{bottom:679.989333pt;}
.y1eb{bottom:680.172000pt;}
.y73{bottom:680.707600pt;}
.y14c{bottom:682.992000pt;}
.y225{bottom:684.040933pt;}
.yb7{bottom:684.174267pt;}
.y1ad{bottom:684.424933pt;}
.y209{bottom:685.029333pt;}
.y334{bottom:685.322800pt;}
.y101{bottom:686.170667pt;}
.y301{bottom:686.357333pt;}
.y126{bottom:688.229333pt;}
.ydc{bottom:689.370667pt;}
.y19c{bottom:689.677200pt;}
.y5{bottom:690.266667pt;}
.y4f{bottom:694.307600pt;}
.y2a0{bottom:695.360000pt;}
.y72{bottom:697.640933pt;}
.y242{bottom:698.245333pt;}
.y300{bottom:699.552000pt;}
.y265{bottom:700.298667pt;}
.y2c3{bottom:700.389333pt;}
.yb6{bottom:700.707600pt;}
.y14b{bottom:701.920000pt;}
.y333{bottom:701.989467pt;}
.y93{bottom:702.101333pt;}
.y171{bottom:704.000000pt;}
.y1ea{bottom:704.158667pt;}
.y2a{bottom:704.174267pt;}
.y208{bottom:704.901333pt;}
.y1ac{bottom:705.096933pt;}
.y100{bottom:705.898667pt;}
.y125{bottom:707.701333pt;}
.ydb{bottom:708.698667pt;}
.y4e{bottom:711.240933pt;}
.y2ff{bottom:712.746667pt;}
.y71{bottom:714.574267pt;}
.y332{bottom:718.656133pt;}
.y29{bottom:720.707600pt;}
.y2c2{bottom:720.789333pt;}
.y264{bottom:720.826667pt;}
.y14a{bottom:720.848000pt;}
.y92{bottom:722.373333pt;}
.y29f{bottom:723.184000pt;}
.y170{bottom:724.000000pt;}
.yb5{bottom:724.773333pt;}
.yff{bottom:725.626667pt;}
.y1ab{bottom:725.768933pt;}
.y2fe{bottom:725.941333pt;}
.y124{bottom:727.173333pt;}
.yda{bottom:728.026667pt;}
.y1e9{bottom:728.145333pt;}
.y4d{bottom:728.174267pt;}
.y70{bottom:731.507600pt;}
.y331{bottom:735.322800pt;}
.y2fd{bottom:739.136000pt;}
.y149{bottom:739.776000pt;}
.y2c1{bottom:741.189333pt;}
.y263{bottom:741.354667pt;}
.y91{bottom:742.645333pt;}
.y29e{bottom:743.456000pt;}
.y16f{bottom:744.000000pt;}
.yb4{bottom:744.645333pt;}
.y28{bottom:744.800000pt;}
.y4c{bottom:745.107600pt;}
.yfe{bottom:745.354667pt;}
.y1aa{bottom:746.440933pt;}
.y123{bottom:746.645333pt;}
.yd9{bottom:747.354667pt;}
.y6f{bottom:748.440933pt;}
.y330{bottom:751.989467pt;}
.y4{bottom:752.266667pt;}
.y2fc{bottom:752.341333pt;}
.y148{bottom:758.704000pt;}
.y27{bottom:761.333333pt;}
.y2c0{bottom:761.589333pt;}
.y262{bottom:761.882667pt;}
.y4b{bottom:762.040933pt;}
.y90{bottom:762.917333pt;}
.y1e8{bottom:763.482667pt;}
.y29d{bottom:763.728000pt;}
.y16e{bottom:764.000000pt;}
.yb3{bottom:764.517333pt;}
.yfd{bottom:765.082667pt;}
.y6e{bottom:765.374267pt;}
.y2fb{bottom:765.536000pt;}
.y122{bottom:766.117333pt;}
.yd8{bottom:766.682667pt;}
.y32f{bottom:768.656133pt;}
.y1a9{bottom:774.666667pt;}
.y26{bottom:777.866667pt;}
.y2fa{bottom:778.730667pt;}
.y4a{bottom:778.974267pt;}
.y3{bottom:779.600000pt;}
.y2bf{bottom:781.989333pt;}
.y6d{bottom:782.307600pt;}
.y261{bottom:782.410667pt;}
.y8f{bottom:783.189333pt;}
.y1e7{bottom:783.610667pt;}
.y16d{bottom:784.000000pt;}
.yb2{bottom:784.389333pt;}
.yfc{bottom:784.810667pt;}
.y147{bottom:785.200000pt;}
.y121{bottom:785.589333pt;}
.yd7{bottom:786.010667pt;}
.y2f9{bottom:791.936000pt;}
.y1a8{bottom:792.000000pt;}
.y25{bottom:794.400000pt;}
.y32e{bottom:796.661467pt;}
.y6c{bottom:799.240933pt;}
.y2be{bottom:802.661333pt;}
.y260{bottom:802.938667pt;}
.y49{bottom:803.461333pt;}
.y1e6{bottom:803.738667pt;}
.y16c{bottom:804.000000pt;}
.yb1{bottom:804.261333pt;}
.yfb{bottom:804.538667pt;}
.y146{bottom:804.800000pt;}
.y120{bottom:805.061333pt;}
.y2f8{bottom:805.130667pt;}
.yd6{bottom:805.338667pt;}
.y1a7{bottom:809.333333pt;}
.y24{bottom:810.933333pt;}
.y2bd{bottom:823.333333pt;}
.y2{bottom:823.466667pt;}
.y48{bottom:823.733333pt;}
.y1e5{bottom:823.866667pt;}
.y16b{bottom:824.000000pt;}
.yb0{bottom:824.133333pt;}
.yfa{bottom:824.266667pt;}
.y145{bottom:824.400000pt;}
.y11f{bottom:824.533333pt;}
.yd5{bottom:824.666667pt;}
.y1a6{bottom:826.666667pt;}
.y23{bottom:827.466667pt;}
.h11{height:28.666667pt;}
.hc{height:29.866667pt;}
.h12{height:32.250000pt;}
.he{height:33.600000pt;}
.h2{height:34.041667pt;}
.hf{height:34.730667pt;}
.h9{height:35.546875pt;}
.h1{height:35.833333pt;}
.ha{height:36.171875pt;}
.h10{height:36.229167pt;}
.h4{height:37.333333pt;}
.hd{height:39.072000pt;}
.h5{height:42.656250pt;}
.h7{height:43.000000pt;}
.hb{height:43.413333pt;}
.h6{height:45.286458pt;}
.h8{height:54.343750pt;}
.h3{height:71.666667pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.000000pt;}
.x1a{left:65.624667pt;}
.xd{left:71.559067pt;}
.x8{left:73.228400pt;}
.x3{left:86.456667pt;}
.xa{left:88.346400pt;}
.x1c{left:94.012400pt;}
.x6{left:100.106667pt;}
.x7{left:113.228400pt;}
.x1{left:120.000000pt;}
.x5{left:126.456667pt;}
.x9{left:128.348400pt;}
.xc{left:134.012400pt;}
.x15{left:135.304267pt;}
.x12{left:165.856267pt;}
.x11{left:173.920267pt;}
.x10{left:276.076267pt;}
.x1b{left:293.744667pt;}
.xf{left:314.824267pt;}
.x17{left:317.272267pt;}
.xe{left:325.165333pt;}
.x16{left:338.608267pt;}
.x14{left:442.252267pt;}
.x13{left:457.492267pt;}
.x19{left:481.912267pt;}
.x18{left:509.488267pt;}
.xb{left:564.791600pt;}
.x4{left:573.333333pt;}
}




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