
    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_7e1d26ef0d7660016c93bc88.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_9c4e5eac7d57c8048ef309d8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_afa2a441ca24ead196135be1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_2455659a06483d84bdf1abd4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.095000;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_f49ffeabf554e219bec07929.woff')format("woff");}.ff5{font-family:ff5;line-height:1.150000;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_84fab05cfe3757fc112d9391.woff')format("woff");}.ff6{font-family:ff6;line-height:0.674316;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_5e60ffd9b3a3254c58b7d743.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087402;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_c6ca699839b2527eb8b7776c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_80d16b77844571891d26e351.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d05ef2b734334c75d3bc33c4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.953000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_76e4f093145b1d493e580155.woff')format("woff");}.ffb{font-family:ffb;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_41db8efa93c8741b2386584f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.840000px;}
.v7{vertical-align:-9.325800px;}
.v6{vertical-align:-6.907200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.991800px;}
.v5{vertical-align:8.347200px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:36.000000px;}
.lsf{letter-spacing:-1.980000px;}
.ls4{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.007200px;}
.lse{letter-spacing:0.009600px;}
.ls15{letter-spacing:0.010200px;}
.ls11{letter-spacing:0.010800px;}
.lsd{letter-spacing:0.013800px;}
.ls1f{letter-spacing:0.015000px;}
.ls1c{letter-spacing:0.015600px;}
.ls1d{letter-spacing:0.030000px;}
.ls26{letter-spacing:0.132000px;}
.ls18{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.330000px;}
.ls17{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.594000px;}
.ls25{letter-spacing:1.386000px;}
.ls23{letter-spacing:2.508000px;}
.ls1b{letter-spacing:2.574000px;}
.ls16{letter-spacing:2.640000px;}
.ls24{letter-spacing:2.706000px;}
.ls20{letter-spacing:3.168000px;}
.ls22{letter-spacing:5.676000px;}
.ls0{letter-spacing:23.455800px;}
.ls10{letter-spacing:139.531200px;}
.ls9{letter-spacing:154.639800px;}
.ls7{letter-spacing:222.274800px;}
.lsb{letter-spacing:260.127600px;}
.ls6{letter-spacing:262.543800px;}
.ls8{letter-spacing:266.777400px;}
.lsa{letter-spacing:271.048200px;}
.ls5{letter-spacing:279.552600px;}
.ls13{letter-spacing:556.148400px;}
.ls14{letter-spacing:572.759400px;}
.ls12{letter-spacing:576.929400px;}
.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;}
}
.ws10a{word-spacing:-71.676000px;}
.ws102{word-spacing:-69.168000px;}
.ws112{word-spacing:-68.706000px;}
.wsf6{word-spacing:-68.640000px;}
.wsfe{word-spacing:-68.574000px;}
.ws111{word-spacing:-68.508000px;}
.ws115{word-spacing:-67.386000px;}
.ws101{word-spacing:-66.594000px;}
.wsfb{word-spacing:-66.528000px;}
.ws103{word-spacing:-66.330000px;}
.ws100{word-spacing:-66.264000px;}
.wsfc{word-spacing:-66.198000px;}
.ws116{word-spacing:-66.132000px;}
.ws4{word-spacing:-66.000000px;}
.ws53{word-spacing:-65.340000px;}
.ws62{word-spacing:-64.680000px;}
.ws89{word-spacing:-64.020000px;}
.ws4b{word-spacing:-55.202400px;}
.wsd3{word-spacing:-55.176000px;}
.ws81{word-spacing:-55.110000px;}
.wsc9{word-spacing:-55.044000px;}
.ws10c{word-spacing:-54.978000px;}
.ws6d{word-spacing:-54.912000px;}
.wsd8{word-spacing:-54.846000px;}
.wsc7{word-spacing:-54.780000px;}
.ws7{word-spacing:-54.714000px;}
.ws63{word-spacing:-54.648000px;}
.wsa1{word-spacing:-54.516000px;}
.ws5d{word-spacing:-54.450000px;}
.wscb{word-spacing:-54.252000px;}
.ws55{word-spacing:-54.186000px;}
.ws88{word-spacing:-54.054000px;}
.ws50{word-spacing:-53.988000px;}
.wse2{word-spacing:-53.922000px;}
.ws67{word-spacing:-53.856000px;}
.wsa7{word-spacing:-53.790000px;}
.ws44{word-spacing:-53.724000px;}
.ws68{word-spacing:-53.658000px;}
.wsed{word-spacing:-53.592000px;}
.wsa6{word-spacing:-53.460000px;}
.ws80{word-spacing:-53.394000px;}
.wscd{word-spacing:-53.328000px;}
.wsad{word-spacing:-53.262000px;}
.ws4e{word-spacing:-53.130000px;}
.ws5b{word-spacing:-53.064000px;}
.ws65{word-spacing:-52.998000px;}
.ws54{word-spacing:-52.932000px;}
.wsa2{word-spacing:-52.866000px;}
.ws64{word-spacing:-52.800000px;}
.wsee{word-spacing:-52.668000px;}
.ws7f{word-spacing:-52.536000px;}
.ws46{word-spacing:-52.338000px;}
.ws51{word-spacing:-52.272000px;}
.wsea{word-spacing:-52.140000px;}
.wse7{word-spacing:-52.074000px;}
.wscc{word-spacing:-52.008000px;}
.ws10f{word-spacing:-51.942000px;}
.ws47{word-spacing:-51.876000px;}
.wsa4{word-spacing:-51.849600px;}
.wsae{word-spacing:-51.810000px;}
.ws8a{word-spacing:-51.744000px;}
.ws94{word-spacing:-51.612000px;}
.ws87{word-spacing:-51.480000px;}
.ws4c{word-spacing:-51.414000px;}
.wsb2{word-spacing:-51.348000px;}
.ws5e{word-spacing:-51.282000px;}
.ws4d{word-spacing:-51.216000px;}
.wsb1{word-spacing:-51.150000px;}
.wse8{word-spacing:-51.084000px;}
.ws4a{word-spacing:-51.018000px;}
.ws45{word-spacing:-50.886000px;}
.wsc6{word-spacing:-50.820000px;}
.ws8c{word-spacing:-50.754000px;}
.wsd4{word-spacing:-50.688000px;}
.ws48{word-spacing:-50.556000px;}
.wsde{word-spacing:-50.490000px;}
.ws8d{word-spacing:-50.424000px;}
.wsb4{word-spacing:-50.292000px;}
.ws5{word-spacing:-50.226000px;}
.wsd7{word-spacing:-50.094000px;}
.ws82{word-spacing:-49.962000px;}
.ws7d{word-spacing:-49.698000px;}
.wsd6{word-spacing:-49.632000px;}
.ws59{word-spacing:-49.500000px;}
.ws69{word-spacing:-49.434000px;}
.ws6f{word-spacing:-49.368000px;}
.wse5{word-spacing:-49.302000px;}
.ws6c{word-spacing:-49.269000px;}
.ws58{word-spacing:-49.170000px;}
.wsaf{word-spacing:-49.104000px;}
.wsd1{word-spacing:-49.038000px;}
.wse0{word-spacing:-48.972000px;}
.wsa3{word-spacing:-48.840000px;}
.ws52{word-spacing:-48.708000px;}
.ws6{word-spacing:-48.576000px;}
.ws6e{word-spacing:-48.510000px;}
.wsfa{word-spacing:-48.312000px;}
.wse6{word-spacing:-48.246000px;}
.ws8b{word-spacing:-48.180000px;}
.ws5f{word-spacing:-47.916000px;}
.ws9e{word-spacing:-47.784000px;}
.ws61{word-spacing:-47.718000px;}
.wsca{word-spacing:-47.520000px;}
.ws49{word-spacing:-47.454000px;}
.wsb3{word-spacing:-47.256000px;}
.ws9f{word-spacing:-47.190000px;}
.wse9{word-spacing:-47.058000px;}
.wseb{word-spacing:-46.992000px;}
.ws9b{word-spacing:-46.926000px;}
.ws43{word-spacing:-46.860000px;}
.wsc8{word-spacing:-46.728000px;}
.ws5c{word-spacing:-46.530000px;}
.ws84{word-spacing:-46.464000px;}
.wsb8{word-spacing:-46.398000px;}
.wsd0{word-spacing:-46.266000px;}
.wsa5{word-spacing:-46.200000px;}
.ws85{word-spacing:-46.068000px;}
.ws113{word-spacing:-46.002000px;}
.wse3{word-spacing:-45.870000px;}
.wsdc{word-spacing:-45.738000px;}
.ws104{word-spacing:-45.474000px;}
.wsec{word-spacing:-45.408000px;}
.ws9c{word-spacing:-45.276000px;}
.ws9d{word-spacing:-45.012000px;}
.wsb7{word-spacing:-44.550000px;}
.wsce{word-spacing:-44.286000px;}
.ws6a{word-spacing:-43.824000px;}
.ws5a{word-spacing:-43.494000px;}
.ws6b{word-spacing:-43.296000px;}
.wsd9{word-spacing:-43.098000px;}
.ws86{word-spacing:-42.768000px;}
.wsda{word-spacing:-42.702000px;}
.wscf{word-spacing:-42.636000px;}
.wsf0{word-spacing:-42.504000px;}
.wsa0{word-spacing:-42.372000px;}
.ws83{word-spacing:-42.042000px;}
.wsb5{word-spacing:-41.976000px;}
.wsdf{word-spacing:-41.382000px;}
.wsb6{word-spacing:-40.788000px;}
.wsd5{word-spacing:-40.722000px;}
.wsef{word-spacing:-40.590000px;}
.ws66{word-spacing:-40.062000px;}
.ws1{word-spacing:-39.960000px;}
.wse1{word-spacing:-39.798000px;}
.wsdd{word-spacing:-39.468000px;}
.ws7c{word-spacing:-39.138000px;}
.wsd2{word-spacing:-39.006000px;}
.wsf7{word-spacing:-38.610000px;}
.ws95{word-spacing:-38.280000px;}
.ws56{word-spacing:-38.082000px;}
.ws4f{word-spacing:-37.752000px;}
.ws114{word-spacing:-37.620000px;}
.wsfd{word-spacing:-36.894000px;}
.wsf4{word-spacing:-36.828000px;}
.wsf1{word-spacing:-35.706000px;}
.wsb0{word-spacing:-35.508000px;}
.ws10d{word-spacing:-34.914000px;}
.wsf3{word-spacing:-31.416000px;}
.wsf8{word-spacing:-29.238000px;}
.wsff{word-spacing:-28.567200px;}
.wsf9{word-spacing:-28.566600px;}
.wsf2{word-spacing:-27.390000px;}
.ws10b{word-spacing:-27.060000px;}
.wse4{word-spacing:-25.476000px;}
.ws107{word-spacing:-24.288000px;}
.wsdb{word-spacing:-24.024000px;}
.ws3{word-spacing:-23.826000px;}
.ws2{word-spacing:-21.318000px;}
.wsf5{word-spacing:-19.470000px;}
.ws10e{word-spacing:-15.048000px;}
.ws60{word-spacing:-14.520000px;}
.ws70{word-spacing:-13.200000px;}
.ws71{word-spacing:-12.360000px;}
.ws105{word-spacing:-12.012000px;}
.ws109{word-spacing:-10.428000px;}
.ws110{word-spacing:-7.920000px;}
.ws0{word-spacing:-6.124800px;}
.ws8f{word-spacing:-5.097600px;}
.ws91{word-spacing:-4.317600px;}
.ws23{word-spacing:-3.168000px;}
.ws2d{word-spacing:-2.160000px;}
.ws15{word-spacing:-1.008000px;}
.ws42{word-spacing:-0.672000px;}
.ws7e{word-spacing:-0.300000px;}
.ws93{word-spacing:-0.180000px;}
.ws8{word-spacing:0.000000px;}
.ws1c{word-spacing:0.144000px;}
.ws57{word-spacing:0.660000px;}
.ws18{word-spacing:0.672000px;}
.ws3c{word-spacing:0.768000px;}
.ws37{word-spacing:1.248000px;}
.ws92{word-spacing:1.320000px;}
.ws25{word-spacing:1.536000px;}
.ws36{word-spacing:1.632000px;}
.ws3b{word-spacing:1.728000px;}
.ws3e{word-spacing:1.776000px;}
.ws2c{word-spacing:2.208000px;}
.ws22{word-spacing:2.976000px;}
.ws31{word-spacing:3.264000px;}
.ws16{word-spacing:3.504000px;}
.ws2b{word-spacing:4.032000px;}
.ws19{word-spacing:4.128000px;}
.ws2e{word-spacing:4.368000px;}
.ws1b{word-spacing:4.416000px;}
.ws3f{word-spacing:4.560000px;}
.ws2a{word-spacing:4.800000px;}
.ws33{word-spacing:4.848000px;}
.ws17{word-spacing:4.944000px;}
.ws14{word-spacing:5.280000px;}
.ws30{word-spacing:6.336000px;}
.ws38{word-spacing:6.576000px;}
.ws13{word-spacing:6.672000px;}
.ws35{word-spacing:6.816000px;}
.ws28{word-spacing:7.248000px;}
.ws40{word-spacing:7.584000px;}
.ws1e{word-spacing:7.680000px;}
.wse{word-spacing:8.592000px;}
.ws39{word-spacing:8.640000px;}
.ws29{word-spacing:8.928000px;}
.ws26{word-spacing:9.504000px;}
.ws3a{word-spacing:9.552000px;}
.ws34{word-spacing:9.744000px;}
.ws2f{word-spacing:9.984000px;}
.ws20{word-spacing:10.512000px;}
.ws1d{word-spacing:10.752000px;}
.ws12{word-spacing:11.184000px;}
.ws3d{word-spacing:11.280000px;}
.ws9{word-spacing:12.480000px;}
.wsf{word-spacing:12.864000px;}
.ws32{word-spacing:13.392000px;}
.ws1a{word-spacing:13.824000px;}
.ws24{word-spacing:14.448000px;}
.ws1f{word-spacing:15.264000px;}
.ws21{word-spacing:15.888000px;}
.ws41{word-spacing:16.032000px;}
.ws27{word-spacing:16.464000px;}
.wsa{word-spacing:16.800000px;}
.ws11{word-spacing:17.712000px;}
.wsc{word-spacing:18.816000px;}
.wsd{word-spacing:20.016000px;}
.ws10{word-spacing:20.112000px;}
.wsb{word-spacing:20.832000px;}
.ws106{word-spacing:45.540000px;}
.ws90{word-spacing:61.382400px;}
.ws72{word-spacing:62.352600px;}
.ws8e{word-spacing:65.822400px;}
.ws108{word-spacing:75.768000px;}
.ws74{word-spacing:78.010800px;}
.ws7b{word-spacing:90.673800px;}
.ws7a{word-spacing:101.309400px;}
.ws73{word-spacing:109.531800px;}
.ws79{word-spacing:126.143400px;}
.ws77{word-spacing:163.033200px;}
.wsab{word-spacing:164.253600px;}
.ws78{word-spacing:178.885800px;}
.ws75{word-spacing:179.644200px;}
.ws76{word-spacing:200.127600px;}
.wsac{word-spacing:249.340800px;}
.wsa9{word-spacing:264.402600px;}
.wsc5{word-spacing:279.480000px;}
.wsaa{word-spacing:300.966600px;}
.wsb9{word-spacing:307.734000px;}
.ws96{word-spacing:343.050600px;}
.wsa8{word-spacing:352.698600px;}
.ws9a{word-spacing:359.661600px;}
.wsc4{word-spacing:361.791600px;}
.ws97{word-spacing:376.290000px;}
.wsc3{word-spacing:377.377200px;}
.wsbb{word-spacing:392.808000px;}
.wsbc{word-spacing:395.031600px;}
.ws99{word-spacing:406.461600px;}
.wsbd{word-spacing:409.419000px;}
.wsbf{word-spacing:411.660600px;}
.wsc1{word-spacing:441.831600px;}
.wsbe{word-spacing:458.460600px;}
.ws98{word-spacing:478.833000px;}
.wsc2{word-spacing:512.759400px;}
.wsc0{word-spacing:547.100400px;}
.wsba{word-spacing:1414.956600px;}
._c{margin-left:-15.345000px;}
._a{margin-left:-7.062000px;}
._3{margin-left:-5.094000px;}
._1{margin-left:-3.552000px;}
._b{margin-left:-2.367600px;}
._0{margin-left:-1.300800px;}
._2{width:1.407840px;}
._9{width:2.442000px;}
._5{width:3.564000px;}
._7{width:5.478000px;}
._4{width:7.458000px;}
._6{width:9.174000px;}
._8{width:10.626000px;}
._2c{width:23.613000px;}
._3a{width:37.433400px;}
._22{width:89.839200px;}
._20{width:114.525000px;}
._23{width:137.993400px;}
._21{width:139.230600px;}
._1b{width:181.662000px;}
._1c{width:199.581600px;}
._1d{width:204.576000px;}
._1f{width:218.032200px;}
._1a{width:223.033200px;}
._12{width:228.944400px;}
._1e{width:235.155600px;}
._24{width:238.326600px;}
._d{width:239.644200px;}
._19{width:243.515400px;}
._18{width:250.166400px;}
._16{width:251.843400px;}
._17{width:256.272600px;}
._14{width:260.127600px;}
._13{width:262.923600px;}
._f{width:266.796000px;}
._10{width:269.195400px;}
._15{width:270.687600px;}
._11{width:277.717800px;}
._e{width:279.552600px;}
._29{width:287.503800px;}
._32{width:366.676800px;}
._31{width:367.756800px;}
._39{width:440.580000px;}
._25{width:452.958600px;}
._2a{width:469.978200px;}
._37{width:510.281400px;}
._27{width:511.873800px;}
._2b{width:522.204600px;}
._30{width:536.604600px;}
._38{width:539.520000px;}
._34{width:543.689400px;}
._26{width:555.462000px;}
._36{width:560.300400px;}
._28{width:572.073600px;}
._35{width:576.929400px;}
._2d{width:745.042200px;}
._2f{width:799.177800px;}
._2e{width:924.985800px;}
._33{width:1277.878800px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.840000px;}
.fs3{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.023450px;}
.y72{bottom:127.941450px;}
.ya2{bottom:130.191450px;}
.y31{bottom:130.795500px;}
.y151{bottom:131.283900px;}
.y1e0{bottom:132.441450px;}
.y1d5{bottom:134.766150px;}
.y207{bottom:135.059400px;}
.yb1{bottom:138.937350px;}
.y18f{bottom:140.884350px;}
.yc2{bottom:141.937350px;}
.y1f3{bottom:143.737500px;}
.y30{bottom:145.195500px;}
.y15b{bottom:146.433900px;}
.y71{bottom:147.441450px;}
.ya1{bottom:150.441450px;}
.y150{bottom:150.783900px;}
.y1df{bottom:152.241450px;}
.y206{bottom:154.859400px;}
.yb0{bottom:158.437350px;}
.y109{bottom:158.817450px;}
.y2f{bottom:159.595500px;}
.y1d4{bottom:161.169150px;}
.yc1{bottom:162.187350px;}
.y1f2{bottom:163.537500px;}
.y15a{bottom:166.233900px;}
.y18e{bottom:166.396200px;}
.y70{bottom:166.941450px;}
.y14f{bottom:170.283900px;}
.ya0{bottom:170.691450px;}
.y1de{bottom:172.041450px;}
.y205{bottom:174.659400px;}
.y108{bottom:176.817450px;}
.yaf{bottom:177.937350px;}
.y2e{bottom:177.955500px;}
.yc0{bottom:182.437350px;}
.y1f1{bottom:183.337500px;}
.y10a{bottom:185.817450px;}
.y1d3{bottom:186.003450px;}
.y159{bottom:186.033900px;}
.y6f{bottom:186.441450px;}
.y14e{bottom:189.783900px;}
.y9f{bottom:190.941450px;}
.yec{bottom:191.583900px;}
.y1dd{bottom:191.841450px;}
.y18d{bottom:191.908050px;}
.y204{bottom:194.459400px;}
.y107{bottom:194.817450px;}
.yae{bottom:197.437350px;}
.ybf{bottom:202.687350px;}
.y1f0{bottom:203.137500px;}
.y158{bottom:205.833900px;}
.y6e{bottom:205.941450px;}
.y14d{bottom:209.283900px;}
.y1d2{bottom:210.233100px;}
.y9e{bottom:211.191450px;}
.y1dc{bottom:211.641450px;}
.y106{bottom:212.817450px;}
.y203{bottom:214.259400px;}
.yeb{bottom:215.251350px;}
.yad{bottom:216.937350px;}
.y18c{bottom:217.419750px;}
.ybe{bottom:222.937350px;}
.y1ef{bottom:222.937500px;}
.y6d{bottom:225.441450px;}
.y157{bottom:225.633900px;}
.y14c{bottom:228.783900px;}
.y3c{bottom:229.262250px;}
.y9d{bottom:231.441450px;}
.y37{bottom:233.012250px;}
.y1d1{bottom:233.858100px;}
.y202{bottom:234.059400px;}
.yac{bottom:236.437350px;}
.y105{bottom:236.484900px;}
.yea{bottom:238.918800px;}
.y1ee{bottom:242.737500px;}
.y18b{bottom:242.931600px;}
.ybd{bottom:243.187350px;}
.y6c{bottom:244.941450px;}
.y156{bottom:245.433900px;}
.y14b{bottom:248.283900px;}
.y3b{bottom:249.512250px;}
.y1db{bottom:251.241450px;}
.y9c{bottom:251.691450px;}
.y36{bottom:252.512250px;}
.y201{bottom:253.859400px;}
.y104{bottom:254.484900px;}
.yab{bottom:255.937350px;}
.y1d0{bottom:257.483100px;}
.y1ed{bottom:262.537500px;}
.ye9{bottom:262.586400px;}
.ybc{bottom:263.437350px;}
.y6b{bottom:264.441450px;}
.y155{bottom:265.233900px;}
.y14a{bottom:267.783900px;}
.y18a{bottom:268.443450px;}
.y3a{bottom:269.762250px;}
.y1da{bottom:271.041450px;}
.y9b{bottom:271.941450px;}
.y35{bottom:272.012250px;}
.y103{bottom:272.484900px;}
.y200{bottom:273.659400px;}
.yaa{bottom:275.437350px;}
.y1cf{bottom:281.107950px;}
.y1ec{bottom:282.337500px;}
.ybb{bottom:283.687350px;}
.y6a{bottom:283.941450px;}
.y154{bottom:285.033900px;}
.ye8{bottom:286.253850px;}
.y149{bottom:287.283900px;}
.y39{bottom:290.012250px;}
.y1d9{bottom:290.841450px;}
.y34{bottom:291.512250px;}
.y9a{bottom:292.191450px;}
.y1ff{bottom:293.459400px;}
.y189{bottom:293.955300px;}
.ya9{bottom:294.937350px;}
.y102{bottom:296.152350px;}
.y1eb{bottom:302.137500px;}
.y69{bottom:303.441450px;}
.yba{bottom:303.937350px;}
.y1ce{bottom:304.732950px;}
.y153{bottom:305.283900px;}
.y148{bottom:306.783900px;}
.ye7{bottom:309.921300px;}
.y38{bottom:310.262250px;}
.y1d8{bottom:310.641450px;}
.y33{bottom:311.012250px;}
.y99{bottom:312.441450px;}
.y1fe{bottom:313.259400px;}
.y101{bottom:314.152350px;}
.ya8{bottom:314.437350px;}
.y188{bottom:319.690800px;}
.y1ea{bottom:321.937500px;}
.y68{bottom:322.941450px;}
.yb9{bottom:324.187350px;}
.y152{bottom:325.533900px;}
.y147{bottom:326.283900px;}
.y1cd{bottom:328.357950px;}
.y1d7{bottom:330.441450px;}
.y98{bottom:332.691450px;}
.y1fd{bottom:333.059400px;}
.ye6{bottom:333.588750px;}
.ya7{bottom:333.937350px;}
.y187{bottom:337.690800px;}
.y100{bottom:337.819950px;}
.y32{bottom:339.016200px;}
.y1e9{bottom:341.737500px;}
.y67{bottom:342.441450px;}
.yb8{bottom:344.437350px;}
.y146{bottom:345.783900px;}
.y1d6{bottom:350.241450px;}
.y1cc{bottom:351.982950px;}
.y1fc{bottom:352.859400px;}
.y97{bottom:352.941450px;}
.ya6{bottom:353.437350px;}
.ye5{bottom:357.256200px;}
.y1e8{bottom:361.537500px;}
.y66{bottom:361.941450px;}
.yb7{bottom:364.687350px;}
.yff{bottom:366.301800px;}
.y186{bottom:370.041450px;}
.y1fb{bottom:372.659400px;}
.ya5{bottom:372.937500px;}
.y96{bottom:373.191450px;}
.y1cb{bottom:375.607950px;}
.y178{bottom:379.641450px;}
.ye4{bottom:380.923650px;}
.y1e7{bottom:381.337500px;}
.y65{bottom:381.441450px;}
.yfe{bottom:382.501800px;}
.yb6{bottom:384.937500px;}
.y185{bottom:389.841450px;}
.ya4{bottom:392.437500px;}
.y1fa{bottom:392.459400px;}
.y12c{bottom:393.178200px;}
.y95{bottom:393.441450px;}
.y177{bottom:399.141450px;}
.y1ca{bottom:399.233100px;}
.y64{bottom:400.941450px;}
.y1e6{bottom:401.137500px;}
.ye3{bottom:404.591250px;}
.yb5{bottom:405.187500px;}
.y28{bottom:406.752000px;}
.y184{bottom:409.641450px;}
.ya3{bottom:411.937500px;}
.y1f9{bottom:412.259400px;}
.y94{bottom:413.691450px;}
.y176{bottom:418.641450px;}
.y63{bottom:420.441450px;}
.y1e5{bottom:420.937500px;}
.y27{bottom:421.752000px;}
.y12b{bottom:422.941950px;}
.yb4{bottom:425.437500px;}
.ye2{bottom:428.258700px;}
.y183{bottom:429.441450px;}
.y1f5{bottom:431.437500px;}
.y1f8{bottom:432.059400px;}
.y1c9{bottom:432.983100px;}
.y93{bottom:433.941450px;}
.y26{bottom:436.752000px;}
.y175{bottom:438.141450px;}
.y62{bottom:439.941450px;}
.y1e4{bottom:440.737500px;}
.yb3{bottom:445.687500px;}
.y182{bottom:449.241450px;}
.y1f4{bottom:450.937500px;}
.y1c8{bottom:450.983100px;}
.y25{bottom:451.752000px;}
.y12a{bottom:452.705700px;}
.y92{bottom:454.191450px;}
.y174{bottom:457.641450px;}
.ydd{bottom:459.426150px;}
.y61{bottom:459.441450px;}
.y1e3{bottom:460.537500px;}
.y1f6{bottom:464.325150px;}
.yb2{bottom:465.937500px;}
.y24{bottom:466.752000px;}
.ye1{bottom:468.426150px;}
.y181{bottom:469.041450px;}
.y91{bottom:474.441450px;}
.y2d{bottom:475.255950px;}
.y173{bottom:477.141450px;}
.ydc{bottom:477.426150px;}
.y60{bottom:478.941450px;}
.y1e2{bottom:480.337500px;}
.y129{bottom:482.469450px;}
.y1c7{bottom:485.316750px;}
.ye0{bottom:486.426150px;}
.y180{bottom:488.841450px;}
.y1f7{bottom:489.441450px;}
.y23{bottom:490.255950px;}
.y90{bottom:494.691450px;}
.ydb{bottom:495.426150px;}
.y172{bottom:496.641450px;}
.y5f{bottom:498.441450px;}
.y1e1{bottom:500.137500px;}
.y1c6{bottom:503.316750px;}
.ydf{bottom:504.426150px;}
.y22{bottom:505.255950px;}
.y17f{bottom:508.641450px;}
.yda{bottom:513.426150px;}
.y8f{bottom:514.941450px;}
.y171{bottom:516.141450px;}
.y5e{bottom:517.941450px;}
.y21{bottom:520.255950px;}
.y128{bottom:521.451300px;}
.yde{bottom:522.426150px;}
.y17e{bottom:528.441450px;}
.yd9{bottom:531.426150px;}
.y8e{bottom:535.191450px;}
.y20{bottom:535.255950px;}
.y170{bottom:535.641450px;}
.y5d{bottom:537.441450px;}
.y1aa{bottom:538.197300px;}
.y1c3{bottom:538.947300px;}
.y127{bottom:539.451300px;}
.y17d{bottom:548.241450px;}
.y1f{bottom:550.255950px;}
.y16f{bottom:555.141450px;}
.y8d{bottom:555.441450px;}
.y5c{bottom:556.941450px;}
.y1a9{bottom:557.697300px;}
.y1c2{bottom:559.197300px;}
.y1e{bottom:565.255950px;}
.yd8{bottom:567.408150px;}
.y17c{bottom:568.041450px;}
.y16e{bottom:574.641450px;}
.y8c{bottom:575.691450px;}
.y5b{bottom:576.441450px;}
.y1a8{bottom:577.197300px;}
.y1c1{bottom:579.447300px;}
.y126{bottom:580.199550px;}
.y1d{bottom:580.255950px;}
.yd7{bottom:583.608150px;}
.y17b{bottom:587.841450px;}
.y16d{bottom:594.141450px;}
.y1c{bottom:595.255950px;}
.y5a{bottom:595.941450px;}
.y125{bottom:596.399400px;}
.y1a7{bottom:596.697300px;}
.y1c0{bottom:599.697300px;}
.y17a{bottom:607.641450px;}
.y1b{bottom:610.255950px;}
.y16c{bottom:613.641450px;}
.y59{bottom:615.441450px;}
.y8b{bottom:616.191450px;}
.y1a6{bottom:616.197300px;}
.yd6{bottom:617.933550px;}
.y1bf{bottom:619.947300px;}
.y1a{bottom:625.255950px;}
.y145{bottom:626.991450px;}
.y179{bottom:627.441450px;}
.y124{bottom:633.141300px;}
.y16b{bottom:633.141450px;}
.y58{bottom:634.941450px;}
.y1a5{bottom:635.697300px;}
.y8a{bottom:636.441450px;}
.yd5{bottom:637.433550px;}
.y1be{bottom:640.197300px;}
.y19{bottom:640.255950px;}
.y144{bottom:647.241450px;}
.y211{bottom:650.241450px;}
.y123{bottom:652.641300px;}
.y16a{bottom:652.641450px;}
.y57{bottom:654.441450px;}
.y1a4{bottom:655.197300px;}
.y18{bottom:655.255950px;}
.y89{bottom:656.691450px;}
.yd4{bottom:656.933550px;}
.y1bd{bottom:660.447300px;}
.y143{bottom:667.041450px;}
.y210{bottom:669.741450px;}
.y17{bottom:670.255950px;}
.y122{bottom:672.141300px;}
.y169{bottom:672.141450px;}
.y56{bottom:673.941450px;}
.y1a3{bottom:674.697300px;}
.yd3{bottom:676.433550px;}
.y88{bottom:676.941450px;}
.yfd{bottom:680.183550px;}
.y1bc{bottom:680.697300px;}
.y16{bottom:685.255950px;}
.y142{bottom:686.841450px;}
.y20f{bottom:689.241450px;}
.y121{bottom:691.641300px;}
.y168{bottom:691.641450px;}
.y55{bottom:693.441450px;}
.y1a2{bottom:694.197300px;}
.yd2{bottom:695.933550px;}
.y87{bottom:697.191450px;}
.y15{bottom:700.255950px;}
.yfc{bottom:700.433550px;}
.y1bb{bottom:700.947300px;}
.y141{bottom:706.641450px;}
.y20e{bottom:708.741450px;}
.y120{bottom:711.141300px;}
.y167{bottom:711.141450px;}
.y54{bottom:712.941450px;}
.y1a1{bottom:713.697300px;}
.y14{bottom:715.255950px;}
.yd1{bottom:715.433550px;}
.y86{bottom:717.441450px;}
.yfb{bottom:720.683550px;}
.y1ba{bottom:721.197300px;}
.y140{bottom:726.441450px;}
.y20d{bottom:728.241450px;}
.y13{bottom:730.255950px;}
.y11f{bottom:730.641300px;}
.y166{bottom:730.641450px;}
.y53{bottom:732.441450px;}
.y1a0{bottom:733.197300px;}
.yd0{bottom:734.933550px;}
.y85{bottom:737.691450px;}
.yfa{bottom:740.933550px;}
.y1b9{bottom:741.447300px;}
.y12{bottom:745.255950px;}
.y13f{bottom:746.241450px;}
.y20c{bottom:747.741450px;}
.y11e{bottom:750.141300px;}
.y165{bottom:750.141450px;}
.y52{bottom:751.941450px;}
.y19f{bottom:752.697300px;}
.y84{bottom:757.941450px;}
.y11{bottom:760.255950px;}
.yf9{bottom:761.183550px;}
.y1b8{bottom:761.697300px;}
.ycf{bottom:762.937350px;}
.y13e{bottom:766.041450px;}
.y20b{bottom:767.241450px;}
.y11d{bottom:769.641300px;}
.y164{bottom:769.641450px;}
.y51{bottom:771.441450px;}
.y19e{bottom:772.197300px;}
.y10{bottom:775.255950px;}
.y83{bottom:778.191450px;}
.yf8{bottom:781.433550px;}
.y1b7{bottom:781.947300px;}
.y13d{bottom:785.841450px;}
.y20a{bottom:786.741450px;}
.y11c{bottom:789.141300px;}
.y163{bottom:789.141450px;}
.yf{bottom:790.255950px;}
.y50{bottom:790.941450px;}
.y19d{bottom:791.697300px;}
.y82{bottom:798.441450px;}
.yf7{bottom:801.683550px;}
.yce{bottom:801.937350px;}
.y1b6{bottom:802.197300px;}
.ye{bottom:805.255950px;}
.y13c{bottom:805.641450px;}
.y209{bottom:806.241450px;}
.y11b{bottom:808.641300px;}
.y162{bottom:808.641450px;}
.y4f{bottom:810.441450px;}
.y19c{bottom:811.197300px;}
.y81{bottom:818.691450px;}
.yd{bottom:820.255950px;}
.ycd{bottom:821.437350px;}
.y1b5{bottom:822.447300px;}
.y13b{bottom:825.441450px;}
.y208{bottom:825.741450px;}
.y11a{bottom:828.441300px;}
.y4e{bottom:829.941450px;}
.yf6{bottom:830.437350px;}
.y19b{bottom:830.697300px;}
.yc{bottom:835.255950px;}
.y80{bottom:838.941450px;}
.ycc{bottom:840.937350px;}
.y1b4{bottom:842.697300px;}
.y13a{bottom:845.241450px;}
.y161{bottom:847.641450px;}
.y119{bottom:848.241300px;}
.y4d{bottom:849.441450px;}
.y19a{bottom:850.197300px;}
.yb{bottom:850.255950px;}
.y7f{bottom:859.191450px;}
.ycb{bottom:860.437350px;}
.y1b3{bottom:862.947300px;}
.y139{bottom:865.041450px;}
.ya{bottom:865.255950px;}
.y160{bottom:867.441450px;}
.y118{bottom:868.041300px;}
.y4c{bottom:868.941450px;}
.y199{bottom:869.697300px;}
.yf5{bottom:870.937350px;}
.y7e{bottom:879.441450px;}
.yca{bottom:879.937350px;}
.y9{bottom:880.255950px;}
.y1b2{bottom:883.197300px;}
.y138{bottom:884.841450px;}
.y15f{bottom:887.241450px;}
.y117{bottom:887.841300px;}
.y4b{bottom:888.441450px;}
.y198{bottom:889.197300px;}
.yf4{bottom:891.187350px;}
.y8{bottom:895.255950px;}
.yc9{bottom:899.437350px;}
.y7d{bottom:899.691450px;}
.y1b1{bottom:903.447300px;}
.y137{bottom:904.641300px;}
.y15e{bottom:907.041450px;}
.y116{bottom:907.641300px;}
.y4a{bottom:907.941450px;}
.y197{bottom:908.697300px;}
.yf3{bottom:911.437350px;}
.yc8{bottom:918.937350px;}
.y7c{bottom:919.941450px;}
.y1b0{bottom:923.697300px;}
.y136{bottom:924.441450px;}
.y15d{bottom:926.841450px;}
.y115{bottom:927.441300px;}
.y49{bottom:927.441450px;}
.y196{bottom:928.197300px;}
.yf2{bottom:931.687350px;}
.yc7{bottom:938.437350px;}
.y7b{bottom:940.191450px;}
.y1af{bottom:943.947300px;}
.y135{bottom:944.241450px;}
.y15c{bottom:946.641300px;}
.y114{bottom:946.941300px;}
.y48{bottom:946.941450px;}
.y195{bottom:947.697300px;}
.yf1{bottom:951.937350px;}
.yc6{bottom:957.937350px;}
.y7a{bottom:960.441450px;}
.y134{bottom:964.041450px;}
.y1ae{bottom:964.197300px;}
.y7{bottom:965.765100px;}
.y2c{bottom:965.765250px;}
.y113{bottom:966.441300px;}
.y47{bottom:966.441450px;}
.y194{bottom:967.197300px;}
.yf0{bottom:972.187350px;}
.yc5{bottom:977.437350px;}
.y79{bottom:980.691450px;}
.y133{bottom:983.841300px;}
.y1ad{bottom:984.447300px;}
.y112{bottom:985.941300px;}
.y46{bottom:985.941450px;}
.y193{bottom:986.697300px;}
.yef{bottom:992.437350px;}
.yc4{bottom:996.937350px;}
.y78{bottom:1000.941450px;}
.y132{bottom:1003.641300px;}
.y1ac{bottom:1004.697300px;}
.y111{bottom:1005.441300px;}
.y45{bottom:1005.441450px;}
.y192{bottom:1006.197300px;}
.yee{bottom:1012.687350px;}
.yc3{bottom:1016.437350px;}
.y77{bottom:1021.191450px;}
.y6{bottom:1023.365100px;}
.y2b{bottom:1023.365250px;}
.y131{bottom:1023.441450px;}
.y110{bottom:1024.941300px;}
.y44{bottom:1024.941450px;}
.y1ab{bottom:1024.947300px;}
.y191{bottom:1025.697300px;}
.yed{bottom:1032.937350px;}
.y76{bottom:1041.441450px;}
.y5{bottom:1043.165100px;}
.y2a{bottom:1043.165250px;}
.y130{bottom:1043.241450px;}
.y10f{bottom:1044.441300px;}
.y43{bottom:1044.441450px;}
.y190{bottom:1045.197300px;}
.y75{bottom:1061.691450px;}
.y4{bottom:1062.965100px;}
.y29{bottom:1062.965400px;}
.y12f{bottom:1063.041450px;}
.y10e{bottom:1063.941300px;}
.y42{bottom:1063.941450px;}
.y74{bottom:1081.941450px;}
.y12e{bottom:1082.841300px;}
.y10d{bottom:1083.441300px;}
.y41{bottom:1083.441450px;}
.y1c5{bottom:1090.028250px;}
.y73{bottom:1102.191450px;}
.y12d{bottom:1102.641300px;}
.y10c{bottom:1102.941300px;}
.y40{bottom:1102.941450px;}
.y1c4{bottom:1115.540100px;}
.y3{bottom:1120.755750px;}
.y10b{bottom:1122.441300px;}
.y3f{bottom:1122.441450px;}
.y3e{bottom:1167.058200px;}
.y1{bottom:1174.874550px;}
.y3d{bottom:1181.458200px;}
.h8{height:25.878750px;}
.ha{height:33.656250px;}
.he{height:35.520000px;}
.hd{height:39.960000px;}
.h2{height:40.416000px;}
.h9{height:41.718750px;}
.h3{height:42.480000px;}
.h7{height:42.576000px;}
.h12{height:43.007812px;}
.h18{height:45.241237px;}
.h19{height:45.241837px;}
.h11{height:46.933594px;}
.hb{height:47.308594px;}
.h15{height:49.999613px;}
.h4{height:50.520000px;}
.h10{height:52.148438px;}
.h13{height:52.294922px;}
.h6{height:53.640000px;}
.h17{height:55.655794px;}
.hc{height:57.363281px;}
.hf{height:57.524414px;}
.h5{height:59.004000px;}
.h14{height:79.007812px;}
.h16{height:88.148438px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x32{left:111.113550px;}
.x3a{left:112.862250px;}
.x5{left:115.000050px;}
.x9{left:118.726950px;}
.x48{left:121.356750px;}
.x36{left:122.458500px;}
.x4f{left:125.234850px;}
.x49{left:127.673850px;}
.x39{left:129.717000px;}
.x35{left:131.826150px;}
.x38{left:136.663950px;}
.x8{left:139.986900px;}
.x43{left:144.006000px;}
.x11{left:148.303350px;}
.x4{left:158.369550px;}
.x18{left:162.781650px;}
.x1a{left:164.682300px;}
.x19{left:168.970500px;}
.x17{left:173.910750px;}
.x41{left:181.180050px;}
.x4a{left:185.835900px;}
.x3c{left:193.557450px;}
.x42{left:195.821250px;}
.x7{left:202.776600px;}
.x4b{left:215.341500px;}
.x6{left:227.091150px;}
.x1e{left:230.934450px;}
.x1d{left:232.351650px;}
.x1b{left:236.218950px;}
.x46{left:239.084850px;}
.x3b{left:241.015200px;}
.x37{left:249.225600px;}
.x1c{left:251.746200px;}
.x33{left:284.773350px;}
.x1f{left:312.508950px;}
.x47{left:315.681600px;}
.x15{left:317.021850px;}
.x1{left:323.616900px;}
.x20{left:325.264050px;}
.x3d{left:352.544250px;}
.x3e{left:366.347550px;}
.x23{left:388.110150px;}
.x22{left:392.977200px;}
.x4c{left:394.694250px;}
.x21{left:398.539950px;}
.x34{left:400.249200px;}
.x50{left:402.435900px;}
.x14{left:435.219450px;}
.x2{left:436.601850px;}
.x12{left:457.414650px;}
.x24{left:459.181500px;}
.x26{left:460.338750px;}
.x25{left:462.807000px;}
.x27{left:464.396400px;}
.xf{left:469.795650px;}
.x51{left:482.487600px;}
.xe{left:491.055450px;}
.x16{left:495.810450px;}
.x13{left:499.934400px;}
.x3f{left:503.157600px;}
.x40{left:513.689850px;}
.xb{left:516.829350px;}
.xa{left:526.646400px;}
.x29{left:532.486650px;}
.x2a{left:537.020400px;}
.x28{left:543.766050px;}
.xd{left:553.563900px;}
.x44{left:559.365600px;}
.xc{left:562.714950px;}
.x10{left:580.502850px;}
.x45{left:588.120450px;}
.x2c{left:606.896100px;}
.x2d{left:608.859000px;}
.x2e{left:609.910050px;}
.x2f{left:614.169000px;}
.x2b{left:616.641000px;}
.x4e{left:621.164250px;}
.x4d{left:630.264600px;}
.x30{left:678.741900px;}
.x31{left:685.327950px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v7{vertical-align:-8.289600pt;}
.v6{vertical-align:-6.139733pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.214933pt;}
.v5{vertical-align:7.419733pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:32.000000pt;}
.lsf{letter-spacing:-1.760000pt;}
.ls4{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.008533pt;}
.ls15{letter-spacing:0.009067pt;}
.ls11{letter-spacing:0.009600pt;}
.lsd{letter-spacing:0.012267pt;}
.ls1f{letter-spacing:0.013333pt;}
.ls1c{letter-spacing:0.013867pt;}
.ls1d{letter-spacing:0.026667pt;}
.ls26{letter-spacing:0.117333pt;}
.ls18{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.293333pt;}
.ls17{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls25{letter-spacing:1.232000pt;}
.ls23{letter-spacing:2.229333pt;}
.ls1b{letter-spacing:2.288000pt;}
.ls16{letter-spacing:2.346667pt;}
.ls24{letter-spacing:2.405333pt;}
.ls20{letter-spacing:2.816000pt;}
.ls22{letter-spacing:5.045333pt;}
.ls0{letter-spacing:20.849600pt;}
.ls10{letter-spacing:124.027733pt;}
.ls9{letter-spacing:137.457600pt;}
.ls7{letter-spacing:197.577600pt;}
.lsb{letter-spacing:231.224533pt;}
.ls6{letter-spacing:233.372267pt;}
.ls8{letter-spacing:237.135467pt;}
.lsa{letter-spacing:240.931733pt;}
.ls5{letter-spacing:248.491200pt;}
.ls13{letter-spacing:494.354133pt;}
.ls14{letter-spacing:509.119467pt;}
.ls12{letter-spacing:512.826133pt;}
.ws10a{word-spacing:-63.712000pt;}
.ws102{word-spacing:-61.482667pt;}
.ws112{word-spacing:-61.072000pt;}
.wsf6{word-spacing:-61.013333pt;}
.wsfe{word-spacing:-60.954667pt;}
.ws111{word-spacing:-60.896000pt;}
.ws115{word-spacing:-59.898667pt;}
.ws101{word-spacing:-59.194667pt;}
.wsfb{word-spacing:-59.136000pt;}
.ws103{word-spacing:-58.960000pt;}
.ws100{word-spacing:-58.901333pt;}
.wsfc{word-spacing:-58.842667pt;}
.ws116{word-spacing:-58.784000pt;}
.ws4{word-spacing:-58.666667pt;}
.ws53{word-spacing:-58.080000pt;}
.ws62{word-spacing:-57.493333pt;}
.ws89{word-spacing:-56.906667pt;}
.ws4b{word-spacing:-49.068800pt;}
.wsd3{word-spacing:-49.045333pt;}
.ws81{word-spacing:-48.986667pt;}
.wsc9{word-spacing:-48.928000pt;}
.ws10c{word-spacing:-48.869333pt;}
.ws6d{word-spacing:-48.810667pt;}
.wsd8{word-spacing:-48.752000pt;}
.wsc7{word-spacing:-48.693333pt;}
.ws7{word-spacing:-48.634667pt;}
.ws63{word-spacing:-48.576000pt;}
.wsa1{word-spacing:-48.458667pt;}
.ws5d{word-spacing:-48.400000pt;}
.wscb{word-spacing:-48.224000pt;}
.ws55{word-spacing:-48.165333pt;}
.ws88{word-spacing:-48.048000pt;}
.ws50{word-spacing:-47.989333pt;}
.wse2{word-spacing:-47.930667pt;}
.ws67{word-spacing:-47.872000pt;}
.wsa7{word-spacing:-47.813333pt;}
.ws44{word-spacing:-47.754667pt;}
.ws68{word-spacing:-47.696000pt;}
.wsed{word-spacing:-47.637333pt;}
.wsa6{word-spacing:-47.520000pt;}
.ws80{word-spacing:-47.461333pt;}
.wscd{word-spacing:-47.402667pt;}
.wsad{word-spacing:-47.344000pt;}
.ws4e{word-spacing:-47.226667pt;}
.ws5b{word-spacing:-47.168000pt;}
.ws65{word-spacing:-47.109333pt;}
.ws54{word-spacing:-47.050667pt;}
.wsa2{word-spacing:-46.992000pt;}
.ws64{word-spacing:-46.933333pt;}
.wsee{word-spacing:-46.816000pt;}
.ws7f{word-spacing:-46.698667pt;}
.ws46{word-spacing:-46.522667pt;}
.ws51{word-spacing:-46.464000pt;}
.wsea{word-spacing:-46.346667pt;}
.wse7{word-spacing:-46.288000pt;}
.wscc{word-spacing:-46.229333pt;}
.ws10f{word-spacing:-46.170667pt;}
.ws47{word-spacing:-46.112000pt;}
.wsa4{word-spacing:-46.088533pt;}
.wsae{word-spacing:-46.053333pt;}
.ws8a{word-spacing:-45.994667pt;}
.ws94{word-spacing:-45.877333pt;}
.ws87{word-spacing:-45.760000pt;}
.ws4c{word-spacing:-45.701333pt;}
.wsb2{word-spacing:-45.642667pt;}
.ws5e{word-spacing:-45.584000pt;}
.ws4d{word-spacing:-45.525333pt;}
.wsb1{word-spacing:-45.466667pt;}
.wse8{word-spacing:-45.408000pt;}
.ws4a{word-spacing:-45.349333pt;}
.ws45{word-spacing:-45.232000pt;}
.wsc6{word-spacing:-45.173333pt;}
.ws8c{word-spacing:-45.114667pt;}
.wsd4{word-spacing:-45.056000pt;}
.ws48{word-spacing:-44.938667pt;}
.wsde{word-spacing:-44.880000pt;}
.ws8d{word-spacing:-44.821333pt;}
.wsb4{word-spacing:-44.704000pt;}
.ws5{word-spacing:-44.645333pt;}
.wsd7{word-spacing:-44.528000pt;}
.ws82{word-spacing:-44.410667pt;}
.ws7d{word-spacing:-44.176000pt;}
.wsd6{word-spacing:-44.117333pt;}
.ws59{word-spacing:-44.000000pt;}
.ws69{word-spacing:-43.941333pt;}
.ws6f{word-spacing:-43.882667pt;}
.wse5{word-spacing:-43.824000pt;}
.ws6c{word-spacing:-43.794667pt;}
.ws58{word-spacing:-43.706667pt;}
.wsaf{word-spacing:-43.648000pt;}
.wsd1{word-spacing:-43.589333pt;}
.wse0{word-spacing:-43.530667pt;}
.wsa3{word-spacing:-43.413333pt;}
.ws52{word-spacing:-43.296000pt;}
.ws6{word-spacing:-43.178667pt;}
.ws6e{word-spacing:-43.120000pt;}
.wsfa{word-spacing:-42.944000pt;}
.wse6{word-spacing:-42.885333pt;}
.ws8b{word-spacing:-42.826667pt;}
.ws5f{word-spacing:-42.592000pt;}
.ws9e{word-spacing:-42.474667pt;}
.ws61{word-spacing:-42.416000pt;}
.wsca{word-spacing:-42.240000pt;}
.ws49{word-spacing:-42.181333pt;}
.wsb3{word-spacing:-42.005333pt;}
.ws9f{word-spacing:-41.946667pt;}
.wse9{word-spacing:-41.829333pt;}
.wseb{word-spacing:-41.770667pt;}
.ws9b{word-spacing:-41.712000pt;}
.ws43{word-spacing:-41.653333pt;}
.wsc8{word-spacing:-41.536000pt;}
.ws5c{word-spacing:-41.360000pt;}
.ws84{word-spacing:-41.301333pt;}
.wsb8{word-spacing:-41.242667pt;}
.wsd0{word-spacing:-41.125333pt;}
.wsa5{word-spacing:-41.066667pt;}
.ws85{word-spacing:-40.949333pt;}
.ws113{word-spacing:-40.890667pt;}
.wse3{word-spacing:-40.773333pt;}
.wsdc{word-spacing:-40.656000pt;}
.ws104{word-spacing:-40.421333pt;}
.wsec{word-spacing:-40.362667pt;}
.ws9c{word-spacing:-40.245333pt;}
.ws9d{word-spacing:-40.010667pt;}
.wsb7{word-spacing:-39.600000pt;}
.wsce{word-spacing:-39.365333pt;}
.ws6a{word-spacing:-38.954667pt;}
.ws5a{word-spacing:-38.661333pt;}
.ws6b{word-spacing:-38.485333pt;}
.wsd9{word-spacing:-38.309333pt;}
.ws86{word-spacing:-38.016000pt;}
.wsda{word-spacing:-37.957333pt;}
.wscf{word-spacing:-37.898667pt;}
.wsf0{word-spacing:-37.781333pt;}
.wsa0{word-spacing:-37.664000pt;}
.ws83{word-spacing:-37.370667pt;}
.wsb5{word-spacing:-37.312000pt;}
.wsdf{word-spacing:-36.784000pt;}
.wsb6{word-spacing:-36.256000pt;}
.wsd5{word-spacing:-36.197333pt;}
.wsef{word-spacing:-36.080000pt;}
.ws66{word-spacing:-35.610667pt;}
.ws1{word-spacing:-35.520000pt;}
.wse1{word-spacing:-35.376000pt;}
.wsdd{word-spacing:-35.082667pt;}
.ws7c{word-spacing:-34.789333pt;}
.wsd2{word-spacing:-34.672000pt;}
.wsf7{word-spacing:-34.320000pt;}
.ws95{word-spacing:-34.026667pt;}
.ws56{word-spacing:-33.850667pt;}
.ws4f{word-spacing:-33.557333pt;}
.ws114{word-spacing:-33.440000pt;}
.wsfd{word-spacing:-32.794667pt;}
.wsf4{word-spacing:-32.736000pt;}
.wsf1{word-spacing:-31.738667pt;}
.wsb0{word-spacing:-31.562667pt;}
.ws10d{word-spacing:-31.034667pt;}
.wsf3{word-spacing:-27.925333pt;}
.wsf8{word-spacing:-25.989333pt;}
.wsff{word-spacing:-25.393067pt;}
.wsf9{word-spacing:-25.392533pt;}
.wsf2{word-spacing:-24.346667pt;}
.ws10b{word-spacing:-24.053333pt;}
.wse4{word-spacing:-22.645333pt;}
.ws107{word-spacing:-21.589333pt;}
.wsdb{word-spacing:-21.354667pt;}
.ws3{word-spacing:-21.178667pt;}
.ws2{word-spacing:-18.949333pt;}
.wsf5{word-spacing:-17.306667pt;}
.ws10e{word-spacing:-13.376000pt;}
.ws60{word-spacing:-12.906667pt;}
.ws70{word-spacing:-11.733333pt;}
.ws71{word-spacing:-10.986667pt;}
.ws105{word-spacing:-10.677333pt;}
.ws109{word-spacing:-9.269333pt;}
.ws110{word-spacing:-7.040000pt;}
.ws0{word-spacing:-5.444267pt;}
.ws8f{word-spacing:-4.531200pt;}
.ws91{word-spacing:-3.837867pt;}
.ws23{word-spacing:-2.816000pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws15{word-spacing:-0.896000pt;}
.ws42{word-spacing:-0.597333pt;}
.ws7e{word-spacing:-0.266667pt;}
.ws93{word-spacing:-0.160000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.128000pt;}
.ws57{word-spacing:0.586667pt;}
.ws18{word-spacing:0.597333pt;}
.ws3c{word-spacing:0.682667pt;}
.ws37{word-spacing:1.109333pt;}
.ws92{word-spacing:1.173333pt;}
.ws25{word-spacing:1.365333pt;}
.ws36{word-spacing:1.450667pt;}
.ws3b{word-spacing:1.536000pt;}
.ws3e{word-spacing:1.578667pt;}
.ws2c{word-spacing:1.962667pt;}
.ws22{word-spacing:2.645333pt;}
.ws31{word-spacing:2.901333pt;}
.ws16{word-spacing:3.114667pt;}
.ws2b{word-spacing:3.584000pt;}
.ws19{word-spacing:3.669333pt;}
.ws2e{word-spacing:3.882667pt;}
.ws1b{word-spacing:3.925333pt;}
.ws3f{word-spacing:4.053333pt;}
.ws2a{word-spacing:4.266667pt;}
.ws33{word-spacing:4.309333pt;}
.ws17{word-spacing:4.394667pt;}
.ws14{word-spacing:4.693333pt;}
.ws30{word-spacing:5.632000pt;}
.ws38{word-spacing:5.845333pt;}
.ws13{word-spacing:5.930667pt;}
.ws35{word-spacing:6.058667pt;}
.ws28{word-spacing:6.442667pt;}
.ws40{word-spacing:6.741333pt;}
.ws1e{word-spacing:6.826667pt;}
.wse{word-spacing:7.637333pt;}
.ws39{word-spacing:7.680000pt;}
.ws29{word-spacing:7.936000pt;}
.ws26{word-spacing:8.448000pt;}
.ws3a{word-spacing:8.490667pt;}
.ws34{word-spacing:8.661333pt;}
.ws2f{word-spacing:8.874667pt;}
.ws20{word-spacing:9.344000pt;}
.ws1d{word-spacing:9.557333pt;}
.ws12{word-spacing:9.941333pt;}
.ws3d{word-spacing:10.026667pt;}
.ws9{word-spacing:11.093333pt;}
.wsf{word-spacing:11.434667pt;}
.ws32{word-spacing:11.904000pt;}
.ws1a{word-spacing:12.288000pt;}
.ws24{word-spacing:12.842667pt;}
.ws1f{word-spacing:13.568000pt;}
.ws21{word-spacing:14.122667pt;}
.ws41{word-spacing:14.250667pt;}
.ws27{word-spacing:14.634667pt;}
.wsa{word-spacing:14.933333pt;}
.ws11{word-spacing:15.744000pt;}
.wsc{word-spacing:16.725333pt;}
.wsd{word-spacing:17.792000pt;}
.ws10{word-spacing:17.877333pt;}
.wsb{word-spacing:18.517333pt;}
.ws106{word-spacing:40.480000pt;}
.ws90{word-spacing:54.562133pt;}
.ws72{word-spacing:55.424533pt;}
.ws8e{word-spacing:58.508800pt;}
.ws108{word-spacing:67.349333pt;}
.ws74{word-spacing:69.342933pt;}
.ws7b{word-spacing:80.598933pt;}
.ws7a{word-spacing:90.052800pt;}
.ws73{word-spacing:97.361600pt;}
.ws79{word-spacing:112.127467pt;}
.ws77{word-spacing:144.918400pt;}
.wsab{word-spacing:146.003200pt;}
.ws78{word-spacing:159.009600pt;}
.ws75{word-spacing:159.683733pt;}
.ws76{word-spacing:177.891200pt;}
.wsac{word-spacing:221.636267pt;}
.wsa9{word-spacing:235.024533pt;}
.wsc5{word-spacing:248.426667pt;}
.wsaa{word-spacing:267.525867pt;}
.wsb9{word-spacing:273.541333pt;}
.ws96{word-spacing:304.933867pt;}
.wsa8{word-spacing:313.509867pt;}
.ws9a{word-spacing:319.699200pt;}
.wsc4{word-spacing:321.592533pt;}
.ws97{word-spacing:334.480000pt;}
.wsc3{word-spacing:335.446400pt;}
.wsbb{word-spacing:349.162667pt;}
.wsbc{word-spacing:351.139200pt;}
.ws99{word-spacing:361.299200pt;}
.wsbd{word-spacing:363.928000pt;}
.wsbf{word-spacing:365.920533pt;}
.wsc1{word-spacing:392.739200pt;}
.wsbe{word-spacing:407.520533pt;}
.ws98{word-spacing:425.629333pt;}
.wsc2{word-spacing:455.786133pt;}
.wsc0{word-spacing:486.311467pt;}
.wsba{word-spacing:1257.739200pt;}
._c{margin-left:-13.640000pt;}
._a{margin-left:-6.277333pt;}
._3{margin-left:-4.528000pt;}
._1{margin-left:-3.157333pt;}
._b{margin-left:-2.104533pt;}
._0{margin-left:-1.156267pt;}
._2{width:1.251413pt;}
._9{width:2.170667pt;}
._5{width:3.168000pt;}
._7{width:4.869333pt;}
._4{width:6.629333pt;}
._6{width:8.154667pt;}
._8{width:9.445333pt;}
._2c{width:20.989333pt;}
._3a{width:33.274133pt;}
._22{width:79.857067pt;}
._20{width:101.800000pt;}
._23{width:122.660800pt;}
._21{width:123.760533pt;}
._1b{width:161.477333pt;}
._1c{width:177.405867pt;}
._1d{width:181.845333pt;}
._1f{width:193.806400pt;}
._1a{width:198.251733pt;}
._12{width:203.506133pt;}
._1e{width:209.027200pt;}
._24{width:211.845867pt;}
._d{width:213.017067pt;}
._19{width:216.458133pt;}
._18{width:222.370133pt;}
._16{width:223.860800pt;}
._17{width:227.797867pt;}
._14{width:231.224533pt;}
._13{width:233.709867pt;}
._f{width:237.152000pt;}
._10{width:239.284800pt;}
._15{width:240.611200pt;}
._11{width:246.860267pt;}
._e{width:248.491200pt;}
._29{width:255.558933pt;}
._32{width:325.934933pt;}
._31{width:326.894933pt;}
._39{width:391.626667pt;}
._25{width:402.629867pt;}
._2a{width:417.758400pt;}
._37{width:453.583467pt;}
._27{width:454.998933pt;}
._2b{width:464.181867pt;}
._30{width:476.981867pt;}
._38{width:479.573333pt;}
._34{width:483.279467pt;}
._26{width:493.744000pt;}
._36{width:498.044800pt;}
._28{width:508.509867pt;}
._35{width:512.826133pt;}
._2d{width:662.259733pt;}
._2f{width:710.380267pt;}
._2e{width:822.209600pt;}
._33{width:1135.892267pt;}
.fs4{font-size:24.746667pt;}
.fs3{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.243067pt;}
.y72{bottom:113.725733pt;}
.ya2{bottom:115.725733pt;}
.y31{bottom:116.262667pt;}
.y151{bottom:116.696800pt;}
.y1e0{bottom:117.725733pt;}
.y1d5{bottom:119.792133pt;}
.y207{bottom:120.052800pt;}
.yb1{bottom:123.499867pt;}
.y18f{bottom:125.230533pt;}
.yc2{bottom:126.166533pt;}
.y1f3{bottom:127.766667pt;}
.y30{bottom:129.062667pt;}
.y15b{bottom:130.163467pt;}
.y71{bottom:131.059067pt;}
.ya1{bottom:133.725733pt;}
.y150{bottom:134.030133pt;}
.y1df{bottom:135.325733pt;}
.y206{bottom:137.652800pt;}
.yb0{bottom:140.833200pt;}
.y109{bottom:141.171067pt;}
.y2f{bottom:141.862667pt;}
.y1d4{bottom:143.261467pt;}
.yc1{bottom:144.166533pt;}
.y1f2{bottom:145.366667pt;}
.y15a{bottom:147.763467pt;}
.y18e{bottom:147.907733pt;}
.y70{bottom:148.392400pt;}
.y14f{bottom:151.363467pt;}
.ya0{bottom:151.725733pt;}
.y1de{bottom:152.925733pt;}
.y205{bottom:155.252800pt;}
.y108{bottom:157.171067pt;}
.yaf{bottom:158.166533pt;}
.y2e{bottom:158.182667pt;}
.yc0{bottom:162.166533pt;}
.y1f1{bottom:162.966667pt;}
.y10a{bottom:165.171067pt;}
.y1d3{bottom:165.336400pt;}
.y159{bottom:165.363467pt;}
.y6f{bottom:165.725733pt;}
.y14e{bottom:168.696800pt;}
.y9f{bottom:169.725733pt;}
.yec{bottom:170.296800pt;}
.y1dd{bottom:170.525733pt;}
.y18d{bottom:170.584933pt;}
.y204{bottom:172.852800pt;}
.y107{bottom:173.171067pt;}
.yae{bottom:175.499867pt;}
.ybf{bottom:180.166533pt;}
.y1f0{bottom:180.566667pt;}
.y158{bottom:182.963467pt;}
.y6e{bottom:183.059067pt;}
.y14d{bottom:186.030133pt;}
.y1d2{bottom:186.873867pt;}
.y9e{bottom:187.725733pt;}
.y1dc{bottom:188.125733pt;}
.y106{bottom:189.171067pt;}
.y203{bottom:190.452800pt;}
.yeb{bottom:191.334533pt;}
.yad{bottom:192.833200pt;}
.y18c{bottom:193.262000pt;}
.ybe{bottom:198.166533pt;}
.y1ef{bottom:198.166667pt;}
.y6d{bottom:200.392400pt;}
.y157{bottom:200.563467pt;}
.y14c{bottom:203.363467pt;}
.y3c{bottom:203.788667pt;}
.y9d{bottom:205.725733pt;}
.y37{bottom:207.122000pt;}
.y1d1{bottom:207.873867pt;}
.y202{bottom:208.052800pt;}
.yac{bottom:210.166533pt;}
.y105{bottom:210.208800pt;}
.yea{bottom:212.372267pt;}
.y1ee{bottom:215.766667pt;}
.y18b{bottom:215.939200pt;}
.ybd{bottom:216.166533pt;}
.y6c{bottom:217.725733pt;}
.y156{bottom:218.163467pt;}
.y14b{bottom:220.696800pt;}
.y3b{bottom:221.788667pt;}
.y1db{bottom:223.325733pt;}
.y9c{bottom:223.725733pt;}
.y36{bottom:224.455333pt;}
.y201{bottom:225.652800pt;}
.y104{bottom:226.208800pt;}
.yab{bottom:227.499867pt;}
.y1d0{bottom:228.873867pt;}
.y1ed{bottom:233.366667pt;}
.ye9{bottom:233.410133pt;}
.ybc{bottom:234.166533pt;}
.y6b{bottom:235.059067pt;}
.y155{bottom:235.763467pt;}
.y14a{bottom:238.030133pt;}
.y18a{bottom:238.616400pt;}
.y3a{bottom:239.788667pt;}
.y1da{bottom:240.925733pt;}
.y9b{bottom:241.725733pt;}
.y35{bottom:241.788667pt;}
.y103{bottom:242.208800pt;}
.y200{bottom:243.252800pt;}
.yaa{bottom:244.833200pt;}
.y1cf{bottom:249.873733pt;}
.y1ec{bottom:250.966667pt;}
.ybb{bottom:252.166533pt;}
.y6a{bottom:252.392400pt;}
.y154{bottom:253.363467pt;}
.ye8{bottom:254.447867pt;}
.y149{bottom:255.363467pt;}
.y39{bottom:257.788667pt;}
.y1d9{bottom:258.525733pt;}
.y34{bottom:259.122000pt;}
.y9a{bottom:259.725733pt;}
.y1ff{bottom:260.852800pt;}
.y189{bottom:261.293600pt;}
.ya9{bottom:262.166533pt;}
.y102{bottom:263.246533pt;}
.y1eb{bottom:268.566667pt;}
.y69{bottom:269.725733pt;}
.yba{bottom:270.166533pt;}
.y1ce{bottom:270.873733pt;}
.y153{bottom:271.363467pt;}
.y148{bottom:272.696800pt;}
.ye7{bottom:275.485600pt;}
.y38{bottom:275.788667pt;}
.y1d8{bottom:276.125733pt;}
.y33{bottom:276.455333pt;}
.y99{bottom:277.725733pt;}
.y1fe{bottom:278.452800pt;}
.y101{bottom:279.246533pt;}
.ya8{bottom:279.499867pt;}
.y188{bottom:284.169600pt;}
.y1ea{bottom:286.166667pt;}
.y68{bottom:287.059067pt;}
.yb9{bottom:288.166533pt;}
.y152{bottom:289.363467pt;}
.y147{bottom:290.030133pt;}
.y1cd{bottom:291.873733pt;}
.y1d7{bottom:293.725733pt;}
.y98{bottom:295.725733pt;}
.y1fd{bottom:296.052800pt;}
.ye6{bottom:296.523333pt;}
.ya7{bottom:296.833200pt;}
.y187{bottom:300.169600pt;}
.y100{bottom:300.284400pt;}
.y32{bottom:301.347733pt;}
.y1e9{bottom:303.766667pt;}
.y67{bottom:304.392400pt;}
.yb8{bottom:306.166533pt;}
.y146{bottom:307.363467pt;}
.y1d6{bottom:311.325733pt;}
.y1cc{bottom:312.873733pt;}
.y1fc{bottom:313.652800pt;}
.y97{bottom:313.725733pt;}
.ya6{bottom:314.166533pt;}
.ye5{bottom:317.561067pt;}
.y1e8{bottom:321.366667pt;}
.y66{bottom:321.725733pt;}
.yb7{bottom:324.166533pt;}
.yff{bottom:325.601600pt;}
.y186{bottom:328.925733pt;}
.y1fb{bottom:331.252800pt;}
.ya5{bottom:331.500000pt;}
.y96{bottom:331.725733pt;}
.y1cb{bottom:333.873733pt;}
.y178{bottom:337.459067pt;}
.ye4{bottom:338.598800pt;}
.y1e7{bottom:338.966667pt;}
.y65{bottom:339.059067pt;}
.yfe{bottom:340.001600pt;}
.yb6{bottom:342.166667pt;}
.y185{bottom:346.525733pt;}
.ya4{bottom:348.833333pt;}
.y1fa{bottom:348.852800pt;}
.y12c{bottom:349.491733pt;}
.y95{bottom:349.725733pt;}
.y177{bottom:354.792400pt;}
.y1ca{bottom:354.873867pt;}
.y64{bottom:356.392400pt;}
.y1e6{bottom:356.566667pt;}
.ye3{bottom:359.636667pt;}
.yb5{bottom:360.166667pt;}
.y28{bottom:361.557333pt;}
.y184{bottom:364.125733pt;}
.ya3{bottom:366.166667pt;}
.y1f9{bottom:366.452800pt;}
.y94{bottom:367.725733pt;}
.y176{bottom:372.125733pt;}
.y63{bottom:373.725733pt;}
.y1e5{bottom:374.166667pt;}
.y27{bottom:374.890667pt;}
.y12b{bottom:375.948400pt;}
.yb4{bottom:378.166667pt;}
.ye2{bottom:380.674400pt;}
.y183{bottom:381.725733pt;}
.y1f5{bottom:383.500000pt;}
.y1f8{bottom:384.052800pt;}
.y1c9{bottom:384.873867pt;}
.y93{bottom:385.725733pt;}
.y26{bottom:388.224000pt;}
.y175{bottom:389.459067pt;}
.y62{bottom:391.059067pt;}
.y1e4{bottom:391.766667pt;}
.yb3{bottom:396.166667pt;}
.y182{bottom:399.325733pt;}
.y1f4{bottom:400.833333pt;}
.y1c8{bottom:400.873867pt;}
.y25{bottom:401.557333pt;}
.y12a{bottom:402.405067pt;}
.y92{bottom:403.725733pt;}
.y174{bottom:406.792400pt;}
.ydd{bottom:408.378800pt;}
.y61{bottom:408.392400pt;}
.y1e3{bottom:409.366667pt;}
.y1f6{bottom:412.733467pt;}
.yb2{bottom:414.166667pt;}
.y24{bottom:414.890667pt;}
.ye1{bottom:416.378800pt;}
.y181{bottom:416.925733pt;}
.y91{bottom:421.725733pt;}
.y2d{bottom:422.449733pt;}
.y173{bottom:424.125733pt;}
.ydc{bottom:424.378800pt;}
.y60{bottom:425.725733pt;}
.y1e2{bottom:426.966667pt;}
.y129{bottom:428.861733pt;}
.y1c7{bottom:431.392667pt;}
.ye0{bottom:432.378800pt;}
.y180{bottom:434.525733pt;}
.y1f7{bottom:435.059067pt;}
.y23{bottom:435.783067pt;}
.y90{bottom:439.725733pt;}
.ydb{bottom:440.378800pt;}
.y172{bottom:441.459067pt;}
.y5f{bottom:443.059067pt;}
.y1e1{bottom:444.566667pt;}
.y1c6{bottom:447.392667pt;}
.ydf{bottom:448.378800pt;}
.y22{bottom:449.116400pt;}
.y17f{bottom:452.125733pt;}
.yda{bottom:456.378800pt;}
.y8f{bottom:457.725733pt;}
.y171{bottom:458.792400pt;}
.y5e{bottom:460.392400pt;}
.y21{bottom:462.449733pt;}
.y128{bottom:463.512267pt;}
.yde{bottom:464.378800pt;}
.y17e{bottom:469.725733pt;}
.yd9{bottom:472.378800pt;}
.y8e{bottom:475.725733pt;}
.y20{bottom:475.783067pt;}
.y170{bottom:476.125733pt;}
.y5d{bottom:477.725733pt;}
.y1aa{bottom:478.397600pt;}
.y1c3{bottom:479.064267pt;}
.y127{bottom:479.512267pt;}
.y17d{bottom:487.325733pt;}
.y1f{bottom:489.116400pt;}
.y16f{bottom:493.459067pt;}
.y8d{bottom:493.725733pt;}
.y5c{bottom:495.059067pt;}
.y1a9{bottom:495.730933pt;}
.y1c2{bottom:497.064267pt;}
.y1e{bottom:502.449733pt;}
.yd8{bottom:504.362800pt;}
.y17c{bottom:504.925733pt;}
.y16e{bottom:510.792400pt;}
.y8c{bottom:511.725733pt;}
.y5b{bottom:512.392400pt;}
.y1a8{bottom:513.064267pt;}
.y1c1{bottom:515.064267pt;}
.y126{bottom:515.732933pt;}
.y1d{bottom:515.783067pt;}
.yd7{bottom:518.762800pt;}
.y17b{bottom:522.525733pt;}
.y16d{bottom:528.125733pt;}
.y1c{bottom:529.116400pt;}
.y5a{bottom:529.725733pt;}
.y125{bottom:530.132800pt;}
.y1a7{bottom:530.397600pt;}
.y1c0{bottom:533.064267pt;}
.y17a{bottom:540.125733pt;}
.y1b{bottom:542.449733pt;}
.y16c{bottom:545.459067pt;}
.y59{bottom:547.059067pt;}
.y8b{bottom:547.725733pt;}
.y1a6{bottom:547.730933pt;}
.yd6{bottom:549.274267pt;}
.y1bf{bottom:551.064267pt;}
.y1a{bottom:555.783067pt;}
.y145{bottom:557.325733pt;}
.y179{bottom:557.725733pt;}
.y124{bottom:562.792267pt;}
.y16b{bottom:562.792400pt;}
.y58{bottom:564.392400pt;}
.y1a5{bottom:565.064267pt;}
.y8a{bottom:565.725733pt;}
.yd5{bottom:566.607600pt;}
.y1be{bottom:569.064267pt;}
.y19{bottom:569.116400pt;}
.y144{bottom:575.325733pt;}
.y211{bottom:577.992400pt;}
.y123{bottom:580.125600pt;}
.y16a{bottom:580.125733pt;}
.y57{bottom:581.725733pt;}
.y1a4{bottom:582.397600pt;}
.y18{bottom:582.449733pt;}
.y89{bottom:583.725733pt;}
.yd4{bottom:583.940933pt;}
.y1bd{bottom:587.064267pt;}
.y143{bottom:592.925733pt;}
.y210{bottom:595.325733pt;}
.y17{bottom:595.783067pt;}
.y122{bottom:597.458933pt;}
.y169{bottom:597.459067pt;}
.y56{bottom:599.059067pt;}
.y1a3{bottom:599.730933pt;}
.yd3{bottom:601.274267pt;}
.y88{bottom:601.725733pt;}
.yfd{bottom:604.607600pt;}
.y1bc{bottom:605.064267pt;}
.y16{bottom:609.116400pt;}
.y142{bottom:610.525733pt;}
.y20f{bottom:612.659067pt;}
.y121{bottom:614.792267pt;}
.y168{bottom:614.792400pt;}
.y55{bottom:616.392400pt;}
.y1a2{bottom:617.064267pt;}
.yd2{bottom:618.607600pt;}
.y87{bottom:619.725733pt;}
.y15{bottom:622.449733pt;}
.yfc{bottom:622.607600pt;}
.y1bb{bottom:623.064267pt;}
.y141{bottom:628.125733pt;}
.y20e{bottom:629.992400pt;}
.y120{bottom:632.125600pt;}
.y167{bottom:632.125733pt;}
.y54{bottom:633.725733pt;}
.y1a1{bottom:634.397600pt;}
.y14{bottom:635.783067pt;}
.yd1{bottom:635.940933pt;}
.y86{bottom:637.725733pt;}
.yfb{bottom:640.607600pt;}
.y1ba{bottom:641.064267pt;}
.y140{bottom:645.725733pt;}
.y20d{bottom:647.325733pt;}
.y13{bottom:649.116400pt;}
.y11f{bottom:649.458933pt;}
.y166{bottom:649.459067pt;}
.y53{bottom:651.059067pt;}
.y1a0{bottom:651.730933pt;}
.yd0{bottom:653.274267pt;}
.y85{bottom:655.725733pt;}
.yfa{bottom:658.607600pt;}
.y1b9{bottom:659.064267pt;}
.y12{bottom:662.449733pt;}
.y13f{bottom:663.325733pt;}
.y20c{bottom:664.659067pt;}
.y11e{bottom:666.792267pt;}
.y165{bottom:666.792400pt;}
.y52{bottom:668.392400pt;}
.y19f{bottom:669.064267pt;}
.y84{bottom:673.725733pt;}
.y11{bottom:675.783067pt;}
.yf9{bottom:676.607600pt;}
.y1b8{bottom:677.064267pt;}
.ycf{bottom:678.166533pt;}
.y13e{bottom:680.925733pt;}
.y20b{bottom:681.992400pt;}
.y11d{bottom:684.125600pt;}
.y164{bottom:684.125733pt;}
.y51{bottom:685.725733pt;}
.y19e{bottom:686.397600pt;}
.y10{bottom:689.116400pt;}
.y83{bottom:691.725733pt;}
.yf8{bottom:694.607600pt;}
.y1b7{bottom:695.064267pt;}
.y13d{bottom:698.525733pt;}
.y20a{bottom:699.325733pt;}
.y11c{bottom:701.458933pt;}
.y163{bottom:701.459067pt;}
.yf{bottom:702.449733pt;}
.y50{bottom:703.059067pt;}
.y19d{bottom:703.730933pt;}
.y82{bottom:709.725733pt;}
.yf7{bottom:712.607600pt;}
.yce{bottom:712.833200pt;}
.y1b6{bottom:713.064267pt;}
.ye{bottom:715.783067pt;}
.y13c{bottom:716.125733pt;}
.y209{bottom:716.659067pt;}
.y11b{bottom:718.792267pt;}
.y162{bottom:718.792400pt;}
.y4f{bottom:720.392400pt;}
.y19c{bottom:721.064267pt;}
.y81{bottom:727.725733pt;}
.yd{bottom:729.116400pt;}
.ycd{bottom:730.166533pt;}
.y1b5{bottom:731.064267pt;}
.y13b{bottom:733.725733pt;}
.y208{bottom:733.992400pt;}
.y11a{bottom:736.392267pt;}
.y4e{bottom:737.725733pt;}
.yf6{bottom:738.166533pt;}
.y19b{bottom:738.397600pt;}
.yc{bottom:742.449733pt;}
.y80{bottom:745.725733pt;}
.ycc{bottom:747.499867pt;}
.y1b4{bottom:749.064267pt;}
.y13a{bottom:751.325733pt;}
.y161{bottom:753.459067pt;}
.y119{bottom:753.992267pt;}
.y4d{bottom:755.059067pt;}
.y19a{bottom:755.730933pt;}
.yb{bottom:755.783067pt;}
.y7f{bottom:763.725733pt;}
.ycb{bottom:764.833200pt;}
.y1b3{bottom:767.064267pt;}
.y139{bottom:768.925733pt;}
.ya{bottom:769.116400pt;}
.y160{bottom:771.059067pt;}
.y118{bottom:771.592267pt;}
.y4c{bottom:772.392400pt;}
.y199{bottom:773.064267pt;}
.yf5{bottom:774.166533pt;}
.y7e{bottom:781.725733pt;}
.yca{bottom:782.166533pt;}
.y9{bottom:782.449733pt;}
.y1b2{bottom:785.064267pt;}
.y138{bottom:786.525733pt;}
.y15f{bottom:788.659067pt;}
.y117{bottom:789.192267pt;}
.y4b{bottom:789.725733pt;}
.y198{bottom:790.397600pt;}
.yf4{bottom:792.166533pt;}
.y8{bottom:795.783067pt;}
.yc9{bottom:799.499867pt;}
.y7d{bottom:799.725733pt;}
.y1b1{bottom:803.064267pt;}
.y137{bottom:804.125600pt;}
.y15e{bottom:806.259067pt;}
.y116{bottom:806.792267pt;}
.y4a{bottom:807.059067pt;}
.y197{bottom:807.730933pt;}
.yf3{bottom:810.166533pt;}
.yc8{bottom:816.833200pt;}
.y7c{bottom:817.725733pt;}
.y1b0{bottom:821.064267pt;}
.y136{bottom:821.725733pt;}
.y15d{bottom:823.859067pt;}
.y115{bottom:824.392267pt;}
.y49{bottom:824.392400pt;}
.y196{bottom:825.064267pt;}
.yf2{bottom:828.166533pt;}
.yc7{bottom:834.166533pt;}
.y7b{bottom:835.725733pt;}
.y1af{bottom:839.064267pt;}
.y135{bottom:839.325733pt;}
.y15c{bottom:841.458933pt;}
.y114{bottom:841.725600pt;}
.y48{bottom:841.725733pt;}
.y195{bottom:842.397600pt;}
.yf1{bottom:846.166533pt;}
.yc6{bottom:851.499867pt;}
.y7a{bottom:853.725733pt;}
.y134{bottom:856.925733pt;}
.y1ae{bottom:857.064267pt;}
.y7{bottom:858.457867pt;}
.y2c{bottom:858.458000pt;}
.y113{bottom:859.058933pt;}
.y47{bottom:859.059067pt;}
.y194{bottom:859.730933pt;}
.yf0{bottom:864.166533pt;}
.yc5{bottom:868.833200pt;}
.y79{bottom:871.725733pt;}
.y133{bottom:874.525600pt;}
.y1ad{bottom:875.064267pt;}
.y112{bottom:876.392267pt;}
.y46{bottom:876.392400pt;}
.y193{bottom:877.064267pt;}
.yef{bottom:882.166533pt;}
.yc4{bottom:886.166533pt;}
.y78{bottom:889.725733pt;}
.y132{bottom:892.125600pt;}
.y1ac{bottom:893.064267pt;}
.y111{bottom:893.725600pt;}
.y45{bottom:893.725733pt;}
.y192{bottom:894.397600pt;}
.yee{bottom:900.166533pt;}
.yc3{bottom:903.499867pt;}
.y77{bottom:907.725733pt;}
.y6{bottom:909.657867pt;}
.y2b{bottom:909.658000pt;}
.y131{bottom:909.725733pt;}
.y110{bottom:911.058933pt;}
.y44{bottom:911.059067pt;}
.y1ab{bottom:911.064267pt;}
.y191{bottom:911.730933pt;}
.yed{bottom:918.166533pt;}
.y76{bottom:925.725733pt;}
.y5{bottom:927.257867pt;}
.y2a{bottom:927.258000pt;}
.y130{bottom:927.325733pt;}
.y10f{bottom:928.392267pt;}
.y43{bottom:928.392400pt;}
.y190{bottom:929.064267pt;}
.y75{bottom:943.725733pt;}
.y4{bottom:944.857867pt;}
.y29{bottom:944.858133pt;}
.y12f{bottom:944.925733pt;}
.y10e{bottom:945.725600pt;}
.y42{bottom:945.725733pt;}
.y74{bottom:961.725733pt;}
.y12e{bottom:962.525600pt;}
.y10d{bottom:963.058933pt;}
.y41{bottom:963.059067pt;}
.y1c5{bottom:968.914000pt;}
.y73{bottom:979.725733pt;}
.y12d{bottom:980.125600pt;}
.y10c{bottom:980.392267pt;}
.y40{bottom:980.392400pt;}
.y1c4{bottom:991.591200pt;}
.y3{bottom:996.227333pt;}
.y10b{bottom:997.725600pt;}
.y3f{bottom:997.725733pt;}
.y3e{bottom:1037.385067pt;}
.y1{bottom:1044.332933pt;}
.y3d{bottom:1050.185067pt;}
.h8{height:23.003333pt;}
.ha{height:29.916667pt;}
.he{height:31.573333pt;}
.hd{height:35.520000pt;}
.h2{height:35.925333pt;}
.h9{height:37.083333pt;}
.h3{height:37.760000pt;}
.h7{height:37.845333pt;}
.h12{height:38.229167pt;}
.h18{height:40.214433pt;}
.h19{height:40.214967pt;}
.h11{height:41.718750pt;}
.hb{height:42.052083pt;}
.h15{height:44.444100pt;}
.h4{height:44.906667pt;}
.h10{height:46.354167pt;}
.h13{height:46.484375pt;}
.h6{height:47.680000pt;}
.h17{height:49.471817pt;}
.hc{height:50.989583pt;}
.hf{height:51.132812pt;}
.h5{height:52.448000pt;}
.h14{height:70.229167pt;}
.h16{height:78.354167pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x32{left:98.767600pt;}
.x3a{left:100.322000pt;}
.x5{left:102.222267pt;}
.x9{left:105.535067pt;}
.x48{left:107.872667pt;}
.x36{left:108.852000pt;}
.x4f{left:111.319867pt;}
.x49{left:113.487867pt;}
.x39{left:115.304000pt;}
.x35{left:117.178800pt;}
.x38{left:121.479067pt;}
.x8{left:124.432800pt;}
.x43{left:128.005333pt;}
.x11{left:131.825200pt;}
.x4{left:140.772933pt;}
.x18{left:144.694800pt;}
.x1a{left:146.384267pt;}
.x19{left:150.196000pt;}
.x17{left:154.587333pt;}
.x41{left:161.048933pt;}
.x4a{left:165.187467pt;}
.x3c{left:172.051067pt;}
.x42{left:174.063333pt;}
.x7{left:180.245867pt;}
.x4b{left:191.414667pt;}
.x6{left:201.858800pt;}
.x1e{left:205.275067pt;}
.x1d{left:206.534800pt;}
.x1b{left:209.972400pt;}
.x46{left:212.519867pt;}
.x3b{left:214.235733pt;}
.x37{left:221.533867pt;}
.x1c{left:223.774400pt;}
.x33{left:253.131867pt;}
.x1f{left:277.785733pt;}
.x47{left:280.605867pt;}
.x15{left:281.797200pt;}
.x1{left:287.659467pt;}
.x20{left:289.123600pt;}
.x3d{left:313.372667pt;}
.x3e{left:325.642267pt;}
.x23{left:344.986800pt;}
.x22{left:349.313067pt;}
.x4c{left:350.839333pt;}
.x21{left:354.257733pt;}
.x34{left:355.777067pt;}
.x50{left:357.720800pt;}
.x14{left:386.861733pt;}
.x2{left:388.090533pt;}
.x12{left:406.590800pt;}
.x24{left:408.161333pt;}
.x26{left:409.190000pt;}
.x25{left:411.384000pt;}
.x27{left:412.796800pt;}
.xf{left:417.596133pt;}
.x51{left:428.877867pt;}
.xe{left:436.493733pt;}
.x16{left:440.720400pt;}
.x13{left:444.386133pt;}
.x3f{left:447.251200pt;}
.x40{left:456.613200pt;}
.xb{left:459.403867pt;}
.xa{left:468.130133pt;}
.x29{left:473.321467pt;}
.x2a{left:477.351467pt;}
.x28{left:483.347600pt;}
.xd{left:492.056800pt;}
.x44{left:497.213867pt;}
.xc{left:500.191067pt;}
.x10{left:516.002533pt;}
.x45{left:522.773733pt;}
.x2c{left:539.463200pt;}
.x2d{left:541.208000pt;}
.x2e{left:542.142267pt;}
.x2f{left:545.928000pt;}
.x2b{left:548.125333pt;}
.x4e{left:552.146000pt;}
.x4d{left:560.235200pt;}
.x30{left:603.326133pt;}
.x31{left:609.180400pt;}
}




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