
    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_b62c93abbe900561a2ca0649.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_df50794e08480307b1220503.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dd3ddd2e0d83cb9f94fae6b7.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6cfddbe821c7318014a44cbb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7676a7e45eff34219545093a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_0a2fbde307e4afb5a9b839ee.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_51aa0a2cd5fcd4e6583414ca.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f8e05c7550a0030bf620416.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f84a04b600b3cbaf193e49a1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.925781;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_8d0bbedf2052038d8f373c52.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8610ea782dbd72f62b9d11e9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.919922;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_18fe6caf49f0a77b72900822.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_eee317d3f6a9e5d8daff29d0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-21.780000px;}
.v4{vertical-align:-17.820000px;}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:21.780000px;}
.lsa{letter-spacing:-1.650000px;}
.lsc{letter-spacing:-1.620000px;}
.ls8{letter-spacing:-1.320000px;}
.lsf{letter-spacing:-1.188000px;}
.ls3{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.660000px;}
.lse{letter-spacing:2.508000px;}
.ls9{letter-spacing:9.186600px;}
.ls5{letter-spacing:10.587000px;}
.lsb{letter-spacing:13.788000px;}
.ls4{letter-spacing:16.703400px;}
.ls0{letter-spacing:23.455800px;}
.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;}
}
.ws105{word-spacing:-68.508000px;}
.wsd9{word-spacing:-66.660000px;}
.ws46{word-spacing:-66.000000px;}
.ws4a{word-spacing:-65.340000px;}
.ws107{word-spacing:-64.812000px;}
.ws55{word-spacing:-64.680000px;}
.wsaa{word-spacing:-64.350000px;}
.wse7{word-spacing:-55.242000px;}
.wsaf{word-spacing:-55.176000px;}
.wsec{word-spacing:-55.110000px;}
.wsf9{word-spacing:-55.044000px;}
.wse6{word-spacing:-54.912000px;}
.wsbb{word-spacing:-54.780000px;}
.ws80{word-spacing:-54.714000px;}
.ws4b{word-spacing:-54.516000px;}
.wsb1{word-spacing:-54.450000px;}
.ws90{word-spacing:-54.384000px;}
.wseb{word-spacing:-54.318000px;}
.ws9c{word-spacing:-54.120000px;}
.wsa8{word-spacing:-54.054000px;}
.ws52{word-spacing:-54.000000px;}
.wsf4{word-spacing:-53.988000px;}
.ws87{word-spacing:-53.856000px;}
.ws9e{word-spacing:-53.790000px;}
.ws68{word-spacing:-53.724000px;}
.ws4e{word-spacing:-53.592000px;}
.ws54{word-spacing:-53.460000px;}
.wsff{word-spacing:-53.328000px;}
.ws81{word-spacing:-53.262000px;}
.ws102{word-spacing:-53.229000px;}
.ws84{word-spacing:-53.196000px;}
.ws7d{word-spacing:-52.998000px;}
.ws40{word-spacing:-52.932000px;}
.wse9{word-spacing:-52.866000px;}
.wse8{word-spacing:-52.800000px;}
.ws58{word-spacing:-52.734000px;}
.ws82{word-spacing:-52.668000px;}
.wsa4{word-spacing:-52.602000px;}
.wscd{word-spacing:-52.536000px;}
.ws8c{word-spacing:-52.470000px;}
.ws6e{word-spacing:-52.404000px;}
.wsca{word-spacing:-52.380000px;}
.ws64{word-spacing:-52.338000px;}
.wsf6{word-spacing:-52.272000px;}
.wsfd{word-spacing:-52.206000px;}
.ws57{word-spacing:-52.074000px;}
.wsdb{word-spacing:-52.008000px;}
.ws104{word-spacing:-51.942000px;}
.wsf7{word-spacing:-51.810000px;}
.ws86{word-spacing:-51.744000px;}
.wsb9{word-spacing:-51.612000px;}
.wse4{word-spacing:-51.546000px;}
.ws88{word-spacing:-51.480000px;}
.ws7e{word-spacing:-51.414000px;}
.wsfc{word-spacing:-51.282000px;}
.wsb6{word-spacing:-51.084000px;}
.wsb5{word-spacing:-51.018000px;}
.wsb4{word-spacing:-50.952000px;}
.ws8f{word-spacing:-50.754000px;}
.wsea{word-spacing:-50.622000px;}
.ws97{word-spacing:-50.556000px;}
.ws5a{word-spacing:-50.490000px;}
.ws8e{word-spacing:-50.424000px;}
.wsfa{word-spacing:-50.292000px;}
.ws63{word-spacing:-50.226000px;}
.wsf3{word-spacing:-50.160000px;}
.ws93{word-spacing:-50.028000px;}
.wsb3{word-spacing:-49.764000px;}
.ws49{word-spacing:-49.698000px;}
.wsb8{word-spacing:-49.632000px;}
.wsbc{word-spacing:-49.566000px;}
.wsad{word-spacing:-49.500000px;}
.wsa1{word-spacing:-49.434000px;}
.ws66{word-spacing:-49.368000px;}
.ws96{word-spacing:-49.302000px;}
.ws9f{word-spacing:-49.236000px;}
.wse5{word-spacing:-49.170000px;}
.ws95{word-spacing:-49.104000px;}
.ws83{word-spacing:-48.906000px;}
.wse3{word-spacing:-48.840000px;}
.wsab{word-spacing:-48.774000px;}
.ws8a{word-spacing:-48.708000px;}
.wsa3{word-spacing:-48.642000px;}
.ws8b{word-spacing:-48.576000px;}
.ws7c{word-spacing:-48.378000px;}
.ws2{word-spacing:-48.000000px;}
.ws7b{word-spacing:-47.982000px;}
.ws9d{word-spacing:-47.916000px;}
.wsee{word-spacing:-47.718000px;}
.wsef{word-spacing:-47.652000px;}
.wsb7{word-spacing:-47.454000px;}
.wsed{word-spacing:-47.322000px;}
.ws91{word-spacing:-47.256000px;}
.ws85{word-spacing:-46.860000px;}
.wsf2{word-spacing:-46.794000px;}
.ws59{word-spacing:-46.728000px;}
.wsf5{word-spacing:-46.662000px;}
.ws99{word-spacing:-46.596000px;}
.ws7a{word-spacing:-46.530000px;}
.ws69{word-spacing:-46.153800px;}
.ws9b{word-spacing:-46.134000px;}
.ws7f{word-spacing:-46.068000px;}
.ws8d{word-spacing:-45.474000px;}
.ws92{word-spacing:-45.342000px;}
.wsb2{word-spacing:-45.276000px;}
.ws73{word-spacing:-45.149400px;}
.wsc9{word-spacing:-45.144000px;}
.ws4d{word-spacing:-45.078000px;}
.wscb{word-spacing:-44.820000px;}
.wscc{word-spacing:-44.712000px;}
.wsd0{word-spacing:-44.604000px;}
.wse1{word-spacing:-44.550000px;}
.wse2{word-spacing:-44.442000px;}
.wsda{word-spacing:-44.418000px;}
.ws6d{word-spacing:-44.388000px;}
.wsa2{word-spacing:-44.286000px;}
.wsbe{word-spacing:-44.118000px;}
.ws72{word-spacing:-44.064000px;}
.wsa0{word-spacing:-44.022000px;}
.wsc7{word-spacing:-44.010000px;}
.wsd3{word-spacing:-43.902000px;}
.wsce{word-spacing:-43.740000px;}
.ws56{word-spacing:-43.659000px;}
.wsba{word-spacing:-43.494000px;}
.ws50{word-spacing:-43.416000px;}
.wsd8{word-spacing:-43.296000px;}
.wsbd{word-spacing:-43.200000px;}
.wsc4{word-spacing:-42.984000px;}
.wscf{word-spacing:-42.822000px;}
.wsd4{word-spacing:-42.768000px;}
.ws9a{word-spacing:-42.636000px;}
.wsac{word-spacing:-42.537000px;}
.wsbf{word-spacing:-42.498000px;}
.wsdf{word-spacing:-42.444000px;}
.wsb0{word-spacing:-42.108000px;}
.ws6f{word-spacing:-41.976000px;}
.ws103{word-spacing:-41.712000px;}
.ws45{word-spacing:-41.250000px;}
.wsd1{word-spacing:-40.770000px;}
.wsf0{word-spacing:-40.524000px;}
.wsde{word-spacing:-40.500000px;}
.ws89{word-spacing:-40.458000px;}
.wsc3{word-spacing:-40.326000px;}
.ws71{word-spacing:-40.068000px;}
.ws1{word-spacing:-39.960000px;}
.ws67{word-spacing:-39.798000px;}
.wsc0{word-spacing:-39.690000px;}
.wsa7{word-spacing:-39.666000px;}
.ws94{word-spacing:-39.435000px;}
.wsdc{word-spacing:-39.420000px;}
.ws43{word-spacing:-39.336000px;}
.ws6c{word-spacing:-39.270000px;}
.wsfe{word-spacing:-39.072000px;}
.ws5b{word-spacing:-38.826000px;}
.ws41{word-spacing:-38.412000px;}
.wsc5{word-spacing:-38.340000px;}
.ws48{word-spacing:-38.280000px;}
.ws98{word-spacing:-38.214000px;}
.wsc1{word-spacing:-38.070000px;}
.wsc2{word-spacing:-38.016000px;}
.wsa6{word-spacing:-37.818000px;}
.wsc6{word-spacing:-36.882000px;}
.ws6b{word-spacing:-36.168000px;}
.ws101{word-spacing:-34.782000px;}
.ws51{word-spacing:-34.776000px;}
.ws6a{word-spacing:-34.650000px;}
.ws108{word-spacing:-34.287000px;}
.ws42{word-spacing:-34.188000px;}
.ws109{word-spacing:-33.990000px;}
.wsfb{word-spacing:-32.934000px;}
.ws70{word-spacing:-32.778000px;}
.wse0{word-spacing:-32.022000px;}
.ws53{word-spacing:-31.320000px;}
.ws65{word-spacing:-30.162000px;}
.ws100{word-spacing:-28.566600px;}
.wsae{word-spacing:-28.248000px;}
.ws44{word-spacing:-27.522000px;}
.wsa9{word-spacing:-27.337200px;}
.ws106{word-spacing:-23.286600px;}
.wsf1{word-spacing:-14.520000px;}
.wsd2{word-spacing:-11.880000px;}
.wsdd{word-spacing:-11.340000px;}
.ws47{word-spacing:-8.421600px;}
.ws4f{word-spacing:-6.890400px;}
.ws0{word-spacing:-6.124800px;}
.ws9{word-spacing:-5.280000px;}
.wse{word-spacing:-5.136000px;}
.ws3a{word-spacing:-2.496000px;}
.ws2f{word-spacing:-1.968000px;}
.ws14{word-spacing:-1.152000px;}
.ws3d{word-spacing:-0.912000px;}
.wsf8{word-spacing:-0.660000px;}
.ws10{word-spacing:-0.528000px;}
.ws1c{word-spacing:-0.336000px;}
.ws28{word-spacing:-0.288000px;}
.wsc8{word-spacing:-0.270000px;}
.ws38{word-spacing:-0.144000px;}
.ws78{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws3f{word-spacing:0.048000px;}
.ws29{word-spacing:0.096000px;}
.ws1f{word-spacing:0.144000px;}
.ws17{word-spacing:0.432000px;}
.ws11{word-spacing:0.528000px;}
.wsd5{word-spacing:0.540000px;}
.ws5f{word-spacing:0.648000px;}
.wsa5{word-spacing:0.660000px;}
.ws26{word-spacing:0.816000px;}
.ws31{word-spacing:0.960000px;}
.ws60{word-spacing:1.080000px;}
.ws16{word-spacing:1.152000px;}
.ws62{word-spacing:1.188000px;}
.ws36{word-spacing:1.296000px;}
.ws5e{word-spacing:1.320000px;}
.ws5d{word-spacing:1.566000px;}
.ws39{word-spacing:1.632000px;}
.ws2e{word-spacing:1.728000px;}
.ws2a{word-spacing:1.824000px;}
.wsd6{word-spacing:1.998000px;}
.ws15{word-spacing:2.112000px;}
.wsd{word-spacing:2.448000px;}
.ws76{word-spacing:2.916000px;}
.ws20{word-spacing:3.168000px;}
.ws33{word-spacing:3.312000px;}
.wsf{word-spacing:3.360000px;}
.ws4c{word-spacing:3.366000px;}
.ws2c{word-spacing:3.408000px;}
.ws74{word-spacing:3.510000px;}
.ws34{word-spacing:3.744000px;}
.ws1e{word-spacing:3.840000px;}
.ws1b{word-spacing:4.800000px;}
.ws2b{word-spacing:4.848000px;}
.ws35{word-spacing:4.896000px;}
.ws27{word-spacing:5.232000px;}
.ws24{word-spacing:5.520000px;}
.ws3c{word-spacing:5.856000px;}
.ws32{word-spacing:5.952000px;}
.ws30{word-spacing:6.000000px;}
.ws18{word-spacing:6.144000px;}
.ws1a{word-spacing:7.680000px;}
.ws37{word-spacing:8.112000px;}
.ws3b{word-spacing:8.304000px;}
.ws12{word-spacing:8.784000px;}
.ws1d{word-spacing:8.976000px;}
.ws75{word-spacing:9.612000px;}
.ws5c{word-spacing:10.584000px;}
.ws25{word-spacing:13.056000px;}
.wsd7{word-spacing:13.770000px;}
.ws3e{word-spacing:13.824000px;}
.ws79{word-spacing:13.986000px;}
.ws61{word-spacing:14.580000px;}
.ws8{word-spacing:16.224000px;}
.ws2d{word-spacing:20.448000px;}
.ws23{word-spacing:20.496000px;}
.ws13{word-spacing:20.736000px;}
.ws77{word-spacing:21.276000px;}
.ws6{word-spacing:22.944000px;}
.ws5{word-spacing:23.664000px;}
.ws22{word-spacing:23.712000px;}
.wsa{word-spacing:29.184000px;}
.ws4{word-spacing:33.168000px;}
.ws21{word-spacing:33.936000px;}
.ws7{word-spacing:35.760000px;}
.wsb{word-spacing:38.016000px;}
.ws19{word-spacing:39.072000px;}
.wsc{word-spacing:39.648000px;}
._8{margin-left:-48.839400px;}
._11{margin-left:-14.608800px;}
._4{margin-left:-10.347840px;}
._e{margin-left:-6.204000px;}
._b{margin-left:-4.866000px;}
._5{margin-left:-3.120000px;}
._0{margin-left:-1.732800px;}
._1{width:1.119840px;}
._2{width:2.178240px;}
._6{width:3.786000px;}
._3{width:4.992000px;}
._d{width:6.228000px;}
._7{width:7.920000px;}
._9{width:9.174000px;}
._a{width:10.296000px;}
._c{width:11.352000px;}
._f{width:15.126000px;}
._10{width:37.433400px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.840000px;}
.fs7{font-size:31.320000px;}
.fs4{font-size:34.800000px;}
.fs6{font-size:38.280000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:79.023450px;}
.y205{bottom:127.558950px;}
.y71{bottom:127.559100px;}
.y240{bottom:127.754400px;}
.y138{bottom:127.941450px;}
.y3b{bottom:129.208050px;}
.y101{bottom:130.433550px;}
.y26e{bottom:131.666100px;}
.y157{bottom:132.441450px;}
.y186{bottom:133.341450px;}
.y11b{bottom:133.433550px;}
.y2a0{bottom:135.096150px;}
.y2be{bottom:135.441450px;}
.y1be{bottom:142.559100px;}
.y23f{bottom:142.754400px;}
.y3a{bottom:143.608050px;}
.y204{bottom:143.758950px;}
.y70{bottom:143.759100px;}
.y26d{bottom:146.666100px;}
.y137{bottom:147.441450px;}
.y100{bottom:149.933550px;}
.y29f{bottom:150.096150px;}
.y156{bottom:150.441450px;}
.y11a{bottom:151.433550px;}
.y2c7{bottom:152.241450px;}
.y185{bottom:153.141450px;}
.y2bd{bottom:154.941450px;}
.y1bd{bottom:157.559100px;}
.y23e{bottom:157.754400px;}
.y39{bottom:158.008050px;}
.y203{bottom:159.958950px;}
.y6f{bottom:159.959100px;}
.y26c{bottom:161.666100px;}
.y29e{bottom:165.096150px;}
.y136{bottom:166.941450px;}
.y155{bottom:168.441450px;}
.y2e9{bottom:168.815400px;}
.yff{bottom:169.433550px;}
.y2c6{bottom:172.041450px;}
.y38{bottom:172.408050px;}
.y1bc{bottom:172.559100px;}
.y23d{bottom:172.754400px;}
.y184{bottom:172.941450px;}
.y2bc{bottom:174.441450px;}
.y202{bottom:176.158950px;}
.y6e{bottom:176.159100px;}
.y26b{bottom:176.666100px;}
.y29d{bottom:180.096150px;}
.y135{bottom:186.441450px;}
.y37{bottom:186.808050px;}
.y119{bottom:187.433550px;}
.y1bb{bottom:187.559100px;}
.y2e8{bottom:188.315400px;}
.yfe{bottom:188.933550px;}
.y23c{bottom:188.954400px;}
.y26a{bottom:191.666100px;}
.y2c5{bottom:191.841450px;}
.y201{bottom:192.358950px;}
.y9d{bottom:192.359100px;}
.y183{bottom:192.741450px;}
.y2bb{bottom:193.941450px;}
.y29c{bottom:195.096150px;}
.y6d{bottom:196.814100px;}
.y1ba{bottom:202.559100px;}
.y23b{bottom:203.954400px;}
.y154{bottom:204.441450px;}
.y36{bottom:205.168050px;}
.y118{bottom:205.433550px;}
.y134{bottom:205.941450px;}
.y269{bottom:206.666100px;}
.y2e7{bottom:207.815400px;}
.yfd{bottom:208.433550px;}
.y200{bottom:208.558950px;}
.y6c{bottom:208.559100px;}
.y29b{bottom:210.096150px;}
.y2c4{bottom:211.641450px;}
.y182{bottom:212.541450px;}
.y2ba{bottom:213.441450px;}
.y1b9{bottom:217.559100px;}
.y23a{bottom:218.954400px;}
.y268{bottom:221.666100px;}
.y153{bottom:222.441450px;}
.y117{bottom:223.433550px;}
.y1ff{bottom:224.758950px;}
.y6b{bottom:224.759100px;}
.y29a{bottom:225.096150px;}
.y133{bottom:225.441450px;}
.y2e6{bottom:227.315400px;}
.yfc{bottom:227.933550px;}
.y9c{bottom:229.214100px;}
.y2c3{bottom:231.441450px;}
.y181{bottom:232.341450px;}
.y1b8{bottom:232.559100px;}
.y2b9{bottom:232.941450px;}
.y239{bottom:233.954400px;}
.y267{bottom:236.666100px;}
.y299{bottom:240.096150px;}
.y152{bottom:240.441450px;}
.y1fe{bottom:240.958950px;}
.y6a{bottom:240.959100px;}
.y116{bottom:241.433550px;}
.y132{bottom:244.941450px;}
.y2e5{bottom:246.815400px;}
.yfb{bottom:247.433550px;}
.y1b7{bottom:247.559100px;}
.y238{bottom:248.954400px;}
.y2c2{bottom:251.241450px;}
.y266{bottom:251.666100px;}
.y180{bottom:252.141450px;}
.y2b8{bottom:252.441450px;}
.y298{bottom:255.096150px;}
.y1fd{bottom:257.158950px;}
.y69{bottom:257.159100px;}
.y151{bottom:258.441450px;}
.y115{bottom:259.433550px;}
.y1b6{bottom:262.559100px;}
.y237{bottom:263.954400px;}
.y131{bottom:264.441450px;}
.y2e4{bottom:266.315400px;}
.y265{bottom:266.666100px;}
.yfa{bottom:266.933550px;}
.y297{bottom:270.096150px;}
.y2c1{bottom:271.041450px;}
.y17f{bottom:271.941450px;}
.y1fc{bottom:273.358950px;}
.y68{bottom:273.359100px;}
.y150{bottom:276.441450px;}
.y114{bottom:277.433550px;}
.y1b5{bottom:277.559100px;}
.y236{bottom:280.154400px;}
.y264{bottom:281.666100px;}
.y130{bottom:283.941450px;}
.y296{bottom:285.096150px;}
.y2e3{bottom:285.815400px;}
.yf9{bottom:286.433550px;}
.y1fb{bottom:289.558950px;}
.y9b{bottom:289.559100px;}
.y2c0{bottom:290.841450px;}
.y2b7{bottom:291.441450px;}
.y17e{bottom:291.741450px;}
.y1b4{bottom:292.559100px;}
.y67{bottom:294.014100px;}
.y14f{bottom:294.441450px;}
.y235{bottom:295.154400px;}
.y113{bottom:295.433550px;}
.y263{bottom:296.666100px;}
.y295{bottom:300.096150px;}
.y12f{bottom:303.441450px;}
.y2e2{bottom:305.315400px;}
.y1fa{bottom:305.758950px;}
.y9a{bottom:305.759100px;}
.yf8{bottom:305.933550px;}
.y1b3{bottom:307.559100px;}
.y234{bottom:310.154400px;}
.y2bf{bottom:310.641450px;}
.y2b6{bottom:310.941450px;}
.y17d{bottom:311.541450px;}
.y262{bottom:311.666100px;}
.y14e{bottom:312.441450px;}
.y112{bottom:313.433550px;}
.y66{bottom:314.437350px;}
.y294{bottom:315.096150px;}
.y1f9{bottom:321.958950px;}
.y99{bottom:321.959100px;}
.y1b2{bottom:322.559100px;}
.y12e{bottom:322.941450px;}
.y2e1{bottom:324.815400px;}
.yf7{bottom:325.433550px;}
.y233{bottom:326.354400px;}
.y261{bottom:326.666100px;}
.y293{bottom:330.096150px;}
.y14d{bottom:330.441450px;}
.y17c{bottom:331.341450px;}
.y111{bottom:331.433550px;}
.y35{bottom:332.295300px;}
.y65{bottom:333.937350px;}
.y1b1{bottom:337.559100px;}
.y1f8{bottom:338.158950px;}
.yc8{bottom:338.159100px;}
.y232{bottom:341.354400px;}
.y260{bottom:341.666100px;}
.y12d{bottom:342.441450px;}
.y98{bottom:342.614100px;}
.y2e0{bottom:344.315400px;}
.yf6{bottom:344.933550px;}
.y292{bottom:345.096150px;}
.y34{bottom:347.295300px;}
.y14c{bottom:348.441450px;}
.y110{bottom:349.433550px;}
.y2b5{bottom:350.241450px;}
.y17b{bottom:351.141450px;}
.y1b0{bottom:352.559100px;}
.y64{bottom:353.437350px;}
.y1f7{bottom:354.358950px;}
.yc7{bottom:354.359100px;}
.y231{bottom:356.354400px;}
.y25f{bottom:356.666100px;}
.y291{bottom:360.096150px;}
.y12c{bottom:361.941450px;}
.y33{bottom:362.295300px;}
.y2df{bottom:363.815400px;}
.yf5{bottom:364.433550px;}
.y14b{bottom:366.441450px;}
.y10f{bottom:367.433550px;}
.y1af{bottom:367.559100px;}
.y2b4{bottom:370.041450px;}
.y1f6{bottom:370.558950px;}
.yc6{bottom:370.559100px;}
.y17a{bottom:370.941450px;}
.y230{bottom:371.354400px;}
.y25e{bottom:371.666100px;}
.y63{bottom:372.937500px;}
.y290{bottom:375.096150px;}
.y97{bottom:375.937500px;}
.y2a{bottom:377.295300px;}
.y12b{bottom:381.441450px;}
.y1ae{bottom:382.559100px;}
.y2de{bottom:383.315400px;}
.yf4{bottom:383.933550px;}
.y14a{bottom:384.441450px;}
.y10e{bottom:385.433550px;}
.y32{bottom:385.799250px;}
.y25d{bottom:386.666100px;}
.y1f5{bottom:386.758950px;}
.yc5{bottom:386.759100px;}
.y22f{bottom:387.554400px;}
.y2b3{bottom:389.841450px;}
.y28f{bottom:390.096150px;}
.y179{bottom:390.741450px;}
.y29{bottom:392.295300px;}
.y62{bottom:392.437500px;}
.y96{bottom:393.937500px;}
.y1ad{bottom:397.559100px;}
.y31{bottom:400.799250px;}
.y12a{bottom:400.941450px;}
.y25c{bottom:401.666100px;}
.y149{bottom:402.441450px;}
.y22e{bottom:402.554400px;}
.y2dd{bottom:402.815400px;}
.y1f4{bottom:402.958950px;}
.yc4{bottom:402.959100px;}
.yf3{bottom:403.433550px;}
.y28e{bottom:405.096150px;}
.y28{bottom:407.295300px;}
.y2b2{bottom:409.641450px;}
.y178{bottom:410.541450px;}
.y61{bottom:411.937500px;}
.y1ac{bottom:412.559100px;}
.y30{bottom:415.799250px;}
.y25b{bottom:416.666100px;}
.y22d{bottom:417.554400px;}
.y1f3{bottom:419.158950px;}
.yc3{bottom:419.159100px;}
.y28d{bottom:420.096150px;}
.y129{bottom:420.441450px;}
.y10d{bottom:421.433550px;}
.y2dc{bottom:422.315400px;}
.yf2{bottom:422.933550px;}
.y1ab{bottom:427.559100px;}
.y2b1{bottom:429.441450px;}
.y95{bottom:429.937500px;}
.y177{bottom:430.341450px;}
.y27{bottom:430.799250px;}
.y60{bottom:431.437500px;}
.y25a{bottom:431.666100px;}
.y22c{bottom:433.754400px;}
.y28c{bottom:435.096150px;}
.y1f2{bottom:435.358950px;}
.yc2{bottom:435.359100px;}
.y148{bottom:438.441450px;}
.y10c{bottom:439.433550px;}
.y128{bottom:439.941450px;}
.y2db{bottom:441.815400px;}
.yf1{bottom:442.433550px;}
.y1aa{bottom:442.559100px;}
.y26{bottom:445.799250px;}
.y259{bottom:446.666100px;}
.y94{bottom:447.937500px;}
.y2b0{bottom:449.241450px;}
.y22b{bottom:449.954400px;}
.y28b{bottom:450.096150px;}
.y176{bottom:450.141450px;}
.y5f{bottom:450.937500px;}
.y1f1{bottom:451.558950px;}
.yc1{bottom:451.559100px;}
.y147{bottom:456.441450px;}
.y10b{bottom:457.433550px;}
.y1a9{bottom:457.559100px;}
.y127{bottom:459.441450px;}
.y25{bottom:460.799250px;}
.y2da{bottom:461.315400px;}
.y258{bottom:461.666100px;}
.yf0{bottom:461.933550px;}
.y22a{bottom:464.954400px;}
.y28a{bottom:465.096150px;}
.y93{bottom:465.937500px;}
.y1f0{bottom:467.758950px;}
.yc0{bottom:467.759100px;}
.y2af{bottom:469.041450px;}
.y175{bottom:469.941450px;}
.y5e{bottom:470.437500px;}
.y1a8{bottom:472.559100px;}
.y146{bottom:474.441450px;}
.y10a{bottom:475.433550px;}
.y24{bottom:475.799250px;}
.y257{bottom:476.666100px;}
.y126{bottom:478.941450px;}
.y289{bottom:480.096150px;}
.y2d9{bottom:480.815400px;}
.y229{bottom:481.154400px;}
.yef{bottom:481.433550px;}
.y92{bottom:483.937500px;}
.y1ef{bottom:483.958950px;}
.ybf{bottom:483.959100px;}
.y1a7{bottom:487.559100px;}
.y2ae{bottom:488.841450px;}
.y174{bottom:489.741450px;}
.y5d{bottom:489.937500px;}
.y23{bottom:490.799250px;}
.y256{bottom:491.666100px;}
.y145{bottom:492.441450px;}
.y109{bottom:493.433550px;}
.y288{bottom:495.096150px;}
.y228{bottom:496.154400px;}
.y125{bottom:498.441450px;}
.y1ee{bottom:500.158950px;}
.ybe{bottom:500.159100px;}
.yee{bottom:500.933550px;}
.y91{bottom:501.937500px;}
.y1a6{bottom:502.559100px;}
.y22{bottom:505.799250px;}
.y255{bottom:506.666100px;}
.y2ad{bottom:508.641450px;}
.y5c{bottom:509.437500px;}
.y173{bottom:509.541450px;}
.y287{bottom:510.096150px;}
.y144{bottom:510.441450px;}
.y227{bottom:511.154400px;}
.y108{bottom:511.433550px;}
.y2d7{bottom:513.081000px;}
.y1ed{bottom:516.358950px;}
.ye2{bottom:516.359100px;}
.y1a5{bottom:517.559100px;}
.y124{bottom:517.941450px;}
.y90{bottom:519.937500px;}
.yed{bottom:520.433550px;}
.y21{bottom:520.799250px;}
.ybd{bottom:520.814100px;}
.y254{bottom:521.666100px;}
.y286{bottom:525.096150px;}
.y226{bottom:527.354400px;}
.y143{bottom:528.441450px;}
.y5b{bottom:528.937500px;}
.y172{bottom:529.341450px;}
.y107{bottom:529.433550px;}
.y1ec{bottom:532.558950px;}
.ybc{bottom:532.559100px;}
.y20{bottom:535.799250px;}
.y253{bottom:536.666100px;}
.y123{bottom:537.441450px;}
.y8f{bottom:537.937500px;}
.y2d8{bottom:538.197300px;}
.yec{bottom:539.933550px;}
.y285{bottom:540.096150px;}
.y225{bottom:542.354400px;}
.y142{bottom:546.441450px;}
.y106{bottom:547.433550px;}
.y1a4{bottom:547.559100px;}
.y2ac{bottom:548.241450px;}
.y5a{bottom:548.437500px;}
.y1eb{bottom:548.758950px;}
.ybb{bottom:548.759100px;}
.y171{bottom:549.141450px;}
.y1f{bottom:550.799250px;}
.y252{bottom:551.666100px;}
.ye1{bottom:553.214100px;}
.y284{bottom:555.096150px;}
.y8e{bottom:555.937500px;}
.y122{bottom:556.941450px;}
.y224{bottom:557.354400px;}
.yeb{bottom:559.433550px;}
.y1a3{bottom:562.559100px;}
.y141{bottom:564.441450px;}
.y1ea{bottom:564.958950px;}
.yba{bottom:564.959100px;}
.y105{bottom:565.433550px;}
.y1e{bottom:565.799250px;}
.y251{bottom:566.666100px;}
.y59{bottom:567.937500px;}
.y2ab{bottom:568.041450px;}
.y170{bottom:568.941450px;}
.y223{bottom:572.354400px;}
.y8d{bottom:573.937500px;}
.y283{bottom:574.551150px;}
.y121{bottom:576.441450px;}
.y1a2{bottom:577.559100px;}
.yea{bottom:578.933550px;}
.y1d{bottom:580.799250px;}
.y1e9{bottom:581.158950px;}
.yb9{bottom:581.159100px;}
.y250{bottom:581.666100px;}
.y140{bottom:582.441450px;}
.y104{bottom:583.433550px;}
.y282{bottom:585.096150px;}
.y222{bottom:587.354400px;}
.y58{bottom:587.437500px;}
.y2aa{bottom:587.841450px;}
.y16f{bottom:588.741450px;}
.y8c{bottom:591.937500px;}
.y1a1{bottom:592.559100px;}
.y1c{bottom:595.799250px;}
.y120{bottom:595.941450px;}
.y1e8{bottom:597.358950px;}
.yb8{bottom:597.359100px;}
.ye9{bottom:598.433550px;}
.y281{bottom:600.096150px;}
.y13f{bottom:600.441450px;}
.y24f{bottom:601.121100px;}
.y103{bottom:601.433550px;}
.y221{bottom:602.354400px;}
.y57{bottom:606.937500px;}
.y1a0{bottom:607.559100px;}
.y2a9{bottom:607.641450px;}
.y16e{bottom:608.541450px;}
.y8b{bottom:609.937500px;}
.y1b{bottom:610.799250px;}
.y24e{bottom:611.666100px;}
.y1e7{bottom:613.558950px;}
.yb7{bottom:613.559100px;}
.y280{bottom:615.096150px;}
.y11f{bottom:615.441450px;}
.y220{bottom:617.354400px;}
.ye8{bottom:617.933550px;}
.y13e{bottom:618.441450px;}
.y102{bottom:619.433550px;}
.y19f{bottom:622.559100px;}
.y1a{bottom:625.799250px;}
.y56{bottom:626.437500px;}
.y24d{bottom:626.666100px;}
.y2a8{bottom:627.441450px;}
.y8a{bottom:627.937500px;}
.y16d{bottom:628.341450px;}
.y1e6{bottom:629.758950px;}
.yb6{bottom:629.759100px;}
.y27f{bottom:630.096150px;}
.y21f{bottom:632.354400px;}
.y11e{bottom:634.941450px;}
.y13d{bottom:636.441450px;}
.ye7{bottom:637.433550px;}
.y19e{bottom:637.559100px;}
.y19{bottom:640.799250px;}
.y24c{bottom:641.666100px;}
.y55{bottom:645.937500px;}
.y1e5{bottom:645.958950px;}
.yb5{bottom:645.959100px;}
.y27e{bottom:646.296150px;}
.y2a7{bottom:647.241450px;}
.y16c{bottom:648.141450px;}
.y21e{bottom:651.809400px;}
.y19d{bottom:652.559100px;}
.y11d{bottom:654.441450px;}
.y18{bottom:655.799250px;}
.y24b{bottom:656.666100px;}
.ye6{bottom:656.933550px;}
.y27d{bottom:661.296150px;}
.y1e4{bottom:662.158950px;}
.ye0{bottom:662.159100px;}
.y21d{bottom:662.354400px;}
.y89{bottom:663.937500px;}
.y54{bottom:665.437500px;}
.yb4{bottom:666.614100px;}
.y2a6{bottom:667.041450px;}
.y19c{bottom:667.559100px;}
.y16b{bottom:667.941450px;}
.y17{bottom:670.799250px;}
.y13c{bottom:672.441450px;}
.y24a{bottom:672.866250px;}
.y11c{bottom:673.941450px;}
.y27c{bottom:676.296150px;}
.ye5{bottom:676.433550px;}
.y21c{bottom:677.354400px;}
.ydf{bottom:678.359100px;}
.y88{bottom:681.937500px;}
.y19b{bottom:682.559100px;}
.y1e3{bottom:682.813950px;}
.y53{bottom:684.937500px;}
.y16{bottom:685.799250px;}
.y2a5{bottom:686.841450px;}
.y16a{bottom:687.741450px;}
.y249{bottom:687.866250px;}
.y13b{bottom:690.441450px;}
.y21b{bottom:692.354400px;}
.y27b{bottom:692.496150px;}
.yb3{bottom:693.441450px;}
.y1e2{bottom:694.558950px;}
.yde{bottom:694.559100px;}
.ye4{bottom:695.933550px;}
.y19a{bottom:697.559100px;}
.y87{bottom:699.937500px;}
.y15{bottom:700.799250px;}
.y248{bottom:702.866250px;}
.y52{bottom:704.437500px;}
.y2a4{bottom:706.641450px;}
.y21a{bottom:707.354400px;}
.y27a{bottom:707.496150px;}
.y169{bottom:707.541450px;}
.y13a{bottom:708.441450px;}
.y1e1{bottom:710.758950px;}
.y199{bottom:712.559100px;}
.yb2{bottom:712.941450px;}
.ydd{bottom:715.214100px;}
.ye3{bottom:715.433550px;}
.y14{bottom:715.799250px;}
.y247{bottom:717.866250px;}
.y86{bottom:717.937500px;}
.y219{bottom:722.354400px;}
.y279{bottom:722.496150px;}
.y51{bottom:723.937500px;}
.y139{bottom:726.441450px;}
.y1e0{bottom:726.958950px;}
.y168{bottom:727.341450px;}
.y198{bottom:727.559100px;}
.y13{bottom:730.799250px;}
.yb1{bottom:732.441450px;}
.y246{bottom:732.866250px;}
.y85{bottom:735.937500px;}
.y218{bottom:737.354400px;}
.y278{bottom:737.496150px;}
.y197{bottom:742.559100px;}
.y1df{bottom:743.158950px;}
.y50{bottom:743.437500px;}
.ydc{bottom:744.441450px;}
.y12{bottom:745.799250px;}
.y2a3{bottom:746.241450px;}
.y167{bottom:747.141450px;}
.y245{bottom:747.866250px;}
.yb0{bottom:751.941450px;}
.y217{bottom:752.354400px;}
.y277{bottom:752.496150px;}
.y84{bottom:753.937350px;}
.y1c9{bottom:757.559100px;}
.y1de{bottom:759.358950px;}
.y11{bottom:760.799250px;}
.y196{bottom:762.014100px;}
.ydb{bottom:762.441450px;}
.y244{bottom:762.866250px;}
.y4f{bottom:762.937350px;}
.y2a2{bottom:766.041450px;}
.y166{bottom:766.941450px;}
.y216{bottom:767.354400px;}
.y276{bottom:767.496150px;}
.yaf{bottom:771.441450px;}
.y83{bottom:771.937350px;}
.y1c8{bottom:772.559100px;}
.y1dd{bottom:775.558950px;}
.y10{bottom:775.799250px;}
.y243{bottom:777.866250px;}
.yda{bottom:780.441450px;}
.y215{bottom:782.354400px;}
.y4e{bottom:782.437350px;}
.y275{bottom:782.496150px;}
.y2a1{bottom:785.841450px;}
.y165{bottom:786.741450px;}
.y1c7{bottom:787.559100px;}
.y82{bottom:789.937350px;}
.yf{bottom:790.799250px;}
.yae{bottom:790.941450px;}
.y1dc{bottom:791.758950px;}
.y242{bottom:794.066100px;}
.y2d6{bottom:797.137350px;}
.y214{bottom:797.354400px;}
.y274{bottom:797.496150px;}
.yd9{bottom:798.441450px;}
.y4d{bottom:801.937350px;}
.y1c6{bottom:802.559100px;}
.y195{bottom:805.641450px;}
.ye{bottom:805.799250px;}
.y164{bottom:806.541450px;}
.y81{bottom:807.937350px;}
.y1db{bottom:807.958950px;}
.y241{bottom:809.066100px;}
.yad{bottom:810.441450px;}
.y213{bottom:812.354400px;}
.y273{bottom:813.696150px;}
.yd8{bottom:816.441450px;}
.y2d5{bottom:816.937350px;}
.y1c5{bottom:817.559100px;}
.yd{bottom:820.799250px;}
.y4c{bottom:821.437350px;}
.y1da{bottom:824.158950px;}
.y194{bottom:825.441450px;}
.y80{bottom:825.937350px;}
.y163{bottom:826.341450px;}
.y212{bottom:827.354400px;}
.y272{bottom:828.696150px;}
.yac{bottom:829.941450px;}
.y1c4{bottom:832.559100px;}
.yd7{bottom:834.441450px;}
.yc{bottom:835.799250px;}
.y2d4{bottom:836.737350px;}
.y1d9{bottom:840.358950px;}
.y4b{bottom:840.937350px;}
.y211{bottom:843.554400px;}
.y271{bottom:843.696150px;}
.y7f{bottom:843.937350px;}
.y193{bottom:845.241450px;}
.y162{bottom:846.141450px;}
.y1c3{bottom:847.559100px;}
.yab{bottom:849.441450px;}
.yb{bottom:850.799250px;}
.yd6{bottom:852.441450px;}
.y2d3{bottom:856.537350px;}
.y1d8{bottom:856.558950px;}
.y210{bottom:858.554400px;}
.y270{bottom:858.696150px;}
.y4a{bottom:860.437350px;}
.y7e{bottom:861.937350px;}
.y1c2{bottom:862.559100px;}
.y192{bottom:865.041450px;}
.ya{bottom:865.799250px;}
.y161{bottom:865.941450px;}
.yaa{bottom:868.941450px;}
.yd5{bottom:870.441450px;}
.y1d7{bottom:872.758950px;}
.y20f{bottom:873.554400px;}
.y26f{bottom:873.696150px;}
.y2d2{bottom:876.337350px;}
.y1c1{bottom:877.559100px;}
.y49{bottom:879.937350px;}
.y9{bottom:880.799250px;}
.y191{bottom:884.841450px;}
.y160{bottom:885.741450px;}
.ya9{bottom:888.441450px;}
.y20e{bottom:888.554400px;}
.y1d6{bottom:888.958950px;}
.y1c0{bottom:892.559100px;}
.y2d1{bottom:896.137350px;}
.y7d{bottom:897.937350px;}
.y48{bottom:899.437350px;}
.y20d{bottom:903.554400px;}
.y190{bottom:904.641300px;}
.y1d5{bottom:905.158950px;}
.y15f{bottom:905.541450px;}
.yd4{bottom:906.441450px;}
.ya8{bottom:907.941450px;}
.y1bf{bottom:912.013950px;}
.y7c{bottom:915.937350px;}
.y20c{bottom:918.554400px;}
.y47{bottom:918.937350px;}
.y1d4{bottom:921.359100px;}
.yd3{bottom:924.441450px;}
.y15e{bottom:925.341450px;}
.ya7{bottom:927.441450px;}
.y7b{bottom:933.937350px;}
.y2d0{bottom:935.737350px;}
.y1d3{bottom:937.559100px;}
.y46{bottom:938.437350px;}
.yd2{bottom:942.441450px;}
.y18f{bottom:944.241450px;}
.y15d{bottom:945.141300px;}
.y8{bottom:945.965100px;}
.y2f{bottom:945.965400px;}
.ya6{bottom:946.941450px;}
.y7a{bottom:951.937350px;}
.y1d2{bottom:953.759100px;}
.y2cf{bottom:955.537350px;}
.y45{bottom:957.937350px;}
.yd1{bottom:960.441450px;}
.y18e{bottom:964.041450px;}
.y15c{bottom:964.941450px;}
.ya5{bottom:966.441450px;}
.y20b{bottom:967.641300px;}
.y79{bottom:969.937350px;}
.y1d1{bottom:969.958950px;}
.y2ce{bottom:975.337350px;}
.y44{bottom:977.437350px;}
.yd0{bottom:978.441450px;}
.y18d{bottom:983.841300px;}
.y15b{bottom:984.741450px;}
.ya4{bottom:985.941450px;}
.y1d0{bottom:986.159100px;}
.y20a{bottom:987.441450px;}
.y78{bottom:987.937350px;}
.y2cd{bottom:995.137350px;}
.ycf{bottom:996.441450px;}
.y43{bottom:996.937350px;}
.y1cf{bottom:1002.359100px;}
.y2e{bottom:1003.565250px;}
.y18c{bottom:1003.641300px;}
.y15a{bottom:1004.541450px;}
.ya3{bottom:1005.441450px;}
.y77{bottom:1005.937350px;}
.y209{bottom:1007.241450px;}
.yce{bottom:1014.441450px;}
.y2cc{bottom:1014.937350px;}
.y42{bottom:1016.437350px;}
.y1ce{bottom:1018.559100px;}
.y7{bottom:1023.365100px;}
.y2d{bottom:1023.365250px;}
.y18b{bottom:1023.441450px;}
.y76{bottom:1023.937350px;}
.y159{bottom:1024.341300px;}
.ya2{bottom:1024.941450px;}
.y208{bottom:1027.041450px;}
.ycd{bottom:1032.441450px;}
.y2cb{bottom:1034.737500px;}
.y1cd{bottom:1034.759100px;}
.y41{bottom:1035.937350px;}
.y75{bottom:1041.937350px;}
.y6{bottom:1043.165100px;}
.y2c{bottom:1043.165250px;}
.y18a{bottom:1043.241450px;}
.y158{bottom:1044.141300px;}
.ya1{bottom:1044.441450px;}
.y207{bottom:1046.841300px;}
.ycc{bottom:1050.441450px;}
.y1cc{bottom:1050.958950px;}
.y2ca{bottom:1054.537500px;}
.y40{bottom:1055.437350px;}
.y74{bottom:1059.937350px;}
.y5{bottom:1062.965100px;}
.y2b{bottom:1062.965400px;}
.y189{bottom:1063.041450px;}
.ya0{bottom:1063.941450px;}
.y206{bottom:1066.641300px;}
.y1cb{bottom:1067.159100px;}
.ycb{bottom:1068.441450px;}
.y2c9{bottom:1074.337500px;}
.y3f{bottom:1074.937350px;}
.y73{bottom:1077.937350px;}
.y188{bottom:1082.841300px;}
.y1ca{bottom:1083.359100px;}
.y9f{bottom:1083.441450px;}
.yca{bottom:1086.441450px;}
.y2c8{bottom:1094.137500px;}
.y3e{bottom:1094.437350px;}
.y72{bottom:1095.937350px;}
.y187{bottom:1102.641300px;}
.y9e{bottom:1102.941450px;}
.yc9{bottom:1104.441450px;}
.y4{bottom:1120.755750px;}
.y3d{bottom:1122.441450px;}
.y2{bottom:1167.058200px;}
.y3c{bottom:1174.874550px;}
.y1{bottom:1181.458200px;}
.h11{height:21.119590px;}
.h9{height:25.878750px;}
.h12{height:27.221484px;}
.hf{height:29.113594px;}
.h15{height:29.114194px;}
.h13{height:29.245430px;}
.hb{height:33.960938px;}
.h3{height:35.520000px;}
.h2{height:39.960000px;}
.hc{height:40.416000px;}
.ha{height:41.718750px;}
.h17{height:42.070312px;}
.h4{height:42.480000px;}
.h8{height:42.576000px;}
.hd{height:46.277344px;}
.h10{height:46.933594px;}
.h16{height:47.065430px;}
.h5{height:50.520000px;}
.h7{height:53.640000px;}
.he{height:57.363281px;}
.h14{height:57.524414px;}
.h6{height:59.004000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.721100px;}
.x4{left:115.752300px;}
.x7{left:118.726950px;}
.x15{left:127.559100px;}
.x5{left:131.195850px;}
.x1{left:139.812900px;}
.x11{left:148.818900px;}
.x12{left:157.398750px;}
.x6{left:207.601050px;}
.x10{left:323.616900px;}
.x2{left:434.521950px;}
.x17{left:435.889350px;}
.x8{left:457.802700px;}
.x9{left:459.914250px;}
.xe{left:469.795650px;}
.x16{left:478.346400px;}
.xa{left:483.245100px;}
.xd{left:491.055450px;}
.x13{left:499.606350px;}
.x14{left:508.186200px;}
.xc{left:558.388350px;}
.xb{left:569.786400px;}
.xf{left:578.929500px;}
@media print{
.v5{vertical-align:-19.360000pt;}
.v4{vertical-align:-15.840000pt;}
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:19.360000pt;}
.lsa{letter-spacing:-1.466667pt;}
.lsc{letter-spacing:-1.440000pt;}
.ls8{letter-spacing:-1.173333pt;}
.lsf{letter-spacing:-1.056000pt;}
.ls3{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.586667pt;}
.lse{letter-spacing:2.229333pt;}
.ls9{letter-spacing:8.165867pt;}
.ls5{letter-spacing:9.410667pt;}
.lsb{letter-spacing:12.256000pt;}
.ls4{letter-spacing:14.847467pt;}
.ls0{letter-spacing:20.849600pt;}
.ws105{word-spacing:-60.896000pt;}
.wsd9{word-spacing:-59.253333pt;}
.ws46{word-spacing:-58.666667pt;}
.ws4a{word-spacing:-58.080000pt;}
.ws107{word-spacing:-57.610667pt;}
.ws55{word-spacing:-57.493333pt;}
.wsaa{word-spacing:-57.200000pt;}
.wse7{word-spacing:-49.104000pt;}
.wsaf{word-spacing:-49.045333pt;}
.wsec{word-spacing:-48.986667pt;}
.wsf9{word-spacing:-48.928000pt;}
.wse6{word-spacing:-48.810667pt;}
.wsbb{word-spacing:-48.693333pt;}
.ws80{word-spacing:-48.634667pt;}
.ws4b{word-spacing:-48.458667pt;}
.wsb1{word-spacing:-48.400000pt;}
.ws90{word-spacing:-48.341333pt;}
.wseb{word-spacing:-48.282667pt;}
.ws9c{word-spacing:-48.106667pt;}
.wsa8{word-spacing:-48.048000pt;}
.ws52{word-spacing:-48.000000pt;}
.wsf4{word-spacing:-47.989333pt;}
.ws87{word-spacing:-47.872000pt;}
.ws9e{word-spacing:-47.813333pt;}
.ws68{word-spacing:-47.754667pt;}
.ws4e{word-spacing:-47.637333pt;}
.ws54{word-spacing:-47.520000pt;}
.wsff{word-spacing:-47.402667pt;}
.ws81{word-spacing:-47.344000pt;}
.ws102{word-spacing:-47.314667pt;}
.ws84{word-spacing:-47.285333pt;}
.ws7d{word-spacing:-47.109333pt;}
.ws40{word-spacing:-47.050667pt;}
.wse9{word-spacing:-46.992000pt;}
.wse8{word-spacing:-46.933333pt;}
.ws58{word-spacing:-46.874667pt;}
.ws82{word-spacing:-46.816000pt;}
.wsa4{word-spacing:-46.757333pt;}
.wscd{word-spacing:-46.698667pt;}
.ws8c{word-spacing:-46.640000pt;}
.ws6e{word-spacing:-46.581333pt;}
.wsca{word-spacing:-46.560000pt;}
.ws64{word-spacing:-46.522667pt;}
.wsf6{word-spacing:-46.464000pt;}
.wsfd{word-spacing:-46.405333pt;}
.ws57{word-spacing:-46.288000pt;}
.wsdb{word-spacing:-46.229333pt;}
.ws104{word-spacing:-46.170667pt;}
.wsf7{word-spacing:-46.053333pt;}
.ws86{word-spacing:-45.994667pt;}
.wsb9{word-spacing:-45.877333pt;}
.wse4{word-spacing:-45.818667pt;}
.ws88{word-spacing:-45.760000pt;}
.ws7e{word-spacing:-45.701333pt;}
.wsfc{word-spacing:-45.584000pt;}
.wsb6{word-spacing:-45.408000pt;}
.wsb5{word-spacing:-45.349333pt;}
.wsb4{word-spacing:-45.290667pt;}
.ws8f{word-spacing:-45.114667pt;}
.wsea{word-spacing:-44.997333pt;}
.ws97{word-spacing:-44.938667pt;}
.ws5a{word-spacing:-44.880000pt;}
.ws8e{word-spacing:-44.821333pt;}
.wsfa{word-spacing:-44.704000pt;}
.ws63{word-spacing:-44.645333pt;}
.wsf3{word-spacing:-44.586667pt;}
.ws93{word-spacing:-44.469333pt;}
.wsb3{word-spacing:-44.234667pt;}
.ws49{word-spacing:-44.176000pt;}
.wsb8{word-spacing:-44.117333pt;}
.wsbc{word-spacing:-44.058667pt;}
.wsad{word-spacing:-44.000000pt;}
.wsa1{word-spacing:-43.941333pt;}
.ws66{word-spacing:-43.882667pt;}
.ws96{word-spacing:-43.824000pt;}
.ws9f{word-spacing:-43.765333pt;}
.wse5{word-spacing:-43.706667pt;}
.ws95{word-spacing:-43.648000pt;}
.ws83{word-spacing:-43.472000pt;}
.wse3{word-spacing:-43.413333pt;}
.wsab{word-spacing:-43.354667pt;}
.ws8a{word-spacing:-43.296000pt;}
.wsa3{word-spacing:-43.237333pt;}
.ws8b{word-spacing:-43.178667pt;}
.ws7c{word-spacing:-43.002667pt;}
.ws2{word-spacing:-42.666667pt;}
.ws7b{word-spacing:-42.650667pt;}
.ws9d{word-spacing:-42.592000pt;}
.wsee{word-spacing:-42.416000pt;}
.wsef{word-spacing:-42.357333pt;}
.wsb7{word-spacing:-42.181333pt;}
.wsed{word-spacing:-42.064000pt;}
.ws91{word-spacing:-42.005333pt;}
.ws85{word-spacing:-41.653333pt;}
.wsf2{word-spacing:-41.594667pt;}
.ws59{word-spacing:-41.536000pt;}
.wsf5{word-spacing:-41.477333pt;}
.ws99{word-spacing:-41.418667pt;}
.ws7a{word-spacing:-41.360000pt;}
.ws69{word-spacing:-41.025600pt;}
.ws9b{word-spacing:-41.008000pt;}
.ws7f{word-spacing:-40.949333pt;}
.ws8d{word-spacing:-40.421333pt;}
.ws92{word-spacing:-40.304000pt;}
.wsb2{word-spacing:-40.245333pt;}
.ws73{word-spacing:-40.132800pt;}
.wsc9{word-spacing:-40.128000pt;}
.ws4d{word-spacing:-40.069333pt;}
.wscb{word-spacing:-39.840000pt;}
.wscc{word-spacing:-39.744000pt;}
.wsd0{word-spacing:-39.648000pt;}
.wse1{word-spacing:-39.600000pt;}
.wse2{word-spacing:-39.504000pt;}
.wsda{word-spacing:-39.482667pt;}
.ws6d{word-spacing:-39.456000pt;}
.wsa2{word-spacing:-39.365333pt;}
.wsbe{word-spacing:-39.216000pt;}
.ws72{word-spacing:-39.168000pt;}
.wsa0{word-spacing:-39.130667pt;}
.wsc7{word-spacing:-39.120000pt;}
.wsd3{word-spacing:-39.024000pt;}
.wsce{word-spacing:-38.880000pt;}
.ws56{word-spacing:-38.808000pt;}
.wsba{word-spacing:-38.661333pt;}
.ws50{word-spacing:-38.592000pt;}
.wsd8{word-spacing:-38.485333pt;}
.wsbd{word-spacing:-38.400000pt;}
.wsc4{word-spacing:-38.208000pt;}
.wscf{word-spacing:-38.064000pt;}
.wsd4{word-spacing:-38.016000pt;}
.ws9a{word-spacing:-37.898667pt;}
.wsac{word-spacing:-37.810667pt;}
.wsbf{word-spacing:-37.776000pt;}
.wsdf{word-spacing:-37.728000pt;}
.wsb0{word-spacing:-37.429333pt;}
.ws6f{word-spacing:-37.312000pt;}
.ws103{word-spacing:-37.077333pt;}
.ws45{word-spacing:-36.666667pt;}
.wsd1{word-spacing:-36.240000pt;}
.wsf0{word-spacing:-36.021333pt;}
.wsde{word-spacing:-36.000000pt;}
.ws89{word-spacing:-35.962667pt;}
.wsc3{word-spacing:-35.845333pt;}
.ws71{word-spacing:-35.616000pt;}
.ws1{word-spacing:-35.520000pt;}
.ws67{word-spacing:-35.376000pt;}
.wsc0{word-spacing:-35.280000pt;}
.wsa7{word-spacing:-35.258667pt;}
.ws94{word-spacing:-35.053333pt;}
.wsdc{word-spacing:-35.040000pt;}
.ws43{word-spacing:-34.965333pt;}
.ws6c{word-spacing:-34.906667pt;}
.wsfe{word-spacing:-34.730667pt;}
.ws5b{word-spacing:-34.512000pt;}
.ws41{word-spacing:-34.144000pt;}
.wsc5{word-spacing:-34.080000pt;}
.ws48{word-spacing:-34.026667pt;}
.ws98{word-spacing:-33.968000pt;}
.wsc1{word-spacing:-33.840000pt;}
.wsc2{word-spacing:-33.792000pt;}
.wsa6{word-spacing:-33.616000pt;}
.wsc6{word-spacing:-32.784000pt;}
.ws6b{word-spacing:-32.149333pt;}
.ws101{word-spacing:-30.917333pt;}
.ws51{word-spacing:-30.912000pt;}
.ws6a{word-spacing:-30.800000pt;}
.ws108{word-spacing:-30.477333pt;}
.ws42{word-spacing:-30.389333pt;}
.ws109{word-spacing:-30.213333pt;}
.wsfb{word-spacing:-29.274667pt;}
.ws70{word-spacing:-29.136000pt;}
.wse0{word-spacing:-28.464000pt;}
.ws53{word-spacing:-27.840000pt;}
.ws65{word-spacing:-26.810667pt;}
.ws100{word-spacing:-25.392533pt;}
.wsae{word-spacing:-25.109333pt;}
.ws44{word-spacing:-24.464000pt;}
.wsa9{word-spacing:-24.299733pt;}
.ws106{word-spacing:-20.699200pt;}
.wsf1{word-spacing:-12.906667pt;}
.wsd2{word-spacing:-10.560000pt;}
.wsdd{word-spacing:-10.080000pt;}
.ws47{word-spacing:-7.485867pt;}
.ws4f{word-spacing:-6.124800pt;}
.ws0{word-spacing:-5.444267pt;}
.ws9{word-spacing:-4.693333pt;}
.wse{word-spacing:-4.565333pt;}
.ws3a{word-spacing:-2.218667pt;}
.ws2f{word-spacing:-1.749333pt;}
.ws14{word-spacing:-1.024000pt;}
.ws3d{word-spacing:-0.810667pt;}
.wsf8{word-spacing:-0.586667pt;}
.ws10{word-spacing:-0.469333pt;}
.ws1c{word-spacing:-0.298667pt;}
.ws28{word-spacing:-0.256000pt;}
.wsc8{word-spacing:-0.240000pt;}
.ws38{word-spacing:-0.128000pt;}
.ws78{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.042667pt;}
.ws29{word-spacing:0.085333pt;}
.ws1f{word-spacing:0.128000pt;}
.ws17{word-spacing:0.384000pt;}
.ws11{word-spacing:0.469333pt;}
.wsd5{word-spacing:0.480000pt;}
.ws5f{word-spacing:0.576000pt;}
.wsa5{word-spacing:0.586667pt;}
.ws26{word-spacing:0.725333pt;}
.ws31{word-spacing:0.853333pt;}
.ws60{word-spacing:0.960000pt;}
.ws16{word-spacing:1.024000pt;}
.ws62{word-spacing:1.056000pt;}
.ws36{word-spacing:1.152000pt;}
.ws5e{word-spacing:1.173333pt;}
.ws5d{word-spacing:1.392000pt;}
.ws39{word-spacing:1.450667pt;}
.ws2e{word-spacing:1.536000pt;}
.ws2a{word-spacing:1.621333pt;}
.wsd6{word-spacing:1.776000pt;}
.ws15{word-spacing:1.877333pt;}
.wsd{word-spacing:2.176000pt;}
.ws76{word-spacing:2.592000pt;}
.ws20{word-spacing:2.816000pt;}
.ws33{word-spacing:2.944000pt;}
.wsf{word-spacing:2.986667pt;}
.ws4c{word-spacing:2.992000pt;}
.ws2c{word-spacing:3.029333pt;}
.ws74{word-spacing:3.120000pt;}
.ws34{word-spacing:3.328000pt;}
.ws1e{word-spacing:3.413333pt;}
.ws1b{word-spacing:4.266667pt;}
.ws2b{word-spacing:4.309333pt;}
.ws35{word-spacing:4.352000pt;}
.ws27{word-spacing:4.650667pt;}
.ws24{word-spacing:4.906667pt;}
.ws3c{word-spacing:5.205333pt;}
.ws32{word-spacing:5.290667pt;}
.ws30{word-spacing:5.333333pt;}
.ws18{word-spacing:5.461333pt;}
.ws1a{word-spacing:6.826667pt;}
.ws37{word-spacing:7.210667pt;}
.ws3b{word-spacing:7.381333pt;}
.ws12{word-spacing:7.808000pt;}
.ws1d{word-spacing:7.978667pt;}
.ws75{word-spacing:8.544000pt;}
.ws5c{word-spacing:9.408000pt;}
.ws25{word-spacing:11.605333pt;}
.wsd7{word-spacing:12.240000pt;}
.ws3e{word-spacing:12.288000pt;}
.ws79{word-spacing:12.432000pt;}
.ws61{word-spacing:12.960000pt;}
.ws8{word-spacing:14.421333pt;}
.ws2d{word-spacing:18.176000pt;}
.ws23{word-spacing:18.218667pt;}
.ws13{word-spacing:18.432000pt;}
.ws77{word-spacing:18.912000pt;}
.ws6{word-spacing:20.394667pt;}
.ws5{word-spacing:21.034667pt;}
.ws22{word-spacing:21.077333pt;}
.wsa{word-spacing:25.941333pt;}
.ws4{word-spacing:29.482667pt;}
.ws21{word-spacing:30.165333pt;}
.ws7{word-spacing:31.786667pt;}
.wsb{word-spacing:33.792000pt;}
.ws19{word-spacing:34.730667pt;}
.wsc{word-spacing:35.242667pt;}
._8{margin-left:-43.412800pt;}
._11{margin-left:-12.985600pt;}
._4{margin-left:-9.198080pt;}
._e{margin-left:-5.514667pt;}
._b{margin-left:-4.325333pt;}
._5{margin-left:-2.773333pt;}
._0{margin-left:-1.540267pt;}
._1{width:0.995413pt;}
._2{width:1.936213pt;}
._6{width:3.365333pt;}
._3{width:4.437333pt;}
._d{width:5.536000pt;}
._7{width:7.040000pt;}
._9{width:8.154667pt;}
._a{width:9.152000pt;}
._c{width:10.090667pt;}
._f{width:13.445333pt;}
._10{width:33.274133pt;}
.fs5{font-size:24.746667pt;}
.fs7{font-size:27.840000pt;}
.fs4{font-size:30.933333pt;}
.fs6{font-size:34.026667pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:70.243067pt;}
.y205{bottom:113.385733pt;}
.y71{bottom:113.385867pt;}
.y240{bottom:113.559467pt;}
.y138{bottom:113.725733pt;}
.y3b{bottom:114.851600pt;}
.y101{bottom:115.940933pt;}
.y26e{bottom:117.036533pt;}
.y157{bottom:117.725733pt;}
.y186{bottom:118.525733pt;}
.y11b{bottom:118.607600pt;}
.y2a0{bottom:120.085467pt;}
.y2be{bottom:120.392400pt;}
.y1be{bottom:126.719200pt;}
.y23f{bottom:126.892800pt;}
.y3a{bottom:127.651600pt;}
.y204{bottom:127.785733pt;}
.y70{bottom:127.785867pt;}
.y26d{bottom:130.369867pt;}
.y137{bottom:131.059067pt;}
.y100{bottom:133.274267pt;}
.y29f{bottom:133.418800pt;}
.y156{bottom:133.725733pt;}
.y11a{bottom:134.607600pt;}
.y2c7{bottom:135.325733pt;}
.y185{bottom:136.125733pt;}
.y2bd{bottom:137.725733pt;}
.y1bd{bottom:140.052533pt;}
.y23e{bottom:140.226133pt;}
.y39{bottom:140.451600pt;}
.y203{bottom:142.185733pt;}
.y6f{bottom:142.185867pt;}
.y26c{bottom:143.703200pt;}
.y29e{bottom:146.752133pt;}
.y136{bottom:148.392400pt;}
.y155{bottom:149.725733pt;}
.y2e9{bottom:150.058133pt;}
.yff{bottom:150.607600pt;}
.y2c6{bottom:152.925733pt;}
.y38{bottom:153.251600pt;}
.y1bc{bottom:153.385867pt;}
.y23d{bottom:153.559467pt;}
.y184{bottom:153.725733pt;}
.y2bc{bottom:155.059067pt;}
.y202{bottom:156.585733pt;}
.y6e{bottom:156.585867pt;}
.y26b{bottom:157.036533pt;}
.y29d{bottom:160.085467pt;}
.y135{bottom:165.725733pt;}
.y37{bottom:166.051600pt;}
.y119{bottom:166.607600pt;}
.y1bb{bottom:166.719200pt;}
.y2e8{bottom:167.391467pt;}
.yfe{bottom:167.940933pt;}
.y23c{bottom:167.959467pt;}
.y26a{bottom:170.369867pt;}
.y2c5{bottom:170.525733pt;}
.y201{bottom:170.985733pt;}
.y9d{bottom:170.985867pt;}
.y183{bottom:171.325733pt;}
.y2bb{bottom:172.392400pt;}
.y29c{bottom:173.418800pt;}
.y6d{bottom:174.945867pt;}
.y1ba{bottom:180.052533pt;}
.y23b{bottom:181.292800pt;}
.y154{bottom:181.725733pt;}
.y36{bottom:182.371600pt;}
.y118{bottom:182.607600pt;}
.y134{bottom:183.059067pt;}
.y269{bottom:183.703200pt;}
.y2e7{bottom:184.724800pt;}
.yfd{bottom:185.274267pt;}
.y200{bottom:185.385733pt;}
.y6c{bottom:185.385867pt;}
.y29b{bottom:186.752133pt;}
.y2c4{bottom:188.125733pt;}
.y182{bottom:188.925733pt;}
.y2ba{bottom:189.725733pt;}
.y1b9{bottom:193.385867pt;}
.y23a{bottom:194.626133pt;}
.y268{bottom:197.036533pt;}
.y153{bottom:197.725733pt;}
.y117{bottom:198.607600pt;}
.y1ff{bottom:199.785733pt;}
.y6b{bottom:199.785867pt;}
.y29a{bottom:200.085467pt;}
.y133{bottom:200.392400pt;}
.y2e6{bottom:202.058133pt;}
.yfc{bottom:202.607600pt;}
.y9c{bottom:203.745867pt;}
.y2c3{bottom:205.725733pt;}
.y181{bottom:206.525733pt;}
.y1b8{bottom:206.719200pt;}
.y2b9{bottom:207.059067pt;}
.y239{bottom:207.959467pt;}
.y267{bottom:210.369867pt;}
.y299{bottom:213.418800pt;}
.y152{bottom:213.725733pt;}
.y1fe{bottom:214.185733pt;}
.y6a{bottom:214.185867pt;}
.y116{bottom:214.607600pt;}
.y132{bottom:217.725733pt;}
.y2e5{bottom:219.391467pt;}
.yfb{bottom:219.940933pt;}
.y1b7{bottom:220.052533pt;}
.y238{bottom:221.292800pt;}
.y2c2{bottom:223.325733pt;}
.y266{bottom:223.703200pt;}
.y180{bottom:224.125733pt;}
.y2b8{bottom:224.392400pt;}
.y298{bottom:226.752133pt;}
.y1fd{bottom:228.585733pt;}
.y69{bottom:228.585867pt;}
.y151{bottom:229.725733pt;}
.y115{bottom:230.607600pt;}
.y1b6{bottom:233.385867pt;}
.y237{bottom:234.626133pt;}
.y131{bottom:235.059067pt;}
.y2e4{bottom:236.724800pt;}
.y265{bottom:237.036533pt;}
.yfa{bottom:237.274267pt;}
.y297{bottom:240.085467pt;}
.y2c1{bottom:240.925733pt;}
.y17f{bottom:241.725733pt;}
.y1fc{bottom:242.985733pt;}
.y68{bottom:242.985867pt;}
.y150{bottom:245.725733pt;}
.y114{bottom:246.607600pt;}
.y1b5{bottom:246.719200pt;}
.y236{bottom:249.026133pt;}
.y264{bottom:250.369867pt;}
.y130{bottom:252.392400pt;}
.y296{bottom:253.418800pt;}
.y2e3{bottom:254.058133pt;}
.yf9{bottom:254.607600pt;}
.y1fb{bottom:257.385733pt;}
.y9b{bottom:257.385867pt;}
.y2c0{bottom:258.525733pt;}
.y2b7{bottom:259.059067pt;}
.y17e{bottom:259.325733pt;}
.y1b4{bottom:260.052533pt;}
.y67{bottom:261.345867pt;}
.y14f{bottom:261.725733pt;}
.y235{bottom:262.359467pt;}
.y113{bottom:262.607600pt;}
.y263{bottom:263.703200pt;}
.y295{bottom:266.752133pt;}
.y12f{bottom:269.725733pt;}
.y2e2{bottom:271.391467pt;}
.y1fa{bottom:271.785733pt;}
.y9a{bottom:271.785867pt;}
.yf8{bottom:271.940933pt;}
.y1b3{bottom:273.385867pt;}
.y234{bottom:275.692800pt;}
.y2bf{bottom:276.125733pt;}
.y2b6{bottom:276.392400pt;}
.y17d{bottom:276.925733pt;}
.y262{bottom:277.036533pt;}
.y14e{bottom:277.725733pt;}
.y112{bottom:278.607600pt;}
.y66{bottom:279.499867pt;}
.y294{bottom:280.085467pt;}
.y1f9{bottom:286.185733pt;}
.y99{bottom:286.185867pt;}
.y1b2{bottom:286.719200pt;}
.y12e{bottom:287.059067pt;}
.y2e1{bottom:288.724800pt;}
.yf7{bottom:289.274267pt;}
.y233{bottom:290.092800pt;}
.y261{bottom:290.369867pt;}
.y293{bottom:293.418800pt;}
.y14d{bottom:293.725733pt;}
.y17c{bottom:294.525733pt;}
.y111{bottom:294.607600pt;}
.y35{bottom:295.373600pt;}
.y65{bottom:296.833200pt;}
.y1b1{bottom:300.052533pt;}
.y1f8{bottom:300.585733pt;}
.yc8{bottom:300.585867pt;}
.y232{bottom:303.426133pt;}
.y260{bottom:303.703200pt;}
.y12d{bottom:304.392400pt;}
.y98{bottom:304.545867pt;}
.y2e0{bottom:306.058133pt;}
.yf6{bottom:306.607600pt;}
.y292{bottom:306.752133pt;}
.y34{bottom:308.706933pt;}
.y14c{bottom:309.725733pt;}
.y110{bottom:310.607600pt;}
.y2b5{bottom:311.325733pt;}
.y17b{bottom:312.125733pt;}
.y1b0{bottom:313.385867pt;}
.y64{bottom:314.166533pt;}
.y1f7{bottom:314.985733pt;}
.yc7{bottom:314.985867pt;}
.y231{bottom:316.759467pt;}
.y25f{bottom:317.036533pt;}
.y291{bottom:320.085467pt;}
.y12c{bottom:321.725733pt;}
.y33{bottom:322.040267pt;}
.y2df{bottom:323.391467pt;}
.yf5{bottom:323.940933pt;}
.y14b{bottom:325.725733pt;}
.y10f{bottom:326.607600pt;}
.y1af{bottom:326.719200pt;}
.y2b4{bottom:328.925733pt;}
.y1f6{bottom:329.385733pt;}
.yc6{bottom:329.385867pt;}
.y17a{bottom:329.725733pt;}
.y230{bottom:330.092800pt;}
.y25e{bottom:330.369867pt;}
.y63{bottom:331.500000pt;}
.y290{bottom:333.418800pt;}
.y97{bottom:334.166667pt;}
.y2a{bottom:335.373600pt;}
.y12b{bottom:339.059067pt;}
.y1ae{bottom:340.052533pt;}
.y2de{bottom:340.724800pt;}
.yf4{bottom:341.274267pt;}
.y14a{bottom:341.725733pt;}
.y10e{bottom:342.607600pt;}
.y32{bottom:342.932667pt;}
.y25d{bottom:343.703200pt;}
.y1f5{bottom:343.785733pt;}
.yc5{bottom:343.785867pt;}
.y22f{bottom:344.492800pt;}
.y2b3{bottom:346.525733pt;}
.y28f{bottom:346.752133pt;}
.y179{bottom:347.325733pt;}
.y29{bottom:348.706933pt;}
.y62{bottom:348.833333pt;}
.y96{bottom:350.166667pt;}
.y1ad{bottom:353.385867pt;}
.y31{bottom:356.266000pt;}
.y12a{bottom:356.392400pt;}
.y25c{bottom:357.036533pt;}
.y149{bottom:357.725733pt;}
.y22e{bottom:357.826133pt;}
.y2dd{bottom:358.058133pt;}
.y1f4{bottom:358.185733pt;}
.yc4{bottom:358.185867pt;}
.yf3{bottom:358.607600pt;}
.y28e{bottom:360.085467pt;}
.y28{bottom:362.040267pt;}
.y2b2{bottom:364.125733pt;}
.y178{bottom:364.925733pt;}
.y61{bottom:366.166667pt;}
.y1ac{bottom:366.719200pt;}
.y30{bottom:369.599333pt;}
.y25b{bottom:370.369867pt;}
.y22d{bottom:371.159467pt;}
.y1f3{bottom:372.585733pt;}
.yc3{bottom:372.585867pt;}
.y28d{bottom:373.418800pt;}
.y129{bottom:373.725733pt;}
.y10d{bottom:374.607600pt;}
.y2dc{bottom:375.391467pt;}
.yf2{bottom:375.940933pt;}
.y1ab{bottom:380.052533pt;}
.y2b1{bottom:381.725733pt;}
.y95{bottom:382.166667pt;}
.y177{bottom:382.525733pt;}
.y27{bottom:382.932667pt;}
.y60{bottom:383.500000pt;}
.y25a{bottom:383.703200pt;}
.y22c{bottom:385.559467pt;}
.y28c{bottom:386.752133pt;}
.y1f2{bottom:386.985733pt;}
.yc2{bottom:386.985867pt;}
.y148{bottom:389.725733pt;}
.y10c{bottom:390.607600pt;}
.y128{bottom:391.059067pt;}
.y2db{bottom:392.724800pt;}
.yf1{bottom:393.274267pt;}
.y1aa{bottom:393.385867pt;}
.y26{bottom:396.266000pt;}
.y259{bottom:397.036533pt;}
.y94{bottom:398.166667pt;}
.y2b0{bottom:399.325733pt;}
.y22b{bottom:399.959467pt;}
.y28b{bottom:400.085467pt;}
.y176{bottom:400.125733pt;}
.y5f{bottom:400.833333pt;}
.y1f1{bottom:401.385733pt;}
.yc1{bottom:401.385867pt;}
.y147{bottom:405.725733pt;}
.y10b{bottom:406.607600pt;}
.y1a9{bottom:406.719200pt;}
.y127{bottom:408.392400pt;}
.y25{bottom:409.599333pt;}
.y2da{bottom:410.058133pt;}
.y258{bottom:410.369867pt;}
.yf0{bottom:410.607600pt;}
.y22a{bottom:413.292800pt;}
.y28a{bottom:413.418800pt;}
.y93{bottom:414.166667pt;}
.y1f0{bottom:415.785733pt;}
.yc0{bottom:415.785867pt;}
.y2af{bottom:416.925733pt;}
.y175{bottom:417.725733pt;}
.y5e{bottom:418.166667pt;}
.y1a8{bottom:420.052533pt;}
.y146{bottom:421.725733pt;}
.y10a{bottom:422.607600pt;}
.y24{bottom:422.932667pt;}
.y257{bottom:423.703200pt;}
.y126{bottom:425.725733pt;}
.y289{bottom:426.752133pt;}
.y2d9{bottom:427.391467pt;}
.y229{bottom:427.692800pt;}
.yef{bottom:427.940933pt;}
.y92{bottom:430.166667pt;}
.y1ef{bottom:430.185733pt;}
.ybf{bottom:430.185867pt;}
.y1a7{bottom:433.385867pt;}
.y2ae{bottom:434.525733pt;}
.y174{bottom:435.325733pt;}
.y5d{bottom:435.500000pt;}
.y23{bottom:436.266000pt;}
.y256{bottom:437.036533pt;}
.y145{bottom:437.725733pt;}
.y109{bottom:438.607600pt;}
.y288{bottom:440.085467pt;}
.y228{bottom:441.026133pt;}
.y125{bottom:443.059067pt;}
.y1ee{bottom:444.585733pt;}
.ybe{bottom:444.585867pt;}
.yee{bottom:445.274267pt;}
.y91{bottom:446.166667pt;}
.y1a6{bottom:446.719200pt;}
.y22{bottom:449.599333pt;}
.y255{bottom:450.369867pt;}
.y2ad{bottom:452.125733pt;}
.y5c{bottom:452.833333pt;}
.y173{bottom:452.925733pt;}
.y287{bottom:453.418800pt;}
.y144{bottom:453.725733pt;}
.y227{bottom:454.359467pt;}
.y108{bottom:454.607600pt;}
.y2d7{bottom:456.072000pt;}
.y1ed{bottom:458.985733pt;}
.ye2{bottom:458.985867pt;}
.y1a5{bottom:460.052533pt;}
.y124{bottom:460.392400pt;}
.y90{bottom:462.166667pt;}
.yed{bottom:462.607600pt;}
.y21{bottom:462.932667pt;}
.ybd{bottom:462.945867pt;}
.y254{bottom:463.703200pt;}
.y286{bottom:466.752133pt;}
.y226{bottom:468.759467pt;}
.y143{bottom:469.725733pt;}
.y5b{bottom:470.166667pt;}
.y172{bottom:470.525733pt;}
.y107{bottom:470.607600pt;}
.y1ec{bottom:473.385733pt;}
.ybc{bottom:473.385867pt;}
.y20{bottom:476.266000pt;}
.y253{bottom:477.036533pt;}
.y123{bottom:477.725733pt;}
.y8f{bottom:478.166667pt;}
.y2d8{bottom:478.397600pt;}
.yec{bottom:479.940933pt;}
.y285{bottom:480.085467pt;}
.y225{bottom:482.092800pt;}
.y142{bottom:485.725733pt;}
.y106{bottom:486.607600pt;}
.y1a4{bottom:486.719200pt;}
.y2ac{bottom:487.325733pt;}
.y5a{bottom:487.500000pt;}
.y1eb{bottom:487.785733pt;}
.ybb{bottom:487.785867pt;}
.y171{bottom:488.125733pt;}
.y1f{bottom:489.599333pt;}
.y252{bottom:490.369867pt;}
.ye1{bottom:491.745867pt;}
.y284{bottom:493.418800pt;}
.y8e{bottom:494.166667pt;}
.y122{bottom:495.059067pt;}
.y224{bottom:495.426133pt;}
.yeb{bottom:497.274267pt;}
.y1a3{bottom:500.052533pt;}
.y141{bottom:501.725733pt;}
.y1ea{bottom:502.185733pt;}
.yba{bottom:502.185867pt;}
.y105{bottom:502.607600pt;}
.y1e{bottom:502.932667pt;}
.y251{bottom:503.703200pt;}
.y59{bottom:504.833333pt;}
.y2ab{bottom:504.925733pt;}
.y170{bottom:505.725733pt;}
.y223{bottom:508.759467pt;}
.y8d{bottom:510.166667pt;}
.y283{bottom:510.712133pt;}
.y121{bottom:512.392400pt;}
.y1a2{bottom:513.385867pt;}
.yea{bottom:514.607600pt;}
.y1d{bottom:516.266000pt;}
.y1e9{bottom:516.585733pt;}
.yb9{bottom:516.585867pt;}
.y250{bottom:517.036533pt;}
.y140{bottom:517.725733pt;}
.y104{bottom:518.607600pt;}
.y282{bottom:520.085467pt;}
.y222{bottom:522.092800pt;}
.y58{bottom:522.166667pt;}
.y2aa{bottom:522.525733pt;}
.y16f{bottom:523.325733pt;}
.y8c{bottom:526.166667pt;}
.y1a1{bottom:526.719200pt;}
.y1c{bottom:529.599333pt;}
.y120{bottom:529.725733pt;}
.y1e8{bottom:530.985733pt;}
.yb8{bottom:530.985867pt;}
.ye9{bottom:531.940933pt;}
.y281{bottom:533.418800pt;}
.y13f{bottom:533.725733pt;}
.y24f{bottom:534.329867pt;}
.y103{bottom:534.607600pt;}
.y221{bottom:535.426133pt;}
.y57{bottom:539.500000pt;}
.y1a0{bottom:540.052533pt;}
.y2a9{bottom:540.125733pt;}
.y16e{bottom:540.925733pt;}
.y8b{bottom:542.166667pt;}
.y1b{bottom:542.932667pt;}
.y24e{bottom:543.703200pt;}
.y1e7{bottom:545.385733pt;}
.yb7{bottom:545.385867pt;}
.y280{bottom:546.752133pt;}
.y11f{bottom:547.059067pt;}
.y220{bottom:548.759467pt;}
.ye8{bottom:549.274267pt;}
.y13e{bottom:549.725733pt;}
.y102{bottom:550.607600pt;}
.y19f{bottom:553.385867pt;}
.y1a{bottom:556.266000pt;}
.y56{bottom:556.833333pt;}
.y24d{bottom:557.036533pt;}
.y2a8{bottom:557.725733pt;}
.y8a{bottom:558.166667pt;}
.y16d{bottom:558.525733pt;}
.y1e6{bottom:559.785733pt;}
.yb6{bottom:559.785867pt;}
.y27f{bottom:560.085467pt;}
.y21f{bottom:562.092800pt;}
.y11e{bottom:564.392400pt;}
.y13d{bottom:565.725733pt;}
.ye7{bottom:566.607600pt;}
.y19e{bottom:566.719200pt;}
.y19{bottom:569.599333pt;}
.y24c{bottom:570.369867pt;}
.y55{bottom:574.166667pt;}
.y1e5{bottom:574.185733pt;}
.yb5{bottom:574.185867pt;}
.y27e{bottom:574.485467pt;}
.y2a7{bottom:575.325733pt;}
.y16c{bottom:576.125733pt;}
.y21e{bottom:579.386133pt;}
.y19d{bottom:580.052533pt;}
.y11d{bottom:581.725733pt;}
.y18{bottom:582.932667pt;}
.y24b{bottom:583.703200pt;}
.ye6{bottom:583.940933pt;}
.y27d{bottom:587.818800pt;}
.y1e4{bottom:588.585733pt;}
.ye0{bottom:588.585867pt;}
.y21d{bottom:588.759467pt;}
.y89{bottom:590.166667pt;}
.y54{bottom:591.500000pt;}
.yb4{bottom:592.545867pt;}
.y2a6{bottom:592.925733pt;}
.y19c{bottom:593.385867pt;}
.y16b{bottom:593.725733pt;}
.y17{bottom:596.266000pt;}
.y13c{bottom:597.725733pt;}
.y24a{bottom:598.103333pt;}
.y11c{bottom:599.059067pt;}
.y27c{bottom:601.152133pt;}
.ye5{bottom:601.274267pt;}
.y21c{bottom:602.092800pt;}
.ydf{bottom:602.985867pt;}
.y88{bottom:606.166667pt;}
.y19b{bottom:606.719200pt;}
.y1e3{bottom:606.945733pt;}
.y53{bottom:608.833333pt;}
.y16{bottom:609.599333pt;}
.y2a5{bottom:610.525733pt;}
.y16a{bottom:611.325733pt;}
.y249{bottom:611.436667pt;}
.y13b{bottom:613.725733pt;}
.y21b{bottom:615.426133pt;}
.y27b{bottom:615.552133pt;}
.yb3{bottom:616.392400pt;}
.y1e2{bottom:617.385733pt;}
.yde{bottom:617.385867pt;}
.ye4{bottom:618.607600pt;}
.y19a{bottom:620.052533pt;}
.y87{bottom:622.166667pt;}
.y15{bottom:622.932667pt;}
.y248{bottom:624.770000pt;}
.y52{bottom:626.166667pt;}
.y2a4{bottom:628.125733pt;}
.y21a{bottom:628.759467pt;}
.y27a{bottom:628.885467pt;}
.y169{bottom:628.925733pt;}
.y13a{bottom:629.725733pt;}
.y1e1{bottom:631.785733pt;}
.y199{bottom:633.385867pt;}
.yb2{bottom:633.725733pt;}
.ydd{bottom:635.745867pt;}
.ye3{bottom:635.940933pt;}
.y14{bottom:636.266000pt;}
.y247{bottom:638.103333pt;}
.y86{bottom:638.166667pt;}
.y219{bottom:642.092800pt;}
.y279{bottom:642.218800pt;}
.y51{bottom:643.500000pt;}
.y139{bottom:645.725733pt;}
.y1e0{bottom:646.185733pt;}
.y168{bottom:646.525733pt;}
.y198{bottom:646.719200pt;}
.y13{bottom:649.599333pt;}
.yb1{bottom:651.059067pt;}
.y246{bottom:651.436667pt;}
.y85{bottom:654.166667pt;}
.y218{bottom:655.426133pt;}
.y278{bottom:655.552133pt;}
.y197{bottom:660.052533pt;}
.y1df{bottom:660.585733pt;}
.y50{bottom:660.833333pt;}
.ydc{bottom:661.725733pt;}
.y12{bottom:662.932667pt;}
.y2a3{bottom:663.325733pt;}
.y167{bottom:664.125733pt;}
.y245{bottom:664.770000pt;}
.yb0{bottom:668.392400pt;}
.y217{bottom:668.759467pt;}
.y277{bottom:668.885467pt;}
.y84{bottom:670.166533pt;}
.y1c9{bottom:673.385867pt;}
.y1de{bottom:674.985733pt;}
.y11{bottom:676.266000pt;}
.y196{bottom:677.345867pt;}
.ydb{bottom:677.725733pt;}
.y244{bottom:678.103333pt;}
.y4f{bottom:678.166533pt;}
.y2a2{bottom:680.925733pt;}
.y166{bottom:681.725733pt;}
.y216{bottom:682.092800pt;}
.y276{bottom:682.218800pt;}
.yaf{bottom:685.725733pt;}
.y83{bottom:686.166533pt;}
.y1c8{bottom:686.719200pt;}
.y1dd{bottom:689.385733pt;}
.y10{bottom:689.599333pt;}
.y243{bottom:691.436667pt;}
.yda{bottom:693.725733pt;}
.y215{bottom:695.426133pt;}
.y4e{bottom:695.499867pt;}
.y275{bottom:695.552133pt;}
.y2a1{bottom:698.525733pt;}
.y165{bottom:699.325733pt;}
.y1c7{bottom:700.052533pt;}
.y82{bottom:702.166533pt;}
.yf{bottom:702.932667pt;}
.yae{bottom:703.059067pt;}
.y1dc{bottom:703.785733pt;}
.y242{bottom:705.836533pt;}
.y2d6{bottom:708.566533pt;}
.y214{bottom:708.759467pt;}
.y274{bottom:708.885467pt;}
.yd9{bottom:709.725733pt;}
.y4d{bottom:712.833200pt;}
.y1c6{bottom:713.385867pt;}
.y195{bottom:716.125733pt;}
.ye{bottom:716.266000pt;}
.y164{bottom:716.925733pt;}
.y81{bottom:718.166533pt;}
.y1db{bottom:718.185733pt;}
.y241{bottom:719.169867pt;}
.yad{bottom:720.392400pt;}
.y213{bottom:722.092800pt;}
.y273{bottom:723.285467pt;}
.yd8{bottom:725.725733pt;}
.y2d5{bottom:726.166533pt;}
.y1c5{bottom:726.719200pt;}
.yd{bottom:729.599333pt;}
.y4c{bottom:730.166533pt;}
.y1da{bottom:732.585733pt;}
.y194{bottom:733.725733pt;}
.y80{bottom:734.166533pt;}
.y163{bottom:734.525733pt;}
.y212{bottom:735.426133pt;}
.y272{bottom:736.618800pt;}
.yac{bottom:737.725733pt;}
.y1c4{bottom:740.052533pt;}
.yd7{bottom:741.725733pt;}
.yc{bottom:742.932667pt;}
.y2d4{bottom:743.766533pt;}
.y1d9{bottom:746.985733pt;}
.y4b{bottom:747.499867pt;}
.y211{bottom:749.826133pt;}
.y271{bottom:749.952133pt;}
.y7f{bottom:750.166533pt;}
.y193{bottom:751.325733pt;}
.y162{bottom:752.125733pt;}
.y1c3{bottom:753.385867pt;}
.yab{bottom:755.059067pt;}
.yb{bottom:756.266000pt;}
.yd6{bottom:757.725733pt;}
.y2d3{bottom:761.366533pt;}
.y1d8{bottom:761.385733pt;}
.y210{bottom:763.159467pt;}
.y270{bottom:763.285467pt;}
.y4a{bottom:764.833200pt;}
.y7e{bottom:766.166533pt;}
.y1c2{bottom:766.719200pt;}
.y192{bottom:768.925733pt;}
.ya{bottom:769.599333pt;}
.y161{bottom:769.725733pt;}
.yaa{bottom:772.392400pt;}
.yd5{bottom:773.725733pt;}
.y1d7{bottom:775.785733pt;}
.y20f{bottom:776.492800pt;}
.y26f{bottom:776.618800pt;}
.y2d2{bottom:778.966533pt;}
.y1c1{bottom:780.052533pt;}
.y49{bottom:782.166533pt;}
.y9{bottom:782.932667pt;}
.y191{bottom:786.525733pt;}
.y160{bottom:787.325733pt;}
.ya9{bottom:789.725733pt;}
.y20e{bottom:789.826133pt;}
.y1d6{bottom:790.185733pt;}
.y1c0{bottom:793.385867pt;}
.y2d1{bottom:796.566533pt;}
.y7d{bottom:798.166533pt;}
.y48{bottom:799.499867pt;}
.y20d{bottom:803.159467pt;}
.y190{bottom:804.125600pt;}
.y1d5{bottom:804.585733pt;}
.y15f{bottom:804.925733pt;}
.yd4{bottom:805.725733pt;}
.ya8{bottom:807.059067pt;}
.y1bf{bottom:810.679067pt;}
.y7c{bottom:814.166533pt;}
.y20c{bottom:816.492800pt;}
.y47{bottom:816.833200pt;}
.y1d4{bottom:818.985867pt;}
.yd3{bottom:821.725733pt;}
.y15e{bottom:822.525733pt;}
.ya7{bottom:824.392400pt;}
.y7b{bottom:830.166533pt;}
.y2d0{bottom:831.766533pt;}
.y1d3{bottom:833.385867pt;}
.y46{bottom:834.166533pt;}
.yd2{bottom:837.725733pt;}
.y18f{bottom:839.325733pt;}
.y15d{bottom:840.125600pt;}
.y8{bottom:840.857867pt;}
.y2f{bottom:840.858133pt;}
.ya6{bottom:841.725733pt;}
.y7a{bottom:846.166533pt;}
.y1d2{bottom:847.785867pt;}
.y2cf{bottom:849.366533pt;}
.y45{bottom:851.499867pt;}
.yd1{bottom:853.725733pt;}
.y18e{bottom:856.925733pt;}
.y15c{bottom:857.725733pt;}
.ya5{bottom:859.059067pt;}
.y20b{bottom:860.125600pt;}
.y79{bottom:862.166533pt;}
.y1d1{bottom:862.185733pt;}
.y2ce{bottom:866.966533pt;}
.y44{bottom:868.833200pt;}
.yd0{bottom:869.725733pt;}
.y18d{bottom:874.525600pt;}
.y15b{bottom:875.325733pt;}
.ya4{bottom:876.392400pt;}
.y1d0{bottom:876.585867pt;}
.y20a{bottom:877.725733pt;}
.y78{bottom:878.166533pt;}
.y2cd{bottom:884.566533pt;}
.ycf{bottom:885.725733pt;}
.y43{bottom:886.166533pt;}
.y1cf{bottom:890.985867pt;}
.y2e{bottom:892.058000pt;}
.y18c{bottom:892.125600pt;}
.y15a{bottom:892.925733pt;}
.ya3{bottom:893.725733pt;}
.y77{bottom:894.166533pt;}
.y209{bottom:895.325733pt;}
.yce{bottom:901.725733pt;}
.y2cc{bottom:902.166533pt;}
.y42{bottom:903.499867pt;}
.y1ce{bottom:905.385867pt;}
.y7{bottom:909.657867pt;}
.y2d{bottom:909.658000pt;}
.y18b{bottom:909.725733pt;}
.y76{bottom:910.166533pt;}
.y159{bottom:910.525600pt;}
.ya2{bottom:911.059067pt;}
.y208{bottom:912.925733pt;}
.ycd{bottom:917.725733pt;}
.y2cb{bottom:919.766667pt;}
.y1cd{bottom:919.785867pt;}
.y41{bottom:920.833200pt;}
.y75{bottom:926.166533pt;}
.y6{bottom:927.257867pt;}
.y2c{bottom:927.258000pt;}
.y18a{bottom:927.325733pt;}
.y158{bottom:928.125600pt;}
.ya1{bottom:928.392400pt;}
.y207{bottom:930.525600pt;}
.ycc{bottom:933.725733pt;}
.y1cc{bottom:934.185733pt;}
.y2ca{bottom:937.366667pt;}
.y40{bottom:938.166533pt;}
.y74{bottom:942.166533pt;}
.y5{bottom:944.857867pt;}
.y2b{bottom:944.858133pt;}
.y189{bottom:944.925733pt;}
.ya0{bottom:945.725733pt;}
.y206{bottom:948.125600pt;}
.y1cb{bottom:948.585867pt;}
.ycb{bottom:949.725733pt;}
.y2c9{bottom:954.966667pt;}
.y3f{bottom:955.499867pt;}
.y73{bottom:958.166533pt;}
.y188{bottom:962.525600pt;}
.y1ca{bottom:962.985867pt;}
.y9f{bottom:963.059067pt;}
.yca{bottom:965.725733pt;}
.y2c8{bottom:972.566667pt;}
.y3e{bottom:972.833200pt;}
.y72{bottom:974.166533pt;}
.y187{bottom:980.125600pt;}
.y9e{bottom:980.392400pt;}
.yc9{bottom:981.725733pt;}
.y4{bottom:996.227333pt;}
.y3d{bottom:997.725733pt;}
.y2{bottom:1037.385067pt;}
.y3c{bottom:1044.332933pt;}
.y1{bottom:1050.185067pt;}
.h11{height:18.772969pt;}
.h9{height:23.003333pt;}
.h12{height:24.196875pt;}
.hf{height:25.878750pt;}
.h15{height:25.879283pt;}
.h13{height:25.995937pt;}
.hb{height:30.187500pt;}
.h3{height:31.573333pt;}
.h2{height:35.520000pt;}
.hc{height:35.925333pt;}
.ha{height:37.083333pt;}
.h17{height:37.395833pt;}
.h4{height:37.760000pt;}
.h8{height:37.845333pt;}
.hd{height:41.135417pt;}
.h10{height:41.718750pt;}
.h16{height:41.835938pt;}
.h5{height:44.906667pt;}
.h7{height:47.680000pt;}
.he{height:50.989583pt;}
.h14{height:51.132812pt;}
.h6{height:52.448000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.863200pt;}
.x4{left:102.890933pt;}
.x7{left:105.535067pt;}
.x15{left:113.385867pt;}
.x5{left:116.618533pt;}
.x1{left:124.278133pt;}
.x11{left:132.283467pt;}
.x12{left:139.910000pt;}
.x6{left:184.534267pt;}
.x10{left:287.659467pt;}
.x2{left:386.241733pt;}
.x17{left:387.457200pt;}
.x8{left:406.935733pt;}
.x9{left:408.812667pt;}
.xe{left:417.596133pt;}
.x16{left:425.196800pt;}
.xa{left:429.551200pt;}
.xd{left:436.493733pt;}
.x13{left:444.094533pt;}
.x14{left:451.721067pt;}
.xc{left:496.345200pt;}
.xb{left:506.476800pt;}
.xf{left:514.604000pt;}
}




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