
    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_b9096aa6090061dad7d5bf99.woff')format("woff");}.ff1{font-family:ff1;line-height:1.027000;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_017f07173536347bbe5e2561.woff')format("woff");}.ff2{font-family:ff2;line-height:1.037000;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_bb5fe0f4e78d2be7043ce611.woff')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_49edd0fa8cd2d6d10eccb5d4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_d719a68cb477e37739158c84.woff')format("woff");}.ff6{font-family:ff6;line-height:1.023000;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_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_8f6180a03b77353f590a990e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.862305;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.599856px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:46.800000px;}
.ls5a{letter-spacing:-4.824000px;}
.ls6b{letter-spacing:-4.020000px;}
.ls34{letter-spacing:-3.600000px;}
.ls22{letter-spacing:-2.448000px;}
.ls50{letter-spacing:-1.800000px;}
.ls71{letter-spacing:-1.740000px;}
.ls75{letter-spacing:-1.680000px;}
.ls44{letter-spacing:-1.656000px;}
.ls61{letter-spacing:-1.620000px;}
.ls51{letter-spacing:-1.584000px;}
.ls49{letter-spacing:-1.512000px;}
.ls70{letter-spacing:-1.500000px;}
.ls43{letter-spacing:-1.368000px;}
.ls42{letter-spacing:-1.296000px;}
.ls32{letter-spacing:-1.224000px;}
.ls69{letter-spacing:-1.140000px;}
.ls76{letter-spacing:-1.080000px;}
.ls38{letter-spacing:-1.008000px;}
.ls41{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.864000px;}
.ls16{letter-spacing:-0.576000px;}
.ls62{letter-spacing:-0.540000px;}
.ls7c{letter-spacing:-0.528000px;}
.ls21{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360000px;}
.ls78{letter-spacing:-0.330000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.168000px;}
.ls35{letter-spacing:-0.144000px;}
.ls7b{letter-spacing:-0.132000px;}
.lsd{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.084000px;}
.ls13{letter-spacing:-0.072000px;}
.ls7d{letter-spacing:-0.066000px;}
.ls67{letter-spacing:-0.060000px;}
.lsf{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.030000px;}
.ls1b{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.ls5f{letter-spacing:0.240000px;}
.ls39{letter-spacing:0.264000px;}
.ls3e{letter-spacing:0.273600px;}
.ls18{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.300000px;}
.ls3d{letter-spacing:0.302400px;}
.ls48{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.367200px;}
.ls45{letter-spacing:0.378000px;}
.ls7a{letter-spacing:0.396000px;}
.ls4{letter-spacing:0.453600px;}
.ls8{letter-spacing:0.460800px;}
.ls79{letter-spacing:0.462000px;}
.ls1a{letter-spacing:0.468000px;}
.ls3a{letter-spacing:0.475200px;}
.lsa{letter-spacing:0.479982px;}
.ls6{letter-spacing:0.482400px;}
.ls4f{letter-spacing:0.496800px;}
.ls7{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.532800px;}
.ls1d{letter-spacing:0.540000px;}
.ls28{letter-spacing:0.576000px;}
.ls68{letter-spacing:0.600000px;}
.ls37{letter-spacing:0.640800px;}
.ls58{letter-spacing:0.648000px;}
.ls3b{letter-spacing:0.756000px;}
.ls6f{letter-spacing:0.768000px;}
.ls64{letter-spacing:0.780000px;}
.ls1e{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.110000px;}
.ls2c{letter-spacing:1.152000px;}
.ls65{letter-spacing:1.194000px;}
.ls5e{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.560000px;}
.ls5b{letter-spacing:1.656000px;}
.ls30{letter-spacing:2.376000px;}
.ls63{letter-spacing:3.180000px;}
.lsc{letter-spacing:3.600000px;}
.ls26{letter-spacing:3.972000px;}
.ls74{letter-spacing:4.092000px;}
.ls6c{letter-spacing:4.380000px;}
.ls55{letter-spacing:4.608000px;}
.ls29{letter-spacing:4.752000px;}
.ls40{letter-spacing:4.802400px;}
.ls6a{letter-spacing:5.580000px;}
.ls33{letter-spacing:5.976000px;}
.ls66{letter-spacing:6.780000px;}
.ls2a{letter-spacing:7.200000px;}
.ls31{letter-spacing:8.352000px;}
.ls57{letter-spacing:9.576000px;}
.ls59{letter-spacing:10.800000px;}
.ls77{letter-spacing:11.580000px;}
.ls2b{letter-spacing:11.952000px;}
.ls2d{letter-spacing:13.176000px;}
.ls72{letter-spacing:13.980000px;}
.ls73{letter-spacing:14.784000px;}
.ls3c{letter-spacing:15.552000px;}
.ls47{letter-spacing:15.760800px;}
.ls6d{letter-spacing:16.380000px;}
.ls53{letter-spacing:16.776000px;}
.ls54{letter-spacing:18.000000px;}
.ls24{letter-spacing:20.376000px;}
.ls5d{letter-spacing:22.920000px;}
.ls5c{letter-spacing:23.760000px;}
.ls56{letter-spacing:25.200000px;}
.ls6e{letter-spacing:40.380000px;}
.ls4c{letter-spacing:160.776000px;}
.ls4b{letter-spacing:167.760000px;}
.ls46{letter-spacing:176.400000px;}
.ls4d{letter-spacing:280.800000px;}
.ls4e{letter-spacing:369.576000px;}
.ls23{letter-spacing:394.380000px;}
.ls2f{letter-spacing:469.800000px;}
.ls3{letter-spacing:688.380000px;}
.ls2{letter-spacing:783.180000px;}
.ls1{letter-spacing:889.980000px;}
.ls0{letter-spacing:1156.380000px;}
.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;}
}
.wse7{word-spacing:-60.000000px;}
.ws2{word-spacing:-21.084000px;}
.ws65{word-spacing:-20.376000px;}
.ws2b{word-spacing:-19.800000px;}
.ws4{word-spacing:-19.584000px;}
.ws60{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.224000px;}
.ws50{word-spacing:-19.152000px;}
.ws4e{word-spacing:-19.008000px;}
.ws4f{word-spacing:-18.936000px;}
.wsae{word-spacing:-18.792000px;}
.ws4d{word-spacing:-18.720000px;}
.ws7d{word-spacing:-18.648000px;}
.ws71{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.360000px;}
.wsad{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.ws94{word-spacing:-18.144000px;}
.ws72{word-spacing:-18.072000px;}
.ws106{word-spacing:-18.018000px;}
.ws9e{word-spacing:-18.000000px;}
.ws89{word-spacing:-17.952000px;}
.wsc{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws70{word-spacing:-17.712000px;}
.ws88{word-spacing:-17.640000px;}
.ws105{word-spacing:-17.094000px;}
.ws9{word-spacing:-16.920000px;}
.ws9c{word-spacing:-16.776000px;}
.wsca{word-spacing:-16.620000px;}
.ws8{word-spacing:-16.560000px;}
.ws104{word-spacing:-16.368000px;}
.ws2a{word-spacing:-16.140000px;}
.wsb6{word-spacing:-16.080000px;}
.ws29{word-spacing:-16.020000px;}
.wse4{word-spacing:-15.960000px;}
.wse8{word-spacing:-15.900000px;}
.ws28{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.720000px;}
.ws1{word-spacing:-15.660000px;}
.wsb7{word-spacing:-15.600000px;}
.ws7c{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.540000px;}
.wse5{word-spacing:-15.480000px;}
.wscb{word-spacing:-14.880000px;}
.wsb5{word-spacing:-14.700000px;}
.ws103{word-spacing:-14.640000px;}
.wse6{word-spacing:-14.520000px;}
.wscc{word-spacing:-14.400000px;}
.ws48{word-spacing:-13.176000px;}
.ws3f{word-spacing:-11.952000px;}
.ws10a{word-spacing:-11.580000px;}
.ws3{word-spacing:-11.214000px;}
.ws6{word-spacing:-11.130000px;}
.wsb1{word-spacing:-10.800000px;}
.wsab{word-spacing:-9.576000px;}
.ws6c{word-spacing:-8.352000px;}
.ws38{word-spacing:-7.200000px;}
.ws5a{word-spacing:-5.976000px;}
.wse1{word-spacing:-5.580000px;}
.ws37{word-spacing:-4.752000px;}
.wsb9{word-spacing:-4.536000px;}
.ws90{word-spacing:-4.392000px;}
.wsf7{word-spacing:-4.260000px;}
.ws25{word-spacing:-4.248000px;}
.wsa2{word-spacing:-3.960000px;}
.ws6d{word-spacing:-3.816000px;}
.ws47{word-spacing:-3.600000px;}
.wsdd{word-spacing:-3.540000px;}
.ws2f{word-spacing:-3.528000px;}
.ws78{word-spacing:-3.312000px;}
.wsdf{word-spacing:-3.180000px;}
.ws75{word-spacing:-3.168000px;}
.wscd{word-spacing:-3.060000px;}
.ws30{word-spacing:-3.024000px;}
.wsc3{word-spacing:-2.940000px;}
.ws4a{word-spacing:-2.664000px;}
.wsc1{word-spacing:-2.400000px;}
.ws68{word-spacing:-2.376000px;}
.wsc2{word-spacing:-2.340000px;}
.ws8a{word-spacing:-2.160000px;}
.ws80{word-spacing:-2.016000px;}
.ws9f{word-spacing:-1.944000px;}
.ws42{word-spacing:-1.872000px;}
.wsd7{word-spacing:-1.860000px;}
.ws10f{word-spacing:-1.740000px;}
.ws10e{word-spacing:-1.680000px;}
.wsbf{word-spacing:-1.560000px;}
.ws3d{word-spacing:-1.440000px;}
.wsdb{word-spacing:-1.200000px;}
.ws3a{word-spacing:-1.152000px;}
.wsda{word-spacing:-1.140000px;}
.wsa3{word-spacing:-1.008000px;}
.ws45{word-spacing:-0.936000px;}
.ws39{word-spacing:-0.792000px;}
.ws53{word-spacing:-0.720000px;}
.wsbd{word-spacing:-0.660000px;}
.ws3e{word-spacing:-0.648000px;}
.ws74{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.504000px;}
.ws1a{word-spacing:-0.480000px;}
.ws19{word-spacing:-0.468000px;}
.ws11{word-spacing:-0.420000px;}
.ws14{word-spacing:-0.360000px;}
.wse{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.288000px;}
.ws6f{word-spacing:-0.264000px;}
.wsbb{word-spacing:-0.240000px;}
.ws18{word-spacing:-0.216000px;}
.ws4b{word-spacing:-0.144000px;}
.wsc6{word-spacing:-0.120000px;}
.ws7e{word-spacing:-0.072000px;}
.ws1c{word-spacing:-0.060000px;}
.wsf{word-spacing:0.000000px;}
.ws10{word-spacing:0.060000px;}
.ws119{word-spacing:0.066000px;}
.ws13{word-spacing:0.072000px;}
.wsc7{word-spacing:0.120000px;}
.ws66{word-spacing:0.144000px;}
.ws5f{word-spacing:0.216000px;}
.ws115{word-spacing:0.240000px;}
.ws21{word-spacing:0.288000px;}
.wsbe{word-spacing:0.300000px;}
.ws2d{word-spacing:0.360000px;}
.ws11d{word-spacing:0.396000px;}
.ws2c{word-spacing:0.420000px;}
.ws15{word-spacing:0.432000px;}
.ws11c{word-spacing:0.462000px;}
.ws1d{word-spacing:0.480000px;}
.ws12{word-spacing:0.504000px;}
.ws11b{word-spacing:0.528000px;}
.wsde{word-spacing:0.540000px;}
.ws16{word-spacing:0.576000px;}
.wsbc{word-spacing:0.720000px;}
.ws116{word-spacing:0.840000px;}
.ws69{word-spacing:0.864000px;}
.ws114{word-spacing:0.900000px;}
.ws6a{word-spacing:0.936000px;}
.wse3{word-spacing:0.960000px;}
.ws67{word-spacing:1.008000px;}
.wsc4{word-spacing:1.080000px;}
.wsdc{word-spacing:1.200000px;}
.ws57{word-spacing:1.224000px;}
.ws113{word-spacing:1.260000px;}
.ws10d{word-spacing:1.320000px;}
.wsf8{word-spacing:1.500000px;}
.ws8e{word-spacing:1.512000px;}
.ws9d{word-spacing:1.584000px;}
.wsc0{word-spacing:1.620000px;}
.ws54{word-spacing:1.656000px;}
.ws109{word-spacing:1.680000px;}
.ws55{word-spacing:1.728000px;}
.wsea{word-spacing:1.740000px;}
.ws1f{word-spacing:2.088000px;}
.ws59{word-spacing:2.160000px;}
.wsf5{word-spacing:2.400000px;}
.ws1e{word-spacing:2.448000px;}
.wsd3{word-spacing:2.460000px;}
.ws58{word-spacing:2.808000px;}
.wsce{word-spacing:2.940000px;}
.ws20{word-spacing:2.952000px;}
.wscf{word-spacing:3.060000px;}
.ws44{word-spacing:3.384000px;}
.ws11a{word-spacing:3.564000px;}
.ws5c{word-spacing:3.600000px;}
.wsc5{word-spacing:3.660000px;}
.ws23{word-spacing:3.672000px;}
.ws6b{word-spacing:3.816000px;}
.ws7f{word-spacing:3.888000px;}
.wse2{word-spacing:4.020000px;}
.ws43{word-spacing:4.032000px;}
.ws24{word-spacing:4.104000px;}
.wseb{word-spacing:4.140000px;}
.ws26{word-spacing:4.176000px;}
.ws86{word-spacing:4.464000px;}
.ws97{word-spacing:4.536000px;}
.wsf9{word-spacing:4.800000px;}
.ws62{word-spacing:4.824000px;}
.wsec{word-spacing:4.860000px;}
.wse9{word-spacing:4.920000px;}
.ws8f{word-spacing:5.040000px;}
.ws98{word-spacing:5.112000px;}
.ws96{word-spacing:5.184000px;}
.ws63{word-spacing:5.256000px;}
.ws4c{word-spacing:5.328000px;}
.ws61{word-spacing:5.760000px;}
.ws22{word-spacing:6.048000px;}
.ws82{word-spacing:6.192000px;}
.ws7a{word-spacing:6.264000px;}
.ws46{word-spacing:6.408000px;}
.wsed{word-spacing:6.540000px;}
.ws27{word-spacing:6.552000px;}
.ws107{word-spacing:6.660000px;}
.ws108{word-spacing:6.960000px;}
.ws33{word-spacing:6.984000px;}
.wse0{word-spacing:7.260000px;}
.ws77{word-spacing:7.272000px;}
.wsa5{word-spacing:7.416000px;}
.ws34{word-spacing:7.776000px;}
.ws40{word-spacing:8.136000px;}
.ws64{word-spacing:8.424000px;}
.ws102{word-spacing:8.460000px;}
.ws5e{word-spacing:8.496000px;}
.ws41{word-spacing:8.784000px;}
.ws5b{word-spacing:8.928000px;}
.wsf0{word-spacing:8.940000px;}
.wsef{word-spacing:9.480000px;}
.wsee{word-spacing:9.600000px;}
.ws7b{word-spacing:9.648000px;}
.wsf2{word-spacing:9.660000px;}
.wsb8{word-spacing:10.008000px;}
.wsd6{word-spacing:10.140000px;}
.ws6e{word-spacing:10.152000px;}
.ws9b{word-spacing:10.512000px;}
.ws9a{word-spacing:10.584000px;}
.wsf1{word-spacing:10.800000px;}
.ws87{word-spacing:10.872000px;}
.wsf6{word-spacing:11.340000px;}
.ws5d{word-spacing:11.376000px;}
.wsd2{word-spacing:11.520000px;}
.wsb4{word-spacing:11.664000px;}
.ws3b{word-spacing:11.736000px;}
.ws52{word-spacing:12.024000px;}
.ws51{word-spacing:12.384000px;}
.ws3c{word-spacing:12.528000px;}
.wsd8{word-spacing:12.540000px;}
.wsd9{word-spacing:12.900000px;}
.ws76{word-spacing:12.960000px;}
.ws10c{word-spacing:13.200000px;}
.ws99{word-spacing:13.248000px;}
.ws10b{word-spacing:13.260000px;}
.wsa1{word-spacing:13.392000px;}
.ws111{word-spacing:13.740000px;}
.wsaf{word-spacing:13.752000px;}
.wsf4{word-spacing:13.980000px;}
.ws118{word-spacing:14.322000px;}
.ws112{word-spacing:14.400000px;}
.wsf3{word-spacing:14.460000px;}
.ws2e{word-spacing:14.472000px;}
.wsb0{word-spacing:14.616000px;}
.ws117{word-spacing:14.850000px;}
.ws93{word-spacing:14.904000px;}
.wsd5{word-spacing:14.940000px;}
.wsac{word-spacing:15.336000px;}
.ws35{word-spacing:15.624000px;}
.wsaa{word-spacing:15.840000px;}
.ws49{word-spacing:15.984000px;}
.wsb3{word-spacing:16.056000px;}
.ws36{word-spacing:16.128000px;}
.ws73{word-spacing:16.488000px;}
.ws83{word-spacing:16.560000px;}
.wsfc{word-spacing:16.800000px;}
.wsfd{word-spacing:17.760000px;}
.ws8b{word-spacing:18.432000px;}
.wsa8{word-spacing:18.576000px;}
.ws32{word-spacing:19.224000px;}
.wsa7{word-spacing:19.440000px;}
.ws81{word-spacing:19.728000px;}
.wsba{word-spacing:20.160000px;}
.wsa0{word-spacing:20.808000px;}
.ws84{word-spacing:20.952000px;}
.ws8c{word-spacing:21.312000px;}
.ws8d{word-spacing:21.384000px;}
.wsd4{word-spacing:21.660000px;}
.ws56{word-spacing:22.032000px;}
.ws31{word-spacing:23.328000px;}
.ws91{word-spacing:24.912000px;}
.wsa9{word-spacing:24.984000px;}
.ws92{word-spacing:25.272000px;}
.wsa4{word-spacing:26.784000px;}
.ws95{word-spacing:29.016000px;}
.wsa6{word-spacing:30.024000px;}
.ws110{word-spacing:30.540000px;}
.wsd0{word-spacing:32.940000px;}
.wsd1{word-spacing:33.480000px;}
.ws85{word-spacing:37.224000px;}
.wsfa{word-spacing:37.260000px;}
.wsfb{word-spacing:38.460000px;}
.wsff{word-spacing:40.320000px;}
.ws100{word-spacing:40.800000px;}
.wsfe{word-spacing:40.860000px;}
.ws101{word-spacing:40.920000px;}
.wsc8{word-spacing:97.740000px;}
.wsc9{word-spacing:98.460000px;}
.wsb2{word-spacing:2484.216000px;}
._24{margin-left:-2484.228000px;}
._19{margin-left:-20.952000px;}
._1a{margin-left:-19.749600px;}
._1c{margin-left:-18.482400px;}
._20{margin-left:-16.836000px;}
._1f{margin-left:-15.624000px;}
._26{margin-left:-14.587200px;}
._18{margin-left:-13.586400px;}
._16{margin-left:-12.045600px;}
._17{margin-left:-10.954800px;}
._23{margin-left:-9.842400px;}
._1d{margin-left:-8.640000px;}
._13{margin-left:-7.509600px;}
._12{margin-left:-5.926818px;}
._11{margin-left:-4.917600px;}
._7{margin-left:-3.137982px;}
._6{margin-left:-2.036400px;}
._5{margin-left:-1.020000px;}
._0{width:1.140000px;}
._2{width:2.580000px;}
._8{width:3.584400px;}
._e{width:5.162400px;}
._d{width:6.544800px;}
._14{width:7.654818px;}
._15{width:8.835636px;}
._1e{width:10.292148px;}
._a{width:12.272400px;}
._9{width:13.680000px;}
._c{width:15.139200px;}
._21{width:16.303200px;}
._b{width:17.616000px;}
._28{width:19.436400px;}
._1b{width:20.606400px;}
._10{width:24.093600px;}
._25{width:25.821600px;}
._22{width:29.180400px;}
._27{width:33.769200px;}
._f{width:418.500000px;}
._3{width:643.980000px;}
._4{width:731.580000px;}
._1{width:880.620000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(58,59,67);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:0.600000px;}
.y88{bottom:1.200000px;}
.y84{bottom:3.000000px;}
.y82{bottom:3.300000px;}
.y8a{bottom:5.100000px;}
.y86{bottom:5.101500px;}
.y8c{bottom:28.200000px;}
.y127{bottom:51.900000px;}
.y34{bottom:67.800000px;}
.y4{bottom:67.800002px;}
.y14e{bottom:97.206000px;}
.y181{bottom:97.212000px;}
.y16d{bottom:97.224000px;}
.yd4{bottom:102.624000px;}
.yb3{bottom:105.012000px;}
.y63{bottom:105.036000px;}
.y30{bottom:111.017991px;}
.y80{bottom:113.106000px;}
.y13f{bottom:118.248000px;}
.y14d{bottom:120.606000px;}
.y180{bottom:120.612000px;}
.y16c{bottom:120.624000px;}
.y199{bottom:123.600000px;}
.yd3{bottom:126.024000px;}
.y120{bottom:126.042000px;}
.y1ce{bottom:127.200000px;}
.yb2{bottom:128.106000px;}
.y62{bottom:128.130000px;}
.y2f{bottom:134.417991px;}
.y7f{bottom:136.200000px;}
.y13e{bottom:141.648000px;}
.y198{bottom:142.800000px;}
.y14c{bottom:143.700000px;}
.y17f{bottom:143.706000px;}
.y16b{bottom:143.718000px;}
.y1cd{bottom:146.700000px;}
.yd2{bottom:149.424000px;}
.y11f{bottom:149.442000px;}
.yb1{bottom:151.506000px;}
.y61{bottom:151.530000px;}
.y2e{bottom:157.511991px;}
.y7e{bottom:159.600000px;}
.y197{bottom:162.300000px;}
.y13d{bottom:164.742000px;}
.y1cc{bottom:166.200000px;}
.y17e{bottom:167.106000px;}
.y14b{bottom:167.112000px;}
.y16a{bottom:167.118000px;}
.yd1{bottom:172.518000px;}
.y11e{bottom:172.536000px;}
.yb0{bottom:174.906000px;}
.y60{bottom:174.930000px;}
.y7d{bottom:179.700000px;}
.y2d{bottom:180.911991px;}
.y196{bottom:181.800000px;}
.y8b{bottom:185.700000px;}
.y13c{bottom:188.142000px;}
.y17d{bottom:190.200000px;}
.y14a{bottom:190.206000px;}
.y169{bottom:190.212000px;}
.y8d{bottom:190.800000px;}
.yd0{bottom:195.918000px;}
.y11d{bottom:195.936000px;}
.yaf{bottom:198.000000px;}
.y5f{bottom:198.024000px;}
.y195{bottom:201.000000px;}
.y2c{bottom:204.311991px;}
.y1cb{bottom:204.900000px;}
.y13b{bottom:211.542000px;}
.y17c{bottom:211.800000px;}
.y149{bottom:213.606000px;}
.y168{bottom:213.612000px;}
.ycf{bottom:219.012000px;}
.y11c{bottom:219.030000px;}
.yf9{bottom:219.600000px;}
.y194{bottom:220.500000px;}
.yae{bottom:221.400000px;}
.y5e{bottom:221.424000px;}
.y1ca{bottom:224.400000px;}
.y2b{bottom:227.405991px;}
.y17b{bottom:229.236000px;}
.y89{bottom:232.200000px;}
.y13a{bottom:234.636000px;}
.y1de{bottom:235.200000px;}
.y148{bottom:237.006000px;}
.y167{bottom:237.012000px;}
.yf8{bottom:237.036000px;}
.y193{bottom:240.000000px;}
.yce{bottom:242.412000px;}
.y11b{bottom:242.430000px;}
.yad{bottom:243.000000px;}
.y1c9{bottom:243.900000px;}
.y5d{bottom:244.824000px;}
.y2a{bottom:250.805991px;}
.y17a{bottom:252.636000px;}
.y1dd{bottom:254.400000px;}
.y87{bottom:255.300000px;}
.y139{bottom:258.036000px;}
.y192{bottom:259.200000px;}
.y147{bottom:260.100000px;}
.y166{bottom:260.106000px;}
.yac{bottom:260.112000px;}
.yf7{bottom:260.130000px;}
.y1c8{bottom:263.100000px;}
.ycd{bottom:265.812000px;}
.y11a{bottom:265.830000px;}
.y5c{bottom:267.918000px;}
.y1dc{bottom:273.900000px;}
.y29{bottom:274.205991px;}
.y179{bottom:275.730000px;}
.y191{bottom:278.700000px;}
.y138{bottom:281.436000px;}
.y1c7{bottom:282.600000px;}
.y165{bottom:283.506000px;}
.yab{bottom:283.512000px;}
.yf6{bottom:283.530000px;}
.ycc{bottom:288.906000px;}
.y119{bottom:288.924000px;}
.y5b{bottom:291.318000px;}
.y1db{bottom:293.700000px;}
.y28{bottom:297.299991px;}
.y190{bottom:298.200000px;}
.y178{bottom:299.130000px;}
.y1c6{bottom:302.100000px;}
.y137{bottom:304.530000px;}
.y164{bottom:306.906000px;}
.yaa{bottom:306.912000px;}
.yf5{bottom:306.930000px;}
.ycb{bottom:312.306000px;}
.y118{bottom:312.324000px;}
.y1da{bottom:313.800000px;}
.y5a{bottom:314.718000px;}
.y18f{bottom:317.400000px;}
.y27{bottom:320.699991px;}
.y1c5{bottom:321.300000px;}
.y177{bottom:322.224000px;}
.y136{bottom:327.930000px;}
.y163{bottom:330.000000px;}
.ya9{bottom:330.006000px;}
.yf4{bottom:330.024000px;}
.y1d9{bottom:330.592500px;}
.yca{bottom:335.706000px;}
.y117{bottom:335.724000px;}
.y18e{bottom:336.900000px;}
.y59{bottom:337.812000px;}
.y1c4{bottom:340.800000px;}
.y26{bottom:344.099991px;}
.y176{bottom:345.624000px;}
.y135{bottom:351.024000px;}
.y1d8{bottom:351.894000px;}
.y162{bottom:353.400000px;}
.ya8{bottom:353.406000px;}
.yf3{bottom:353.424000px;}
.y18d{bottom:356.400000px;}
.yc9{bottom:358.800000px;}
.y116{bottom:358.818000px;}
.y1c3{bottom:360.300000px;}
.y58{bottom:361.212000px;}
.y25{bottom:363.900009px;}
.y175{bottom:369.024000px;}
.y1d7{bottom:373.195500px;}
.y134{bottom:374.424000px;}
.y24{bottom:375.000000px;}
.y18c{bottom:375.900000px;}
.y161{bottom:376.800000px;}
.ya7{bottom:376.806000px;}
.yf2{bottom:376.824000px;}
.y1c2{bottom:379.800000px;}
.yc8{bottom:382.200000px;}
.y115{bottom:382.218000px;}
.y57{bottom:384.306000px;}
.y174{bottom:392.118000px;}
.y18b{bottom:394.200000px;}
.y23{bottom:395.099991px;}
.y85{bottom:396.298500px;}
.y133{bottom:397.824000px;}
.y160{bottom:398.100000px;}
.y1c1{bottom:399.000000px;}
.y1d6{bottom:399.298500px;}
.ya6{bottom:399.900000px;}
.yf1{bottom:399.918000px;}
.yc7{bottom:403.800000px;}
.y114{bottom:405.618000px;}
.y22{bottom:406.224000px;}
.y56{bottom:407.706000px;}
.y15f{bottom:415.518000px;}
.y1c0{bottom:418.500000px;}
.y81{bottom:419.700000px;}
.yc6{bottom:420.918000px;}
.ya5{bottom:423.300000px;}
.yf0{bottom:423.318000px;}
.y18a{bottom:423.600000px;}
.y113{bottom:428.712000px;}
.y21{bottom:429.318000px;}
.y55{bottom:431.106000px;}
.y1bf{bottom:438.000000px;}
.y15e{bottom:438.918000px;}
.y1d5{bottom:442.198500px;}
.yc5{bottom:444.318000px;}
.ya4{bottom:444.900000px;}
.yef{bottom:446.718000px;}
.y112{bottom:452.112000px;}
.y20{bottom:452.718000px;}
.y54{bottom:454.200000px;}
.y1be{bottom:457.200000px;}
.y189{bottom:462.006000px;}
.y15d{bottom:462.012000px;}
.y146{bottom:462.030000px;}
.ya3{bottom:462.042000px;}
.y1d4{bottom:463.500000px;}
.yc4{bottom:467.718000px;}
.yee{bottom:469.812000px;}
.y111{bottom:475.512000px;}
.y1f{bottom:475.812000px;}
.y1bd{bottom:476.700000px;}
.y53{bottom:477.636000px;}
.y1d3{bottom:483.600000px;}
.y188{bottom:485.406000px;}
.y15c{bottom:485.412000px;}
.y145{bottom:485.430000px;}
.ya2{bottom:485.442000px;}
.yc3{bottom:490.812000px;}
.yed{bottom:493.212000px;}
.y1bc{bottom:496.200000px;}
.y110{bottom:498.606000px;}
.y1e{bottom:499.212000px;}
.y1d2{bottom:500.100000px;}
.y52{bottom:501.036000px;}
.y187{bottom:508.806000px;}
.y15b{bottom:508.812000px;}
.y144{bottom:508.830000px;}
.ya1{bottom:508.842000px;}
.yc2{bottom:514.212000px;}
.y1bb{bottom:515.400000px;}
.yec{bottom:516.306000px;}
.y1d1{bottom:519.300000px;}
.y10f{bottom:522.006000px;}
.y1d{bottom:522.612000px;}
.y51{bottom:524.130000px;}
.y186{bottom:531.900000px;}
.y15a{bottom:531.906000px;}
.y143{bottom:531.924000px;}
.ya0{bottom:531.936000px;}
.y1ba{bottom:534.900000px;}
.yc1{bottom:537.612000px;}
.y1d0{bottom:538.800000px;}
.yeb{bottom:539.706000px;}
.y10e{bottom:545.100000px;}
.y1c{bottom:545.706000px;}
.y50{bottom:547.530000px;}
.y1b9{bottom:554.400000px;}
.y185{bottom:555.300000px;}
.y159{bottom:555.306000px;}
.y142{bottom:555.324000px;}
.y9f{bottom:555.336000px;}
.y1cf{bottom:557.400000px;}
.yc0{bottom:560.706000px;}
.yea{bottom:563.106000px;}
.y7c{bottom:567.600000px;}
.y10d{bottom:568.500000px;}
.y1b{bottom:569.106000px;}
.y4f{bottom:570.930000px;}
.y1b8{bottom:573.900000px;}
.y184{bottom:576.600000px;}
.y158{bottom:578.400000px;}
.y7b{bottom:578.418000px;}
.y9e{bottom:578.430000px;}
.ybf{bottom:584.106000px;}
.ye9{bottom:586.200000px;}
.y10c{bottom:591.900000px;}
.y1a{bottom:592.506000px;}
.y1b7{bottom:593.100000px;}
.y4e{bottom:594.024000px;}
.y183{bottom:594.048000px;}
.y157{bottom:601.800000px;}
.y7a{bottom:601.818000px;}
.y9d{bottom:601.830000px;}
.ybe{bottom:607.506000px;}
.ye8{bottom:609.600000px;}
.y1b6{bottom:612.600000px;}
.y10b{bottom:613.200000px;}
.y19{bottom:615.600000px;}
.y4d{bottom:617.424000px;}
.y182{bottom:617.448000px;}
.y156{bottom:623.400000px;}
.y173{bottom:625.200000px;}
.y79{bottom:625.218000px;}
.y9c{bottom:625.230000px;}
.ybd{bottom:630.600000px;}
.y10a{bottom:630.618000px;}
.y1b5{bottom:632.100000px;}
.ye7{bottom:633.000000px;}
.y18{bottom:639.000000px;}
.y4c{bottom:640.824000px;}
.y155{bottom:640.848000px;}
.y172{bottom:648.306000px;}
.y78{bottom:648.312000px;}
.y9b{bottom:648.324000px;}
.ybc{bottom:650.700000px;}
.y1b4{bottom:651.300000px;}
.y132{bottom:652.200000px;}
.y109{bottom:654.018000px;}
.ye6{bottom:654.300000px;}
.ybb{bottom:657.300000px;}
.y17{bottom:660.599991px;}
.y4b{bottom:663.918000px;}
.y154{bottom:663.942000px;}
.y131{bottom:669.612000px;}
.y1b3{bottom:670.800000px;}
.y171{bottom:671.706000px;}
.y77{bottom:671.712000px;}
.y9a{bottom:671.724000px;}
.ye5{bottom:671.730000px;}
.y16{bottom:676.800018px;}
.y108{bottom:677.112000px;}
.yba{bottom:680.700000px;}
.y4a{bottom:687.318000px;}
.y153{bottom:687.342000px;}
.y1b2{bottom:690.300000px;}
.y130{bottom:692.706000px;}
.y170{bottom:695.106000px;}
.y76{bottom:695.112000px;}
.y99{bottom:695.124000px;}
.ye4{bottom:695.130000px;}
.y15{bottom:696.300018px;}
.y107{bottom:700.512000px;}
.yb9{bottom:703.800000px;}
.y1b1{bottom:709.500000px;}
.y49{bottom:710.412000px;}
.y152{bottom:710.436000px;}
.y14{bottom:714.900009px;}
.y12f{bottom:716.106000px;}
.y16f{bottom:718.200000px;}
.y75{bottom:718.206000px;}
.y98{bottom:718.218000px;}
.ye3{bottom:718.224000px;}
.y106{bottom:723.912000px;}
.yb8{bottom:727.200000px;}
.y1b0{bottom:729.000000px;}
.y13{bottom:731.400009px;}
.y48{bottom:733.812000px;}
.y151{bottom:733.836000px;}
.y12e{bottom:739.200000px;}
.y16e{bottom:741.600000px;}
.y74{bottom:741.606000px;}
.y97{bottom:741.618000px;}
.ye2{bottom:741.624000px;}
.y105{bottom:747.006000px;}
.y1af{bottom:748.500000px;}
.yb7{bottom:750.600000px;}
.y47{bottom:757.212000px;}
.y150{bottom:757.236000px;}
.y12{bottom:757.500000px;}
.y12d{bottom:759.300000px;}
.y73{bottom:765.006000px;}
.y96{bottom:765.018000px;}
.ye1{bottom:765.024000px;}
.y1ae{bottom:768.000000px;}
.y104{bottom:770.406000px;}
.y12c{bottom:771.000000px;}
.yb6{bottom:774.600000px;}
.y11{bottom:778.500000px;}
.y46{bottom:780.306000px;}
.y14f{bottom:780.330000px;}
.y1ad{bottom:787.200000px;}
.y72{bottom:788.100000px;}
.y95{bottom:788.112000px;}
.ye0{bottom:788.118000px;}
.y12b{bottom:789.300000px;}
.y103{bottom:793.806000px;}
.y10{bottom:799.500000px;}
.y45{bottom:803.706000px;}
.yb5{bottom:803.730000px;}
.y1ac{bottom:806.700000px;}
.y71{bottom:811.500000px;}
.y94{bottom:811.512000px;}
.ydf{bottom:811.518000px;}
.y126{bottom:813.300000px;}
.yf{bottom:814.506042px;}
.y102{bottom:816.900000px;}
.y1ab{bottom:826.200000px;}
.y44{bottom:827.106000px;}
.yb4{bottom:827.130000px;}
.y129{bottom:830.100000px;}
.y70{bottom:833.100000px;}
.y141{bottom:834.900000px;}
.y93{bottom:834.912000px;}
.yde{bottom:834.918000px;}
.y101{bottom:837.000000px;}
.ye{bottom:837.600036px;}
.y128{bottom:841.800000px;}
.y125{bottom:841.812000px;}
.y100{bottom:843.600000px;}
.y1aa{bottom:845.400000px;}
.y43{bottom:850.200000px;}
.y6f{bottom:850.224000px;}
.y12a{bottom:853.500000px;}
.y140{bottom:856.200000px;}
.y92{bottom:858.006000px;}
.ydd{bottom:858.012000px;}
.yd{bottom:861.000000px;}
.y1a9{bottom:864.900000px;}
.yff{bottom:872.100000px;}
.y42{bottom:873.600000px;}
.y6e{bottom:873.624000px;}
.y91{bottom:881.406000px;}
.ydc{bottom:881.412000px;}
.y1a8{bottom:884.400000px;}
.yc{bottom:884.406006px;}
.y124{bottom:889.206000px;}
.yfe{bottom:895.500000px;}
.y41{bottom:897.018000px;}
.y6d{bottom:897.024000px;}
.y1a7{bottom:903.600000px;}
.y90{bottom:904.500000px;}
.ydb{bottom:904.506000px;}
.yb{bottom:907.500000px;}
.y123{bottom:912.300000px;}
.yfd{bottom:913.500000px;}
.y40{bottom:920.112000px;}
.y6c{bottom:920.118000px;}
.y1a6{bottom:923.100000px;}
.y8f{bottom:927.900000px;}
.yda{bottom:927.906000px;}
.ya{bottom:930.899964px;}
.y122{bottom:935.700000px;}
.yfc{bottom:936.900000px;}
.y1a5{bottom:942.600000px;}
.y3f{bottom:943.512000px;}
.y6b{bottom:943.518000px;}
.y8e{bottom:949.500000px;}
.yd9{bottom:951.306000px;}
.y9{bottom:954.300018px;}
.y121{bottom:955.800000px;}
.yfb{bottom:960.000000px;}
.y1a4{bottom:962.100000px;}
.y3e{bottom:966.606000px;}
.y6a{bottom:966.612000px;}
.yd8{bottom:974.400000px;}
.y8{bottom:977.993958px;}
.y1a3{bottom:981.300000px;}
.yfa{bottom:984.300000px;}
.y3d{bottom:990.006000px;}
.y69{bottom:990.012000px;}
.yd7{bottom:997.800000px;}
.y1a2{bottom:1000.800000px;}
.y7{bottom:1005.294018px;}
.y3c{bottom:1013.406000px;}
.y68{bottom:1013.412000px;}
.y1a1{bottom:1020.300000px;}
.yd6{bottom:1021.200000px;}
.y6{bottom:1032.300018px;}
.y3b{bottom:1036.500000px;}
.y67{bottom:1036.506000px;}
.y1a0{bottom:1039.500000px;}
.yd5{bottom:1042.500000px;}
.y19f{bottom:1059.000000px;}
.y5{bottom:1059.600036px;}
.y3a{bottom:1059.900000px;}
.y66{bottom:1059.906000px;}
.y19e{bottom:1078.500000px;}
.y39{bottom:1080.600000px;}
.y65{bottom:1083.306000px;}
.y31{bottom:1086.424950px;}
.y38{bottom:1095.000000px;}
.y19d{bottom:1097.700000px;}
.y64{bottom:1106.400000px;}
.y32{bottom:1110.544950px;}
.y37{bottom:1115.400000px;}
.y19c{bottom:1117.200000px;}
.y36{bottom:1129.800000px;}
.y19b{bottom:1136.700000px;}
.y3{bottom:1144.800018px;}
.y35{bottom:1153.200000px;}
.y19a{bottom:1156.200000px;}
.y2{bottom:1164.300018px;}
.y33{bottom:1183.500000px;}
.y1{bottom:1183.800018px;}
.ha{height:20.880000px;}
.h12{height:23.100000px;}
.h14{height:23.400000px;}
.h10{height:23.401500px;}
.h7{height:29.052000px;}
.hc{height:31.320000px;}
.h9{height:41.760000px;}
.h13{height:46.500000px;}
.h2{height:48.420000px;}
.h8{height:52.200000px;}
.h19{height:57.420000px;}
.hb{height:58.104000px;}
.he{height:58.857422px;}
.h18{height:62.578125px;}
.h6{height:62.640000px;}
.h5{height:67.788000px;}
.h15{height:69.900000px;}
.h3{height:70.664062px;}
.hd{height:72.936000px;}
.h4{height:73.080000px;}
.h17{height:83.472000px;}
.h16{height:104.904000px;}
.h11{height:141.000000px;}
.hf{height:144.900000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wd{width:86.400000px;}
.wc{width:92.100000px;}
.wf{width:130.200000px;}
.w10{width:130.500000px;}
.w3{width:175.198500px;}
.w2{width:175.200000px;}
.w4{width:175.500000px;}
.w5{width:175.801500px;}
.w9{width:177.300000px;}
.wa{width:177.301500px;}
.w7{width:228.900000px;}
.we{width:232.500000px;}
.w6{width:236.400000px;}
.wb{width:435.900000px;}
.w8{width:701.700000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:8.100000px;}
.x32{left:24.300000px;}
.x2e{left:25.500000px;}
.x33{left:29.400000px;}
.x2a{left:36.000000px;}
.x20{left:43.800000px;}
.x3e{left:48.300000px;}
.x18{left:53.400000px;}
.x28{left:56.700000px;}
.x2b{left:61.200000px;}
.x19{left:63.600000px;}
.x24{left:66.300000px;}
.x29{left:72.000000px;}
.x26{left:74.400000px;}
.x1f{left:80.400000px;}
.x1e{left:84.000000px;}
.x1{left:91.500000px;}
.x34{left:99.600000px;}
.x3{left:101.391003px;}
.x23{left:104.460000px;}
.x41{left:112.800000px;}
.xf{left:113.977053px;}
.x43{left:118.500000px;}
.xb{left:127.200005px;}
.x10{left:144.600000px;}
.x14{left:153.600000px;}
.x12{left:155.400000px;}
.x16{left:161.100000px;}
.x2c{left:167.100000px;}
.xa{left:168.899997px;}
.x42{left:172.828500px;}
.x1d{left:183.600000px;}
.x37{left:185.406000px;}
.x1a{left:189.000000px;}
.x8{left:214.494003px;}
.x21{left:223.500000px;}
.x9{left:225.005997px;}
.xd{left:237.299995px;}
.x5{left:261.000000px;}
.x7{left:262.230011px;}
.x13{left:266.700000px;}
.x25{left:269.100000px;}
.x6{left:270.299996px;}
.xc{left:274.500000px;}
.x38{left:324.000000px;}
.x1b{left:327.900000px;}
.x39{left:335.400000px;}
.x36{left:340.206000px;}
.xe{left:374.099991px;}
.x4{left:398.982003px;}
.x3d{left:410.400000px;}
.x3a{left:419.400000px;}
.x15{left:441.900000px;}
.x2{left:446.400009px;}
.x11{left:473.100000px;}
.x2d{left:527.400000px;}
.x3f{left:540.600000px;}
.x35{left:551.706000px;}
.x1c{left:564.300000px;}
.x17{left:617.400000px;}
.x2f{left:619.500000px;}
.x27{left:623.700000px;}
.x40{left:671.100000px;}
.x3b{left:688.212000px;}
.x30{left:711.600000px;}
.x3c{left:728.712000px;}
.x22{left:746.754000px;}
@media print{
.v2{vertical-align:-19.199872pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:41.600000pt;}
.ls5a{letter-spacing:-4.288000pt;}
.ls6b{letter-spacing:-3.573333pt;}
.ls34{letter-spacing:-3.200000pt;}
.ls22{letter-spacing:-2.176000pt;}
.ls50{letter-spacing:-1.600000pt;}
.ls71{letter-spacing:-1.546667pt;}
.ls75{letter-spacing:-1.493333pt;}
.ls44{letter-spacing:-1.472000pt;}
.ls61{letter-spacing:-1.440000pt;}
.ls51{letter-spacing:-1.408000pt;}
.ls49{letter-spacing:-1.344000pt;}
.ls70{letter-spacing:-1.333333pt;}
.ls43{letter-spacing:-1.216000pt;}
.ls42{letter-spacing:-1.152000pt;}
.ls32{letter-spacing:-1.088000pt;}
.ls69{letter-spacing:-1.013333pt;}
.ls76{letter-spacing:-0.960000pt;}
.ls38{letter-spacing:-0.896000pt;}
.ls41{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls62{letter-spacing:-0.480000pt;}
.ls7c{letter-spacing:-0.469333pt;}
.ls21{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls78{letter-spacing:-0.293333pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.149333pt;}
.ls35{letter-spacing:-0.128000pt;}
.ls7b{letter-spacing:-0.117333pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.074667pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls7d{letter-spacing:-0.058667pt;}
.ls67{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.026667pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls5f{letter-spacing:0.213333pt;}
.ls39{letter-spacing:0.234667pt;}
.ls3e{letter-spacing:0.243200pt;}
.ls18{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls3d{letter-spacing:0.268800pt;}
.ls48{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.326400pt;}
.ls45{letter-spacing:0.336000pt;}
.ls7a{letter-spacing:0.352000pt;}
.ls4{letter-spacing:0.403200pt;}
.ls8{letter-spacing:0.409600pt;}
.ls79{letter-spacing:0.410667pt;}
.ls1a{letter-spacing:0.416000pt;}
.ls3a{letter-spacing:0.422400pt;}
.lsa{letter-spacing:0.426651pt;}
.ls6{letter-spacing:0.428800pt;}
.ls4f{letter-spacing:0.441600pt;}
.ls7{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.473600pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls28{letter-spacing:0.512000pt;}
.ls68{letter-spacing:0.533333pt;}
.ls37{letter-spacing:0.569600pt;}
.ls58{letter-spacing:0.576000pt;}
.ls3b{letter-spacing:0.672000pt;}
.ls6f{letter-spacing:0.682667pt;}
.ls64{letter-spacing:0.693333pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.986667pt;}
.ls2c{letter-spacing:1.024000pt;}
.ls65{letter-spacing:1.061333pt;}
.ls5e{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.386667pt;}
.ls5b{letter-spacing:1.472000pt;}
.ls30{letter-spacing:2.112000pt;}
.ls63{letter-spacing:2.826667pt;}
.lsc{letter-spacing:3.200000pt;}
.ls26{letter-spacing:3.530667pt;}
.ls74{letter-spacing:3.637333pt;}
.ls6c{letter-spacing:3.893333pt;}
.ls55{letter-spacing:4.096000pt;}
.ls29{letter-spacing:4.224000pt;}
.ls40{letter-spacing:4.268800pt;}
.ls6a{letter-spacing:4.960000pt;}
.ls33{letter-spacing:5.312000pt;}
.ls66{letter-spacing:6.026667pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls31{letter-spacing:7.424000pt;}
.ls57{letter-spacing:8.512000pt;}
.ls59{letter-spacing:9.600000pt;}
.ls77{letter-spacing:10.293333pt;}
.ls2b{letter-spacing:10.624000pt;}
.ls2d{letter-spacing:11.712000pt;}
.ls72{letter-spacing:12.426667pt;}
.ls73{letter-spacing:13.141333pt;}
.ls3c{letter-spacing:13.824000pt;}
.ls47{letter-spacing:14.009600pt;}
.ls6d{letter-spacing:14.560000pt;}
.ls53{letter-spacing:14.912000pt;}
.ls54{letter-spacing:16.000000pt;}
.ls24{letter-spacing:18.112000pt;}
.ls5d{letter-spacing:20.373333pt;}
.ls5c{letter-spacing:21.120000pt;}
.ls56{letter-spacing:22.400000pt;}
.ls6e{letter-spacing:35.893333pt;}
.ls4c{letter-spacing:142.912000pt;}
.ls4b{letter-spacing:149.120000pt;}
.ls46{letter-spacing:156.800000pt;}
.ls4d{letter-spacing:249.600000pt;}
.ls4e{letter-spacing:328.512000pt;}
.ls23{letter-spacing:350.560000pt;}
.ls2f{letter-spacing:417.600000pt;}
.ls3{letter-spacing:611.893333pt;}
.ls2{letter-spacing:696.160000pt;}
.ls1{letter-spacing:791.093333pt;}
.ls0{letter-spacing:1027.893333pt;}
.wse7{word-spacing:-53.333333pt;}
.ws2{word-spacing:-18.741333pt;}
.ws65{word-spacing:-18.112000pt;}
.ws2b{word-spacing:-17.600000pt;}
.ws4{word-spacing:-17.408000pt;}
.ws60{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.088000pt;}
.ws50{word-spacing:-17.024000pt;}
.ws4e{word-spacing:-16.896000pt;}
.ws4f{word-spacing:-16.832000pt;}
.wsae{word-spacing:-16.704000pt;}
.ws4d{word-spacing:-16.640000pt;}
.ws7d{word-spacing:-16.576000pt;}
.ws71{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.320000pt;}
.wsad{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws94{word-spacing:-16.128000pt;}
.ws72{word-spacing:-16.064000pt;}
.ws106{word-spacing:-16.016000pt;}
.ws9e{word-spacing:-16.000000pt;}
.ws89{word-spacing:-15.957333pt;}
.wsc{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws70{word-spacing:-15.744000pt;}
.ws88{word-spacing:-15.680000pt;}
.ws105{word-spacing:-15.194667pt;}
.ws9{word-spacing:-15.040000pt;}
.ws9c{word-spacing:-14.912000pt;}
.wsca{word-spacing:-14.773333pt;}
.ws8{word-spacing:-14.720000pt;}
.ws104{word-spacing:-14.549333pt;}
.ws2a{word-spacing:-14.346667pt;}
.wsb6{word-spacing:-14.293333pt;}
.ws29{word-spacing:-14.240000pt;}
.wse4{word-spacing:-14.186667pt;}
.wse8{word-spacing:-14.133333pt;}
.ws28{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.973333pt;}
.ws1{word-spacing:-13.920000pt;}
.wsb7{word-spacing:-13.866667pt;}
.ws7c{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.813333pt;}
.wse5{word-spacing:-13.760000pt;}
.wscb{word-spacing:-13.226667pt;}
.wsb5{word-spacing:-13.066667pt;}
.ws103{word-spacing:-13.013333pt;}
.wse6{word-spacing:-12.906667pt;}
.wscc{word-spacing:-12.800000pt;}
.ws48{word-spacing:-11.712000pt;}
.ws3f{word-spacing:-10.624000pt;}
.ws10a{word-spacing:-10.293333pt;}
.ws3{word-spacing:-9.968000pt;}
.ws6{word-spacing:-9.893333pt;}
.wsb1{word-spacing:-9.600000pt;}
.wsab{word-spacing:-8.512000pt;}
.ws6c{word-spacing:-7.424000pt;}
.ws38{word-spacing:-6.400000pt;}
.ws5a{word-spacing:-5.312000pt;}
.wse1{word-spacing:-4.960000pt;}
.ws37{word-spacing:-4.224000pt;}
.wsb9{word-spacing:-4.032000pt;}
.ws90{word-spacing:-3.904000pt;}
.wsf7{word-spacing:-3.786667pt;}
.ws25{word-spacing:-3.776000pt;}
.wsa2{word-spacing:-3.520000pt;}
.ws6d{word-spacing:-3.392000pt;}
.ws47{word-spacing:-3.200000pt;}
.wsdd{word-spacing:-3.146667pt;}
.ws2f{word-spacing:-3.136000pt;}
.ws78{word-spacing:-2.944000pt;}
.wsdf{word-spacing:-2.826667pt;}
.ws75{word-spacing:-2.816000pt;}
.wscd{word-spacing:-2.720000pt;}
.ws30{word-spacing:-2.688000pt;}
.wsc3{word-spacing:-2.613333pt;}
.ws4a{word-spacing:-2.368000pt;}
.wsc1{word-spacing:-2.133333pt;}
.ws68{word-spacing:-2.112000pt;}
.wsc2{word-spacing:-2.080000pt;}
.ws8a{word-spacing:-1.920000pt;}
.ws80{word-spacing:-1.792000pt;}
.ws9f{word-spacing:-1.728000pt;}
.ws42{word-spacing:-1.664000pt;}
.wsd7{word-spacing:-1.653333pt;}
.ws10f{word-spacing:-1.546667pt;}
.ws10e{word-spacing:-1.493333pt;}
.wsbf{word-spacing:-1.386667pt;}
.ws3d{word-spacing:-1.280000pt;}
.wsdb{word-spacing:-1.066667pt;}
.ws3a{word-spacing:-1.024000pt;}
.wsda{word-spacing:-1.013333pt;}
.wsa3{word-spacing:-0.896000pt;}
.ws45{word-spacing:-0.832000pt;}
.ws39{word-spacing:-0.704000pt;}
.ws53{word-spacing:-0.640000pt;}
.wsbd{word-spacing:-0.586667pt;}
.ws3e{word-spacing:-0.576000pt;}
.ws74{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.448000pt;}
.ws1a{word-spacing:-0.426667pt;}
.ws19{word-spacing:-0.416000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws14{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.256000pt;}
.ws6f{word-spacing:-0.234667pt;}
.wsbb{word-spacing:-0.213333pt;}
.ws18{word-spacing:-0.192000pt;}
.ws4b{word-spacing:-0.128000pt;}
.wsc6{word-spacing:-0.106667pt;}
.ws7e{word-spacing:-0.064000pt;}
.ws1c{word-spacing:-0.053333pt;}
.wsf{word-spacing:0.000000pt;}
.ws10{word-spacing:0.053333pt;}
.ws119{word-spacing:0.058667pt;}
.ws13{word-spacing:0.064000pt;}
.wsc7{word-spacing:0.106667pt;}
.ws66{word-spacing:0.128000pt;}
.ws5f{word-spacing:0.192000pt;}
.ws115{word-spacing:0.213333pt;}
.ws21{word-spacing:0.256000pt;}
.wsbe{word-spacing:0.266667pt;}
.ws2d{word-spacing:0.320000pt;}
.ws11d{word-spacing:0.352000pt;}
.ws2c{word-spacing:0.373333pt;}
.ws15{word-spacing:0.384000pt;}
.ws11c{word-spacing:0.410667pt;}
.ws1d{word-spacing:0.426667pt;}
.ws12{word-spacing:0.448000pt;}
.ws11b{word-spacing:0.469333pt;}
.wsde{word-spacing:0.480000pt;}
.ws16{word-spacing:0.512000pt;}
.wsbc{word-spacing:0.640000pt;}
.ws116{word-spacing:0.746667pt;}
.ws69{word-spacing:0.768000pt;}
.ws114{word-spacing:0.800000pt;}
.ws6a{word-spacing:0.832000pt;}
.wse3{word-spacing:0.853333pt;}
.ws67{word-spacing:0.896000pt;}
.wsc4{word-spacing:0.960000pt;}
.wsdc{word-spacing:1.066667pt;}
.ws57{word-spacing:1.088000pt;}
.ws113{word-spacing:1.120000pt;}
.ws10d{word-spacing:1.173333pt;}
.wsf8{word-spacing:1.333333pt;}
.ws8e{word-spacing:1.344000pt;}
.ws9d{word-spacing:1.408000pt;}
.wsc0{word-spacing:1.440000pt;}
.ws54{word-spacing:1.472000pt;}
.ws109{word-spacing:1.493333pt;}
.ws55{word-spacing:1.536000pt;}
.wsea{word-spacing:1.546667pt;}
.ws1f{word-spacing:1.856000pt;}
.ws59{word-spacing:1.920000pt;}
.wsf5{word-spacing:2.133333pt;}
.ws1e{word-spacing:2.176000pt;}
.wsd3{word-spacing:2.186667pt;}
.ws58{word-spacing:2.496000pt;}
.wsce{word-spacing:2.613333pt;}
.ws20{word-spacing:2.624000pt;}
.wscf{word-spacing:2.720000pt;}
.ws44{word-spacing:3.008000pt;}
.ws11a{word-spacing:3.168000pt;}
.ws5c{word-spacing:3.200000pt;}
.wsc5{word-spacing:3.253333pt;}
.ws23{word-spacing:3.264000pt;}
.ws6b{word-spacing:3.392000pt;}
.ws7f{word-spacing:3.456000pt;}
.wse2{word-spacing:3.573333pt;}
.ws43{word-spacing:3.584000pt;}
.ws24{word-spacing:3.648000pt;}
.wseb{word-spacing:3.680000pt;}
.ws26{word-spacing:3.712000pt;}
.ws86{word-spacing:3.968000pt;}
.ws97{word-spacing:4.032000pt;}
.wsf9{word-spacing:4.266667pt;}
.ws62{word-spacing:4.288000pt;}
.wsec{word-spacing:4.320000pt;}
.wse9{word-spacing:4.373333pt;}
.ws8f{word-spacing:4.480000pt;}
.ws98{word-spacing:4.544000pt;}
.ws96{word-spacing:4.608000pt;}
.ws63{word-spacing:4.672000pt;}
.ws4c{word-spacing:4.736000pt;}
.ws61{word-spacing:5.120000pt;}
.ws22{word-spacing:5.376000pt;}
.ws82{word-spacing:5.504000pt;}
.ws7a{word-spacing:5.568000pt;}
.ws46{word-spacing:5.696000pt;}
.wsed{word-spacing:5.813333pt;}
.ws27{word-spacing:5.824000pt;}
.ws107{word-spacing:5.920000pt;}
.ws108{word-spacing:6.186667pt;}
.ws33{word-spacing:6.208000pt;}
.wse0{word-spacing:6.453333pt;}
.ws77{word-spacing:6.464000pt;}
.wsa5{word-spacing:6.592000pt;}
.ws34{word-spacing:6.912000pt;}
.ws40{word-spacing:7.232000pt;}
.ws64{word-spacing:7.488000pt;}
.ws102{word-spacing:7.520000pt;}
.ws5e{word-spacing:7.552000pt;}
.ws41{word-spacing:7.808000pt;}
.ws5b{word-spacing:7.936000pt;}
.wsf0{word-spacing:7.946667pt;}
.wsef{word-spacing:8.426667pt;}
.wsee{word-spacing:8.533333pt;}
.ws7b{word-spacing:8.576000pt;}
.wsf2{word-spacing:8.586667pt;}
.wsb8{word-spacing:8.896000pt;}
.wsd6{word-spacing:9.013333pt;}
.ws6e{word-spacing:9.024000pt;}
.ws9b{word-spacing:9.344000pt;}
.ws9a{word-spacing:9.408000pt;}
.wsf1{word-spacing:9.600000pt;}
.ws87{word-spacing:9.664000pt;}
.wsf6{word-spacing:10.080000pt;}
.ws5d{word-spacing:10.112000pt;}
.wsd2{word-spacing:10.240000pt;}
.wsb4{word-spacing:10.368000pt;}
.ws3b{word-spacing:10.432000pt;}
.ws52{word-spacing:10.688000pt;}
.ws51{word-spacing:11.008000pt;}
.ws3c{word-spacing:11.136000pt;}
.wsd8{word-spacing:11.146667pt;}
.wsd9{word-spacing:11.466667pt;}
.ws76{word-spacing:11.520000pt;}
.ws10c{word-spacing:11.733333pt;}
.ws99{word-spacing:11.776000pt;}
.ws10b{word-spacing:11.786667pt;}
.wsa1{word-spacing:11.904000pt;}
.ws111{word-spacing:12.213333pt;}
.wsaf{word-spacing:12.224000pt;}
.wsf4{word-spacing:12.426667pt;}
.ws118{word-spacing:12.730667pt;}
.ws112{word-spacing:12.800000pt;}
.wsf3{word-spacing:12.853333pt;}
.ws2e{word-spacing:12.864000pt;}
.wsb0{word-spacing:12.992000pt;}
.ws117{word-spacing:13.200000pt;}
.ws93{word-spacing:13.248000pt;}
.wsd5{word-spacing:13.280000pt;}
.wsac{word-spacing:13.632000pt;}
.ws35{word-spacing:13.888000pt;}
.wsaa{word-spacing:14.080000pt;}
.ws49{word-spacing:14.208000pt;}
.wsb3{word-spacing:14.272000pt;}
.ws36{word-spacing:14.336000pt;}
.ws73{word-spacing:14.656000pt;}
.ws83{word-spacing:14.720000pt;}
.wsfc{word-spacing:14.933333pt;}
.wsfd{word-spacing:15.786667pt;}
.ws8b{word-spacing:16.384000pt;}
.wsa8{word-spacing:16.512000pt;}
.ws32{word-spacing:17.088000pt;}
.wsa7{word-spacing:17.280000pt;}
.ws81{word-spacing:17.536000pt;}
.wsba{word-spacing:17.920000pt;}
.wsa0{word-spacing:18.496000pt;}
.ws84{word-spacing:18.624000pt;}
.ws8c{word-spacing:18.944000pt;}
.ws8d{word-spacing:19.008000pt;}
.wsd4{word-spacing:19.253333pt;}
.ws56{word-spacing:19.584000pt;}
.ws31{word-spacing:20.736000pt;}
.ws91{word-spacing:22.144000pt;}
.wsa9{word-spacing:22.208000pt;}
.ws92{word-spacing:22.464000pt;}
.wsa4{word-spacing:23.808000pt;}
.ws95{word-spacing:25.792000pt;}
.wsa6{word-spacing:26.688000pt;}
.ws110{word-spacing:27.146667pt;}
.wsd0{word-spacing:29.280000pt;}
.wsd1{word-spacing:29.760000pt;}
.ws85{word-spacing:33.088000pt;}
.wsfa{word-spacing:33.120000pt;}
.wsfb{word-spacing:34.186667pt;}
.wsff{word-spacing:35.840000pt;}
.ws100{word-spacing:36.266667pt;}
.wsfe{word-spacing:36.320000pt;}
.ws101{word-spacing:36.373333pt;}
.wsc8{word-spacing:86.880000pt;}
.wsc9{word-spacing:87.520000pt;}
.wsb2{word-spacing:2208.192000pt;}
._24{margin-left:-2208.202667pt;}
._19{margin-left:-18.624000pt;}
._1a{margin-left:-17.555200pt;}
._1c{margin-left:-16.428800pt;}
._20{margin-left:-14.965333pt;}
._1f{margin-left:-13.888000pt;}
._26{margin-left:-12.966400pt;}
._18{margin-left:-12.076800pt;}
._16{margin-left:-10.707200pt;}
._17{margin-left:-9.737600pt;}
._23{margin-left:-8.748800pt;}
._1d{margin-left:-7.680000pt;}
._13{margin-left:-6.675200pt;}
._12{margin-left:-5.268283pt;}
._11{margin-left:-4.371200pt;}
._7{margin-left:-2.789317pt;}
._6{margin-left:-1.810133pt;}
._5{margin-left:-0.906667pt;}
._0{width:1.013333pt;}
._2{width:2.293333pt;}
._8{width:3.186133pt;}
._e{width:4.588800pt;}
._d{width:5.817600pt;}
._14{width:6.804283pt;}
._15{width:7.853899pt;}
._1e{width:9.148576pt;}
._a{width:10.908800pt;}
._9{width:12.160000pt;}
._c{width:13.457067pt;}
._21{width:14.491733pt;}
._b{width:15.658667pt;}
._28{width:17.276800pt;}
._1b{width:18.316800pt;}
._10{width:21.416533pt;}
._25{width:22.952533pt;}
._22{width:25.938133pt;}
._27{width:30.017067pt;}
._f{width:372.000000pt;}
._3{width:572.426667pt;}
._4{width:650.293333pt;}
._1{width:782.773333pt;}
.fs6{font-size:21.333333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:0.533333pt;}
.y88{bottom:1.066667pt;}
.y84{bottom:2.666667pt;}
.y82{bottom:2.933333pt;}
.y8a{bottom:4.533333pt;}
.y86{bottom:4.534667pt;}
.y8c{bottom:25.066667pt;}
.y127{bottom:46.133333pt;}
.y34{bottom:60.266667pt;}
.y4{bottom:60.266668pt;}
.y14e{bottom:86.405333pt;}
.y181{bottom:86.410667pt;}
.y16d{bottom:86.421333pt;}
.yd4{bottom:91.221333pt;}
.yb3{bottom:93.344000pt;}
.y63{bottom:93.365333pt;}
.y30{bottom:98.682659pt;}
.y80{bottom:100.538667pt;}
.y13f{bottom:105.109333pt;}
.y14d{bottom:107.205333pt;}
.y180{bottom:107.210667pt;}
.y16c{bottom:107.221333pt;}
.y199{bottom:109.866667pt;}
.yd3{bottom:112.021333pt;}
.y120{bottom:112.037333pt;}
.y1ce{bottom:113.066667pt;}
.yb2{bottom:113.872000pt;}
.y62{bottom:113.893333pt;}
.y2f{bottom:119.482659pt;}
.y7f{bottom:121.066667pt;}
.y13e{bottom:125.909333pt;}
.y198{bottom:126.933333pt;}
.y14c{bottom:127.733333pt;}
.y17f{bottom:127.738667pt;}
.y16b{bottom:127.749333pt;}
.y1cd{bottom:130.400000pt;}
.yd2{bottom:132.821333pt;}
.y11f{bottom:132.837333pt;}
.yb1{bottom:134.672000pt;}
.y61{bottom:134.693333pt;}
.y2e{bottom:140.010659pt;}
.y7e{bottom:141.866667pt;}
.y197{bottom:144.266667pt;}
.y13d{bottom:146.437333pt;}
.y1cc{bottom:147.733333pt;}
.y17e{bottom:148.538667pt;}
.y14b{bottom:148.544000pt;}
.y16a{bottom:148.549333pt;}
.yd1{bottom:153.349333pt;}
.y11e{bottom:153.365333pt;}
.yb0{bottom:155.472000pt;}
.y60{bottom:155.493333pt;}
.y7d{bottom:159.733333pt;}
.y2d{bottom:160.810659pt;}
.y196{bottom:161.600000pt;}
.y8b{bottom:165.066667pt;}
.y13c{bottom:167.237333pt;}
.y17d{bottom:169.066667pt;}
.y14a{bottom:169.072000pt;}
.y169{bottom:169.077333pt;}
.y8d{bottom:169.600000pt;}
.yd0{bottom:174.149333pt;}
.y11d{bottom:174.165333pt;}
.yaf{bottom:176.000000pt;}
.y5f{bottom:176.021333pt;}
.y195{bottom:178.666667pt;}
.y2c{bottom:181.610659pt;}
.y1cb{bottom:182.133333pt;}
.y13b{bottom:188.037333pt;}
.y17c{bottom:188.266667pt;}
.y149{bottom:189.872000pt;}
.y168{bottom:189.877333pt;}
.ycf{bottom:194.677333pt;}
.y11c{bottom:194.693333pt;}
.yf9{bottom:195.200000pt;}
.y194{bottom:196.000000pt;}
.yae{bottom:196.800000pt;}
.y5e{bottom:196.821333pt;}
.y1ca{bottom:199.466667pt;}
.y2b{bottom:202.138659pt;}
.y17b{bottom:203.765333pt;}
.y89{bottom:206.400000pt;}
.y13a{bottom:208.565333pt;}
.y1de{bottom:209.066667pt;}
.y148{bottom:210.672000pt;}
.y167{bottom:210.677333pt;}
.yf8{bottom:210.698667pt;}
.y193{bottom:213.333333pt;}
.yce{bottom:215.477333pt;}
.y11b{bottom:215.493333pt;}
.yad{bottom:216.000000pt;}
.y1c9{bottom:216.800000pt;}
.y5d{bottom:217.621333pt;}
.y2a{bottom:222.938659pt;}
.y17a{bottom:224.565333pt;}
.y1dd{bottom:226.133333pt;}
.y87{bottom:226.933333pt;}
.y139{bottom:229.365333pt;}
.y192{bottom:230.400000pt;}
.y147{bottom:231.200000pt;}
.y166{bottom:231.205333pt;}
.yac{bottom:231.210667pt;}
.yf7{bottom:231.226667pt;}
.y1c8{bottom:233.866667pt;}
.ycd{bottom:236.277333pt;}
.y11a{bottom:236.293333pt;}
.y5c{bottom:238.149333pt;}
.y1dc{bottom:243.466667pt;}
.y29{bottom:243.738659pt;}
.y179{bottom:245.093333pt;}
.y191{bottom:247.733333pt;}
.y138{bottom:250.165333pt;}
.y1c7{bottom:251.200000pt;}
.y165{bottom:252.005333pt;}
.yab{bottom:252.010667pt;}
.yf6{bottom:252.026667pt;}
.ycc{bottom:256.805333pt;}
.y119{bottom:256.821333pt;}
.y5b{bottom:258.949333pt;}
.y1db{bottom:261.066667pt;}
.y28{bottom:264.266659pt;}
.y190{bottom:265.066667pt;}
.y178{bottom:265.893333pt;}
.y1c6{bottom:268.533333pt;}
.y137{bottom:270.693333pt;}
.y164{bottom:272.805333pt;}
.yaa{bottom:272.810667pt;}
.yf5{bottom:272.826667pt;}
.ycb{bottom:277.605333pt;}
.y118{bottom:277.621333pt;}
.y1da{bottom:278.933333pt;}
.y5a{bottom:279.749333pt;}
.y18f{bottom:282.133333pt;}
.y27{bottom:285.066659pt;}
.y1c5{bottom:285.600000pt;}
.y177{bottom:286.421333pt;}
.y136{bottom:291.493333pt;}
.y163{bottom:293.333333pt;}
.ya9{bottom:293.338667pt;}
.yf4{bottom:293.354667pt;}
.y1d9{bottom:293.860000pt;}
.yca{bottom:298.405333pt;}
.y117{bottom:298.421333pt;}
.y18e{bottom:299.466667pt;}
.y59{bottom:300.277333pt;}
.y1c4{bottom:302.933333pt;}
.y26{bottom:305.866659pt;}
.y176{bottom:307.221333pt;}
.y135{bottom:312.021333pt;}
.y1d8{bottom:312.794667pt;}
.y162{bottom:314.133333pt;}
.ya8{bottom:314.138667pt;}
.yf3{bottom:314.154667pt;}
.y18d{bottom:316.800000pt;}
.yc9{bottom:318.933333pt;}
.y116{bottom:318.949333pt;}
.y1c3{bottom:320.266667pt;}
.y58{bottom:321.077333pt;}
.y25{bottom:323.466675pt;}
.y175{bottom:328.021333pt;}
.y1d7{bottom:331.729333pt;}
.y134{bottom:332.821333pt;}
.y24{bottom:333.333333pt;}
.y18c{bottom:334.133333pt;}
.y161{bottom:334.933333pt;}
.ya7{bottom:334.938667pt;}
.yf2{bottom:334.954667pt;}
.y1c2{bottom:337.600000pt;}
.yc8{bottom:339.733333pt;}
.y115{bottom:339.749333pt;}
.y57{bottom:341.605333pt;}
.y174{bottom:348.549333pt;}
.y18b{bottom:350.400000pt;}
.y23{bottom:351.199992pt;}
.y85{bottom:352.265333pt;}
.y133{bottom:353.621333pt;}
.y160{bottom:353.866667pt;}
.y1c1{bottom:354.666667pt;}
.y1d6{bottom:354.932000pt;}
.ya6{bottom:355.466667pt;}
.yf1{bottom:355.482667pt;}
.yc7{bottom:358.933333pt;}
.y114{bottom:360.549333pt;}
.y22{bottom:361.088000pt;}
.y56{bottom:362.405333pt;}
.y15f{bottom:369.349333pt;}
.y1c0{bottom:372.000000pt;}
.y81{bottom:373.066667pt;}
.yc6{bottom:374.149333pt;}
.ya5{bottom:376.266667pt;}
.yf0{bottom:376.282667pt;}
.y18a{bottom:376.533333pt;}
.y113{bottom:381.077333pt;}
.y21{bottom:381.616000pt;}
.y55{bottom:383.205333pt;}
.y1bf{bottom:389.333333pt;}
.y15e{bottom:390.149333pt;}
.y1d5{bottom:393.065333pt;}
.yc5{bottom:394.949333pt;}
.ya4{bottom:395.466667pt;}
.yef{bottom:397.082667pt;}
.y112{bottom:401.877333pt;}
.y20{bottom:402.416000pt;}
.y54{bottom:403.733333pt;}
.y1be{bottom:406.400000pt;}
.y189{bottom:410.672000pt;}
.y15d{bottom:410.677333pt;}
.y146{bottom:410.693333pt;}
.ya3{bottom:410.704000pt;}
.y1d4{bottom:412.000000pt;}
.yc4{bottom:415.749333pt;}
.yee{bottom:417.610667pt;}
.y111{bottom:422.677333pt;}
.y1f{bottom:422.944000pt;}
.y1bd{bottom:423.733333pt;}
.y53{bottom:424.565333pt;}
.y1d3{bottom:429.866667pt;}
.y188{bottom:431.472000pt;}
.y15c{bottom:431.477333pt;}
.y145{bottom:431.493333pt;}
.ya2{bottom:431.504000pt;}
.yc3{bottom:436.277333pt;}
.yed{bottom:438.410667pt;}
.y1bc{bottom:441.066667pt;}
.y110{bottom:443.205333pt;}
.y1e{bottom:443.744000pt;}
.y1d2{bottom:444.533333pt;}
.y52{bottom:445.365333pt;}
.y187{bottom:452.272000pt;}
.y15b{bottom:452.277333pt;}
.y144{bottom:452.293333pt;}
.ya1{bottom:452.304000pt;}
.yc2{bottom:457.077333pt;}
.y1bb{bottom:458.133333pt;}
.yec{bottom:458.938667pt;}
.y1d1{bottom:461.600000pt;}
.y10f{bottom:464.005333pt;}
.y1d{bottom:464.544000pt;}
.y51{bottom:465.893333pt;}
.y186{bottom:472.800000pt;}
.y15a{bottom:472.805333pt;}
.y143{bottom:472.821333pt;}
.ya0{bottom:472.832000pt;}
.y1ba{bottom:475.466667pt;}
.yc1{bottom:477.877333pt;}
.y1d0{bottom:478.933333pt;}
.yeb{bottom:479.738667pt;}
.y10e{bottom:484.533333pt;}
.y1c{bottom:485.072000pt;}
.y50{bottom:486.693333pt;}
.y1b9{bottom:492.800000pt;}
.y185{bottom:493.600000pt;}
.y159{bottom:493.605333pt;}
.y142{bottom:493.621333pt;}
.y9f{bottom:493.632000pt;}
.y1cf{bottom:495.466667pt;}
.yc0{bottom:498.405333pt;}
.yea{bottom:500.538667pt;}
.y7c{bottom:504.533333pt;}
.y10d{bottom:505.333333pt;}
.y1b{bottom:505.872000pt;}
.y4f{bottom:507.493333pt;}
.y1b8{bottom:510.133333pt;}
.y184{bottom:512.533333pt;}
.y158{bottom:514.133333pt;}
.y7b{bottom:514.149333pt;}
.y9e{bottom:514.160000pt;}
.ybf{bottom:519.205333pt;}
.ye9{bottom:521.066667pt;}
.y10c{bottom:526.133333pt;}
.y1a{bottom:526.672000pt;}
.y1b7{bottom:527.200000pt;}
.y4e{bottom:528.021333pt;}
.y183{bottom:528.042667pt;}
.y157{bottom:534.933333pt;}
.y7a{bottom:534.949333pt;}
.y9d{bottom:534.960000pt;}
.ybe{bottom:540.005333pt;}
.ye8{bottom:541.866667pt;}
.y1b6{bottom:544.533333pt;}
.y10b{bottom:545.066667pt;}
.y19{bottom:547.200000pt;}
.y4d{bottom:548.821333pt;}
.y182{bottom:548.842667pt;}
.y156{bottom:554.133333pt;}
.y173{bottom:555.733333pt;}
.y79{bottom:555.749333pt;}
.y9c{bottom:555.760000pt;}
.ybd{bottom:560.533333pt;}
.y10a{bottom:560.549333pt;}
.y1b5{bottom:561.866667pt;}
.ye7{bottom:562.666667pt;}
.y18{bottom:568.000000pt;}
.y4c{bottom:569.621333pt;}
.y155{bottom:569.642667pt;}
.y172{bottom:576.272000pt;}
.y78{bottom:576.277333pt;}
.y9b{bottom:576.288000pt;}
.ybc{bottom:578.400000pt;}
.y1b4{bottom:578.933333pt;}
.y132{bottom:579.733333pt;}
.y109{bottom:581.349333pt;}
.ye6{bottom:581.600000pt;}
.ybb{bottom:584.266667pt;}
.y17{bottom:587.199992pt;}
.y4b{bottom:590.149333pt;}
.y154{bottom:590.170667pt;}
.y131{bottom:595.210667pt;}
.y1b3{bottom:596.266667pt;}
.y171{bottom:597.072000pt;}
.y77{bottom:597.077333pt;}
.y9a{bottom:597.088000pt;}
.ye5{bottom:597.093333pt;}
.y16{bottom:601.600016pt;}
.y108{bottom:601.877333pt;}
.yba{bottom:605.066667pt;}
.y4a{bottom:610.949333pt;}
.y153{bottom:610.970667pt;}
.y1b2{bottom:613.600000pt;}
.y130{bottom:615.738667pt;}
.y170{bottom:617.872000pt;}
.y76{bottom:617.877333pt;}
.y99{bottom:617.888000pt;}
.ye4{bottom:617.893333pt;}
.y15{bottom:618.933349pt;}
.y107{bottom:622.677333pt;}
.yb9{bottom:625.600000pt;}
.y1b1{bottom:630.666667pt;}
.y49{bottom:631.477333pt;}
.y152{bottom:631.498667pt;}
.y14{bottom:635.466675pt;}
.y12f{bottom:636.538667pt;}
.y16f{bottom:638.400000pt;}
.y75{bottom:638.405333pt;}
.y98{bottom:638.416000pt;}
.ye3{bottom:638.421333pt;}
.y106{bottom:643.477333pt;}
.yb8{bottom:646.400000pt;}
.y1b0{bottom:648.000000pt;}
.y13{bottom:650.133341pt;}
.y48{bottom:652.277333pt;}
.y151{bottom:652.298667pt;}
.y12e{bottom:657.066667pt;}
.y16e{bottom:659.200000pt;}
.y74{bottom:659.205333pt;}
.y97{bottom:659.216000pt;}
.ye2{bottom:659.221333pt;}
.y105{bottom:664.005333pt;}
.y1af{bottom:665.333333pt;}
.yb7{bottom:667.200000pt;}
.y47{bottom:673.077333pt;}
.y150{bottom:673.098667pt;}
.y12{bottom:673.333333pt;}
.y12d{bottom:674.933333pt;}
.y73{bottom:680.005333pt;}
.y96{bottom:680.016000pt;}
.ye1{bottom:680.021333pt;}
.y1ae{bottom:682.666667pt;}
.y104{bottom:684.805333pt;}
.y12c{bottom:685.333333pt;}
.yb6{bottom:688.533333pt;}
.y11{bottom:692.000000pt;}
.y46{bottom:693.605333pt;}
.y14f{bottom:693.626667pt;}
.y1ad{bottom:699.733333pt;}
.y72{bottom:700.533333pt;}
.y95{bottom:700.544000pt;}
.ye0{bottom:700.549333pt;}
.y12b{bottom:701.600000pt;}
.y103{bottom:705.605333pt;}
.y10{bottom:710.666667pt;}
.y45{bottom:714.405333pt;}
.yb5{bottom:714.426667pt;}
.y1ac{bottom:717.066667pt;}
.y71{bottom:721.333333pt;}
.y94{bottom:721.344000pt;}
.ydf{bottom:721.349333pt;}
.y126{bottom:722.933333pt;}
.yf{bottom:724.005371pt;}
.y102{bottom:726.133333pt;}
.y1ab{bottom:734.400000pt;}
.y44{bottom:735.205333pt;}
.yb4{bottom:735.226667pt;}
.y129{bottom:737.866667pt;}
.y70{bottom:740.533333pt;}
.y141{bottom:742.133333pt;}
.y93{bottom:742.144000pt;}
.yde{bottom:742.149333pt;}
.y101{bottom:744.000000pt;}
.ye{bottom:744.533365pt;}
.y128{bottom:748.266667pt;}
.y125{bottom:748.277333pt;}
.y100{bottom:749.866667pt;}
.y1aa{bottom:751.466667pt;}
.y43{bottom:755.733333pt;}
.y6f{bottom:755.754667pt;}
.y12a{bottom:758.666667pt;}
.y140{bottom:761.066667pt;}
.y92{bottom:762.672000pt;}
.ydd{bottom:762.677333pt;}
.yd{bottom:765.333333pt;}
.y1a9{bottom:768.800000pt;}
.yff{bottom:775.200000pt;}
.y42{bottom:776.533333pt;}
.y6e{bottom:776.554667pt;}
.y91{bottom:783.472000pt;}
.ydc{bottom:783.477333pt;}
.y1a8{bottom:786.133333pt;}
.yc{bottom:786.138672pt;}
.y124{bottom:790.405333pt;}
.yfe{bottom:796.000000pt;}
.y41{bottom:797.349333pt;}
.y6d{bottom:797.354667pt;}
.y1a7{bottom:803.200000pt;}
.y90{bottom:804.000000pt;}
.ydb{bottom:804.005333pt;}
.yb{bottom:806.666667pt;}
.y123{bottom:810.933333pt;}
.yfd{bottom:812.000000pt;}
.y40{bottom:817.877333pt;}
.y6c{bottom:817.882667pt;}
.y1a6{bottom:820.533333pt;}
.y8f{bottom:824.800000pt;}
.yda{bottom:824.805333pt;}
.ya{bottom:827.466635pt;}
.y122{bottom:831.733333pt;}
.yfc{bottom:832.800000pt;}
.y1a5{bottom:837.866667pt;}
.y3f{bottom:838.677333pt;}
.y6b{bottom:838.682667pt;}
.y8e{bottom:844.000000pt;}
.yd9{bottom:845.605333pt;}
.y9{bottom:848.266683pt;}
.y121{bottom:849.600000pt;}
.yfb{bottom:853.333333pt;}
.y1a4{bottom:855.200000pt;}
.y3e{bottom:859.205333pt;}
.y6a{bottom:859.210667pt;}
.yd8{bottom:866.133333pt;}
.y8{bottom:869.327963pt;}
.y1a3{bottom:872.266667pt;}
.yfa{bottom:874.933333pt;}
.y3d{bottom:880.005333pt;}
.y69{bottom:880.010667pt;}
.yd7{bottom:886.933333pt;}
.y1a2{bottom:889.600000pt;}
.y7{bottom:893.594683pt;}
.y3c{bottom:900.805333pt;}
.y68{bottom:900.810667pt;}
.y1a1{bottom:906.933333pt;}
.yd6{bottom:907.733333pt;}
.y6{bottom:917.600016pt;}
.y3b{bottom:921.333333pt;}
.y67{bottom:921.338667pt;}
.y1a0{bottom:924.000000pt;}
.yd5{bottom:926.666667pt;}
.y19f{bottom:941.333333pt;}
.y5{bottom:941.866699pt;}
.y3a{bottom:942.133333pt;}
.y66{bottom:942.138667pt;}
.y19e{bottom:958.666667pt;}
.y39{bottom:960.533333pt;}
.y65{bottom:962.938667pt;}
.y31{bottom:965.711067pt;}
.y38{bottom:973.333333pt;}
.y19d{bottom:975.733333pt;}
.y64{bottom:983.466667pt;}
.y32{bottom:987.151067pt;}
.y37{bottom:991.466667pt;}
.y19c{bottom:993.066667pt;}
.y36{bottom:1004.266667pt;}
.y19b{bottom:1010.400000pt;}
.y3{bottom:1017.600016pt;}
.y35{bottom:1025.066667pt;}
.y19a{bottom:1027.733333pt;}
.y2{bottom:1034.933349pt;}
.y33{bottom:1052.000000pt;}
.y1{bottom:1052.266683pt;}
.ha{height:18.560000pt;}
.h12{height:20.533333pt;}
.h14{height:20.800000pt;}
.h10{height:20.801333pt;}
.h7{height:25.824000pt;}
.hc{height:27.840000pt;}
.h9{height:37.120000pt;}
.h13{height:41.333333pt;}
.h2{height:43.040000pt;}
.h8{height:46.400000pt;}
.h19{height:51.040000pt;}
.hb{height:51.648000pt;}
.he{height:52.317708pt;}
.h18{height:55.625000pt;}
.h6{height:55.680000pt;}
.h5{height:60.256000pt;}
.h15{height:62.133333pt;}
.h3{height:62.812500pt;}
.hd{height:64.832000pt;}
.h4{height:64.960000pt;}
.h17{height:74.197333pt;}
.h16{height:93.248000pt;}
.h11{height:125.333333pt;}
.hf{height:128.800000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wd{width:76.800000pt;}
.wc{width:81.866667pt;}
.wf{width:115.733333pt;}
.w10{width:116.000000pt;}
.w3{width:155.732000pt;}
.w2{width:155.733333pt;}
.w4{width:156.000000pt;}
.w5{width:156.268000pt;}
.w9{width:157.600000pt;}
.wa{width:157.601333pt;}
.w7{width:203.466667pt;}
.we{width:206.666667pt;}
.w6{width:210.133333pt;}
.wb{width:387.466667pt;}
.w8{width:623.733333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:7.200000pt;}
.x32{left:21.600000pt;}
.x2e{left:22.666667pt;}
.x33{left:26.133333pt;}
.x2a{left:32.000000pt;}
.x20{left:38.933333pt;}
.x3e{left:42.933333pt;}
.x18{left:47.466667pt;}
.x28{left:50.400000pt;}
.x2b{left:54.400000pt;}
.x19{left:56.533333pt;}
.x24{left:58.933333pt;}
.x29{left:64.000000pt;}
.x26{left:66.133333pt;}
.x1f{left:71.466667pt;}
.x1e{left:74.666667pt;}
.x1{left:81.333333pt;}
.x34{left:88.533333pt;}
.x3{left:90.125336pt;}
.x23{left:92.853333pt;}
.x41{left:100.266667pt;}
.xf{left:101.312936pt;}
.x43{left:105.333333pt;}
.xb{left:113.066671pt;}
.x10{left:128.533333pt;}
.x14{left:136.533333pt;}
.x12{left:138.133333pt;}
.x16{left:143.200000pt;}
.x2c{left:148.533333pt;}
.xa{left:150.133331pt;}
.x42{left:153.625333pt;}
.x1d{left:163.200000pt;}
.x37{left:164.805333pt;}
.x1a{left:168.000000pt;}
.x8{left:190.661336pt;}
.x21{left:198.666667pt;}
.x9{left:200.005331pt;}
.xd{left:210.933329pt;}
.x5{left:232.000000pt;}
.x7{left:233.093343pt;}
.x13{left:237.066667pt;}
.x25{left:239.200000pt;}
.x6{left:240.266663pt;}
.xc{left:244.000000pt;}
.x38{left:288.000000pt;}
.x1b{left:291.466667pt;}
.x39{left:298.133333pt;}
.x36{left:302.405333pt;}
.xe{left:332.533325pt;}
.x4{left:354.650669pt;}
.x3d{left:364.800000pt;}
.x3a{left:372.800000pt;}
.x15{left:392.800000pt;}
.x2{left:396.800008pt;}
.x11{left:420.533333pt;}
.x2d{left:468.800000pt;}
.x3f{left:480.533333pt;}
.x35{left:490.405333pt;}
.x1c{left:501.600000pt;}
.x17{left:548.800000pt;}
.x2f{left:550.666667pt;}
.x27{left:554.400000pt;}
.x40{left:596.533333pt;}
.x3b{left:611.744000pt;}
.x30{left:632.533333pt;}
.x3c{left:647.744000pt;}
.x22{left:663.781333pt;}
}




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