
    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_bae3deb2f5fea10d8b4fc7a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_e04fc387c3874c7b7fc18bca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_223566adc28b473ce5739a81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_ea00da60f24aaaa99ca6ab9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_8dcef7121df80e021a1d9097.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_4f8eed1df80fc4ed880f51d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_6ad573b9c97a39f9e48d663b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_c2123c3fef05c06029a89caf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_8c821a316f1ccbff6b82d464.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_fac8b0f285b97316b540fb80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_eba8f51d0cd5cefe3f42059f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_fac8b0f285b97316b540fb80.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_318d36a2dac59a738c1b5804.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.795000;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:ffe;src:url('chunks/assets/font_167c3014809e7a1a197790cb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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:fff;src:url('chunks/assets/font_4366a5707858000e54509327.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.964000px;}
.v6{vertical-align:-15.984000px;}
.v7{vertical-align:-4.363200px;}
.v3{vertical-align:-3.216000px;}
.va{vertical-align:-2.161800px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v8{vertical-align:4.368000px;}
.v5{vertical-align:15.970200px;}
.v1{vertical-align:17.982000px;}
.v9{vertical-align:32.976000px;}
.ls34{letter-spacing:-4.560000px;}
.ls31{letter-spacing:-4.272000px;}
.ls42{letter-spacing:-4.032000px;}
.ls44{letter-spacing:-3.024000px;}
.ls36{letter-spacing:-2.544000px;}
.ls43{letter-spacing:-2.304000px;}
.ls29{letter-spacing:-2.064000px;}
.ls3f{letter-spacing:-1.824000px;}
.ls39{letter-spacing:-1.632000px;}
.ls45{letter-spacing:-1.584000px;}
.ls3b{letter-spacing:-1.440000px;}
.ls3c{letter-spacing:-1.344000px;}
.ls3d{letter-spacing:-1.104000px;}
.ls2d{letter-spacing:-0.864000px;}
.ls40{letter-spacing:-0.720000px;}
.ls41{letter-spacing:-0.672000px;}
.ls46{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.336000px;}
.ls47{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.189000px;}
.ls19{letter-spacing:-0.168000px;}
.ls35{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.132000px;}
.ls37{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls26{letter-spacing:0.009000px;}
.ls27{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.048000px;}
.ls2b{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.192000px;}
.ls2e{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.480000px;}
.ls32{letter-spacing:0.576000px;}
.ls30{letter-spacing:0.624000px;}
.ls2f{letter-spacing:0.672000px;}
.ls33{letter-spacing:0.768000px;}
.ls3a{letter-spacing:1.632000px;}
.ls12{letter-spacing:4.980000px;}
.ls1f{letter-spacing:6.292200px;}
.ls25{letter-spacing:12.972000px;}
.ls2{letter-spacing:13.968000px;}
.ls22{letter-spacing:16.980000px;}
.ls13{letter-spacing:18.316200px;}
.ls1e{letter-spacing:18.972000px;}
.ls20{letter-spacing:18.972600px;}
.ls17{letter-spacing:24.972600px;}
.lsc{letter-spacing:33.597000px;}
.ls16{letter-spacing:44.988000px;}
.ls23{letter-spacing:51.597600px;}
.ls11{letter-spacing:52.980600px;}
.ls1b{letter-spacing:58.980000px;}
.lsb{letter-spacing:63.597000px;}
.ls1c{letter-spacing:63.597600px;}
.ls21{letter-spacing:67.640400px;}
.ls24{letter-spacing:78.292800px;}
.lsd{letter-spacing:90.292200px;}
.ls1d{letter-spacing:90.292800px;}
.ls1a{letter-spacing:97.640400px;}
.lse{letter-spacing:171.744000px;}
.lsf{letter-spacing:198.432000px;}
.lsa{letter-spacing:220.416000px;}
.ls14{letter-spacing:267.597000px;}
.ls8{letter-spacing:275.456400px;}
.ls10{letter-spacing:283.640400px;}
.ls15{letter-spacing:294.292800px;}
.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;}
}
.wsa6{word-spacing:-18.546000px;}
.ws1{word-spacing:-15.012000px;}
.wsad{word-spacing:-14.976000px;}
.wsa9{word-spacing:-14.016000px;}
.wsaf{word-spacing:-13.968000px;}
.wsab{word-spacing:-13.920000px;}
.wsaa{word-spacing:-13.680000px;}
.wsa8{word-spacing:-13.488000px;}
.wsa7{word-spacing:-13.392000px;}
.ws58{word-spacing:-13.344000px;}
.ws59{word-spacing:-13.104000px;}
.wsac{word-spacing:-13.008000px;}
.ws5{word-spacing:-12.336000px;}
.wsae{word-spacing:-12.240000px;}
.ws3{word-spacing:-10.508400px;}
.ws2{word-spacing:-10.319400px;}
.ws5a{word-spacing:-9.340800px;}
.wsb4{word-spacing:-4.752000px;}
.ws36{word-spacing:-3.564000px;}
.ws2e{word-spacing:-3.294000px;}
.ws9b{word-spacing:-3.240000px;}
.ws21{word-spacing:-3.186000px;}
.ws26{word-spacing:-2.970000px;}
.wsc8{word-spacing:-2.928000px;}
.ws66{word-spacing:-2.916000px;}
.wsd6{word-spacing:-2.832000px;}
.ws93{word-spacing:-2.646000px;}
.ws88{word-spacing:-2.592000px;}
.ws7e{word-spacing:-2.538000px;}
.wsbb{word-spacing:-2.496000px;}
.ws6b{word-spacing:-2.376000px;}
.wse7{word-spacing:-2.352000px;}
.ws82{word-spacing:-2.322000px;}
.ws8d{word-spacing:-2.214000px;}
.ws6a{word-spacing:-2.106000px;}
.ws8b{word-spacing:-2.052000px;}
.wse0{word-spacing:-2.016000px;}
.wsbd{word-spacing:-1.968000px;}
.wse9{word-spacing:-1.824000px;}
.wsf{word-spacing:-1.620000px;}
.wse2{word-spacing:-1.584000px;}
.wsc{word-spacing:-1.458000px;}
.ws19{word-spacing:-1.404000px;}
.wsd2{word-spacing:-1.344000px;}
.ws38{word-spacing:-1.296000px;}
.ws45{word-spacing:-1.242000px;}
.ws80{word-spacing:-1.188000px;}
.wse3{word-spacing:-1.104000px;}
.ws37{word-spacing:-1.080000px;}
.wsca{word-spacing:-1.056000px;}
.ws67{word-spacing:-1.008000px;}
.ws31{word-spacing:-0.972000px;}
.wsd4{word-spacing:-0.960000px;}
.wsb0{word-spacing:-0.918000px;}
.ws91{word-spacing:-0.864000px;}
.ws40{word-spacing:-0.810000px;}
.wsc4{word-spacing:-0.768000px;}
.ws9a{word-spacing:-0.756000px;}
.ws9{word-spacing:-0.702000px;}
.wsbe{word-spacing:-0.624000px;}
.ws94{word-spacing:-0.594000px;}
.ws2b{word-spacing:-0.480000px;}
.ws15{word-spacing:-0.432000px;}
.wsbc{word-spacing:-0.384000px;}
.ws32{word-spacing:-0.378000px;}
.wsb9{word-spacing:-0.336000px;}
.ws98{word-spacing:-0.324000px;}
.wsa2{word-spacing:-0.270000px;}
.wsc5{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.108000px;}
.wsc0{word-spacing:-0.096000px;}
.ws6{word-spacing:0.000000px;}
.wsd5{word-spacing:0.048000px;}
.ws6e{word-spacing:0.054000px;}
.wsc9{word-spacing:0.096000px;}
.ws69{word-spacing:0.168000px;}
.ws28{word-spacing:0.189000px;}
.ws68{word-spacing:0.240000px;}
.ws27{word-spacing:0.270000px;}
.wse8{word-spacing:0.288000px;}
.ws64{word-spacing:0.378000px;}
.ws8a{word-spacing:0.432000px;}
.wsb3{word-spacing:0.480000px;}
.wscf{word-spacing:0.528000px;}
.ws7{word-spacing:0.540000px;}
.ws70{word-spacing:0.576000px;}
.ws65{word-spacing:0.648000px;}
.wsdc{word-spacing:0.672000px;}
.ws20{word-spacing:0.702000px;}
.wsd9{word-spacing:0.720000px;}
.ws2f{word-spacing:0.756000px;}
.wsa0{word-spacing:0.810000px;}
.wsb8{word-spacing:0.864000px;}
.ws3c{word-spacing:0.918000px;}
.wscb{word-spacing:0.960000px;}
.wsd3{word-spacing:1.008000px;}
.ws1b{word-spacing:1.026000px;}
.wsd1{word-spacing:1.104000px;}
.ws51{word-spacing:1.134000px;}
.wsd0{word-spacing:1.344000px;}
.ws57{word-spacing:1.350000px;}
.wsce{word-spacing:1.440000px;}
.ws34{word-spacing:1.566000px;}
.wscc{word-spacing:1.632000px;}
.ws2d{word-spacing:1.680000px;}
.wsd7{word-spacing:1.824000px;}
.wsa3{word-spacing:1.890000px;}
.wsdf{word-spacing:1.920000px;}
.ws84{word-spacing:1.944000px;}
.wsb7{word-spacing:1.968000px;}
.ws13{word-spacing:2.052000px;}
.wsb2{word-spacing:2.064000px;}
.ws62{word-spacing:2.106000px;}
.ws1a{word-spacing:2.214000px;}
.wsde{word-spacing:2.304000px;}
.ws89{word-spacing:2.322000px;}
.wsb1{word-spacing:2.352000px;}
.ws6c{word-spacing:2.376000px;}
.ws4c{word-spacing:2.430000px;}
.ws18{word-spacing:2.484000px;}
.ws33{word-spacing:2.538000px;}
.wsc6{word-spacing:2.544000px;}
.ws87{word-spacing:2.592000px;}
.ws54{word-spacing:2.646000px;}
.ws9e{word-spacing:2.700000px;}
.ws1d{word-spacing:2.754000px;}
.ws44{word-spacing:3.024000px;}
.ws3e{word-spacing:3.078000px;}
.ws35{word-spacing:3.348000px;}
.ws61{word-spacing:3.402000px;}
.ws4e{word-spacing:3.456000px;}
.wsdd{word-spacing:3.552000px;}
.ws17{word-spacing:3.564000px;}
.ws3a{word-spacing:3.672000px;}
.ws30{word-spacing:3.726000px;}
.wsa{word-spacing:3.888000px;}
.wsc3{word-spacing:3.936000px;}
.ws95{word-spacing:3.942000px;}
.wsdb{word-spacing:3.984000px;}
.ws8c{word-spacing:4.050000px;}
.ws42{word-spacing:4.158000px;}
.ws3d{word-spacing:4.266000px;}
.wsbf{word-spacing:4.272000px;}
.ws3b{word-spacing:4.320000px;}
.ws6f{word-spacing:4.374000px;}
.ws85{word-spacing:4.464000px;}
.ws1e{word-spacing:4.482000px;}
.wsc7{word-spacing:4.560000px;}
.ws63{word-spacing:4.590000px;}
.ws4a{word-spacing:4.752000px;}
.ws9c{word-spacing:4.968000px;}
.ws4b{word-spacing:5.022000px;}
.ws43{word-spacing:5.184000px;}
.ws41{word-spacing:5.238000px;}
.ws4d{word-spacing:5.292000px;}
.wscd{word-spacing:5.376000px;}
.ws9d{word-spacing:5.508000px;}
.ws23{word-spacing:5.562000px;}
.ws49{word-spacing:5.670000px;}
.ws1f{word-spacing:5.778000px;}
.ws16{word-spacing:6.048000px;}
.ws53{word-spacing:6.102000px;}
.ws86{word-spacing:6.426000px;}
.wsda{word-spacing:6.432000px;}
.wsb{word-spacing:6.534000px;}
.ws8{word-spacing:6.588000px;}
.ws60{word-spacing:6.642000px;}
.wsa1{word-spacing:6.696000px;}
.ws99{word-spacing:6.804000px;}
.ws6d{word-spacing:7.020000px;}
.ws83{word-spacing:7.074000px;}
.ws25{word-spacing:7.182000px;}
.ws12{word-spacing:7.344000px;}
.wsd{word-spacing:7.398000px;}
.wsc1{word-spacing:7.488000px;}
.ws39{word-spacing:7.560000px;}
.ws96{word-spacing:7.722000px;}
.wsb5{word-spacing:7.728000px;}
.wsa5{word-spacing:7.776000px;}
.ws50{word-spacing:7.884000px;}
.wse1{word-spacing:7.968000px;}
.ws92{word-spacing:8.046000px;}
.ws47{word-spacing:8.100000px;}
.wse4{word-spacing:8.112000px;}
.ws56{word-spacing:8.208000px;}
.ws3f{word-spacing:8.316000px;}
.ws9f{word-spacing:8.694000px;}
.wsd8{word-spacing:9.072000px;}
.wsba{word-spacing:9.312000px;}
.ws52{word-spacing:9.396000px;}
.ws1c{word-spacing:9.504000px;}
.ws90{word-spacing:9.558000px;}
.ws4f{word-spacing:9.828000px;}
.wse6{word-spacing:9.984000px;}
.ws7f{word-spacing:10.206000px;}
.ws97{word-spacing:10.314000px;}
.ws48{word-spacing:10.368000px;}
.ws2c{word-spacing:10.512000px;}
.ws55{word-spacing:10.584000px;}
.ws46{word-spacing:10.692000px;}
.ws10{word-spacing:11.070000px;}
.wsb6{word-spacing:11.328000px;}
.ws8f{word-spacing:11.556000px;}
.ws81{word-spacing:11.664000px;}
.wse5{word-spacing:12.576000px;}
.ws22{word-spacing:12.690000px;}
.wse{word-spacing:12.798000px;}
.ws2a{word-spacing:13.440000px;}
.ws11{word-spacing:13.554000px;}
.wsa4{word-spacing:13.608000px;}
.ws14{word-spacing:15.066000px;}
.ws5f{word-spacing:15.336000px;}
.ws8e{word-spacing:16.092000px;}
.ws7b{word-spacing:17.664000px;}
.wsc2{word-spacing:19.920000px;}
.ws4{word-spacing:105.456000px;}
.ws5d{word-spacing:109.789200px;}
.ws78{word-spacing:144.864000px;}
.ws75{word-spacing:158.160000px;}
.ws73{word-spacing:158.208000px;}
.ws74{word-spacing:164.352000px;}
.ws77{word-spacing:171.504000px;}
.ws7a{word-spacing:178.176000px;}
.ws76{word-spacing:191.520000px;}
.ws29{word-spacing:200.988000px;}
.ws7c{word-spacing:361.207800px;}
.ws79{word-spacing:441.223800px;}
.ws72{word-spacing:529.776000px;}
.ws5e{word-spacing:593.671800px;}
.ws71{word-spacing:622.279800px;}
.ws5b{word-spacing:705.216000px;}
.ws5c{word-spacing:719.025000px;}
.ws7d{word-spacing:755.128200px;}
.ws0{word-spacing:1242.054000px;}
._c{margin-left:-28.895400px;}
._f{margin-left:-18.993600px;}
._29{margin-left:-15.012000px;}
._12{margin-left:-13.147800px;}
._7{margin-left:-6.966000px;}
._e{margin-left:-5.295000px;}
._3{margin-left:-3.963600px;}
._0{margin-left:-2.953800px;}
._4{margin-left:-1.668600px;}
._d{width:1.012200px;}
._2{width:2.062800px;}
._b{width:3.753000px;}
._14{width:4.919400px;}
._6{width:6.058800px;}
._1{width:7.435800px;}
._5{width:8.661600px;}
._11{width:10.015200px;}
._10{width:11.988000px;}
._8{width:13.435200px;}
._3c{width:15.349200px;}
._a{width:16.885800px;}
._15{width:17.949600px;}
._9{width:20.044800px;}
._35{width:21.691800px;}
._40{width:26.923800px;}
._3f{width:28.363800px;}
._39{width:29.515800px;}
._3b{width:31.053000px;}
._3e{width:32.785200px;}
._3d{width:34.936200px;}
._3a{width:35.986800px;}
._2a{width:41.103000px;}
._37{width:54.624000px;}
._36{width:57.739800px;}
._38{width:59.415000px;}
._19{width:79.392000px;}
._18{width:116.736000px;}
._1b{width:122.160000px;}
._1c{width:130.176000px;}
._1f{width:150.727800px;}
._2c{width:163.791000px;}
._1a{width:175.584000px;}
._24{width:187.455000px;}
._2d{width:198.535800px;}
._27{width:236.688000px;}
._1e{width:268.231800px;}
._2b{width:315.855000px;}
._28{width:345.138600px;}
._21{width:403.248000px;}
._1d{width:414.880800px;}
._17{width:434.112000px;}
._23{width:446.175000px;}
._34{width:456.343800px;}
._26{width:486.199800px;}
._22{width:499.596000px;}
._20{width:510.919800px;}
._25{width:563.631000px;}
._33{width:640.375800px;}
._30{width:685.791000px;}
._2e{width:691.036200px;}
._31{width:693.807000px;}
._32{width:757.743000px;}
._2f{width:832.479000px;}
._16{width:943.429800px;}
._13{width:1361.538600px;}
.fc8{color:rgb(109,167,162);}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:17.301750px;}
.y44{bottom:41.074650px;}
.y4a{bottom:46.967550px;}
.y4b{bottom:47.167950px;}
.yac{bottom:47.171700px;}
.yab{bottom:47.916000px;}
.y43{bottom:59.074650px;}
.y48{bottom:59.194650px;}
.y42{bottom:77.074650px;}
.y47{bottom:77.194650px;}
.yf9{bottom:85.478100px;}
.y127{bottom:89.246850px;}
.yaa{bottom:92.262750px;}
.y80{bottom:92.289750px;}
.y19a{bottom:92.291250px;}
.y155{bottom:92.294250px;}
.y169{bottom:92.300250px;}
.y41{bottom:95.074650px;}
.y46{bottom:95.194650px;}
.yd5{bottom:102.295050px;}
.yf8{bottom:106.214100px;}
.ya9{bottom:111.014250px;}
.y7f{bottom:111.041250px;}
.y199{bottom:111.042750px;}
.y154{bottom:111.045750px;}
.y40{bottom:113.074650px;}
.y45{bottom:113.194650px;}
.y126{bottom:113.587200px;}
.yd4{bottom:118.795050px;}
.yf7{bottom:126.950100px;}
.ya8{bottom:129.765750px;}
.y7e{bottom:129.792750px;}
.y198{bottom:129.794250px;}
.y153{bottom:129.797250px;}
.y1d0{bottom:130.329900px;}
.y125{bottom:140.423400px;}
.yd3{bottom:143.688750px;}
.y1cf{bottom:146.829900px;}
.yf6{bottom:147.686100px;}
.ya7{bottom:148.517250px;}
.y7d{bottom:148.544250px;}
.y197{bottom:148.545750px;}
.y152{bottom:148.548750px;}
.y35{bottom:159.373050px;}
.yd2{bottom:160.188750px;}
.y1ce{bottom:163.329900px;}
.y200{bottom:163.525350px;}
.yf5{bottom:165.686100px;}
.y124{bottom:167.259600px;}
.ya6{bottom:167.268750px;}
.y7c{bottom:167.295750px;}
.y196{bottom:167.297250px;}
.y151{bottom:167.300250px;}
.yd1{bottom:176.688750px;}
.y1cd{bottom:179.829900px;}
.y1ff{bottom:180.025350px;}
.yf4{bottom:183.686100px;}
.ya5{bottom:186.020250px;}
.y150{bottom:186.041250px;}
.y168{bottom:186.045750px;}
.y7b{bottom:186.047250px;}
.y195{bottom:186.048750px;}
.y3b{bottom:187.813050px;}
.y6{bottom:187.814400px;}
.yd0{bottom:193.188750px;}
.y123{bottom:194.095950px;}
.y1cc{bottom:196.329900px;}
.y1fe{bottom:196.525350px;}
.yf3{bottom:201.686100px;}
.y3a{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.ya4{bottom:204.771750px;}
.y14f{bottom:204.792750px;}
.y167{bottom:204.797250px;}
.y7a{bottom:204.798750px;}
.y194{bottom:204.800250px;}
.y1cb{bottom:212.829900px;}
.y1fd{bottom:213.025350px;}
.ycf{bottom:218.082600px;}
.yf2{bottom:219.686100px;}
.y39{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.y122{bottom:220.932150px;}
.ya3{bottom:223.523250px;}
.y14e{bottom:223.544250px;}
.y166{bottom:223.548750px;}
.y79{bottom:223.550250px;}
.y193{bottom:223.551750px;}
.y1ca{bottom:229.329900px;}
.y1fc{bottom:229.525350px;}
.yce{bottom:234.582600px;}
.y38{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.yf1{bottom:237.686100px;}
.ya2{bottom:242.274750px;}
.y78{bottom:242.292750px;}
.y14d{bottom:242.295750px;}
.y165{bottom:242.300250px;}
.y1c9{bottom:245.829900px;}
.y1fb{bottom:246.025350px;}
.y120{bottom:246.676350px;}
.ycd{bottom:251.082600px;}
.y37{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.yf0{bottom:259.514700px;}
.ya1{bottom:261.026250px;}
.y164{bottom:261.038250px;}
.y77{bottom:261.044250px;}
.y14c{bottom:261.047250px;}
.y192{bottom:261.051750px;}
.y1c8{bottom:262.329900px;}
.y1fa{bottom:262.525350px;}
.y11f{bottom:263.176350px;}
.ycc{bottom:267.582600px;}
.y36{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y121{bottom:278.580150px;}
.y1c7{bottom:278.829900px;}
.y1f9{bottom:279.025350px;}
.y11e{bottom:279.676350px;}
.ya0{bottom:279.777750px;}
.y163{bottom:279.789750px;}
.y76{bottom:279.795750px;}
.y14b{bottom:279.798750px;}
.yee{bottom:280.250700px;}
.ycb{bottom:284.082600px;}
.y1c6{bottom:295.329900px;}
.y1f8{bottom:295.525350px;}
.yef{bottom:298.250700px;}
.yed{bottom:298.251000px;}
.y9f{bottom:298.529250px;}
.y162{bottom:298.541250px;}
.y75{bottom:298.547250px;}
.y14a{bottom:298.550250px;}
.y11d{bottom:306.512550px;}
.yca{bottom:308.976450px;}
.y3f{bottom:309.273450px;}
.y1c5{bottom:311.829900px;}
.y1f7{bottom:312.025350px;}
.yec{bottom:316.251000px;}
.y191{bottom:317.237250px;}
.y9e{bottom:317.280750px;}
.y149{bottom:317.292750px;}
.y74{bottom:317.298750px;}
.y3e{bottom:325.473450px;}
.yc9{bottom:325.476450px;}
.y1c4{bottom:328.329900px;}
.y1f6{bottom:328.525350px;}
.y11b{bottom:332.256750px;}
.y190{bottom:335.988750px;}
.y9d{bottom:336.032250px;}
.y148{bottom:336.044250px;}
.y73{bottom:336.050250px;}
.yeb{bottom:336.987000px;}
.yc8{bottom:341.976450px;}
.y1c3{bottom:344.829900px;}
.y1f5{bottom:345.025350px;}
.y11c{bottom:347.660550px;}
.y11a{bottom:348.756750px;}
.y34{bottom:352.474800px;}
.y18f{bottom:354.740250px;}
.y72{bottom:354.789750px;}
.y147{bottom:354.795750px;}
.yc7{bottom:358.476450px;}
.yea{bottom:358.815450px;}
.y1c2{bottom:361.329900px;}
.y1f4{bottom:361.525350px;}
.y33{bottom:371.968800px;}
.y18e{bottom:373.491750px;}
.y9c{bottom:373.535250px;}
.y71{bottom:373.541250px;}
.y146{bottom:373.547250px;}
.y119{bottom:375.573450px;}
.y1c1{bottom:377.829900px;}
.y1f3{bottom:378.025350px;}
.y32{bottom:382.474800px;}
.yc6{bottom:383.370150px;}
.y18d{bottom:392.243250px;}
.y9b{bottom:392.286750px;}
.y70{bottom:392.292750px;}
.y145{bottom:392.298750px;}
.y1c0{bottom:394.329900px;}
.y1f2{bottom:394.525350px;}
.y118{bottom:398.817450px;}
.yc5{bottom:399.870150px;}
.y31{bottom:401.968800px;}
.y117{bottom:407.073450px;}
.y1bf{bottom:410.829900px;}
.y18c{bottom:410.994750px;}
.y1f1{bottom:411.025350px;}
.y9a{bottom:411.038250px;}
.y6f{bottom:411.044250px;}
.y144{bottom:411.050250px;}
.y30{bottom:412.474800px;}
.yc4{bottom:416.370150px;}
.ye9{bottom:416.706600px;}
.y1be{bottom:427.329900px;}
.y1f0{bottom:427.525350px;}
.y18b{bottom:429.746250px;}
.y161{bottom:429.780750px;}
.y99{bottom:429.789750px;}
.y6e{bottom:429.795750px;}
.y143{bottom:429.801750px;}
.y2f{bottom:431.968800px;}
.yc3{bottom:432.870150px;}
.y116{bottom:436.065450px;}
.ye8{bottom:438.534000px;}
.y2e{bottom:442.474800px;}
.y1bd{bottom:443.829900px;}
.y1ef{bottom:444.025350px;}
.y18a{bottom:448.497750px;}
.y160{bottom:448.532250px;}
.y98{bottom:448.541250px;}
.y6d{bottom:448.547250px;}
.yc2{bottom:449.370150px;}
.y115{bottom:452.565450px;}
.y1bc{bottom:460.329900px;}
.ye7{bottom:460.361400px;}
.y1ee{bottom:460.525350px;}
.y2d{bottom:461.964300px;}
.y189{bottom:467.249250px;}
.y15f{bottom:467.283750px;}
.y97{bottom:467.292750px;}
.y6c{bottom:467.298750px;}
.y142{bottom:467.301750px;}
.yc1{bottom:474.267450px;}
.y1bb{bottom:476.829900px;}
.y1ed{bottom:477.025350px;}
.ye6{bottom:482.188800px;}
.y23{bottom:483.765450px;}
.y188{bottom:486.000750px;}
.y15e{bottom:486.035250px;}
.y96{bottom:486.044250px;}
.y114{bottom:486.048750px;}
.y6b{bottom:486.050250px;}
.yc0{bottom:490.767450px;}
.y1ba{bottom:493.329900px;}
.y1ec{bottom:493.525350px;}
.y22{bottom:498.763950px;}
.ye5{bottom:504.016200px;}
.y187{bottom:504.752250px;}
.y6a{bottom:504.786750px;}
.y95{bottom:504.795750px;}
.y113{bottom:504.800250px;}
.ybf{bottom:507.267450px;}
.y1b9{bottom:509.829900px;}
.y1eb{bottom:510.025350px;}
.y21{bottom:513.762450px;}
.y186{bottom:523.503750px;}
.y141{bottom:523.524750px;}
.y112{bottom:523.526250px;}
.y69{bottom:523.538250px;}
.y94{bottom:523.547250px;}
.ybe{bottom:523.767450px;}
.ye4{bottom:525.843000px;}
.y1b8{bottom:526.329900px;}
.y1ea{bottom:526.525350px;}
.y20{bottom:528.760950px;}
.y185{bottom:542.255250px;}
.y140{bottom:542.276250px;}
.y111{bottom:542.277750px;}
.y68{bottom:542.289750px;}
.y93{bottom:542.298750px;}
.y1b7{bottom:542.829900px;}
.y1e9{bottom:543.025350px;}
.y1f{bottom:543.759450px;}
.ye3{bottom:546.579000px;}
.ybd{bottom:546.579450px;}
.y1e{bottom:558.757950px;}
.y1b6{bottom:559.329900px;}
.y1e8{bottom:559.525350px;}
.y184{bottom:561.006750px;}
.y13f{bottom:561.027750px;}
.y110{bottom:561.029250px;}
.y67{bottom:561.041250px;}
.y92{bottom:561.050250px;}
.ye2{bottom:567.315000px;}
.ybc{bottom:567.315450px;}
.y1d{bottom:573.756450px;}
.y1b5{bottom:575.829900px;}
.y1e7{bottom:576.025350px;}
.y183{bottom:579.758250px;}
.y13e{bottom:579.779250px;}
.y10f{bottom:579.780750px;}
.y66{bottom:579.792750px;}
.y91{bottom:579.801750px;}
.ye1{bottom:583.815000px;}
.ybb{bottom:583.815450px;}
.y1c{bottom:588.754950px;}
.y1b4{bottom:592.329900px;}
.y1e6{bottom:592.525350px;}
.y182{bottom:598.509750px;}
.y13d{bottom:598.530750px;}
.y10e{bottom:598.532250px;}
.y65{bottom:598.544250px;}
.y1b{bottom:603.753450px;}
.y1b3{bottom:608.829900px;}
.y1e5{bottom:609.025350px;}
.y181{bottom:617.261250px;}
.y10d{bottom:617.283750px;}
.y64{bottom:617.295750px;}
.y90{bottom:617.301750px;}
.y1a{bottom:618.751950px;}
.y1b2{bottom:625.329900px;}
.y1e4{bottom:625.525350px;}
.y19{bottom:633.750450px;}
.y180{bottom:636.012750px;}
.y13c{bottom:636.033750px;}
.y10c{bottom:636.035250px;}
.yba{bottom:636.042750px;}
.y63{bottom:636.047250px;}
.y1b1{bottom:641.829900px;}
.y1e3{bottom:642.025350px;}
.y18{bottom:648.748950px;}
.y17f{bottom:654.764250px;}
.y13b{bottom:654.785250px;}
.y10b{bottom:654.786750px;}
.yb9{bottom:654.794250px;}
.y62{bottom:654.798750px;}
.y1b0{bottom:658.329900px;}
.y1e2{bottom:658.525350px;}
.y17{bottom:663.747450px;}
.y17e{bottom:673.515750px;}
.ye0{bottom:673.521750px;}
.y13a{bottom:673.536750px;}
.y10a{bottom:673.538250px;}
.y8f{bottom:673.539750px;}
.yb8{bottom:673.545750px;}
.y61{bottom:673.550250px;}
.y1af{bottom:674.829900px;}
.y1e1{bottom:675.025350px;}
.y16{bottom:678.745950px;}
.y1ae{bottom:691.329900px;}
.y1e0{bottom:691.525350px;}
.y17d{bottom:692.267250px;}
.ydf{bottom:692.273250px;}
.y139{bottom:692.288250px;}
.y8e{bottom:692.291250px;}
.y15d{bottom:692.292750px;}
.yb7{bottom:692.297250px;}
.y60{bottom:692.298750px;}
.y15{bottom:693.744450px;}
.y1ad{bottom:707.829900px;}
.y1df{bottom:708.025350px;}
.y14{bottom:708.742950px;}
.y17c{bottom:711.018750px;}
.yde{bottom:711.024750px;}
.y138{bottom:711.039750px;}
.y109{bottom:711.041250px;}
.y8d{bottom:711.042750px;}
.y15c{bottom:711.044250px;}
.yb6{bottom:711.048750px;}
.y5f{bottom:711.050250px;}
.y13{bottom:723.741450px;}
.y1ac{bottom:724.329900px;}
.y1de{bottom:724.525350px;}
.y17b{bottom:729.770250px;}
.ydd{bottom:729.776250px;}
.y137{bottom:729.791250px;}
.y108{bottom:729.792750px;}
.y5e{bottom:729.794250px;}
.y15b{bottom:729.795750px;}
.yb5{bottom:729.800250px;}
.y12{bottom:738.739950px;}
.y1ab{bottom:740.829900px;}
.y1dd{bottom:741.025350px;}
.ydc{bottom:748.527750px;}
.y136{bottom:748.542750px;}
.y107{bottom:748.544250px;}
.y5d{bottom:748.545750px;}
.y15a{bottom:748.547250px;}
.yb4{bottom:748.551750px;}
.y11{bottom:753.738450px;}
.y1aa{bottom:757.329900px;}
.y1dc{bottom:757.525350px;}
.y17a{bottom:767.273250px;}
.ydb{bottom:767.279250px;}
.y135{bottom:767.294250px;}
.y106{bottom:767.295750px;}
.y5c{bottom:767.297250px;}
.y159{bottom:767.298750px;}
.y10{bottom:768.736950px;}
.y1a9{bottom:773.829900px;}
.y1db{bottom:774.025350px;}
.yf{bottom:783.735450px;}
.y179{bottom:786.024750px;}
.yda{bottom:786.030750px;}
.y134{bottom:786.045750px;}
.y105{bottom:786.047250px;}
.y5b{bottom:786.048750px;}
.y158{bottom:786.050250px;}
.yb3{bottom:786.051750px;}
.y1a8{bottom:790.329900px;}
.y1da{bottom:790.525350px;}
.ye{bottom:798.733950px;}
.y178{bottom:804.776250px;}
.y157{bottom:804.779250px;}
.yd9{bottom:804.782250px;}
.y133{bottom:804.797250px;}
.y104{bottom:804.798750px;}
.y5a{bottom:804.800250px;}
.y1a7{bottom:806.829900px;}
.y1d9{bottom:807.025350px;}
.yd{bottom:813.732450px;}
.y1a6{bottom:823.329900px;}
.y1d8{bottom:823.525350px;}
.y177{bottom:823.527750px;}
.y156{bottom:823.530750px;}
.yd8{bottom:823.533750px;}
.y59{bottom:823.547250px;}
.y132{bottom:823.548750px;}
.y103{bottom:823.550250px;}
.yc{bottom:828.730950px;}
.y1a5{bottom:839.829900px;}
.y1d7{bottom:840.025350px;}
.y176{bottom:842.279250px;}
.yb2{bottom:842.282250px;}
.yd7{bottom:842.285250px;}
.y58{bottom:842.298750px;}
.y131{bottom:842.300250px;}
.y102{bottom:842.301750px;}
.yb{bottom:843.729450px;}
.y1a4{bottom:856.329900px;}
.y1d6{bottom:856.525350px;}
.ya{bottom:858.727950px;}
.y175{bottom:861.030750px;}
.yb1{bottom:861.033750px;}
.yd6{bottom:861.036750px;}
.y57{bottom:861.050250px;}
.y130{bottom:861.051750px;}
.y1a3{bottom:872.829900px;}
.y1d5{bottom:873.025350px;}
.y9{bottom:873.726450px;}
.y174{bottom:879.782250px;}
.yb0{bottom:879.785250px;}
.y56{bottom:879.788250px;}
.y8c{bottom:879.800250px;}
.y8{bottom:888.724950px;}
.y1a2{bottom:889.329900px;}
.y1d4{bottom:889.525350px;}
.y173{bottom:898.533750px;}
.yaf{bottom:898.536750px;}
.y55{bottom:898.539750px;}
.y8b{bottom:898.550250px;}
.y7{bottom:903.723450px;}
.y1a1{bottom:905.829900px;}
.y1d3{bottom:906.025350px;}
.y101{bottom:910.819800px;}
.y12f{bottom:916.530750px;}
.y172{bottom:917.285250px;}
.yae{bottom:917.288250px;}
.y54{bottom:917.291250px;}
.y8a{bottom:917.298750px;}
.y1d2{bottom:922.525350px;}
.y24{bottom:923.289300px;}
.y171{bottom:936.036750px;}
.yad{bottom:936.039750px;}
.y53{bottom:936.042750px;}
.y89{bottom:936.050250px;}
.y100{bottom:937.656000px;}
.y12e{bottom:938.359200px;}
.y1a0{bottom:938.829900px;}
.y1d1{bottom:939.025350px;}
.y170{bottom:954.788250px;}
.y88{bottom:954.791250px;}
.y52{bottom:954.794250px;}
.y12d{bottom:960.187500px;}
.yff{bottom:964.492200px;}
.y2c{bottom:965.976300px;}
.y16f{bottom:973.539750px;}
.y87{bottom:973.542750px;}
.y51{bottom:973.545750px;}
.y12c{bottom:982.015950px;}
.y2b{bottom:982.473300px;}
.yfe{bottom:991.328550px;}
.y86{bottom:992.294250px;}
.y50{bottom:992.297250px;}
.y12b{bottom:1003.844250px;}
.y16e{bottom:1011.042750px;}
.y85{bottom:1011.045750px;}
.y4f{bottom:1011.048750px;}
.yfd{bottom:1018.164750px;}
.y19f{bottom:1021.065450px;}
.y3d{bottom:1021.700700px;}
.y12a{bottom:1025.672700px;}
.y16d{bottom:1029.794250px;}
.y84{bottom:1029.797250px;}
.y4e{bottom:1029.800250px;}
.y19e{bottom:1037.565450px;}
.y3c{bottom:1043.300700px;}
.yfc{bottom:1044.993000px;}
.y129{bottom:1047.501000px;}
.y16c{bottom:1048.545750px;}
.y83{bottom:1048.548750px;}
.y4d{bottom:1048.551750px;}
.y19d{bottom:1054.065450px;}
.y16b{bottom:1067.297250px;}
.y82{bottom:1067.300250px;}
.yfb{bottom:1068.237000px;}
.y128{bottom:1068.777450px;}
.y19c{bottom:1070.565450px;}
.y27{bottom:1071.552600px;}
.y2a{bottom:1082.937000px;}
.y81{bottom:1086.038250px;}
.y16a{bottom:1086.048750px;}
.y4c{bottom:1086.051750px;}
.y19b{bottom:1087.065450px;}
.yfa{bottom:1090.065450px;}
.y29{bottom:1097.937000px;}
.y26{bottom:1103.952600px;}
.y28{bottom:1112.937000px;}
.y25{bottom:1136.352600px;}
.ha{height:33.887109px;}
.h2{height:34.945312px;}
.he{height:35.616000px;}
.hd{height:36.336000px;}
.hf{height:37.652344px;}
.h3{height:43.031250px;}
.h24{height:44.024756px;}
.h23{height:44.025356px;}
.h2a{height:44.040356px;}
.h29{height:44.040956px;}
.h20{height:44.044556px;}
.h1f{height:44.046956px;}
.h22{height:44.057156px;}
.h27{height:44.103356px;}
.h7{height:44.520000px;}
.h1d{height:46.092075px;}
.h1e{height:46.105875px;}
.h28{height:46.248356px;}
.h5{height:47.244141px;}
.h21{height:48.408956px;}
.h4{height:48.410156px;}
.h10{height:48.455756px;}
.h1b{height:51.387356px;}
.h9{height:51.857109px;}
.hc{height:51.868509px;}
.h8{height:51.869109px;}
.h1a{height:51.875109px;}
.h15{height:51.881109px;}
.h13{height:51.887109px;}
.h2d{height:51.893109px;}
.h14{height:51.899109px;}
.h18{height:51.905109px;}
.h19{height:51.911109px;}
.h17{height:51.917109px;}
.h12{height:51.923109px;}
.h16{height:51.929109px;}
.h1c{height:51.942000px;}
.h2c{height:51.953109px;}
.h2b{height:51.959109px;}
.h25{height:51.971109px;}
.hb{height:54.504000px;}
.h11{height:56.664000px;}
.h26{height:76.007250px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x14{left:88.365900px;}
.x1a{left:91.601850px;}
.x1b{left:93.677850px;}
.x21{left:95.853750px;}
.x23{left:98.354700px;}
.x19{left:103.034850px;}
.x15{left:107.291250px;}
.x25{left:116.291250px;}
.x12{left:139.339200px;}
.x1c{left:224.921850px;}
.x10{left:246.018600px;}
.x11{left:261.906600px;}
.x6{left:270.660900px;}
.x9{left:274.656900px;}
.x4{left:290.354400px;}
.xd{left:302.698500px;}
.x3{left:306.392400px;}
.xa{left:317.352900px;}
.xf{left:322.290600px;}
.xc{left:323.352900px;}
.x22{left:327.453750px;}
.xb{left:330.696900px;}
.x7{left:356.676900px;}
.x8{left:360.684900px;}
.xe{left:390.250500px;}
.x5{left:426.785400px;}
.x18{left:451.325100px;}
.x13{left:455.592300px;}
.x1{left:469.770150px;}
.x16{left:474.091500px;}
.x1e{left:476.404500px;}
.x24{left:480.657000px;}
.x1d{left:487.842450px;}
.x17{left:492.094500px;}
.x26{left:501.094500px;}
.x1f{left:624.236250px;}
.x20{left:627.220500px;}
@media print{
.v2{vertical-align:-15.968000pt;}
.v6{vertical-align:-14.208000pt;}
.v7{vertical-align:-3.878400pt;}
.v3{vertical-align:-2.858667pt;}
.va{vertical-align:-1.921600pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v8{vertical-align:3.882667pt;}
.v5{vertical-align:14.195733pt;}
.v1{vertical-align:15.984000pt;}
.v9{vertical-align:29.312000pt;}
.ls34{letter-spacing:-4.053333pt;}
.ls31{letter-spacing:-3.797333pt;}
.ls42{letter-spacing:-3.584000pt;}
.ls44{letter-spacing:-2.688000pt;}
.ls36{letter-spacing:-2.261333pt;}
.ls43{letter-spacing:-2.048000pt;}
.ls29{letter-spacing:-1.834667pt;}
.ls3f{letter-spacing:-1.621333pt;}
.ls39{letter-spacing:-1.450667pt;}
.ls45{letter-spacing:-1.408000pt;}
.ls3b{letter-spacing:-1.280000pt;}
.ls3c{letter-spacing:-1.194667pt;}
.ls3d{letter-spacing:-0.981333pt;}
.ls2d{letter-spacing:-0.768000pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls41{letter-spacing:-0.597333pt;}
.ls46{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.298667pt;}
.ls47{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.168000pt;}
.ls19{letter-spacing:-0.149333pt;}
.ls35{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.117333pt;}
.ls37{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls26{letter-spacing:0.008000pt;}
.ls27{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.042667pt;}
.ls2b{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.170667pt;}
.ls2e{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.426667pt;}
.ls32{letter-spacing:0.512000pt;}
.ls30{letter-spacing:0.554667pt;}
.ls2f{letter-spacing:0.597333pt;}
.ls33{letter-spacing:0.682667pt;}
.ls3a{letter-spacing:1.450667pt;}
.ls12{letter-spacing:4.426667pt;}
.ls1f{letter-spacing:5.593067pt;}
.ls25{letter-spacing:11.530667pt;}
.ls2{letter-spacing:12.416000pt;}
.ls22{letter-spacing:15.093333pt;}
.ls13{letter-spacing:16.281067pt;}
.ls1e{letter-spacing:16.864000pt;}
.ls20{letter-spacing:16.864533pt;}
.ls17{letter-spacing:22.197867pt;}
.lsc{letter-spacing:29.864000pt;}
.ls16{letter-spacing:39.989333pt;}
.ls23{letter-spacing:45.864533pt;}
.ls11{letter-spacing:47.093867pt;}
.ls1b{letter-spacing:52.426667pt;}
.lsb{letter-spacing:56.530667pt;}
.ls1c{letter-spacing:56.531200pt;}
.ls21{letter-spacing:60.124800pt;}
.ls24{letter-spacing:69.593600pt;}
.lsd{letter-spacing:80.259733pt;}
.ls1d{letter-spacing:80.260267pt;}
.ls1a{letter-spacing:86.791467pt;}
.lse{letter-spacing:152.661333pt;}
.lsf{letter-spacing:176.384000pt;}
.lsa{letter-spacing:195.925333pt;}
.ls14{letter-spacing:237.864000pt;}
.ls8{letter-spacing:244.850133pt;}
.ls10{letter-spacing:252.124800pt;}
.ls15{letter-spacing:261.593600pt;}
.wsa6{word-spacing:-16.485333pt;}
.ws1{word-spacing:-13.344000pt;}
.wsad{word-spacing:-13.312000pt;}
.wsa9{word-spacing:-12.458667pt;}
.wsaf{word-spacing:-12.416000pt;}
.wsab{word-spacing:-12.373333pt;}
.wsaa{word-spacing:-12.160000pt;}
.wsa8{word-spacing:-11.989333pt;}
.wsa7{word-spacing:-11.904000pt;}
.ws58{word-spacing:-11.861333pt;}
.ws59{word-spacing:-11.648000pt;}
.wsac{word-spacing:-11.562667pt;}
.ws5{word-spacing:-10.965333pt;}
.wsae{word-spacing:-10.880000pt;}
.ws3{word-spacing:-9.340800pt;}
.ws2{word-spacing:-9.172800pt;}
.ws5a{word-spacing:-8.302933pt;}
.wsb4{word-spacing:-4.224000pt;}
.ws36{word-spacing:-3.168000pt;}
.ws2e{word-spacing:-2.928000pt;}
.ws9b{word-spacing:-2.880000pt;}
.ws21{word-spacing:-2.832000pt;}
.ws26{word-spacing:-2.640000pt;}
.wsc8{word-spacing:-2.602667pt;}
.ws66{word-spacing:-2.592000pt;}
.wsd6{word-spacing:-2.517333pt;}
.ws93{word-spacing:-2.352000pt;}
.ws88{word-spacing:-2.304000pt;}
.ws7e{word-spacing:-2.256000pt;}
.wsbb{word-spacing:-2.218667pt;}
.ws6b{word-spacing:-2.112000pt;}
.wse7{word-spacing:-2.090667pt;}
.ws82{word-spacing:-2.064000pt;}
.ws8d{word-spacing:-1.968000pt;}
.ws6a{word-spacing:-1.872000pt;}
.ws8b{word-spacing:-1.824000pt;}
.wse0{word-spacing:-1.792000pt;}
.wsbd{word-spacing:-1.749333pt;}
.wse9{word-spacing:-1.621333pt;}
.wsf{word-spacing:-1.440000pt;}
.wse2{word-spacing:-1.408000pt;}
.wsc{word-spacing:-1.296000pt;}
.ws19{word-spacing:-1.248000pt;}
.wsd2{word-spacing:-1.194667pt;}
.ws38{word-spacing:-1.152000pt;}
.ws45{word-spacing:-1.104000pt;}
.ws80{word-spacing:-1.056000pt;}
.wse3{word-spacing:-0.981333pt;}
.ws37{word-spacing:-0.960000pt;}
.wsca{word-spacing:-0.938667pt;}
.ws67{word-spacing:-0.896000pt;}
.ws31{word-spacing:-0.864000pt;}
.wsd4{word-spacing:-0.853333pt;}
.wsb0{word-spacing:-0.816000pt;}
.ws91{word-spacing:-0.768000pt;}
.ws40{word-spacing:-0.720000pt;}
.wsc4{word-spacing:-0.682667pt;}
.ws9a{word-spacing:-0.672000pt;}
.ws9{word-spacing:-0.624000pt;}
.wsbe{word-spacing:-0.554667pt;}
.ws94{word-spacing:-0.528000pt;}
.ws2b{word-spacing:-0.426667pt;}
.ws15{word-spacing:-0.384000pt;}
.wsbc{word-spacing:-0.341333pt;}
.ws32{word-spacing:-0.336000pt;}
.wsb9{word-spacing:-0.298667pt;}
.ws98{word-spacing:-0.288000pt;}
.wsa2{word-spacing:-0.240000pt;}
.wsc5{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.096000pt;}
.wsc0{word-spacing:-0.085333pt;}
.ws6{word-spacing:0.000000pt;}
.wsd5{word-spacing:0.042667pt;}
.ws6e{word-spacing:0.048000pt;}
.wsc9{word-spacing:0.085333pt;}
.ws69{word-spacing:0.149333pt;}
.ws28{word-spacing:0.168000pt;}
.ws68{word-spacing:0.213333pt;}
.ws27{word-spacing:0.240000pt;}
.wse8{word-spacing:0.256000pt;}
.ws64{word-spacing:0.336000pt;}
.ws8a{word-spacing:0.384000pt;}
.wsb3{word-spacing:0.426667pt;}
.wscf{word-spacing:0.469333pt;}
.ws7{word-spacing:0.480000pt;}
.ws70{word-spacing:0.512000pt;}
.ws65{word-spacing:0.576000pt;}
.wsdc{word-spacing:0.597333pt;}
.ws20{word-spacing:0.624000pt;}
.wsd9{word-spacing:0.640000pt;}
.ws2f{word-spacing:0.672000pt;}
.wsa0{word-spacing:0.720000pt;}
.wsb8{word-spacing:0.768000pt;}
.ws3c{word-spacing:0.816000pt;}
.wscb{word-spacing:0.853333pt;}
.wsd3{word-spacing:0.896000pt;}
.ws1b{word-spacing:0.912000pt;}
.wsd1{word-spacing:0.981333pt;}
.ws51{word-spacing:1.008000pt;}
.wsd0{word-spacing:1.194667pt;}
.ws57{word-spacing:1.200000pt;}
.wsce{word-spacing:1.280000pt;}
.ws34{word-spacing:1.392000pt;}
.wscc{word-spacing:1.450667pt;}
.ws2d{word-spacing:1.493333pt;}
.wsd7{word-spacing:1.621333pt;}
.wsa3{word-spacing:1.680000pt;}
.wsdf{word-spacing:1.706667pt;}
.ws84{word-spacing:1.728000pt;}
.wsb7{word-spacing:1.749333pt;}
.ws13{word-spacing:1.824000pt;}
.wsb2{word-spacing:1.834667pt;}
.ws62{word-spacing:1.872000pt;}
.ws1a{word-spacing:1.968000pt;}
.wsde{word-spacing:2.048000pt;}
.ws89{word-spacing:2.064000pt;}
.wsb1{word-spacing:2.090667pt;}
.ws6c{word-spacing:2.112000pt;}
.ws4c{word-spacing:2.160000pt;}
.ws18{word-spacing:2.208000pt;}
.ws33{word-spacing:2.256000pt;}
.wsc6{word-spacing:2.261333pt;}
.ws87{word-spacing:2.304000pt;}
.ws54{word-spacing:2.352000pt;}
.ws9e{word-spacing:2.400000pt;}
.ws1d{word-spacing:2.448000pt;}
.ws44{word-spacing:2.688000pt;}
.ws3e{word-spacing:2.736000pt;}
.ws35{word-spacing:2.976000pt;}
.ws61{word-spacing:3.024000pt;}
.ws4e{word-spacing:3.072000pt;}
.wsdd{word-spacing:3.157333pt;}
.ws17{word-spacing:3.168000pt;}
.ws3a{word-spacing:3.264000pt;}
.ws30{word-spacing:3.312000pt;}
.wsa{word-spacing:3.456000pt;}
.wsc3{word-spacing:3.498667pt;}
.ws95{word-spacing:3.504000pt;}
.wsdb{word-spacing:3.541333pt;}
.ws8c{word-spacing:3.600000pt;}
.ws42{word-spacing:3.696000pt;}
.ws3d{word-spacing:3.792000pt;}
.wsbf{word-spacing:3.797333pt;}
.ws3b{word-spacing:3.840000pt;}
.ws6f{word-spacing:3.888000pt;}
.ws85{word-spacing:3.968000pt;}
.ws1e{word-spacing:3.984000pt;}
.wsc7{word-spacing:4.053333pt;}
.ws63{word-spacing:4.080000pt;}
.ws4a{word-spacing:4.224000pt;}
.ws9c{word-spacing:4.416000pt;}
.ws4b{word-spacing:4.464000pt;}
.ws43{word-spacing:4.608000pt;}
.ws41{word-spacing:4.656000pt;}
.ws4d{word-spacing:4.704000pt;}
.wscd{word-spacing:4.778667pt;}
.ws9d{word-spacing:4.896000pt;}
.ws23{word-spacing:4.944000pt;}
.ws49{word-spacing:5.040000pt;}
.ws1f{word-spacing:5.136000pt;}
.ws16{word-spacing:5.376000pt;}
.ws53{word-spacing:5.424000pt;}
.ws86{word-spacing:5.712000pt;}
.wsda{word-spacing:5.717333pt;}
.wsb{word-spacing:5.808000pt;}
.ws8{word-spacing:5.856000pt;}
.ws60{word-spacing:5.904000pt;}
.wsa1{word-spacing:5.952000pt;}
.ws99{word-spacing:6.048000pt;}
.ws6d{word-spacing:6.240000pt;}
.ws83{word-spacing:6.288000pt;}
.ws25{word-spacing:6.384000pt;}
.ws12{word-spacing:6.528000pt;}
.wsd{word-spacing:6.576000pt;}
.wsc1{word-spacing:6.656000pt;}
.ws39{word-spacing:6.720000pt;}
.ws96{word-spacing:6.864000pt;}
.wsb5{word-spacing:6.869333pt;}
.wsa5{word-spacing:6.912000pt;}
.ws50{word-spacing:7.008000pt;}
.wse1{word-spacing:7.082667pt;}
.ws92{word-spacing:7.152000pt;}
.ws47{word-spacing:7.200000pt;}
.wse4{word-spacing:7.210667pt;}
.ws56{word-spacing:7.296000pt;}
.ws3f{word-spacing:7.392000pt;}
.ws9f{word-spacing:7.728000pt;}
.wsd8{word-spacing:8.064000pt;}
.wsba{word-spacing:8.277333pt;}
.ws52{word-spacing:8.352000pt;}
.ws1c{word-spacing:8.448000pt;}
.ws90{word-spacing:8.496000pt;}
.ws4f{word-spacing:8.736000pt;}
.wse6{word-spacing:8.874667pt;}
.ws7f{word-spacing:9.072000pt;}
.ws97{word-spacing:9.168000pt;}
.ws48{word-spacing:9.216000pt;}
.ws2c{word-spacing:9.344000pt;}
.ws55{word-spacing:9.408000pt;}
.ws46{word-spacing:9.504000pt;}
.ws10{word-spacing:9.840000pt;}
.wsb6{word-spacing:10.069333pt;}
.ws8f{word-spacing:10.272000pt;}
.ws81{word-spacing:10.368000pt;}
.wse5{word-spacing:11.178667pt;}
.ws22{word-spacing:11.280000pt;}
.wse{word-spacing:11.376000pt;}
.ws2a{word-spacing:11.946667pt;}
.ws11{word-spacing:12.048000pt;}
.wsa4{word-spacing:12.096000pt;}
.ws14{word-spacing:13.392000pt;}
.ws5f{word-spacing:13.632000pt;}
.ws8e{word-spacing:14.304000pt;}
.ws7b{word-spacing:15.701333pt;}
.wsc2{word-spacing:17.706667pt;}
.ws4{word-spacing:93.738667pt;}
.ws5d{word-spacing:97.590400pt;}
.ws78{word-spacing:128.768000pt;}
.ws75{word-spacing:140.586667pt;}
.ws73{word-spacing:140.629333pt;}
.ws74{word-spacing:146.090667pt;}
.ws77{word-spacing:152.448000pt;}
.ws7a{word-spacing:158.378667pt;}
.ws76{word-spacing:170.240000pt;}
.ws29{word-spacing:178.656000pt;}
.ws7c{word-spacing:321.073600pt;}
.ws79{word-spacing:392.198933pt;}
.ws72{word-spacing:470.912000pt;}
.ws5e{word-spacing:527.708267pt;}
.ws71{word-spacing:553.137600pt;}
.ws5b{word-spacing:626.858667pt;}
.ws5c{word-spacing:639.133333pt;}
.ws7d{word-spacing:671.225067pt;}
.ws0{word-spacing:1104.048000pt;}
._c{margin-left:-25.684800pt;}
._f{margin-left:-16.883200pt;}
._29{margin-left:-13.344000pt;}
._12{margin-left:-11.686933pt;}
._7{margin-left:-6.192000pt;}
._e{margin-left:-4.706667pt;}
._3{margin-left:-3.523200pt;}
._0{margin-left:-2.625600pt;}
._4{margin-left:-1.483200pt;}
._d{width:0.899733pt;}
._2{width:1.833600pt;}
._b{width:3.336000pt;}
._14{width:4.372800pt;}
._6{width:5.385600pt;}
._1{width:6.609600pt;}
._5{width:7.699200pt;}
._11{width:8.902400pt;}
._10{width:10.656000pt;}
._8{width:11.942400pt;}
._3c{width:13.643733pt;}
._a{width:15.009600pt;}
._15{width:15.955200pt;}
._9{width:17.817600pt;}
._35{width:19.281600pt;}
._40{width:23.932267pt;}
._3f{width:25.212267pt;}
._39{width:26.236267pt;}
._3b{width:27.602667pt;}
._3e{width:29.142400pt;}
._3d{width:31.054400pt;}
._3a{width:31.988267pt;}
._2a{width:36.536000pt;}
._37{width:48.554667pt;}
._36{width:51.324267pt;}
._38{width:52.813333pt;}
._19{width:70.570667pt;}
._18{width:103.765333pt;}
._1b{width:108.586667pt;}
._1c{width:115.712000pt;}
._1f{width:133.980267pt;}
._2c{width:145.592000pt;}
._1a{width:156.074667pt;}
._24{width:166.626667pt;}
._2d{width:176.476267pt;}
._27{width:210.389333pt;}
._1e{width:238.428267pt;}
._2b{width:280.760000pt;}
._28{width:306.789867pt;}
._21{width:358.442667pt;}
._1d{width:368.782933pt;}
._17{width:385.877333pt;}
._23{width:396.600000pt;}
._34{width:405.638933pt;}
._26{width:432.177600pt;}
._22{width:444.085333pt;}
._20{width:454.150933pt;}
._25{width:501.005333pt;}
._33{width:569.222933pt;}
._30{width:609.592000pt;}
._2e{width:614.254400pt;}
._31{width:616.717333pt;}
._32{width:673.549333pt;}
._2f{width:739.981333pt;}
._16{width:838.604267pt;}
._13{width:1210.256533pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:15.379333pt;}
.y44{bottom:36.510800pt;}
.y4a{bottom:41.748933pt;}
.y4b{bottom:41.927067pt;}
.yac{bottom:41.930400pt;}
.yab{bottom:42.592000pt;}
.y43{bottom:52.510800pt;}
.y48{bottom:52.617467pt;}
.y42{bottom:68.510800pt;}
.y47{bottom:68.617467pt;}
.yf9{bottom:75.980533pt;}
.y127{bottom:79.330533pt;}
.yaa{bottom:82.011333pt;}
.y80{bottom:82.035333pt;}
.y19a{bottom:82.036667pt;}
.y155{bottom:82.039333pt;}
.y169{bottom:82.044667pt;}
.y41{bottom:84.510800pt;}
.y46{bottom:84.617467pt;}
.yd5{bottom:90.928933pt;}
.yf8{bottom:94.412533pt;}
.ya9{bottom:98.679333pt;}
.y7f{bottom:98.703333pt;}
.y199{bottom:98.704667pt;}
.y154{bottom:98.707333pt;}
.y40{bottom:100.510800pt;}
.y45{bottom:100.617467pt;}
.y126{bottom:100.966400pt;}
.yd4{bottom:105.595600pt;}
.yf7{bottom:112.844533pt;}
.ya8{bottom:115.347333pt;}
.y7e{bottom:115.371333pt;}
.y198{bottom:115.372667pt;}
.y153{bottom:115.375333pt;}
.y1d0{bottom:115.848800pt;}
.y125{bottom:124.820800pt;}
.yd3{bottom:127.723333pt;}
.y1cf{bottom:130.515467pt;}
.yf6{bottom:131.276533pt;}
.ya7{bottom:132.015333pt;}
.y7d{bottom:132.039333pt;}
.y197{bottom:132.040667pt;}
.y152{bottom:132.043333pt;}
.y35{bottom:141.664933pt;}
.yd2{bottom:142.390000pt;}
.y1ce{bottom:145.182133pt;}
.y200{bottom:145.355867pt;}
.yf5{bottom:147.276533pt;}
.y124{bottom:148.675200pt;}
.ya6{bottom:148.683333pt;}
.y7c{bottom:148.707333pt;}
.y196{bottom:148.708667pt;}
.y151{bottom:148.711333pt;}
.yd1{bottom:157.056667pt;}
.y1cd{bottom:159.848800pt;}
.y1ff{bottom:160.022533pt;}
.yf4{bottom:163.276533pt;}
.ya5{bottom:165.351333pt;}
.y150{bottom:165.370000pt;}
.y168{bottom:165.374000pt;}
.y7b{bottom:165.375333pt;}
.y195{bottom:165.376667pt;}
.y3b{bottom:166.944933pt;}
.y6{bottom:166.946133pt;}
.yd0{bottom:171.723333pt;}
.y123{bottom:172.529733pt;}
.y1cc{bottom:174.515467pt;}
.y1fe{bottom:174.689200pt;}
.yf3{bottom:179.276533pt;}
.y3a{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.ya4{bottom:182.019333pt;}
.y14f{bottom:182.038000pt;}
.y167{bottom:182.042000pt;}
.y7a{bottom:182.043333pt;}
.y194{bottom:182.044667pt;}
.y1cb{bottom:189.182133pt;}
.y1fd{bottom:189.355867pt;}
.ycf{bottom:193.851200pt;}
.yf2{bottom:195.276533pt;}
.y39{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.y122{bottom:196.384133pt;}
.ya3{bottom:198.687333pt;}
.y14e{bottom:198.706000pt;}
.y166{bottom:198.710000pt;}
.y79{bottom:198.711333pt;}
.y193{bottom:198.712667pt;}
.y1ca{bottom:203.848800pt;}
.y1fc{bottom:204.022533pt;}
.yce{bottom:208.517867pt;}
.y38{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.yf1{bottom:211.276533pt;}
.ya2{bottom:215.355333pt;}
.y78{bottom:215.371333pt;}
.y14d{bottom:215.374000pt;}
.y165{bottom:215.378000pt;}
.y1c9{bottom:218.515467pt;}
.y1fb{bottom:218.689200pt;}
.y120{bottom:219.267867pt;}
.ycd{bottom:223.184533pt;}
.y37{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.yf0{bottom:230.679733pt;}
.ya1{bottom:232.023333pt;}
.y164{bottom:232.034000pt;}
.y77{bottom:232.039333pt;}
.y14c{bottom:232.042000pt;}
.y192{bottom:232.046000pt;}
.y1c8{bottom:233.182133pt;}
.y1fa{bottom:233.355867pt;}
.y11f{bottom:233.934533pt;}
.ycc{bottom:237.851200pt;}
.y36{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y121{bottom:247.626800pt;}
.y1c7{bottom:247.848800pt;}
.y1f9{bottom:248.022533pt;}
.y11e{bottom:248.601200pt;}
.ya0{bottom:248.691333pt;}
.y163{bottom:248.702000pt;}
.y76{bottom:248.707333pt;}
.y14b{bottom:248.710000pt;}
.yee{bottom:249.111733pt;}
.ycb{bottom:252.517867pt;}
.y1c6{bottom:262.515467pt;}
.y1f8{bottom:262.689200pt;}
.yef{bottom:265.111733pt;}
.yed{bottom:265.112000pt;}
.y9f{bottom:265.359333pt;}
.y162{bottom:265.370000pt;}
.y75{bottom:265.375333pt;}
.y14a{bottom:265.378000pt;}
.y11d{bottom:272.455600pt;}
.yca{bottom:274.645733pt;}
.y3f{bottom:274.909733pt;}
.y1c5{bottom:277.182133pt;}
.y1f7{bottom:277.355867pt;}
.yec{bottom:281.112000pt;}
.y191{bottom:281.988667pt;}
.y9e{bottom:282.027333pt;}
.y149{bottom:282.038000pt;}
.y74{bottom:282.043333pt;}
.y3e{bottom:289.309733pt;}
.yc9{bottom:289.312400pt;}
.y1c4{bottom:291.848800pt;}
.y1f6{bottom:292.022533pt;}
.y11b{bottom:295.339333pt;}
.y190{bottom:298.656667pt;}
.y9d{bottom:298.695333pt;}
.y148{bottom:298.706000pt;}
.y73{bottom:298.711333pt;}
.yeb{bottom:299.544000pt;}
.yc8{bottom:303.979067pt;}
.y1c3{bottom:306.515467pt;}
.y1f5{bottom:306.689200pt;}
.y11c{bottom:309.031600pt;}
.y11a{bottom:310.006000pt;}
.y34{bottom:313.310933pt;}
.y18f{bottom:315.324667pt;}
.y72{bottom:315.368667pt;}
.y147{bottom:315.374000pt;}
.yc7{bottom:318.645733pt;}
.yea{bottom:318.947067pt;}
.y1c2{bottom:321.182133pt;}
.y1f4{bottom:321.355867pt;}
.y33{bottom:330.638933pt;}
.y18e{bottom:331.992667pt;}
.y9c{bottom:332.031333pt;}
.y71{bottom:332.036667pt;}
.y146{bottom:332.042000pt;}
.y119{bottom:333.843067pt;}
.y1c1{bottom:335.848800pt;}
.y1f3{bottom:336.022533pt;}
.y32{bottom:339.977600pt;}
.yc6{bottom:340.773467pt;}
.y18d{bottom:348.660667pt;}
.y9b{bottom:348.699333pt;}
.y70{bottom:348.704667pt;}
.y145{bottom:348.710000pt;}
.y1c0{bottom:350.515467pt;}
.y1f2{bottom:350.689200pt;}
.y118{bottom:354.504400pt;}
.yc5{bottom:355.440133pt;}
.y31{bottom:357.305600pt;}
.y117{bottom:361.843067pt;}
.y1bf{bottom:365.182133pt;}
.y18c{bottom:365.328667pt;}
.y1f1{bottom:365.355867pt;}
.y9a{bottom:365.367333pt;}
.y6f{bottom:365.372667pt;}
.y144{bottom:365.378000pt;}
.y30{bottom:366.644267pt;}
.yc4{bottom:370.106800pt;}
.ye9{bottom:370.405867pt;}
.y1be{bottom:379.848800pt;}
.y1f0{bottom:380.022533pt;}
.y18b{bottom:381.996667pt;}
.y161{bottom:382.027333pt;}
.y99{bottom:382.035333pt;}
.y6e{bottom:382.040667pt;}
.y143{bottom:382.046000pt;}
.y2f{bottom:383.972267pt;}
.yc3{bottom:384.773467pt;}
.y116{bottom:387.613733pt;}
.ye8{bottom:389.808000pt;}
.y2e{bottom:393.310933pt;}
.y1bd{bottom:394.515467pt;}
.y1ef{bottom:394.689200pt;}
.y18a{bottom:398.664667pt;}
.y160{bottom:398.695333pt;}
.y98{bottom:398.703333pt;}
.y6d{bottom:398.708667pt;}
.yc2{bottom:399.440133pt;}
.y115{bottom:402.280400pt;}
.y1bc{bottom:409.182133pt;}
.ye7{bottom:409.210133pt;}
.y1ee{bottom:409.355867pt;}
.y2d{bottom:410.634933pt;}
.y189{bottom:415.332667pt;}
.y15f{bottom:415.363333pt;}
.y97{bottom:415.371333pt;}
.y6c{bottom:415.376667pt;}
.y142{bottom:415.379333pt;}
.yc1{bottom:421.571067pt;}
.y1bb{bottom:423.848800pt;}
.y1ed{bottom:424.022533pt;}
.ye6{bottom:428.612267pt;}
.y23{bottom:430.013733pt;}
.y188{bottom:432.000667pt;}
.y15e{bottom:432.031333pt;}
.y96{bottom:432.039333pt;}
.y114{bottom:432.043333pt;}
.y6b{bottom:432.044667pt;}
.yc0{bottom:436.237733pt;}
.y1ba{bottom:438.515467pt;}
.y1ec{bottom:438.689200pt;}
.y22{bottom:443.345733pt;}
.ye5{bottom:448.014400pt;}
.y187{bottom:448.668667pt;}
.y6a{bottom:448.699333pt;}
.y95{bottom:448.707333pt;}
.y113{bottom:448.711333pt;}
.ybf{bottom:450.904400pt;}
.y1b9{bottom:453.182133pt;}
.y1eb{bottom:453.355867pt;}
.y21{bottom:456.677733pt;}
.y186{bottom:465.336667pt;}
.y141{bottom:465.355333pt;}
.y112{bottom:465.356667pt;}
.y69{bottom:465.367333pt;}
.y94{bottom:465.375333pt;}
.ybe{bottom:465.571067pt;}
.ye4{bottom:467.416000pt;}
.y1b8{bottom:467.848800pt;}
.y1ea{bottom:468.022533pt;}
.y20{bottom:470.009733pt;}
.y185{bottom:482.004667pt;}
.y140{bottom:482.023333pt;}
.y111{bottom:482.024667pt;}
.y68{bottom:482.035333pt;}
.y93{bottom:482.043333pt;}
.y1b7{bottom:482.515467pt;}
.y1e9{bottom:482.689200pt;}
.y1f{bottom:483.341733pt;}
.ye3{bottom:485.848000pt;}
.ybd{bottom:485.848400pt;}
.y1e{bottom:496.673733pt;}
.y1b6{bottom:497.182133pt;}
.y1e8{bottom:497.355867pt;}
.y184{bottom:498.672667pt;}
.y13f{bottom:498.691333pt;}
.y110{bottom:498.692667pt;}
.y67{bottom:498.703333pt;}
.y92{bottom:498.711333pt;}
.ye2{bottom:504.280000pt;}
.ybc{bottom:504.280400pt;}
.y1d{bottom:510.005733pt;}
.y1b5{bottom:511.848800pt;}
.y1e7{bottom:512.022533pt;}
.y183{bottom:515.340667pt;}
.y13e{bottom:515.359333pt;}
.y10f{bottom:515.360667pt;}
.y66{bottom:515.371333pt;}
.y91{bottom:515.379333pt;}
.ye1{bottom:518.946667pt;}
.ybb{bottom:518.947067pt;}
.y1c{bottom:523.337733pt;}
.y1b4{bottom:526.515467pt;}
.y1e6{bottom:526.689200pt;}
.y182{bottom:532.008667pt;}
.y13d{bottom:532.027333pt;}
.y10e{bottom:532.028667pt;}
.y65{bottom:532.039333pt;}
.y1b{bottom:536.669733pt;}
.y1b3{bottom:541.182133pt;}
.y1e5{bottom:541.355867pt;}
.y181{bottom:548.676667pt;}
.y10d{bottom:548.696667pt;}
.y64{bottom:548.707333pt;}
.y90{bottom:548.712667pt;}
.y1a{bottom:550.001733pt;}
.y1b2{bottom:555.848800pt;}
.y1e4{bottom:556.022533pt;}
.y19{bottom:563.333733pt;}
.y180{bottom:565.344667pt;}
.y13c{bottom:565.363333pt;}
.y10c{bottom:565.364667pt;}
.yba{bottom:565.371333pt;}
.y63{bottom:565.375333pt;}
.y1b1{bottom:570.515467pt;}
.y1e3{bottom:570.689200pt;}
.y18{bottom:576.665733pt;}
.y17f{bottom:582.012667pt;}
.y13b{bottom:582.031333pt;}
.y10b{bottom:582.032667pt;}
.yb9{bottom:582.039333pt;}
.y62{bottom:582.043333pt;}
.y1b0{bottom:585.182133pt;}
.y1e2{bottom:585.355867pt;}
.y17{bottom:589.997733pt;}
.y17e{bottom:598.680667pt;}
.ye0{bottom:598.686000pt;}
.y13a{bottom:598.699333pt;}
.y10a{bottom:598.700667pt;}
.y8f{bottom:598.702000pt;}
.yb8{bottom:598.707333pt;}
.y61{bottom:598.711333pt;}
.y1af{bottom:599.848800pt;}
.y1e1{bottom:600.022533pt;}
.y16{bottom:603.329733pt;}
.y1ae{bottom:614.515467pt;}
.y1e0{bottom:614.689200pt;}
.y17d{bottom:615.348667pt;}
.ydf{bottom:615.354000pt;}
.y139{bottom:615.367333pt;}
.y8e{bottom:615.370000pt;}
.y15d{bottom:615.371333pt;}
.yb7{bottom:615.375333pt;}
.y60{bottom:615.376667pt;}
.y15{bottom:616.661733pt;}
.y1ad{bottom:629.182133pt;}
.y1df{bottom:629.355867pt;}
.y14{bottom:629.993733pt;}
.y17c{bottom:632.016667pt;}
.yde{bottom:632.022000pt;}
.y138{bottom:632.035333pt;}
.y109{bottom:632.036667pt;}
.y8d{bottom:632.038000pt;}
.y15c{bottom:632.039333pt;}
.yb6{bottom:632.043333pt;}
.y5f{bottom:632.044667pt;}
.y13{bottom:643.325733pt;}
.y1ac{bottom:643.848800pt;}
.y1de{bottom:644.022533pt;}
.y17b{bottom:648.684667pt;}
.ydd{bottom:648.690000pt;}
.y137{bottom:648.703333pt;}
.y108{bottom:648.704667pt;}
.y5e{bottom:648.706000pt;}
.y15b{bottom:648.707333pt;}
.yb5{bottom:648.711333pt;}
.y12{bottom:656.657733pt;}
.y1ab{bottom:658.515467pt;}
.y1dd{bottom:658.689200pt;}
.ydc{bottom:665.358000pt;}
.y136{bottom:665.371333pt;}
.y107{bottom:665.372667pt;}
.y5d{bottom:665.374000pt;}
.y15a{bottom:665.375333pt;}
.yb4{bottom:665.379333pt;}
.y11{bottom:669.989733pt;}
.y1aa{bottom:673.182133pt;}
.y1dc{bottom:673.355867pt;}
.y17a{bottom:682.020667pt;}
.ydb{bottom:682.026000pt;}
.y135{bottom:682.039333pt;}
.y106{bottom:682.040667pt;}
.y5c{bottom:682.042000pt;}
.y159{bottom:682.043333pt;}
.y10{bottom:683.321733pt;}
.y1a9{bottom:687.848800pt;}
.y1db{bottom:688.022533pt;}
.yf{bottom:696.653733pt;}
.y179{bottom:698.688667pt;}
.yda{bottom:698.694000pt;}
.y134{bottom:698.707333pt;}
.y105{bottom:698.708667pt;}
.y5b{bottom:698.710000pt;}
.y158{bottom:698.711333pt;}
.yb3{bottom:698.712667pt;}
.y1a8{bottom:702.515467pt;}
.y1da{bottom:702.689200pt;}
.ye{bottom:709.985733pt;}
.y178{bottom:715.356667pt;}
.y157{bottom:715.359333pt;}
.yd9{bottom:715.362000pt;}
.y133{bottom:715.375333pt;}
.y104{bottom:715.376667pt;}
.y5a{bottom:715.378000pt;}
.y1a7{bottom:717.182133pt;}
.y1d9{bottom:717.355867pt;}
.yd{bottom:723.317733pt;}
.y1a6{bottom:731.848800pt;}
.y1d8{bottom:732.022533pt;}
.y177{bottom:732.024667pt;}
.y156{bottom:732.027333pt;}
.yd8{bottom:732.030000pt;}
.y59{bottom:732.042000pt;}
.y132{bottom:732.043333pt;}
.y103{bottom:732.044667pt;}
.yc{bottom:736.649733pt;}
.y1a5{bottom:746.515467pt;}
.y1d7{bottom:746.689200pt;}
.y176{bottom:748.692667pt;}
.yb2{bottom:748.695333pt;}
.yd7{bottom:748.698000pt;}
.y58{bottom:748.710000pt;}
.y131{bottom:748.711333pt;}
.y102{bottom:748.712667pt;}
.yb{bottom:749.981733pt;}
.y1a4{bottom:761.182133pt;}
.y1d6{bottom:761.355867pt;}
.ya{bottom:763.313733pt;}
.y175{bottom:765.360667pt;}
.yb1{bottom:765.363333pt;}
.yd6{bottom:765.366000pt;}
.y57{bottom:765.378000pt;}
.y130{bottom:765.379333pt;}
.y1a3{bottom:775.848800pt;}
.y1d5{bottom:776.022533pt;}
.y9{bottom:776.645733pt;}
.y174{bottom:782.028667pt;}
.yb0{bottom:782.031333pt;}
.y56{bottom:782.034000pt;}
.y8c{bottom:782.044667pt;}
.y8{bottom:789.977733pt;}
.y1a2{bottom:790.515467pt;}
.y1d4{bottom:790.689200pt;}
.y173{bottom:798.696667pt;}
.yaf{bottom:798.699333pt;}
.y55{bottom:798.702000pt;}
.y8b{bottom:798.711333pt;}
.y7{bottom:803.309733pt;}
.y1a1{bottom:805.182133pt;}
.y1d3{bottom:805.355867pt;}
.y101{bottom:809.617600pt;}
.y12f{bottom:814.694000pt;}
.y172{bottom:815.364667pt;}
.yae{bottom:815.367333pt;}
.y54{bottom:815.370000pt;}
.y8a{bottom:815.376667pt;}
.y1d2{bottom:820.022533pt;}
.y24{bottom:820.701600pt;}
.y171{bottom:832.032667pt;}
.yad{bottom:832.035333pt;}
.y53{bottom:832.038000pt;}
.y89{bottom:832.044667pt;}
.y100{bottom:833.472000pt;}
.y12e{bottom:834.097067pt;}
.y1a0{bottom:834.515467pt;}
.y1d1{bottom:834.689200pt;}
.y170{bottom:848.700667pt;}
.y88{bottom:848.703333pt;}
.y52{bottom:848.706000pt;}
.y12d{bottom:853.500000pt;}
.yff{bottom:857.326400pt;}
.y2c{bottom:858.645600pt;}
.y16f{bottom:865.368667pt;}
.y87{bottom:865.371333pt;}
.y51{bottom:865.374000pt;}
.y12c{bottom:872.903067pt;}
.y2b{bottom:873.309600pt;}
.yfe{bottom:881.180933pt;}
.y86{bottom:882.039333pt;}
.y50{bottom:882.042000pt;}
.y12b{bottom:892.306000pt;}
.y16e{bottom:898.704667pt;}
.y85{bottom:898.707333pt;}
.y4f{bottom:898.710000pt;}
.yfd{bottom:905.035333pt;}
.y19f{bottom:907.613733pt;}
.y3d{bottom:908.178400pt;}
.y12a{bottom:911.709067pt;}
.y16d{bottom:915.372667pt;}
.y84{bottom:915.375333pt;}
.y4e{bottom:915.378000pt;}
.y19e{bottom:922.280400pt;}
.y3c{bottom:927.378400pt;}
.yfc{bottom:928.882667pt;}
.y129{bottom:931.112000pt;}
.y16c{bottom:932.040667pt;}
.y83{bottom:932.043333pt;}
.y4d{bottom:932.046000pt;}
.y19d{bottom:936.947067pt;}
.y16b{bottom:948.708667pt;}
.y82{bottom:948.711333pt;}
.yfb{bottom:949.544000pt;}
.y128{bottom:950.024400pt;}
.y19c{bottom:951.613733pt;}
.y27{bottom:952.491200pt;}
.y2a{bottom:962.610667pt;}
.y81{bottom:965.367333pt;}
.y16a{bottom:965.376667pt;}
.y4c{bottom:965.379333pt;}
.y19b{bottom:966.280400pt;}
.yfa{bottom:968.947067pt;}
.y29{bottom:975.944000pt;}
.y26{bottom:981.291200pt;}
.y28{bottom:989.277333pt;}
.y25{bottom:1010.091200pt;}
.ha{height:30.121875pt;}
.h2{height:31.062500pt;}
.he{height:31.658667pt;}
.hd{height:32.298667pt;}
.hf{height:33.468750pt;}
.h3{height:38.250000pt;}
.h24{height:39.133117pt;}
.h23{height:39.133650pt;}
.h2a{height:39.146983pt;}
.h29{height:39.147517pt;}
.h20{height:39.150717pt;}
.h1f{height:39.152850pt;}
.h22{height:39.161917pt;}
.h27{height:39.202983pt;}
.h7{height:39.573333pt;}
.h1d{height:40.970733pt;}
.h1e{height:40.983000pt;}
.h28{height:41.109650pt;}
.h5{height:41.994792pt;}
.h21{height:43.030183pt;}
.h4{height:43.031250pt;}
.h10{height:43.071783pt;}
.h1b{height:45.677650pt;}
.h9{height:46.095208pt;}
.hc{height:46.105342pt;}
.h8{height:46.105875pt;}
.h1a{height:46.111208pt;}
.h15{height:46.116542pt;}
.h13{height:46.121875pt;}
.h2d{height:46.127208pt;}
.h14{height:46.132542pt;}
.h18{height:46.137875pt;}
.h19{height:46.143208pt;}
.h17{height:46.148542pt;}
.h12{height:46.153875pt;}
.h16{height:46.159208pt;}
.h1c{height:46.170667pt;}
.h2c{height:46.180542pt;}
.h2b{height:46.185875pt;}
.h25{height:46.196542pt;}
.hb{height:48.448000pt;}
.h11{height:50.368000pt;}
.h26{height:67.562000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x14{left:78.547467pt;}
.x1a{left:81.423867pt;}
.x1b{left:83.269200pt;}
.x21{left:85.203333pt;}
.x23{left:87.426400pt;}
.x19{left:91.586533pt;}
.x15{left:95.370000pt;}
.x25{left:103.370000pt;}
.x12{left:123.857067pt;}
.x1c{left:199.930533pt;}
.x10{left:218.683200pt;}
.x11{left:232.805867pt;}
.x6{left:240.587467pt;}
.x9{left:244.139467pt;}
.x4{left:258.092800pt;}
.xd{left:269.065333pt;}
.x3{left:272.348800pt;}
.xa{left:282.091467pt;}
.xf{left:286.480533pt;}
.xc{left:287.424800pt;}
.x22{left:291.070000pt;}
.xb{left:293.952800pt;}
.x7{left:317.046133pt;}
.x8{left:320.608800pt;}
.xe{left:346.889333pt;}
.x5{left:379.364800pt;}
.x18{left:401.177867pt;}
.x13{left:404.970933pt;}
.x1{left:417.573467pt;}
.x16{left:421.414667pt;}
.x1e{left:423.470667pt;}
.x24{left:427.250667pt;}
.x1d{left:433.637733pt;}
.x17{left:437.417333pt;}
.x26{left:445.417333pt;}
.x1f{left:554.876667pt;}
.x20{left:557.529333pt;}
}




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