
    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_059cf96fa4e478f9c8eaa488.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cb603ef42a59bb8421272d57.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_20e50f675eacac5915fecaf1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c03427798b8f6fb3baa09e1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_3533b292da48322744de2ff1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_792a5f803741b3975d64529a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d6724d0fb6569756ef6960df.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_75da153d8252e285153b2fe2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.678711;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.808000px;}
.v4{vertical-align:-13.182000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:23.268000px;}
.ls5a{letter-spacing:-12.915000px;}
.ls39{letter-spacing:-8.136000px;}
.ls35{letter-spacing:-7.920000px;}
.ls2c{letter-spacing:-7.200000px;}
.ls2f{letter-spacing:-6.840000px;}
.ls68{letter-spacing:-4.356000px;}
.ls65{letter-spacing:-2.808000px;}
.ls66{letter-spacing:-2.574000px;}
.lsb{letter-spacing:-1.188000px;}
.ls1f{letter-spacing:-1.152000px;}
.ls73{letter-spacing:-1.122000px;}
.ls10{letter-spacing:-1.056000px;}
.ls20{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.990000px;}
.ls50{letter-spacing:-0.945000px;}
.ls38{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.924000px;}
.ls5b{letter-spacing:-0.882000px;}
.ls37{letter-spacing:-0.864000px;}
.ls53{letter-spacing:-0.819000px;}
.lsa{letter-spacing:-0.792000px;}
.ls5f{letter-spacing:-0.756000px;}
.ls7c{letter-spacing:-0.726000px;}
.ls29{letter-spacing:-0.720000px;}
.ls4d{letter-spacing:-0.693000px;}
.ls71{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.648000px;}
.ls4c{letter-spacing:-0.630000px;}
.ls72{letter-spacing:-0.594000px;}
.ls34{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls67{letter-spacing:-0.462000px;}
.ls5d{letter-spacing:-0.441000px;}
.ls19{letter-spacing:-0.432000px;}
.ls58{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.330000px;}
.ls4f{letter-spacing:-0.315000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.264000px;}
.ls42{letter-spacing:-0.252000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls78{letter-spacing:-0.198000px;}
.ls51{letter-spacing:-0.189000px;}
.ls2b{letter-spacing:-0.172800px;}
.ls2e{letter-spacing:-0.144000px;}
.ls75{letter-spacing:-0.132000px;}
.ls43{letter-spacing:-0.126000px;}
.ls28{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.066000px;}
.ls8{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.010200px;}
.ls14{letter-spacing:0.011400px;}
.ls48{letter-spacing:0.063000px;}
.ls5{letter-spacing:0.066000px;}
.ls24{letter-spacing:0.072000px;}
.ls3e{letter-spacing:0.126000px;}
.ls79{letter-spacing:0.132000px;}
.ls25{letter-spacing:0.144000px;}
.ls59{letter-spacing:0.189000px;}
.ls7b{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.226200px;}
.ls41{letter-spacing:0.252000px;}
.ls6f{letter-spacing:0.264000px;}
.ls15{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.315000px;}
.ls6{letter-spacing:0.330000px;}
.ls18{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.432000px;}
.ls3f{letter-spacing:0.441000px;}
.ls76{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.528000px;}
.ls62{letter-spacing:0.532200px;}
.ls27{letter-spacing:0.562200px;}
.ls49{letter-spacing:0.567000px;}
.ls32{letter-spacing:0.576000px;}
.ls4a{letter-spacing:0.630000px;}
.ls21{letter-spacing:0.648000px;}
.ls77{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.693000px;}
.ls17{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.792000px;}
.ls45{letter-spacing:0.819000px;}
.ls30{letter-spacing:0.864000px;}
.ls5c{letter-spacing:0.882000px;}
.ls6b{letter-spacing:0.924000px;}
.ls26{letter-spacing:0.936000px;}
.ls44{letter-spacing:0.945000px;}
.ls6a{letter-spacing:0.990000px;}
.ls5e{letter-spacing:1.071000px;}
.ls3a{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.152000px;}
.ls57{letter-spacing:1.260000px;}
.ls55{letter-spacing:1.323000px;}
.ls3d{letter-spacing:1.368000px;}
.ls56{letter-spacing:1.512000px;}
.ls23{letter-spacing:1.584000px;}
.ls52{letter-spacing:2.835000px;}
.ls3b{letter-spacing:3.600000px;}
.ls3c{letter-spacing:3.931200px;}
.ls33{letter-spacing:3.974400px;}
.ls0{letter-spacing:4.200000px;}
.ls2d{letter-spacing:4.752000px;}
.ls3{letter-spacing:5.280000px;}
.ls60{letter-spacing:5.373000px;}
.ls63{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls31{letter-spacing:7.272000px;}
.ls54{letter-spacing:9.387000px;}
.ls61{letter-spacing:9.538200px;}
.ls6d{letter-spacing:9.834000px;}
.ls2{letter-spacing:10.200000px;}
.ls74{letter-spacing:10.626000px;}
.ls6c{letter-spacing:10.956000px;}
.ls70{letter-spacing:11.880000px;}
.ls69{letter-spacing:11.946000px;}
.ls4e{letter-spacing:15.372000px;}
.ls6e{letter-spacing:19.800000px;}
.ls7a{letter-spacing:29.106000px;}
.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;}
}
.ws96{word-spacing:-38.346000px;}
.ws1{word-spacing:-35.394000px;}
.ws2{word-spacing:-27.432000px;}
.ws37{word-spacing:-24.984000px;}
.ws8c{word-spacing:-22.860000px;}
.ws3f{word-spacing:-20.592000px;}
.ws38{word-spacing:-20.448000px;}
.ws3a{word-spacing:-20.232000px;}
.ws39{word-spacing:-19.944000px;}
.wsab{word-spacing:-19.800000px;}
.ws42{word-spacing:-19.512000px;}
.ws43{word-spacing:-19.296000px;}
.ws71{word-spacing:-19.215000px;}
.ws73{word-spacing:-18.963000px;}
.ws59{word-spacing:-18.648000px;}
.ws8d{word-spacing:-18.546000px;}
.ws72{word-spacing:-18.522000px;}
.ws53{word-spacing:-18.459000px;}
.ws5e{word-spacing:-18.396000px;}
.ws5d{word-spacing:-18.333000px;}
.ws6b{word-spacing:-18.270000px;}
.ws67{word-spacing:-18.216000px;}
.ws52{word-spacing:-18.207000px;}
.ws2a{word-spacing:-18.144000px;}
.ws8f{word-spacing:-18.084000px;}
.ws5b{word-spacing:-18.081000px;}
.ws5a{word-spacing:-18.018000px;}
.ws33{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.928000px;}
.ws7a{word-spacing:-17.892000px;}
.ws81{word-spacing:-17.829000px;}
.ws16{word-spacing:-17.784000px;}
.ws5c{word-spacing:-17.766000px;}
.ws50{word-spacing:-17.703000px;}
.ws3e{word-spacing:-17.640000px;}
.ws54{word-spacing:-17.577000px;}
.ws17{word-spacing:-17.568000px;}
.ws68{word-spacing:-17.514000px;}
.ws22{word-spacing:-17.496000px;}
.ws51{word-spacing:-17.451000px;}
.ws21{word-spacing:-17.424000px;}
.ws66{word-spacing:-17.388000px;}
.ws70{word-spacing:-17.325000px;}
.ws6f{word-spacing:-17.199000px;}
.ws69{word-spacing:-17.073000px;}
.ws87{word-spacing:-16.947000px;}
.ws6a{word-spacing:-16.884000px;}
.ws0{word-spacing:-16.860000px;}
.ws65{word-spacing:-16.758000px;}
.ws97{word-spacing:-16.566000px;}
.ws95{word-spacing:-16.302000px;}
.ws4{word-spacing:-16.038000px;}
.ws7f{word-spacing:-15.750000px;}
.ws78{word-spacing:-15.561000px;}
.ws3{word-spacing:-15.378000px;}
.ws80{word-spacing:-15.120000px;}
.ws2b{word-spacing:-12.139200px;}
.ws34{word-spacing:-11.966400px;}
.ws98{word-spacing:-11.946000px;}
.ws32{word-spacing:-11.923200px;}
.ws9a{word-spacing:-11.880000px;}
.ws8e{word-spacing:-11.127600px;}
.ws9e{word-spacing:-10.956000px;}
.wsaa{word-spacing:-10.929600px;}
.wsa2{word-spacing:-10.626000px;}
.ws9{word-spacing:-10.200000px;}
.wsa0{word-spacing:-9.834000px;}
.ws6e{word-spacing:-9.387000px;}
.ws2f{word-spacing:-7.200000px;}
.ws7{word-spacing:-6.600000px;}
.wsa4{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.280000px;}
.ws5{word-spacing:-4.200000px;}
.ws4f{word-spacing:-3.600000px;}
.ws6d{word-spacing:-2.835000px;}
.ws49{word-spacing:-1.800000px;}
.ws29{word-spacing:-1.584000px;}
.ws88{word-spacing:-1.512000px;}
.ws4e{word-spacing:-1.368000px;}
.ws77{word-spacing:-1.323000px;}
.ws28{word-spacing:-1.152000px;}
.ws4d{word-spacing:-1.080000px;}
.ws8b{word-spacing:-1.071000px;}
.ws99{word-spacing:-0.990000px;}
.ws30{word-spacing:-0.936000px;}
.ws9b{word-spacing:-0.924000px;}
.ws85{word-spacing:-0.882000px;}
.ws44{word-spacing:-0.864000px;}
.ws5f{word-spacing:-0.819000px;}
.ws1f{word-spacing:-0.792000px;}
.ws84{word-spacing:-0.756000px;}
.ws18{word-spacing:-0.720000px;}
.wsa9{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.648000px;}
.ws62{word-spacing:-0.630000px;}
.ws46{word-spacing:-0.576000px;}
.ws61{word-spacing:-0.567000px;}
.ws13{word-spacing:-0.528000px;}
.ws15{word-spacing:-0.504000px;}
.wsa8{word-spacing:-0.462000px;}
.ws57{word-spacing:-0.441000px;}
.ws23{word-spacing:-0.432000px;}
.ws60{word-spacing:-0.378000px;}
.ws19{word-spacing:-0.360000px;}
.ws12{word-spacing:-0.330000px;}
.ws74{word-spacing:-0.315000px;}
.ws1e{word-spacing:-0.288000px;}
.wsa6{word-spacing:-0.264000px;}
.ws58{word-spacing:-0.252000px;}
.ws1c{word-spacing:-0.216000px;}
.wsac{word-spacing:-0.198000px;}
.ws8a{word-spacing:-0.189000px;}
.ws2d{word-spacing:-0.144000px;}
.wsae{word-spacing:-0.132000px;}
.ws56{word-spacing:-0.126000px;}
.ws2c{word-spacing:-0.072000px;}
.wsd{word-spacing:-0.066000px;}
.ws75{word-spacing:-0.063000px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:0.066000px;}
.ws2e{word-spacing:0.072000px;}
.ws55{word-spacing:0.126000px;}
.wsa3{word-spacing:0.132000px;}
.ws41{word-spacing:0.144000px;}
.wsa7{word-spacing:0.198000px;}
.ws1b{word-spacing:0.216000px;}
.ws7b{word-spacing:0.252000px;}
.ws94{word-spacing:0.264000px;}
.ws1d{word-spacing:0.288000px;}
.ws6c{word-spacing:0.315000px;}
.ws14{word-spacing:0.330000px;}
.ws8{word-spacing:0.360000px;}
.ws1a{word-spacing:0.432000px;}
.ws86{word-spacing:0.441000px;}
.ws93{word-spacing:0.462000px;}
.ws24{word-spacing:0.504000px;}
.wsf{word-spacing:0.528000px;}
.ws45{word-spacing:0.576000px;}
.ws9d{word-spacing:0.594000px;}
.ws63{word-spacing:0.630000px;}
.ws48{word-spacing:0.648000px;}
.ws9c{word-spacing:0.660000px;}
.ws64{word-spacing:0.693000px;}
.ws31{word-spacing:0.720000px;}
.wsad{word-spacing:0.726000px;}
.ws89{word-spacing:0.756000px;}
.wsb{word-spacing:0.792000px;}
.ws7c{word-spacing:0.819000px;}
.ws4c{word-spacing:0.864000px;}
.ws7d{word-spacing:0.882000px;}
.ws4a{word-spacing:0.936000px;}
.ws7e{word-spacing:0.945000px;}
.ws10{word-spacing:0.990000px;}
.ws26{word-spacing:1.008000px;}
.ws11{word-spacing:1.056000px;}
.wsa1{word-spacing:1.122000px;}
.ws25{word-spacing:1.152000px;}
.wsc{word-spacing:1.188000px;}
.ws91{word-spacing:2.574000px;}
.ws90{word-spacing:2.808000px;}
.ws40{word-spacing:3.240000px;}
.ws3b{word-spacing:3.384000px;}
.ws9f{word-spacing:4.092000px;}
.ws76{word-spacing:4.095000px;}
.ws92{word-spacing:4.356000px;}
.wsa5{word-spacing:5.040000px;}
.ws3d{word-spacing:6.840000px;}
.ws83{word-spacing:6.867000px;}
.ws3c{word-spacing:7.200000px;}
.ws82{word-spacing:7.371000px;}
.ws47{word-spacing:7.920000px;}
.ws4b{word-spacing:8.136000px;}
.ws36{word-spacing:8.280000px;}
.ws20{word-spacing:8.856000px;}
.ws79{word-spacing:10.206000px;}
._7{margin-left:-16.708800px;}
._19{margin-left:-14.684400px;}
._17{margin-left:-13.324200px;}
._18{margin-left:-12.169500px;}
._1b{margin-left:-10.711200px;}
._9{margin-left:-9.601200px;}
._b{margin-left:-8.170200px;}
._15{margin-left:-7.124400px;}
._5{margin-left:-6.018000px;}
._e{margin-left:-4.657200px;}
._4{margin-left:-3.420000px;}
._6{margin-left:-2.308800px;}
._1{margin-left:-1.243200px;}
._3{width:1.100400px;}
._d{width:2.569200px;}
._0{width:4.200000px;}
._c{width:5.280000px;}
._11{width:6.316800px;}
._10{width:7.323600px;}
._f{width:8.646600px;}
._a{width:10.200000px;}
._2{width:11.259600px;}
._12{width:12.270000px;}
._14{width:13.712400px;}
._13{width:14.840400px;}
._8{width:16.761600px;}
._16{width:18.469800px;}
._1c{width:21.571200px;}
._1a{width:27.468000px;}
._1d{width:32.526000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:37.800000px;}
.fs9{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y166{bottom:140.294850px;}
.yf2{bottom:141.910350px;}
.y13f{bottom:142.628850px;}
.yd2{bottom:143.004300px;}
.y1a0{bottom:143.337000px;}
.y17d{bottom:143.353350px;}
.y254{bottom:144.000900px;}
.yad{bottom:144.052350px;}
.y29c{bottom:144.159450px;}
.y21{bottom:144.493200px;}
.yae{bottom:144.714300px;}
.y46{bottom:144.828300px;}
.y1c6{bottom:144.842850px;}
.y90{bottom:145.164300px;}
.y6b{bottom:145.452300px;}
.y8e{bottom:145.504350px;}
.y20d{bottom:145.650750px;}
.y118{bottom:145.820100px;}
.y232{bottom:146.040900px;}
.y1ea{bottom:146.374950px;}
.y13e{bottom:160.772850px;}
.y17c{bottom:160.898850px;}
.y165{bottom:160.994850px;}
.y29b{bottom:162.159450px;}
.y253{bottom:163.503900px;}
.yf1{bottom:163.510350px;}
.yd1{bottom:164.010300px;}
.y19f{bottom:164.181000px;}
.y1e9{bottom:164.219700px;}
.y20{bottom:165.337200px;}
.yac{bottom:166.246350px;}
.y8f{bottom:166.314300px;}
.y20c{bottom:166.350750px;}
.y231{bottom:166.434900px;}
.y1c5{bottom:166.442850px;}
.y6a{bottom:166.458300px;}
.y45{bottom:166.572300px;}
.y117{bottom:167.276100px;}
.y8d{bottom:167.698350px;}
.y17b{bottom:178.444350px;}
.y13d{bottom:178.916850px;}
.y29a{bottom:180.159450px;}
.y164{bottom:181.694850px;}
.y1e8{bottom:182.064450px;}
.yd0{bottom:185.016300px;}
.y19e{bottom:185.031150px;}
.yf0{bottom:185.110350px;}
.y1f{bottom:186.181200px;}
.y230{bottom:186.828900px;}
.y20b{bottom:187.050750px;}
.y69{bottom:187.464300px;}
.y1c4{bottom:188.042850px;}
.y44{bottom:188.316300px;}
.yab{bottom:188.440350px;}
.y116{bottom:188.732100px;}
.y8c{bottom:189.892350px;}
.y277{bottom:192.661800px;}
.y17a{bottom:195.989850px;}
.y13c{bottom:197.060850px;}
.y299{bottom:198.159450px;}
.y1e7{bottom:199.909200px;}
.y163{bottom:202.250850px;}
.y252{bottom:204.603900px;}
.ycf{bottom:206.022300px;}
.y22f{bottom:207.222900px;}
.y20a{bottom:207.750750px;}
.y68{bottom:208.614300px;}
.y1c3{bottom:209.642850px;}
.y43{bottom:210.060300px;}
.y115{bottom:210.188100px;}
.yaa{bottom:210.634350px;}
.y276{bottom:210.661800px;}
.y8b{bottom:211.348350px;}
.y179{bottom:213.535350px;}
.y13b{bottom:215.204850px;}
.y1e{bottom:215.535150px;}
.y298{bottom:216.159450px;}
.y1e6{bottom:217.753950px;}
.yef{bottom:221.710350px;}
.y162{bottom:222.806850px;}
.yce{bottom:227.028300px;}
.y22e{bottom:227.616900px;}
.y209{bottom:228.528750px;}
.y275{bottom:228.661800px;}
.y67{bottom:229.764300px;}
.y178{bottom:231.537600px;}
.y114{bottom:231.644100px;}
.y42{bottom:231.804300px;}
.ya9{bottom:232.684350px;}
.y8a{bottom:232.804350px;}
.y13a{bottom:233.348850px;}
.y19d{bottom:234.117000px;}
.y1e5{bottom:235.598700px;}
.y161{bottom:243.362850px;}
.y1c2{bottom:244.088850px;}
.y251{bottom:246.003900px;}
.y274{bottom:246.661800px;}
.y22d{bottom:248.010900px;}
.ycd{bottom:248.034300px;}
.y177{bottom:249.539850px;}
.y208{bottom:249.678750px;}
.y66{bottom:250.914300px;}
.y19c{bottom:251.363250px;}
.y113{bottom:253.100100px;}
.y1e4{bottom:253.443450px;}
.y41{bottom:253.548300px;}
.ya8{bottom:254.140350px;}
.y89{bottom:254.236350px;}
.y297{bottom:255.759450px;}
.y1c1{bottom:261.634350px;}
.y160{bottom:263.918850px;}
.y139{bottom:264.290700px;}
.y273{bottom:264.661800px;}
.y176{bottom:267.542100px;}
.y250{bottom:267.603900px;}
.y22c{bottom:267.959400px;}
.y19b{bottom:268.609500px;}
.ycc{bottom:269.184300px;}
.y207{bottom:270.828750px;}
.y1e3{bottom:271.146450px;}
.y65{bottom:272.064300px;}
.yee{bottom:273.310350px;}
.y112{bottom:274.550100px;}
.y40{bottom:275.292300px;}
.y296{bottom:275.559450px;}
.ya7{bottom:275.596350px;}
.y88{bottom:275.692350px;}
.y1d{bottom:278.032500px;}
.y1c0{bottom:279.179850px;}
.y15f{bottom:284.474850px;}
.y175{bottom:285.544350px;}
.y19a{bottom:285.855750px;}
.y138{bottom:286.034700px;}
.y1e2{bottom:288.849450px;}
.y24f{bottom:289.203900px;}
.y22b{bottom:289.695900px;}
.ycb{bottom:290.334300px;}
.y206{bottom:292.122750px;}
.y64{bottom:293.214300px;}
.yed{bottom:294.910350px;}
.y1bf{bottom:296.725350px;}
.y3f{bottom:297.036300px;}
.ya6{bottom:297.052350px;}
.y1c{bottom:297.090000px;}
.y87{bottom:297.148350px;}
.y272{bottom:300.511800px;}
.y199{bottom:303.102000px;}
.y174{bottom:303.546600px;}
.y15e{bottom:305.030850px;}
.y1e1{bottom:306.552450px;}
.y137{bottom:307.778700px;}
.y22a{bottom:309.644400px;}
.yca{bottom:311.628300px;}
.y205{bottom:313.416750px;}
.y111{bottom:313.838100px;}
.y1be{bottom:314.270850px;}
.y63{bottom:314.364300px;}
.y1b{bottom:316.147500px;}
.yec{bottom:316.510350px;}
.y295{bottom:316.930950px;}
.ya5{bottom:318.508350px;}
.y86{bottom:318.604350px;}
.y3e{bottom:318.780300px;}
.y271{bottom:320.311800px;}
.y198{bottom:320.348250px;}
.y173{bottom:321.548850px;}
.y1e0{bottom:324.255450px;}
.y15d{bottom:325.586850px;}
.y229{bottom:329.295900px;}
.y136{bottom:329.522700px;}
.y1bd{bottom:331.816350px;}
.yc9{bottom:332.922300px;}
.y204{bottom:334.710750px;}
.y1a{bottom:335.205000px;}
.y110{bottom:335.294100px;}
.y62{bottom:335.514300px;}
.y294{bottom:336.582450px;}
.y197{bottom:337.594500px;}
.yeb{bottom:338.110350px;}
.ya4{bottom:339.964350px;}
.y85{bottom:340.060350px;}
.y3d{bottom:340.524300px;}
.y1df{bottom:341.958450px;}
.y24e{bottom:343.204650px;}
.y15c{bottom:346.142850px;}
.y228{bottom:348.947400px;}
.y1bc{bottom:349.361850px;}
.y135{bottom:351.266700px;}
.y172{bottom:352.304700px;}
.yc8{bottom:354.216300px;}
.y19{bottom:354.262500px;}
.y196{bottom:354.840750px;}
.y203{bottom:356.004750px;}
.y293{bottom:356.233950px;}
.y61{bottom:356.664300px;}
.y10f{bottom:356.750100px;}
.yea{bottom:359.710350px;}
.y24d{bottom:360.603900px;}
.ya3{bottom:361.420350px;}
.y270{bottom:361.837800px;}
.y3c{bottom:362.268300px;}
.y15b{bottom:366.692850px;}
.y1bb{bottom:366.907350px;}
.y227{bottom:368.598900px;}
.y84{bottom:370.014300px;}
.y195{bottom:372.087000px;}
.y1de{bottom:372.504300px;}
.y134{bottom:373.010700px;}
.y18{bottom:373.320000px;}
.y171{bottom:373.454700px;}
.yc7{bottom:375.510300px;}
.y292{bottom:375.885450px;}
.y202{bottom:377.298750px;}
.y60{bottom:377.814300px;}
.y24c{bottom:377.977050px;}
.ye9{bottom:381.310350px;}
.y26f{bottom:382.083300px;}
.ya2{bottom:382.876350px;}
.y3b{bottom:384.012300px;}
.y1ba{bottom:384.452850px;}
.y226{bottom:388.250400px;}
.y10e{bottom:391.060950px;}
.y17{bottom:392.377500px;}
.y1dd{bottom:393.798300px;}
.y170{bottom:394.604700px;}
.y133{bottom:394.754700px;}
.y291{bottom:395.536950px;}
.yc6{bottom:396.804300px;}
.y24b{bottom:397.628550px;}
.y201{bottom:398.592750px;}
.y5f{bottom:398.964300px;}
.y1b9{bottom:401.998350px;}
.y194{bottom:402.128850px;}
.y26e{bottom:402.328800px;}
.ye8{bottom:402.910350px;}
.ya1{bottom:404.332350px;}
.y3a{bottom:405.756300px;}
.y225{bottom:407.901900px;}
.y10d{bottom:408.905700px;}
.y16{bottom:411.435000px;}
.y83{bottom:412.770300px;}
.y1dc{bottom:415.092300px;}
.y290{bottom:415.188450px;}
.y16f{bottom:415.754700px;}
.y132{bottom:416.504700px;}
.y24a{bottom:417.280050px;}
.yc5{bottom:418.098300px;}
.y15a{bottom:418.786350px;}
.y1b8{bottom:419.543850px;}
.y200{bottom:419.886750px;}
.y5e{bottom:420.114300px;}
.y26d{bottom:422.574300px;}
.y193{bottom:422.972850px;}
.ye7{bottom:424.510350px;}
.ya0{bottom:425.788350px;}
.y10c{bottom:426.750450px;}
.y39{bottom:427.500300px;}
.y224{bottom:427.553400px;}
.y82{bottom:434.226300px;}
.y28f{bottom:434.839950px;}
.y159{bottom:436.032600px;}
.y1db{bottom:436.386300px;}
.y16e{bottom:436.904700px;}
.y249{bottom:436.931550px;}
.y1b7{bottom:437.089350px;}
.y15{bottom:438.988950px;}
.yc4{bottom:439.392300px;}
.y1ff{bottom:441.180750px;}
.y5d{bottom:441.264300px;}
.y26c{bottom:442.819800px;}
.y192{bottom:443.816850px;}
.y10b{bottom:444.595200px;}
.ye6{bottom:446.110350px;}
.y223{bottom:447.204900px;}
.y9f{bottom:447.244350px;}
.y38{bottom:449.244300px;}
.y158{bottom:453.278850px;}
.y28e{bottom:454.491450px;}
.y1b6{bottom:454.634850px;}
.y81{bottom:455.682300px;}
.y248{bottom:456.583050px;}
.y1da{bottom:457.680300px;}
.y16d{bottom:458.054700px;}
.y131{bottom:458.240700px;}
.yc3{bottom:460.686300px;}
.y5c{bottom:462.414300px;}
.y10a{bottom:462.439950px;}
.y1fe{bottom:462.474750px;}
.y26b{bottom:463.065300px;}
.y191{bottom:464.660850px;}
.y222{bottom:466.851900px;}
.y9e{bottom:468.700350px;}
.y157{bottom:470.525100px;}
.y37{bottom:470.988300px;}
.y1b5{bottom:472.180350px;}
.y28d{bottom:474.142950px;}
.ye5{bottom:476.214300px;}
.y247{bottom:476.234550px;}
.y80{bottom:477.138300px;}
.y1d9{bottom:478.974300px;}
.y16c{bottom:479.204700px;}
.y130{bottom:479.984700px;}
.y109{bottom:480.284700px;}
.y14{bottom:480.651600px;}
.yc2{bottom:481.980300px;}
.y26a{bottom:483.310800px;}
.y5b{bottom:483.564300px;}
.y1fd{bottom:483.768750px;}
.y190{bottom:485.504850px;}
.y221{bottom:486.503400px;}
.y156{bottom:487.771350px;}
.y1b4{bottom:489.725850px;}
.y9d{bottom:490.156350px;}
.y36{bottom:492.732300px;}
.y28c{bottom:493.794450px;}
.y246{bottom:495.886050px;}
.y108{bottom:498.129450px;}
.y7f{bottom:498.594300px;}
.y13{bottom:499.709100px;}
.y1d8{bottom:500.268300px;}
.y12f{bottom:501.728700px;}
.yc1{bottom:503.274300px;}
.y269{bottom:503.556300px;}
.y5a{bottom:504.714300px;}
.y155{bottom:505.017600px;}
.y1fc{bottom:505.062750px;}
.y220{bottom:506.154900px;}
.y18f{bottom:506.348850px;}
.y1b3{bottom:507.271350px;}
.y9c{bottom:511.612350px;}
.y28b{bottom:513.445950px;}
.y35{bottom:514.476300px;}
.y245{bottom:515.537550px;}
.y107{bottom:515.974200px;}
.y12{bottom:518.766600px;}
.y7e{bottom:520.050300px;}
.y1d7{bottom:521.562300px;}
.y154{bottom:522.263850px;}
.y12e{bottom:523.472700px;}
.y268{bottom:523.801800px;}
.yc0{bottom:524.568300px;}
.y1b2{bottom:524.816850px;}
.y21f{bottom:525.801900px;}
.y59{bottom:525.864300px;}
.y1fb{bottom:526.356750px;}
.y18e{bottom:527.192850px;}
.y9b{bottom:533.068350px;}
.y28a{bottom:533.097450px;}
.y16b{bottom:533.161200px;}
.y106{bottom:533.818950px;}
.y244{bottom:535.189050px;}
.y34{bottom:536.220300px;}
.y11{bottom:537.824100px;}
.y153{bottom:539.510100px;}
.ye4{bottom:540.642300px;}
.y7d{bottom:541.506300px;}
.y1b1{bottom:542.362350px;}
.y1d6{bottom:542.856300px;}
.y267{bottom:544.047300px;}
.y12d{bottom:545.216700px;}
.y21e{bottom:545.453400px;}
.ybf{bottom:545.862300px;}
.y58{bottom:547.014300px;}
.y1fa{bottom:547.656750px;}
.y18d{bottom:548.042850px;}
.y16a{bottom:551.163450px;}
.y105{bottom:551.663700px;}
.y289{bottom:552.748950px;}
.y9a{bottom:554.524350px;}
.y243{bottom:554.840550px;}
.y152{bottom:556.756350px;}
.y10{bottom:556.881600px;}
.y33{bottom:558.066300px;}
.y1b0{bottom:559.907850px;}
.ye3{bottom:562.098300px;}
.y7c{bottom:562.962300px;}
.y1d5{bottom:564.150300px;}
.y266{bottom:564.292800px;}
.y21d{bottom:565.104900px;}
.y12c{bottom:566.960700px;}
.ybe{bottom:567.156300px;}
.y57{bottom:568.164300px;}
.y1f9{bottom:568.950750px;}
.y169{bottom:569.165700px;}
.y104{bottom:569.508450px;}
.y288{bottom:572.400450px;}
.y151{bottom:574.002600px;}
.y242{bottom:574.492050px;}
.yf{bottom:575.939100px;}
.y99{bottom:575.980350px;}
.y1af{bottom:577.453350px;}
.y32{bottom:579.810300px;}
.ye2{bottom:583.554300px;}
.y7b{bottom:584.418300px;}
.y265{bottom:584.538300px;}
.y21c{bottom:584.756400px;}
.y1d4{bottom:585.444300px;}
.y168{bottom:587.167950px;}
.y103{bottom:587.353200px;}
.ybd{bottom:588.450300px;}
.y12b{bottom:588.704700px;}
.y56{bottom:589.314300px;}
.y150{bottom:591.248850px;}
.y287{bottom:592.051950px;}
.y241{bottom:594.143550px;}
.y1ae{bottom:594.998850px;}
.y98{bottom:597.436350px;}
.y1f8{bottom:598.754700px;}
.y18c{bottom:600.717600px;}
.y31{bottom:601.554300px;}
.ye{bottom:603.492900px;}
.y264{bottom:604.783800px;}
.ye1{bottom:605.010300px;}
.y167{bottom:605.170200px;}
.y102{bottom:605.197950px;}
.y7a{bottom:605.874300px;}
.y1d3{bottom:606.738300px;}
.ybc{bottom:609.744300px;}
.y55{bottom:610.464300px;}
.y286{bottom:611.703450px;}
.y21b{bottom:612.910350px;}
.y240{bottom:613.795050px;}
.y18b{bottom:617.963850px;}
.y97{bottom:618.892350px;}
.y14f{bottom:621.224700px;}
.y101{bottom:623.042700px;}
.y12a{bottom:623.172450px;}
.y30{bottom:623.298300px;}
.y263{bottom:625.029300px;}
.y1ad{bottom:625.304700px;}
.ye0{bottom:626.466300px;}
.y79{bottom:627.330300px;}
.y1d2{bottom:628.032300px;}
.ybb{bottom:631.038300px;}
.y285{bottom:631.354950px;}
.y54{bottom:631.614300px;}
.y23f{bottom:633.446550px;}
.y18a{bottom:635.210100px;}
.y96{bottom:640.348350px;}
.y100{bottom:640.887450px;}
.y129{bottom:641.174700px;}
.y14e{bottom:641.780700px;}
.y2f{bottom:645.042300px;}
.y262{bottom:645.274800px;}
.y1ac{bottom:646.454700px;}
.ydf{bottom:647.922300px;}
.y78{bottom:648.786300px;}
.y1d1{bottom:649.326300px;}
.y284{bottom:651.006450px;}
.yba{bottom:652.332300px;}
.y189{bottom:652.456350px;}
.y53{bottom:652.764300px;}
.y23e{bottom:653.098050px;}
.y1f7{bottom:654.945450px;}
.yff{bottom:658.732200px;}
.y128{bottom:659.176950px;}
.y21a{bottom:660.486300px;}
.y95{bottom:661.804350px;}
.y14d{bottom:662.336700px;}
.y261{bottom:665.520300px;}
.yd{bottom:665.735400px;}
.y2e{bottom:666.786300px;}
.y1ab{bottom:667.604700px;}
.yde{bottom:669.378300px;}
.y188{bottom:669.702600px;}
.y77{bottom:670.242300px;}
.y1d0{bottom:670.620300px;}
.y283{bottom:670.657950px;}
.y23d{bottom:672.749550px;}
.y1f6{bottom:673.388700px;}
.yb9{bottom:673.626300px;}
.y52{bottom:673.914300px;}
.yfe{bottom:676.576950px;}
.y127{bottom:677.179200px;}
.y219{bottom:681.042300px;}
.y14c{bottom:682.892700px;}
.y94{bottom:683.260350px;}
.yc{bottom:684.792900px;}
.y260{bottom:685.765800px;}
.y187{bottom:686.948850px;}
.y2d{bottom:688.530300px;}
.y1aa{bottom:688.754700px;}
.y282{bottom:690.298800px;}
.ydd{bottom:690.834300px;}
.y76{bottom:691.698300px;}
.y1f5{bottom:691.831950px;}
.y1cf{bottom:691.914300px;}
.y23c{bottom:692.401050px;}
.yfd{bottom:694.421700px;}
.yb8{bottom:694.920300px;}
.y51{bottom:695.064300px;}
.y126{bottom:695.181450px;}
.y218{bottom:701.598300px;}
.y14b{bottom:703.448700px;}
.y25f{bottom:706.011300px;}
.y1a9{bottom:709.904700px;}
.y281{bottom:709.950300px;}
.y2c{bottom:710.274300px;}
.y1f4{bottom:710.275200px;}
.y23b{bottom:712.052550px;}
.yfc{bottom:712.266450px;}
.ydc{bottom:712.290300px;}
.y75{bottom:713.154300px;}
.y125{bottom:713.183700px;}
.y93{bottom:713.214300px;}
.y50{bottom:716.214300px;}
.y186{bottom:716.984700px;}
.y217{bottom:722.154300px;}
.y14a{bottom:724.004700px;}
.yb{bottom:724.682400px;}
.y25e{bottom:726.256800px;}
.y1ce{bottom:727.914300px;}
.y1f3{bottom:728.718450px;}
.y280{bottom:729.601800px;}
.yfb{bottom:730.111200px;}
.y1a8{bottom:731.054700px;}
.y124{bottom:731.185950px;}
.y23a{bottom:731.704050px;}
.y2b{bottom:732.018300px;}
.ydb{bottom:733.746300px;}
.y74{bottom:734.610300px;}
.y4f{bottom:737.364300px;}
.yb7{bottom:737.508300px;}
.y185{bottom:737.828700px;}
.y216{bottom:742.710300px;}
.y25d{bottom:746.502300px;}
.y1f2{bottom:747.161700px;}
.yfa{bottom:747.955950px;}
.y123{bottom:749.188200px;}
.y27f{bottom:749.253300px;}
.y1a7{bottom:752.204700px;}
.y2a{bottom:753.762300px;}
.ya{bottom:754.542900px;}
.yda{bottom:755.202300px;}
.y73{bottom:756.066300px;}
.y149{bottom:757.346700px;}
.y4e{bottom:758.514300px;}
.y184{bottom:758.672700px;}
.yb6{bottom:758.802300px;}
.y239{bottom:759.858000px;}
.y215{bottom:763.266300px;}
.y1f1{bottom:765.604950px;}
.y25c{bottom:766.747800px;}
.y122{bottom:767.190450px;}
.y27e{bottom:768.904800px;}
.y148{bottom:774.592950px;}
.y29{bottom:775.506300px;}
.yd9{bottom:776.658300px;}
.y72{bottom:777.522300px;}
.y92{bottom:777.552300px;}
.yf9{bottom:778.525800px;}
.y1cd{bottom:778.656300px;}
.y183{bottom:779.516700px;}
.y4d{bottom:779.664300px;}
.yb5{bottom:780.096300px;}
.y214{bottom:783.822300px;}
.y1f0{bottom:784.048200px;}
.y121{bottom:785.192700px;}
.y25b{bottom:786.993300px;}
.y1a6{bottom:787.904700px;}
.y27d{bottom:788.556300px;}
.y147{bottom:791.839200px;}
.y28{bottom:797.250300px;}
.yd8{bottom:798.114300px;}
.y71{bottom:798.978300px;}
.y91{bottom:799.008300px;}
.y1cc{bottom:799.950300px;}
.yf8{bottom:799.981800px;}
.y182{bottom:800.360700px;}
.y4c{bottom:800.814300px;}
.yb4{bottom:801.390300px;}
.y1ef{bottom:802.491450px;}
.y120{bottom:803.194950px;}
.y213{bottom:804.378300px;}
.y25a{bottom:807.238800px;}
.y238{bottom:808.129800px;}
.y27c{bottom:808.207800px;}
.y9{bottom:809.054400px;}
.y1a5{bottom:809.054700px;}
.y146{bottom:809.085450px;}
.y27{bottom:818.994300px;}
.yd7{bottom:819.714300px;}
.y70{bottom:820.434300px;}
.y1ee{bottom:820.934700px;}
.y11f{bottom:821.197200px;}
.y181{bottom:821.204700px;}
.y1cb{bottom:821.244300px;}
.yf7{bottom:821.437800px;}
.y4b{bottom:821.964300px;}
.yb3{bottom:822.684300px;}
.y212{bottom:824.934300px;}
.y8{bottom:826.304400px;}
.y145{bottom:826.331700px;}
.y259{bottom:827.484300px;}
.y27b{bottom:827.859300px;}
.y237{bottom:828.226800px;}
.y11e{bottom:839.199450px;}
.y1ed{bottom:839.377950px;}
.y26{bottom:840.738300px;}
.yd6{bottom:841.314300px;}
.y6f{bottom:841.890300px;}
.y180{bottom:842.054700px;}
.y1ca{bottom:842.538300px;}
.yf6{bottom:842.893800px;}
.y4a{bottom:843.114300px;}
.y7{bottom:843.554400px;}
.y6{bottom:843.556800px;}
.y144{bottom:843.577950px;}
.yb2{bottom:843.690300px;}
.y211{bottom:845.490300px;}
.y258{bottom:847.729800px;}
.y236{bottom:848.323800px;}
.y11d{bottom:857.201700px;}
.y1ec{bottom:857.821200px;}
.y1a4{bottom:857.831700px;}
.y143{bottom:860.824200px;}
.y25{bottom:862.482300px;}
.yd5{bottom:862.914300px;}
.y6e{bottom:863.346300px;}
.y1c9{bottom:863.832300px;}
.y49{bottom:864.264300px;}
.yf5{bottom:864.349800px;}
.yb1{bottom:864.696300px;}
.y210{bottom:866.046300px;}
.y257{bottom:867.975300px;}
.y235{bottom:868.420800px;}
.y27a{bottom:868.959450px;}
.y11c{bottom:875.203950px;}
.y1eb{bottom:875.665950px;}
.y1a3{bottom:875.676450px;}
.y5{bottom:876.961800px;}
.y142{bottom:878.070450px;}
.y24{bottom:884.226300px;}
.yd4{bottom:884.514300px;}
.y6d{bottom:884.802300px;}
.y1c8{bottom:885.126300px;}
.y48{bottom:885.414300px;}
.yb0{bottom:885.702300px;}
.yf4{bottom:885.805800px;}
.y20f{bottom:886.602300px;}
.y256{bottom:888.220800px;}
.y234{bottom:888.517800px;}
.y11b{bottom:893.206200px;}
.y1a2{bottom:893.521200px;}
.y4{bottom:894.211800px;}
.y17f{bottom:894.718200px;}
.y141{bottom:895.316700px;}
.y23{bottom:905.970300px;}
.yd3{bottom:906.114300px;}
.y6c{bottom:906.258300px;}
.y1c7{bottom:906.420300px;}
.y47{bottom:906.564300px;}
.yaf{bottom:906.708300px;}
.y20e{bottom:907.158300px;}
.yf3{bottom:907.261800px;}
.y279{bottom:908.259450px;}
.y255{bottom:908.466300px;}
.y233{bottom:908.614800px;}
.y11a{bottom:911.208450px;}
.y1a1{bottom:911.365950px;}
.y3{bottom:911.461800px;}
.y17e{bottom:911.964450px;}
.y140{bottom:912.562950px;}
.y22{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y119{bottom:929.210700px;}
.y278{bottom:929.709450px;}
.h8{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.hf{height:43.989258px;}
.h9{height:47.988281px;}
.h10{height:48.399902px;}
.h5{height:50.947266px;}
.hc{height:53.494629px;}
.h4{height:56.041992px;}
.hd{height:56.059992px;}
.he{height:56.083992px;}
.h11{height:56.084592px;}
.h7{height:61.136719px;}
.ha{height:61.232719px;}
.hb{height:61.256719px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.xc{left:91.432200px;}
.x9{left:97.795350px;}
.x6{left:108.426600px;}
.xd{left:112.673700px;}
.xa{left:119.053350px;}
.xb{left:140.333400px;}
.x4{left:142.216050px;}
.x10{left:199.289550px;}
.x8{left:234.930000px;}
.x1{left:278.288100px;}
.x7{left:381.685800px;}
.x5{left:389.657550px;}
.xf{left:508.755750px;}
.xe{left:517.719000px;}
.x2{left:579.664350px;}
@media print{
.v2{vertical-align:-13.162667pt;}
.v4{vertical-align:-11.717333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:20.682667pt;}
.ls5a{letter-spacing:-11.480000pt;}
.ls39{letter-spacing:-7.232000pt;}
.ls35{letter-spacing:-7.040000pt;}
.ls2c{letter-spacing:-6.400000pt;}
.ls2f{letter-spacing:-6.080000pt;}
.ls68{letter-spacing:-3.872000pt;}
.ls65{letter-spacing:-2.496000pt;}
.ls66{letter-spacing:-2.288000pt;}
.lsb{letter-spacing:-1.056000pt;}
.ls1f{letter-spacing:-1.024000pt;}
.ls73{letter-spacing:-0.997333pt;}
.ls10{letter-spacing:-0.938667pt;}
.ls20{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.880000pt;}
.ls50{letter-spacing:-0.840000pt;}
.ls38{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.821333pt;}
.ls5b{letter-spacing:-0.784000pt;}
.ls37{letter-spacing:-0.768000pt;}
.ls53{letter-spacing:-0.728000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls5f{letter-spacing:-0.672000pt;}
.ls7c{letter-spacing:-0.645333pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls4d{letter-spacing:-0.616000pt;}
.ls71{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls4c{letter-spacing:-0.560000pt;}
.ls72{letter-spacing:-0.528000pt;}
.ls34{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls67{letter-spacing:-0.410667pt;}
.ls5d{letter-spacing:-0.392000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls58{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.293333pt;}
.ls4f{letter-spacing:-0.280000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.234667pt;}
.ls42{letter-spacing:-0.224000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls78{letter-spacing:-0.176000pt;}
.ls51{letter-spacing:-0.168000pt;}
.ls2b{letter-spacing:-0.153600pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls75{letter-spacing:-0.117333pt;}
.ls43{letter-spacing:-0.112000pt;}
.ls28{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.009067pt;}
.ls14{letter-spacing:0.010133pt;}
.ls48{letter-spacing:0.056000pt;}
.ls5{letter-spacing:0.058667pt;}
.ls24{letter-spacing:0.064000pt;}
.ls3e{letter-spacing:0.112000pt;}
.ls79{letter-spacing:0.117333pt;}
.ls25{letter-spacing:0.128000pt;}
.ls59{letter-spacing:0.168000pt;}
.ls7b{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.201067pt;}
.ls41{letter-spacing:0.224000pt;}
.ls6f{letter-spacing:0.234667pt;}
.ls15{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.280000pt;}
.ls6{letter-spacing:0.293333pt;}
.ls18{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.384000pt;}
.ls3f{letter-spacing:0.392000pt;}
.ls76{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.469333pt;}
.ls62{letter-spacing:0.473067pt;}
.ls27{letter-spacing:0.499733pt;}
.ls49{letter-spacing:0.504000pt;}
.ls32{letter-spacing:0.512000pt;}
.ls4a{letter-spacing:0.560000pt;}
.ls21{letter-spacing:0.576000pt;}
.ls77{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.616000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls45{letter-spacing:0.728000pt;}
.ls30{letter-spacing:0.768000pt;}
.ls5c{letter-spacing:0.784000pt;}
.ls6b{letter-spacing:0.821333pt;}
.ls26{letter-spacing:0.832000pt;}
.ls44{letter-spacing:0.840000pt;}
.ls6a{letter-spacing:0.880000pt;}
.ls5e{letter-spacing:0.952000pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.024000pt;}
.ls57{letter-spacing:1.120000pt;}
.ls55{letter-spacing:1.176000pt;}
.ls3d{letter-spacing:1.216000pt;}
.ls56{letter-spacing:1.344000pt;}
.ls23{letter-spacing:1.408000pt;}
.ls52{letter-spacing:2.520000pt;}
.ls3b{letter-spacing:3.200000pt;}
.ls3c{letter-spacing:3.494400pt;}
.ls33{letter-spacing:3.532800pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2d{letter-spacing:4.224000pt;}
.ls3{letter-spacing:4.693333pt;}
.ls60{letter-spacing:4.776000pt;}
.ls63{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls31{letter-spacing:6.464000pt;}
.ls54{letter-spacing:8.344000pt;}
.ls61{letter-spacing:8.478400pt;}
.ls6d{letter-spacing:8.741333pt;}
.ls2{letter-spacing:9.066667pt;}
.ls74{letter-spacing:9.445333pt;}
.ls6c{letter-spacing:9.738667pt;}
.ls70{letter-spacing:10.560000pt;}
.ls69{letter-spacing:10.618667pt;}
.ls4e{letter-spacing:13.664000pt;}
.ls6e{letter-spacing:17.600000pt;}
.ls7a{letter-spacing:25.872000pt;}
.ws96{word-spacing:-34.085333pt;}
.ws1{word-spacing:-31.461333pt;}
.ws2{word-spacing:-24.384000pt;}
.ws37{word-spacing:-22.208000pt;}
.ws8c{word-spacing:-20.320000pt;}
.ws3f{word-spacing:-18.304000pt;}
.ws38{word-spacing:-18.176000pt;}
.ws3a{word-spacing:-17.984000pt;}
.ws39{word-spacing:-17.728000pt;}
.wsab{word-spacing:-17.600000pt;}
.ws42{word-spacing:-17.344000pt;}
.ws43{word-spacing:-17.152000pt;}
.ws71{word-spacing:-17.080000pt;}
.ws73{word-spacing:-16.856000pt;}
.ws59{word-spacing:-16.576000pt;}
.ws8d{word-spacing:-16.485333pt;}
.ws72{word-spacing:-16.464000pt;}
.ws53{word-spacing:-16.408000pt;}
.ws5e{word-spacing:-16.352000pt;}
.ws5d{word-spacing:-16.296000pt;}
.ws6b{word-spacing:-16.240000pt;}
.ws67{word-spacing:-16.192000pt;}
.ws52{word-spacing:-16.184000pt;}
.ws2a{word-spacing:-16.128000pt;}
.ws8f{word-spacing:-16.074667pt;}
.ws5b{word-spacing:-16.072000pt;}
.ws5a{word-spacing:-16.016000pt;}
.ws33{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.936000pt;}
.ws7a{word-spacing:-15.904000pt;}
.ws81{word-spacing:-15.848000pt;}
.ws16{word-spacing:-15.808000pt;}
.ws5c{word-spacing:-15.792000pt;}
.ws50{word-spacing:-15.736000pt;}
.ws3e{word-spacing:-15.680000pt;}
.ws54{word-spacing:-15.624000pt;}
.ws17{word-spacing:-15.616000pt;}
.ws68{word-spacing:-15.568000pt;}
.ws22{word-spacing:-15.552000pt;}
.ws51{word-spacing:-15.512000pt;}
.ws21{word-spacing:-15.488000pt;}
.ws66{word-spacing:-15.456000pt;}
.ws70{word-spacing:-15.400000pt;}
.ws6f{word-spacing:-15.288000pt;}
.ws69{word-spacing:-15.176000pt;}
.ws87{word-spacing:-15.064000pt;}
.ws6a{word-spacing:-15.008000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws65{word-spacing:-14.896000pt;}
.ws97{word-spacing:-14.725333pt;}
.ws95{word-spacing:-14.490667pt;}
.ws4{word-spacing:-14.256000pt;}
.ws7f{word-spacing:-14.000000pt;}
.ws78{word-spacing:-13.832000pt;}
.ws3{word-spacing:-13.669333pt;}
.ws80{word-spacing:-13.440000pt;}
.ws2b{word-spacing:-10.790400pt;}
.ws34{word-spacing:-10.636800pt;}
.ws98{word-spacing:-10.618667pt;}
.ws32{word-spacing:-10.598400pt;}
.ws9a{word-spacing:-10.560000pt;}
.ws8e{word-spacing:-9.891200pt;}
.ws9e{word-spacing:-9.738667pt;}
.wsaa{word-spacing:-9.715200pt;}
.wsa2{word-spacing:-9.445333pt;}
.ws9{word-spacing:-9.066667pt;}
.wsa0{word-spacing:-8.741333pt;}
.ws6e{word-spacing:-8.344000pt;}
.ws2f{word-spacing:-6.400000pt;}
.ws7{word-spacing:-5.866667pt;}
.wsa4{word-spacing:-5.333333pt;}
.wsa{word-spacing:-4.693333pt;}
.ws5{word-spacing:-3.733333pt;}
.ws4f{word-spacing:-3.200000pt;}
.ws6d{word-spacing:-2.520000pt;}
.ws49{word-spacing:-1.600000pt;}
.ws29{word-spacing:-1.408000pt;}
.ws88{word-spacing:-1.344000pt;}
.ws4e{word-spacing:-1.216000pt;}
.ws77{word-spacing:-1.176000pt;}
.ws28{word-spacing:-1.024000pt;}
.ws4d{word-spacing:-0.960000pt;}
.ws8b{word-spacing:-0.952000pt;}
.ws99{word-spacing:-0.880000pt;}
.ws30{word-spacing:-0.832000pt;}
.ws9b{word-spacing:-0.821333pt;}
.ws85{word-spacing:-0.784000pt;}
.ws44{word-spacing:-0.768000pt;}
.ws5f{word-spacing:-0.728000pt;}
.ws1f{word-spacing:-0.704000pt;}
.ws84{word-spacing:-0.672000pt;}
.ws18{word-spacing:-0.640000pt;}
.wsa9{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.576000pt;}
.ws62{word-spacing:-0.560000pt;}
.ws46{word-spacing:-0.512000pt;}
.ws61{word-spacing:-0.504000pt;}
.ws13{word-spacing:-0.469333pt;}
.ws15{word-spacing:-0.448000pt;}
.wsa8{word-spacing:-0.410667pt;}
.ws57{word-spacing:-0.392000pt;}
.ws23{word-spacing:-0.384000pt;}
.ws60{word-spacing:-0.336000pt;}
.ws19{word-spacing:-0.320000pt;}
.ws12{word-spacing:-0.293333pt;}
.ws74{word-spacing:-0.280000pt;}
.ws1e{word-spacing:-0.256000pt;}
.wsa6{word-spacing:-0.234667pt;}
.ws58{word-spacing:-0.224000pt;}
.ws1c{word-spacing:-0.192000pt;}
.wsac{word-spacing:-0.176000pt;}
.ws8a{word-spacing:-0.168000pt;}
.ws2d{word-spacing:-0.128000pt;}
.wsae{word-spacing:-0.117333pt;}
.ws56{word-spacing:-0.112000pt;}
.ws2c{word-spacing:-0.064000pt;}
.wsd{word-spacing:-0.058667pt;}
.ws75{word-spacing:-0.056000pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:0.058667pt;}
.ws2e{word-spacing:0.064000pt;}
.ws55{word-spacing:0.112000pt;}
.wsa3{word-spacing:0.117333pt;}
.ws41{word-spacing:0.128000pt;}
.wsa7{word-spacing:0.176000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws7b{word-spacing:0.224000pt;}
.ws94{word-spacing:0.234667pt;}
.ws1d{word-spacing:0.256000pt;}
.ws6c{word-spacing:0.280000pt;}
.ws14{word-spacing:0.293333pt;}
.ws8{word-spacing:0.320000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws86{word-spacing:0.392000pt;}
.ws93{word-spacing:0.410667pt;}
.ws24{word-spacing:0.448000pt;}
.wsf{word-spacing:0.469333pt;}
.ws45{word-spacing:0.512000pt;}
.ws9d{word-spacing:0.528000pt;}
.ws63{word-spacing:0.560000pt;}
.ws48{word-spacing:0.576000pt;}
.ws9c{word-spacing:0.586667pt;}
.ws64{word-spacing:0.616000pt;}
.ws31{word-spacing:0.640000pt;}
.wsad{word-spacing:0.645333pt;}
.ws89{word-spacing:0.672000pt;}
.wsb{word-spacing:0.704000pt;}
.ws7c{word-spacing:0.728000pt;}
.ws4c{word-spacing:0.768000pt;}
.ws7d{word-spacing:0.784000pt;}
.ws4a{word-spacing:0.832000pt;}
.ws7e{word-spacing:0.840000pt;}
.ws10{word-spacing:0.880000pt;}
.ws26{word-spacing:0.896000pt;}
.ws11{word-spacing:0.938667pt;}
.wsa1{word-spacing:0.997333pt;}
.ws25{word-spacing:1.024000pt;}
.wsc{word-spacing:1.056000pt;}
.ws91{word-spacing:2.288000pt;}
.ws90{word-spacing:2.496000pt;}
.ws40{word-spacing:2.880000pt;}
.ws3b{word-spacing:3.008000pt;}
.ws9f{word-spacing:3.637333pt;}
.ws76{word-spacing:3.640000pt;}
.ws92{word-spacing:3.872000pt;}
.wsa5{word-spacing:4.480000pt;}
.ws3d{word-spacing:6.080000pt;}
.ws83{word-spacing:6.104000pt;}
.ws3c{word-spacing:6.400000pt;}
.ws82{word-spacing:6.552000pt;}
.ws47{word-spacing:7.040000pt;}
.ws4b{word-spacing:7.232000pt;}
.ws36{word-spacing:7.360000pt;}
.ws20{word-spacing:7.872000pt;}
.ws79{word-spacing:9.072000pt;}
._7{margin-left:-14.852267pt;}
._19{margin-left:-13.052800pt;}
._17{margin-left:-11.843733pt;}
._18{margin-left:-10.817333pt;}
._1b{margin-left:-9.521067pt;}
._9{margin-left:-8.534400pt;}
._b{margin-left:-7.262400pt;}
._15{margin-left:-6.332800pt;}
._5{margin-left:-5.349333pt;}
._e{margin-left:-4.139733pt;}
._4{margin-left:-3.040000pt;}
._6{margin-left:-2.052267pt;}
._1{margin-left:-1.105067pt;}
._3{width:0.978133pt;}
._d{width:2.283733pt;}
._0{width:3.733333pt;}
._c{width:4.693333pt;}
._11{width:5.614933pt;}
._10{width:6.509867pt;}
._f{width:7.685867pt;}
._a{width:9.066667pt;}
._2{width:10.008533pt;}
._12{width:10.906667pt;}
._14{width:12.188800pt;}
._13{width:13.191467pt;}
._8{width:14.899200pt;}
._16{width:16.417600pt;}
._1c{width:19.174400pt;}
._1a{width:24.416000pt;}
._1d{width:28.912000pt;}
.fs8{font-size:33.600000pt;}
.fs9{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y166{bottom:124.706533pt;}
.yf2{bottom:126.142533pt;}
.y13f{bottom:126.781200pt;}
.yd2{bottom:127.114933pt;}
.y1a0{bottom:127.410667pt;}
.y17d{bottom:127.425200pt;}
.y254{bottom:128.000800pt;}
.yad{bottom:128.046533pt;}
.y29c{bottom:128.141733pt;}
.y21{bottom:128.438400pt;}
.yae{bottom:128.634933pt;}
.y46{bottom:128.736267pt;}
.y1c6{bottom:128.749200pt;}
.y90{bottom:129.034933pt;}
.y6b{bottom:129.290933pt;}
.y8e{bottom:129.337200pt;}
.y20d{bottom:129.467333pt;}
.y118{bottom:129.617867pt;}
.y232{bottom:129.814133pt;}
.y1ea{bottom:130.111067pt;}
.y13e{bottom:142.909200pt;}
.y17c{bottom:143.021200pt;}
.y165{bottom:143.106533pt;}
.y29b{bottom:144.141733pt;}
.y253{bottom:145.336800pt;}
.yf1{bottom:145.342533pt;}
.yd1{bottom:145.786933pt;}
.y19f{bottom:145.938667pt;}
.y1e9{bottom:145.973067pt;}
.y20{bottom:146.966400pt;}
.yac{bottom:147.774533pt;}
.y8f{bottom:147.834933pt;}
.y20c{bottom:147.867333pt;}
.y231{bottom:147.942133pt;}
.y1c5{bottom:147.949200pt;}
.y6a{bottom:147.962933pt;}
.y45{bottom:148.064267pt;}
.y117{bottom:148.689867pt;}
.y8d{bottom:149.065200pt;}
.y17b{bottom:158.617200pt;}
.y13d{bottom:159.037200pt;}
.y29a{bottom:160.141733pt;}
.y164{bottom:161.506533pt;}
.y1e8{bottom:161.835067pt;}
.yd0{bottom:164.458933pt;}
.y19e{bottom:164.472133pt;}
.yf0{bottom:164.542533pt;}
.y1f{bottom:165.494400pt;}
.y230{bottom:166.070133pt;}
.y20b{bottom:166.267333pt;}
.y69{bottom:166.634933pt;}
.y1c4{bottom:167.149200pt;}
.y44{bottom:167.392267pt;}
.yab{bottom:167.502533pt;}
.y116{bottom:167.761867pt;}
.y8c{bottom:168.793200pt;}
.y277{bottom:171.254933pt;}
.y17a{bottom:174.213200pt;}
.y13c{bottom:175.165200pt;}
.y299{bottom:176.141733pt;}
.y1e7{bottom:177.697067pt;}
.y163{bottom:179.778533pt;}
.y252{bottom:181.870133pt;}
.ycf{bottom:183.130933pt;}
.y22f{bottom:184.198133pt;}
.y20a{bottom:184.667333pt;}
.y68{bottom:185.434933pt;}
.y1c3{bottom:186.349200pt;}
.y43{bottom:186.720267pt;}
.y115{bottom:186.833867pt;}
.yaa{bottom:187.230533pt;}
.y276{bottom:187.254933pt;}
.y8b{bottom:187.865200pt;}
.y179{bottom:189.809200pt;}
.y13b{bottom:191.293200pt;}
.y1e{bottom:191.586800pt;}
.y298{bottom:192.141733pt;}
.y1e6{bottom:193.559067pt;}
.yef{bottom:197.075867pt;}
.y162{bottom:198.050533pt;}
.yce{bottom:201.802933pt;}
.y22e{bottom:202.326133pt;}
.y209{bottom:203.136667pt;}
.y275{bottom:203.254933pt;}
.y67{bottom:204.234933pt;}
.y178{bottom:205.811200pt;}
.y114{bottom:205.905867pt;}
.y42{bottom:206.048267pt;}
.ya9{bottom:206.830533pt;}
.y8a{bottom:206.937200pt;}
.y13a{bottom:207.421200pt;}
.y19d{bottom:208.104000pt;}
.y1e5{bottom:209.421067pt;}
.y161{bottom:216.322533pt;}
.y1c2{bottom:216.967867pt;}
.y251{bottom:218.670133pt;}
.y274{bottom:219.254933pt;}
.y22d{bottom:220.454133pt;}
.ycd{bottom:220.474933pt;}
.y177{bottom:221.813200pt;}
.y208{bottom:221.936667pt;}
.y66{bottom:223.034933pt;}
.y19c{bottom:223.434000pt;}
.y113{bottom:224.977867pt;}
.y1e4{bottom:225.283067pt;}
.y41{bottom:225.376267pt;}
.ya8{bottom:225.902533pt;}
.y89{bottom:225.987867pt;}
.y297{bottom:227.341733pt;}
.y1c1{bottom:232.563867pt;}
.y160{bottom:234.594533pt;}
.y139{bottom:234.925067pt;}
.y273{bottom:235.254933pt;}
.y176{bottom:237.815200pt;}
.y250{bottom:237.870133pt;}
.y22c{bottom:238.186133pt;}
.y19b{bottom:238.764000pt;}
.ycc{bottom:239.274933pt;}
.y207{bottom:240.736667pt;}
.y1e3{bottom:241.019067pt;}
.y65{bottom:241.834933pt;}
.yee{bottom:242.942533pt;}
.y112{bottom:244.044533pt;}
.y40{bottom:244.704267pt;}
.y296{bottom:244.941733pt;}
.ya7{bottom:244.974533pt;}
.y88{bottom:245.059867pt;}
.y1d{bottom:247.140000pt;}
.y1c0{bottom:248.159867pt;}
.y15f{bottom:252.866533pt;}
.y175{bottom:253.817200pt;}
.y19a{bottom:254.094000pt;}
.y138{bottom:254.253067pt;}
.y1e2{bottom:256.755067pt;}
.y24f{bottom:257.070133pt;}
.y22b{bottom:257.507467pt;}
.ycb{bottom:258.074933pt;}
.y206{bottom:259.664667pt;}
.y64{bottom:260.634933pt;}
.yed{bottom:262.142533pt;}
.y1bf{bottom:263.755867pt;}
.y3f{bottom:264.032267pt;}
.ya6{bottom:264.046533pt;}
.y1c{bottom:264.080000pt;}
.y87{bottom:264.131867pt;}
.y272{bottom:267.121600pt;}
.y199{bottom:269.424000pt;}
.y174{bottom:269.819200pt;}
.y15e{bottom:271.138533pt;}
.y1e1{bottom:272.491067pt;}
.y137{bottom:273.581067pt;}
.y22a{bottom:275.239467pt;}
.yca{bottom:277.002933pt;}
.y205{bottom:278.592667pt;}
.y111{bottom:278.967200pt;}
.y1be{bottom:279.351867pt;}
.y63{bottom:279.434933pt;}
.y1b{bottom:281.020000pt;}
.yec{bottom:281.342533pt;}
.y295{bottom:281.716400pt;}
.ya5{bottom:283.118533pt;}
.y86{bottom:283.203867pt;}
.y3e{bottom:283.360267pt;}
.y271{bottom:284.721600pt;}
.y198{bottom:284.754000pt;}
.y173{bottom:285.821200pt;}
.y1e0{bottom:288.227067pt;}
.y15d{bottom:289.410533pt;}
.y229{bottom:292.707467pt;}
.y136{bottom:292.909067pt;}
.y1bd{bottom:294.947867pt;}
.yc9{bottom:295.930933pt;}
.y204{bottom:297.520667pt;}
.y1a{bottom:297.960000pt;}
.y110{bottom:298.039200pt;}
.y62{bottom:298.234933pt;}
.y294{bottom:299.184400pt;}
.y197{bottom:300.084000pt;}
.yeb{bottom:300.542533pt;}
.ya4{bottom:302.190533pt;}
.y85{bottom:302.275867pt;}
.y3d{bottom:302.688267pt;}
.y1df{bottom:303.963067pt;}
.y24e{bottom:305.070800pt;}
.y15c{bottom:307.682533pt;}
.y228{bottom:310.175467pt;}
.y1bc{bottom:310.543867pt;}
.y135{bottom:312.237067pt;}
.y172{bottom:313.159733pt;}
.yc8{bottom:314.858933pt;}
.y19{bottom:314.900000pt;}
.y196{bottom:315.414000pt;}
.y203{bottom:316.448667pt;}
.y293{bottom:316.652400pt;}
.y61{bottom:317.034933pt;}
.y10f{bottom:317.111200pt;}
.yea{bottom:319.742533pt;}
.y24d{bottom:320.536800pt;}
.ya3{bottom:321.262533pt;}
.y270{bottom:321.633600pt;}
.y3c{bottom:322.016267pt;}
.y15b{bottom:325.949200pt;}
.y1bb{bottom:326.139867pt;}
.y227{bottom:327.643467pt;}
.y84{bottom:328.901600pt;}
.y195{bottom:330.744000pt;}
.y1de{bottom:331.114933pt;}
.y134{bottom:331.565067pt;}
.y18{bottom:331.840000pt;}
.y171{bottom:331.959733pt;}
.yc7{bottom:333.786933pt;}
.y292{bottom:334.120400pt;}
.y202{bottom:335.376667pt;}
.y60{bottom:335.834933pt;}
.y24c{bottom:335.979600pt;}
.ye9{bottom:338.942533pt;}
.y26f{bottom:339.629600pt;}
.ya2{bottom:340.334533pt;}
.y3b{bottom:341.344267pt;}
.y1ba{bottom:341.735867pt;}
.y226{bottom:345.111467pt;}
.y10e{bottom:347.609733pt;}
.y17{bottom:348.780000pt;}
.y1dd{bottom:350.042933pt;}
.y170{bottom:350.759733pt;}
.y133{bottom:350.893067pt;}
.y291{bottom:351.588400pt;}
.yc6{bottom:352.714933pt;}
.y24b{bottom:353.447600pt;}
.y201{bottom:354.304667pt;}
.y5f{bottom:354.634933pt;}
.y1b9{bottom:357.331867pt;}
.y194{bottom:357.447867pt;}
.y26e{bottom:357.625600pt;}
.ye8{bottom:358.142533pt;}
.ya1{bottom:359.406533pt;}
.y3a{bottom:360.672267pt;}
.y225{bottom:362.579467pt;}
.y10d{bottom:363.471733pt;}
.y16{bottom:365.720000pt;}
.y83{bottom:366.906933pt;}
.y1dc{bottom:368.970933pt;}
.y290{bottom:369.056400pt;}
.y16f{bottom:369.559733pt;}
.y132{bottom:370.226400pt;}
.y24a{bottom:370.915600pt;}
.yc5{bottom:371.642933pt;}
.y15a{bottom:372.254533pt;}
.y1b8{bottom:372.927867pt;}
.y200{bottom:373.232667pt;}
.y5e{bottom:373.434933pt;}
.y26d{bottom:375.621600pt;}
.y193{bottom:375.975867pt;}
.ye7{bottom:377.342533pt;}
.ya0{bottom:378.478533pt;}
.y10c{bottom:379.333733pt;}
.y39{bottom:380.000267pt;}
.y224{bottom:380.047467pt;}
.y82{bottom:385.978933pt;}
.y28f{bottom:386.524400pt;}
.y159{bottom:387.584533pt;}
.y1db{bottom:387.898933pt;}
.y16e{bottom:388.359733pt;}
.y249{bottom:388.383600pt;}
.y1b7{bottom:388.523867pt;}
.y15{bottom:390.212400pt;}
.yc4{bottom:390.570933pt;}
.y1ff{bottom:392.160667pt;}
.y5d{bottom:392.234933pt;}
.y26c{bottom:393.617600pt;}
.y192{bottom:394.503867pt;}
.y10b{bottom:395.195733pt;}
.ye6{bottom:396.542533pt;}
.y223{bottom:397.515467pt;}
.y9f{bottom:397.550533pt;}
.y38{bottom:399.328267pt;}
.y158{bottom:402.914533pt;}
.y28e{bottom:403.992400pt;}
.y1b6{bottom:404.119867pt;}
.y81{bottom:405.050933pt;}
.y248{bottom:405.851600pt;}
.y1da{bottom:406.826933pt;}
.y16d{bottom:407.159733pt;}
.y131{bottom:407.325067pt;}
.yc3{bottom:409.498933pt;}
.y5c{bottom:411.034933pt;}
.y10a{bottom:411.057733pt;}
.y1fe{bottom:411.088667pt;}
.y26b{bottom:411.613600pt;}
.y191{bottom:413.031867pt;}
.y222{bottom:414.979467pt;}
.y9e{bottom:416.622533pt;}
.y157{bottom:418.244533pt;}
.y37{bottom:418.656267pt;}
.y1b5{bottom:419.715867pt;}
.y28d{bottom:421.460400pt;}
.ye5{bottom:423.301600pt;}
.y247{bottom:423.319600pt;}
.y80{bottom:424.122933pt;}
.y1d9{bottom:425.754933pt;}
.y16c{bottom:425.959733pt;}
.y130{bottom:426.653067pt;}
.y109{bottom:426.919733pt;}
.y14{bottom:427.245867pt;}
.yc2{bottom:428.426933pt;}
.y26a{bottom:429.609600pt;}
.y5b{bottom:429.834933pt;}
.y1fd{bottom:430.016667pt;}
.y190{bottom:431.559867pt;}
.y221{bottom:432.447467pt;}
.y156{bottom:433.574533pt;}
.y1b4{bottom:435.311867pt;}
.y9d{bottom:435.694533pt;}
.y36{bottom:437.984267pt;}
.y28c{bottom:438.928400pt;}
.y246{bottom:440.787600pt;}
.y108{bottom:442.781733pt;}
.y7f{bottom:443.194933pt;}
.y13{bottom:444.185867pt;}
.y1d8{bottom:444.682933pt;}
.y12f{bottom:445.981067pt;}
.yc1{bottom:447.354933pt;}
.y269{bottom:447.605600pt;}
.y5a{bottom:448.634933pt;}
.y155{bottom:448.904533pt;}
.y1fc{bottom:448.944667pt;}
.y220{bottom:449.915467pt;}
.y18f{bottom:450.087867pt;}
.y1b3{bottom:450.907867pt;}
.y9c{bottom:454.766533pt;}
.y28b{bottom:456.396400pt;}
.y35{bottom:457.312267pt;}
.y245{bottom:458.255600pt;}
.y107{bottom:458.643733pt;}
.y12{bottom:461.125867pt;}
.y7e{bottom:462.266933pt;}
.y1d7{bottom:463.610933pt;}
.y154{bottom:464.234533pt;}
.y12e{bottom:465.309067pt;}
.y268{bottom:465.601600pt;}
.yc0{bottom:466.282933pt;}
.y1b2{bottom:466.503867pt;}
.y21f{bottom:467.379467pt;}
.y59{bottom:467.434933pt;}
.y1fb{bottom:467.872667pt;}
.y18e{bottom:468.615867pt;}
.y9b{bottom:473.838533pt;}
.y28a{bottom:473.864400pt;}
.y16b{bottom:473.921067pt;}
.y106{bottom:474.505733pt;}
.y244{bottom:475.723600pt;}
.y34{bottom:476.640267pt;}
.y11{bottom:478.065867pt;}
.y153{bottom:479.564533pt;}
.ye4{bottom:480.570933pt;}
.y7d{bottom:481.338933pt;}
.y1b1{bottom:482.099867pt;}
.y1d6{bottom:482.538933pt;}
.y267{bottom:483.597600pt;}
.y12d{bottom:484.637067pt;}
.y21e{bottom:484.847467pt;}
.ybf{bottom:485.210933pt;}
.y58{bottom:486.234933pt;}
.y1fa{bottom:486.806000pt;}
.y18d{bottom:487.149200pt;}
.y16a{bottom:489.923067pt;}
.y105{bottom:490.367733pt;}
.y289{bottom:491.332400pt;}
.y9a{bottom:492.910533pt;}
.y243{bottom:493.191600pt;}
.y152{bottom:494.894533pt;}
.y10{bottom:495.005867pt;}
.y33{bottom:496.058933pt;}
.y1b0{bottom:497.695867pt;}
.ye3{bottom:499.642933pt;}
.y7c{bottom:500.410933pt;}
.y1d5{bottom:501.466933pt;}
.y266{bottom:501.593600pt;}
.y21d{bottom:502.315467pt;}
.y12c{bottom:503.965067pt;}
.ybe{bottom:504.138933pt;}
.y57{bottom:505.034933pt;}
.y1f9{bottom:505.734000pt;}
.y169{bottom:505.925067pt;}
.y104{bottom:506.229733pt;}
.y288{bottom:508.800400pt;}
.y151{bottom:510.224533pt;}
.y242{bottom:510.659600pt;}
.yf{bottom:511.945867pt;}
.y99{bottom:511.982533pt;}
.y1af{bottom:513.291867pt;}
.y32{bottom:515.386933pt;}
.ye2{bottom:518.714933pt;}
.y7b{bottom:519.482933pt;}
.y265{bottom:519.589600pt;}
.y21c{bottom:519.783467pt;}
.y1d4{bottom:520.394933pt;}
.y168{bottom:521.927067pt;}
.y103{bottom:522.091733pt;}
.ybd{bottom:523.066933pt;}
.y12b{bottom:523.293067pt;}
.y56{bottom:523.834933pt;}
.y150{bottom:525.554533pt;}
.y287{bottom:526.268400pt;}
.y241{bottom:528.127600pt;}
.y1ae{bottom:528.887867pt;}
.y98{bottom:531.054533pt;}
.y1f8{bottom:532.226400pt;}
.y18c{bottom:533.971200pt;}
.y31{bottom:534.714933pt;}
.ye{bottom:536.438133pt;}
.y264{bottom:537.585600pt;}
.ye1{bottom:537.786933pt;}
.y167{bottom:537.929067pt;}
.y102{bottom:537.953733pt;}
.y7a{bottom:538.554933pt;}
.y1d3{bottom:539.322933pt;}
.ybc{bottom:541.994933pt;}
.y55{bottom:542.634933pt;}
.y286{bottom:543.736400pt;}
.y21b{bottom:544.809200pt;}
.y240{bottom:545.595600pt;}
.y18b{bottom:549.301200pt;}
.y97{bottom:550.126533pt;}
.y14f{bottom:552.199733pt;}
.y101{bottom:553.815733pt;}
.y12a{bottom:553.931067pt;}
.y30{bottom:554.042933pt;}
.y263{bottom:555.581600pt;}
.y1ad{bottom:555.826400pt;}
.ye0{bottom:556.858933pt;}
.y79{bottom:557.626933pt;}
.y1d2{bottom:558.250933pt;}
.ybb{bottom:560.922933pt;}
.y285{bottom:561.204400pt;}
.y54{bottom:561.434933pt;}
.y23f{bottom:563.063600pt;}
.y18a{bottom:564.631200pt;}
.y96{bottom:569.198533pt;}
.y100{bottom:569.677733pt;}
.y129{bottom:569.933067pt;}
.y14e{bottom:570.471733pt;}
.y2f{bottom:573.370933pt;}
.y262{bottom:573.577600pt;}
.y1ac{bottom:574.626400pt;}
.ydf{bottom:575.930933pt;}
.y78{bottom:576.698933pt;}
.y1d1{bottom:577.178933pt;}
.y284{bottom:578.672400pt;}
.yba{bottom:579.850933pt;}
.y189{bottom:579.961200pt;}
.y53{bottom:580.234933pt;}
.y23e{bottom:580.531600pt;}
.y1f7{bottom:582.173733pt;}
.yff{bottom:585.539733pt;}
.y128{bottom:585.935067pt;}
.y21a{bottom:587.098933pt;}
.y95{bottom:588.270533pt;}
.y14d{bottom:588.743733pt;}
.y261{bottom:591.573600pt;}
.yd{bottom:591.764800pt;}
.y2e{bottom:592.698933pt;}
.y1ab{bottom:593.426400pt;}
.yde{bottom:595.002933pt;}
.y188{bottom:595.291200pt;}
.y77{bottom:595.770933pt;}
.y1d0{bottom:596.106933pt;}
.y283{bottom:596.140400pt;}
.y23d{bottom:597.999600pt;}
.y1f6{bottom:598.567733pt;}
.yb9{bottom:598.778933pt;}
.y52{bottom:599.034933pt;}
.yfe{bottom:601.401733pt;}
.y127{bottom:601.937067pt;}
.y219{bottom:605.370933pt;}
.y14c{bottom:607.015733pt;}
.y94{bottom:607.342533pt;}
.yc{bottom:608.704800pt;}
.y260{bottom:609.569600pt;}
.y187{bottom:610.621200pt;}
.y2d{bottom:612.026933pt;}
.y1aa{bottom:612.226400pt;}
.y282{bottom:613.598933pt;}
.ydd{bottom:614.074933pt;}
.y76{bottom:614.842933pt;}
.y1f5{bottom:614.961733pt;}
.y1cf{bottom:615.034933pt;}
.y23c{bottom:615.467600pt;}
.yfd{bottom:617.263733pt;}
.yb8{bottom:617.706933pt;}
.y51{bottom:617.834933pt;}
.y126{bottom:617.939067pt;}
.y218{bottom:623.642933pt;}
.y14b{bottom:625.287733pt;}
.y25f{bottom:627.565600pt;}
.y1a9{bottom:631.026400pt;}
.y281{bottom:631.066933pt;}
.y2c{bottom:631.354933pt;}
.y1f4{bottom:631.355733pt;}
.y23b{bottom:632.935600pt;}
.yfc{bottom:633.125733pt;}
.ydc{bottom:633.146933pt;}
.y75{bottom:633.914933pt;}
.y125{bottom:633.941067pt;}
.y93{bottom:633.968267pt;}
.y50{bottom:636.634933pt;}
.y186{bottom:637.319733pt;}
.y217{bottom:641.914933pt;}
.y14a{bottom:643.559733pt;}
.yb{bottom:644.162133pt;}
.y25e{bottom:645.561600pt;}
.y1ce{bottom:647.034933pt;}
.y1f3{bottom:647.749733pt;}
.y280{bottom:648.534933pt;}
.yfb{bottom:648.987733pt;}
.y1a8{bottom:649.826400pt;}
.y124{bottom:649.943067pt;}
.y23a{bottom:650.403600pt;}
.y2b{bottom:650.682933pt;}
.ydb{bottom:652.218933pt;}
.y74{bottom:652.986933pt;}
.y4f{bottom:655.434933pt;}
.yb7{bottom:655.562933pt;}
.y185{bottom:655.847733pt;}
.y216{bottom:660.186933pt;}
.y25d{bottom:663.557600pt;}
.y1f2{bottom:664.143733pt;}
.yfa{bottom:664.849733pt;}
.y123{bottom:665.945067pt;}
.y27f{bottom:666.002933pt;}
.y1a7{bottom:668.626400pt;}
.y2a{bottom:670.010933pt;}
.ya{bottom:670.704800pt;}
.yda{bottom:671.290933pt;}
.y73{bottom:672.058933pt;}
.y149{bottom:673.197067pt;}
.y4e{bottom:674.234933pt;}
.y184{bottom:674.375733pt;}
.yb6{bottom:674.490933pt;}
.y239{bottom:675.429333pt;}
.y215{bottom:678.458933pt;}
.y1f1{bottom:680.537733pt;}
.y25c{bottom:681.553600pt;}
.y122{bottom:681.947067pt;}
.y27e{bottom:683.470933pt;}
.y148{bottom:688.527067pt;}
.y29{bottom:689.338933pt;}
.yd9{bottom:690.362933pt;}
.y72{bottom:691.130933pt;}
.y92{bottom:691.157600pt;}
.yf9{bottom:692.022933pt;}
.y1cd{bottom:692.138933pt;}
.y183{bottom:692.903733pt;}
.y4d{bottom:693.034933pt;}
.yb5{bottom:693.418933pt;}
.y214{bottom:696.730933pt;}
.y1f0{bottom:696.931733pt;}
.y121{bottom:697.949067pt;}
.y25b{bottom:699.549600pt;}
.y1a6{bottom:700.359733pt;}
.y27d{bottom:700.938933pt;}
.y147{bottom:703.857067pt;}
.y28{bottom:708.666933pt;}
.yd8{bottom:709.434933pt;}
.y71{bottom:710.202933pt;}
.y91{bottom:710.229600pt;}
.y1cc{bottom:711.066933pt;}
.yf8{bottom:711.094933pt;}
.y182{bottom:711.431733pt;}
.y4c{bottom:711.834933pt;}
.yb4{bottom:712.346933pt;}
.y1ef{bottom:713.325733pt;}
.y120{bottom:713.951067pt;}
.y213{bottom:715.002933pt;}
.y25a{bottom:717.545600pt;}
.y238{bottom:718.337600pt;}
.y27c{bottom:718.406933pt;}
.y9{bottom:719.159467pt;}
.y1a5{bottom:719.159733pt;}
.y146{bottom:719.187067pt;}
.y27{bottom:727.994933pt;}
.yd7{bottom:728.634933pt;}
.y70{bottom:729.274933pt;}
.y1ee{bottom:729.719733pt;}
.y11f{bottom:729.953067pt;}
.y181{bottom:729.959733pt;}
.y1cb{bottom:729.994933pt;}
.yf7{bottom:730.166933pt;}
.y4b{bottom:730.634933pt;}
.yb3{bottom:731.274933pt;}
.y212{bottom:733.274933pt;}
.y8{bottom:734.492800pt;}
.y145{bottom:734.517067pt;}
.y259{bottom:735.541600pt;}
.y27b{bottom:735.874933pt;}
.y237{bottom:736.201600pt;}
.y11e{bottom:745.955067pt;}
.y1ed{bottom:746.113733pt;}
.y26{bottom:747.322933pt;}
.yd6{bottom:747.834933pt;}
.y6f{bottom:748.346933pt;}
.y180{bottom:748.493067pt;}
.y1ca{bottom:748.922933pt;}
.yf6{bottom:749.238933pt;}
.y4a{bottom:749.434933pt;}
.y7{bottom:749.826133pt;}
.y6{bottom:749.828267pt;}
.y144{bottom:749.847067pt;}
.yb2{bottom:749.946933pt;}
.y211{bottom:751.546933pt;}
.y258{bottom:753.537600pt;}
.y236{bottom:754.065600pt;}
.y11d{bottom:761.957067pt;}
.y1ec{bottom:762.507733pt;}
.y1a4{bottom:762.517067pt;}
.y143{bottom:765.177067pt;}
.y25{bottom:766.650933pt;}
.yd5{bottom:767.034933pt;}
.y6e{bottom:767.418933pt;}
.y1c9{bottom:767.850933pt;}
.y49{bottom:768.234933pt;}
.yf5{bottom:768.310933pt;}
.yb1{bottom:768.618933pt;}
.y210{bottom:769.818933pt;}
.y257{bottom:771.533600pt;}
.y235{bottom:771.929600pt;}
.y27a{bottom:772.408400pt;}
.y11c{bottom:777.959067pt;}
.y1eb{bottom:778.369733pt;}
.y1a3{bottom:778.379067pt;}
.y5{bottom:779.521600pt;}
.y142{bottom:780.507067pt;}
.y24{bottom:785.978933pt;}
.yd4{bottom:786.234933pt;}
.y6d{bottom:786.490933pt;}
.y1c8{bottom:786.778933pt;}
.y48{bottom:787.034933pt;}
.yb0{bottom:787.290933pt;}
.yf4{bottom:787.382933pt;}
.y20f{bottom:788.090933pt;}
.y256{bottom:789.529600pt;}
.y234{bottom:789.793600pt;}
.y11b{bottom:793.961067pt;}
.y1a2{bottom:794.241067pt;}
.y4{bottom:794.854933pt;}
.y17f{bottom:795.305067pt;}
.y141{bottom:795.837067pt;}
.y23{bottom:805.306933pt;}
.yd3{bottom:805.434933pt;}
.y6c{bottom:805.562933pt;}
.y1c7{bottom:805.706933pt;}
.y47{bottom:805.834933pt;}
.yaf{bottom:805.962933pt;}
.y20e{bottom:806.362933pt;}
.yf3{bottom:806.454933pt;}
.y279{bottom:807.341733pt;}
.y255{bottom:807.525600pt;}
.y233{bottom:807.657600pt;}
.y11a{bottom:809.963067pt;}
.y1a1{bottom:810.103067pt;}
.y3{bottom:810.188267pt;}
.y17e{bottom:810.635067pt;}
.y140{bottom:811.167067pt;}
.y22{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y119{bottom:825.965067pt;}
.y278{bottom:826.408400pt;}
.h8{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.hf{height:39.101562pt;}
.h9{height:42.656250pt;}
.h10{height:43.022135pt;}
.h5{height:45.286458pt;}
.hc{height:47.550781pt;}
.h4{height:49.815104pt;}
.hd{height:49.831104pt;}
.he{height:49.852437pt;}
.h11{height:49.852971pt;}
.h7{height:54.343750pt;}
.ha{height:54.429083pt;}
.hb{height:54.450417pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.xc{left:81.273067pt;}
.x9{left:86.929200pt;}
.x6{left:96.379200pt;}
.xd{left:100.154400pt;}
.xa{left:105.825200pt;}
.xb{left:124.740800pt;}
.x4{left:126.414267pt;}
.x10{left:177.146267pt;}
.x8{left:208.826667pt;}
.x1{left:247.367200pt;}
.x7{left:339.276267pt;}
.x5{left:346.362267pt;}
.xf{left:452.227333pt;}
.xe{left:460.194667pt;}
.x2{left:515.257200pt;}
}




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