
    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_a56b02d8d1edaefd9641ed74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094000;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_302b14b02e2a71d01286c378.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084000;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_012391787fcb5ebf57f18d90.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_1a86c53c37d65888e0353391.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.110000;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_41d49f300dda3e49fee23fb6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680176;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_982dc6d894ba47e062f2185c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.701000;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_f2896750ff8daec2f46dd17c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776000;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_415fa64c29e216de847ddf8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094000;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_dc1f5e590e121ec3db630fdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.703400px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:27.972000px;}
.ls47{letter-spacing:-14.400000px;}
.ls23{letter-spacing:-4.104000px;}
.ls2a{letter-spacing:-3.456000px;}
.ls1a{letter-spacing:-3.294000px;}
.ls4c{letter-spacing:-1.914000px;}
.ls55{letter-spacing:-1.782000px;}
.ls3d{letter-spacing:-1.650000px;}
.ls4d{letter-spacing:-1.518000px;}
.ls51{letter-spacing:-1.452000px;}
.ls4f{letter-spacing:-1.122000px;}
.ls35{letter-spacing:-0.990000px;}
.ls20{letter-spacing:-0.660000px;}
.ls3e{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.462000px;}
.ls42{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.384780px;}
.ls37{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.269346px;}
.ls41{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.198000px;}
.ls7{letter-spacing:-0.120000px;}
.ls22{letter-spacing:-0.108000px;}
.ls54{letter-spacing:-0.066000px;}
.ls39{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.060000px;}
.ls46{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.096000px;}
.ls38{letter-spacing:0.104940px;}
.ls1d{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.115434px;}
.ls30{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.132000px;}
.ls3a{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.240000px;}
.ls4b{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.330000px;}
.ls3b{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.393000px;}
.ls32{letter-spacing:0.393600px;}
.ls25{letter-spacing:0.420000px;}
.ls29{letter-spacing:0.423258px;}
.ls19{letter-spacing:0.454740px;}
.ls48{letter-spacing:0.461736px;}
.lsd{letter-spacing:0.462000px;}
.ls9{letter-spacing:0.480600px;}
.ls8{letter-spacing:0.481200px;}
.lse{letter-spacing:0.486000px;}
.ls18{letter-spacing:0.500214px;}
.lsc{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.594000px;}
.ls40{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.702000px;}
.ls3{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.726000px;}
.ls15{letter-spacing:0.742200px;}
.ls45{letter-spacing:0.763800px;}
.ls26{letter-spacing:0.770400px;}
.lsf{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.781200px;}
.ls1{letter-spacing:0.792000px;}
.ls49{letter-spacing:0.834000px;}
.ls10{letter-spacing:0.858000px;}
.ls2e{letter-spacing:0.884994px;}
.ls4e{letter-spacing:0.990000px;}
.ls0{letter-spacing:1.008000px;}
.ls4a{letter-spacing:1.056000px;}
.ls6{letter-spacing:1.092000px;}
.ls2c{letter-spacing:1.188000px;}
.ls3f{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.452000px;}
.ls2d{letter-spacing:1.518000px;}
.ls44{letter-spacing:2.100000px;}
.ls52{letter-spacing:4.158000px;}
.ls1e{letter-spacing:5.292000px;}
.ls3c{letter-spacing:8.262000px;}
.ls53{letter-spacing:8.316000px;}
.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;}
}
.ws0{word-spacing:-22.092000px;}
.ws87{word-spacing:-17.952000px;}
.ws115{word-spacing:-17.358000px;}
.ws1{word-spacing:-17.292000px;}
.ws125{word-spacing:-17.160000px;}
.wse5{word-spacing:-17.028000px;}
.ws133{word-spacing:-16.830000px;}
.ws13e{word-spacing:-16.566000px;}
.ws10a{word-spacing:-16.500000px;}
.ws88{word-spacing:-16.038000px;}
.ws4d{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.780000px;}
.ws2{word-spacing:-15.720000px;}
.ws138{word-spacing:-15.378000px;}
.ws139{word-spacing:-15.048000px;}
.ws3{word-spacing:-14.880000px;}
.ws132{word-spacing:-14.586000px;}
.ws14{word-spacing:-14.202000px;}
.ws15{word-spacing:-14.148000px;}
.ws51{word-spacing:-13.608000px;}
.wsc5{word-spacing:-13.284000px;}
.ws35{word-spacing:-13.014000px;}
.ws86{word-spacing:-10.504494px;}
.ws34{word-spacing:-10.206000px;}
.ws32{word-spacing:-10.119714px;}
.ws114{word-spacing:-10.081236px;}
.ws6f{word-spacing:-10.044000px;}
.ws6e{word-spacing:-10.042758px;}
.ws31{word-spacing:-9.734934px;}
.ws4f{word-spacing:-9.396000px;}
.ws9d{word-spacing:-9.350154px;}
.ws4e{word-spacing:-9.234720px;}
.ws33{word-spacing:-9.199740px;}
.ws9e{word-spacing:-8.849940px;}
.ws50{word-spacing:-7.870500px;}
.ws55{word-spacing:-4.488000px;}
.wsb7{word-spacing:-3.762000px;}
.ws12a{word-spacing:-3.564000px;}
.wsba{word-spacing:-3.402000px;}
.wsc1{word-spacing:-2.862000px;}
.ws70{word-spacing:-2.310000px;}
.wsf3{word-spacing:-2.100000px;}
.wsc2{word-spacing:-1.890000px;}
.ws57{word-spacing:-1.386000px;}
.wsc9{word-spacing:-1.260000px;}
.ws5c{word-spacing:-1.188000px;}
.ws11e{word-spacing:-1.056000px;}
.ws58{word-spacing:-0.990000px;}
.wsc6{word-spacing:-0.924000px;}
.ws1c{word-spacing:-0.858000px;}
.ws21{word-spacing:-0.792000px;}
.wsc8{word-spacing:-0.780000px;}
.ws2f{word-spacing:-0.702000px;}
.wscb{word-spacing:-0.660000px;}
.wsca{word-spacing:-0.600000px;}
.ws72{word-spacing:-0.594000px;}
.ws81{word-spacing:-0.540000px;}
.wse6{word-spacing:-0.538692px;}
.wsc4{word-spacing:-0.489720px;}
.wsbb{word-spacing:-0.378000px;}
.ws56{word-spacing:-0.330000px;}
.ws49{word-spacing:-0.324000px;}
.wsaf{word-spacing:-0.270000px;}
.wsea{word-spacing:-0.264000px;}
.ws3c{word-spacing:-0.198000px;}
.wsa0{word-spacing:-0.180000px;}
.ws69{word-spacing:-0.162000px;}
.wsda{word-spacing:-0.120000px;}
.ws143{word-spacing:-0.066000px;}
.wsa4{word-spacing:-0.060000px;}
.wsb9{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsa8{word-spacing:0.054000px;}
.wse8{word-spacing:0.066000px;}
.ws64{word-spacing:0.108000px;}
.wsf6{word-spacing:0.132000px;}
.wsa1{word-spacing:0.300000px;}
.wsbe{word-spacing:0.324000px;}
.wsa2{word-spacing:0.360000px;}
.ws76{word-spacing:0.396000px;}
.ws7d{word-spacing:0.420000px;}
.wsd4{word-spacing:0.432000px;}
.ws77{word-spacing:0.480000px;}
.ws117{word-spacing:0.528000px;}
.ws82{word-spacing:0.540000px;}
.ws1e{word-spacing:0.594000px;}
.ws3d{word-spacing:0.660000px;}
.ws9f{word-spacing:0.726000px;}
.ws65{word-spacing:0.810000px;}
.ws10{word-spacing:0.864000px;}
.wsad{word-spacing:0.918000px;}
.ws140{word-spacing:0.924000px;}
.wsb8{word-spacing:1.026000px;}
.wsa{word-spacing:1.080000px;}
.ws145{word-spacing:1.122000px;}
.ws80{word-spacing:1.134000px;}
.ws7e{word-spacing:1.140000px;}
.wsec{word-spacing:1.188000px;}
.ws134{word-spacing:1.254000px;}
.ws6c{word-spacing:1.296000px;}
.ws59{word-spacing:1.320000px;}
.wsae{word-spacing:1.350000px;}
.wsff{word-spacing:1.386000px;}
.ws112{word-spacing:1.458000px;}
.ws8c{word-spacing:1.518000px;}
.ws5b{word-spacing:1.650000px;}
.ws71{word-spacing:1.716000px;}
.ws126{word-spacing:1.782000px;}
.ws73{word-spacing:1.848000px;}
.wsd2{word-spacing:1.890000px;}
.wsf5{word-spacing:1.914000px;}
.ws9b{word-spacing:1.980000px;}
.ws12{word-spacing:1.998000px;}
.ws17{word-spacing:2.046000px;}
.ws63{word-spacing:2.106000px;}
.wsc7{word-spacing:2.112000px;}
.ws6b{word-spacing:2.160000px;}
.wsbc{word-spacing:2.268000px;}
.wsde{word-spacing:2.310000px;}
.ws41{word-spacing:2.340000px;}
.ws3a{word-spacing:2.376000px;}
.wse{word-spacing:2.400000px;}
.wsce{word-spacing:2.442000px;}
.wsa9{word-spacing:2.484000px;}
.wsb6{word-spacing:2.508000px;}
.ws94{word-spacing:2.574000px;}
.ws19{word-spacing:2.640000px;}
.ws2a{word-spacing:2.646000px;}
.wsd1{word-spacing:2.700000px;}
.ws27{word-spacing:2.706000px;}
.ws46{word-spacing:2.754000px;}
.ws144{word-spacing:2.772000px;}
.ws68{word-spacing:2.808000px;}
.ws104{word-spacing:2.838000px;}
.wsfc{word-spacing:2.862000px;}
.wsf7{word-spacing:2.904000px;}
.ws11{word-spacing:2.970000px;}
.ws9{word-spacing:3.060000px;}
.ws16{word-spacing:3.078000px;}
.ws10f{word-spacing:3.102000px;}
.ws61{word-spacing:3.132000px;}
.ws93{word-spacing:3.168000px;}
.ws43{word-spacing:3.180000px;}
.ws2d{word-spacing:3.186000px;}
.ws118{word-spacing:3.234000px;}
.ws47{word-spacing:3.294000px;}
.wsdd{word-spacing:3.300000px;}
.ws4b{word-spacing:3.348000px;}
.ws1f{word-spacing:3.432000px;}
.wsdf{word-spacing:3.456000px;}
.ws7f{word-spacing:3.480000px;}
.ws107{word-spacing:3.498000px;}
.wsef{word-spacing:3.510000px;}
.ws4c{word-spacing:3.564000px;}
.ws75{word-spacing:3.630000px;}
.ws11b{word-spacing:3.696000px;}
.wsf1{word-spacing:3.726000px;}
.wsfe{word-spacing:3.762000px;}
.wsd3{word-spacing:3.780000px;}
.wsf{word-spacing:3.942000px;}
.ws5a{word-spacing:3.960000px;}
.ws85{word-spacing:3.996000px;}
.wsc{word-spacing:4.020000px;}
.ws141{word-spacing:4.026000px;}
.ws7{word-spacing:4.050000px;}
.wsd8{word-spacing:4.092000px;}
.wsc0{word-spacing:4.104000px;}
.ws74{word-spacing:4.158000px;}
.ws7c{word-spacing:4.224000px;}
.wsd{word-spacing:4.260000px;}
.ws62{word-spacing:4.266000px;}
.wscc{word-spacing:4.290000px;}
.ws3e{word-spacing:4.356000px;}
.ws5d{word-spacing:4.422000px;}
.wsb{word-spacing:4.500000px;}
.ws28{word-spacing:4.554000px;}
.ws5e{word-spacing:4.560000px;}
.ws66{word-spacing:4.590000px;}
.ws11f{word-spacing:4.620000px;}
.ws2b{word-spacing:4.644000px;}
.ws42{word-spacing:4.680000px;}
.ws13f{word-spacing:4.686000px;}
.ws29{word-spacing:4.698000px;}
.ws95{word-spacing:4.752000px;}
.wsd0{word-spacing:4.806000px;}
.wsa5{word-spacing:4.818000px;}
.wse0{word-spacing:4.860000px;}
.ws44{word-spacing:4.884000px;}
.ws6{word-spacing:4.950000px;}
.ws18{word-spacing:5.016000px;}
.wsfa{word-spacing:5.022000px;}
.ws4a{word-spacing:5.076000px;}
.ws6d{word-spacing:5.130000px;}
.wsd9{word-spacing:5.148000px;}
.wsb5{word-spacing:5.214000px;}
.ws8f{word-spacing:5.280000px;}
.wsab{word-spacing:5.292000px;}
.ws92{word-spacing:5.346000px;}
.ws53{word-spacing:5.400000px;}
.ws8a{word-spacing:5.412000px;}
.ws67{word-spacing:5.454000px;}
.ws40{word-spacing:5.478000px;}
.wsb1{word-spacing:5.544000px;}
.wsf8{word-spacing:5.562000px;}
.ws128{word-spacing:5.610000px;}
.ws2c{word-spacing:5.616000px;}
.wse3{word-spacing:5.670000px;}
.ws89{word-spacing:5.742000px;}
.wse2{word-spacing:5.778000px;}
.ws96{word-spacing:5.808000px;}
.ws84{word-spacing:5.832000px;}
.ws11a{word-spacing:5.874000px;}
.wsb0{word-spacing:5.886000px;}
.ws113{word-spacing:5.940000px;}
.wsfd{word-spacing:5.994000px;}
.ws1d{word-spacing:6.006000px;}
.wscf{word-spacing:6.048000px;}
.ws8{word-spacing:6.060000px;}
.ws10e{word-spacing:6.072000px;}
.wsee{word-spacing:6.102000px;}
.ws8e{word-spacing:6.138000px;}
.wsdc{word-spacing:6.204000px;}
.ws110{word-spacing:6.210000px;}
.wsf4{word-spacing:6.270000px;}
.ws5{word-spacing:6.300000px;}
.ws99{word-spacing:6.336000px;}
.ws45{word-spacing:6.402000px;}
.ws111{word-spacing:6.426000px;}
.ws127{word-spacing:6.468000px;}
.wsf0{word-spacing:6.480000px;}
.ws24{word-spacing:6.534000px;}
.ws8d{word-spacing:6.600000px;}
.wsf9{word-spacing:6.642000px;}
.ws26{word-spacing:6.666000px;}
.wsac{word-spacing:6.696000px;}
.wsa3{word-spacing:6.732000px;}
.wsc3{word-spacing:6.750000px;}
.wsaa{word-spacing:6.804000px;}
.wsa7{word-spacing:6.858000px;}
.ws79{word-spacing:6.864000px;}
.ws52{word-spacing:6.900000px;}
.ws8b{word-spacing:6.930000px;}
.ws6a{word-spacing:6.966000px;}
.ws25{word-spacing:6.996000px;}
.ws83{word-spacing:7.020000px;}
.wse4{word-spacing:7.128000px;}
.ws39{word-spacing:7.194000px;}
.ws109{word-spacing:7.236000px;}
.ws38{word-spacing:7.260000px;}
.wsbd{word-spacing:7.290000px;}
.wseb{word-spacing:7.392000px;}
.wscd{word-spacing:7.458000px;}
.ws36{word-spacing:7.524000px;}
.wsbf{word-spacing:7.560000px;}
.ws13c{word-spacing:7.590000px;}
.ws121{word-spacing:7.656000px;}
.ws142{word-spacing:7.722000px;}
.wsa6{word-spacing:7.830000px;}
.ws103{word-spacing:7.854000px;}
.wsf2{word-spacing:7.884000px;}
.ws106{word-spacing:7.920000px;}
.ws119{word-spacing:7.986000px;}
.ws9a{word-spacing:8.052000px;}
.wse1{word-spacing:8.100000px;}
.ws90{word-spacing:8.184000px;}
.wsb2{word-spacing:8.250000px;}
.ws7b{word-spacing:8.316000px;}
.ws10d{word-spacing:8.382000px;}
.ws1b{word-spacing:8.448000px;}
.ws122{word-spacing:8.514000px;}
.ws48{word-spacing:8.586000px;}
.ws3f{word-spacing:8.712000px;}
.ws13b{word-spacing:8.778000px;}
.wsed{word-spacing:8.802000px;}
.ws11d{word-spacing:8.844000px;}
.wsb3{word-spacing:8.910000px;}
.ws97{word-spacing:8.976000px;}
.ws102{word-spacing:9.042000px;}
.ws9c{word-spacing:9.072000px;}
.ws78{word-spacing:9.174000px;}
.ws108{word-spacing:9.240000px;}
.ws135{word-spacing:9.306000px;}
.ws1a{word-spacing:9.372000px;}
.ws98{word-spacing:9.438000px;}
.ws12c{word-spacing:9.504000px;}
.ws124{word-spacing:9.558000px;}
.ws116{word-spacing:9.570000px;}
.ws7a{word-spacing:9.636000px;}
.ws91{word-spacing:9.702000px;}
.ws2e{word-spacing:9.828000px;}
.ws10c{word-spacing:9.834000px;}
.wsd7{word-spacing:9.966000px;}
.ws22{word-spacing:10.032000px;}
.wsfb{word-spacing:10.098000px;}
.ws60{word-spacing:10.638000px;}
.ws137{word-spacing:10.692000px;}
.ws123{word-spacing:10.758000px;}
.ws20{word-spacing:10.824000px;}
.ws5f{word-spacing:10.860000px;}
.wse9{word-spacing:10.956000px;}
.wsdb{word-spacing:11.154000px;}
.ws129{word-spacing:11.286000px;}
.ws120{word-spacing:11.352000px;}
.ws100{word-spacing:11.550000px;}
.wsb4{word-spacing:11.682000px;}
.ws23{word-spacing:11.748000px;}
.ws54{word-spacing:11.880000px;}
.ws3b{word-spacing:12.078000px;}
.ws101{word-spacing:12.144000px;}
.ws12b{word-spacing:12.276000px;}
.ws136{word-spacing:12.342000px;}
.wse7{word-spacing:12.408000px;}
.ws131{word-spacing:12.474000px;}
.wsd6{word-spacing:12.936000px;}
.ws13a{word-spacing:13.002000px;}
.wsd5{word-spacing:13.068000px;}
.ws37{word-spacing:13.200000px;}
.ws130{word-spacing:13.596000px;}
.ws10b{word-spacing:14.400000px;}
.ws12d{word-spacing:14.982000px;}
.ws105{word-spacing:15.114000px;}
.ws12e{word-spacing:15.246000px;}
.ws12f{word-spacing:16.104000px;}
.ws11c{word-spacing:16.170000px;}
.ws13d{word-spacing:16.500000px;}
.ws30{word-spacing:35.610600px;}
._9{margin-left:-17.952000px;}
._15{margin-left:-16.566000px;}
._18{margin-left:-13.860000px;}
._17{margin-left:-11.682000px;}
._a{margin-left:-10.296000px;}
._c{margin-left:-8.316000px;}
._3{margin-left:-7.056000px;}
._4{margin-left:-5.100000px;}
._6{margin-left:-3.978000px;}
._0{margin-left:-2.970000px;}
._2{margin-left:-1.260000px;}
._1{width:1.008000px;}
._5{width:2.280000px;}
._b{width:3.564000px;}
._8{width:4.608000px;}
._12{width:5.952000px;}
._7{width:7.062000px;}
._14{width:8.220000px;}
._f{width:9.360000px;}
._11{width:10.500000px;}
._d{width:11.580000px;}
._e{width:12.900000px;}
._13{width:14.820000px;}
._10{width:16.260000px;}
._16{width:17.940000px;}
._19{width:197.460000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs2{font-size:48.972000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.290050px;}
.y147{bottom:104.899500px;}
.y1b{bottom:105.069600px;}
.y16e{bottom:105.132450px;}
.yd0{bottom:105.197100px;}
.yae{bottom:105.367200px;}
.y9c{bottom:105.409800px;}
.y10d{bottom:105.452250px;}
.y82{bottom:105.494700px;}
.y5b{bottom:105.919950px;}
.y1ac{bottom:106.345200px;}
.y127{bottom:106.472700px;}
.y193{bottom:106.685250px;}
.yea{bottom:106.832250px;}
.y1a6{bottom:106.983000px;}
.y43{bottom:107.025450px;}
.y1b0{bottom:110.569500px;}
.y1bb{bottom:110.569650px;}
.y146{bottom:121.099500px;}
.y1a{bottom:121.269600px;}
.y16d{bottom:121.332450px;}
.ycf{bottom:121.397100px;}
.yad{bottom:121.567200px;}
.y9b{bottom:121.609800px;}
.y10c{bottom:121.652250px;}
.y81{bottom:121.694700px;}
.y5a{bottom:122.119950px;}
.y126{bottom:122.672700px;}
.y192{bottom:122.885250px;}
.y1a5{bottom:123.183000px;}
.y42{bottom:123.225450px;}
.ye9{bottom:126.636750px;}
.y1af{bottom:130.369500px;}
.y1ba{bottom:130.369650px;}
.y145{bottom:137.299500px;}
.y19{bottom:137.469600px;}
.y16c{bottom:137.532450px;}
.yce{bottom:137.597100px;}
.yac{bottom:137.767200px;}
.y9a{bottom:137.809800px;}
.y10b{bottom:137.852250px;}
.y80{bottom:137.894700px;}
.y59{bottom:138.319950px;}
.y125{bottom:138.872700px;}
.y191{bottom:139.085250px;}
.y1a4{bottom:139.383000px;}
.y41{bottom:139.425450px;}
.ye8{bottom:142.836750px;}
.y1ae{bottom:150.169500px;}
.y1b9{bottom:150.169650px;}
.y144{bottom:153.499500px;}
.y18{bottom:153.669600px;}
.y16b{bottom:153.732450px;}
.ycd{bottom:153.797100px;}
.yab{bottom:153.967200px;}
.y99{bottom:154.009800px;}
.y10a{bottom:154.052250px;}
.y7f{bottom:154.094700px;}
.y58{bottom:154.519950px;}
.y124{bottom:155.072700px;}
.y190{bottom:155.285250px;}
.y1a3{bottom:155.583000px;}
.y40{bottom:155.625450px;}
.ye7{bottom:159.036750px;}
.y143{bottom:169.699500px;}
.y17{bottom:169.869600px;}
.y16a{bottom:169.932450px;}
.y1ad{bottom:169.969500px;}
.y1b8{bottom:169.969650px;}
.ycc{bottom:169.997100px;}
.yaa{bottom:170.167200px;}
.y98{bottom:170.209800px;}
.y109{bottom:170.252250px;}
.y7e{bottom:170.294700px;}
.y57{bottom:170.719950px;}
.y123{bottom:171.272700px;}
.y18f{bottom:171.485250px;}
.y1a2{bottom:171.783000px;}
.y3f{bottom:171.825450px;}
.ye6{bottom:175.236750px;}
.y142{bottom:185.899500px;}
.y16{bottom:186.069600px;}
.y169{bottom:186.132450px;}
.ycb{bottom:186.197100px;}
.ya9{bottom:186.367200px;}
.y97{bottom:186.409800px;}
.y108{bottom:186.452250px;}
.y7d{bottom:186.494700px;}
.y56{bottom:186.919950px;}
.y122{bottom:187.472700px;}
.y18e{bottom:187.685250px;}
.y1a1{bottom:187.983000px;}
.y3e{bottom:188.025450px;}
.y1ab{bottom:189.769500px;}
.y1b7{bottom:189.769650px;}
.ye5{bottom:191.436750px;}
.y141{bottom:202.099500px;}
.y168{bottom:202.332450px;}
.yca{bottom:202.397100px;}
.ya8{bottom:202.567200px;}
.y96{bottom:202.609800px;}
.y107{bottom:202.652250px;}
.y7c{bottom:202.694700px;}
.y55{bottom:203.119950px;}
.y121{bottom:203.672700px;}
.y18d{bottom:203.885250px;}
.y1a0{bottom:204.183000px;}
.y3d{bottom:204.225450px;}
.ye4{bottom:207.636750px;}
.y1aa{bottom:209.569500px;}
.y1b6{bottom:209.569650px;}
.y140{bottom:218.299500px;}
.y167{bottom:218.532450px;}
.yc9{bottom:218.597100px;}
.ya7{bottom:218.767200px;}
.y95{bottom:218.809800px;}
.y106{bottom:218.852250px;}
.y7b{bottom:218.894700px;}
.y54{bottom:219.319950px;}
.y120{bottom:219.872700px;}
.y18c{bottom:220.085250px;}
.y19f{bottom:220.383000px;}
.y3c{bottom:220.425450px;}
.ye3{bottom:223.836750px;}
.y1a9{bottom:229.369500px;}
.y1b5{bottom:229.369650px;}
.y13f{bottom:234.499500px;}
.y166{bottom:234.732450px;}
.yc8{bottom:234.797100px;}
.ya6{bottom:234.967200px;}
.y94{bottom:235.009800px;}
.y105{bottom:235.052250px;}
.y7a{bottom:235.094700px;}
.y15{bottom:235.210050px;}
.y53{bottom:235.519950px;}
.y11f{bottom:236.072700px;}
.y19e{bottom:236.583000px;}
.y3b{bottom:236.625450px;}
.ye2{bottom:240.036750px;}
.y1a8{bottom:249.169500px;}
.y1b4{bottom:249.169650px;}
.y13e{bottom:250.699500px;}
.y165{bottom:250.932450px;}
.yc7{bottom:250.997100px;}
.y93{bottom:251.209800px;}
.y104{bottom:251.252250px;}
.y79{bottom:251.294700px;}
.y52{bottom:251.719950px;}
.y11e{bottom:252.272700px;}
.y19d{bottom:252.783000px;}
.y3a{bottom:252.825450px;}
.y14{bottom:255.010050px;}
.ye1{bottom:256.236750px;}
.y13d{bottom:266.899500px;}
.y164{bottom:267.132450px;}
.yc6{bottom:267.197100px;}
.y92{bottom:267.409800px;}
.y103{bottom:267.452250px;}
.y78{bottom:267.494700px;}
.y51{bottom:267.919950px;}
.y11d{bottom:268.472700px;}
.y1a7{bottom:268.969500px;}
.y1b3{bottom:268.969650px;}
.y19c{bottom:268.983000px;}
.y39{bottom:269.025450px;}
.ye0{bottom:272.436750px;}
.y13c{bottom:283.099500px;}
.y163{bottom:283.332450px;}
.yc5{bottom:283.397100px;}
.y91{bottom:283.609800px;}
.y102{bottom:283.652250px;}
.y77{bottom:283.694700px;}
.y11c{bottom:284.672700px;}
.y38{bottom:285.225450px;}
.ydf{bottom:288.636750px;}
.y173{bottom:288.769500px;}
.y1b2{bottom:288.769650px;}
.y13{bottom:294.610050px;}
.y13b{bottom:299.299500px;}
.y162{bottom:299.532450px;}
.yc4{bottom:299.597100px;}
.y90{bottom:299.809800px;}
.y101{bottom:299.852250px;}
.y76{bottom:299.894700px;}
.y11b{bottom:300.872700px;}
.y37{bottom:301.425450px;}
.y18b{bottom:303.055500px;}
.yde{bottom:304.836750px;}
.ya5{bottom:308.569500px;}
.y1b1{bottom:308.569650px;}
.y13a{bottom:315.499500px;}
.y161{bottom:315.732450px;}
.yc3{bottom:315.797100px;}
.y100{bottom:316.052250px;}
.y75{bottom:316.094700px;}
.y36{bottom:317.625450px;}
.ydd{bottom:321.036750px;}
.y18a{bottom:322.855500px;}
.ya4{bottom:328.369500px;}
.y19b{bottom:328.369650px;}
.y139{bottom:331.699500px;}
.y160{bottom:331.932450px;}
.yc2{bottom:331.997100px;}
.yff{bottom:332.252250px;}
.y74{bottom:332.294700px;}
.y12{bottom:332.410050px;}
.y35{bottom:333.825450px;}
.ydc{bottom:337.236750px;}
.y50{bottom:337.369500px;}
.y189{bottom:342.655500px;}
.y15f{bottom:348.132450px;}
.ya3{bottom:348.169500px;}
.y19a{bottom:348.169650px;}
.yc1{bottom:348.197100px;}
.yfe{bottom:348.452250px;}
.y73{bottom:348.494700px;}
.ydb{bottom:353.436750px;}
.y4f{bottom:357.169500px;}
.y188{bottom:362.455500px;}
.y8f{bottom:362.569500px;}
.y15e{bottom:364.332450px;}
.yc0{bottom:364.397100px;}
.yfd{bottom:364.652250px;}
.y72{bottom:364.694700px;}
.ya2{bottom:367.969500px;}
.y199{bottom:367.969650px;}
.y11{bottom:368.410050px;}
.yda{bottom:369.636750px;}
.y4e{bottom:376.969500px;}
.y15d{bottom:380.532450px;}
.y8e{bottom:380.569500px;}
.ybf{bottom:380.597100px;}
.y71{bottom:380.894700px;}
.yd9{bottom:385.836750px;}
.y10{bottom:386.410050px;}
.ya1{bottom:387.769500px;}
.y198{bottom:387.769650px;}
.y15c{bottom:396.732450px;}
.y70{bottom:397.094700px;}
.y8d{bottom:398.569500px;}
.y138{bottom:400.369650px;}
.yd8{bottom:402.036750px;}
.y187{bottom:402.055500px;}
.yf{bottom:404.410050px;}
.ya0{bottom:407.569500px;}
.y34{bottom:407.569650px;}
.y15b{bottom:412.932450px;}
.y6f{bottom:413.294700px;}
.y4d{bottom:416.569500px;}
.yd7{bottom:418.236750px;}
.y11a{bottom:418.369500px;}
.y137{bottom:418.369650px;}
.y186{bottom:421.855500px;}
.ye{bottom:422.410050px;}
.yfc{bottom:423.769500px;}
.y9f{bottom:427.369500px;}
.y33{bottom:427.369650px;}
.y6e{bottom:429.494700px;}
.y4c{bottom:434.569500px;}
.yd6{bottom:438.041250px;}
.y119{bottom:438.169500px;}
.yfb{bottom:443.569500px;}
.ybe{bottom:445.369500px;}
.y9e{bottom:447.169500px;}
.y32{bottom:447.169650px;}
.y4b{bottom:452.569500px;}
.yd5{bottom:454.241250px;}
.y136{bottom:456.169650px;}
.y118{bottom:457.969500px;}
.yd{bottom:460.210050px;}
.y185{bottom:461.455500px;}
.yfa{bottom:463.369500px;}
.ybd{bottom:465.169500px;}
.y9d{bottom:466.969500px;}
.y31{bottom:466.969650px;}
.yd4{bottom:470.441250px;}
.y4a{bottom:470.569500px;}
.y8c{bottom:472.369500px;}
.y135{bottom:475.969650px;}
.y117{bottom:477.769500px;}
.y184{bottom:481.255500px;}
.yf9{bottom:483.169650px;}
.ybc{bottom:484.969500px;}
.yd3{bottom:486.641250px;}
.y30{bottom:486.769500px;}
.y1bd{bottom:486.769650px;}
.y49{bottom:488.569500px;}
.y8b{bottom:492.169650px;}
.y15a{bottom:495.655500px;}
.y134{bottom:495.769500px;}
.y116{bottom:497.569500px;}
.yc{bottom:499.810050px;}
.y6d{bottom:500.545650px;}
.y183{bottom:501.055500px;}
.yd2{bottom:502.841250px;}
.yf8{bottom:502.969650px;}
.ybb{bottom:504.769500px;}
.y2f{bottom:506.569500px;}
.y172{bottom:506.569650px;}
.y8a{bottom:511.969650px;}
.y159{bottom:515.455500px;}
.y133{bottom:515.569500px;}
.y115{bottom:517.369500px;}
.y6c{bottom:518.545650px;}
.yb{bottom:519.610050px;}
.y182{bottom:520.855500px;}
.yf7{bottom:522.769650px;}
.yba{bottom:524.569500px;}
.y2e{bottom:526.369500px;}
.y171{bottom:526.369650px;}
.y89{bottom:531.769650px;}
.y158{bottom:535.255500px;}
.y132{bottom:535.369500px;}
.y6b{bottom:536.545650px;}
.y114{bottom:537.169500px;}
.ya{bottom:537.610050px;}
.y181{bottom:540.655500px;}
.yb9{bottom:542.569500px;}
.yf6{bottom:542.569650px;}
.y2d{bottom:546.169500px;}
.y170{bottom:546.169650px;}
.y88{bottom:551.569650px;}
.y157{bottom:555.055500px;}
.y131{bottom:555.169500px;}
.y9{bottom:555.610050px;}
.y180{bottom:560.455500px;}
.yb8{bottom:560.569500px;}
.yf5{bottom:562.369650px;}
.y2c{bottom:565.969500px;}
.y16f{bottom:565.969650px;}
.y87{bottom:571.369650px;}
.y6a{bottom:574.345650px;}
.y156{bottom:574.855500px;}
.y130{bottom:574.969500px;}
.y113{bottom:576.769650px;}
.y17f{bottom:580.255500px;}
.y2b{bottom:585.769500px;}
.y197{bottom:585.769650px;}
.y8{bottom:593.410050px;}
.y69{bottom:594.145650px;}
.y155{bottom:594.655500px;}
.y12f{bottom:594.769500px;}
.y112{bottom:594.769650px;}
.yb7{bottom:598.369500px;}
.y17e{bottom:600.055500px;}
.yf4{bottom:601.969650px;}
.y2a{bottom:605.569500px;}
.yd1{bottom:605.569650px;}
.y86{bottom:610.969500px;}
.y111{bottom:612.769650px;}
.y68{bottom:613.945650px;}
.y154{bottom:614.455500px;}
.y12e{bottom:614.569500px;}
.yb6{bottom:618.169500px;}
.yf3{bottom:621.769650px;}
.y29{bottom:625.369500px;}
.y196{bottom:625.369650px;}
.y85{bottom:628.969500px;}
.y110{bottom:630.769650px;}
.y7{bottom:633.005550px;}
.y67{bottom:633.745650px;}
.y153{bottom:634.255500px;}
.y17d{bottom:639.655500px;}
.yf2{bottom:639.769650px;}
.y28{bottom:645.169500px;}
.y195{bottom:645.169650px;}
.y84{bottom:646.969500px;}
.y10f{bottom:648.769650px;}
.y6{bottom:652.810050px;}
.y66{bottom:653.545650px;}
.y152{bottom:654.055500px;}
.y12d{bottom:654.169500px;}
.yb5{bottom:657.769500px;}
.yf1{bottom:657.769650px;}
.y17c{bottom:664.405500px;}
.y27{bottom:664.969500px;}
.y194{bottom:664.969650px;}
.y10e{bottom:666.769650px;}
.y65{bottom:673.345650px;}
.y151{bottom:673.855500px;}
.y12c{bottom:673.969500px;}
.yf0{bottom:675.769650px;}
.yb4{bottom:677.569500px;}
.y26{bottom:684.769500px;}
.y1bc{bottom:684.769650px;}
.y5{bottom:688.808550px;}
.y17b{bottom:689.155500px;}
.y12b{bottom:691.969500px;}
.y64{bottom:693.145650px;}
.y150{bottom:693.655500px;}
.yef{bottom:693.769650px;}
.yb3{bottom:695.569500px;}
.y48{bottom:704.569500px;}
.y25{bottom:704.569650px;}
.y4{bottom:706.810050px;}
.y12a{bottom:709.969500px;}
.yee{bottom:711.769650px;}
.y63{bottom:712.945650px;}
.y14f{bottom:713.455500px;}
.yb2{bottom:713.569500px;}
.y17a{bottom:713.905500px;}
.y47{bottom:724.369500px;}
.y24{bottom:724.369650px;}
.y129{bottom:727.969500px;}
.yed{bottom:729.769650px;}
.yb1{bottom:731.569500px;}
.y62{bottom:732.745650px;}
.y14e{bottom:733.255500px;}
.y179{bottom:738.655500px;}
.y46{bottom:744.169500px;}
.y23{bottom:744.169650px;}
.y128{bottom:745.969500px;}
.yec{bottom:747.769650px;}
.yb0{bottom:749.569500px;}
.y61{bottom:752.545650px;}
.y178{bottom:763.405500px;}
.y45{bottom:763.969500px;}
.y22{bottom:763.969650px;}
.yeb{bottom:765.769650px;}
.y3{bottom:766.210050px;}
.yaf{bottom:767.569500px;}
.y14d{bottom:772.855500px;}
.y83{bottom:783.769500px;}
.y21{bottom:783.769650px;}
.y177{bottom:788.155500px;}
.y2{bottom:791.410050px;}
.y60{bottom:792.145500px;}
.y14c{bottom:792.655500px;}
.y20{bottom:803.569500px;}
.y5f{bottom:810.145500px;}
.y14b{bottom:810.655500px;}
.y176{bottom:812.905500px;}
.y1f{bottom:823.369500px;}
.y5e{bottom:828.145500px;}
.y14a{bottom:828.655500px;}
.y175{bottom:837.655500px;}
.y44{bottom:843.169500px;}
.y5d{bottom:846.145500px;}
.y149{bottom:846.655500px;}
.y174{bottom:862.405500px;}
.y1e{bottom:862.969500px;}
.y5c{bottom:864.145500px;}
.y148{bottom:864.655500px;}
.y1c{bottom:918.245250px;}
.y1d{bottom:919.421100px;}
.h9{height:46.872000px;}
.h2{height:47.412000px;}
.ha{height:50.580000px;}
.hc{height:50.692440px;}
.h8{height:52.080000px;}
.h6{height:52.680000px;}
.hf{height:55.638000px;}
.hd{height:55.761684px;}
.hb{height:55.762284px;}
.h5{height:57.288000px;}
.h4{height:57.948000px;}
.h7{height:57.948600px;}
.he{height:60.696000px;}
.h3{height:73.752000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:83.831550px;}
.x1{left:85.039350px;}
.x2{left:92.188650px;}
.x11{left:100.841550px;}
.xd{left:102.047250px;}
.xf{left:105.046800px;}
.xe{left:109.899450px;}
.x9{left:136.062900px;}
.x13{left:138.139350px;}
.x10{left:161.574900px;}
.x3{left:186.751650px;}
.x14{left:191.240850px;}
.x4{left:266.646750px;}
.xc{left:277.347300px;}
.x5{left:291.842250px;}
.xb{left:307.360800px;}
.x8{left:331.016550px;}
.xa{left:332.860200px;}
.x7{left:513.211050px;}
.x6{left:516.194550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.180800pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:24.864000pt;}
.ls47{letter-spacing:-12.800000pt;}
.ls23{letter-spacing:-3.648000pt;}
.ls2a{letter-spacing:-3.072000pt;}
.ls1a{letter-spacing:-2.928000pt;}
.ls4c{letter-spacing:-1.701333pt;}
.ls55{letter-spacing:-1.584000pt;}
.ls3d{letter-spacing:-1.466667pt;}
.ls4d{letter-spacing:-1.349333pt;}
.ls51{letter-spacing:-1.290667pt;}
.ls4f{letter-spacing:-0.997333pt;}
.ls35{letter-spacing:-0.880000pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls3e{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.410667pt;}
.ls42{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.342027pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.239419pt;}
.ls41{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.176000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls54{letter-spacing:-0.058667pt;}
.ls39{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.053333pt;}
.ls46{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.085333pt;}
.ls38{letter-spacing:0.093280pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.102608pt;}
.ls30{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.117333pt;}
.ls3a{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls4b{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.293333pt;}
.ls3b{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.349333pt;}
.ls32{letter-spacing:0.349867pt;}
.ls25{letter-spacing:0.373333pt;}
.ls29{letter-spacing:0.376229pt;}
.ls19{letter-spacing:0.404213pt;}
.ls48{letter-spacing:0.410432pt;}
.lsd{letter-spacing:0.410667pt;}
.ls9{letter-spacing:0.427200pt;}
.ls8{letter-spacing:0.427733pt;}
.lse{letter-spacing:0.432000pt;}
.ls18{letter-spacing:0.444635pt;}
.lsc{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.528000pt;}
.ls40{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.624000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.645333pt;}
.ls15{letter-spacing:0.659733pt;}
.ls45{letter-spacing:0.678933pt;}
.ls26{letter-spacing:0.684800pt;}
.lsf{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.694400pt;}
.ls1{letter-spacing:0.704000pt;}
.ls49{letter-spacing:0.741333pt;}
.ls10{letter-spacing:0.762667pt;}
.ls2e{letter-spacing:0.786661pt;}
.ls4e{letter-spacing:0.880000pt;}
.ls0{letter-spacing:0.896000pt;}
.ls4a{letter-spacing:0.938667pt;}
.ls6{letter-spacing:0.970667pt;}
.ls2c{letter-spacing:1.056000pt;}
.ls3f{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.290667pt;}
.ls2d{letter-spacing:1.349333pt;}
.ls44{letter-spacing:1.866667pt;}
.ls52{letter-spacing:3.696000pt;}
.ls1e{letter-spacing:4.704000pt;}
.ls3c{letter-spacing:7.344000pt;}
.ls53{letter-spacing:7.392000pt;}
.ws0{word-spacing:-19.637333pt;}
.ws87{word-spacing:-15.957333pt;}
.ws115{word-spacing:-15.429333pt;}
.ws1{word-spacing:-15.370667pt;}
.ws125{word-spacing:-15.253333pt;}
.wse5{word-spacing:-15.136000pt;}
.ws133{word-spacing:-14.960000pt;}
.ws13e{word-spacing:-14.725333pt;}
.ws10a{word-spacing:-14.666667pt;}
.ws88{word-spacing:-14.256000pt;}
.ws4d{word-spacing:-14.080000pt;}
.ws13{word-spacing:-14.026667pt;}
.ws2{word-spacing:-13.973333pt;}
.ws138{word-spacing:-13.669333pt;}
.ws139{word-spacing:-13.376000pt;}
.ws3{word-spacing:-13.226667pt;}
.ws132{word-spacing:-12.965333pt;}
.ws14{word-spacing:-12.624000pt;}
.ws15{word-spacing:-12.576000pt;}
.ws51{word-spacing:-12.096000pt;}
.wsc5{word-spacing:-11.808000pt;}
.ws35{word-spacing:-11.568000pt;}
.ws86{word-spacing:-9.337328pt;}
.ws34{word-spacing:-9.072000pt;}
.ws32{word-spacing:-8.995301pt;}
.ws114{word-spacing:-8.961099pt;}
.ws6f{word-spacing:-8.928000pt;}
.ws6e{word-spacing:-8.926896pt;}
.ws31{word-spacing:-8.653275pt;}
.ws4f{word-spacing:-8.352000pt;}
.ws9d{word-spacing:-8.311248pt;}
.ws4e{word-spacing:-8.208640pt;}
.ws33{word-spacing:-8.177547pt;}
.ws9e{word-spacing:-7.866613pt;}
.ws50{word-spacing:-6.996000pt;}
.ws55{word-spacing:-3.989333pt;}
.wsb7{word-spacing:-3.344000pt;}
.ws12a{word-spacing:-3.168000pt;}
.wsba{word-spacing:-3.024000pt;}
.wsc1{word-spacing:-2.544000pt;}
.ws70{word-spacing:-2.053333pt;}
.wsf3{word-spacing:-1.866667pt;}
.wsc2{word-spacing:-1.680000pt;}
.ws57{word-spacing:-1.232000pt;}
.wsc9{word-spacing:-1.120000pt;}
.ws5c{word-spacing:-1.056000pt;}
.ws11e{word-spacing:-0.938667pt;}
.ws58{word-spacing:-0.880000pt;}
.wsc6{word-spacing:-0.821333pt;}
.ws1c{word-spacing:-0.762667pt;}
.ws21{word-spacing:-0.704000pt;}
.wsc8{word-spacing:-0.693333pt;}
.ws2f{word-spacing:-0.624000pt;}
.wscb{word-spacing:-0.586667pt;}
.wsca{word-spacing:-0.533333pt;}
.ws72{word-spacing:-0.528000pt;}
.ws81{word-spacing:-0.480000pt;}
.wse6{word-spacing:-0.478837pt;}
.wsc4{word-spacing:-0.435307pt;}
.wsbb{word-spacing:-0.336000pt;}
.ws56{word-spacing:-0.293333pt;}
.ws49{word-spacing:-0.288000pt;}
.wsaf{word-spacing:-0.240000pt;}
.wsea{word-spacing:-0.234667pt;}
.ws3c{word-spacing:-0.176000pt;}
.wsa0{word-spacing:-0.160000pt;}
.ws69{word-spacing:-0.144000pt;}
.wsda{word-spacing:-0.106667pt;}
.ws143{word-spacing:-0.058667pt;}
.wsa4{word-spacing:-0.053333pt;}
.wsb9{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.048000pt;}
.wse8{word-spacing:0.058667pt;}
.ws64{word-spacing:0.096000pt;}
.wsf6{word-spacing:0.117333pt;}
.wsa1{word-spacing:0.266667pt;}
.wsbe{word-spacing:0.288000pt;}
.wsa2{word-spacing:0.320000pt;}
.ws76{word-spacing:0.352000pt;}
.ws7d{word-spacing:0.373333pt;}
.wsd4{word-spacing:0.384000pt;}
.ws77{word-spacing:0.426667pt;}
.ws117{word-spacing:0.469333pt;}
.ws82{word-spacing:0.480000pt;}
.ws1e{word-spacing:0.528000pt;}
.ws3d{word-spacing:0.586667pt;}
.ws9f{word-spacing:0.645333pt;}
.ws65{word-spacing:0.720000pt;}
.ws10{word-spacing:0.768000pt;}
.wsad{word-spacing:0.816000pt;}
.ws140{word-spacing:0.821333pt;}
.wsb8{word-spacing:0.912000pt;}
.wsa{word-spacing:0.960000pt;}
.ws145{word-spacing:0.997333pt;}
.ws80{word-spacing:1.008000pt;}
.ws7e{word-spacing:1.013333pt;}
.wsec{word-spacing:1.056000pt;}
.ws134{word-spacing:1.114667pt;}
.ws6c{word-spacing:1.152000pt;}
.ws59{word-spacing:1.173333pt;}
.wsae{word-spacing:1.200000pt;}
.wsff{word-spacing:1.232000pt;}
.ws112{word-spacing:1.296000pt;}
.ws8c{word-spacing:1.349333pt;}
.ws5b{word-spacing:1.466667pt;}
.ws71{word-spacing:1.525333pt;}
.ws126{word-spacing:1.584000pt;}
.ws73{word-spacing:1.642667pt;}
.wsd2{word-spacing:1.680000pt;}
.wsf5{word-spacing:1.701333pt;}
.ws9b{word-spacing:1.760000pt;}
.ws12{word-spacing:1.776000pt;}
.ws17{word-spacing:1.818667pt;}
.ws63{word-spacing:1.872000pt;}
.wsc7{word-spacing:1.877333pt;}
.ws6b{word-spacing:1.920000pt;}
.wsbc{word-spacing:2.016000pt;}
.wsde{word-spacing:2.053333pt;}
.ws41{word-spacing:2.080000pt;}
.ws3a{word-spacing:2.112000pt;}
.wse{word-spacing:2.133333pt;}
.wsce{word-spacing:2.170667pt;}
.wsa9{word-spacing:2.208000pt;}
.wsb6{word-spacing:2.229333pt;}
.ws94{word-spacing:2.288000pt;}
.ws19{word-spacing:2.346667pt;}
.ws2a{word-spacing:2.352000pt;}
.wsd1{word-spacing:2.400000pt;}
.ws27{word-spacing:2.405333pt;}
.ws46{word-spacing:2.448000pt;}
.ws144{word-spacing:2.464000pt;}
.ws68{word-spacing:2.496000pt;}
.ws104{word-spacing:2.522667pt;}
.wsfc{word-spacing:2.544000pt;}
.wsf7{word-spacing:2.581333pt;}
.ws11{word-spacing:2.640000pt;}
.ws9{word-spacing:2.720000pt;}
.ws16{word-spacing:2.736000pt;}
.ws10f{word-spacing:2.757333pt;}
.ws61{word-spacing:2.784000pt;}
.ws93{word-spacing:2.816000pt;}
.ws43{word-spacing:2.826667pt;}
.ws2d{word-spacing:2.832000pt;}
.ws118{word-spacing:2.874667pt;}
.ws47{word-spacing:2.928000pt;}
.wsdd{word-spacing:2.933333pt;}
.ws4b{word-spacing:2.976000pt;}
.ws1f{word-spacing:3.050667pt;}
.wsdf{word-spacing:3.072000pt;}
.ws7f{word-spacing:3.093333pt;}
.ws107{word-spacing:3.109333pt;}
.wsef{word-spacing:3.120000pt;}
.ws4c{word-spacing:3.168000pt;}
.ws75{word-spacing:3.226667pt;}
.ws11b{word-spacing:3.285333pt;}
.wsf1{word-spacing:3.312000pt;}
.wsfe{word-spacing:3.344000pt;}
.wsd3{word-spacing:3.360000pt;}
.wsf{word-spacing:3.504000pt;}
.ws5a{word-spacing:3.520000pt;}
.ws85{word-spacing:3.552000pt;}
.wsc{word-spacing:3.573333pt;}
.ws141{word-spacing:3.578667pt;}
.ws7{word-spacing:3.600000pt;}
.wsd8{word-spacing:3.637333pt;}
.wsc0{word-spacing:3.648000pt;}
.ws74{word-spacing:3.696000pt;}
.ws7c{word-spacing:3.754667pt;}
.wsd{word-spacing:3.786667pt;}
.ws62{word-spacing:3.792000pt;}
.wscc{word-spacing:3.813333pt;}
.ws3e{word-spacing:3.872000pt;}
.ws5d{word-spacing:3.930667pt;}
.wsb{word-spacing:4.000000pt;}
.ws28{word-spacing:4.048000pt;}
.ws5e{word-spacing:4.053333pt;}
.ws66{word-spacing:4.080000pt;}
.ws11f{word-spacing:4.106667pt;}
.ws2b{word-spacing:4.128000pt;}
.ws42{word-spacing:4.160000pt;}
.ws13f{word-spacing:4.165333pt;}
.ws29{word-spacing:4.176000pt;}
.ws95{word-spacing:4.224000pt;}
.wsd0{word-spacing:4.272000pt;}
.wsa5{word-spacing:4.282667pt;}
.wse0{word-spacing:4.320000pt;}
.ws44{word-spacing:4.341333pt;}
.ws6{word-spacing:4.400000pt;}
.ws18{word-spacing:4.458667pt;}
.wsfa{word-spacing:4.464000pt;}
.ws4a{word-spacing:4.512000pt;}
.ws6d{word-spacing:4.560000pt;}
.wsd9{word-spacing:4.576000pt;}
.wsb5{word-spacing:4.634667pt;}
.ws8f{word-spacing:4.693333pt;}
.wsab{word-spacing:4.704000pt;}
.ws92{word-spacing:4.752000pt;}
.ws53{word-spacing:4.800000pt;}
.ws8a{word-spacing:4.810667pt;}
.ws67{word-spacing:4.848000pt;}
.ws40{word-spacing:4.869333pt;}
.wsb1{word-spacing:4.928000pt;}
.wsf8{word-spacing:4.944000pt;}
.ws128{word-spacing:4.986667pt;}
.ws2c{word-spacing:4.992000pt;}
.wse3{word-spacing:5.040000pt;}
.ws89{word-spacing:5.104000pt;}
.wse2{word-spacing:5.136000pt;}
.ws96{word-spacing:5.162667pt;}
.ws84{word-spacing:5.184000pt;}
.ws11a{word-spacing:5.221333pt;}
.wsb0{word-spacing:5.232000pt;}
.ws113{word-spacing:5.280000pt;}
.wsfd{word-spacing:5.328000pt;}
.ws1d{word-spacing:5.338667pt;}
.wscf{word-spacing:5.376000pt;}
.ws8{word-spacing:5.386667pt;}
.ws10e{word-spacing:5.397333pt;}
.wsee{word-spacing:5.424000pt;}
.ws8e{word-spacing:5.456000pt;}
.wsdc{word-spacing:5.514667pt;}
.ws110{word-spacing:5.520000pt;}
.wsf4{word-spacing:5.573333pt;}
.ws5{word-spacing:5.600000pt;}
.ws99{word-spacing:5.632000pt;}
.ws45{word-spacing:5.690667pt;}
.ws111{word-spacing:5.712000pt;}
.ws127{word-spacing:5.749333pt;}
.wsf0{word-spacing:5.760000pt;}
.ws24{word-spacing:5.808000pt;}
.ws8d{word-spacing:5.866667pt;}
.wsf9{word-spacing:5.904000pt;}
.ws26{word-spacing:5.925333pt;}
.wsac{word-spacing:5.952000pt;}
.wsa3{word-spacing:5.984000pt;}
.wsc3{word-spacing:6.000000pt;}
.wsaa{word-spacing:6.048000pt;}
.wsa7{word-spacing:6.096000pt;}
.ws79{word-spacing:6.101333pt;}
.ws52{word-spacing:6.133333pt;}
.ws8b{word-spacing:6.160000pt;}
.ws6a{word-spacing:6.192000pt;}
.ws25{word-spacing:6.218667pt;}
.ws83{word-spacing:6.240000pt;}
.wse4{word-spacing:6.336000pt;}
.ws39{word-spacing:6.394667pt;}
.ws109{word-spacing:6.432000pt;}
.ws38{word-spacing:6.453333pt;}
.wsbd{word-spacing:6.480000pt;}
.wseb{word-spacing:6.570667pt;}
.wscd{word-spacing:6.629333pt;}
.ws36{word-spacing:6.688000pt;}
.wsbf{word-spacing:6.720000pt;}
.ws13c{word-spacing:6.746667pt;}
.ws121{word-spacing:6.805333pt;}
.ws142{word-spacing:6.864000pt;}
.wsa6{word-spacing:6.960000pt;}
.ws103{word-spacing:6.981333pt;}
.wsf2{word-spacing:7.008000pt;}
.ws106{word-spacing:7.040000pt;}
.ws119{word-spacing:7.098667pt;}
.ws9a{word-spacing:7.157333pt;}
.wse1{word-spacing:7.200000pt;}
.ws90{word-spacing:7.274667pt;}
.wsb2{word-spacing:7.333333pt;}
.ws7b{word-spacing:7.392000pt;}
.ws10d{word-spacing:7.450667pt;}
.ws1b{word-spacing:7.509333pt;}
.ws122{word-spacing:7.568000pt;}
.ws48{word-spacing:7.632000pt;}
.ws3f{word-spacing:7.744000pt;}
.ws13b{word-spacing:7.802667pt;}
.wsed{word-spacing:7.824000pt;}
.ws11d{word-spacing:7.861333pt;}
.wsb3{word-spacing:7.920000pt;}
.ws97{word-spacing:7.978667pt;}
.ws102{word-spacing:8.037333pt;}
.ws9c{word-spacing:8.064000pt;}
.ws78{word-spacing:8.154667pt;}
.ws108{word-spacing:8.213333pt;}
.ws135{word-spacing:8.272000pt;}
.ws1a{word-spacing:8.330667pt;}
.ws98{word-spacing:8.389333pt;}
.ws12c{word-spacing:8.448000pt;}
.ws124{word-spacing:8.496000pt;}
.ws116{word-spacing:8.506667pt;}
.ws7a{word-spacing:8.565333pt;}
.ws91{word-spacing:8.624000pt;}
.ws2e{word-spacing:8.736000pt;}
.ws10c{word-spacing:8.741333pt;}
.wsd7{word-spacing:8.858667pt;}
.ws22{word-spacing:8.917333pt;}
.wsfb{word-spacing:8.976000pt;}
.ws60{word-spacing:9.456000pt;}
.ws137{word-spacing:9.504000pt;}
.ws123{word-spacing:9.562667pt;}
.ws20{word-spacing:9.621333pt;}
.ws5f{word-spacing:9.653333pt;}
.wse9{word-spacing:9.738667pt;}
.wsdb{word-spacing:9.914667pt;}
.ws129{word-spacing:10.032000pt;}
.ws120{word-spacing:10.090667pt;}
.ws100{word-spacing:10.266667pt;}
.wsb4{word-spacing:10.384000pt;}
.ws23{word-spacing:10.442667pt;}
.ws54{word-spacing:10.560000pt;}
.ws3b{word-spacing:10.736000pt;}
.ws101{word-spacing:10.794667pt;}
.ws12b{word-spacing:10.912000pt;}
.ws136{word-spacing:10.970667pt;}
.wse7{word-spacing:11.029333pt;}
.ws131{word-spacing:11.088000pt;}
.wsd6{word-spacing:11.498667pt;}
.ws13a{word-spacing:11.557333pt;}
.wsd5{word-spacing:11.616000pt;}
.ws37{word-spacing:11.733333pt;}
.ws130{word-spacing:12.085333pt;}
.ws10b{word-spacing:12.800000pt;}
.ws12d{word-spacing:13.317333pt;}
.ws105{word-spacing:13.434667pt;}
.ws12e{word-spacing:13.552000pt;}
.ws12f{word-spacing:14.314667pt;}
.ws11c{word-spacing:14.373333pt;}
.ws13d{word-spacing:14.666667pt;}
.ws30{word-spacing:31.653867pt;}
._9{margin-left:-15.957333pt;}
._15{margin-left:-14.725333pt;}
._18{margin-left:-12.320000pt;}
._17{margin-left:-10.384000pt;}
._a{margin-left:-9.152000pt;}
._c{margin-left:-7.392000pt;}
._3{margin-left:-6.272000pt;}
._4{margin-left:-4.533333pt;}
._6{margin-left:-3.536000pt;}
._0{margin-left:-2.640000pt;}
._2{margin-left:-1.120000pt;}
._1{width:0.896000pt;}
._5{width:2.026667pt;}
._b{width:3.168000pt;}
._8{width:4.096000pt;}
._12{width:5.290667pt;}
._7{width:6.277333pt;}
._14{width:7.306667pt;}
._f{width:8.320000pt;}
._11{width:9.333333pt;}
._d{width:10.293333pt;}
._e{width:11.466667pt;}
._13{width:13.173333pt;}
._10{width:14.453333pt;}
._16{width:15.946667pt;}
._19{width:175.520000pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs2{font-size:43.530667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.702267pt;}
.y147{bottom:93.244000pt;}
.y1b{bottom:93.395200pt;}
.y16e{bottom:93.451067pt;}
.yd0{bottom:93.508533pt;}
.yae{bottom:93.659733pt;}
.y9c{bottom:93.697600pt;}
.y10d{bottom:93.735333pt;}
.y82{bottom:93.773067pt;}
.y5b{bottom:94.151067pt;}
.y1ac{bottom:94.529067pt;}
.y127{bottom:94.642400pt;}
.y193{bottom:94.831333pt;}
.yea{bottom:94.962000pt;}
.y1a6{bottom:95.096000pt;}
.y43{bottom:95.133733pt;}
.y1b0{bottom:98.284000pt;}
.y1bb{bottom:98.284133pt;}
.y146{bottom:107.644000pt;}
.y1a{bottom:107.795200pt;}
.y16d{bottom:107.851067pt;}
.ycf{bottom:107.908533pt;}
.yad{bottom:108.059733pt;}
.y9b{bottom:108.097600pt;}
.y10c{bottom:108.135333pt;}
.y81{bottom:108.173067pt;}
.y5a{bottom:108.551067pt;}
.y126{bottom:109.042400pt;}
.y192{bottom:109.231333pt;}
.y1a5{bottom:109.496000pt;}
.y42{bottom:109.533733pt;}
.ye9{bottom:112.566000pt;}
.y1af{bottom:115.884000pt;}
.y1ba{bottom:115.884133pt;}
.y145{bottom:122.044000pt;}
.y19{bottom:122.195200pt;}
.y16c{bottom:122.251067pt;}
.yce{bottom:122.308533pt;}
.yac{bottom:122.459733pt;}
.y9a{bottom:122.497600pt;}
.y10b{bottom:122.535333pt;}
.y80{bottom:122.573067pt;}
.y59{bottom:122.951067pt;}
.y125{bottom:123.442400pt;}
.y191{bottom:123.631333pt;}
.y1a4{bottom:123.896000pt;}
.y41{bottom:123.933733pt;}
.ye8{bottom:126.966000pt;}
.y1ae{bottom:133.484000pt;}
.y1b9{bottom:133.484133pt;}
.y144{bottom:136.444000pt;}
.y18{bottom:136.595200pt;}
.y16b{bottom:136.651067pt;}
.ycd{bottom:136.708533pt;}
.yab{bottom:136.859733pt;}
.y99{bottom:136.897600pt;}
.y10a{bottom:136.935333pt;}
.y7f{bottom:136.973067pt;}
.y58{bottom:137.351067pt;}
.y124{bottom:137.842400pt;}
.y190{bottom:138.031333pt;}
.y1a3{bottom:138.296000pt;}
.y40{bottom:138.333733pt;}
.ye7{bottom:141.366000pt;}
.y143{bottom:150.844000pt;}
.y17{bottom:150.995200pt;}
.y16a{bottom:151.051067pt;}
.y1ad{bottom:151.084000pt;}
.y1b8{bottom:151.084133pt;}
.ycc{bottom:151.108533pt;}
.yaa{bottom:151.259733pt;}
.y98{bottom:151.297600pt;}
.y109{bottom:151.335333pt;}
.y7e{bottom:151.373067pt;}
.y57{bottom:151.751067pt;}
.y123{bottom:152.242400pt;}
.y18f{bottom:152.431333pt;}
.y1a2{bottom:152.696000pt;}
.y3f{bottom:152.733733pt;}
.ye6{bottom:155.766000pt;}
.y142{bottom:165.244000pt;}
.y16{bottom:165.395200pt;}
.y169{bottom:165.451067pt;}
.ycb{bottom:165.508533pt;}
.ya9{bottom:165.659733pt;}
.y97{bottom:165.697600pt;}
.y108{bottom:165.735333pt;}
.y7d{bottom:165.773067pt;}
.y56{bottom:166.151067pt;}
.y122{bottom:166.642400pt;}
.y18e{bottom:166.831333pt;}
.y1a1{bottom:167.096000pt;}
.y3e{bottom:167.133733pt;}
.y1ab{bottom:168.684000pt;}
.y1b7{bottom:168.684133pt;}
.ye5{bottom:170.166000pt;}
.y141{bottom:179.644000pt;}
.y168{bottom:179.851067pt;}
.yca{bottom:179.908533pt;}
.ya8{bottom:180.059733pt;}
.y96{bottom:180.097600pt;}
.y107{bottom:180.135333pt;}
.y7c{bottom:180.173067pt;}
.y55{bottom:180.551067pt;}
.y121{bottom:181.042400pt;}
.y18d{bottom:181.231333pt;}
.y1a0{bottom:181.496000pt;}
.y3d{bottom:181.533733pt;}
.ye4{bottom:184.566000pt;}
.y1aa{bottom:186.284000pt;}
.y1b6{bottom:186.284133pt;}
.y140{bottom:194.044000pt;}
.y167{bottom:194.251067pt;}
.yc9{bottom:194.308533pt;}
.ya7{bottom:194.459733pt;}
.y95{bottom:194.497600pt;}
.y106{bottom:194.535333pt;}
.y7b{bottom:194.573067pt;}
.y54{bottom:194.951067pt;}
.y120{bottom:195.442400pt;}
.y18c{bottom:195.631333pt;}
.y19f{bottom:195.896000pt;}
.y3c{bottom:195.933733pt;}
.ye3{bottom:198.966000pt;}
.y1a9{bottom:203.884000pt;}
.y1b5{bottom:203.884133pt;}
.y13f{bottom:208.444000pt;}
.y166{bottom:208.651067pt;}
.yc8{bottom:208.708533pt;}
.ya6{bottom:208.859733pt;}
.y94{bottom:208.897600pt;}
.y105{bottom:208.935333pt;}
.y7a{bottom:208.973067pt;}
.y15{bottom:209.075600pt;}
.y53{bottom:209.351067pt;}
.y11f{bottom:209.842400pt;}
.y19e{bottom:210.296000pt;}
.y3b{bottom:210.333733pt;}
.ye2{bottom:213.366000pt;}
.y1a8{bottom:221.484000pt;}
.y1b4{bottom:221.484133pt;}
.y13e{bottom:222.844000pt;}
.y165{bottom:223.051067pt;}
.yc7{bottom:223.108533pt;}
.y93{bottom:223.297600pt;}
.y104{bottom:223.335333pt;}
.y79{bottom:223.373067pt;}
.y52{bottom:223.751067pt;}
.y11e{bottom:224.242400pt;}
.y19d{bottom:224.696000pt;}
.y3a{bottom:224.733733pt;}
.y14{bottom:226.675600pt;}
.ye1{bottom:227.766000pt;}
.y13d{bottom:237.244000pt;}
.y164{bottom:237.451067pt;}
.yc6{bottom:237.508533pt;}
.y92{bottom:237.697600pt;}
.y103{bottom:237.735333pt;}
.y78{bottom:237.773067pt;}
.y51{bottom:238.151067pt;}
.y11d{bottom:238.642400pt;}
.y1a7{bottom:239.084000pt;}
.y1b3{bottom:239.084133pt;}
.y19c{bottom:239.096000pt;}
.y39{bottom:239.133733pt;}
.ye0{bottom:242.166000pt;}
.y13c{bottom:251.644000pt;}
.y163{bottom:251.851067pt;}
.yc5{bottom:251.908533pt;}
.y91{bottom:252.097600pt;}
.y102{bottom:252.135333pt;}
.y77{bottom:252.173067pt;}
.y11c{bottom:253.042400pt;}
.y38{bottom:253.533733pt;}
.ydf{bottom:256.566000pt;}
.y173{bottom:256.684000pt;}
.y1b2{bottom:256.684133pt;}
.y13{bottom:261.875600pt;}
.y13b{bottom:266.044000pt;}
.y162{bottom:266.251067pt;}
.yc4{bottom:266.308533pt;}
.y90{bottom:266.497600pt;}
.y101{bottom:266.535333pt;}
.y76{bottom:266.573067pt;}
.y11b{bottom:267.442400pt;}
.y37{bottom:267.933733pt;}
.y18b{bottom:269.382667pt;}
.yde{bottom:270.966000pt;}
.ya5{bottom:274.284000pt;}
.y1b1{bottom:274.284133pt;}
.y13a{bottom:280.444000pt;}
.y161{bottom:280.651067pt;}
.yc3{bottom:280.708533pt;}
.y100{bottom:280.935333pt;}
.y75{bottom:280.973067pt;}
.y36{bottom:282.333733pt;}
.ydd{bottom:285.366000pt;}
.y18a{bottom:286.982667pt;}
.ya4{bottom:291.884000pt;}
.y19b{bottom:291.884133pt;}
.y139{bottom:294.844000pt;}
.y160{bottom:295.051067pt;}
.yc2{bottom:295.108533pt;}
.yff{bottom:295.335333pt;}
.y74{bottom:295.373067pt;}
.y12{bottom:295.475600pt;}
.y35{bottom:296.733733pt;}
.ydc{bottom:299.766000pt;}
.y50{bottom:299.884000pt;}
.y189{bottom:304.582667pt;}
.y15f{bottom:309.451067pt;}
.ya3{bottom:309.484000pt;}
.y19a{bottom:309.484133pt;}
.yc1{bottom:309.508533pt;}
.yfe{bottom:309.735333pt;}
.y73{bottom:309.773067pt;}
.ydb{bottom:314.166000pt;}
.y4f{bottom:317.484000pt;}
.y188{bottom:322.182667pt;}
.y8f{bottom:322.284000pt;}
.y15e{bottom:323.851067pt;}
.yc0{bottom:323.908533pt;}
.yfd{bottom:324.135333pt;}
.y72{bottom:324.173067pt;}
.ya2{bottom:327.084000pt;}
.y199{bottom:327.084133pt;}
.y11{bottom:327.475600pt;}
.yda{bottom:328.566000pt;}
.y4e{bottom:335.084000pt;}
.y15d{bottom:338.251067pt;}
.y8e{bottom:338.284000pt;}
.ybf{bottom:338.308533pt;}
.y71{bottom:338.573067pt;}
.yd9{bottom:342.966000pt;}
.y10{bottom:343.475600pt;}
.ya1{bottom:344.684000pt;}
.y198{bottom:344.684133pt;}
.y15c{bottom:352.651067pt;}
.y70{bottom:352.973067pt;}
.y8d{bottom:354.284000pt;}
.y138{bottom:355.884133pt;}
.yd8{bottom:357.366000pt;}
.y187{bottom:357.382667pt;}
.yf{bottom:359.475600pt;}
.ya0{bottom:362.284000pt;}
.y34{bottom:362.284133pt;}
.y15b{bottom:367.051067pt;}
.y6f{bottom:367.373067pt;}
.y4d{bottom:370.284000pt;}
.yd7{bottom:371.766000pt;}
.y11a{bottom:371.884000pt;}
.y137{bottom:371.884133pt;}
.y186{bottom:374.982667pt;}
.ye{bottom:375.475600pt;}
.yfc{bottom:376.684000pt;}
.y9f{bottom:379.884000pt;}
.y33{bottom:379.884133pt;}
.y6e{bottom:381.773067pt;}
.y4c{bottom:386.284000pt;}
.yd6{bottom:389.370000pt;}
.y119{bottom:389.484000pt;}
.yfb{bottom:394.284000pt;}
.ybe{bottom:395.884000pt;}
.y9e{bottom:397.484000pt;}
.y32{bottom:397.484133pt;}
.y4b{bottom:402.284000pt;}
.yd5{bottom:403.770000pt;}
.y136{bottom:405.484133pt;}
.y118{bottom:407.084000pt;}
.yd{bottom:409.075600pt;}
.y185{bottom:410.182667pt;}
.yfa{bottom:411.884000pt;}
.ybd{bottom:413.484000pt;}
.y9d{bottom:415.084000pt;}
.y31{bottom:415.084133pt;}
.yd4{bottom:418.170000pt;}
.y4a{bottom:418.284000pt;}
.y8c{bottom:419.884000pt;}
.y135{bottom:423.084133pt;}
.y117{bottom:424.684000pt;}
.y184{bottom:427.782667pt;}
.yf9{bottom:429.484133pt;}
.ybc{bottom:431.084000pt;}
.yd3{bottom:432.570000pt;}
.y30{bottom:432.684000pt;}
.y1bd{bottom:432.684133pt;}
.y49{bottom:434.284000pt;}
.y8b{bottom:437.484133pt;}
.y15a{bottom:440.582667pt;}
.y134{bottom:440.684000pt;}
.y116{bottom:442.284000pt;}
.yc{bottom:444.275600pt;}
.y6d{bottom:444.929467pt;}
.y183{bottom:445.382667pt;}
.yd2{bottom:446.970000pt;}
.yf8{bottom:447.084133pt;}
.ybb{bottom:448.684000pt;}
.y2f{bottom:450.284000pt;}
.y172{bottom:450.284133pt;}
.y8a{bottom:455.084133pt;}
.y159{bottom:458.182667pt;}
.y133{bottom:458.284000pt;}
.y115{bottom:459.884000pt;}
.y6c{bottom:460.929467pt;}
.yb{bottom:461.875600pt;}
.y182{bottom:462.982667pt;}
.yf7{bottom:464.684133pt;}
.yba{bottom:466.284000pt;}
.y2e{bottom:467.884000pt;}
.y171{bottom:467.884133pt;}
.y89{bottom:472.684133pt;}
.y158{bottom:475.782667pt;}
.y132{bottom:475.884000pt;}
.y6b{bottom:476.929467pt;}
.y114{bottom:477.484000pt;}
.ya{bottom:477.875600pt;}
.y181{bottom:480.582667pt;}
.yb9{bottom:482.284000pt;}
.yf6{bottom:482.284133pt;}
.y2d{bottom:485.484000pt;}
.y170{bottom:485.484133pt;}
.y88{bottom:490.284133pt;}
.y157{bottom:493.382667pt;}
.y131{bottom:493.484000pt;}
.y9{bottom:493.875600pt;}
.y180{bottom:498.182667pt;}
.yb8{bottom:498.284000pt;}
.yf5{bottom:499.884133pt;}
.y2c{bottom:503.084000pt;}
.y16f{bottom:503.084133pt;}
.y87{bottom:507.884133pt;}
.y6a{bottom:510.529467pt;}
.y156{bottom:510.982667pt;}
.y130{bottom:511.084000pt;}
.y113{bottom:512.684133pt;}
.y17f{bottom:515.782667pt;}
.y2b{bottom:520.684000pt;}
.y197{bottom:520.684133pt;}
.y8{bottom:527.475600pt;}
.y69{bottom:528.129467pt;}
.y155{bottom:528.582667pt;}
.y12f{bottom:528.684000pt;}
.y112{bottom:528.684133pt;}
.yb7{bottom:531.884000pt;}
.y17e{bottom:533.382667pt;}
.yf4{bottom:535.084133pt;}
.y2a{bottom:538.284000pt;}
.yd1{bottom:538.284133pt;}
.y86{bottom:543.084000pt;}
.y111{bottom:544.684133pt;}
.y68{bottom:545.729467pt;}
.y154{bottom:546.182667pt;}
.y12e{bottom:546.284000pt;}
.yb6{bottom:549.484000pt;}
.yf3{bottom:552.684133pt;}
.y29{bottom:555.884000pt;}
.y196{bottom:555.884133pt;}
.y85{bottom:559.084000pt;}
.y110{bottom:560.684133pt;}
.y7{bottom:562.671600pt;}
.y67{bottom:563.329467pt;}
.y153{bottom:563.782667pt;}
.y17d{bottom:568.582667pt;}
.yf2{bottom:568.684133pt;}
.y28{bottom:573.484000pt;}
.y195{bottom:573.484133pt;}
.y84{bottom:575.084000pt;}
.y10f{bottom:576.684133pt;}
.y6{bottom:580.275600pt;}
.y66{bottom:580.929467pt;}
.y152{bottom:581.382667pt;}
.y12d{bottom:581.484000pt;}
.yb5{bottom:584.684000pt;}
.yf1{bottom:584.684133pt;}
.y17c{bottom:590.582667pt;}
.y27{bottom:591.084000pt;}
.y194{bottom:591.084133pt;}
.y10e{bottom:592.684133pt;}
.y65{bottom:598.529467pt;}
.y151{bottom:598.982667pt;}
.y12c{bottom:599.084000pt;}
.yf0{bottom:600.684133pt;}
.yb4{bottom:602.284000pt;}
.y26{bottom:608.684000pt;}
.y1bc{bottom:608.684133pt;}
.y5{bottom:612.274267pt;}
.y17b{bottom:612.582667pt;}
.y12b{bottom:615.084000pt;}
.y64{bottom:616.129467pt;}
.y150{bottom:616.582667pt;}
.yef{bottom:616.684133pt;}
.yb3{bottom:618.284000pt;}
.y48{bottom:626.284000pt;}
.y25{bottom:626.284133pt;}
.y4{bottom:628.275600pt;}
.y12a{bottom:631.084000pt;}
.yee{bottom:632.684133pt;}
.y63{bottom:633.729467pt;}
.y14f{bottom:634.182667pt;}
.yb2{bottom:634.284000pt;}
.y17a{bottom:634.582667pt;}
.y47{bottom:643.884000pt;}
.y24{bottom:643.884133pt;}
.y129{bottom:647.084000pt;}
.yed{bottom:648.684133pt;}
.yb1{bottom:650.284000pt;}
.y62{bottom:651.329467pt;}
.y14e{bottom:651.782667pt;}
.y179{bottom:656.582667pt;}
.y46{bottom:661.484000pt;}
.y23{bottom:661.484133pt;}
.y128{bottom:663.084000pt;}
.yec{bottom:664.684133pt;}
.yb0{bottom:666.284000pt;}
.y61{bottom:668.929467pt;}
.y178{bottom:678.582667pt;}
.y45{bottom:679.084000pt;}
.y22{bottom:679.084133pt;}
.yeb{bottom:680.684133pt;}
.y3{bottom:681.075600pt;}
.yaf{bottom:682.284000pt;}
.y14d{bottom:686.982667pt;}
.y83{bottom:696.684000pt;}
.y21{bottom:696.684133pt;}
.y177{bottom:700.582667pt;}
.y2{bottom:703.475600pt;}
.y60{bottom:704.129333pt;}
.y14c{bottom:704.582667pt;}
.y20{bottom:714.284000pt;}
.y5f{bottom:720.129333pt;}
.y14b{bottom:720.582667pt;}
.y176{bottom:722.582667pt;}
.y1f{bottom:731.884000pt;}
.y5e{bottom:736.129333pt;}
.y14a{bottom:736.582667pt;}
.y175{bottom:744.582667pt;}
.y44{bottom:749.484000pt;}
.y5d{bottom:752.129333pt;}
.y149{bottom:752.582667pt;}
.y174{bottom:766.582667pt;}
.y1e{bottom:767.084000pt;}
.y5c{bottom:768.129333pt;}
.y148{bottom:768.582667pt;}
.y1c{bottom:816.218000pt;}
.y1d{bottom:817.263200pt;}
.h9{height:41.664000pt;}
.h2{height:42.144000pt;}
.ha{height:44.960000pt;}
.hc{height:45.059947pt;}
.h8{height:46.293333pt;}
.h6{height:46.826667pt;}
.hf{height:49.456000pt;}
.hd{height:49.565941pt;}
.hb{height:49.566475pt;}
.h5{height:50.922667pt;}
.h4{height:51.509333pt;}
.h7{height:51.509867pt;}
.he{height:53.952000pt;}
.h3{height:65.557333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:74.516933pt;}
.x1{left:75.590533pt;}
.x2{left:81.945467pt;}
.x11{left:89.636933pt;}
.xd{left:90.708667pt;}
.xf{left:93.374933pt;}
.xe{left:97.688400pt;}
.x9{left:120.944800pt;}
.x13{left:122.790533pt;}
.x10{left:143.622133pt;}
.x3{left:166.001467pt;}
.x14{left:169.991867pt;}
.x4{left:237.019333pt;}
.xc{left:246.530933pt;}
.x5{left:259.415333pt;}
.xb{left:273.209600pt;}
.x8{left:294.236933pt;}
.xa{left:295.875733pt;}
.x7{left:456.187600pt;}
.x6{left:458.839600pt;}
}




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