
    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_a28ce1f5032acdc18843cc34.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_ba845be3a5c7bb332721afac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_0cebf6518ec3ace6bc82343d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_ed0233a5da20b82cf0e3bd64.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_421ad8dcdf0f7f6b73821d30.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_f55f6691a175d74184403f46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860352;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_aba7138a97156aa9d73ee3fa.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.976000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.978000px;}
.v1{vertical-align:23.976000px;}
.v5{vertical-align:36.000000px;}
.va{vertical-align:45.841200px;}
.v8{vertical-align:55.275600px;}
.v9{vertical-align:59.527800px;}
.v6{vertical-align:66.000000px;}
.v7{vertical-align:132.000000px;}
.lsa{letter-spacing:-4.440000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.002400px;}
.ls2{letter-spacing:0.005520px;}
.ls4{letter-spacing:0.005832px;}
.ls1{letter-spacing:0.006144px;}
.ls0{letter-spacing:0.006744px;}
.lsf{letter-spacing:0.858000px;}
.lsd{letter-spacing:0.990000px;}
.lsc{letter-spacing:1.518000px;}
.lse{letter-spacing:1.848000px;}
.ls10{letter-spacing:2.244000px;}
.lsb{letter-spacing:8.798400px;}
.ls6{letter-spacing:240.250200px;}
.ls9{letter-spacing:246.488400px;}
.ls8{letter-spacing:246.489000px;}
.ls5{letter-spacing:250.240200px;}
.ls7{letter-spacing:256.479000px;}
.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;}
}
.ws12a{word-spacing:-20.592000px;}
.ws111{word-spacing:-20.196000px;}
.wsfc{word-spacing:-19.866000px;}
.ws110{word-spacing:-19.338000px;}
.ws129{word-spacing:-19.206000px;}
.ws2d{word-spacing:-18.348000px;}
.ws0{word-spacing:-16.680000px;}
.wsa4{word-spacing:-13.344000px;}
.ws113{word-spacing:-6.270000px;}
.ws114{word-spacing:-5.808000px;}
.wsf5{word-spacing:-5.412000px;}
.ws11f{word-spacing:-4.224000px;}
.ws3d{word-spacing:-4.026000px;}
.ws4c{word-spacing:-3.888000px;}
.ws143{word-spacing:-3.630000px;}
.ws132{word-spacing:-3.564000px;}
.ws5d{word-spacing:-3.498000px;}
.ws9c{word-spacing:-3.432000px;}
.ws18{word-spacing:-3.366000px;}
.wsa6{word-spacing:-3.300000px;}
.ws83{word-spacing:-3.234000px;}
.wsff{word-spacing:-3.168000px;}
.ws2{word-spacing:-3.108000px;}
.ws36{word-spacing:-3.036000px;}
.ws5a{word-spacing:-2.970000px;}
.ws78{word-spacing:-2.904000px;}
.wsf6{word-spacing:-2.772000px;}
.wsf7{word-spacing:-2.706000px;}
.ws43{word-spacing:-2.640000px;}
.ws6d{word-spacing:-2.574000px;}
.ws136{word-spacing:-2.442000px;}
.wsf1{word-spacing:-2.376000px;}
.wsf2{word-spacing:-2.310000px;}
.ws20{word-spacing:-2.244000px;}
.ws41{word-spacing:-2.178000px;}
.wsb{word-spacing:-2.112000px;}
.wsdf{word-spacing:-2.046000px;}
.ws107{word-spacing:-1.980000px;}
.ws38{word-spacing:-1.914000px;}
.ws55{word-spacing:-1.848000px;}
.ws142{word-spacing:-1.782000px;}
.ws4b{word-spacing:-1.650000px;}
.ws11{word-spacing:-1.584000px;}
.ws8a{word-spacing:-1.518000px;}
.ws31{word-spacing:-1.452000px;}
.ws99{word-spacing:-1.386000px;}
.wsda{word-spacing:-1.320000px;}
.ws6e{word-spacing:-1.296000px;}
.ws9b{word-spacing:-1.254000px;}
.ws1e{word-spacing:-1.188000px;}
.ws46{word-spacing:-1.122000px;}
.ws100{word-spacing:-1.056000px;}
.ws32{word-spacing:-0.990000px;}
.ws65{word-spacing:-0.924000px;}
.ws56{word-spacing:-0.858000px;}
.wsf3{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.660000px;}
.ws39{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.462000px;}
.ws26{word-spacing:-0.396000px;}
.ws69{word-spacing:-0.330000px;}
.ws76{word-spacing:-0.264000px;}
.ws9{word-spacing:-0.198000px;}
.ws90{word-spacing:-0.132000px;}
.wsf0{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.132000px;}
.ws64{word-spacing:0.198000px;}
.ws4e{word-spacing:0.216000px;}
.ws77{word-spacing:0.264000px;}
.ws29{word-spacing:0.330000px;}
.ws109{word-spacing:0.462000px;}
.ws82{word-spacing:0.528000px;}
.ws6c{word-spacing:0.594000px;}
.ws7d{word-spacing:0.660000px;}
.ws47{word-spacing:0.726000px;}
.wsc{word-spacing:0.858000px;}
.ws10e{word-spacing:0.924000px;}
.wsea{word-spacing:0.990000px;}
.ws66{word-spacing:1.056000px;}
.wsec{word-spacing:1.122000px;}
.ws4f{word-spacing:1.224000px;}
.ws12{word-spacing:1.254000px;}
.ws13e{word-spacing:1.386000px;}
.wsdd{word-spacing:1.452000px;}
.ws8f{word-spacing:1.518000px;}
.wsb1{word-spacing:1.584000px;}
.ws12d{word-spacing:1.650000px;}
.ws2f{word-spacing:1.782000px;}
.ws89{word-spacing:1.848000px;}
.ws8b{word-spacing:1.914000px;}
.ws13{word-spacing:1.980000px;}
.ws2b{word-spacing:2.046000px;}
.ws21{word-spacing:2.112000px;}
.ws1b{word-spacing:2.244000px;}
.wsdb{word-spacing:2.310000px;}
.wsf9{word-spacing:2.376000px;}
.wse7{word-spacing:2.442000px;}
.ws94{word-spacing:2.508000px;}
.wse3{word-spacing:2.574000px;}
.wsde{word-spacing:2.640000px;}
.ws2c{word-spacing:2.706000px;}
.ws50{word-spacing:2.736000px;}
.wsbb{word-spacing:2.772000px;}
.wsa{word-spacing:2.838000px;}
.ws62{word-spacing:2.970000px;}
.ws9d{word-spacing:3.036000px;}
.wse2{word-spacing:3.102000px;}
.wse{word-spacing:3.168000px;}
.ws48{word-spacing:3.234000px;}
.ws5e{word-spacing:3.300000px;}
.ws9a{word-spacing:3.366000px;}
.ws17{word-spacing:3.432000px;}
.ws11e{word-spacing:3.498000px;}
.ws11b{word-spacing:3.564000px;}
.ws108{word-spacing:3.630000px;}
.ws9e{word-spacing:3.696000px;}
.ws58{word-spacing:3.828000px;}
.wsd{word-spacing:3.894000px;}
.ws88{word-spacing:4.026000px;}
.wsa0{word-spacing:4.092000px;}
.wse0{word-spacing:4.158000px;}
.wsb2{word-spacing:4.224000px;}
.ws9f{word-spacing:4.290000px;}
.ws22{word-spacing:4.356000px;}
.ws15{word-spacing:4.422000px;}
.wsf8{word-spacing:4.488000px;}
.ws25{word-spacing:4.554000px;}
.ws1d{word-spacing:4.686000px;}
.wseb{word-spacing:4.752000px;}
.ws12b{word-spacing:4.818000px;}
.ws80{word-spacing:4.884000px;}
.ws33{word-spacing:4.950000px;}
.ws127{word-spacing:5.082000px;}
.ws7e{word-spacing:5.148000px;}
.ws61{word-spacing:5.214000px;}
.ws3a{word-spacing:5.280000px;}
.wse1{word-spacing:5.346000px;}
.ws10{word-spacing:5.478000px;}
.ws11a{word-spacing:5.544000px;}
.ws12e{word-spacing:5.610000px;}
.wsad{word-spacing:5.676000px;}
.ws70{word-spacing:5.742000px;}
.ws24{word-spacing:5.808000px;}
.ws104{word-spacing:5.874000px;}
.ws5c{word-spacing:5.940000px;}
.ws52{word-spacing:5.976000px;}
.ws97{word-spacing:6.006000px;}
.wsb3{word-spacing:6.072000px;}
.ws75{word-spacing:6.138000px;}
.ws10d{word-spacing:6.204000px;}
.ws6a{word-spacing:6.270000px;}
.ws3b{word-spacing:6.336000px;}
.wsb4{word-spacing:6.402000px;}
.ws67{word-spacing:6.468000px;}
.wsf{word-spacing:6.534000px;}
.ws27{word-spacing:6.600000px;}
.ws1f{word-spacing:6.666000px;}
.ws4a{word-spacing:6.732000px;}
.ws35{word-spacing:6.798000px;}
.wsbc{word-spacing:6.864000px;}
.ws37{word-spacing:6.930000px;}
.ws51{word-spacing:6.984000px;}
.ws79{word-spacing:6.996000px;}
.wsaf{word-spacing:7.062000px;}
.wsfb{word-spacing:7.128000px;}
.ws92{word-spacing:7.194000px;}
.wsa1{word-spacing:7.326000px;}
.ws106{word-spacing:7.392000px;}
.ws30{word-spacing:7.524000px;}
.ws4d{word-spacing:7.560000px;}
.ws57{word-spacing:7.590000px;}
.ws5b{word-spacing:7.656000px;}
.ws1a{word-spacing:7.788000px;}
.wse8{word-spacing:7.854000px;}
.ws86{word-spacing:7.920000px;}
.ws42{word-spacing:7.986000px;}
.ws3c{word-spacing:8.052000px;}
.ws91{word-spacing:8.118000px;}
.wsd9{word-spacing:8.184000px;}
.ws19{word-spacing:8.316000px;}
.ws73{word-spacing:8.448000px;}
.ws84{word-spacing:8.514000px;}
.ws40{word-spacing:8.580000px;}
.ws93{word-spacing:8.646000px;}
.ws7f{word-spacing:8.778000px;}
.ws72{word-spacing:8.844000px;}
.ws10a{word-spacing:8.910000px;}
.ws28{word-spacing:8.976000px;}
.ws130{word-spacing:9.042000px;}
.ws74{word-spacing:9.108000px;}
.ws45{word-spacing:9.174000px;}
.ws135{word-spacing:9.240000px;}
.ws85{word-spacing:9.306000px;}
.ws5{word-spacing:9.372000px;}
.wse5{word-spacing:9.438000px;}
.ws96{word-spacing:9.504000px;}
.ws112{word-spacing:9.570000px;}
.ws103{word-spacing:9.636000px;}
.ws10c{word-spacing:9.834000px;}
.ws60{word-spacing:9.966000px;}
.ws8c{word-spacing:10.032000px;}
.ws137{word-spacing:10.098000px;}
.wse9{word-spacing:10.164000px;}
.ws10b{word-spacing:10.230000px;}
.wsdc{word-spacing:10.296000px;}
.ws105{word-spacing:10.362000px;}
.wsfe{word-spacing:10.494000px;}
.ws4{word-spacing:10.626000px;}
.ws98{word-spacing:10.692000px;}
.wsa5{word-spacing:10.758000px;}
.ws95{word-spacing:10.956000px;}
.ws123{word-spacing:11.022000px;}
.ws49{word-spacing:11.088000px;}
.wsfd{word-spacing:11.220000px;}
.ws6{word-spacing:11.286000px;}
.ws3e{word-spacing:11.352000px;}
.ws118{word-spacing:11.550000px;}
.ws6b{word-spacing:11.616000px;}
.ws8e{word-spacing:11.748000px;}
.ws2a{word-spacing:11.880000px;}
.ws8{word-spacing:12.276000px;}
.ws5f{word-spacing:12.342000px;}
.ws124{word-spacing:12.408000px;}
.ws71{word-spacing:12.474000px;}
.ws2e{word-spacing:12.540000px;}
.ws117{word-spacing:12.672000px;}
.ws3f{word-spacing:12.804000px;}
.wsb0{word-spacing:13.002000px;}
.ws12c{word-spacing:13.068000px;}
.ws87{word-spacing:13.134000px;}
.ws44{word-spacing:13.200000px;}
.ws59{word-spacing:13.332000px;}
.ws102{word-spacing:13.398000px;}
.ws8d{word-spacing:13.530000px;}
.ws11d{word-spacing:13.728000px;}
.ws68{word-spacing:14.124000px;}
.ws63{word-spacing:14.256000px;}
.ws116{word-spacing:14.388000px;}
.ws126{word-spacing:14.718000px;}
.ws7a{word-spacing:14.784000px;}
.ws81{word-spacing:14.850000px;}
.wsf4{word-spacing:14.916000px;}
.ws23{word-spacing:14.982000px;}
.ws138{word-spacing:15.510000px;}
.ws10f{word-spacing:15.708000px;}
.ws7c{word-spacing:15.906000px;}
.ws101{word-spacing:15.972000px;}
.ws128{word-spacing:16.104000px;}
.ws7b{word-spacing:16.500000px;}
.ws34{word-spacing:16.698000px;}
.ws53{word-spacing:17.208000px;}
.wsee{word-spacing:17.490000px;}
.ws12f{word-spacing:17.952000px;}
.wsae{word-spacing:18.018000px;}
.ws133{word-spacing:18.480000px;}
.wsef{word-spacing:18.678000px;}
.ws13f{word-spacing:18.876000px;}
.wsfa{word-spacing:19.140000px;}
.wsed{word-spacing:19.404000px;}
.ws11c{word-spacing:20.130000px;}
.ws122{word-spacing:21.252000px;}
.ws139{word-spacing:21.516000px;}
.ws121{word-spacing:21.714000px;}
.ws140{word-spacing:23.034000px;}
.ws119{word-spacing:23.694000px;}
.wse4{word-spacing:23.760000px;}
.ws13c{word-spacing:23.958000px;}
.ws7{word-spacing:24.090000px;}
.ws134{word-spacing:24.552000px;}
.ws54{word-spacing:24.618000px;}
.ws141{word-spacing:26.202000px;}
.ws115{word-spacing:26.532000px;}
.wse6{word-spacing:26.796000px;}
.ws131{word-spacing:30.228000px;}
.ws13a{word-spacing:30.888000px;}
.ws120{word-spacing:31.812000px;}
.ws13b{word-spacing:32.802000px;}
.ws3{word-spacing:33.264000px;}
.ws6f{word-spacing:38.742000px;}
.ws13d{word-spacing:39.138000px;}
.ws125{word-spacing:54.648000px;}
.wsc6{word-spacing:124.975800px;}
.wsc2{word-spacing:141.271800px;}
.wsc3{word-spacing:144.955200px;}
.wsc7{word-spacing:147.162600px;}
.wsd2{word-spacing:160.474800px;}
.wsd8{word-spacing:160.475400px;}
.wsbe{word-spacing:165.780600px;}
.wsbd{word-spacing:168.946800px;}
.wscf{word-spacing:170.464800px;}
.wsd6{word-spacing:170.465400px;}
.wsd3{word-spacing:180.454800px;}
.wsd0{word-spacing:180.455400px;}
.wsbf{word-spacing:194.132400px;}
.wscb{word-spacing:194.973600px;}
.wsb8{word-spacing:207.876600px;}
.wsb9{word-spacing:207.877200px;}
.wsc0{word-spacing:207.964800px;}
.wscc{word-spacing:210.198600px;}
.wsd4{word-spacing:217.269000px;}
.wsca{word-spacing:218.001000px;}
.wsba{word-spacing:224.552400px;}
.wsa8{word-spacing:226.352400px;}
.wsb7{word-spacing:229.523400px;}
.wsaa{word-spacing:252.916200px;}
.wsab{word-spacing:253.761000px;}
.wscd{word-spacing:269.385600px;}
.wsa9{word-spacing:270.436200px;}
.wsac{word-spacing:272.643600px;}
.wsa2{word-spacing:274.419600px;}
.wsa3{word-spacing:291.939000px;}
.wsd7{word-spacing:292.315200px;}
.wsce{word-spacing:292.345800px;}
.wsd5{word-spacing:306.704400px;}
.wsd1{word-spacing:317.320800px;}
.wsb6{word-spacing:338.300400px;}
.wsc5{word-spacing:369.490800px;}
.wsc4{word-spacing:397.816800px;}
.wsc9{word-spacing:399.476400px;}
.wsc1{word-spacing:416.197200px;}
.wsc8{word-spacing:422.821200px;}
.wsb5{word-spacing:461.046600px;}
.wsa7{word-spacing:501.235800px;}
._38{margin-left:-34.095600px;}
._d{margin-left:-21.978000px;}
._10{margin-left:-18.282000px;}
._b{margin-left:-16.434000px;}
._4f{margin-left:-13.052400px;}
._8{margin-left:-8.540400px;}
._0{margin-left:-7.409775px;}
._3{margin-left:-6.316800px;}
._1{margin-left:-4.302000px;}
._4{margin-left:-2.754000px;}
._2{margin-left:-1.520400px;}
._7{width:1.273800px;}
._11{width:2.290200px;}
._39{width:3.953400px;}
._a{width:4.956600px;}
._96{width:5.974800px;}
._6{width:7.002600px;}
._9{width:8.197200px;}
._f{width:9.865800px;}
._c{width:10.965600px;}
._93{width:12.243000px;}
._91{width:13.355400px;}
._e{width:14.942400px;}
._5{width:17.140200px;}
._7d{width:21.164400px;}
._92{width:26.499000px;}
._98{width:28.147800px;}
._97{width:30.201600px;}
._94{width:31.825200px;}
._3a{width:37.243800px;}
._99{width:39.171000px;}
._95{width:54.661200px;}
._88{width:147.961800px;}
._81{width:161.635200px;}
._87{width:166.339200px;}
._84{width:168.525000px;}
._8a{width:176.329800px;}
._86{width:182.920200px;}
._83{width:185.146800px;}
._80{width:186.319800px;}
._89{width:189.129000px;}
._90{width:190.710000px;}
._82{width:193.480800px;}
._8e{width:200.148000px;}
._85{width:203.470200px;}
._8f{width:205.513200px;}
._8c{width:209.748000px;}
._79{width:216.055200px;}
._61{width:221.273400px;}
._60{width:223.267800px;}
._7f{width:226.435200px;}
._66{width:236.067600px;}
._65{width:237.090000px;}
._59{width:239.165400px;}
._40{width:241.178400px;}
._70{width:242.463600px;}
._8d{width:244.139400px;}
._3d{width:250.056600px;}
._52{width:253.765200px;}
._57{width:256.005600px;}
._3f{width:258.592800px;}
._6c{width:260.288400px;}
._8b{width:264.611400px;}
._5e{width:269.041800px;}
._2a{width:270.292800px;}
._5c{width:271.329600px;}
._64{width:272.751000px;}
._4e{width:273.870000px;}
._58{width:275.611200px;}
._2e{width:285.332400px;}
._62{width:288.396600px;}
._3e{width:290.342400px;}
._4c{width:292.284600px;}
._6a{width:294.466200px;}
._56{width:301.283400px;}
._3b{width:303.576600px;}
._51{width:305.768400px;}
._5a{width:306.904200px;}
._15{width:308.981400px;}
._2d{width:310.120800px;}
._48{width:311.192400px;}
._5d{width:314.671800px;}
._14{width:315.880800px;}
._4d{width:317.499600px;}
._54{width:322.452600px;}
._25{width:323.623200px;}
._1e{width:326.796000px;}
._27{width:328.273200px;}
._12{width:329.287200px;}
._26{width:331.307400px;}
._28{width:333.236400px;}
._50{width:336.348000px;}
._2c{width:338.856000px;}
._5b{width:340.047000px;}
._76{width:341.277000px;}
._1a{width:343.471200px;}
._53{width:344.692800px;}
._2b{width:345.765600px;}
._42{width:350.136600px;}
._5f{width:352.287000px;}
._1d{width:355.540800px;}
._24{width:357.616800px;}
._13{width:360.378375px;}
._1c{width:362.441400px;}
._23{width:363.733800px;}
._17{width:367.131600px;}
._4b{width:371.799000px;}
._29{width:373.105800px;}
._47{width:374.642400px;}
._68{width:376.236600px;}
._1b{width:378.236400px;}
._16{width:379.420200px;}
._75{width:380.468400px;}
._49{width:381.797400px;}
._21{width:388.901400px;}
._43{width:390.422400px;}
._3c{width:391.743600px;}
._6f{width:392.985000px;}
._4a{width:394.423200px;}
._20{width:396.652200px;}
._67{width:398.956800px;}
._22{width:399.983400px;}
._46{width:404.404200px;}
._63{width:405.617400px;}
._45{width:406.787400px;}
._44{width:408.462600px;}
._41{width:417.768000px;}
._34{width:420.145800px;}
._19{width:422.052000px;}
._6b{width:426.269400px;}
._1f{width:428.886975px;}
._18{width:431.025600px;}
._33{width:433.098000px;}
._73{width:437.866800px;}
._6e{width:440.379600px;}
._7b{width:442.923600px;}
._35{width:445.165200px;}
._74{width:446.211600px;}
._37{width:449.773200px;}
._6d{width:451.299600px;}
._55{width:454.008000px;}
._7c{width:455.515200px;}
._71{width:467.929200px;}
._7a{width:470.835600px;}
._72{width:476.274600px;}
._78{width:486.402000px;}
._77{width:494.741400px;}
._31{width:516.925800px;}
._7e{width:532.132800px;}
._36{width:538.212000px;}
._30{width:546.553200px;}
._2f{width:549.841200px;}
._69{width:609.625200px;}
._32{width:611.558400px;}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(27,27,27);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs7{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:199.724400px;}
.y0{bottom:0.000000px;}
.yb2{bottom:47.633700px;}
.y7c{bottom:54.714000px;}
.yb1{bottom:66.383700px;}
.y7b{bottom:73.464000px;}
.y15b{bottom:73.858050px;}
.y2{bottom:85.039350px;}
.yb0{bottom:85.133700px;}
.y1bd{bottom:86.089200px;}
.y203{bottom:86.225700px;}
.y27e{bottom:87.967950px;}
.y15a{bottom:88.858050px;}
.y26b{bottom:89.710050px;}
.yd7{bottom:92.208000px;}
.y7a{bottom:92.214000px;}
.y17a{bottom:93.696150px;}
.y2e{bottom:94.021050px;}
.y22c{bottom:96.465900px;}
.y48{bottom:96.773100px;}
.y130{bottom:97.564350px;}
.y106{bottom:98.450250px;}
.y220{bottom:100.723800px;}
.y1bc{bottom:101.089200px;}
.y247{bottom:102.465900px;}
.y159{bottom:103.858050px;}
.y202{bottom:104.975700px;}
.y27d{bottom:106.717950px;}
.yaf{bottom:108.135750px;}
.y26a{bottom:108.460050px;}
.yd6{bottom:110.958000px;}
.y79{bottom:110.964000px;}
.y179{bottom:112.446150px;}
.y2d{bottom:112.771050px;}
.y22b{bottom:115.215900px;}
.y1dd{bottom:115.221900px;}
.y47{bottom:115.523100px;}
.y1bb{bottom:116.089200px;}
.y12f{bottom:116.314350px;}
.y105{bottom:117.200250px;}
.y158{bottom:118.858050px;}
.y21f{bottom:119.473800px;}
.y246{bottom:121.215900px;}
.y201{bottom:123.725700px;}
.y27c{bottom:125.467950px;}
.yae{bottom:126.885750px;}
.y269{bottom:127.210050px;}
.y226{bottom:127.977750px;}
.yd5{bottom:129.708000px;}
.y78{bottom:129.714000px;}
.y1ba{bottom:131.089200px;}
.y178{bottom:131.196150px;}
.y2c{bottom:131.521050px;}
.y157{bottom:133.858050px;}
.y22a{bottom:133.965900px;}
.y1dc{bottom:133.971900px;}
.y46{bottom:134.273100px;}
.y12e{bottom:135.064350px;}
.y104{bottom:135.950250px;}
.y21e{bottom:138.223800px;}
.y200{bottom:142.475700px;}
.y245{bottom:144.217950px;}
.yad{bottom:145.635750px;}
.y268{bottom:145.960050px;}
.y1b9{bottom:146.089200px;}
.y225{bottom:146.727750px;}
.yd4{bottom:148.458000px;}
.y77{bottom:148.464000px;}
.y156{bottom:148.858050px;}
.y177{bottom:149.946150px;}
.y2b{bottom:150.271050px;}
.y229{bottom:152.715900px;}
.y1db{bottom:152.721900px;}
.y45{bottom:153.023100px;}
.y12d{bottom:153.814350px;}
.y103{bottom:154.700250px;}
.y1b8{bottom:161.089200px;}
.y1ff{bottom:161.225700px;}
.y244{bottom:162.967950px;}
.y155{bottom:163.858050px;}
.yac{bottom:164.385750px;}
.y267{bottom:164.710050px;}
.y224{bottom:165.477750px;}
.yd3{bottom:167.208000px;}
.y76{bottom:167.214000px;}
.y176{bottom:168.696150px;}
.y2a{bottom:169.021050px;}
.y228{bottom:171.465900px;}
.y1da{bottom:171.471900px;}
.y44{bottom:171.773100px;}
.y102{bottom:173.450250px;}
.y1b7{bottom:176.464200px;}
.y154{bottom:178.858050px;}
.y1fe{bottom:179.975700px;}
.y243{bottom:181.717950px;}
.yab{bottom:183.135750px;}
.y223{bottom:184.227750px;}
.y12c{bottom:184.748100px;}
.yd2{bottom:185.958000px;}
.y75{bottom:185.964000px;}
.y266{bottom:187.712100px;}
.y29{bottom:187.771050px;}
.y1d9{bottom:190.221900px;}
.y43{bottom:190.523100px;}
.y101{bottom:192.200250px;}
.y1b6{bottom:194.014200px;}
.y1fd{bottom:198.725700px;}
.y12b{bottom:199.748100px;}
.y242{bottom:200.467950px;}
.yaa{bottom:201.885750px;}
.y227{bottom:202.971900px;}
.y222{bottom:202.977750px;}
.y175{bottom:203.707800px;}
.yd1{bottom:204.708000px;}
.y74{bottom:204.714000px;}
.y265{bottom:206.462100px;}
.y28{bottom:206.521050px;}
.y153{bottom:207.522750px;}
.y1d8{bottom:208.971900px;}
.y42{bottom:209.273100px;}
.y100{bottom:210.950250px;}
.y12a{bottom:214.748100px;}
.y21d{bottom:217.475700px;}
.y174{bottom:218.707800px;}
.y241{bottom:219.217950px;}
.ya9{bottom:220.635750px;}
.y1fc{bottom:221.727750px;}
.yd0{bottom:223.458000px;}
.y73{bottom:223.464000px;}
.y27b{bottom:223.469850px;}
.y264{bottom:225.212100px;}
.y27{bottom:225.271050px;}
.y1d7{bottom:227.721900px;}
.y41{bottom:228.023100px;}
.yff{bottom:229.700250px;}
.y129{bottom:229.748100px;}
.y152{bottom:233.022750px;}
.y173{bottom:233.707800px;}
.y1b5{bottom:234.484650px;}
.y21c{bottom:236.225700px;}
.ya8{bottom:239.385750px;}
.y1fb{bottom:240.477750px;}
.ycf{bottom:242.208000px;}
.y240{bottom:242.219850px;}
.y26{bottom:244.021050px;}
.y128{bottom:244.748100px;}
.y72{bottom:246.465900px;}
.y1d6{bottom:246.471900px;}
.y40{bottom:246.772950px;}
.y263{bottom:248.214000px;}
.y172{bottom:248.707800px;}
.y1b4{bottom:252.034650px;}
.y21b{bottom:254.975700px;}
.ya7{bottom:258.135750px;}
.y151{bottom:258.522750px;}
.y1fa{bottom:259.227750px;}
.yce{bottom:260.958000px;}
.y23f{bottom:260.969850px;}
.yfe{bottom:261.206100px;}
.y25{bottom:262.771050px;}
.y171{bottom:263.707800px;}
.y71{bottom:265.215900px;}
.y1d5{bottom:265.221900px;}
.y3f{bottom:265.522950px;}
.y262{bottom:266.964000px;}
.y21a{bottom:273.725700px;}
.ya6{bottom:276.885750px;}
.y1f9{bottom:277.977750px;}
.y127{bottom:278.546250px;}
.ycd{bottom:279.708000px;}
.y23e{bottom:279.719850px;}
.y24{bottom:281.521050px;}
.y196{bottom:282.908850px;}
.y70{bottom:283.965900px;}
.y1d4{bottom:283.971900px;}
.y3e{bottom:284.272950px;}
.y261{bottom:285.714000px;}
.y170{bottom:292.372500px;}
.y219{bottom:292.475700px;}
.y1b3{bottom:292.504950px;}
.ya5{bottom:295.635750px;}
.yfd{bottom:296.462100px;}
.y1f8{bottom:296.727750px;}
.ycc{bottom:298.458000px;}
.y23d{bottom:298.469850px;}
.y23{bottom:300.271050px;}
.y195{bottom:301.658850px;}
.y6f{bottom:302.715900px;}
.y1d3{bottom:302.721900px;}
.y3d{bottom:303.022950px;}
.y260{bottom:304.464000px;}
.y150{bottom:309.522750px;}
.y1b2{bottom:310.054950px;}
.y218{bottom:311.225850px;}
.y126{bottom:312.374550px;}
.ya4{bottom:314.385750px;}
.yfc{bottom:315.211950px;}
.y1f7{bottom:315.477750px;}
.ycb{bottom:317.208000px;}
.y23c{bottom:317.219850px;}
.y16f{bottom:317.872500px;}
.y22{bottom:319.021050px;}
.y194{bottom:320.408850px;}
.y6e{bottom:321.465900px;}
.y1d2{bottom:321.471900px;}
.y3c{bottom:321.772950px;}
.y25f{bottom:327.465900px;}
.y217{bottom:329.975850px;}
.ya3{bottom:333.135750px;}
.yfb{bottom:333.961950px;}
.y1f6{bottom:334.227750px;}
.y14f{bottom:335.022750px;}
.yca{bottom:335.958000px;}
.y23b{bottom:335.969850px;}
.y21{bottom:337.771050px;}
.y193{bottom:339.158850px;}
.y6d{bottom:340.215900px;}
.y1d1{bottom:340.221900px;}
.y3b{bottom:340.522950px;}
.y16e{bottom:343.372500px;}
.y125{bottom:344.264250px;}
.y25e{bottom:346.215900px;}
.y216{bottom:348.725850px;}
.y1b1{bottom:350.525400px;}
.ya2{bottom:351.885750px;}
.yfa{bottom:352.711950px;}
.y1f5{bottom:352.977750px;}
.yc9{bottom:354.708000px;}
.y20{bottom:356.521050px;}
.y192{bottom:357.908850px;}
.y6c{bottom:358.965900px;}
.y1d0{bottom:358.971900px;}
.y3a{bottom:359.272950px;}
.y14e{bottom:360.522750px;}
.y215{bottom:367.475850px;}
.y1b0{bottom:368.075400px;}
.y25d{bottom:369.217950px;}
.ya1{bottom:370.635750px;}
.yf9{bottom:371.461950px;}
.y1f4{bottom:371.727750px;}
.y1f{bottom:375.271050px;}
.y6b{bottom:377.715900px;}
.y1cf{bottom:377.721900px;}
.y39{bottom:378.022950px;}
.y124{bottom:378.279900px;}
.y191{bottom:384.653250px;}
.yc8{bottom:386.214000px;}
.y214{bottom:386.225850px;}
.y25c{bottom:387.967950px;}
.ya0{bottom:389.385750px;}
.yf8{bottom:390.211950px;}
.y1f3{bottom:390.477750px;}
.y1e{bottom:394.021050px;}
.y16d{bottom:394.372500px;}
.y6a{bottom:396.465900px;}
.y1ce{bottom:396.471900px;}
.y38{bottom:396.772950px;}
.y190{bottom:399.653250px;}
.y25b{bottom:406.717950px;}
.y9f{bottom:408.135750px;}
.y1af{bottom:408.545850px;}
.yf7{bottom:408.961950px;}
.y1f2{bottom:409.227750px;}
.y14d{bottom:411.522750px;}
.y1d{bottom:412.771050px;}
.y123{bottom:414.421650px;}
.y18f{bottom:414.653250px;}
.y69{bottom:415.215900px;}
.y1cd{bottom:415.221900px;}
.y37{bottom:415.522950px;}
.y27a{bottom:419.473800px;}
.y16c{bottom:419.872500px;}
.yc7{bottom:421.469850px;}
.y25a{bottom:425.467950px;}
.y1ae{bottom:426.095850px;}
.y9e{bottom:426.885750px;}
.yf6{bottom:427.711950px;}
.y1f1{bottom:427.977750px;}
.y18e{bottom:429.653250px;}
.y1c{bottom:431.521050px;}
.y68{bottom:433.965900px;}
.y1cc{bottom:433.971900px;}
.y36{bottom:434.273100px;}
.y14c{bottom:437.022750px;}
.y279{bottom:438.223800px;}
.yc6{bottom:440.219850px;}
.y259{bottom:444.217950px;}
.y18d{bottom:444.653250px;}
.y16b{bottom:445.372500px;}
.y9d{bottom:445.635750px;}
.yf5{bottom:446.461950px;}
.y1f0{bottom:446.727750px;}
.y122{bottom:448.437450px;}
.y1b{bottom:450.271050px;}
.y67{bottom:452.715900px;}
.y23a{bottom:452.721900px;}
.y1cb{bottom:456.973800px;}
.yc5{bottom:458.969850px;}
.y14b{bottom:462.522750px;}
.y258{bottom:462.967950px;}
.y9c{bottom:464.385750px;}
.y35{bottom:465.023100px;}
.yf4{bottom:465.211950px;}
.y213{bottom:465.477750px;}
.y1ad{bottom:467.256000px;}
.y1a{bottom:469.021050px;}
.y1ef{bottom:469.729650px;}
.y66{bottom:471.465900px;}
.y239{bottom:471.471900px;}
.y18c{bottom:473.318100px;}
.y1ca{bottom:475.723800px;}
.yc4{bottom:477.719850px;}
.y121{bottom:482.453250px;}
.y9b{bottom:483.135750px;}
.yf3{bottom:483.961950px;}
.y212{bottom:484.227750px;}
.y257{bottom:485.969850px;}
.y19{bottom:487.771050px;}
.y1ee{bottom:488.479650px;}
.y65{bottom:490.215900px;}
.y238{bottom:490.221900px;}
.y1ac{bottom:491.556000px;}
.y1c9{bottom:494.473800px;}
.y34{bottom:496.275000px;}
.y16a{bottom:496.372500px;}
.yc3{bottom:496.469850px;}
.y18b{bottom:498.818100px;}
.yf2{bottom:502.711950px;}
.y211{bottom:502.977750px;}
.y256{bottom:504.719850px;}
.y9a{bottom:506.137650px;}
.y18{bottom:506.521050px;}
.y1ed{bottom:507.229650px;}
.y64{bottom:508.965900px;}
.y237{bottom:508.971900px;}
.y1c8{bottom:513.223800px;}
.y14a{bottom:513.522750px;}
.y33{bottom:515.025000px;}
.yc2{bottom:515.219850px;}
.y1ab{bottom:515.541300px;}
.y278{bottom:517.475850px;}
.y120{bottom:518.595000px;}
.yf1{bottom:521.461950px;}
.y210{bottom:521.727750px;}
.y169{bottom:521.872500px;}
.y255{bottom:523.469850px;}
.y18a{bottom:524.318100px;}
.y99{bottom:524.887650px;}
.y17{bottom:525.271050px;}
.y1ec{bottom:525.979650px;}
.y63{bottom:527.715900px;}
.y236{bottom:527.721900px;}
.y1c7{bottom:531.973800px;}
.y1aa{bottom:533.541300px;}
.yc1{bottom:533.969850px;}
.y277{bottom:536.225850px;}
.y32{bottom:538.026900px;}
.y149{bottom:539.022750px;}
.yf0{bottom:540.211950px;}
.y20f{bottom:540.477750px;}
.y254{bottom:542.219850px;}
.y98{bottom:543.637650px;}
.y16{bottom:544.021050px;}
.y1eb{bottom:544.729650px;}
.y62{bottom:546.465900px;}
.y168{bottom:547.372500px;}
.y1c6{bottom:550.723800px;}
.yc0{bottom:552.719850px;}
.y276{bottom:554.975850px;}
.y1a9{bottom:555.793200px;}
.y31{bottom:556.776900px;}
.y11f{bottom:556.862700px;}
.yef{bottom:558.961950px;}
.y20e{bottom:559.227750px;}
.y253{bottom:560.969850px;}
.y97{bottom:562.387650px;}
.y15{bottom:562.771050px;}
.y1ea{bottom:563.479650px;}
.y148{bottom:564.522750px;}
.y61{bottom:565.215900px;}
.y1c5{bottom:569.473800px;}
.ybf{bottom:571.469850px;}
.y275{bottom:573.725850px;}
.y1a8{bottom:574.543200px;}
.y189{bottom:575.318100px;}
.y30{bottom:575.526900px;}
.y20d{bottom:577.977750px;}
.y96{bottom:581.137650px;}
.y14{bottom:581.521050px;}
.y1e9{bottom:582.229650px;}
.y60{bottom:583.965900px;}
.y252{bottom:583.971900px;}
.y1c4{bottom:588.223800px;}
.y147{bottom:590.022750px;}
.ybe{bottom:590.219850px;}
.yee{bottom:590.467950px;}
.y274{bottom:592.475850px;}
.y1a7{bottom:593.293200px;}
.y2f{bottom:594.276900px;}
.y11e{bottom:595.130400px;}
.y20c{bottom:596.727750px;}
.y167{bottom:598.372500px;}
.y95{bottom:599.887650px;}
.y188{bottom:600.818100px;}
.y1e8{bottom:600.979650px;}
.y5f{bottom:602.715900px;}
.y251{bottom:602.721900px;}
.y1c3{bottom:606.973800px;}
.ybd{bottom:608.969850px;}
.y273{bottom:611.225850px;}
.y13{bottom:613.026900px;}
.y144{bottom:614.233050px;}
.y94{bottom:618.637650px;}
.y1e7{bottom:619.729650px;}
.y5e{bottom:621.465900px;}
.y250{bottom:621.471900px;}
.y146{bottom:621.733050px;}
.y166{bottom:623.872500px;}
.yed{bottom:625.723800px;}
.y187{bottom:626.318100px;}
.y1a6{bottom:627.043200px;}
.ybc{bottom:627.719850px;}
.y280{bottom:629.975850px;}
.y11d{bottom:631.272150px;}
.y272{bottom:634.227750px;}
.y93{bottom:637.387650px;}
.y1e6{bottom:638.479650px;}
.y145{bottom:639.733050px;}
.y24f{bottom:640.221900px;}
.y1a5{bottom:642.043200px;}
.yec{bottom:644.473800px;}
.ybb{bottom:646.469850px;}
.y27f{bottom:648.725850px;}
.y165{bottom:649.372500px;}
.y5d{bottom:652.971900px;}
.y271{bottom:652.977750px;}
.y12{bottom:655.294050px;}
.y92{bottom:656.137650px;}
.y1a4{bottom:657.043200px;}
.y1e5{bottom:657.229650px;}
.y11b{bottom:662.522100px;}
.yeb{bottom:663.223800px;}
.yba{bottom:665.219850px;}
.y235{bottom:667.475850px;}
.y143{bottom:670.528500px;}
.y11a{bottom:671.522100px;}
.y270{bottom:671.727750px;}
.y1a3{bottom:672.043200px;}
.y11{bottom:673.294050px;}
.y91{bottom:674.887650px;}
.y1e4{bottom:675.979650px;}
.y186{bottom:677.318100px;}
.y11c{bottom:680.522100px;}
.yea{bottom:681.973800px;}
.yb9{bottom:683.969850px;}
.y5c{bottom:686.225850px;}
.y1a2{bottom:687.043200px;}
.y142{bottom:688.528500px;}
.y26f{bottom:690.477750px;}
.y10{bottom:691.294050px;}
.y90{bottom:693.637650px;}
.y1e3{bottom:694.729650px;}
.y164{bottom:700.372500px;}
.ye9{bottom:700.723800px;}
.yb8{bottom:702.719850px;}
.y185{bottom:702.818100px;}
.y234{bottom:704.975850px;}
.y119{bottom:705.536250px;}
.y26e{bottom:709.227750px;}
.yf{bottom:709.294050px;}
.y8f{bottom:712.387650px;}
.y1e2{bottom:713.479650px;}
.y1a1{bottom:714.418200px;}
.y141{bottom:715.251300px;}
.ye8{bottom:719.473800px;}
.yb7{bottom:721.469850px;}
.y233{bottom:723.725850px;}
.y26d{bottom:727.977750px;}
.y184{bottom:728.318100px;}
.y1a0{bottom:728.469750px;}
.y163{bottom:729.067500px;}
.y8e{bottom:731.137650px;}
.y5b{bottom:732.229650px;}
.ye{bottom:732.289050px;}
.y140{bottom:734.001300px;}
.ye7{bottom:738.223800px;}
.yb6{bottom:740.219850px;}
.y232{bottom:742.475850px;}
.y10e{bottom:744.719850px;}
.y26c{bottom:746.727750px;}
.y8d{bottom:749.887650px;}
.y5a{bottom:750.979650px;}
.yd{bottom:751.288050px;}
.y13f{bottom:752.751300px;}
.y221{bottom:755.231700px;}
.y162{bottom:756.705150px;}
.ye6{bottom:756.973800px;}
.yb5{bottom:758.969850px;}
.y118{bottom:761.219850px;}
.y24e{bottom:761.225850px;}
.yc{bottom:763.294050px;}
.y10d{bottom:763.469850px;}
.y19f{bottom:765.441900px;}
.y231{bottom:765.477750px;}
.y8c{bottom:768.637650px;}
.y1e1{bottom:769.729650px;}
.y13e{bottom:771.501300px;}
.y59{bottom:773.981700px;}
.ye5{bottom:775.723800px;}
.yb4{bottom:777.719850px;}
.y19e{bottom:779.260650px;}
.y183{bottom:779.318100px;}
.y117{bottom:779.969850px;}
.y24d{bottom:779.975850px;}
.y10c{bottom:782.219850px;}
.y230{bottom:784.227750px;}
.y161{bottom:785.406000px;}
.y8b{bottom:787.387650px;}
.y1e0{bottom:788.479650px;}
.y13d{bottom:790.251300px;}
.y58{bottom:792.731700px;}
.ye4{bottom:794.473800px;}
.y116{bottom:798.719850px;}
.y1c2{bottom:798.725850px;}
.yb{bottom:799.294050px;}
.y10b{bottom:800.969850px;}
.y22f{bottom:802.977750px;}
.y182{bottom:804.818100px;}
.y8a{bottom:806.137650px;}
.y1df{bottom:807.229650px;}
.y13c{bottom:809.001300px;}
.yb3{bottom:809.225850px;}
.y57{bottom:811.481700px;}
.ye3{bottom:813.223800px;}
.y115{bottom:817.469850px;}
.y1c1{bottom:817.475850px;}
.y15f{bottom:818.285850px;}
.y19d{bottom:819.421650px;}
.y10a{bottom:819.719850px;}
.y22e{bottom:821.727750px;}
.y89{bottom:824.887650px;}
.y1de{bottom:825.979650px;}
.y15e{bottom:827.285850px;}
.y13b{bottom:827.751300px;}
.y56{bottom:830.231700px;}
.y181{bottom:830.318100px;}
.ye2{bottom:831.973800px;}
.y19c{bottom:834.303600px;}
.y114{bottom:836.219850px;}
.y1c0{bottom:836.225850px;}
.y160{bottom:836.285850px;}
.y109{bottom:838.469850px;}
.ya{bottom:839.546100px;}
.y22d{bottom:840.477750px;}
.y20b{bottom:844.729650px;}
.y88{bottom:847.889700px;}
.y55{bottom:848.981700px;}
.ye1{bottom:850.723800px;}
.y113{bottom:854.969850px;}
.y1bf{bottom:854.975850px;}
.y108{bottom:857.219850px;}
.y24c{bottom:859.227750px;}
.y13a{bottom:862.971750px;}
.y20a{bottom:863.479650px;}
.y15d{bottom:863.993100px;}
.y87{bottom:866.639700px;}
.y54{bottom:867.731700px;}
.ye0{bottom:869.473800px;}
.y112{bottom:873.719850px;}
.y1be{bottom:873.725850px;}
.y9{bottom:875.546100px;}
.y19b{bottom:877.886400px;}
.y139{bottom:877.971750px;}
.y24b{bottom:877.977750px;}
.y180{bottom:881.318100px;}
.y15c{bottom:881.993100px;}
.y209{bottom:882.229650px;}
.y86{bottom:885.389700px;}
.y53{bottom:886.481700px;}
.y107{bottom:888.725850px;}
.y111{bottom:892.469850px;}
.ydf{bottom:892.475850px;}
.y19a{bottom:892.768200px;}
.y24a{bottom:896.727750px;}
.y208{bottom:900.979650px;}
.y85{bottom:904.139700px;}
.y52{bottom:905.231700px;}
.y138{bottom:905.346750px;}
.y17f{bottom:906.818100px;}
.y110{bottom:911.219850px;}
.yde{bottom:911.225850px;}
.y8{bottom:911.546100px;}
.y207{bottom:919.729650px;}
.y84{bottom:922.889700px;}
.y51{bottom:923.981700px;}
.y137{bottom:928.267050px;}
.ydd{bottom:929.975850px;}
.y17e{bottom:932.318100px;}
.y199{bottom:935.287950px;}
.y206{bottom:938.479650px;}
.y83{bottom:941.639700px;}
.y10f{bottom:942.725850px;}
.y50{bottom:942.731700px;}
.y7{bottom:944.546100px;}
.ydc{bottom:948.725850px;}
.y198{bottom:950.169750px;}
.y136{bottom:951.187500px;}
.y205{bottom:957.229650px;}
.y17d{bottom:957.818100px;}
.y82{bottom:960.389700px;}
.y4f{bottom:961.481700px;}
.ydb{bottom:967.475850px;}
.y135{bottom:974.107950px;}
.y204{bottom:975.979650px;}
.y6{bottom:977.546100px;}
.y81{bottom:979.139700px;}
.y4e{bottom:980.231700px;}
.y17c{bottom:982.028250px;}
.yda{bottom:986.225850px;}
.y197{bottom:991.219350px;}
.y249{bottom:994.729650px;}
.y133{bottom:997.028250px;}
.y80{bottom:997.889700px;}
.y17b{bottom:998.528250px;}
.y4d{bottom:998.981700px;}
.yd9{bottom:1004.975850px;}
.y132{bottom:1006.028250px;}
.y248{bottom:1013.479650px;}
.y134{bottom:1015.028250px;}
.y7f{bottom:1016.639700px;}
.y4c{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.yd8{bottom:1023.725850px;}
.y7e{bottom:1035.389700px;}
.y4b{bottom:1036.481700px;}
.y131{bottom:1038.323700px;}
.y4{bottom:1039.823700px;}
.y7d{bottom:1054.139700px;}
.y4a{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.y1{bottom:1108.294050px;}
.y49{bottom:1109.357100px;}
.ha{height:33.809062px;}
.h12{height:34.945312px;}
.h9{height:37.630828px;}
.h10{height:43.031250px;}
.h11{height:43.335938px;}
.he{height:43.681641px;}
.hd{height:48.049805px;}
.h5{height:53.789062px;}
.h4{height:54.169922px;}
.hc{height:59.167969px;}
.hb{height:59.586914px;}
.h7{height:64.546875px;}
.h8{height:65.003906px;}
.h2{height:75.304688px;}
.h6{height:75.837891px;}
.hf{height:89.789062px;}
.h18{height:99.629663px;}
.h17{height:99.630262px;}
.h15{height:109.064663px;}
.h16{height:113.316863px;}
.h13{height:119.789062px;}
.h3{height:180.317586px;}
.h14{height:185.789062px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x15{left:85.039350px;}
.x45{left:86.491050px;}
.x4f{left:87.769050px;}
.x42{left:88.944450px;}
.x25{left:90.461850px;}
.x4e{left:91.610550px;}
.x9{left:93.495750px;}
.xb{left:95.866200px;}
.x6{left:99.206550px;}
.xf{left:102.080550px;}
.x10{left:103.303650px;}
.x14{left:106.299150px;}
.x5e{left:108.643800px;}
.x41{left:114.655350px;}
.x24{left:116.217600px;}
.x4b{left:120.285150px;}
.x21{left:123.164550px;}
.xe{left:125.096700px;}
.x23{left:127.742250px;}
.x22{left:129.555000px;}
.x1e{left:131.481300px;}
.x4c{left:133.622550px;}
.x3e{left:134.740200px;}
.x3f{left:136.824000px;}
.x1f{left:138.992250px;}
.x40{left:140.149200px;}
.x19{left:141.629100px;}
.x20{left:143.588250px;}
.x3d{left:145.983000px;}
.x54{left:147.797100px;}
.x7{left:151.337400px;}
.x35{left:153.629400px;}
.x47{left:155.716050px;}
.x2a{left:157.919100px;}
.x5a{left:159.100950px;}
.x55{left:160.552350px;}
.x56{left:162.636000px;}
.x58{left:188.318850px;}
.x53{left:191.138250px;}
.x5b{left:195.145650px;}
.x27{left:198.010800px;}
.x43{left:204.684750px;}
.xd{left:209.256450px;}
.x32{left:214.151550px;}
.x13{left:230.623950px;}
.xc{left:235.448700px;}
.x31{left:236.658750px;}
.x5d{left:245.601000px;}
.x5c{left:269.389800px;}
.x1d{left:294.422400px;}
.x59{left:307.426500px;}
.x3c{left:321.479250px;}
.x26{left:331.610400px;}
.x37{left:334.549350px;}
.x36{left:340.595550px;}
.x48{left:344.158800px;}
.x34{left:357.670200px;}
.x51{left:360.784500px;}
.xa{left:362.164200px;}
.x12{left:365.470350px;}
.x8{left:372.032250px;}
.x11{left:378.478200px;}
.x50{left:403.102200px;}
.x2b{left:406.018350px;}
.x30{left:414.159150px;}
.x46{left:428.949450px;}
.x29{left:436.456800px;}
.x1a{left:464.717850px;}
.x16{left:476.716500px;}
.x39{left:488.698500px;}
.x61{left:490.216500px;}
.x60{left:492.011850px;}
.x38{left:495.583200px;}
.x17{left:497.976300px;}
.x4a{left:499.795350px;}
.x4d{left:504.971850px;}
.x49{left:506.680050px;}
.x4{left:508.762800px;}
.x44{left:519.596850px;}
.x28{left:522.233400px;}
.x57{left:528.909450px;}
.x5{left:548.994750px;}
.x2d{left:578.491650px;}
.x2c{left:585.376350px;}
.x1b{left:601.248300px;}
.x18{left:618.184050px;}
.x1c{left:620.218050px;}
.x3a{left:633.949350px;}
.x3b{left:652.919100px;}
.x33{left:660.303750px;}
.x52{left:672.610200px;}
.x2e{left:724.588350px;}
.x2f{left:743.558100px;}
.x3{left:775.393650px;}
.x1{left:827.035350px;}
.x5f{left:847.060800px;}
.x2{left:908.545500px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.536000pt;}
.v1{vertical-align:21.312000pt;}
.v5{vertical-align:32.000000pt;}
.va{vertical-align:40.747733pt;}
.v8{vertical-align:49.133867pt;}
.v9{vertical-align:52.913600pt;}
.v6{vertical-align:58.666667pt;}
.v7{vertical-align:117.333333pt;}
.lsa{letter-spacing:-3.946667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.002133pt;}
.ls2{letter-spacing:0.004907pt;}
.ls4{letter-spacing:0.005184pt;}
.ls1{letter-spacing:0.005461pt;}
.ls0{letter-spacing:0.005995pt;}
.lsf{letter-spacing:0.762667pt;}
.lsd{letter-spacing:0.880000pt;}
.lsc{letter-spacing:1.349333pt;}
.lse{letter-spacing:1.642667pt;}
.ls10{letter-spacing:1.994667pt;}
.lsb{letter-spacing:7.820800pt;}
.ls6{letter-spacing:213.555733pt;}
.ls9{letter-spacing:219.100800pt;}
.ls8{letter-spacing:219.101333pt;}
.ls5{letter-spacing:222.435733pt;}
.ls7{letter-spacing:227.981333pt;}
.ws12a{word-spacing:-18.304000pt;}
.ws111{word-spacing:-17.952000pt;}
.wsfc{word-spacing:-17.658667pt;}
.ws110{word-spacing:-17.189333pt;}
.ws129{word-spacing:-17.072000pt;}
.ws2d{word-spacing:-16.309333pt;}
.ws0{word-spacing:-14.826667pt;}
.wsa4{word-spacing:-11.861333pt;}
.ws113{word-spacing:-5.573333pt;}
.ws114{word-spacing:-5.162667pt;}
.wsf5{word-spacing:-4.810667pt;}
.ws11f{word-spacing:-3.754667pt;}
.ws3d{word-spacing:-3.578667pt;}
.ws4c{word-spacing:-3.456000pt;}
.ws143{word-spacing:-3.226667pt;}
.ws132{word-spacing:-3.168000pt;}
.ws5d{word-spacing:-3.109333pt;}
.ws9c{word-spacing:-3.050667pt;}
.ws18{word-spacing:-2.992000pt;}
.wsa6{word-spacing:-2.933333pt;}
.ws83{word-spacing:-2.874667pt;}
.wsff{word-spacing:-2.816000pt;}
.ws2{word-spacing:-2.762667pt;}
.ws36{word-spacing:-2.698667pt;}
.ws5a{word-spacing:-2.640000pt;}
.ws78{word-spacing:-2.581333pt;}
.wsf6{word-spacing:-2.464000pt;}
.wsf7{word-spacing:-2.405333pt;}
.ws43{word-spacing:-2.346667pt;}
.ws6d{word-spacing:-2.288000pt;}
.ws136{word-spacing:-2.170667pt;}
.wsf1{word-spacing:-2.112000pt;}
.wsf2{word-spacing:-2.053333pt;}
.ws20{word-spacing:-1.994667pt;}
.ws41{word-spacing:-1.936000pt;}
.wsb{word-spacing:-1.877333pt;}
.wsdf{word-spacing:-1.818667pt;}
.ws107{word-spacing:-1.760000pt;}
.ws38{word-spacing:-1.701333pt;}
.ws55{word-spacing:-1.642667pt;}
.ws142{word-spacing:-1.584000pt;}
.ws4b{word-spacing:-1.466667pt;}
.ws11{word-spacing:-1.408000pt;}
.ws8a{word-spacing:-1.349333pt;}
.ws31{word-spacing:-1.290667pt;}
.ws99{word-spacing:-1.232000pt;}
.wsda{word-spacing:-1.173333pt;}
.ws6e{word-spacing:-1.152000pt;}
.ws9b{word-spacing:-1.114667pt;}
.ws1e{word-spacing:-1.056000pt;}
.ws46{word-spacing:-0.997333pt;}
.ws100{word-spacing:-0.938667pt;}
.ws32{word-spacing:-0.880000pt;}
.ws65{word-spacing:-0.821333pt;}
.ws56{word-spacing:-0.762667pt;}
.wsf3{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.586667pt;}
.ws39{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.410667pt;}
.ws26{word-spacing:-0.352000pt;}
.ws69{word-spacing:-0.293333pt;}
.ws76{word-spacing:-0.234667pt;}
.ws9{word-spacing:-0.176000pt;}
.ws90{word-spacing:-0.117333pt;}
.wsf0{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.117333pt;}
.ws64{word-spacing:0.176000pt;}
.ws4e{word-spacing:0.192000pt;}
.ws77{word-spacing:0.234667pt;}
.ws29{word-spacing:0.293333pt;}
.ws109{word-spacing:0.410667pt;}
.ws82{word-spacing:0.469333pt;}
.ws6c{word-spacing:0.528000pt;}
.ws7d{word-spacing:0.586667pt;}
.ws47{word-spacing:0.645333pt;}
.wsc{word-spacing:0.762667pt;}
.ws10e{word-spacing:0.821333pt;}
.wsea{word-spacing:0.880000pt;}
.ws66{word-spacing:0.938667pt;}
.wsec{word-spacing:0.997333pt;}
.ws4f{word-spacing:1.088000pt;}
.ws12{word-spacing:1.114667pt;}
.ws13e{word-spacing:1.232000pt;}
.wsdd{word-spacing:1.290667pt;}
.ws8f{word-spacing:1.349333pt;}
.wsb1{word-spacing:1.408000pt;}
.ws12d{word-spacing:1.466667pt;}
.ws2f{word-spacing:1.584000pt;}
.ws89{word-spacing:1.642667pt;}
.ws8b{word-spacing:1.701333pt;}
.ws13{word-spacing:1.760000pt;}
.ws2b{word-spacing:1.818667pt;}
.ws21{word-spacing:1.877333pt;}
.ws1b{word-spacing:1.994667pt;}
.wsdb{word-spacing:2.053333pt;}
.wsf9{word-spacing:2.112000pt;}
.wse7{word-spacing:2.170667pt;}
.ws94{word-spacing:2.229333pt;}
.wse3{word-spacing:2.288000pt;}
.wsde{word-spacing:2.346667pt;}
.ws2c{word-spacing:2.405333pt;}
.ws50{word-spacing:2.432000pt;}
.wsbb{word-spacing:2.464000pt;}
.wsa{word-spacing:2.522667pt;}
.ws62{word-spacing:2.640000pt;}
.ws9d{word-spacing:2.698667pt;}
.wse2{word-spacing:2.757333pt;}
.wse{word-spacing:2.816000pt;}
.ws48{word-spacing:2.874667pt;}
.ws5e{word-spacing:2.933333pt;}
.ws9a{word-spacing:2.992000pt;}
.ws17{word-spacing:3.050667pt;}
.ws11e{word-spacing:3.109333pt;}
.ws11b{word-spacing:3.168000pt;}
.ws108{word-spacing:3.226667pt;}
.ws9e{word-spacing:3.285333pt;}
.ws58{word-spacing:3.402667pt;}
.wsd{word-spacing:3.461333pt;}
.ws88{word-spacing:3.578667pt;}
.wsa0{word-spacing:3.637333pt;}
.wse0{word-spacing:3.696000pt;}
.wsb2{word-spacing:3.754667pt;}
.ws9f{word-spacing:3.813333pt;}
.ws22{word-spacing:3.872000pt;}
.ws15{word-spacing:3.930667pt;}
.wsf8{word-spacing:3.989333pt;}
.ws25{word-spacing:4.048000pt;}
.ws1d{word-spacing:4.165333pt;}
.wseb{word-spacing:4.224000pt;}
.ws12b{word-spacing:4.282667pt;}
.ws80{word-spacing:4.341333pt;}
.ws33{word-spacing:4.400000pt;}
.ws127{word-spacing:4.517333pt;}
.ws7e{word-spacing:4.576000pt;}
.ws61{word-spacing:4.634667pt;}
.ws3a{word-spacing:4.693333pt;}
.wse1{word-spacing:4.752000pt;}
.ws10{word-spacing:4.869333pt;}
.ws11a{word-spacing:4.928000pt;}
.ws12e{word-spacing:4.986667pt;}
.wsad{word-spacing:5.045333pt;}
.ws70{word-spacing:5.104000pt;}
.ws24{word-spacing:5.162667pt;}
.ws104{word-spacing:5.221333pt;}
.ws5c{word-spacing:5.280000pt;}
.ws52{word-spacing:5.312000pt;}
.ws97{word-spacing:5.338667pt;}
.wsb3{word-spacing:5.397333pt;}
.ws75{word-spacing:5.456000pt;}
.ws10d{word-spacing:5.514667pt;}
.ws6a{word-spacing:5.573333pt;}
.ws3b{word-spacing:5.632000pt;}
.wsb4{word-spacing:5.690667pt;}
.ws67{word-spacing:5.749333pt;}
.wsf{word-spacing:5.808000pt;}
.ws27{word-spacing:5.866667pt;}
.ws1f{word-spacing:5.925333pt;}
.ws4a{word-spacing:5.984000pt;}
.ws35{word-spacing:6.042667pt;}
.wsbc{word-spacing:6.101333pt;}
.ws37{word-spacing:6.160000pt;}
.ws51{word-spacing:6.208000pt;}
.ws79{word-spacing:6.218667pt;}
.wsaf{word-spacing:6.277333pt;}
.wsfb{word-spacing:6.336000pt;}
.ws92{word-spacing:6.394667pt;}
.wsa1{word-spacing:6.512000pt;}
.ws106{word-spacing:6.570667pt;}
.ws30{word-spacing:6.688000pt;}
.ws4d{word-spacing:6.720000pt;}
.ws57{word-spacing:6.746667pt;}
.ws5b{word-spacing:6.805333pt;}
.ws1a{word-spacing:6.922667pt;}
.wse8{word-spacing:6.981333pt;}
.ws86{word-spacing:7.040000pt;}
.ws42{word-spacing:7.098667pt;}
.ws3c{word-spacing:7.157333pt;}
.ws91{word-spacing:7.216000pt;}
.wsd9{word-spacing:7.274667pt;}
.ws19{word-spacing:7.392000pt;}
.ws73{word-spacing:7.509333pt;}
.ws84{word-spacing:7.568000pt;}
.ws40{word-spacing:7.626667pt;}
.ws93{word-spacing:7.685333pt;}
.ws7f{word-spacing:7.802667pt;}
.ws72{word-spacing:7.861333pt;}
.ws10a{word-spacing:7.920000pt;}
.ws28{word-spacing:7.978667pt;}
.ws130{word-spacing:8.037333pt;}
.ws74{word-spacing:8.096000pt;}
.ws45{word-spacing:8.154667pt;}
.ws135{word-spacing:8.213333pt;}
.ws85{word-spacing:8.272000pt;}
.ws5{word-spacing:8.330667pt;}
.wse5{word-spacing:8.389333pt;}
.ws96{word-spacing:8.448000pt;}
.ws112{word-spacing:8.506667pt;}
.ws103{word-spacing:8.565333pt;}
.ws10c{word-spacing:8.741333pt;}
.ws60{word-spacing:8.858667pt;}
.ws8c{word-spacing:8.917333pt;}
.ws137{word-spacing:8.976000pt;}
.wse9{word-spacing:9.034667pt;}
.ws10b{word-spacing:9.093333pt;}
.wsdc{word-spacing:9.152000pt;}
.ws105{word-spacing:9.210667pt;}
.wsfe{word-spacing:9.328000pt;}
.ws4{word-spacing:9.445333pt;}
.ws98{word-spacing:9.504000pt;}
.wsa5{word-spacing:9.562667pt;}
.ws95{word-spacing:9.738667pt;}
.ws123{word-spacing:9.797333pt;}
.ws49{word-spacing:9.856000pt;}
.wsfd{word-spacing:9.973333pt;}
.ws6{word-spacing:10.032000pt;}
.ws3e{word-spacing:10.090667pt;}
.ws118{word-spacing:10.266667pt;}
.ws6b{word-spacing:10.325333pt;}
.ws8e{word-spacing:10.442667pt;}
.ws2a{word-spacing:10.560000pt;}
.ws8{word-spacing:10.912000pt;}
.ws5f{word-spacing:10.970667pt;}
.ws124{word-spacing:11.029333pt;}
.ws71{word-spacing:11.088000pt;}
.ws2e{word-spacing:11.146667pt;}
.ws117{word-spacing:11.264000pt;}
.ws3f{word-spacing:11.381333pt;}
.wsb0{word-spacing:11.557333pt;}
.ws12c{word-spacing:11.616000pt;}
.ws87{word-spacing:11.674667pt;}
.ws44{word-spacing:11.733333pt;}
.ws59{word-spacing:11.850667pt;}
.ws102{word-spacing:11.909333pt;}
.ws8d{word-spacing:12.026667pt;}
.ws11d{word-spacing:12.202667pt;}
.ws68{word-spacing:12.554667pt;}
.ws63{word-spacing:12.672000pt;}
.ws116{word-spacing:12.789333pt;}
.ws126{word-spacing:13.082667pt;}
.ws7a{word-spacing:13.141333pt;}
.ws81{word-spacing:13.200000pt;}
.wsf4{word-spacing:13.258667pt;}
.ws23{word-spacing:13.317333pt;}
.ws138{word-spacing:13.786667pt;}
.ws10f{word-spacing:13.962667pt;}
.ws7c{word-spacing:14.138667pt;}
.ws101{word-spacing:14.197333pt;}
.ws128{word-spacing:14.314667pt;}
.ws7b{word-spacing:14.666667pt;}
.ws34{word-spacing:14.842667pt;}
.ws53{word-spacing:15.296000pt;}
.wsee{word-spacing:15.546667pt;}
.ws12f{word-spacing:15.957333pt;}
.wsae{word-spacing:16.016000pt;}
.ws133{word-spacing:16.426667pt;}
.wsef{word-spacing:16.602667pt;}
.ws13f{word-spacing:16.778667pt;}
.wsfa{word-spacing:17.013333pt;}
.wsed{word-spacing:17.248000pt;}
.ws11c{word-spacing:17.893333pt;}
.ws122{word-spacing:18.890667pt;}
.ws139{word-spacing:19.125333pt;}
.ws121{word-spacing:19.301333pt;}
.ws140{word-spacing:20.474667pt;}
.ws119{word-spacing:21.061333pt;}
.wse4{word-spacing:21.120000pt;}
.ws13c{word-spacing:21.296000pt;}
.ws7{word-spacing:21.413333pt;}
.ws134{word-spacing:21.824000pt;}
.ws54{word-spacing:21.882667pt;}
.ws141{word-spacing:23.290667pt;}
.ws115{word-spacing:23.584000pt;}
.wse6{word-spacing:23.818667pt;}
.ws131{word-spacing:26.869333pt;}
.ws13a{word-spacing:27.456000pt;}
.ws120{word-spacing:28.277333pt;}
.ws13b{word-spacing:29.157333pt;}
.ws3{word-spacing:29.568000pt;}
.ws6f{word-spacing:34.437333pt;}
.ws13d{word-spacing:34.789333pt;}
.ws125{word-spacing:48.576000pt;}
.wsc6{word-spacing:111.089600pt;}
.wsc2{word-spacing:125.574933pt;}
.wsc3{word-spacing:128.849067pt;}
.wsc7{word-spacing:130.811200pt;}
.wsd2{word-spacing:142.644267pt;}
.wsd8{word-spacing:142.644800pt;}
.wsbe{word-spacing:147.360533pt;}
.wsbd{word-spacing:150.174933pt;}
.wscf{word-spacing:151.524267pt;}
.wsd6{word-spacing:151.524800pt;}
.wsd3{word-spacing:160.404267pt;}
.wsd0{word-spacing:160.404800pt;}
.wsbf{word-spacing:172.562133pt;}
.wscb{word-spacing:173.309867pt;}
.wsb8{word-spacing:184.779200pt;}
.wsb9{word-spacing:184.779733pt;}
.wsc0{word-spacing:184.857600pt;}
.wscc{word-spacing:186.843200pt;}
.wsd4{word-spacing:193.128000pt;}
.wsca{word-spacing:193.778667pt;}
.wsba{word-spacing:199.602133pt;}
.wsa8{word-spacing:201.202133pt;}
.wsb7{word-spacing:204.020800pt;}
.wsaa{word-spacing:224.814400pt;}
.wsab{word-spacing:225.565333pt;}
.wscd{word-spacing:239.453867pt;}
.wsa9{word-spacing:240.387733pt;}
.wsac{word-spacing:242.349867pt;}
.wsa2{word-spacing:243.928533pt;}
.wsa3{word-spacing:259.501333pt;}
.wsd7{word-spacing:259.835733pt;}
.wsce{word-spacing:259.862933pt;}
.wsd5{word-spacing:272.626133pt;}
.wsd1{word-spacing:282.062933pt;}
.wsb6{word-spacing:300.711467pt;}
.wsc5{word-spacing:328.436267pt;}
.wsc4{word-spacing:353.614933pt;}
.wsc9{word-spacing:355.090133pt;}
.wsc1{word-spacing:369.953067pt;}
.wsc8{word-spacing:375.841067pt;}
.wsb5{word-spacing:409.819200pt;}
.wsa7{word-spacing:445.542933pt;}
._38{margin-left:-30.307200pt;}
._d{margin-left:-19.536000pt;}
._10{margin-left:-16.250667pt;}
._b{margin-left:-14.608000pt;}
._4f{margin-left:-11.602133pt;}
._8{margin-left:-7.591467pt;}
._0{margin-left:-6.586467pt;}
._3{margin-left:-5.614933pt;}
._1{margin-left:-3.824000pt;}
._4{margin-left:-2.448000pt;}
._2{margin-left:-1.351467pt;}
._7{width:1.132267pt;}
._11{width:2.035733pt;}
._39{width:3.514133pt;}
._a{width:4.405867pt;}
._96{width:5.310933pt;}
._6{width:6.224533pt;}
._9{width:7.286400pt;}
._f{width:8.769600pt;}
._c{width:9.747200pt;}
._93{width:10.882667pt;}
._91{width:11.871467pt;}
._e{width:13.282133pt;}
._5{width:15.235733pt;}
._7d{width:18.812800pt;}
._92{width:23.554667pt;}
._98{width:25.020267pt;}
._97{width:26.845867pt;}
._94{width:28.289067pt;}
._3a{width:33.105600pt;}
._99{width:34.818667pt;}
._95{width:48.587733pt;}
._88{width:131.521600pt;}
._81{width:143.675733pt;}
._87{width:147.857067pt;}
._84{width:149.800000pt;}
._8a{width:156.737600pt;}
._86{width:162.595733pt;}
._83{width:164.574933pt;}
._80{width:165.617600pt;}
._89{width:168.114667pt;}
._90{width:169.520000pt;}
._82{width:171.982933pt;}
._8e{width:177.909333pt;}
._85{width:180.862400pt;}
._8f{width:182.678400pt;}
._8c{width:186.442667pt;}
._79{width:192.049067pt;}
._61{width:196.687467pt;}
._60{width:198.460267pt;}
._7f{width:201.275733pt;}
._66{width:209.837867pt;}
._65{width:210.746667pt;}
._59{width:212.591467pt;}
._40{width:214.380800pt;}
._70{width:215.523200pt;}
._8d{width:217.012800pt;}
._3d{width:222.272533pt;}
._52{width:225.569067pt;}
._57{width:227.560533pt;}
._3f{width:229.860267pt;}
._6c{width:231.367467pt;}
._8b{width:235.210133pt;}
._5e{width:239.148267pt;}
._2a{width:240.260267pt;}
._5c{width:241.181867pt;}
._64{width:242.445333pt;}
._4e{width:243.440000pt;}
._58{width:244.987733pt;}
._2e{width:253.628800pt;}
._62{width:256.352533pt;}
._3e{width:258.082133pt;}
._4c{width:259.808533pt;}
._6a{width:261.747733pt;}
._56{width:267.807467pt;}
._3b{width:269.845867pt;}
._51{width:271.794133pt;}
._5a{width:272.803733pt;}
._15{width:274.650133pt;}
._2d{width:275.662933pt;}
._48{width:276.615467pt;}
._5d{width:279.708267pt;}
._14{width:280.782933pt;}
._4d{width:282.221867pt;}
._54{width:286.624533pt;}
._25{width:287.665067pt;}
._1e{width:290.485333pt;}
._27{width:291.798400pt;}
._12{width:292.699733pt;}
._26{width:294.495467pt;}
._28{width:296.210133pt;}
._50{width:298.976000pt;}
._2c{width:301.205333pt;}
._5b{width:302.264000pt;}
._76{width:303.357333pt;}
._1a{width:305.307733pt;}
._53{width:306.393600pt;}
._2b{width:307.347200pt;}
._42{width:311.232533pt;}
._5f{width:313.144000pt;}
._1d{width:316.036267pt;}
._24{width:317.881600pt;}
._13{width:320.336334pt;}
._1c{width:322.170133pt;}
._23{width:323.318933pt;}
._17{width:326.339200pt;}
._4b{width:330.488000pt;}
._29{width:331.649600pt;}
._47{width:333.015467pt;}
._68{width:334.432533pt;}
._1b{width:336.210133pt;}
._16{width:337.262400pt;}
._75{width:338.194133pt;}
._49{width:339.375467pt;}
._21{width:345.690133pt;}
._43{width:347.042133pt;}
._3c{width:348.216533pt;}
._6f{width:349.320000pt;}
._4a{width:350.598400pt;}
._20{width:352.579733pt;}
._67{width:354.628267pt;}
._22{width:355.540800pt;}
._46{width:359.470400pt;}
._63{width:360.548800pt;}
._45{width:361.588800pt;}
._44{width:363.077867pt;}
._41{width:371.349333pt;}
._34{width:373.462933pt;}
._19{width:375.157333pt;}
._6b{width:378.906133pt;}
._1f{width:381.232867pt;}
._18{width:383.133867pt;}
._33{width:384.976000pt;}
._73{width:389.214933pt;}
._6e{width:391.448533pt;}
._7b{width:393.709867pt;}
._35{width:395.702400pt;}
._74{width:396.632533pt;}
._37{width:399.798400pt;}
._6d{width:401.155200pt;}
._55{width:403.562667pt;}
._7c{width:404.902400pt;}
._71{width:415.937067pt;}
._7a{width:418.520533pt;}
._72{width:423.355200pt;}
._78{width:432.357333pt;}
._77{width:439.770133pt;}
._31{width:459.489600pt;}
._7e{width:473.006933pt;}
._36{width:478.410667pt;}
._30{width:485.825067pt;}
._2f{width:488.747733pt;}
._69{width:541.889067pt;}
._32{width:543.607467pt;}
.fs5{font-size:31.093333pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:177.532800pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:42.341067pt;}
.y7c{bottom:48.634667pt;}
.yb1{bottom:59.007733pt;}
.y7b{bottom:65.301333pt;}
.y15b{bottom:65.651600pt;}
.y2{bottom:75.590533pt;}
.yb0{bottom:75.674400pt;}
.y1bd{bottom:76.523733pt;}
.y203{bottom:76.645067pt;}
.y27e{bottom:78.193733pt;}
.y15a{bottom:78.984933pt;}
.y26b{bottom:79.742267pt;}
.yd7{bottom:81.962667pt;}
.y7a{bottom:81.968000pt;}
.y17a{bottom:83.285467pt;}
.y2e{bottom:83.574267pt;}
.y22c{bottom:85.747467pt;}
.y48{bottom:86.020533pt;}
.y130{bottom:86.723867pt;}
.y106{bottom:87.511333pt;}
.y220{bottom:89.532267pt;}
.y1bc{bottom:89.857067pt;}
.y247{bottom:91.080800pt;}
.y159{bottom:92.318267pt;}
.y202{bottom:93.311733pt;}
.y27d{bottom:94.860400pt;}
.yaf{bottom:96.120667pt;}
.y26a{bottom:96.408933pt;}
.yd6{bottom:98.629333pt;}
.y79{bottom:98.634667pt;}
.y179{bottom:99.952133pt;}
.y2d{bottom:100.240933pt;}
.y22b{bottom:102.414133pt;}
.y1dd{bottom:102.419467pt;}
.y47{bottom:102.687200pt;}
.y1bb{bottom:103.190400pt;}
.y12f{bottom:103.390533pt;}
.y105{bottom:104.178000pt;}
.y158{bottom:105.651600pt;}
.y21f{bottom:106.198933pt;}
.y246{bottom:107.747467pt;}
.y201{bottom:109.978400pt;}
.y27c{bottom:111.527067pt;}
.yae{bottom:112.787333pt;}
.y269{bottom:113.075600pt;}
.y226{bottom:113.758000pt;}
.yd5{bottom:115.296000pt;}
.y78{bottom:115.301333pt;}
.y1ba{bottom:116.523733pt;}
.y178{bottom:116.618800pt;}
.y2c{bottom:116.907600pt;}
.y157{bottom:118.984933pt;}
.y22a{bottom:119.080800pt;}
.y1dc{bottom:119.086133pt;}
.y46{bottom:119.353867pt;}
.y12e{bottom:120.057200pt;}
.y104{bottom:120.844667pt;}
.y21e{bottom:122.865600pt;}
.y200{bottom:126.645067pt;}
.y245{bottom:128.193733pt;}
.yad{bottom:129.454000pt;}
.y268{bottom:129.742267pt;}
.y1b9{bottom:129.857067pt;}
.y225{bottom:130.424667pt;}
.yd4{bottom:131.962667pt;}
.y77{bottom:131.968000pt;}
.y156{bottom:132.318267pt;}
.y177{bottom:133.285467pt;}
.y2b{bottom:133.574267pt;}
.y229{bottom:135.747467pt;}
.y1db{bottom:135.752800pt;}
.y45{bottom:136.020533pt;}
.y12d{bottom:136.723867pt;}
.y103{bottom:137.511333pt;}
.y1b8{bottom:143.190400pt;}
.y1ff{bottom:143.311733pt;}
.y244{bottom:144.860400pt;}
.y155{bottom:145.651600pt;}
.yac{bottom:146.120667pt;}
.y267{bottom:146.408933pt;}
.y224{bottom:147.091333pt;}
.yd3{bottom:148.629333pt;}
.y76{bottom:148.634667pt;}
.y176{bottom:149.952133pt;}
.y2a{bottom:150.240933pt;}
.y228{bottom:152.414133pt;}
.y1da{bottom:152.419467pt;}
.y44{bottom:152.687200pt;}
.y102{bottom:154.178000pt;}
.y1b7{bottom:156.857067pt;}
.y154{bottom:158.984933pt;}
.y1fe{bottom:159.978400pt;}
.y243{bottom:161.527067pt;}
.yab{bottom:162.787333pt;}
.y223{bottom:163.758000pt;}
.y12c{bottom:164.220533pt;}
.yd2{bottom:165.296000pt;}
.y75{bottom:165.301333pt;}
.y266{bottom:166.855200pt;}
.y29{bottom:166.907600pt;}
.y1d9{bottom:169.086133pt;}
.y43{bottom:169.353867pt;}
.y101{bottom:170.844667pt;}
.y1b6{bottom:172.457067pt;}
.y1fd{bottom:176.645067pt;}
.y12b{bottom:177.553867pt;}
.y242{bottom:178.193733pt;}
.yaa{bottom:179.454000pt;}
.y227{bottom:180.419467pt;}
.y222{bottom:180.424667pt;}
.y175{bottom:181.073600pt;}
.yd1{bottom:181.962667pt;}
.y74{bottom:181.968000pt;}
.y265{bottom:183.521867pt;}
.y28{bottom:183.574267pt;}
.y153{bottom:184.464667pt;}
.y1d8{bottom:185.752800pt;}
.y42{bottom:186.020533pt;}
.y100{bottom:187.511333pt;}
.y12a{bottom:190.887200pt;}
.y21d{bottom:193.311733pt;}
.y174{bottom:194.406933pt;}
.y241{bottom:194.860400pt;}
.ya9{bottom:196.120667pt;}
.y1fc{bottom:197.091333pt;}
.yd0{bottom:198.629333pt;}
.y73{bottom:198.634667pt;}
.y27b{bottom:198.639867pt;}
.y264{bottom:200.188533pt;}
.y27{bottom:200.240933pt;}
.y1d7{bottom:202.419467pt;}
.y41{bottom:202.687200pt;}
.yff{bottom:204.178000pt;}
.y129{bottom:204.220533pt;}
.y152{bottom:207.131333pt;}
.y173{bottom:207.740267pt;}
.y1b5{bottom:208.430800pt;}
.y21c{bottom:209.978400pt;}
.ya8{bottom:212.787333pt;}
.y1fb{bottom:213.758000pt;}
.ycf{bottom:215.296000pt;}
.y240{bottom:215.306533pt;}
.y26{bottom:216.907600pt;}
.y128{bottom:217.553867pt;}
.y72{bottom:219.080800pt;}
.y1d6{bottom:219.086133pt;}
.y40{bottom:219.353733pt;}
.y263{bottom:220.634667pt;}
.y172{bottom:221.073600pt;}
.y1b4{bottom:224.030800pt;}
.y21b{bottom:226.645067pt;}
.ya7{bottom:229.454000pt;}
.y151{bottom:229.798000pt;}
.y1fa{bottom:230.424667pt;}
.yce{bottom:231.962667pt;}
.y23f{bottom:231.973200pt;}
.yfe{bottom:232.183200pt;}
.y25{bottom:233.574267pt;}
.y171{bottom:234.406933pt;}
.y71{bottom:235.747467pt;}
.y1d5{bottom:235.752800pt;}
.y3f{bottom:236.020400pt;}
.y262{bottom:237.301333pt;}
.y21a{bottom:243.311733pt;}
.ya6{bottom:246.120667pt;}
.y1f9{bottom:247.091333pt;}
.y127{bottom:247.596667pt;}
.ycd{bottom:248.629333pt;}
.y23e{bottom:248.639867pt;}
.y24{bottom:250.240933pt;}
.y196{bottom:251.474533pt;}
.y70{bottom:252.414133pt;}
.y1d4{bottom:252.419467pt;}
.y3e{bottom:252.687067pt;}
.y261{bottom:253.968000pt;}
.y170{bottom:259.886667pt;}
.y219{bottom:259.978400pt;}
.y1b3{bottom:260.004400pt;}
.ya5{bottom:262.787333pt;}
.yfd{bottom:263.521867pt;}
.y1f8{bottom:263.758000pt;}
.ycc{bottom:265.296000pt;}
.y23d{bottom:265.306533pt;}
.y23{bottom:266.907600pt;}
.y195{bottom:268.141200pt;}
.y6f{bottom:269.080800pt;}
.y1d3{bottom:269.086133pt;}
.y3d{bottom:269.353733pt;}
.y260{bottom:270.634667pt;}
.y150{bottom:275.131333pt;}
.y1b2{bottom:275.604400pt;}
.y218{bottom:276.645200pt;}
.y126{bottom:277.666267pt;}
.ya4{bottom:279.454000pt;}
.yfc{bottom:280.188400pt;}
.y1f7{bottom:280.424667pt;}
.ycb{bottom:281.962667pt;}
.y23c{bottom:281.973200pt;}
.y16f{bottom:282.553333pt;}
.y22{bottom:283.574267pt;}
.y194{bottom:284.807867pt;}
.y6e{bottom:285.747467pt;}
.y1d2{bottom:285.752800pt;}
.y3c{bottom:286.020400pt;}
.y25f{bottom:291.080800pt;}
.y217{bottom:293.311867pt;}
.ya3{bottom:296.120667pt;}
.yfb{bottom:296.855067pt;}
.y1f6{bottom:297.091333pt;}
.y14f{bottom:297.798000pt;}
.yca{bottom:298.629333pt;}
.y23b{bottom:298.639867pt;}
.y21{bottom:300.240933pt;}
.y193{bottom:301.474533pt;}
.y6d{bottom:302.414133pt;}
.y1d1{bottom:302.419467pt;}
.y3b{bottom:302.687067pt;}
.y16e{bottom:305.220000pt;}
.y125{bottom:306.012667pt;}
.y25e{bottom:307.747467pt;}
.y216{bottom:309.978533pt;}
.y1b1{bottom:311.578133pt;}
.ya2{bottom:312.787333pt;}
.yfa{bottom:313.521733pt;}
.y1f5{bottom:313.758000pt;}
.yc9{bottom:315.296000pt;}
.y20{bottom:316.907600pt;}
.y192{bottom:318.141200pt;}
.y6c{bottom:319.080800pt;}
.y1d0{bottom:319.086133pt;}
.y3a{bottom:319.353733pt;}
.y14e{bottom:320.464667pt;}
.y215{bottom:326.645200pt;}
.y1b0{bottom:327.178133pt;}
.y25d{bottom:328.193733pt;}
.ya1{bottom:329.454000pt;}
.yf9{bottom:330.188400pt;}
.y1f4{bottom:330.424667pt;}
.y1f{bottom:333.574267pt;}
.y6b{bottom:335.747467pt;}
.y1cf{bottom:335.752800pt;}
.y39{bottom:336.020400pt;}
.y124{bottom:336.248800pt;}
.y191{bottom:341.914000pt;}
.yc8{bottom:343.301333pt;}
.y214{bottom:343.311867pt;}
.y25c{bottom:344.860400pt;}
.ya0{bottom:346.120667pt;}
.yf8{bottom:346.855067pt;}
.y1f3{bottom:347.091333pt;}
.y1e{bottom:350.240933pt;}
.y16d{bottom:350.553333pt;}
.y6a{bottom:352.414133pt;}
.y1ce{bottom:352.419467pt;}
.y38{bottom:352.687067pt;}
.y190{bottom:355.247333pt;}
.y25b{bottom:361.527067pt;}
.y9f{bottom:362.787333pt;}
.y1af{bottom:363.151867pt;}
.yf7{bottom:363.521733pt;}
.y1f2{bottom:363.758000pt;}
.y14d{bottom:365.798000pt;}
.y1d{bottom:366.907600pt;}
.y123{bottom:368.374800pt;}
.y18f{bottom:368.580667pt;}
.y69{bottom:369.080800pt;}
.y1cd{bottom:369.086133pt;}
.y37{bottom:369.353733pt;}
.y27a{bottom:372.865600pt;}
.y16c{bottom:373.220000pt;}
.yc7{bottom:374.639867pt;}
.y25a{bottom:378.193733pt;}
.y1ae{bottom:378.751867pt;}
.y9e{bottom:379.454000pt;}
.yf6{bottom:380.188400pt;}
.y1f1{bottom:380.424667pt;}
.y18e{bottom:381.914000pt;}
.y1c{bottom:383.574267pt;}
.y68{bottom:385.747467pt;}
.y1cc{bottom:385.752800pt;}
.y36{bottom:386.020533pt;}
.y14c{bottom:388.464667pt;}
.y279{bottom:389.532267pt;}
.yc6{bottom:391.306533pt;}
.y259{bottom:394.860400pt;}
.y18d{bottom:395.247333pt;}
.y16b{bottom:395.886667pt;}
.y9d{bottom:396.120667pt;}
.yf5{bottom:396.855067pt;}
.y1f0{bottom:397.091333pt;}
.y122{bottom:398.611067pt;}
.y1b{bottom:400.240933pt;}
.y67{bottom:402.414133pt;}
.y23a{bottom:402.419467pt;}
.y1cb{bottom:406.198933pt;}
.yc5{bottom:407.973200pt;}
.y14b{bottom:411.131333pt;}
.y258{bottom:411.527067pt;}
.y9c{bottom:412.787333pt;}
.y35{bottom:413.353867pt;}
.yf4{bottom:413.521733pt;}
.y213{bottom:413.758000pt;}
.y1ad{bottom:415.338667pt;}
.y1a{bottom:416.907600pt;}
.y1ef{bottom:417.537467pt;}
.y66{bottom:419.080800pt;}
.y239{bottom:419.086133pt;}
.y18c{bottom:420.727200pt;}
.y1ca{bottom:422.865600pt;}
.yc4{bottom:424.639867pt;}
.y121{bottom:428.847333pt;}
.y9b{bottom:429.454000pt;}
.yf3{bottom:430.188400pt;}
.y212{bottom:430.424667pt;}
.y257{bottom:431.973200pt;}
.y19{bottom:433.574267pt;}
.y1ee{bottom:434.204133pt;}
.y65{bottom:435.747467pt;}
.y238{bottom:435.752800pt;}
.y1ac{bottom:436.938667pt;}
.y1c9{bottom:439.532267pt;}
.y34{bottom:441.133333pt;}
.y16a{bottom:441.220000pt;}
.yc3{bottom:441.306533pt;}
.y18b{bottom:443.393867pt;}
.yf2{bottom:446.855067pt;}
.y211{bottom:447.091333pt;}
.y256{bottom:448.639867pt;}
.y9a{bottom:449.900133pt;}
.y18{bottom:450.240933pt;}
.y1ed{bottom:450.870800pt;}
.y64{bottom:452.414133pt;}
.y237{bottom:452.419467pt;}
.y1c8{bottom:456.198933pt;}
.y14a{bottom:456.464667pt;}
.y33{bottom:457.800000pt;}
.yc2{bottom:457.973200pt;}
.y1ab{bottom:458.258933pt;}
.y278{bottom:459.978533pt;}
.y120{bottom:460.973333pt;}
.yf1{bottom:463.521733pt;}
.y210{bottom:463.758000pt;}
.y169{bottom:463.886667pt;}
.y255{bottom:465.306533pt;}
.y18a{bottom:466.060533pt;}
.y99{bottom:466.566800pt;}
.y17{bottom:466.907600pt;}
.y1ec{bottom:467.537467pt;}
.y63{bottom:469.080800pt;}
.y236{bottom:469.086133pt;}
.y1c7{bottom:472.865600pt;}
.y1aa{bottom:474.258933pt;}
.yc1{bottom:474.639867pt;}
.y277{bottom:476.645200pt;}
.y32{bottom:478.246133pt;}
.y149{bottom:479.131333pt;}
.yf0{bottom:480.188400pt;}
.y20f{bottom:480.424667pt;}
.y254{bottom:481.973200pt;}
.y98{bottom:483.233467pt;}
.y16{bottom:483.574267pt;}
.y1eb{bottom:484.204133pt;}
.y62{bottom:485.747467pt;}
.y168{bottom:486.553333pt;}
.y1c6{bottom:489.532267pt;}
.yc0{bottom:491.306533pt;}
.y276{bottom:493.311867pt;}
.y1a9{bottom:494.038400pt;}
.y31{bottom:494.912800pt;}
.y11f{bottom:494.989067pt;}
.yef{bottom:496.855067pt;}
.y20e{bottom:497.091333pt;}
.y253{bottom:498.639867pt;}
.y97{bottom:499.900133pt;}
.y15{bottom:500.240933pt;}
.y1ea{bottom:500.870800pt;}
.y148{bottom:501.798000pt;}
.y61{bottom:502.414133pt;}
.y1c5{bottom:506.198933pt;}
.ybf{bottom:507.973200pt;}
.y275{bottom:509.978533pt;}
.y1a8{bottom:510.705067pt;}
.y189{bottom:511.393867pt;}
.y30{bottom:511.579467pt;}
.y20d{bottom:513.758000pt;}
.y96{bottom:516.566800pt;}
.y14{bottom:516.907600pt;}
.y1e9{bottom:517.537467pt;}
.y60{bottom:519.080800pt;}
.y252{bottom:519.086133pt;}
.y1c4{bottom:522.865600pt;}
.y147{bottom:524.464667pt;}
.ybe{bottom:524.639867pt;}
.yee{bottom:524.860400pt;}
.y274{bottom:526.645200pt;}
.y1a7{bottom:527.371733pt;}
.y2f{bottom:528.246133pt;}
.y11e{bottom:529.004800pt;}
.y20c{bottom:530.424667pt;}
.y167{bottom:531.886667pt;}
.y95{bottom:533.233467pt;}
.y188{bottom:534.060533pt;}
.y1e8{bottom:534.204133pt;}
.y5f{bottom:535.747467pt;}
.y251{bottom:535.752800pt;}
.y1c3{bottom:539.532267pt;}
.ybd{bottom:541.306533pt;}
.y273{bottom:543.311867pt;}
.y13{bottom:544.912800pt;}
.y144{bottom:545.984933pt;}
.y94{bottom:549.900133pt;}
.y1e7{bottom:550.870800pt;}
.y5e{bottom:552.414133pt;}
.y250{bottom:552.419467pt;}
.y146{bottom:552.651600pt;}
.y166{bottom:554.553333pt;}
.yed{bottom:556.198933pt;}
.y187{bottom:556.727200pt;}
.y1a6{bottom:557.371733pt;}
.ybc{bottom:557.973200pt;}
.y280{bottom:559.978533pt;}
.y11d{bottom:561.130800pt;}
.y272{bottom:563.758000pt;}
.y93{bottom:566.566800pt;}
.y1e6{bottom:567.537467pt;}
.y145{bottom:568.651600pt;}
.y24f{bottom:569.086133pt;}
.y1a5{bottom:570.705067pt;}
.yec{bottom:572.865600pt;}
.ybb{bottom:574.639867pt;}
.y27f{bottom:576.645200pt;}
.y165{bottom:577.220000pt;}
.y5d{bottom:580.419467pt;}
.y271{bottom:580.424667pt;}
.y12{bottom:582.483600pt;}
.y92{bottom:583.233467pt;}
.y1a4{bottom:584.038400pt;}
.y1e5{bottom:584.204133pt;}
.y11b{bottom:588.908533pt;}
.yeb{bottom:589.532267pt;}
.yba{bottom:591.306533pt;}
.y235{bottom:593.311867pt;}
.y143{bottom:596.025333pt;}
.y11a{bottom:596.908533pt;}
.y270{bottom:597.091333pt;}
.y1a3{bottom:597.371733pt;}
.y11{bottom:598.483600pt;}
.y91{bottom:599.900133pt;}
.y1e4{bottom:600.870800pt;}
.y186{bottom:602.060533pt;}
.y11c{bottom:604.908533pt;}
.yea{bottom:606.198933pt;}
.yb9{bottom:607.973200pt;}
.y5c{bottom:609.978533pt;}
.y1a2{bottom:610.705067pt;}
.y142{bottom:612.025333pt;}
.y26f{bottom:613.758000pt;}
.y10{bottom:614.483600pt;}
.y90{bottom:616.566800pt;}
.y1e3{bottom:617.537467pt;}
.y164{bottom:622.553333pt;}
.ye9{bottom:622.865600pt;}
.yb8{bottom:624.639867pt;}
.y185{bottom:624.727200pt;}
.y234{bottom:626.645200pt;}
.y119{bottom:627.143333pt;}
.y26e{bottom:630.424667pt;}
.yf{bottom:630.483600pt;}
.y8f{bottom:633.233467pt;}
.y1e2{bottom:634.204133pt;}
.y1a1{bottom:635.038400pt;}
.y141{bottom:635.778933pt;}
.ye8{bottom:639.532267pt;}
.yb7{bottom:641.306533pt;}
.y233{bottom:643.311867pt;}
.y26d{bottom:647.091333pt;}
.y184{bottom:647.393867pt;}
.y1a0{bottom:647.528667pt;}
.y163{bottom:648.060000pt;}
.y8e{bottom:649.900133pt;}
.y5b{bottom:650.870800pt;}
.ye{bottom:650.923600pt;}
.y140{bottom:652.445600pt;}
.ye7{bottom:656.198933pt;}
.yb6{bottom:657.973200pt;}
.y232{bottom:659.978533pt;}
.y10e{bottom:661.973200pt;}
.y26c{bottom:663.758000pt;}
.y8d{bottom:666.566800pt;}
.y5a{bottom:667.537467pt;}
.yd{bottom:667.811600pt;}
.y13f{bottom:669.112267pt;}
.y221{bottom:671.317067pt;}
.y162{bottom:672.626800pt;}
.ye6{bottom:672.865600pt;}
.yb5{bottom:674.639867pt;}
.y118{bottom:676.639867pt;}
.y24e{bottom:676.645200pt;}
.yc{bottom:678.483600pt;}
.y10d{bottom:678.639867pt;}
.y19f{bottom:680.392800pt;}
.y231{bottom:680.424667pt;}
.y8c{bottom:683.233467pt;}
.y1e1{bottom:684.204133pt;}
.y13e{bottom:685.778933pt;}
.y59{bottom:687.983733pt;}
.ye5{bottom:689.532267pt;}
.yb4{bottom:691.306533pt;}
.y19e{bottom:692.676133pt;}
.y183{bottom:692.727200pt;}
.y117{bottom:693.306533pt;}
.y24d{bottom:693.311867pt;}
.y10c{bottom:695.306533pt;}
.y230{bottom:697.091333pt;}
.y161{bottom:698.138667pt;}
.y8b{bottom:699.900133pt;}
.y1e0{bottom:700.870800pt;}
.y13d{bottom:702.445600pt;}
.y58{bottom:704.650400pt;}
.ye4{bottom:706.198933pt;}
.y116{bottom:709.973200pt;}
.y1c2{bottom:709.978533pt;}
.yb{bottom:710.483600pt;}
.y10b{bottom:711.973200pt;}
.y22f{bottom:713.758000pt;}
.y182{bottom:715.393867pt;}
.y8a{bottom:716.566800pt;}
.y1df{bottom:717.537467pt;}
.y13c{bottom:719.112267pt;}
.yb3{bottom:719.311867pt;}
.y57{bottom:721.317067pt;}
.ye3{bottom:722.865600pt;}
.y115{bottom:726.639867pt;}
.y1c1{bottom:726.645200pt;}
.y15f{bottom:727.365200pt;}
.y19d{bottom:728.374800pt;}
.y10a{bottom:728.639867pt;}
.y22e{bottom:730.424667pt;}
.y89{bottom:733.233467pt;}
.y1de{bottom:734.204133pt;}
.y15e{bottom:735.365200pt;}
.y13b{bottom:735.778933pt;}
.y56{bottom:737.983733pt;}
.y181{bottom:738.060533pt;}
.ye2{bottom:739.532267pt;}
.y19c{bottom:741.603200pt;}
.y114{bottom:743.306533pt;}
.y1c0{bottom:743.311867pt;}
.y160{bottom:743.365200pt;}
.y109{bottom:745.306533pt;}
.ya{bottom:746.263200pt;}
.y22d{bottom:747.091333pt;}
.y20b{bottom:750.870800pt;}
.y88{bottom:753.679733pt;}
.y55{bottom:754.650400pt;}
.ye1{bottom:756.198933pt;}
.y113{bottom:759.973200pt;}
.y1bf{bottom:759.978533pt;}
.y108{bottom:761.973200pt;}
.y24c{bottom:763.758000pt;}
.y13a{bottom:767.086000pt;}
.y20a{bottom:767.537467pt;}
.y15d{bottom:767.993867pt;}
.y87{bottom:770.346400pt;}
.y54{bottom:771.317067pt;}
.ye0{bottom:772.865600pt;}
.y112{bottom:776.639867pt;}
.y1be{bottom:776.645200pt;}
.y9{bottom:778.263200pt;}
.y19b{bottom:780.343467pt;}
.y139{bottom:780.419333pt;}
.y24b{bottom:780.424667pt;}
.y180{bottom:783.393867pt;}
.y15c{bottom:783.993867pt;}
.y209{bottom:784.204133pt;}
.y86{bottom:787.013067pt;}
.y53{bottom:787.983733pt;}
.y107{bottom:789.978533pt;}
.y111{bottom:793.306533pt;}
.ydf{bottom:793.311867pt;}
.y19a{bottom:793.571733pt;}
.y24a{bottom:797.091333pt;}
.y208{bottom:800.870800pt;}
.y85{bottom:803.679733pt;}
.y52{bottom:804.650400pt;}
.y138{bottom:804.752667pt;}
.y17f{bottom:806.060533pt;}
.y110{bottom:809.973200pt;}
.yde{bottom:809.978533pt;}
.y8{bottom:810.263200pt;}
.y207{bottom:817.537467pt;}
.y84{bottom:820.346400pt;}
.y51{bottom:821.317067pt;}
.y137{bottom:825.126267pt;}
.ydd{bottom:826.645200pt;}
.y17e{bottom:828.727200pt;}
.y199{bottom:831.367067pt;}
.y206{bottom:834.204133pt;}
.y83{bottom:837.013067pt;}
.y10f{bottom:837.978533pt;}
.y50{bottom:837.983733pt;}
.y7{bottom:839.596533pt;}
.ydc{bottom:843.311867pt;}
.y198{bottom:844.595333pt;}
.y136{bottom:845.500000pt;}
.y205{bottom:850.870800pt;}
.y17d{bottom:851.393867pt;}
.y82{bottom:853.679733pt;}
.y4f{bottom:854.650400pt;}
.ydb{bottom:859.978533pt;}
.y135{bottom:865.873733pt;}
.y204{bottom:867.537467pt;}
.y6{bottom:868.929867pt;}
.y81{bottom:870.346400pt;}
.y4e{bottom:871.317067pt;}
.y17c{bottom:872.914000pt;}
.yda{bottom:876.645200pt;}
.y197{bottom:881.083867pt;}
.y249{bottom:884.204133pt;}
.y133{bottom:886.247333pt;}
.y80{bottom:887.013067pt;}
.y17b{bottom:887.580667pt;}
.y4d{bottom:887.983733pt;}
.yd9{bottom:893.311867pt;}
.y132{bottom:894.247333pt;}
.y248{bottom:900.870800pt;}
.y134{bottom:902.247333pt;}
.y7f{bottom:903.679733pt;}
.y4c{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.yd8{bottom:909.978533pt;}
.y7e{bottom:920.346400pt;}
.y4b{bottom:921.317067pt;}
.y131{bottom:922.954400pt;}
.y4{bottom:924.287733pt;}
.y7d{bottom:937.013067pt;}
.y4a{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.y1{bottom:985.150267pt;}
.y49{bottom:986.095200pt;}
.ha{height:30.052500pt;}
.h12{height:31.062500pt;}
.h9{height:33.449625pt;}
.h10{height:38.250000pt;}
.h11{height:38.520833pt;}
.he{height:38.828125pt;}
.hd{height:42.710938pt;}
.h5{height:47.812500pt;}
.h4{height:48.151042pt;}
.hc{height:52.593750pt;}
.hb{height:52.966146pt;}
.h7{height:57.375000pt;}
.h8{height:57.781250pt;}
.h2{height:66.937500pt;}
.h6{height:67.411458pt;}
.hf{height:79.812500pt;}
.h18{height:88.559700pt;}
.h17{height:88.560233pt;}
.h15{height:96.946367pt;}
.h16{height:100.726100pt;}
.h13{height:106.479167pt;}
.h3{height:160.282298pt;}
.h14{height:165.145833pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x15{left:75.590533pt;}
.x45{left:76.880933pt;}
.x4f{left:78.016933pt;}
.x42{left:79.061733pt;}
.x25{left:80.410533pt;}
.x4e{left:81.431600pt;}
.x9{left:83.107333pt;}
.xb{left:85.214400pt;}
.x6{left:88.183600pt;}
.xf{left:90.738267pt;}
.x10{left:91.825467pt;}
.x14{left:94.488133pt;}
.x5e{left:96.572267pt;}
.x41{left:101.915867pt;}
.x24{left:103.304533pt;}
.x4b{left:106.920133pt;}
.x21{left:109.479600pt;}
.xe{left:111.197067pt;}
.x23{left:113.548667pt;}
.x22{left:115.160000pt;}
.x1e{left:116.872267pt;}
.x4c{left:118.775600pt;}
.x3e{left:119.769067pt;}
.x3f{left:121.621333pt;}
.x1f{left:123.548667pt;}
.x40{left:124.577067pt;}
.x19{left:125.892533pt;}
.x20{left:127.634000pt;}
.x3d{left:129.762667pt;}
.x54{left:131.375200pt;}
.x7{left:134.522133pt;}
.x35{left:136.559467pt;}
.x47{left:138.414267pt;}
.x2a{left:140.372533pt;}
.x5a{left:141.423067pt;}
.x55{left:142.713200pt;}
.x56{left:144.565333pt;}
.x58{left:167.394533pt;}
.x53{left:169.900667pt;}
.x5b{left:173.462800pt;}
.x27{left:176.009600pt;}
.x43{left:181.942000pt;}
.xd{left:186.005733pt;}
.x32{left:190.356933pt;}
.x13{left:204.999067pt;}
.xc{left:209.287733pt;}
.x31{left:210.363333pt;}
.x5d{left:218.312000pt;}
.x5c{left:239.457600pt;}
.x1d{left:261.708800pt;}
.x59{left:273.268000pt;}
.x3c{left:285.759333pt;}
.x26{left:294.764800pt;}
.x37{left:297.377200pt;}
.x36{left:302.751600pt;}
.x48{left:305.918933pt;}
.x34{left:317.929067pt;}
.x51{left:320.697333pt;}
.xa{left:321.923733pt;}
.x12{left:324.862533pt;}
.x8{left:330.695333pt;}
.x11{left:336.425067pt;}
.x50{left:358.313067pt;}
.x2b{left:360.905200pt;}
.x30{left:368.141467pt;}
.x46{left:381.288400pt;}
.x29{left:387.961600pt;}
.x1a{left:413.082533pt;}
.x16{left:423.748000pt;}
.x39{left:434.398667pt;}
.x61{left:435.748000pt;}
.x60{left:437.343867pt;}
.x38{left:440.518400pt;}
.x17{left:442.645600pt;}
.x4a{left:444.262533pt;}
.x4d{left:448.863867pt;}
.x49{left:450.382267pt;}
.x4{left:452.233600pt;}
.x44{left:461.863867pt;}
.x28{left:464.207467pt;}
.x57{left:470.141733pt;}
.x5{left:487.995333pt;}
.x2d{left:514.214800pt;}
.x2c{left:520.334533pt;}
.x1b{left:534.442933pt;}
.x18{left:549.496933pt;}
.x1c{left:551.304933pt;}
.x3a{left:563.510533pt;}
.x3b{left:580.372533pt;}
.x33{left:586.936667pt;}
.x52{left:597.875733pt;}
.x2e{left:644.078533pt;}
.x2f{left:660.940533pt;}
.x3{left:689.238800pt;}
.x1{left:735.142533pt;}
.x5f{left:752.942933pt;}
.x2{left:807.596000pt;}
}




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