
    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_1e8dc0aeafb4ce5db1161b19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_f8cc2b9f98a5a275107fc2c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_a25e115a4e20f7ae47e8e900.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_cf4f1dcdd8cb48aa59d5839f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_146a664cd869a41e74f2eb95.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_340900b98c3f1d0a324cbf1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_a4158519bb5cc4923b17fcc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184082;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_c856491ed78ad733b452d26c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028320;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_62495b0f1d198aa6454197ee.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9677daddf4a43a2571386488.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7103d41e184f7441fb4cf7e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_81ec5fff0e31d4d4f1fc74e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.028320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_71d15579ea3770a8f1942f8e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.028320;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.va{vertical-align:-14.700900px;}
.v2{vertical-align:-13.140000px;}
.v6{vertical-align:-11.027250px;}
.v3{vertical-align:-9.465000px;}
.v9{vertical-align:-5.278200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.280000px;}
.v5{vertical-align:9.480000px;}
.v7{vertical-align:14.700000px;}
.v1{vertical-align:15.719400px;}
.v4{vertical-align:18.362250px;}
.ls33{letter-spacing:-4.653000px;}
.ls6{letter-spacing:-1.860180px;}
.ls10{letter-spacing:-0.540750px;}
.ls11{letter-spacing:-0.481500px;}
.ls15{letter-spacing:-0.450000px;}
.ls7{letter-spacing:-0.032208px;}
.ls35{letter-spacing:-0.031500px;}
.ls34{letter-spacing:-0.009000px;}
.ls8{letter-spacing:-0.004800px;}
.lsf{letter-spacing:-0.004500px;}
.lsb{letter-spacing:-0.004200px;}
.ls2d{letter-spacing:-0.002730px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004500px;}
.lsc{letter-spacing:0.005250px;}
.ls19{letter-spacing:0.006000px;}
.ls17{letter-spacing:0.006750px;}
.ls9{letter-spacing:0.006900px;}
.lse{letter-spacing:0.009000px;}
.ls23{letter-spacing:0.010200px;}
.ls14{letter-spacing:0.010440px;}
.lsd{letter-spacing:0.011040px;}
.ls13{letter-spacing:0.013500px;}
.ls2b{letter-spacing:0.016800px;}
.ls2a{letter-spacing:0.018600px;}
.ls12{letter-spacing:0.020700px;}
.ls2e{letter-spacing:0.022740px;}
.ls1e{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.031500px;}
.ls2{letter-spacing:0.032940px;}
.ls3{letter-spacing:0.033540px;}
.ls2c{letter-spacing:0.035100px;}
.ls29{letter-spacing:0.036300px;}
.ls1b{letter-spacing:0.040200px;}
.ls22{letter-spacing:0.040800px;}
.ls21{letter-spacing:0.042000px;}
.ls1c{letter-spacing:0.043200px;}
.ls16{letter-spacing:0.047250px;}
.ls28{letter-spacing:0.051180px;}
.ls39{letter-spacing:0.270000px;}
.ls38{letter-spacing:1.048500px;}
.ls31{letter-spacing:2.308500px;}
.ls40{letter-spacing:2.371500px;}
.ls41{letter-spacing:2.488500px;}
.ls44{letter-spacing:3.271500px;}
.ls43{letter-spacing:3.330000px;}
.ls30{letter-spacing:4.230000px;}
.ls42{letter-spacing:6.390000px;}
.ls3c{letter-spacing:6.628500px;}
.ls3d{letter-spacing:6.808500px;}
.ls1{letter-spacing:7.236600px;}
.ls3b{letter-spacing:7.591500px;}
.ls3a{letter-spacing:8.370000px;}
.lsa{letter-spacing:8.404200px;}
.ls0{letter-spacing:8.893080px;}
.ls32{letter-spacing:9.931500px;}
.ls3e{letter-spacing:10.350000px;}
.ls2f{letter-spacing:10.471500px;}
.ls3f{letter-spacing:11.488500px;}
.ls37{letter-spacing:15.511500px;}
.ls36{letter-spacing:23.611500px;}
.ls24{letter-spacing:191.610300px;}
.ls27{letter-spacing:218.795100px;}
.ls26{letter-spacing:221.075100px;}
.ls1a{letter-spacing:221.875500px;}
.ls1f{letter-spacing:224.376300px;}
.ls20{letter-spacing:267.895500px;}
.ls1d{letter-spacing:324.575700px;}
.ls25{letter-spacing:501.138600px;}
.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;}
}
.ws43{word-spacing:-52.500000px;}
.ws4{word-spacing:-45.000000px;}
.wscc{word-spacing:-42.000000px;}
.ws44{word-spacing:-13.125000px;}
.ws3{word-spacing:-11.430000px;}
.wsf2{word-spacing:-11.250000px;}
.ws1{word-spacing:-10.668000px;}
.ws45{word-spacing:-10.665000px;}
.ws9{word-spacing:-10.524540px;}
.ws5{word-spacing:-10.350000px;}
.ws80{word-spacing:-10.183500px;}
.wsd0{word-spacing:-9.954000px;}
.wsd2{word-spacing:-9.660000px;}
.ws7{word-spacing:-8.535000px;}
.ws2{word-spacing:-7.437120px;}
.ws6{word-spacing:-6.939360px;}
.wscd{word-spacing:-6.470100px;}
.wsf{word-spacing:-5.001024px;}
.ws54{word-spacing:-3.081750px;}
.ws62{word-spacing:-3.076500px;}
.ws61{word-spacing:-3.066000px;}
.ws60{word-spacing:-3.050250px;}
.ws102{word-spacing:-2.451750px;}
.ws10{word-spacing:-2.347500px;}
.ws3e{word-spacing:-2.331000px;}
.wsfe{word-spacing:-2.294250px;}
.ws40{word-spacing:-2.290500px;}
.wsff{word-spacing:-2.273250px;}
.wsfd{word-spacing:-2.226000px;}
.wse5{word-spacing:-2.163000px;}
.wse8{word-spacing:-2.142000px;}
.wsa6{word-spacing:-2.063250px;}
.ws8c{word-spacing:-2.000250px;}
.ws8b{word-spacing:-1.995000px;}
.ws74{word-spacing:-1.968750px;}
.wsc0{word-spacing:-1.869000px;}
.ws73{word-spacing:-1.863750px;}
.ws120{word-spacing:-1.853250px;}
.ws121{word-spacing:-1.848000px;}
.ws99{word-spacing:-1.842750px;}
.ws9a{word-spacing:-1.821750px;}
.ws10c{word-spacing:-1.769250px;}
.ws3d{word-spacing:-1.768500px;}
.ws141{word-spacing:-1.732500px;}
.ws37{word-spacing:-1.617000px;}
.ws146{word-spacing:-1.512000px;}
.ws177{word-spacing:-1.494000px;}
.ws39{word-spacing:-1.485750px;}
.ws179{word-spacing:-1.471500px;}
.ws145{word-spacing:-1.459500px;}
.ws178{word-spacing:-1.458000px;}
.ws17a{word-spacing:-1.453500px;}
.ws138{word-spacing:-1.449000px;}
.ws38{word-spacing:-1.433250px;}
.wsda{word-spacing:-1.428000px;}
.wsea{word-spacing:-1.417500px;}
.ws7e{word-spacing:-1.412250px;}
.wsc4{word-spacing:-1.365000px;}
.wsc3{word-spacing:-1.349250px;}
.wse0{word-spacing:-1.328250px;}
.ws46{word-spacing:-1.312500px;}
.ws12f{word-spacing:-1.275750px;}
.ws12d{word-spacing:-1.265250px;}
.ws28{word-spacing:-1.249500px;}
.ws29{word-spacing:-1.244250px;}
.ws58{word-spacing:-1.202250px;}
.wsbc{word-spacing:-1.165500px;}
.ws3f{word-spacing:-1.161000px;}
.wsa9{word-spacing:-1.118250px;}
.ws41{word-spacing:-1.084500px;}
.wsef{word-spacing:-1.008000px;}
.wsee{word-spacing:-0.987000px;}
.ws19f{word-spacing:-0.981000px;}
.wseb{word-spacing:-0.949500px;}
.ws19e{word-spacing:-0.945000px;}
.ws1a1{word-spacing:-0.940500px;}
.ws14c{word-spacing:-0.936000px;}
.ws1a0{word-spacing:-0.931500px;}
.wsec{word-spacing:-0.927000px;}
.ws122{word-spacing:-0.819000px;}
.ws1b6{word-spacing:-0.810000px;}
.ws139{word-spacing:-0.792750px;}
.ws111{word-spacing:-0.766500px;}
.ws110{word-spacing:-0.729750px;}
.wsd8{word-spacing:-0.719250px;}
.ws8e{word-spacing:-0.708750px;}
.ws52{word-spacing:-0.666750px;}
.ws172{word-spacing:-0.625500px;}
.wsad{word-spacing:-0.530250px;}
.ws21{word-spacing:-0.459000px;}
.ws53{word-spacing:-0.378000px;}
.wsf9{word-spacing:-0.330750px;}
.ws86{word-spacing:-0.320250px;}
.wsf3{word-spacing:-0.309750px;}
.wsf4{word-spacing:-0.294000px;}
.wsf8{word-spacing:-0.283500px;}
.ws97{word-spacing:-0.278250px;}
.ws96{word-spacing:-0.273000px;}
.ws85{word-spacing:-0.257250px;}
.ws147{word-spacing:-0.238500px;}
.ws142{word-spacing:-0.225750px;}
.ws115{word-spacing:-0.162750px;}
.wsc8{word-spacing:-0.135000px;}
.wsd6{word-spacing:-0.126000px;}
.wsc7{word-spacing:-0.099000px;}
.ws83{word-spacing:-0.094500px;}
.wsc9{word-spacing:-0.090000px;}
.ws133{word-spacing:-0.057750px;}
.ws190{word-spacing:-0.054000px;}
.wsf0{word-spacing:-0.052500px;}
.wsf1{word-spacing:-0.045000px;}
.ws0{word-spacing:-0.042000px;}
.wsc6{word-spacing:-0.031500px;}
.ws164{word-spacing:-0.027000px;}
.ws152{word-spacing:-0.022500px;}
.wsed{word-spacing:-0.016800px;}
.ws12{word-spacing:-0.015000px;}
.ws153{word-spacing:-0.013500px;}
.ws7f{word-spacing:-0.009000px;}
.ws11{word-spacing:-0.007500px;}
.ws127{word-spacing:-0.006900px;}
.ws3c{word-spacing:-0.004500px;}
.ws8{word-spacing:0.000000px;}
.ws6b{word-spacing:0.004500px;}
.wsc5{word-spacing:0.009000px;}
.ws42{word-spacing:0.012600px;}
.wse{word-spacing:0.018000px;}
.ws15a{word-spacing:0.022500px;}
.wsa{word-spacing:0.027000px;}
.wsb{word-spacing:0.031500px;}
.wsd{word-spacing:0.040500px;}
.ws63{word-spacing:0.042000px;}
.wsc{word-spacing:0.049500px;}
.ws6d{word-spacing:0.057750px;}
.ws3a{word-spacing:0.110250px;}
.ws168{word-spacing:0.189000px;}
.ws8d{word-spacing:0.220500px;}
.ws174{word-spacing:0.261000px;}
.ws175{word-spacing:0.265500px;}
.ws197{word-spacing:0.274500px;}
.wsbe{word-spacing:0.288750px;}
.ws30{word-spacing:0.346500px;}
.ws1ab{word-spacing:0.396000px;}
.wsaf{word-spacing:0.430500px;}
.wsf5{word-spacing:0.441000px;}
.ws15{word-spacing:0.486000px;}
.ws1a7{word-spacing:0.562500px;}
.ws11d{word-spacing:0.567000px;}
.wsc2{word-spacing:0.588000px;}
.ws20{word-spacing:0.648000px;}
.ws59{word-spacing:0.703500px;}
.ws12e{word-spacing:0.745500px;}
.ws109{word-spacing:0.803250px;}
.ws108{word-spacing:0.834750px;}
.ws136{word-spacing:0.882000px;}
.wse7{word-spacing:0.897750px;}
.ws17b{word-spacing:0.936000px;}
.ws19d{word-spacing:0.981000px;}
.ws16b{word-spacing:0.985500px;}
.ws16d{word-spacing:0.999000px;}
.ws35{word-spacing:1.023750px;}
.ws16c{word-spacing:1.048500px;}
.ws154{word-spacing:1.071000px;}
.ws15f{word-spacing:1.093500px;}
.ws10e{word-spacing:1.097250px;}
.ws34{word-spacing:1.170750px;}
.wsa5{word-spacing:1.260000px;}
.ws16a{word-spacing:1.273500px;}
.ws11e{word-spacing:1.275750px;}
.ws2a{word-spacing:1.312500px;}
.ws19{word-spacing:1.332000px;}
.ws12c{word-spacing:1.338750px;}
.ws12b{word-spacing:1.380750px;}
.ws137{word-spacing:1.386000px;}
.ws114{word-spacing:1.401750px;}
.ws113{word-spacing:1.428000px;}
.ws9b{word-spacing:1.459500px;}
.ws75{word-spacing:1.496250px;}
.ws12a{word-spacing:1.512000px;}
.ws3b{word-spacing:1.669500px;}
.ws11f{word-spacing:1.706250px;}
.ws66{word-spacing:1.758750px;}
.ws105{word-spacing:1.795500px;}
.ws89{word-spacing:1.863750px;}
.ws176{word-spacing:1.876500px;}
.ws2d{word-spacing:1.884750px;}
.ws11c{word-spacing:1.900500px;}
.ws1b{word-spacing:1.908000px;}
.wsdb{word-spacing:1.989750px;}
.ws13b{word-spacing:2.026500px;}
.wsb1{word-spacing:2.152500px;}
.ws31{word-spacing:2.168250px;}
.ws77{word-spacing:2.173500px;}
.ws196{word-spacing:2.250000px;}
.ws195{word-spacing:2.259000px;}
.ws26{word-spacing:2.315250px;}
.ws159{word-spacing:2.322000px;}
.ws157{word-spacing:2.344500px;}
.wsfa{word-spacing:2.352000px;}
.ws158{word-spacing:2.371500px;}
.ws19c{word-spacing:2.425500px;}
.ws19b{word-spacing:2.430000px;}
.ws18{word-spacing:2.434500px;}
.ws160{word-spacing:2.488500px;}
.ws1af{word-spacing:2.497500px;}
.ws161{word-spacing:2.506500px;}
.ws131{word-spacing:2.509500px;}
.ws132{word-spacing:2.514750px;}
.ws1ae{word-spacing:2.520000px;}
.ws6e{word-spacing:2.567250px;}
.ws14a{word-spacing:2.619000px;}
.ws1b0{word-spacing:2.632500px;}
.ws173{word-spacing:2.641500px;}
.wsd7{word-spacing:2.782500px;}
.ws2b{word-spacing:2.798250px;}
.ws9f{word-spacing:2.887500px;}
.ws13d{word-spacing:2.892750px;}
.ws7a{word-spacing:2.971500px;}
.ws91{word-spacing:2.976750px;}
.ws7d{word-spacing:3.097500px;}
.ws82{word-spacing:3.197250px;}
.ws81{word-spacing:3.228750px;}
.ws1b7{word-spacing:3.285000px;}
.wsba{word-spacing:3.349500px;}
.ws107{word-spacing:3.375750px;}
.ws106{word-spacing:3.381000px;}
.ws57{word-spacing:3.433500px;}
.ws72{word-spacing:3.643500px;}
.ws1f{word-spacing:3.681000px;}
.ws1e{word-spacing:3.690000px;}
.ws4b{word-spacing:3.696000px;}
.ws116{word-spacing:3.706500px;}
.ws94{word-spacing:3.769500px;}
.ws93{word-spacing:3.827250px;}
.ws64{word-spacing:3.848250px;}
.ws13e{word-spacing:3.932250px;}
.ws9d{word-spacing:3.963750px;}
.ws13a{word-spacing:3.979500px;}
.ws151{word-spacing:4.009500px;}
.ws150{word-spacing:4.023000px;}
.ws9c{word-spacing:4.037250px;}
.ws70{word-spacing:4.074000px;}
.ws25{word-spacing:4.116000px;}
.ws156{word-spacing:4.230000px;}
.ws155{word-spacing:4.239000px;}
.ws1c{word-spacing:4.342500px;}
.ws1d{word-spacing:4.347000px;}
.ws4e{word-spacing:4.420500px;}
.wsb5{word-spacing:4.425750px;}
.wsa4{word-spacing:4.457250px;}
.wsdd{word-spacing:4.478250px;}
.wse2{word-spacing:4.688250px;}
.ws2c{word-spacing:4.698750px;}
.wse1{word-spacing:4.735500px;}
.ws14{word-spacing:4.756500px;}
.ws36{word-spacing:4.782750px;}
.wsae{word-spacing:4.788000px;}
.ws169{word-spacing:4.792500px;}
.ws1ac{word-spacing:4.833000px;}
.ws104{word-spacing:4.919250px;}
.ws134{word-spacing:4.945500px;}
.wsa8{word-spacing:4.987500px;}
.ws95{word-spacing:5.008500px;}
.wsa1{word-spacing:5.013750px;}
.ws67{word-spacing:5.250000px;}
.ws16{word-spacing:5.292000px;}
.ws193{word-spacing:5.337000px;}
.wsfc{word-spacing:5.397000px;}
.ws56{word-spacing:5.407500px;}
.ws55{word-spacing:5.428500px;}
.ws118{word-spacing:5.523000px;}
.wse3{word-spacing:5.544000px;}
.wsa2{word-spacing:5.769750px;}
.ws171{word-spacing:5.854500px;}
.ws13{word-spacing:5.895000px;}
.ws69{word-spacing:5.895750px;}
.ws68{word-spacing:5.901000px;}
.ws71{word-spacing:5.995500px;}
.ws6f{word-spacing:6.389250px;}
.ws1b3{word-spacing:6.390000px;}
.ws1b4{word-spacing:6.426000px;}
.ws1b2{word-spacing:6.430500px;}
.ws1b1{word-spacing:6.475500px;}
.ws10d{word-spacing:6.499500px;}
.ws17{word-spacing:6.570000px;}
.ws1ad{word-spacing:6.588000px;}
.ws183{word-spacing:6.619500px;}
.ws184{word-spacing:6.628500px;}
.ws79{word-spacing:6.630750px;}
.ws78{word-spacing:6.641250px;}
.ws1a3{word-spacing:6.646500px;}
.ws13f{word-spacing:6.651750px;}
.ws185{word-spacing:6.664500px;}
.ws1a2{word-spacing:6.669000px;}
.ws10b{word-spacing:6.751500px;}
.ws10a{word-spacing:6.756750px;}
.ws186{word-spacing:6.795000px;}
.ws187{word-spacing:6.808500px;}
.ws188{word-spacing:6.813000px;}
.ws123{word-spacing:7.061250px;}
.wsa0{word-spacing:7.092750px;}
.ws135{word-spacing:7.218750px;}
.ws65{word-spacing:7.297500px;}
.ws2e{word-spacing:7.329000px;}
.ws1a{word-spacing:7.330500px;}
.ws182{word-spacing:7.591500px;}
.ws181{word-spacing:7.614000px;}
.ws180{word-spacing:7.623000px;}
.ws117{word-spacing:7.680750px;}
.ws4d{word-spacing:7.712250px;}
.ws4c{word-spacing:7.717500px;}
.ws8a{word-spacing:7.728000px;}
.wsd9{word-spacing:7.759500px;}
.ws13c{word-spacing:7.785750px;}
.wsb9{word-spacing:7.822500px;}
.ws19a{word-spacing:7.830000px;}
.wsb8{word-spacing:7.833000px;}
.wsa7{word-spacing:7.848750px;}
.ws199{word-spacing:7.866000px;}
.wsb0{word-spacing:8.032500px;}
.wsb4{word-spacing:8.090250px;}
.ws198{word-spacing:8.176500px;}
.ws103{word-spacing:8.195250px;}
.ws14b{word-spacing:8.307000px;}
.ws17f{word-spacing:8.343000px;}
.ws17d{word-spacing:8.352000px;}
.ws17c{word-spacing:8.365500px;}
.ws87{word-spacing:8.368500px;}
.ws17e{word-spacing:8.370000px;}
.ws1b5{word-spacing:8.401500px;}
.ws140{word-spacing:8.405250px;}
.ws18d{word-spacing:8.478000px;}
.ws18c{word-spacing:8.482500px;}
.wsde{word-spacing:8.835750px;}
.wse6{word-spacing:8.851500px;}
.ws149{word-spacing:8.869500px;}
.ws194{word-spacing:8.901000px;}
.ws47{word-spacing:9.187500px;}
.ws48{word-spacing:9.224250px;}
.ws129{word-spacing:9.329250px;}
.wsdc{word-spacing:9.513000px;}
.wsab{word-spacing:9.749250px;}
.wse9{word-spacing:9.791250px;}
.ws15d{word-spacing:9.931500px;}
.ws15c{word-spacing:9.949500px;}
.ws15b{word-spacing:9.963000px;}
.wsd5{word-spacing:10.048500px;}
.ws18b{word-spacing:10.066500px;}
.ws18a{word-spacing:10.089000px;}
.wsd3{word-spacing:10.111500px;}
.ws124{word-spacing:10.116750px;}
.ws16e{word-spacing:10.161000px;}
.wsd4{word-spacing:10.185000px;}
.ws18e{word-spacing:10.350000px;}
.ws18f{word-spacing:10.354500px;}
.ws15e{word-spacing:10.359000px;}
.ws4a{word-spacing:10.447500px;}
.ws14f{word-spacing:10.471500px;}
.ws49{word-spacing:10.479000px;}
.wsfb{word-spacing:10.484250px;}
.ws14d{word-spacing:10.503000px;}
.ws14e{word-spacing:10.507500px;}
.ws23{word-spacing:10.795500px;}
.ws1a5{word-spacing:10.863000px;}
.ws84{word-spacing:10.914750px;}
.ws10f{word-spacing:11.056500px;}
.ws119{word-spacing:11.140500px;}
.ws51{word-spacing:11.177250px;}
.ws128{word-spacing:11.298000px;}
.ws9e{word-spacing:11.366250px;}
.wsbb{word-spacing:11.439750px;}
.wsc1{word-spacing:11.450250px;}
.ws192{word-spacing:11.457000px;}
.ws191{word-spacing:11.488500px;}
.wse4{word-spacing:11.576250px;}
.ws1aa{word-spacing:11.632500px;}
.ws1a9{word-spacing:11.668500px;}
.ws125{word-spacing:11.686500px;}
.ws1a8{word-spacing:11.695500px;}
.ws144{word-spacing:11.702250px;}
.ws1a6{word-spacing:11.758500px;}
.ws50{word-spacing:11.943750px;}
.ws92{word-spacing:11.949000px;}
.ws4f{word-spacing:11.959500px;}
.wsb3{word-spacing:12.201000px;}
.wsb2{word-spacing:12.206250px;}
.wsbf{word-spacing:12.600000px;}
.ws100{word-spacing:12.736500px;}
.ws101{word-spacing:12.757500px;}
.ws7c{word-spacing:12.925500px;}
.ws7b{word-spacing:12.946500px;}
.ws1a4{word-spacing:13.162500px;}
.ws2f{word-spacing:13.356000px;}
.ws148{word-spacing:13.423500px;}
.ws112{word-spacing:13.476750px;}
.ws27{word-spacing:13.587000px;}
.ws5f{word-spacing:13.639500px;}
.ws5e{word-spacing:13.650000px;}
.ws189{word-spacing:13.702500px;}
.wsaa{word-spacing:14.043750px;}
.ws143{word-spacing:14.070000px;}
.ws11a{word-spacing:14.264250px;}
.ws130{word-spacing:14.862750px;}
.ws88{word-spacing:14.957250px;}
.ws165{word-spacing:15.466500px;}
.ws167{word-spacing:15.484500px;}
.ws166{word-spacing:15.511500px;}
.ws126{word-spacing:16.017750px;}
.ws76{word-spacing:16.458750px;}
.wsa3{word-spacing:16.495500px;}
.ws5d{word-spacing:16.752750px;}
.ws5c{word-spacing:16.773750px;}
.wsf7{word-spacing:16.941750px;}
.wsf6{word-spacing:16.957500px;}
.ws90{word-spacing:17.172750px;}
.ws8f{word-spacing:17.193750px;}
.wsbd{word-spacing:17.277750px;}
.wsdf{word-spacing:17.419500px;}
.ws33{word-spacing:17.676750px;}
.ws32{word-spacing:17.682000px;}
.wsac{word-spacing:18.957750px;}
.wsb7{word-spacing:19.635000px;}
.wsb6{word-spacing:19.640250px;}
.ws6a{word-spacing:21.876750px;}
.ws162{word-spacing:23.571000px;}
.ws163{word-spacing:23.625000px;}
.ws5b{word-spacing:24.533250px;}
.ws5a{word-spacing:24.570000px;}
.ws98{word-spacing:25.578000px;}
.ws11b{word-spacing:25.856250px;}
.ws170{word-spacing:27.864000px;}
.ws16f{word-spacing:27.886500px;}
.ws24{word-spacing:51.474000px;}
.ws6c{word-spacing:51.480900px;}
.wscb{word-spacing:78.135150px;}
.ws22{word-spacing:91.809000px;}
.wsca{word-spacing:112.062600px;}
.wsce{word-spacing:229.223400px;}
.wsd1{word-spacing:289.854600px;}
.wscf{word-spacing:327.406800px;}
._4{margin-left:-88.348500px;}
._5{margin-left:-52.364100px;}
._27{margin-left:-23.647500px;}
._1{margin-left:-18.009000px;}
._2{margin-left:-12.636000px;}
._23{margin-left:-10.795500px;}
._21{margin-left:-7.781280px;}
._2b{margin-left:-6.637500px;}
._25{margin-left:-4.041000px;}
._22{margin-left:-2.315250px;}
._8{margin-left:-1.254840px;}
._6{width:1.885500px;}
._26{width:3.132000px;}
._2a{width:5.584500px;}
._28{width:15.570000px;}
._24{width:19.813500px;}
._29{width:27.954000px;}
._7{width:51.480900px;}
._1e{width:56.991300px;}
._1d{width:61.728300px;}
._e{width:66.474300px;}
._11{width:77.557200px;}
._3{width:91.809000px;}
._13{width:107.248800px;}
._10{width:109.489800px;}
._1b{width:169.440600px;}
._c{width:213.360000px;}
._19{width:241.458000px;}
._b{width:262.575600px;}
._a{width:264.856200px;}
._16{width:274.083600px;}
._15{width:276.360000px;}
._20{width:285.591600px;}
._1a{width:293.235600px;}
._d{width:313.983600px;}
._17{width:328.141800px;}
._12{width:337.369200px;}
._1f{width:344.374800px;}
._f{width:371.809200px;}
._1c{width:483.898800px;}
._18{width:527.175600px;}
._9{width:550.578000px;}
._14{width:562.081800px;}
._0{width:1685.406000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.360000px;}
.fsd{font-size:27.300000px;}
.fs6{font-size:29.280000px;}
.fsc{font-size:34.140000px;}
.fs8{font-size:37.500000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:52.500000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:61.800000px;}
.fsa{font-size:69.000000px;}
.fs4{font-size:99.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:48.990000px;}
.yeb{bottom:93.600000px;}
.yb6{bottom:94.094625px;}
.y142{bottom:102.919125px;}
.y113{bottom:104.654437px;}
.y36{bottom:105.134062px;}
.y3f{bottom:105.134438px;}
.yea{bottom:105.600000px;}
.y81{bottom:106.319625px;}
.yb5{bottom:108.344625px;}
.ye9{bottom:117.600000px;}
.y141{bottom:117.918750px;}
.y80{bottom:120.570000px;}
.y112{bottom:121.904625px;}
.y35{bottom:122.384250px;}
.y3e{bottom:122.384625px;}
.yb4{bottom:122.595000px;}
.ye8{bottom:129.600000px;}
.y140{bottom:132.918375px;}
.y70{bottom:134.504625px;}
.ye7{bottom:137.924550px;}
.y111{bottom:139.154812px;}
.y34{bottom:139.634438px;}
.y3d{bottom:139.634813px;}
.y13f{bottom:147.918000px;}
.y6f{bottom:148.755000px;}
.ye6{bottom:153.600000px;}
.y110{bottom:156.405000px;}
.y3c{bottom:156.884062px;}
.y33{bottom:156.884625px;}
.y13e{bottom:162.917625px;}
.ye5{bottom:165.600225px;}
.y3b{bottom:174.134250px;}
.y32{bottom:174.134813px;}
.y13d{bottom:177.917250px;}
.ye4{bottom:182.174700px;}
.y31{bottom:191.384438px;}
.y13c{bottom:192.916875px;}
.y10f{bottom:197.160000px;}
.ye3{bottom:202.425750px;}
.y13b{bottom:207.916500px;}
.y30{bottom:208.634625px;}
.ye0{bottom:222.674550px;}
.y13a{bottom:222.916125px;}
.y2f{bottom:225.884813px;}
.ydf{bottom:234.674700px;}
.ye2{bottom:234.675000px;}
.ye1{bottom:234.675450px;}
.y139{bottom:237.915750px;}
.y10e{bottom:242.653875px;}
.y3a{bottom:243.132938px;}
.y2e{bottom:243.135000px;}
.y138{bottom:252.915375px;}
.yde{bottom:254.924700px;}
.y10d{bottom:259.904062px;}
.y39{bottom:260.383125px;}
.y137{bottom:267.915000px;}
.ydd{bottom:275.175000px;}
.y10c{bottom:277.154250px;}
.y38{bottom:277.633312px;}
.y2d{bottom:284.580000px;}
.y10b{bottom:294.404437px;}
.y37{bottom:294.883500px;}
.y136{bottom:295.410000px;}
.ydc{bottom:295.425300px;}
.y10a{bottom:311.654625px;}
.yda{bottom:315.674550px;}
.yd9{bottom:327.674700px;}
.ydb{bottom:327.675000px;}
.y2c{bottom:328.319625px;}
.y109{bottom:328.904812px;}
.y4c{bottom:339.025500px;}
.y135{bottom:339.165375px;}
.y2b{bottom:342.570000px;}
.y108{bottom:346.153875px;}
.yd8{bottom:347.925000px;}
.y4b{bottom:353.275875px;}
.y134{bottom:354.165000px;}
.y107{bottom:363.404062px;}
.y4a{bottom:367.526250px;}
.yd1{bottom:370.425000px;}
.y2a{bottom:370.932000px;}
.yd7{bottom:376.725000px;}
.y106{bottom:380.654250px;}
.y133{bottom:381.660000px;}
.y49{bottom:381.776625px;}
.yd4{bottom:384.674550px;}
.y29{bottom:385.182375px;}
.yd6{bottom:392.864550px;}
.y48{bottom:396.027000px;}
.y105{bottom:397.904437px;}
.yd3{bottom:397.994550px;}
.y28{bottom:399.432750px;}
.yd5{bottom:404.865000px;}
.yd2{bottom:408.675000px;}
.y47{bottom:410.277375px;}
.y27{bottom:413.683125px;}
.y104{bottom:415.154625px;}
.y46{bottom:424.527750px;}
.y132{bottom:425.415000px;}
.y131{bottom:425.417250px;}
.y52{bottom:425.430000px;}
.y26{bottom:427.933500px;}
.y103{bottom:432.404812px;}
.y45{bottom:438.778125px;}
.y130{bottom:440.416875px;}
.y25{bottom:442.183875px;}
.y102{bottom:449.655000px;}
.y44{bottom:453.028500px;}
.y12f{bottom:455.416500px;}
.y24{bottom:456.434250px;}
.yb3{bottom:466.899150px;}
.y97{bottom:466.904025px;}
.y101{bottom:466.904437px;}
.y43{bottom:467.278875px;}
.y12e{bottom:470.416125px;}
.y23{bottom:470.684625px;}
.y18a{bottom:478.913250px;}
.y42{bottom:481.529250px;}
.yb2{bottom:484.149337px;}
.y96{bottom:484.154212px;}
.y100{bottom:484.154625px;}
.y22{bottom:484.931250px;}
.y12d{bottom:485.415750px;}
.y165{bottom:493.908900px;}
.y189{bottom:493.912875px;}
.y41{bottom:495.779625px;}
.y21{bottom:499.181625px;}
.y12c{bottom:500.415375px;}
.yb1{bottom:501.399525px;}
.y95{bottom:501.404400px;}
.yff{bottom:501.404812px;}
.y164{bottom:508.908525px;}
.y188{bottom:508.912500px;}
.y40{bottom:510.030000px;}
.y20{bottom:513.432000px;}
.y12b{bottom:515.415000px;}
.yb0{bottom:518.649713px;}
.y94{bottom:518.654587px;}
.yfe{bottom:518.654812px;}
.y163{bottom:523.908150px;}
.y187{bottom:523.912125px;}
.y1f{bottom:527.682375px;}
.yd0{bottom:531.075000px;}
.yaf{bottom:535.899900px;}
.yfd{bottom:535.904250px;}
.y93{bottom:535.904775px;}
.y162{bottom:538.907775px;}
.y186{bottom:538.911750px;}
.y1e{bottom:541.932750px;}
.y12a{bottom:542.910000px;}
.yae{bottom:553.150088px;}
.yfc{bottom:553.154437px;}
.y6e{bottom:553.154625px;}
.y92{bottom:553.154962px;}
.y161{bottom:553.907400px;}
.y185{bottom:553.911375px;}
.y1d{bottom:556.183125px;}
.y160{bottom:568.907025px;}
.y184{bottom:568.911000px;}
.yad{bottom:570.400275px;}
.yc0{bottom:570.402938px;}
.ycc{bottom:570.403650px;}
.yfb{bottom:570.404625px;}
.y6d{bottom:570.404812px;}
.y91{bottom:570.405150px;}
.y1c{bottom:570.433500px;}
.y15f{bottom:583.906650px;}
.y183{bottom:583.910625px;}
.y1b{bottom:584.683875px;}
.yac{bottom:587.650463px;}
.y129{bottom:587.650500px;}
.ybf{bottom:587.653125px;}
.ycb{bottom:587.653837px;}
.y6c{bottom:587.654025px;}
.yfa{bottom:587.654812px;}
.y15e{bottom:598.906275px;}
.y182{bottom:598.910250px;}
.y1a{bottom:598.934250px;}
.yab{bottom:604.900650px;}
.y128{bottom:604.900687px;}
.ybe{bottom:604.903312px;}
.yca{bottom:604.904025px;}
.y6b{bottom:604.904212px;}
.yf9{bottom:604.904812px;}
.y90{bottom:606.659475px;}
.y19{bottom:613.184625px;}
.y15d{bottom:613.905900px;}
.y181{bottom:613.909875px;}
.yaa{bottom:622.150838px;}
.y127{bottom:622.150875px;}
.ybd{bottom:622.153500px;}
.yc9{bottom:622.154212px;}
.y6a{bottom:622.154400px;}
.yf8{bottom:622.154812px;}
.y18{bottom:627.435000px;}
.y8f{bottom:628.410000px;}
.y15c{bottom:628.905525px;}
.y180{bottom:628.909500px;}
.ya9{bottom:639.401025px;}
.y126{bottom:639.401062px;}
.ybc{bottom:639.403687px;}
.yc8{bottom:639.404400px;}
.y69{bottom:639.404587px;}
.y17f{bottom:643.909125px;}
.y15b{bottom:643.914525px;}
.y17{bottom:655.635150px;}
.ya8{bottom:656.651213px;}
.y125{bottom:656.651250px;}
.ybb{bottom:656.653875px;}
.yc7{bottom:656.654587px;}
.y68{bottom:656.654775px;}
.y17e{bottom:658.908750px;}
.y15a{bottom:658.914150px;}
.y16{bottom:667.635150px;}
.ya7{bottom:673.901400px;}
.y124{bottom:673.901437px;}
.yba{bottom:673.904063px;}
.yc6{bottom:673.904775px;}
.y67{bottom:673.904962px;}
.y17d{bottom:673.908375px;}
.y159{bottom:673.913775px;}
.y15{bottom:679.635150px;}
.y17c{bottom:688.908000px;}
.y158{bottom:688.913400px;}
.ya6{bottom:691.151588px;}
.y123{bottom:691.151625px;}
.yb9{bottom:691.154250px;}
.y66{bottom:691.154437px;}
.y8e{bottom:691.154625px;}
.yc5{bottom:691.154962px;}
.y14{bottom:691.635150px;}
.y17b{bottom:703.907625px;}
.y157{bottom:703.913025px;}
.ya5{bottom:708.401775px;}
.yc4{bottom:708.401813px;}
.yb8{bottom:708.404437px;}
.y65{bottom:708.404625px;}
.y8d{bottom:708.404812px;}
.y17a{bottom:718.907250px;}
.y156{bottom:718.912650px;}
.ya4{bottom:725.651963px;}
.yc3{bottom:725.652000px;}
.y8c{bottom:725.654625px;}
.y64{bottom:725.654812px;}
.y179{bottom:733.906875px;}
.y155{bottom:733.912275px;}
.ya3{bottom:742.902150px;}
.yc2{bottom:742.902187px;}
.y7f{bottom:742.904775px;}
.y63{bottom:742.904812px;}
.y178{bottom:748.906500px;}
.y154{bottom:748.911900px;}
.ya2{bottom:760.152338px;}
.yc1{bottom:760.152375px;}
.y62{bottom:760.154250px;}
.y8b{bottom:760.154588px;}
.yf7{bottom:760.154775px;}
.y7e{bottom:760.154963px;}
.yb7{bottom:760.155000px;}
.y177{bottom:763.906125px;}
.y153{bottom:763.911525px;}
.y13{bottom:768.120150px;}
.ya1{bottom:777.402525px;}
.y122{bottom:777.402562px;}
.y7d{bottom:777.402938px;}
.y61{bottom:777.404438px;}
.y8a{bottom:777.404775px;}
.yf6{bottom:777.404963px;}
.y176{bottom:778.905750px;}
.y152{bottom:778.911150px;}
.y12{bottom:780.120150px;}
.y11{bottom:792.120150px;}
.y175{bottom:793.905375px;}
.y151{bottom:793.910775px;}
.ya0{bottom:794.652713px;}
.y121{bottom:794.652750px;}
.y7c{bottom:794.653125px;}
.yf5{bottom:794.654213px;}
.y60{bottom:794.654625px;}
.y89{bottom:794.654963px;}
.ycf{bottom:804.299400px;}
.y10{bottom:807.405150px;}
.y150{bottom:808.910400px;}
.y174{bottom:808.914525px;}
.y9f{bottom:811.902900px;}
.y120{bottom:811.902937px;}
.y7b{bottom:811.903313px;}
.yf4{bottom:811.904400px;}
.y88{bottom:811.904588px;}
.y5f{bottom:811.904813px;}
.yf{bottom:816.120150px;}
.yce{bottom:818.549775px;}
.y14f{bottom:823.910025px;}
.y173{bottom:823.914150px;}
.ye{bottom:828.120150px;}
.y9e{bottom:829.153088px;}
.y11f{bottom:829.153125px;}
.y7a{bottom:829.153500px;}
.y5e{bottom:829.154213px;}
.yf3{bottom:829.154588px;}
.y87{bottom:829.154775px;}
.ycd{bottom:832.800150px;}
.y14e{bottom:838.909650px;}
.y172{bottom:838.913775px;}
.yd{bottom:840.120150px;}
.y9d{bottom:846.403275px;}
.y11e{bottom:846.403312px;}
.y79{bottom:846.403688px;}
.y5d{bottom:846.404400px;}
.yf2{bottom:846.404775px;}
.y86{bottom:846.404963px;}
.y14d{bottom:853.909275px;}
.y171{bottom:853.913400px;}
.yc{bottom:855.405150px;}
.y9c{bottom:863.653463px;}
.y11d{bottom:863.653500px;}
.y78{bottom:863.653875px;}
.y85{bottom:863.654400px;}
.y5c{bottom:863.654588px;}
.yf1{bottom:863.654963px;}
.y14c{bottom:868.908900px;}
.y170{bottom:868.913025px;}
.y9b{bottom:880.903650px;}
.y11c{bottom:880.903687px;}
.y77{bottom:880.904063px;}
.y84{bottom:880.904588px;}
.y5b{bottom:880.904775px;}
.yf0{bottom:880.904963px;}
.yb{bottom:881.625000px;}
.y14b{bottom:883.908525px;}
.y16f{bottom:883.912650px;}
.y9a{bottom:898.153838px;}
.y11b{bottom:898.153875px;}
.y76{bottom:898.154250px;}
.yef{bottom:898.154588px;}
.y83{bottom:898.154775px;}
.y5a{bottom:898.154963px;}
.ya{bottom:898.860525px;}
.y14a{bottom:898.908150px;}
.y16e{bottom:898.912275px;}
.y149{bottom:913.907775px;}
.y16d{bottom:913.911900px;}
.y99{bottom:915.404025px;}
.y11a{bottom:915.404063px;}
.y75{bottom:915.404438px;}
.y59{bottom:915.404775px;}
.y82{bottom:915.404963px;}
.y9{bottom:916.110525px;}
.y148{bottom:928.907400px;}
.y16c{bottom:928.911525px;}
.y98{bottom:932.654213px;}
.y119{bottom:932.654250px;}
.y74{bottom:932.654625px;}
.y58{bottom:932.654963px;}
.y8{bottom:933.360525px;}
.y147{bottom:943.907025px;}
.y16b{bottom:943.911150px;}
.y57{bottom:949.904400px;}
.y118{bottom:949.904437px;}
.yee{bottom:949.904588px;}
.y73{bottom:949.904813px;}
.y7{bottom:950.610150px;}
.y146{bottom:958.906650px;}
.y16a{bottom:958.910775px;}
.y56{bottom:967.154588px;}
.y117{bottom:967.154625px;}
.yed{bottom:967.154775px;}
.y72{bottom:967.155000px;}
.y145{bottom:973.906275px;}
.y169{bottom:973.910400px;}
.y55{bottom:984.404775px;}
.y116{bottom:984.404812px;}
.yec{bottom:984.404963px;}
.y6{bottom:986.160450px;}
.y144{bottom:988.905900px;}
.y168{bottom:988.910025px;}
.y71{bottom:997.154625px;}
.y54{bottom:1001.654963px;}
.y115{bottom:1001.655000px;}
.y143{bottom:1003.905525px;}
.y167{bottom:1003.909650px;}
.y5{bottom:1013.910150px;}
.y53{bottom:1018.905150px;}
.y114{bottom:1018.905188px;}
.y166{bottom:1018.909275px;}
.y4{bottom:1070.490000px;}
.y3{bottom:1070.760150px;}
.y51{bottom:1108.290000px;}
.y1{bottom:1122.030000px;}
.y50{bottom:1123.290000px;}
.y4f{bottom:1138.289550px;}
.y4e{bottom:1150.290000px;}
.y4d{bottom:1162.290000px;}
.hc{height:20.434805px;}
.h2d{height:22.901074px;}
.hd{height:31.457520px;}
.h3{height:35.232422px;}
.h28{height:35.233622px;}
.h2c{height:37.598074px;}
.h2b{height:37.599274px;}
.h29{height:37.599874px;}
.h25{height:37.601074px;}
.h2a{height:37.602274px;}
.h27{height:37.602874px;}
.hb{height:37.749023px;}
.h1e{height:37.750523px;}
.hf{height:37.764023px;}
.h15{height:39.559570px;}
.he{height:40.265625px;}
.h7{height:40.281431px;}
.ha{height:40.282631px;}
.h8{height:40.339931px;}
.h9{height:40.340531px;}
.h26{height:40.512422px;}
.h34{height:42.385254px;}
.h2{height:45.298828px;}
.h11{height:49.449463px;}
.h2f{height:49.450213px;}
.h2e{height:49.451713px;}
.h31{height:49.452463px;}
.h30{height:49.454713px;}
.h23{height:49.462813px;}
.h4{height:49.792031px;}
.h17{height:50.062500px;}
.h33{height:50.332031px;}
.h12{height:50.518529px;}
.h14{height:50.520029px;}
.h13{height:50.524529px;}
.h21{height:50.576279px;}
.h1b{height:50.577029px;}
.h20{height:50.577179px;}
.h19{height:50.577779px;}
.h22{height:50.577929px;}
.h1c{height:50.578529px;}
.h18{height:50.579279px;}
.h1a{height:50.580029px;}
.h1d{height:50.580179px;}
.h32{height:50.580779px;}
.h24{height:50.581679px;}
.h1f{height:50.584529px;}
.h5{height:51.841992px;}
.h16{height:56.513672px;}
.h10{height:57.881836px;}
.h6{height:83.047852px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:76.530000px;}
.x4{left:80.220000px;}
.x7{left:81.780000px;}
.x8{left:82.920000px;}
.x20{left:86.505000px;}
.x17{left:91.035000px;}
.xa{left:97.800000px;}
.x21{left:106.305000px;}
.x9{left:114.809250px;}
.xd{left:119.865000px;}
.x1a{left:157.050450px;}
.x10{left:162.765000px;}
.x6{left:198.315000px;}
.x3{left:233.850000px;}
.x2{left:285.720000px;}
.x11{left:315.405000px;}
.x1b{left:401.759550px;}
.x12{left:404.820000px;}
.x1{left:442.080000px;}
.x1f{left:443.100000px;}
.xb{left:459.210938px;}
.x22{left:462.673500px;}
.xc{left:465.585000px;}
.x1d{left:469.185000px;}
.xf{left:480.480000px;}
.x1e{left:488.970375px;}
.x13{left:499.110450px;}
.x1c{left:561.210150px;}
.x18{left:587.414850px;}
.x15{left:594.314700px;}
.x14{left:599.805150px;}
.x19{left:677.609850px;}
.x16{left:687.570000px;}
.xe{left:888.000000px;}
@media print{
.va{vertical-align:-13.067467pt;}
.v2{vertical-align:-11.680000pt;}
.v6{vertical-align:-9.802000pt;}
.v3{vertical-align:-8.413333pt;}
.v9{vertical-align:-4.691733pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.693333pt;}
.v5{vertical-align:8.426667pt;}
.v7{vertical-align:13.066667pt;}
.v1{vertical-align:13.972800pt;}
.v4{vertical-align:16.322000pt;}
.ls33{letter-spacing:-4.136000pt;}
.ls6{letter-spacing:-1.653493pt;}
.ls10{letter-spacing:-0.480667pt;}
.ls11{letter-spacing:-0.428000pt;}
.ls15{letter-spacing:-0.400000pt;}
.ls7{letter-spacing:-0.028629pt;}
.ls35{letter-spacing:-0.028000pt;}
.ls34{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:-0.004267pt;}
.lsf{letter-spacing:-0.004000pt;}
.lsb{letter-spacing:-0.003733pt;}
.ls2d{letter-spacing:-0.002427pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004000pt;}
.lsc{letter-spacing:0.004667pt;}
.ls19{letter-spacing:0.005333pt;}
.ls17{letter-spacing:0.006000pt;}
.ls9{letter-spacing:0.006133pt;}
.lse{letter-spacing:0.008000pt;}
.ls23{letter-spacing:0.009067pt;}
.ls14{letter-spacing:0.009280pt;}
.lsd{letter-spacing:0.009813pt;}
.ls13{letter-spacing:0.012000pt;}
.ls2b{letter-spacing:0.014933pt;}
.ls2a{letter-spacing:0.016533pt;}
.ls12{letter-spacing:0.018400pt;}
.ls2e{letter-spacing:0.020213pt;}
.ls1e{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.028000pt;}
.ls2{letter-spacing:0.029280pt;}
.ls3{letter-spacing:0.029813pt;}
.ls2c{letter-spacing:0.031200pt;}
.ls29{letter-spacing:0.032267pt;}
.ls1b{letter-spacing:0.035733pt;}
.ls22{letter-spacing:0.036267pt;}
.ls21{letter-spacing:0.037333pt;}
.ls1c{letter-spacing:0.038400pt;}
.ls16{letter-spacing:0.042000pt;}
.ls28{letter-spacing:0.045493pt;}
.ls39{letter-spacing:0.240000pt;}
.ls38{letter-spacing:0.932000pt;}
.ls31{letter-spacing:2.052000pt;}
.ls40{letter-spacing:2.108000pt;}
.ls41{letter-spacing:2.212000pt;}
.ls44{letter-spacing:2.908000pt;}
.ls43{letter-spacing:2.960000pt;}
.ls30{letter-spacing:3.760000pt;}
.ls42{letter-spacing:5.680000pt;}
.ls3c{letter-spacing:5.892000pt;}
.ls3d{letter-spacing:6.052000pt;}
.ls1{letter-spacing:6.432533pt;}
.ls3b{letter-spacing:6.748000pt;}
.ls3a{letter-spacing:7.440000pt;}
.lsa{letter-spacing:7.470400pt;}
.ls0{letter-spacing:7.904960pt;}
.ls32{letter-spacing:8.828000pt;}
.ls3e{letter-spacing:9.200000pt;}
.ls2f{letter-spacing:9.308000pt;}
.ls3f{letter-spacing:10.212000pt;}
.ls37{letter-spacing:13.788000pt;}
.ls36{letter-spacing:20.988000pt;}
.ls24{letter-spacing:170.320267pt;}
.ls27{letter-spacing:194.484533pt;}
.ls26{letter-spacing:196.511200pt;}
.ls1a{letter-spacing:197.222667pt;}
.ls1f{letter-spacing:199.445600pt;}
.ls20{letter-spacing:238.129333pt;}
.ls1d{letter-spacing:288.511733pt;}
.ls25{letter-spacing:445.456533pt;}
.ws43{word-spacing:-46.666667pt;}
.ws4{word-spacing:-40.000000pt;}
.wscc{word-spacing:-37.333333pt;}
.ws44{word-spacing:-11.666667pt;}
.ws3{word-spacing:-10.160000pt;}
.wsf2{word-spacing:-10.000000pt;}
.ws1{word-spacing:-9.482667pt;}
.ws45{word-spacing:-9.480000pt;}
.ws9{word-spacing:-9.355147pt;}
.ws5{word-spacing:-9.200000pt;}
.ws80{word-spacing:-9.052000pt;}
.wsd0{word-spacing:-8.848000pt;}
.wsd2{word-spacing:-8.586667pt;}
.ws7{word-spacing:-7.586667pt;}
.ws2{word-spacing:-6.610773pt;}
.ws6{word-spacing:-6.168320pt;}
.wscd{word-spacing:-5.751200pt;}
.wsf{word-spacing:-4.445355pt;}
.ws54{word-spacing:-2.739333pt;}
.ws62{word-spacing:-2.734667pt;}
.ws61{word-spacing:-2.725333pt;}
.ws60{word-spacing:-2.711333pt;}
.ws102{word-spacing:-2.179333pt;}
.ws10{word-spacing:-2.086667pt;}
.ws3e{word-spacing:-2.072000pt;}
.wsfe{word-spacing:-2.039333pt;}
.ws40{word-spacing:-2.036000pt;}
.wsff{word-spacing:-2.020667pt;}
.wsfd{word-spacing:-1.978667pt;}
.wse5{word-spacing:-1.922667pt;}
.wse8{word-spacing:-1.904000pt;}
.wsa6{word-spacing:-1.834000pt;}
.ws8c{word-spacing:-1.778000pt;}
.ws8b{word-spacing:-1.773333pt;}
.ws74{word-spacing:-1.750000pt;}
.wsc0{word-spacing:-1.661333pt;}
.ws73{word-spacing:-1.656667pt;}
.ws120{word-spacing:-1.647333pt;}
.ws121{word-spacing:-1.642667pt;}
.ws99{word-spacing:-1.638000pt;}
.ws9a{word-spacing:-1.619333pt;}
.ws10c{word-spacing:-1.572667pt;}
.ws3d{word-spacing:-1.572000pt;}
.ws141{word-spacing:-1.540000pt;}
.ws37{word-spacing:-1.437333pt;}
.ws146{word-spacing:-1.344000pt;}
.ws177{word-spacing:-1.328000pt;}
.ws39{word-spacing:-1.320667pt;}
.ws179{word-spacing:-1.308000pt;}
.ws145{word-spacing:-1.297333pt;}
.ws178{word-spacing:-1.296000pt;}
.ws17a{word-spacing:-1.292000pt;}
.ws138{word-spacing:-1.288000pt;}
.ws38{word-spacing:-1.274000pt;}
.wsda{word-spacing:-1.269333pt;}
.wsea{word-spacing:-1.260000pt;}
.ws7e{word-spacing:-1.255333pt;}
.wsc4{word-spacing:-1.213333pt;}
.wsc3{word-spacing:-1.199333pt;}
.wse0{word-spacing:-1.180667pt;}
.ws46{word-spacing:-1.166667pt;}
.ws12f{word-spacing:-1.134000pt;}
.ws12d{word-spacing:-1.124667pt;}
.ws28{word-spacing:-1.110667pt;}
.ws29{word-spacing:-1.106000pt;}
.ws58{word-spacing:-1.068667pt;}
.wsbc{word-spacing:-1.036000pt;}
.ws3f{word-spacing:-1.032000pt;}
.wsa9{word-spacing:-0.994000pt;}
.ws41{word-spacing:-0.964000pt;}
.wsef{word-spacing:-0.896000pt;}
.wsee{word-spacing:-0.877333pt;}
.ws19f{word-spacing:-0.872000pt;}
.wseb{word-spacing:-0.844000pt;}
.ws19e{word-spacing:-0.840000pt;}
.ws1a1{word-spacing:-0.836000pt;}
.ws14c{word-spacing:-0.832000pt;}
.ws1a0{word-spacing:-0.828000pt;}
.wsec{word-spacing:-0.824000pt;}
.ws122{word-spacing:-0.728000pt;}
.ws1b6{word-spacing:-0.720000pt;}
.ws139{word-spacing:-0.704667pt;}
.ws111{word-spacing:-0.681333pt;}
.ws110{word-spacing:-0.648667pt;}
.wsd8{word-spacing:-0.639333pt;}
.ws8e{word-spacing:-0.630000pt;}
.ws52{word-spacing:-0.592667pt;}
.ws172{word-spacing:-0.556000pt;}
.wsad{word-spacing:-0.471333pt;}
.ws21{word-spacing:-0.408000pt;}
.ws53{word-spacing:-0.336000pt;}
.wsf9{word-spacing:-0.294000pt;}
.ws86{word-spacing:-0.284667pt;}
.wsf3{word-spacing:-0.275333pt;}
.wsf4{word-spacing:-0.261333pt;}
.wsf8{word-spacing:-0.252000pt;}
.ws97{word-spacing:-0.247333pt;}
.ws96{word-spacing:-0.242667pt;}
.ws85{word-spacing:-0.228667pt;}
.ws147{word-spacing:-0.212000pt;}
.ws142{word-spacing:-0.200667pt;}
.ws115{word-spacing:-0.144667pt;}
.wsc8{word-spacing:-0.120000pt;}
.wsd6{word-spacing:-0.112000pt;}
.wsc7{word-spacing:-0.088000pt;}
.ws83{word-spacing:-0.084000pt;}
.wsc9{word-spacing:-0.080000pt;}
.ws133{word-spacing:-0.051333pt;}
.ws190{word-spacing:-0.048000pt;}
.wsf0{word-spacing:-0.046667pt;}
.wsf1{word-spacing:-0.040000pt;}
.ws0{word-spacing:-0.037333pt;}
.wsc6{word-spacing:-0.028000pt;}
.ws164{word-spacing:-0.024000pt;}
.ws152{word-spacing:-0.020000pt;}
.wsed{word-spacing:-0.014933pt;}
.ws12{word-spacing:-0.013333pt;}
.ws153{word-spacing:-0.012000pt;}
.ws7f{word-spacing:-0.008000pt;}
.ws11{word-spacing:-0.006667pt;}
.ws127{word-spacing:-0.006133pt;}
.ws3c{word-spacing:-0.004000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.004000pt;}
.wsc5{word-spacing:0.008000pt;}
.ws42{word-spacing:0.011200pt;}
.wse{word-spacing:0.016000pt;}
.ws15a{word-spacing:0.020000pt;}
.wsa{word-spacing:0.024000pt;}
.wsb{word-spacing:0.028000pt;}
.wsd{word-spacing:0.036000pt;}
.ws63{word-spacing:0.037333pt;}
.wsc{word-spacing:0.044000pt;}
.ws6d{word-spacing:0.051333pt;}
.ws3a{word-spacing:0.098000pt;}
.ws168{word-spacing:0.168000pt;}
.ws8d{word-spacing:0.196000pt;}
.ws174{word-spacing:0.232000pt;}
.ws175{word-spacing:0.236000pt;}
.ws197{word-spacing:0.244000pt;}
.wsbe{word-spacing:0.256667pt;}
.ws30{word-spacing:0.308000pt;}
.ws1ab{word-spacing:0.352000pt;}
.wsaf{word-spacing:0.382667pt;}
.wsf5{word-spacing:0.392000pt;}
.ws15{word-spacing:0.432000pt;}
.ws1a7{word-spacing:0.500000pt;}
.ws11d{word-spacing:0.504000pt;}
.wsc2{word-spacing:0.522667pt;}
.ws20{word-spacing:0.576000pt;}
.ws59{word-spacing:0.625333pt;}
.ws12e{word-spacing:0.662667pt;}
.ws109{word-spacing:0.714000pt;}
.ws108{word-spacing:0.742000pt;}
.ws136{word-spacing:0.784000pt;}
.wse7{word-spacing:0.798000pt;}
.ws17b{word-spacing:0.832000pt;}
.ws19d{word-spacing:0.872000pt;}
.ws16b{word-spacing:0.876000pt;}
.ws16d{word-spacing:0.888000pt;}
.ws35{word-spacing:0.910000pt;}
.ws16c{word-spacing:0.932000pt;}
.ws154{word-spacing:0.952000pt;}
.ws15f{word-spacing:0.972000pt;}
.ws10e{word-spacing:0.975333pt;}
.ws34{word-spacing:1.040667pt;}
.wsa5{word-spacing:1.120000pt;}
.ws16a{word-spacing:1.132000pt;}
.ws11e{word-spacing:1.134000pt;}
.ws2a{word-spacing:1.166667pt;}
.ws19{word-spacing:1.184000pt;}
.ws12c{word-spacing:1.190000pt;}
.ws12b{word-spacing:1.227333pt;}
.ws137{word-spacing:1.232000pt;}
.ws114{word-spacing:1.246000pt;}
.ws113{word-spacing:1.269333pt;}
.ws9b{word-spacing:1.297333pt;}
.ws75{word-spacing:1.330000pt;}
.ws12a{word-spacing:1.344000pt;}
.ws3b{word-spacing:1.484000pt;}
.ws11f{word-spacing:1.516667pt;}
.ws66{word-spacing:1.563333pt;}
.ws105{word-spacing:1.596000pt;}
.ws89{word-spacing:1.656667pt;}
.ws176{word-spacing:1.668000pt;}
.ws2d{word-spacing:1.675333pt;}
.ws11c{word-spacing:1.689333pt;}
.ws1b{word-spacing:1.696000pt;}
.wsdb{word-spacing:1.768667pt;}
.ws13b{word-spacing:1.801333pt;}
.wsb1{word-spacing:1.913333pt;}
.ws31{word-spacing:1.927333pt;}
.ws77{word-spacing:1.932000pt;}
.ws196{word-spacing:2.000000pt;}
.ws195{word-spacing:2.008000pt;}
.ws26{word-spacing:2.058000pt;}
.ws159{word-spacing:2.064000pt;}
.ws157{word-spacing:2.084000pt;}
.wsfa{word-spacing:2.090667pt;}
.ws158{word-spacing:2.108000pt;}
.ws19c{word-spacing:2.156000pt;}
.ws19b{word-spacing:2.160000pt;}
.ws18{word-spacing:2.164000pt;}
.ws160{word-spacing:2.212000pt;}
.ws1af{word-spacing:2.220000pt;}
.ws161{word-spacing:2.228000pt;}
.ws131{word-spacing:2.230667pt;}
.ws132{word-spacing:2.235333pt;}
.ws1ae{word-spacing:2.240000pt;}
.ws6e{word-spacing:2.282000pt;}
.ws14a{word-spacing:2.328000pt;}
.ws1b0{word-spacing:2.340000pt;}
.ws173{word-spacing:2.348000pt;}
.wsd7{word-spacing:2.473333pt;}
.ws2b{word-spacing:2.487333pt;}
.ws9f{word-spacing:2.566667pt;}
.ws13d{word-spacing:2.571333pt;}
.ws7a{word-spacing:2.641333pt;}
.ws91{word-spacing:2.646000pt;}
.ws7d{word-spacing:2.753333pt;}
.ws82{word-spacing:2.842000pt;}
.ws81{word-spacing:2.870000pt;}
.ws1b7{word-spacing:2.920000pt;}
.wsba{word-spacing:2.977333pt;}
.ws107{word-spacing:3.000667pt;}
.ws106{word-spacing:3.005333pt;}
.ws57{word-spacing:3.052000pt;}
.ws72{word-spacing:3.238667pt;}
.ws1f{word-spacing:3.272000pt;}
.ws1e{word-spacing:3.280000pt;}
.ws4b{word-spacing:3.285333pt;}
.ws116{word-spacing:3.294667pt;}
.ws94{word-spacing:3.350667pt;}
.ws93{word-spacing:3.402000pt;}
.ws64{word-spacing:3.420667pt;}
.ws13e{word-spacing:3.495333pt;}
.ws9d{word-spacing:3.523333pt;}
.ws13a{word-spacing:3.537333pt;}
.ws151{word-spacing:3.564000pt;}
.ws150{word-spacing:3.576000pt;}
.ws9c{word-spacing:3.588667pt;}
.ws70{word-spacing:3.621333pt;}
.ws25{word-spacing:3.658667pt;}
.ws156{word-spacing:3.760000pt;}
.ws155{word-spacing:3.768000pt;}
.ws1c{word-spacing:3.860000pt;}
.ws1d{word-spacing:3.864000pt;}
.ws4e{word-spacing:3.929333pt;}
.wsb5{word-spacing:3.934000pt;}
.wsa4{word-spacing:3.962000pt;}
.wsdd{word-spacing:3.980667pt;}
.wse2{word-spacing:4.167333pt;}
.ws2c{word-spacing:4.176667pt;}
.wse1{word-spacing:4.209333pt;}
.ws14{word-spacing:4.228000pt;}
.ws36{word-spacing:4.251333pt;}
.wsae{word-spacing:4.256000pt;}
.ws169{word-spacing:4.260000pt;}
.ws1ac{word-spacing:4.296000pt;}
.ws104{word-spacing:4.372667pt;}
.ws134{word-spacing:4.396000pt;}
.wsa8{word-spacing:4.433333pt;}
.ws95{word-spacing:4.452000pt;}
.wsa1{word-spacing:4.456667pt;}
.ws67{word-spacing:4.666667pt;}
.ws16{word-spacing:4.704000pt;}
.ws193{word-spacing:4.744000pt;}
.wsfc{word-spacing:4.797333pt;}
.ws56{word-spacing:4.806667pt;}
.ws55{word-spacing:4.825333pt;}
.ws118{word-spacing:4.909333pt;}
.wse3{word-spacing:4.928000pt;}
.wsa2{word-spacing:5.128667pt;}
.ws171{word-spacing:5.204000pt;}
.ws13{word-spacing:5.240000pt;}
.ws69{word-spacing:5.240667pt;}
.ws68{word-spacing:5.245333pt;}
.ws71{word-spacing:5.329333pt;}
.ws6f{word-spacing:5.679333pt;}
.ws1b3{word-spacing:5.680000pt;}
.ws1b4{word-spacing:5.712000pt;}
.ws1b2{word-spacing:5.716000pt;}
.ws1b1{word-spacing:5.756000pt;}
.ws10d{word-spacing:5.777333pt;}
.ws17{word-spacing:5.840000pt;}
.ws1ad{word-spacing:5.856000pt;}
.ws183{word-spacing:5.884000pt;}
.ws184{word-spacing:5.892000pt;}
.ws79{word-spacing:5.894000pt;}
.ws78{word-spacing:5.903333pt;}
.ws1a3{word-spacing:5.908000pt;}
.ws13f{word-spacing:5.912667pt;}
.ws185{word-spacing:5.924000pt;}
.ws1a2{word-spacing:5.928000pt;}
.ws10b{word-spacing:6.001333pt;}
.ws10a{word-spacing:6.006000pt;}
.ws186{word-spacing:6.040000pt;}
.ws187{word-spacing:6.052000pt;}
.ws188{word-spacing:6.056000pt;}
.ws123{word-spacing:6.276667pt;}
.wsa0{word-spacing:6.304667pt;}
.ws135{word-spacing:6.416667pt;}
.ws65{word-spacing:6.486667pt;}
.ws2e{word-spacing:6.514667pt;}
.ws1a{word-spacing:6.516000pt;}
.ws182{word-spacing:6.748000pt;}
.ws181{word-spacing:6.768000pt;}
.ws180{word-spacing:6.776000pt;}
.ws117{word-spacing:6.827333pt;}
.ws4d{word-spacing:6.855333pt;}
.ws4c{word-spacing:6.860000pt;}
.ws8a{word-spacing:6.869333pt;}
.wsd9{word-spacing:6.897333pt;}
.ws13c{word-spacing:6.920667pt;}
.wsb9{word-spacing:6.953333pt;}
.ws19a{word-spacing:6.960000pt;}
.wsb8{word-spacing:6.962667pt;}
.wsa7{word-spacing:6.976667pt;}
.ws199{word-spacing:6.992000pt;}
.wsb0{word-spacing:7.140000pt;}
.wsb4{word-spacing:7.191333pt;}
.ws198{word-spacing:7.268000pt;}
.ws103{word-spacing:7.284667pt;}
.ws14b{word-spacing:7.384000pt;}
.ws17f{word-spacing:7.416000pt;}
.ws17d{word-spacing:7.424000pt;}
.ws17c{word-spacing:7.436000pt;}
.ws87{word-spacing:7.438667pt;}
.ws17e{word-spacing:7.440000pt;}
.ws1b5{word-spacing:7.468000pt;}
.ws140{word-spacing:7.471333pt;}
.ws18d{word-spacing:7.536000pt;}
.ws18c{word-spacing:7.540000pt;}
.wsde{word-spacing:7.854000pt;}
.wse6{word-spacing:7.868000pt;}
.ws149{word-spacing:7.884000pt;}
.ws194{word-spacing:7.912000pt;}
.ws47{word-spacing:8.166667pt;}
.ws48{word-spacing:8.199333pt;}
.ws129{word-spacing:8.292667pt;}
.wsdc{word-spacing:8.456000pt;}
.wsab{word-spacing:8.666000pt;}
.wse9{word-spacing:8.703333pt;}
.ws15d{word-spacing:8.828000pt;}
.ws15c{word-spacing:8.844000pt;}
.ws15b{word-spacing:8.856000pt;}
.wsd5{word-spacing:8.932000pt;}
.ws18b{word-spacing:8.948000pt;}
.ws18a{word-spacing:8.968000pt;}
.wsd3{word-spacing:8.988000pt;}
.ws124{word-spacing:8.992667pt;}
.ws16e{word-spacing:9.032000pt;}
.wsd4{word-spacing:9.053333pt;}
.ws18e{word-spacing:9.200000pt;}
.ws18f{word-spacing:9.204000pt;}
.ws15e{word-spacing:9.208000pt;}
.ws4a{word-spacing:9.286667pt;}
.ws14f{word-spacing:9.308000pt;}
.ws49{word-spacing:9.314667pt;}
.wsfb{word-spacing:9.319333pt;}
.ws14d{word-spacing:9.336000pt;}
.ws14e{word-spacing:9.340000pt;}
.ws23{word-spacing:9.596000pt;}
.ws1a5{word-spacing:9.656000pt;}
.ws84{word-spacing:9.702000pt;}
.ws10f{word-spacing:9.828000pt;}
.ws119{word-spacing:9.902667pt;}
.ws51{word-spacing:9.935333pt;}
.ws128{word-spacing:10.042667pt;}
.ws9e{word-spacing:10.103333pt;}
.wsbb{word-spacing:10.168667pt;}
.wsc1{word-spacing:10.178000pt;}
.ws192{word-spacing:10.184000pt;}
.ws191{word-spacing:10.212000pt;}
.wse4{word-spacing:10.290000pt;}
.ws1aa{word-spacing:10.340000pt;}
.ws1a9{word-spacing:10.372000pt;}
.ws125{word-spacing:10.388000pt;}
.ws1a8{word-spacing:10.396000pt;}
.ws144{word-spacing:10.402000pt;}
.ws1a6{word-spacing:10.452000pt;}
.ws50{word-spacing:10.616667pt;}
.ws92{word-spacing:10.621333pt;}
.ws4f{word-spacing:10.630667pt;}
.wsb3{word-spacing:10.845333pt;}
.wsb2{word-spacing:10.850000pt;}
.wsbf{word-spacing:11.200000pt;}
.ws100{word-spacing:11.321333pt;}
.ws101{word-spacing:11.340000pt;}
.ws7c{word-spacing:11.489333pt;}
.ws7b{word-spacing:11.508000pt;}
.ws1a4{word-spacing:11.700000pt;}
.ws2f{word-spacing:11.872000pt;}
.ws148{word-spacing:11.932000pt;}
.ws112{word-spacing:11.979333pt;}
.ws27{word-spacing:12.077333pt;}
.ws5f{word-spacing:12.124000pt;}
.ws5e{word-spacing:12.133333pt;}
.ws189{word-spacing:12.180000pt;}
.wsaa{word-spacing:12.483333pt;}
.ws143{word-spacing:12.506667pt;}
.ws11a{word-spacing:12.679333pt;}
.ws130{word-spacing:13.211333pt;}
.ws88{word-spacing:13.295333pt;}
.ws165{word-spacing:13.748000pt;}
.ws167{word-spacing:13.764000pt;}
.ws166{word-spacing:13.788000pt;}
.ws126{word-spacing:14.238000pt;}
.ws76{word-spacing:14.630000pt;}
.wsa3{word-spacing:14.662667pt;}
.ws5d{word-spacing:14.891333pt;}
.ws5c{word-spacing:14.910000pt;}
.wsf7{word-spacing:15.059333pt;}
.wsf6{word-spacing:15.073333pt;}
.ws90{word-spacing:15.264667pt;}
.ws8f{word-spacing:15.283333pt;}
.wsbd{word-spacing:15.358000pt;}
.wsdf{word-spacing:15.484000pt;}
.ws33{word-spacing:15.712667pt;}
.ws32{word-spacing:15.717333pt;}
.wsac{word-spacing:16.851333pt;}
.wsb7{word-spacing:17.453333pt;}
.wsb6{word-spacing:17.458000pt;}
.ws6a{word-spacing:19.446000pt;}
.ws162{word-spacing:20.952000pt;}
.ws163{word-spacing:21.000000pt;}
.ws5b{word-spacing:21.807333pt;}
.ws5a{word-spacing:21.840000pt;}
.ws98{word-spacing:22.736000pt;}
.ws11b{word-spacing:22.983333pt;}
.ws170{word-spacing:24.768000pt;}
.ws16f{word-spacing:24.788000pt;}
.ws24{word-spacing:45.754667pt;}
.ws6c{word-spacing:45.760800pt;}
.wscb{word-spacing:69.453467pt;}
.ws22{word-spacing:81.608000pt;}
.wsca{word-spacing:99.611200pt;}
.wsce{word-spacing:203.754133pt;}
.wsd1{word-spacing:257.648533pt;}
.wscf{word-spacing:291.028267pt;}
._4{margin-left:-78.532000pt;}
._5{margin-left:-46.545867pt;}
._27{margin-left:-21.020000pt;}
._1{margin-left:-16.008000pt;}
._2{margin-left:-11.232000pt;}
._23{margin-left:-9.596000pt;}
._21{margin-left:-6.916693pt;}
._2b{margin-left:-5.900000pt;}
._25{margin-left:-3.592000pt;}
._22{margin-left:-2.058000pt;}
._8{margin-left:-1.115413pt;}
._6{width:1.676000pt;}
._26{width:2.784000pt;}
._2a{width:4.964000pt;}
._28{width:13.840000pt;}
._24{width:17.612000pt;}
._29{width:24.848000pt;}
._7{width:45.760800pt;}
._1e{width:50.658933pt;}
._1d{width:54.869600pt;}
._e{width:59.088267pt;}
._11{width:68.939733pt;}
._3{width:81.608000pt;}
._13{width:95.332267pt;}
._10{width:97.324267pt;}
._1b{width:150.613867pt;}
._c{width:189.653333pt;}
._19{width:214.629333pt;}
._b{width:233.400533pt;}
._a{width:235.427733pt;}
._16{width:243.629867pt;}
._15{width:245.653333pt;}
._20{width:253.859200pt;}
._1a{width:260.653867pt;}
._d{width:279.096533pt;}
._17{width:291.681600pt;}
._12{width:299.883733pt;}
._1f{width:306.110933pt;}
._f{width:330.497067pt;}
._1c{width:430.132267pt;}
._18{width:468.600533pt;}
._9{width:489.402667pt;}
._14{width:499.628267pt;}
._0{width:1498.138667pt;}
.fs7{font-size:21.653333pt;}
.fsd{font-size:24.266667pt;}
.fs6{font-size:26.026667pt;}
.fsc{font-size:30.346667pt;}
.fs8{font-size:33.333333pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:46.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:54.933333pt;}
.fsa{font-size:61.333333pt;}
.fs4{font-size:88.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:43.546667pt;}
.yeb{bottom:83.200000pt;}
.yb6{bottom:83.639667pt;}
.y142{bottom:91.483667pt;}
.y113{bottom:93.026167pt;}
.y36{bottom:93.452500pt;}
.y3f{bottom:93.452833pt;}
.yea{bottom:93.866667pt;}
.y81{bottom:94.506333pt;}
.yb5{bottom:96.306333pt;}
.ye9{bottom:104.533333pt;}
.y141{bottom:104.816667pt;}
.y80{bottom:107.173333pt;}
.y112{bottom:108.359667pt;}
.y35{bottom:108.786000pt;}
.y3e{bottom:108.786333pt;}
.yb4{bottom:108.973333pt;}
.ye8{bottom:115.200000pt;}
.y140{bottom:118.149667pt;}
.y70{bottom:119.559667pt;}
.ye7{bottom:122.599600pt;}
.y111{bottom:123.693167pt;}
.y34{bottom:124.119500pt;}
.y3d{bottom:124.119833pt;}
.y13f{bottom:131.482667pt;}
.y6f{bottom:132.226667pt;}
.ye6{bottom:136.533333pt;}
.y110{bottom:139.026667pt;}
.y3c{bottom:139.452500pt;}
.y33{bottom:139.453000pt;}
.y13e{bottom:144.815667pt;}
.ye5{bottom:147.200200pt;}
.y3b{bottom:154.786000pt;}
.y32{bottom:154.786500pt;}
.y13d{bottom:158.148667pt;}
.ye4{bottom:161.933067pt;}
.y31{bottom:170.119500pt;}
.y13c{bottom:171.481667pt;}
.y10f{bottom:175.253333pt;}
.ye3{bottom:179.934000pt;}
.y13b{bottom:184.814667pt;}
.y30{bottom:185.453000pt;}
.ye0{bottom:197.932933pt;}
.y13a{bottom:198.147667pt;}
.y2f{bottom:200.786500pt;}
.ydf{bottom:208.599733pt;}
.ye2{bottom:208.600000pt;}
.ye1{bottom:208.600400pt;}
.y139{bottom:211.480667pt;}
.y10e{bottom:215.692333pt;}
.y3a{bottom:216.118167pt;}
.y2e{bottom:216.120000pt;}
.y138{bottom:224.813667pt;}
.yde{bottom:226.599733pt;}
.y10d{bottom:231.025833pt;}
.y39{bottom:231.451667pt;}
.y137{bottom:238.146667pt;}
.ydd{bottom:244.600000pt;}
.y10c{bottom:246.359333pt;}
.y38{bottom:246.785167pt;}
.y2d{bottom:252.960000pt;}
.y10b{bottom:261.692833pt;}
.y37{bottom:262.118667pt;}
.y136{bottom:262.586667pt;}
.ydc{bottom:262.600267pt;}
.y10a{bottom:277.026333pt;}
.yda{bottom:280.599600pt;}
.yd9{bottom:291.266400pt;}
.ydb{bottom:291.266667pt;}
.y2c{bottom:291.839667pt;}
.y109{bottom:292.359833pt;}
.y4c{bottom:301.356000pt;}
.y135{bottom:301.480333pt;}
.y2b{bottom:304.506667pt;}
.y108{bottom:307.692333pt;}
.yd8{bottom:309.266667pt;}
.y4b{bottom:314.023000pt;}
.y134{bottom:314.813333pt;}
.y107{bottom:323.025833pt;}
.y4a{bottom:326.690000pt;}
.yd1{bottom:329.266667pt;}
.y2a{bottom:329.717333pt;}
.yd7{bottom:334.866667pt;}
.y106{bottom:338.359333pt;}
.y133{bottom:339.253333pt;}
.y49{bottom:339.357000pt;}
.yd4{bottom:341.932933pt;}
.y29{bottom:342.384333pt;}
.yd6{bottom:349.212933pt;}
.y48{bottom:352.024000pt;}
.y105{bottom:353.692833pt;}
.yd3{bottom:353.772933pt;}
.y28{bottom:355.051333pt;}
.yd5{bottom:359.880000pt;}
.yd2{bottom:363.266667pt;}
.y47{bottom:364.691000pt;}
.y27{bottom:367.718333pt;}
.y104{bottom:369.026333pt;}
.y46{bottom:377.358000pt;}
.y132{bottom:378.146667pt;}
.y131{bottom:378.148667pt;}
.y52{bottom:378.160000pt;}
.y26{bottom:380.385333pt;}
.y103{bottom:384.359833pt;}
.y45{bottom:390.025000pt;}
.y130{bottom:391.481667pt;}
.y25{bottom:393.052333pt;}
.y102{bottom:399.693333pt;}
.y44{bottom:402.692000pt;}
.y12f{bottom:404.814667pt;}
.y24{bottom:405.719333pt;}
.yb3{bottom:415.021467pt;}
.y97{bottom:415.025800pt;}
.y101{bottom:415.026167pt;}
.y43{bottom:415.359000pt;}
.y12e{bottom:418.147667pt;}
.y23{bottom:418.386333pt;}
.y18a{bottom:425.700667pt;}
.y42{bottom:428.026000pt;}
.yb2{bottom:430.354967pt;}
.y96{bottom:430.359300pt;}
.y100{bottom:430.359667pt;}
.y22{bottom:431.050000pt;}
.y12d{bottom:431.480667pt;}
.y165{bottom:439.030133pt;}
.y189{bottom:439.033667pt;}
.y41{bottom:440.693000pt;}
.y21{bottom:443.717000pt;}
.y12c{bottom:444.813667pt;}
.yb1{bottom:445.688467pt;}
.y95{bottom:445.692800pt;}
.yff{bottom:445.693167pt;}
.y164{bottom:452.363133pt;}
.y188{bottom:452.366667pt;}
.y40{bottom:453.360000pt;}
.y20{bottom:456.384000pt;}
.y12b{bottom:458.146667pt;}
.yb0{bottom:461.021967pt;}
.y94{bottom:461.026300pt;}
.yfe{bottom:461.026500pt;}
.y163{bottom:465.696133pt;}
.y187{bottom:465.699667pt;}
.y1f{bottom:469.051000pt;}
.yd0{bottom:472.066667pt;}
.yaf{bottom:476.355467pt;}
.yfd{bottom:476.359333pt;}
.y93{bottom:476.359800pt;}
.y162{bottom:479.029133pt;}
.y186{bottom:479.032667pt;}
.y1e{bottom:481.718000pt;}
.y12a{bottom:482.586667pt;}
.yae{bottom:491.688967pt;}
.yfc{bottom:491.692833pt;}
.y6e{bottom:491.693000pt;}
.y92{bottom:491.693300pt;}
.y161{bottom:492.362133pt;}
.y185{bottom:492.365667pt;}
.y1d{bottom:494.385000pt;}
.y160{bottom:505.695133pt;}
.y184{bottom:505.698667pt;}
.yad{bottom:507.022467pt;}
.yc0{bottom:507.024833pt;}
.ycc{bottom:507.025467pt;}
.yfb{bottom:507.026333pt;}
.y6d{bottom:507.026500pt;}
.y91{bottom:507.026800pt;}
.y1c{bottom:507.052000pt;}
.y15f{bottom:519.028133pt;}
.y183{bottom:519.031667pt;}
.y1b{bottom:519.719000pt;}
.yac{bottom:522.355967pt;}
.y129{bottom:522.356000pt;}
.ybf{bottom:522.358333pt;}
.ycb{bottom:522.358967pt;}
.y6c{bottom:522.359133pt;}
.yfa{bottom:522.359833pt;}
.y15e{bottom:532.361133pt;}
.y182{bottom:532.364667pt;}
.y1a{bottom:532.386000pt;}
.yab{bottom:537.689467pt;}
.y128{bottom:537.689500pt;}
.ybe{bottom:537.691833pt;}
.yca{bottom:537.692467pt;}
.y6b{bottom:537.692633pt;}
.yf9{bottom:537.693167pt;}
.y90{bottom:539.252867pt;}
.y19{bottom:545.053000pt;}
.y15d{bottom:545.694133pt;}
.y181{bottom:545.697667pt;}
.yaa{bottom:553.022967pt;}
.y127{bottom:553.023000pt;}
.ybd{bottom:553.025333pt;}
.yc9{bottom:553.025967pt;}
.y6a{bottom:553.026133pt;}
.yf8{bottom:553.026500pt;}
.y18{bottom:557.720000pt;}
.y8f{bottom:558.586667pt;}
.y15c{bottom:559.027133pt;}
.y180{bottom:559.030667pt;}
.ya9{bottom:568.356467pt;}
.y126{bottom:568.356500pt;}
.ybc{bottom:568.358833pt;}
.yc8{bottom:568.359467pt;}
.y69{bottom:568.359633pt;}
.y17f{bottom:572.363667pt;}
.y15b{bottom:572.368467pt;}
.y17{bottom:582.786800pt;}
.ya8{bottom:583.689967pt;}
.y125{bottom:583.690000pt;}
.ybb{bottom:583.692333pt;}
.yc7{bottom:583.692967pt;}
.y68{bottom:583.693133pt;}
.y17e{bottom:585.696667pt;}
.y15a{bottom:585.701467pt;}
.y16{bottom:593.453467pt;}
.ya7{bottom:599.023467pt;}
.y124{bottom:599.023500pt;}
.yba{bottom:599.025833pt;}
.yc6{bottom:599.026467pt;}
.y67{bottom:599.026633pt;}
.y17d{bottom:599.029667pt;}
.y159{bottom:599.034467pt;}
.y15{bottom:604.120133pt;}
.y17c{bottom:612.362667pt;}
.y158{bottom:612.367467pt;}
.ya6{bottom:614.356967pt;}
.y123{bottom:614.357000pt;}
.yb9{bottom:614.359333pt;}
.y66{bottom:614.359500pt;}
.y8e{bottom:614.359667pt;}
.yc5{bottom:614.359967pt;}
.y14{bottom:614.786800pt;}
.y17b{bottom:625.695667pt;}
.y157{bottom:625.700467pt;}
.ya5{bottom:629.690467pt;}
.yc4{bottom:629.690500pt;}
.yb8{bottom:629.692833pt;}
.y65{bottom:629.693000pt;}
.y8d{bottom:629.693167pt;}
.y17a{bottom:639.028667pt;}
.y156{bottom:639.033467pt;}
.ya4{bottom:645.023967pt;}
.yc3{bottom:645.024000pt;}
.y8c{bottom:645.026333pt;}
.y64{bottom:645.026500pt;}
.y179{bottom:652.361667pt;}
.y155{bottom:652.366467pt;}
.ya3{bottom:660.357467pt;}
.yc2{bottom:660.357500pt;}
.y7f{bottom:660.359800pt;}
.y63{bottom:660.359833pt;}
.y178{bottom:665.694667pt;}
.y154{bottom:665.699467pt;}
.ya2{bottom:675.690967pt;}
.yc1{bottom:675.691000pt;}
.y62{bottom:675.692667pt;}
.y8b{bottom:675.692967pt;}
.yf7{bottom:675.693133pt;}
.y7e{bottom:675.693300pt;}
.yb7{bottom:675.693333pt;}
.y177{bottom:679.027667pt;}
.y153{bottom:679.032467pt;}
.y13{bottom:682.773467pt;}
.ya1{bottom:691.024467pt;}
.y122{bottom:691.024500pt;}
.y7d{bottom:691.024833pt;}
.y61{bottom:691.026167pt;}
.y8a{bottom:691.026467pt;}
.yf6{bottom:691.026633pt;}
.y176{bottom:692.360667pt;}
.y152{bottom:692.365467pt;}
.y12{bottom:693.440133pt;}
.y11{bottom:704.106800pt;}
.y175{bottom:705.693667pt;}
.y151{bottom:705.698467pt;}
.ya0{bottom:706.357967pt;}
.y121{bottom:706.358000pt;}
.y7c{bottom:706.358333pt;}
.yf5{bottom:706.359300pt;}
.y60{bottom:706.359667pt;}
.y89{bottom:706.359967pt;}
.ycf{bottom:714.932800pt;}
.y10{bottom:717.693467pt;}
.y150{bottom:719.031467pt;}
.y174{bottom:719.035133pt;}
.y9f{bottom:721.691467pt;}
.y120{bottom:721.691500pt;}
.y7b{bottom:721.691833pt;}
.yf4{bottom:721.692800pt;}
.y88{bottom:721.692967pt;}
.y5f{bottom:721.693167pt;}
.yf{bottom:725.440133pt;}
.yce{bottom:727.599800pt;}
.y14f{bottom:732.364467pt;}
.y173{bottom:732.368133pt;}
.ye{bottom:736.106800pt;}
.y9e{bottom:737.024967pt;}
.y11f{bottom:737.025000pt;}
.y7a{bottom:737.025333pt;}
.y5e{bottom:737.025967pt;}
.yf3{bottom:737.026300pt;}
.y87{bottom:737.026467pt;}
.ycd{bottom:740.266800pt;}
.y14e{bottom:745.697467pt;}
.y172{bottom:745.701133pt;}
.yd{bottom:746.773467pt;}
.y9d{bottom:752.358467pt;}
.y11e{bottom:752.358500pt;}
.y79{bottom:752.358833pt;}
.y5d{bottom:752.359467pt;}
.yf2{bottom:752.359800pt;}
.y86{bottom:752.359967pt;}
.y14d{bottom:759.030467pt;}
.y171{bottom:759.034133pt;}
.yc{bottom:760.360133pt;}
.y9c{bottom:767.691967pt;}
.y11d{bottom:767.692000pt;}
.y78{bottom:767.692333pt;}
.y85{bottom:767.692800pt;}
.y5c{bottom:767.692967pt;}
.yf1{bottom:767.693300pt;}
.y14c{bottom:772.363467pt;}
.y170{bottom:772.367133pt;}
.y9b{bottom:783.025467pt;}
.y11c{bottom:783.025500pt;}
.y77{bottom:783.025833pt;}
.y84{bottom:783.026300pt;}
.y5b{bottom:783.026467pt;}
.yf0{bottom:783.026633pt;}
.yb{bottom:783.666667pt;}
.y14b{bottom:785.696467pt;}
.y16f{bottom:785.700133pt;}
.y9a{bottom:798.358967pt;}
.y11b{bottom:798.359000pt;}
.y76{bottom:798.359333pt;}
.yef{bottom:798.359633pt;}
.y83{bottom:798.359800pt;}
.y5a{bottom:798.359967pt;}
.ya{bottom:798.987133pt;}
.y14a{bottom:799.029467pt;}
.y16e{bottom:799.033133pt;}
.y149{bottom:812.362467pt;}
.y16d{bottom:812.366133pt;}
.y99{bottom:813.692467pt;}
.y11a{bottom:813.692500pt;}
.y75{bottom:813.692833pt;}
.y59{bottom:813.693133pt;}
.y82{bottom:813.693300pt;}
.y9{bottom:814.320467pt;}
.y148{bottom:825.695467pt;}
.y16c{bottom:825.699133pt;}
.y98{bottom:829.025967pt;}
.y119{bottom:829.026000pt;}
.y74{bottom:829.026333pt;}
.y58{bottom:829.026633pt;}
.y8{bottom:829.653800pt;}
.y147{bottom:839.028467pt;}
.y16b{bottom:839.032133pt;}
.y57{bottom:844.359467pt;}
.y118{bottom:844.359500pt;}
.yee{bottom:844.359633pt;}
.y73{bottom:844.359833pt;}
.y7{bottom:844.986800pt;}
.y146{bottom:852.361467pt;}
.y16a{bottom:852.365133pt;}
.y56{bottom:859.692967pt;}
.y117{bottom:859.693000pt;}
.yed{bottom:859.693133pt;}
.y72{bottom:859.693333pt;}
.y145{bottom:865.694467pt;}
.y169{bottom:865.698133pt;}
.y55{bottom:875.026467pt;}
.y116{bottom:875.026500pt;}
.yec{bottom:875.026633pt;}
.y6{bottom:876.587067pt;}
.y144{bottom:879.027467pt;}
.y168{bottom:879.031133pt;}
.y71{bottom:886.359667pt;}
.y54{bottom:890.359967pt;}
.y115{bottom:890.360000pt;}
.y143{bottom:892.360467pt;}
.y167{bottom:892.364133pt;}
.y5{bottom:901.253467pt;}
.y53{bottom:905.693467pt;}
.y114{bottom:905.693500pt;}
.y166{bottom:905.697133pt;}
.y4{bottom:951.546667pt;}
.y3{bottom:951.786800pt;}
.y51{bottom:985.146667pt;}
.y1{bottom:997.360000pt;}
.y50{bottom:998.480000pt;}
.y4f{bottom:1011.812933pt;}
.y4e{bottom:1022.480000pt;}
.y4d{bottom:1033.146667pt;}
.hc{height:18.164271pt;}
.h2d{height:20.356510pt;}
.hd{height:27.962240pt;}
.h3{height:31.317708pt;}
.h28{height:31.318775pt;}
.h2c{height:33.420510pt;}
.h2b{height:33.421577pt;}
.h29{height:33.422110pt;}
.h25{height:33.423177pt;}
.h2a{height:33.424244pt;}
.h27{height:33.424777pt;}
.hb{height:33.554688pt;}
.h1e{height:33.556021pt;}
.hf{height:33.568021pt;}
.h15{height:35.164062pt;}
.he{height:35.791667pt;}
.h7{height:35.805717pt;}
.ha{height:35.806783pt;}
.h8{height:35.857717pt;}
.h9{height:35.858250pt;}
.h26{height:36.011042pt;}
.h34{height:37.675781pt;}
.h2{height:40.265625pt;}
.h11{height:43.955078pt;}
.h2f{height:43.955745pt;}
.h2e{height:43.957078pt;}
.h31{height:43.957745pt;}
.h30{height:43.959745pt;}
.h23{height:43.966945pt;}
.h4{height:44.259583pt;}
.h17{height:44.500000pt;}
.h33{height:44.739583pt;}
.h12{height:44.905359pt;}
.h14{height:44.906693pt;}
.h13{height:44.910693pt;}
.h21{height:44.956693pt;}
.h1b{height:44.957359pt;}
.h20{height:44.957493pt;}
.h19{height:44.958026pt;}
.h22{height:44.958159pt;}
.h1c{height:44.958693pt;}
.h18{height:44.959359pt;}
.h1a{height:44.960026pt;}
.h1d{height:44.960159pt;}
.h32{height:44.960693pt;}
.h24{height:44.961493pt;}
.h1f{height:44.964026pt;}
.h5{height:46.081771pt;}
.h16{height:50.234375pt;}
.h10{height:51.450521pt;}
.h6{height:73.820312pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:68.026667pt;}
.x4{left:71.306667pt;}
.x7{left:72.693333pt;}
.x8{left:73.706667pt;}
.x20{left:76.893333pt;}
.x17{left:80.920000pt;}
.xa{left:86.933333pt;}
.x21{left:94.493333pt;}
.x9{left:102.052667pt;}
.xd{left:106.546667pt;}
.x1a{left:139.600400pt;}
.x10{left:144.680000pt;}
.x6{left:176.280000pt;}
.x3{left:207.866667pt;}
.x2{left:253.973333pt;}
.x11{left:280.360000pt;}
.x1b{left:357.119600pt;}
.x12{left:359.840000pt;}
.x1{left:392.960000pt;}
.x1f{left:393.866667pt;}
.xb{left:408.187500pt;}
.x22{left:411.265333pt;}
.xc{left:413.853333pt;}
.x1d{left:417.053333pt;}
.xf{left:427.093333pt;}
.x1e{left:434.640333pt;}
.x13{left:443.653733pt;}
.x1c{left:498.853467pt;}
.x18{left:522.146533pt;}
.x15{left:528.279733pt;}
.x14{left:533.160133pt;}
.x19{left:602.319867pt;}
.x16{left:611.173333pt;}
.xe{left:789.333333pt;}
}




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