
    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_53c61d49ee36d66cb1cfb47e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_073707510cace8d0e1381724.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_1e06274331ff7f2810d0ea98.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.177000;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_9cd222f314959717cc0d1fac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_7c9d5eaa841aa97587e70d7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_9e826a94640eaf4476aafc3f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_e8ccce902587f44ced754402.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.183000;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_f0e90518fd13058cf306942b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_34eea2f849ec253eb7068f2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_82bf9385104f1ee88f2ca53a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.177000;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_71523cacb305bbe86e3ae27a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_98abab2f7922e839ff574d7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_32e12a390c44677d45c50036.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_98bb1cbe210c6ba6a4e1f967.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;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_6eaaf623316bb6d9971d922c.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;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:ff10;src:url('chunks/assets/font_4c454a916749450f8a06dac0.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_695dffe58c6604c9caf6d17c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.712000px;}
.v3{vertical-align:25.200000px;}
.v1{vertical-align:31.986000px;}
.v4{vertical-align:50.400000px;}
.ls1b{letter-spacing:-1.680000px;}
.ls20{letter-spacing:-1.674000px;}
.ls1f{letter-spacing:-1.296000px;}
.ls13{letter-spacing:-1.260000px;}
.ls6{letter-spacing:-1.224000px;}
.lsc{letter-spacing:-1.134000px;}
.ls11{letter-spacing:-0.918000px;}
.ls1a{letter-spacing:-0.798000px;}
.ls21{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.510000px;}
.ls27{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.306000px;}
.ls28{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.204000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000018px;}
.ls26{letter-spacing:0.210000px;}
.ls18{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.714000px;}
.ls22{letter-spacing:0.756000px;}
.ls25{letter-spacing:0.826200px;}
.ls16{letter-spacing:0.840000px;}
.lsb{letter-spacing:0.924000px;}
.lse{letter-spacing:0.966000px;}
.lsd{letter-spacing:1.050000px;}
.ls12{letter-spacing:1.302000px;}
.ls7{letter-spacing:1.674000px;}
.lsf{letter-spacing:1.998000px;}
.ls19{letter-spacing:2.538000px;}
.ls0{letter-spacing:3.240000px;}
.ls29{letter-spacing:4.363200px;}
.ls17{letter-spacing:6.048000px;}
.ls24{letter-spacing:7.074000px;}
.ls1e{letter-spacing:9.709200px;}
.ls1c{letter-spacing:10.341000px;}
.ls1d{letter-spacing:15.303600px;}
.ls9{letter-spacing:198.996000px;}
.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;}
}
.ws15{word-spacing:-20.706000px;}
.ws2{word-spacing:-20.604000px;}
.ws2e{word-spacing:-19.992000px;}
.ws59{word-spacing:-11.340000px;}
.wsaa{word-spacing:-11.178000px;}
.ws2f{word-spacing:-11.070000px;}
.ws5a{word-spacing:-10.908000px;}
.ws2d{word-spacing:-10.638000px;}
.ws14{word-spacing:-10.368000px;}
.wsb{word-spacing:-9.942000px;}
.wsab{word-spacing:-9.936000px;}
.ws1{word-spacing:-9.792000px;}
.wsdc{word-spacing:-9.696000px;}
.ws32{word-spacing:-9.618000px;}
.ws19{word-spacing:-9.534000px;}
.ws18{word-spacing:-9.492000px;}
.wsac{word-spacing:-9.456000px;}
.ws36{word-spacing:-9.408000px;}
.ws30{word-spacing:-9.114000px;}
.ws72{word-spacing:-9.072000px;}
.ws71{word-spacing:-8.946000px;}
.ws33{word-spacing:-8.736000px;}
.ws0{word-spacing:-8.694000px;}
.ws50{word-spacing:-8.568000px;}
.ws51{word-spacing:-7.770000px;}
.ws17{word-spacing:-7.434000px;}
.ws52{word-spacing:-6.888000px;}
.wsf2{word-spacing:-3.216000px;}
.wsf1{word-spacing:-3.072000px;}
.wsed{word-spacing:-2.928000px;}
.wsff{word-spacing:-2.832000px;}
.ws21{word-spacing:-2.106000px;}
.ws20{word-spacing:-1.998000px;}
.ws96{word-spacing:-1.944000px;}
.wsb7{word-spacing:-1.920000px;}
.ws95{word-spacing:-1.836000px;}
.wsb4{word-spacing:-1.824000px;}
.wsfb{word-spacing:-1.728000px;}
.ws28{word-spacing:-1.674000px;}
.wsde{word-spacing:-1.632000px;}
.ws6f{word-spacing:-1.620000px;}
.wsfd{word-spacing:-1.536000px;}
.ws8f{word-spacing:-1.512000px;}
.wsc9{word-spacing:-1.488000px;}
.wsd7{word-spacing:-1.440000px;}
.ws8e{word-spacing:-1.404000px;}
.wsca{word-spacing:-1.392000px;}
.ws84{word-spacing:-1.350000px;}
.ws83{word-spacing:-1.296000px;}
.wsc2{word-spacing:-1.248000px;}
.wsa2{word-spacing:-1.242000px;}
.ws63{word-spacing:-1.134000px;}
.ws62{word-spacing:-1.080000px;}
.wsc1{word-spacing:-1.056000px;}
.ws2c{word-spacing:-1.050000px;}
.wsa6{word-spacing:-1.026000px;}
.wscf{word-spacing:-1.008000px;}
.ws49{word-spacing:-0.966000px;}
.wsad{word-spacing:-0.960000px;}
.ws2b{word-spacing:-0.924000px;}
.ws6d{word-spacing:-0.918000px;}
.wsd0{word-spacing:-0.912000px;}
.ws35{word-spacing:-0.882000px;}
.ws40{word-spacing:-0.864000px;}
.wse8{word-spacing:-0.816000px;}
.ws25{word-spacing:-0.810000px;}
.ws102{word-spacing:-0.768000px;}
.ws7c{word-spacing:-0.756000px;}
.wsb5{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.714000px;}
.wsb6{word-spacing:-0.672000px;}
.wsb3{word-spacing:-0.624000px;}
.ws27{word-spacing:-0.594000px;}
.wsdd{word-spacing:-0.576000px;}
.ws90{word-spacing:-0.540000px;}
.wsc5{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.432000px;}
.wsf{word-spacing:-0.420000px;}
.wse5{word-spacing:-0.384000px;}
.ws58{word-spacing:-0.378000px;}
.ws77{word-spacing:-0.336000px;}
.ws82{word-spacing:-0.294000px;}
.ws4e{word-spacing:-0.270000px;}
.ws81{word-spacing:-0.210000px;}
.wsdb{word-spacing:-0.144000px;}
.ws91{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wse4{word-spacing:0.048000px;}
.ws37{word-spacing:0.054000px;}
.ws97{word-spacing:0.162000px;}
.ws10{word-spacing:0.204000px;}
.ws98{word-spacing:0.216000px;}
.wsf3{word-spacing:0.240000px;}
.ws3d{word-spacing:0.270000px;}
.wsb2{word-spacing:0.288000px;}
.ws12{word-spacing:0.306000px;}
.ws7f{word-spacing:0.336000px;}
.ws80{word-spacing:0.378000px;}
.ws105{word-spacing:0.384000px;}
.ws9d{word-spacing:0.420000px;}
.wsd8{word-spacing:0.432000px;}
.wsd2{word-spacing:0.480000px;}
.ws11{word-spacing:0.510000px;}
.wsbd{word-spacing:0.528000px;}
.ws3c{word-spacing:0.540000px;}
.wsfa{word-spacing:0.576000px;}
.ws55{word-spacing:0.588000px;}
.ws6a{word-spacing:0.594000px;}
.ws7e{word-spacing:0.630000px;}
.ws6b{word-spacing:0.648000px;}
.ws7d{word-spacing:0.672000px;}
.wsb1{word-spacing:0.720000px;}
.ws75{word-spacing:0.756000px;}
.wsc7{word-spacing:0.768000px;}
.ws38{word-spacing:0.810000px;}
.wsfe{word-spacing:0.816000px;}
.ws8d{word-spacing:0.864000px;}
.ws103{word-spacing:0.912000px;}
.ws87{word-spacing:0.918000px;}
.wsda{word-spacing:0.960000px;}
.ws107{word-spacing:1.008000px;}
.wse1{word-spacing:1.056000px;}
.ws5{word-spacing:1.104000px;}
.ws56{word-spacing:1.134000px;}
.ws4{word-spacing:1.152000px;}
.ws57{word-spacing:1.176000px;}
.ws104{word-spacing:1.200000px;}
.ws13{word-spacing:1.224000px;}
.wsee{word-spacing:1.248000px;}
.ws47{word-spacing:1.260000px;}
.ws29{word-spacing:1.296000px;}
.ws2a{word-spacing:1.350000px;}
.wsd1{word-spacing:1.392000px;}
.wsbf{word-spacing:1.440000px;}
.ws8c{word-spacing:1.458000px;}
.ws3a{word-spacing:1.512000px;}
.wse2{word-spacing:1.536000px;}
.ws3b{word-spacing:1.566000px;}
.ws1d{word-spacing:1.620000px;}
.ws1e{word-spacing:1.674000px;}
.wsc0{word-spacing:1.680000px;}
.ws88{word-spacing:1.728000px;}
.ws93{word-spacing:1.782000px;}
.ws3e{word-spacing:1.836000px;}
.ws7{word-spacing:1.872000px;}
.wsc6{word-spacing:1.920000px;}
.ws3f{word-spacing:1.944000px;}
.ws6{word-spacing:1.968000px;}
.wsc3{word-spacing:2.016000px;}
.ws6c{word-spacing:2.052000px;}
.wsfc{word-spacing:2.112000px;}
.wsa3{word-spacing:2.160000px;}
.wsb8{word-spacing:2.208000px;}
.ws8b{word-spacing:2.214000px;}
.ws106{word-spacing:2.256000px;}
.wsa4{word-spacing:2.268000px;}
.wsd6{word-spacing:2.304000px;}
.ws54{word-spacing:2.322000px;}
.wsa0{word-spacing:2.376000px;}
.wsd5{word-spacing:2.400000px;}
.ws100{word-spacing:2.448000px;}
.ws9f{word-spacing:2.484000px;}
.ws24{word-spacing:2.538000px;}
.ws79{word-spacing:2.562000px;}
.ws22{word-spacing:2.592000px;}
.ws9e{word-spacing:2.646000px;}
.ws78{word-spacing:2.688000px;}
.ws26{word-spacing:2.700000px;}
.wsd{word-spacing:2.754000px;}
.wsbe{word-spacing:2.784000px;}
.wsd4{word-spacing:2.832000px;}
.wsa{word-spacing:2.844000px;}
.ws99{word-spacing:2.862000px;}
.ws8{word-spacing:2.904000px;}
.ws9{word-spacing:2.910000px;}
.ws8a{word-spacing:2.916000px;}
.wsc8{word-spacing:2.928000px;}
.ws9a{word-spacing:2.970000px;}
.wsf5{word-spacing:2.976000px;}
.wsf7{word-spacing:3.168000px;}
.ws46{word-spacing:3.192000px;}
.wsa8{word-spacing:3.294000px;}
.wsf6{word-spacing:3.312000px;}
.ws45{word-spacing:3.318000px;}
.wsc4{word-spacing:3.360000px;}
.wsa7{word-spacing:3.456000px;}
.wsf9{word-spacing:3.552000px;}
.wsc{word-spacing:3.564000px;}
.ws44{word-spacing:3.612000px;}
.wsbc{word-spacing:3.696000px;}
.ws65{word-spacing:3.726000px;}
.ws101{word-spacing:3.744000px;}
.ws43{word-spacing:3.780000px;}
.ws60{word-spacing:3.834000px;}
.ws94{word-spacing:3.888000px;}
.ws67{word-spacing:3.996000px;}
.wsf8{word-spacing:4.032000px;}
.ws41{word-spacing:4.104000px;}
.wse6{word-spacing:4.128000px;}
.wse7{word-spacing:4.176000px;}
.ws68{word-spacing:4.212000px;}
.wsae{word-spacing:4.224000px;}
.ws42{word-spacing:4.320000px;}
.wscd{word-spacing:4.368000px;}
.ws23{word-spacing:4.374000px;}
.wsef{word-spacing:4.464000px;}
.ws39{word-spacing:4.482000px;}
.wscc{word-spacing:4.512000px;}
.wscb{word-spacing:4.560000px;}
.ws7b{word-spacing:4.788000px;}
.wse{word-spacing:4.806000px;}
.wse0{word-spacing:4.848000px;}
.ws9c{word-spacing:4.860000px;}
.ws4c{word-spacing:4.968000px;}
.ws7a{word-spacing:4.998000px;}
.ws76{word-spacing:5.022000px;}
.wsdf{word-spacing:5.088000px;}
.ws9b{word-spacing:5.130000px;}
.wsec{word-spacing:5.136000px;}
.wsf4{word-spacing:5.184000px;}
.ws4d{word-spacing:5.238000px;}
.wsd9{word-spacing:5.328000px;}
.ws1c{word-spacing:5.400000px;}
.wse3{word-spacing:5.472000px;}
.wsd3{word-spacing:5.568000px;}
.ws5e{word-spacing:5.616000px;}
.wsf0{word-spacing:5.760000px;}
.ws64{word-spacing:5.778000px;}
.ws4a{word-spacing:5.832000px;}
.ws66{word-spacing:5.886000px;}
.wsea{word-spacing:5.904000px;}
.ws74{word-spacing:5.940000px;}
.ws73{word-spacing:5.994000px;}
.ws4b{word-spacing:6.102000px;}
.wse9{word-spacing:6.144000px;}
.wsa5{word-spacing:6.156000px;}
.wseb{word-spacing:6.192000px;}
.wsa1{word-spacing:6.210000px;}
.ws69{word-spacing:6.264000px;}
.wsb0{word-spacing:6.288000px;}
.ws70{word-spacing:6.318000px;}
.ws92{word-spacing:6.426000px;}
.wsb9{word-spacing:6.480000px;}
.ws1f{word-spacing:6.696000px;}
.wsaf{word-spacing:6.768000px;}
.ws85{word-spacing:6.912000px;}
.ws86{word-spacing:7.236000px;}
.ws5f{word-spacing:7.452000px;}
.wsa9{word-spacing:7.884000px;}
.ws89{word-spacing:7.992000px;}
.wsba{word-spacing:8.208000px;}
.wsbb{word-spacing:8.592000px;}
.ws61{word-spacing:9.450000px;}
.ws5d{word-spacing:10.260000px;}
.ws4f{word-spacing:11.232000px;}
.ws5c{word-spacing:13.878000px;}
.ws5b{word-spacing:14.094000px;}
.ws6e{word-spacing:16.416000px;}
.ws53{word-spacing:17.334000px;}
.wsce{word-spacing:55.488000px;}
.ws34{word-spacing:72.181200px;}
.ws16{word-spacing:140.107800px;}
.ws1a{word-spacing:190.302000px;}
.ws31{word-spacing:581.981400px;}
._1d{margin-left:-11.016000px;}
._36{margin-left:-8.055600px;}
._c{margin-left:-6.760800px;}
._2{margin-left:-5.568000px;}
._0{margin-left:-4.392000px;}
._3{margin-left:-2.745600px;}
._1{margin-left:-1.723200px;}
._4{width:1.468800px;}
._5{width:2.505600px;}
._7{width:3.720000px;}
._6{width:4.984800px;}
._8{width:5.986800px;}
._a{width:7.117200px;}
._31{width:8.352600px;}
._34{width:9.828000px;}
._2d{width:12.195600px;}
._30{width:14.342400px;}
._35{width:15.600600px;}
._2f{width:16.869600px;}
._2e{width:18.049200px;}
._33{width:20.676600px;}
._32{width:21.745800px;}
._17{width:25.536000px;}
._43{width:38.479800px;}
._9{width:43.968000px;}
._f{width:63.252000px;}
._1a{width:68.124000px;}
._18{width:70.098000px;}
._11{width:78.120000px;}
._12{width:105.714000px;}
._29{width:111.175200px;}
._13{width:114.408000px;}
._d{width:126.588000px;}
._14{width:133.056000px;}
._1e{width:136.002000px;}
._38{width:153.930000px;}
._20{width:163.044000px;}
._15{width:164.052000px;}
._22{width:168.714000px;}
._39{width:173.754000px;}
._24{width:182.868000px;}
._2b{width:188.538000px;}
._21{width:193.032000px;}
._3b{width:194.124000px;}
._26{width:208.362000px;}
._25{width:212.856000px;}
._16{width:225.834000px;}
._40{width:292.488000px;}
._23{width:332.808000px;}
._19{width:343.725600px;}
._3d{width:366.030000px;}
._3c{width:378.924000px;}
._37{width:396.732000px;}
._1b{width:399.351600px;}
._2a{width:428.106000px;}
._3f{width:448.350000px;}
._1c{width:455.043600px;}
._3e{width:462.252000px;}
._28{width:491.190000px;}
._3a{width:493.458000px;}
._27{width:504.084000px;}
._e{width:515.910000px;}
._1f{width:563.136000px;}
._10{width:571.998000px;}
._41{width:1766.304000px;}
._42{width:1767.600000px;}
._b{width:1770.000000px;}
._2c{width:1771.632000px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(0,93,145);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fs9{font-size:31.482000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.y127{bottom:88.762950px;}
.y7a{bottom:96.474300px;}
.y121{bottom:97.662150px;}
.y239{bottom:101.010600px;}
.ybc{bottom:101.051100px;}
.y153{bottom:101.128350px;}
.y126{bottom:103.767450px;}
.y1fa{bottom:105.325500px;}
.yd{bottom:106.042350px;}
.y1a2{bottom:106.743750px;}
.y186{bottom:107.873850px;}
.y193{bottom:107.966400px;}
.y32{bottom:110.697300px;}
.y79{bottom:110.701800px;}
.yc6{bottom:111.189000px;}
.y120{bottom:111.889650px;}
.y1c1{bottom:112.191750px;}
.yc{bottom:116.842350px;}
.y238{bottom:117.510600px;}
.y125{bottom:118.771950px;}
.ybb{bottom:119.046600px;}
.y152{bottom:119.123850px;}
.yaf{bottom:121.665300px;}
.y1f9{bottom:121.825500px;}
.y1a1{bottom:124.739250px;}
.y78{bottom:124.929300px;}
.y185{bottom:125.869350px;}
.y192{bottom:125.961900px;}
.y11f{bottom:126.117150px;}
.y1c0{bottom:127.196250px;}
.yb{bottom:127.642350px;}
.y104{bottom:128.141850px;}
.y31{bottom:128.692800px;}
.yc5{bottom:129.184500px;}
.y124{bottom:133.776450px;}
.y237{bottom:134.010600px;}
.yae{bottom:135.892800px;}
.yba{bottom:137.042100px;}
.y151{bottom:137.119350px;}
.y1f8{bottom:138.325500px;}
.ya{bottom:138.442350px;}
.y77{bottom:139.156800px;}
.y11e{bottom:140.344650px;}
.y1a0{bottom:142.734750px;}
.y184{bottom:143.864850px;}
.y191{bottom:143.957400px;}
.y103{bottom:146.137350px;}
.y30{bottom:146.688300px;}
.yc4{bottom:147.180000px;}
.y123{bottom:148.780950px;}
.yad{bottom:150.120300px;}
.y236{bottom:150.510600px;}
.y76{bottom:153.384300px;}
.y11d{bottom:154.572150px;}
.y1f7{bottom:154.825500px;}
.yb9{bottom:155.037600px;}
.y150{bottom:155.114850px;}
.y19f{bottom:160.730250px;}
.y183{bottom:161.860350px;}
.y190{bottom:161.952900px;}
.yac{bottom:162.720300px;}
.y122{bottom:163.785450px;}
.y102{bottom:164.132850px;}
.y2f{bottom:164.683800px;}
.yc3{bottom:165.175500px;}
.y235{bottom:167.010600px;}
.y75{bottom:167.611800px;}
.y11c{bottom:168.799650px;}
.y1f6{bottom:171.325500px;}
.yb8{bottom:173.033100px;}
.y14f{bottom:173.110350px;}
.y9{bottom:176.242350px;}
.yab{bottom:176.947800px;}
.y19e{bottom:178.725750px;}
.y182{bottom:179.855850px;}
.y18f{bottom:179.948400px;}
.y74{bottom:181.839300px;}
.y101{bottom:182.128350px;}
.y2e{bottom:182.679300px;}
.y11b{bottom:183.027150px;}
.yc2{bottom:183.171000px;}
.y234{bottom:183.510600px;}
.y1f5{bottom:187.825500px;}
.y8{bottom:188.842350px;}
.yaa{bottom:189.547800px;}
.yb7{bottom:191.028600px;}
.y14e{bottom:191.105850px;}
.y73{bottom:196.066800px;}
.y19d{bottom:196.721250px;}
.y11a{bottom:197.254650px;}
.y181{bottom:197.851350px;}
.y18e{bottom:197.943900px;}
.y233{bottom:200.010600px;}
.y100{bottom:200.123850px;}
.y2d{bottom:200.674800px;}
.y7{bottom:201.442350px;}
.ya9{bottom:203.775300px;}
.y1f4{bottom:204.325500px;}
.yb6{bottom:209.024100px;}
.y14d{bottom:209.101350px;}
.y72{bottom:210.294300px;}
.y119{bottom:211.482150px;}
.y6{bottom:214.042350px;}
.y19c{bottom:214.716750px;}
.y180{bottom:215.846850px;}
.y18d{bottom:215.939400px;}
.y232{bottom:216.510600px;}
.ya8{bottom:218.002800px;}
.yff{bottom:218.119350px;}
.y2c{bottom:218.670300px;}
.y1f3{bottom:220.825500px;}
.y71{bottom:224.521800px;}
.ycc{bottom:224.579850px;}
.y5{bottom:226.642350px;}
.yb5{bottom:227.019600px;}
.y14c{bottom:227.096850px;}
.ya7{bottom:232.230300px;}
.y19b{bottom:232.712250px;}
.y231{bottom:233.010600px;}
.y116{bottom:233.206650px;}
.y17f{bottom:233.842350px;}
.y18c{bottom:233.934900px;}
.yfe{bottom:236.114850px;}
.y2b{bottom:236.665800px;}
.y1f2{bottom:237.325500px;}
.y70{bottom:238.749300px;}
.y118{bottom:239.506650px;}
.ycb{bottom:239.584350px;}
.yb4{bottom:245.015100px;}
.y14b{bottom:245.092350px;}
.y114{bottom:245.806650px;}
.ya6{bottom:246.457800px;}
.y230{bottom:249.510600px;}
.y19a{bottom:250.707750px;}
.y17e{bottom:251.837850px;}
.y18b{bottom:251.930400px;}
.y117{bottom:252.106650px;}
.y6f{bottom:252.976800px;}
.y1f1{bottom:253.825500px;}
.yfd{bottom:254.110350px;}
.yca{bottom:254.588850px;}
.y2a{bottom:254.661300px;}
.y115{bottom:258.406650px;}
.yb3{bottom:263.010600px;}
.y14a{bottom:263.087850px;}
.y22f{bottom:266.010600px;}
.y6e{bottom:267.204300px;}
.ya4{bottom:268.182300px;}
.y199{bottom:268.703250px;}
.yc9{bottom:269.593350px;}
.y17d{bottom:269.833350px;}
.y1f0{bottom:270.325500px;}
.yfc{bottom:272.105850px;}
.y29{bottom:272.656800px;}
.ya3{bottom:274.482300px;}
.ya5{bottom:280.782300px;}
.yb2{bottom:281.006100px;}
.y149{bottom:281.083350px;}
.y6d{bottom:281.431800px;}
.y113{bottom:282.367200px;}
.y22e{bottom:282.510600px;}
.yc8{bottom:284.597850px;}
.y198{bottom:286.698750px;}
.y1ef{bottom:286.825500px;}
.y17c{bottom:287.828850px;}
.yfb{bottom:290.101350px;}
.y28{bottom:290.652300px;}
.y18a{bottom:293.348250px;}
.y6c{bottom:295.659300px;}
.y112{bottom:297.371700px;}
.yb1{bottom:299.001600px;}
.y22d{bottom:299.010600px;}
.y148{bottom:299.078850px;}
.yc7{bottom:299.602350px;}
.y1ee{bottom:303.325500px;}
.y197{bottom:304.694250px;}
.ya2{bottom:304.747650px;}
.y17b{bottom:305.824350px;}
.yfa{bottom:308.096850px;}
.y189{bottom:308.352750px;}
.y27{bottom:308.647800px;}
.y6b{bottom:309.886800px;}
.y111{bottom:312.376200px;}
.y22c{bottom:315.510600px;}
.y147{bottom:317.074350px;}
.ya1{bottom:319.752150px;}
.y1ed{bottom:319.825500px;}
.yb0{bottom:321.506100px;}
.y196{bottom:322.689750px;}
.y188{bottom:323.357250px;}
.y17a{bottom:323.819850px;}
.y6a{bottom:324.114300px;}
.yf9{bottom:326.092350px;}
.y26{bottom:326.643300px;}
.y110{bottom:327.380700px;}
.y22b{bottom:332.010600px;}
.ya0{bottom:334.756650px;}
.y146{bottom:335.069850px;}
.y1ec{bottom:336.325500px;}
.y69{bottom:338.341800px;}
.y187{bottom:338.361750px;}
.y195{bottom:340.685250px;}
.y179{bottom:341.815350px;}
.yf8{bottom:344.087850px;}
.y25{bottom:344.638800px;}
.y22a{bottom:348.510600px;}
.y68{bottom:352.569300px;}
.y1eb{bottom:352.825500px;}
.y145{bottom:353.065350px;}
.y194{bottom:358.680750px;}
.y178{bottom:359.810850px;}
.yf7{bottom:362.083350px;}
.y24{bottom:362.634300px;}
.yc1{bottom:363.294450px;}
.y229{bottom:365.010600px;}
.y10f{bottom:365.600700px;}
.y67{bottom:366.796800px;}
.y1ea{bottom:369.325500px;}
.y144{bottom:371.060850px;}
.y177{bottom:377.806350px;}
.yc0{bottom:378.298950px;}
.y9f{bottom:378.497850px;}
.yf6{bottom:380.078850px;}
.y10e{bottom:380.605200px;}
.y23{bottom:380.629800px;}
.y66{bottom:381.024300px;}
.y228{bottom:381.510600px;}
.y1e9{bottom:385.825500px;}
.y143{bottom:389.056350px;}
.ybf{bottom:393.303450px;}
.y65{bottom:395.251800px;}
.y176{bottom:395.801850px;}
.y9e{bottom:396.493350px;}
.y227{bottom:398.010600px;}
.yf5{bottom:398.074350px;}
.y22{bottom:398.625300px;}
.y1a9{bottom:400.084950px;}
.y1e8{bottom:402.325500px;}
.y142{bottom:407.051850px;}
.ybe{bottom:408.307950px;}
.y175{bottom:413.797350px;}
.y9d{bottom:414.488850px;}
.y226{bottom:414.510600px;}
.y1a8{bottom:415.089450px;}
.yf4{bottom:416.069850px;}
.y21{bottom:416.620800px;}
.y64{bottom:416.976300px;}
.y1e7{bottom:418.825500px;}
.y61{bottom:423.276300px;}
.ybd{bottom:423.312450px;}
.y141{bottom:425.047350px;}
.y63{bottom:429.576300px;}
.y1a7{bottom:430.093950px;}
.y225{bottom:431.010600px;}
.y1bf{bottom:431.675850px;}
.y174{bottom:431.792850px;}
.y9c{bottom:432.484350px;}
.yf3{bottom:434.065350px;}
.y20{bottom:434.616300px;}
.y1e6{bottom:435.325500px;}
.y60{bottom:435.876300px;}
.y62{bottom:442.176300px;}
.y140{bottom:443.042850px;}
.y1a6{bottom:445.098450px;}
.y224{bottom:447.510600px;}
.y1be{bottom:449.671350px;}
.y173{bottom:449.788350px;}
.y9b{bottom:450.479850px;}
.y1e5{bottom:451.825500px;}
.yf2{bottom:452.060850px;}
.y1f{bottom:452.611800px;}
.y1a5{bottom:460.102950px;}
.y13f{bottom:461.038350px;}
.y223{bottom:464.010600px;}
.y5f{bottom:464.650650px;}
.y1bd{bottom:467.666850px;}
.y172{bottom:467.783850px;}
.y1e4{bottom:468.325500px;}
.y9a{bottom:468.475350px;}
.yf1{bottom:470.056350px;}
.y1e{bottom:470.607300px;}
.y1a4{bottom:475.107450px;}
.y13e{bottom:479.033850px;}
.y222{bottom:480.510600px;}
.y1e3{bottom:484.825500px;}
.y1bc{bottom:485.662350px;}
.y171{bottom:485.779350px;}
.y99{bottom:486.470850px;}
.yf0{bottom:488.051850px;}
.y1d{bottom:488.602800px;}
.y1a3{bottom:490.111950px;}
.y221{bottom:497.010600px;}
.y13d{bottom:497.029350px;}
.y1e2{bottom:501.325500px;}
.y5e{bottom:502.966350px;}
.y1bb{bottom:503.657850px;}
.y170{bottom:503.774850px;}
.y98{bottom:504.466350px;}
.yef{bottom:506.047350px;}
.y1c{bottom:506.598300px;}
.y220{bottom:513.510600px;}
.y13c{bottom:515.024850px;}
.y1e1{bottom:517.825500px;}
.y5d{bottom:520.961850px;}
.y1ba{bottom:521.653350px;}
.y16f{bottom:521.770350px;}
.y97{bottom:522.461850px;}
.yee{bottom:524.042850px;}
.y1b{bottom:524.593800px;}
.y21f{bottom:530.010600px;}
.y13b{bottom:533.020350px;}
.y1e0{bottom:534.325500px;}
.y5c{bottom:538.957350px;}
.y16e{bottom:539.765850px;}
.y96{bottom:540.457350px;}
.yed{bottom:542.038350px;}
.y1a{bottom:542.589300px;}
.y1b9{bottom:544.153350px;}
.y21e{bottom:546.510600px;}
.y1df{bottom:550.825500px;}
.y13a{bottom:551.015850px;}
.y5b{bottom:556.952850px;}
.y16d{bottom:557.761350px;}
.y95{bottom:558.452850px;}
.yec{bottom:560.033850px;}
.y19{bottom:560.584800px;}
.y21d{bottom:563.010600px;}
.y1de{bottom:567.325500px;}
.y139{bottom:569.011350px;}
.y5a{bottom:574.948350px;}
.y16c{bottom:575.756850px;}
.y94{bottom:576.448350px;}
.yeb{bottom:578.029350px;}
.y18{bottom:578.580300px;}
.y21c{bottom:579.510600px;}
.y1dd{bottom:583.825500px;}
.y138{bottom:587.006850px;}
.y59{bottom:592.943850px;}
.y16b{bottom:593.752350px;}
.y93{bottom:594.443850px;}
.y21b{bottom:596.010600px;}
.yea{bottom:596.024850px;}
.y1dc{bottom:600.325500px;}
.y1b8{bottom:600.533850px;}
.y17{bottom:601.080300px;}
.y137{bottom:605.002350px;}
.y58{bottom:610.939350px;}
.y16a{bottom:611.747850px;}
.y92{bottom:612.439350px;}
.y21a{bottom:612.510600px;}
.ye9{bottom:614.020350px;}
.y1db{bottom:616.825500px;}
.y1b7{bottom:618.529350px;}
.y136{bottom:622.997850px;}
.y57{bottom:628.934850px;}
.y219{bottom:629.010600px;}
.y169{bottom:629.743350px;}
.y91{bottom:630.434850px;}
.ye8{bottom:632.015850px;}
.y1da{bottom:633.325500px;}
.y1b6{bottom:636.524850px;}
.y135{bottom:640.993350px;}
.y218{bottom:645.510600px;}
.y56{bottom:646.930350px;}
.y168{bottom:647.738850px;}
.y90{bottom:648.430350px;}
.y1d9{bottom:649.825500px;}
.ye7{bottom:650.011350px;}
.y1b5{bottom:654.520350px;}
.y134{bottom:658.988850px;}
.y16{bottom:659.430000px;}
.y217{bottom:662.010600px;}
.y55{bottom:664.925850px;}
.y167{bottom:665.734350px;}
.y1d8{bottom:666.325500px;}
.y8f{bottom:666.425850px;}
.ye6{bottom:668.006850px;}
.y1b4{bottom:672.515850px;}
.y15{bottom:675.930000px;}
.y133{bottom:676.984350px;}
.y216{bottom:678.510600px;}
.y1d7{bottom:682.825500px;}
.y54{bottom:682.921350px;}
.y166{bottom:683.729850px;}
.y8e{bottom:684.421350px;}
.ye5{bottom:686.002350px;}
.y14{bottom:690.330300px;}
.y1b3{bottom:690.511350px;}
.y132{bottom:694.979850px;}
.y215{bottom:695.010600px;}
.y1d6{bottom:699.325500px;}
.y53{bottom:700.916850px;}
.y165{bottom:701.725350px;}
.y8d{bottom:702.416850px;}
.ye4{bottom:703.997850px;}
.y1b2{bottom:708.506850px;}
.y214{bottom:711.510600px;}
.y131{bottom:712.975350px;}
.y1d5{bottom:715.825500px;}
.y52{bottom:718.912350px;}
.y164{bottom:719.720850px;}
.y8c{bottom:720.412350px;}
.ye3{bottom:721.993350px;}
.y13{bottom:724.830300px;}
.y1b1{bottom:726.502350px;}
.y213{bottom:728.010600px;}
.y34{bottom:730.155900px;}
.y130{bottom:730.970850px;}
.y1d4{bottom:732.325500px;}
.y51{bottom:736.907850px;}
.y163{bottom:737.716350px;}
.y8b{bottom:738.407850px;}
.ye2{bottom:739.988850px;}
.y1b0{bottom:744.497850px;}
.y212{bottom:744.510600px;}
.y33{bottom:745.031550px;}
.y1d3{bottom:748.825500px;}
.y12f{bottom:748.966350px;}
.y12{bottom:750.330300px;}
.y50{bottom:754.970850px;}
.y162{bottom:755.711850px;}
.y8a{bottom:756.403350px;}
.ye1{bottom:757.984350px;}
.y211{bottom:761.010600px;}
.y1af{bottom:762.493350px;}
.y1d2{bottom:765.325500px;}
.y11{bottom:766.830300px;}
.y12e{bottom:766.961850px;}
.y4f{bottom:772.966350px;}
.y161{bottom:773.707350px;}
.ye0{bottom:775.979850px;}
.y210{bottom:777.510600px;}
.y89{bottom:778.907850px;}
.y1ae{bottom:780.488850px;}
.y1d1{bottom:781.825500px;}
.y10{bottom:783.330300px;}
.y12d{bottom:784.957350px;}
.y4e{bottom:790.961850px;}
.y160{bottom:791.702850px;}
.ydf{bottom:793.975350px;}
.y20f{bottom:794.010600px;}
.y88{bottom:796.903350px;}
.y1d0{bottom:798.325500px;}
.y1ad{bottom:798.484350px;}
.yf{bottom:799.830300px;}
.y12c{bottom:802.952850px;}
.y4d{bottom:808.957350px;}
.y15f{bottom:809.698350px;}
.y20e{bottom:810.510600px;}
.yde{bottom:811.970850px;}
.y1cf{bottom:814.825500px;}
.y87{bottom:814.898850px;}
.ye{bottom:816.330300px;}
.y1ac{bottom:816.479850px;}
.y12b{bottom:825.457350px;}
.y4c{bottom:826.952850px;}
.y20d{bottom:827.010600px;}
.y15e{bottom:827.693850px;}
.ydd{bottom:829.966350px;}
.y1ce{bottom:831.325500px;}
.y1ab{bottom:834.475350px;}
.y86{bottom:837.403350px;}
.y12a{bottom:843.452850px;}
.y20c{bottom:843.510600px;}
.y4b{bottom:844.948350px;}
.y15d{bottom:845.689350px;}
.y1cd{bottom:847.825500px;}
.ydc{bottom:847.961850px;}
.y1aa{bottom:852.470850px;}
.y20b{bottom:860.010600px;}
.y129{bottom:861.448350px;}
.y4a{bottom:862.943850px;}
.y15c{bottom:863.684850px;}
.y1cc{bottom:864.325500px;}
.y85{bottom:867.403350px;}
.y3b{bottom:869.658150px;}
.ydb{bottom:870.466350px;}
.y20a{bottom:876.510600px;}
.y49{bottom:880.939350px;}
.y15b{bottom:881.680350px;}
.y128{bottom:883.952850px;}
.y1cb{bottom:885.325500px;}
.yda{bottom:888.461850px;}
.y209{bottom:893.010600px;}
.y3a{bottom:893.658150px;}
.y48{bottom:898.934850px;}
.y15a{bottom:899.675850px;}
.yd9{bottom:906.457350px;}
.y208{bottom:909.510600px;}
.y39{bottom:910.158150px;}
.y47{bottom:916.930350px;}
.y159{bottom:917.671350px;}
.y84{bottom:923.702850px;}
.yd8{bottom:924.452850px;}
.y207{bottom:926.010600px;}
.y10d{bottom:933.430350px;}
.y46{bottom:934.925850px;}
.y158{bottom:935.666850px;}
.y1ca{bottom:941.577000px;}
.y38{bottom:941.658150px;}
.y83{bottom:941.698350px;}
.yd7{bottom:942.448350px;}
.y206{bottom:942.510600px;}
.y10c{bottom:951.425850px;}
.y45{bottom:952.921350px;}
.y157{bottom:953.662350px;}
.y205{bottom:959.010600px;}
.y1c9{bottom:959.572500px;}
.y82{bottom:959.693850px;}
.yd6{bottom:960.443850px;}
.y10b{bottom:969.421350px;}
.y44{bottom:970.916850px;}
.y156{bottom:971.657850px;}
.y204{bottom:975.510600px;}
.y37{bottom:977.658150px;}
.y81{bottom:977.689350px;}
.yd5{bottom:978.439350px;}
.y1c8{bottom:983.583000px;}
.y10a{bottom:987.416850px;}
.y43{bottom:988.912350px;}
.y155{bottom:989.653350px;}
.y203{bottom:992.010600px;}
.y80{bottom:995.684850px;}
.yd4{bottom:996.434850px;}
.y1c7{bottom:1001.578500px;}
.y109{bottom:1005.412350px;}
.y42{bottom:1006.907850px;}
.y36{bottom:1008.258150px;}
.y202{bottom:1008.510600px;}
.y154{bottom:1012.153350px;}
.y7f{bottom:1013.680350px;}
.yd3{bottom:1014.430350px;}
.y108{bottom:1023.407850px;}
.y41{bottom:1024.903350px;}
.y201{bottom:1025.010600px;}
.y1c6{bottom:1025.581500px;}
.y7e{bottom:1031.675850px;}
.yd2{bottom:1032.425850px;}
.y35{bottom:1038.858150px;}
.y107{bottom:1041.403350px;}
.y200{bottom:1041.510600px;}
.y1c5{bottom:1043.577000px;}
.y40{bottom:1047.403350px;}
.y7d{bottom:1049.671350px;}
.yd1{bottom:1050.421350px;}
.y1ff{bottom:1058.010600px;}
.y106{bottom:1063.907850px;}
.y1c4{bottom:1067.580000px;}
.y7c{bottom:1067.666850px;}
.yd0{bottom:1068.416850px;}
.y1fe{bottom:1074.510600px;}
.y105{bottom:1081.903350px;}
.y1c3{bottom:1085.575500px;}
.y7b{bottom:1085.662350px;}
.ycf{bottom:1086.412350px;}
.y1fd{bottom:1091.010600px;}
.y3{bottom:1103.536350px;}
.y3f{bottom:1103.657850px;}
.yce{bottom:1104.407850px;}
.y1fc{bottom:1107.510600px;}
.y1c2{bottom:1109.575500px;}
.y3e{bottom:1121.653350px;}
.ycd{bottom:1122.403350px;}
.y1fb{bottom:1124.010600px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y3d{bottom:1175.538600px;}
.h6{height:27.540000px;}
.h12{height:32.130000px;}
.h5{height:32.172000px;}
.h10{height:32.256000px;}
.h8{height:36.768000px;}
.h11{height:39.354000px;}
.hc{height:39.606000px;}
.h14{height:41.310000px;}
.h3{height:41.364000px;}
.h4{height:44.976000px;}
.h7{height:45.264000px;}
.h2{height:45.500400px;}
.h13{height:50.598000px;}
.h15{height:50.892000px;}
.ha{height:50.922000px;}
.hd{height:56.220000px;}
.he{height:57.372000px;}
.hb{height:63.840000px;}
.hf{height:82.572000px;}
.h9{height:95.574000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x8{left:-354.106350px;}
.x9{left:-270.843300px;}
.x0{left:0.000000px;}
.x4{left:81.000000px;}
.x2{left:93.000000px;}
.x5{left:99.004140px;}
.x6{left:288.000000px;}
.x7{left:306.000000px;}
.xa{left:313.711500px;}
.xb{left:391.170000px;}
.xc{left:455.456700px;}
.x15{left:484.144050px;}
.x14{left:494.686050px;}
.xf{left:495.763500px;}
.x13{left:498.178500px;}
.x16{left:569.918550px;}
.x17{left:582.592050px;}
.x18{left:652.469550px;}
.x10{left:661.516500px;}
.x19{left:673.280550px;}
.xd{left:688.168200px;}
.x1{left:717.106200px;}
.x1a{left:734.254050px;}
.x11{left:742.513500px;}
.x1b{left:759.475050px;}
.xe{left:765.626700px;}
.x12{left:767.734500px;}
.x3{left:791.064000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.744000pt;}
.v3{vertical-align:22.400000pt;}
.v1{vertical-align:28.432000pt;}
.v4{vertical-align:44.800000pt;}
.ls1b{letter-spacing:-1.493333pt;}
.ls20{letter-spacing:-1.488000pt;}
.ls1f{letter-spacing:-1.152000pt;}
.ls13{letter-spacing:-1.120000pt;}
.ls6{letter-spacing:-1.088000pt;}
.lsc{letter-spacing:-1.008000pt;}
.ls11{letter-spacing:-0.816000pt;}
.ls1a{letter-spacing:-0.709333pt;}
.ls21{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.453333pt;}
.ls27{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls28{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.181333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000016pt;}
.ls26{letter-spacing:0.186667pt;}
.ls18{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.634667pt;}
.ls22{letter-spacing:0.672000pt;}
.ls25{letter-spacing:0.734400pt;}
.ls16{letter-spacing:0.746667pt;}
.lsb{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.858667pt;}
.lsd{letter-spacing:0.933333pt;}
.ls12{letter-spacing:1.157333pt;}
.ls7{letter-spacing:1.488000pt;}
.lsf{letter-spacing:1.776000pt;}
.ls19{letter-spacing:2.256000pt;}
.ls0{letter-spacing:2.880000pt;}
.ls29{letter-spacing:3.878400pt;}
.ls17{letter-spacing:5.376000pt;}
.ls24{letter-spacing:6.288000pt;}
.ls1e{letter-spacing:8.630400pt;}
.ls1c{letter-spacing:9.192000pt;}
.ls1d{letter-spacing:13.603200pt;}
.ls9{letter-spacing:176.885333pt;}
.ws15{word-spacing:-18.405333pt;}
.ws2{word-spacing:-18.314667pt;}
.ws2e{word-spacing:-17.770667pt;}
.ws59{word-spacing:-10.080000pt;}
.wsaa{word-spacing:-9.936000pt;}
.ws2f{word-spacing:-9.840000pt;}
.ws5a{word-spacing:-9.696000pt;}
.ws2d{word-spacing:-9.456000pt;}
.ws14{word-spacing:-9.216000pt;}
.wsb{word-spacing:-8.837333pt;}
.wsab{word-spacing:-8.832000pt;}
.ws1{word-spacing:-8.704000pt;}
.wsdc{word-spacing:-8.618667pt;}
.ws32{word-spacing:-8.549333pt;}
.ws19{word-spacing:-8.474667pt;}
.ws18{word-spacing:-8.437333pt;}
.wsac{word-spacing:-8.405333pt;}
.ws36{word-spacing:-8.362667pt;}
.ws30{word-spacing:-8.101333pt;}
.ws72{word-spacing:-8.064000pt;}
.ws71{word-spacing:-7.952000pt;}
.ws33{word-spacing:-7.765333pt;}
.ws0{word-spacing:-7.728000pt;}
.ws50{word-spacing:-7.616000pt;}
.ws51{word-spacing:-6.906667pt;}
.ws17{word-spacing:-6.608000pt;}
.ws52{word-spacing:-6.122667pt;}
.wsf2{word-spacing:-2.858667pt;}
.wsf1{word-spacing:-2.730667pt;}
.wsed{word-spacing:-2.602667pt;}
.wsff{word-spacing:-2.517333pt;}
.ws21{word-spacing:-1.872000pt;}
.ws20{word-spacing:-1.776000pt;}
.ws96{word-spacing:-1.728000pt;}
.wsb7{word-spacing:-1.706667pt;}
.ws95{word-spacing:-1.632000pt;}
.wsb4{word-spacing:-1.621333pt;}
.wsfb{word-spacing:-1.536000pt;}
.ws28{word-spacing:-1.488000pt;}
.wsde{word-spacing:-1.450667pt;}
.ws6f{word-spacing:-1.440000pt;}
.wsfd{word-spacing:-1.365333pt;}
.ws8f{word-spacing:-1.344000pt;}
.wsc9{word-spacing:-1.322667pt;}
.wsd7{word-spacing:-1.280000pt;}
.ws8e{word-spacing:-1.248000pt;}
.wsca{word-spacing:-1.237333pt;}
.ws84{word-spacing:-1.200000pt;}
.ws83{word-spacing:-1.152000pt;}
.wsc2{word-spacing:-1.109333pt;}
.wsa2{word-spacing:-1.104000pt;}
.ws63{word-spacing:-1.008000pt;}
.ws62{word-spacing:-0.960000pt;}
.wsc1{word-spacing:-0.938667pt;}
.ws2c{word-spacing:-0.933333pt;}
.wsa6{word-spacing:-0.912000pt;}
.wscf{word-spacing:-0.896000pt;}
.ws49{word-spacing:-0.858667pt;}
.wsad{word-spacing:-0.853333pt;}
.ws2b{word-spacing:-0.821333pt;}
.ws6d{word-spacing:-0.816000pt;}
.wsd0{word-spacing:-0.810667pt;}
.ws35{word-spacing:-0.784000pt;}
.ws40{word-spacing:-0.768000pt;}
.wse8{word-spacing:-0.725333pt;}
.ws25{word-spacing:-0.720000pt;}
.ws102{word-spacing:-0.682667pt;}
.ws7c{word-spacing:-0.672000pt;}
.wsb5{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.634667pt;}
.wsb6{word-spacing:-0.597333pt;}
.wsb3{word-spacing:-0.554667pt;}
.ws27{word-spacing:-0.528000pt;}
.wsdd{word-spacing:-0.512000pt;}
.ws90{word-spacing:-0.480000pt;}
.wsc5{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.384000pt;}
.wsf{word-spacing:-0.373333pt;}
.wse5{word-spacing:-0.341333pt;}
.ws58{word-spacing:-0.336000pt;}
.ws77{word-spacing:-0.298667pt;}
.ws82{word-spacing:-0.261333pt;}
.ws4e{word-spacing:-0.240000pt;}
.ws81{word-spacing:-0.186667pt;}
.wsdb{word-spacing:-0.128000pt;}
.ws91{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wse4{word-spacing:0.042667pt;}
.ws37{word-spacing:0.048000pt;}
.ws97{word-spacing:0.144000pt;}
.ws10{word-spacing:0.181333pt;}
.ws98{word-spacing:0.192000pt;}
.wsf3{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.240000pt;}
.wsb2{word-spacing:0.256000pt;}
.ws12{word-spacing:0.272000pt;}
.ws7f{word-spacing:0.298667pt;}
.ws80{word-spacing:0.336000pt;}
.ws105{word-spacing:0.341333pt;}
.ws9d{word-spacing:0.373333pt;}
.wsd8{word-spacing:0.384000pt;}
.wsd2{word-spacing:0.426667pt;}
.ws11{word-spacing:0.453333pt;}
.wsbd{word-spacing:0.469333pt;}
.ws3c{word-spacing:0.480000pt;}
.wsfa{word-spacing:0.512000pt;}
.ws55{word-spacing:0.522667pt;}
.ws6a{word-spacing:0.528000pt;}
.ws7e{word-spacing:0.560000pt;}
.ws6b{word-spacing:0.576000pt;}
.ws7d{word-spacing:0.597333pt;}
.wsb1{word-spacing:0.640000pt;}
.ws75{word-spacing:0.672000pt;}
.wsc7{word-spacing:0.682667pt;}
.ws38{word-spacing:0.720000pt;}
.wsfe{word-spacing:0.725333pt;}
.ws8d{word-spacing:0.768000pt;}
.ws103{word-spacing:0.810667pt;}
.ws87{word-spacing:0.816000pt;}
.wsda{word-spacing:0.853333pt;}
.ws107{word-spacing:0.896000pt;}
.wse1{word-spacing:0.938667pt;}
.ws5{word-spacing:0.981333pt;}
.ws56{word-spacing:1.008000pt;}
.ws4{word-spacing:1.024000pt;}
.ws57{word-spacing:1.045333pt;}
.ws104{word-spacing:1.066667pt;}
.ws13{word-spacing:1.088000pt;}
.wsee{word-spacing:1.109333pt;}
.ws47{word-spacing:1.120000pt;}
.ws29{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.200000pt;}
.wsd1{word-spacing:1.237333pt;}
.wsbf{word-spacing:1.280000pt;}
.ws8c{word-spacing:1.296000pt;}
.ws3a{word-spacing:1.344000pt;}
.wse2{word-spacing:1.365333pt;}
.ws3b{word-spacing:1.392000pt;}
.ws1d{word-spacing:1.440000pt;}
.ws1e{word-spacing:1.488000pt;}
.wsc0{word-spacing:1.493333pt;}
.ws88{word-spacing:1.536000pt;}
.ws93{word-spacing:1.584000pt;}
.ws3e{word-spacing:1.632000pt;}
.ws7{word-spacing:1.664000pt;}
.wsc6{word-spacing:1.706667pt;}
.ws3f{word-spacing:1.728000pt;}
.ws6{word-spacing:1.749333pt;}
.wsc3{word-spacing:1.792000pt;}
.ws6c{word-spacing:1.824000pt;}
.wsfc{word-spacing:1.877333pt;}
.wsa3{word-spacing:1.920000pt;}
.wsb8{word-spacing:1.962667pt;}
.ws8b{word-spacing:1.968000pt;}
.ws106{word-spacing:2.005333pt;}
.wsa4{word-spacing:2.016000pt;}
.wsd6{word-spacing:2.048000pt;}
.ws54{word-spacing:2.064000pt;}
.wsa0{word-spacing:2.112000pt;}
.wsd5{word-spacing:2.133333pt;}
.ws100{word-spacing:2.176000pt;}
.ws9f{word-spacing:2.208000pt;}
.ws24{word-spacing:2.256000pt;}
.ws79{word-spacing:2.277333pt;}
.ws22{word-spacing:2.304000pt;}
.ws9e{word-spacing:2.352000pt;}
.ws78{word-spacing:2.389333pt;}
.ws26{word-spacing:2.400000pt;}
.wsd{word-spacing:2.448000pt;}
.wsbe{word-spacing:2.474667pt;}
.wsd4{word-spacing:2.517333pt;}
.wsa{word-spacing:2.528000pt;}
.ws99{word-spacing:2.544000pt;}
.ws8{word-spacing:2.581333pt;}
.ws9{word-spacing:2.586667pt;}
.ws8a{word-spacing:2.592000pt;}
.wsc8{word-spacing:2.602667pt;}
.ws9a{word-spacing:2.640000pt;}
.wsf5{word-spacing:2.645333pt;}
.wsf7{word-spacing:2.816000pt;}
.ws46{word-spacing:2.837333pt;}
.wsa8{word-spacing:2.928000pt;}
.wsf6{word-spacing:2.944000pt;}
.ws45{word-spacing:2.949333pt;}
.wsc4{word-spacing:2.986667pt;}
.wsa7{word-spacing:3.072000pt;}
.wsf9{word-spacing:3.157333pt;}
.wsc{word-spacing:3.168000pt;}
.ws44{word-spacing:3.210667pt;}
.wsbc{word-spacing:3.285333pt;}
.ws65{word-spacing:3.312000pt;}
.ws101{word-spacing:3.328000pt;}
.ws43{word-spacing:3.360000pt;}
.ws60{word-spacing:3.408000pt;}
.ws94{word-spacing:3.456000pt;}
.ws67{word-spacing:3.552000pt;}
.wsf8{word-spacing:3.584000pt;}
.ws41{word-spacing:3.648000pt;}
.wse6{word-spacing:3.669333pt;}
.wse7{word-spacing:3.712000pt;}
.ws68{word-spacing:3.744000pt;}
.wsae{word-spacing:3.754667pt;}
.ws42{word-spacing:3.840000pt;}
.wscd{word-spacing:3.882667pt;}
.ws23{word-spacing:3.888000pt;}
.wsef{word-spacing:3.968000pt;}
.ws39{word-spacing:3.984000pt;}
.wscc{word-spacing:4.010667pt;}
.wscb{word-spacing:4.053333pt;}
.ws7b{word-spacing:4.256000pt;}
.wse{word-spacing:4.272000pt;}
.wse0{word-spacing:4.309333pt;}
.ws9c{word-spacing:4.320000pt;}
.ws4c{word-spacing:4.416000pt;}
.ws7a{word-spacing:4.442667pt;}
.ws76{word-spacing:4.464000pt;}
.wsdf{word-spacing:4.522667pt;}
.ws9b{word-spacing:4.560000pt;}
.wsec{word-spacing:4.565333pt;}
.wsf4{word-spacing:4.608000pt;}
.ws4d{word-spacing:4.656000pt;}
.wsd9{word-spacing:4.736000pt;}
.ws1c{word-spacing:4.800000pt;}
.wse3{word-spacing:4.864000pt;}
.wsd3{word-spacing:4.949333pt;}
.ws5e{word-spacing:4.992000pt;}
.wsf0{word-spacing:5.120000pt;}
.ws64{word-spacing:5.136000pt;}
.ws4a{word-spacing:5.184000pt;}
.ws66{word-spacing:5.232000pt;}
.wsea{word-spacing:5.248000pt;}
.ws74{word-spacing:5.280000pt;}
.ws73{word-spacing:5.328000pt;}
.ws4b{word-spacing:5.424000pt;}
.wse9{word-spacing:5.461333pt;}
.wsa5{word-spacing:5.472000pt;}
.wseb{word-spacing:5.504000pt;}
.wsa1{word-spacing:5.520000pt;}
.ws69{word-spacing:5.568000pt;}
.wsb0{word-spacing:5.589333pt;}
.ws70{word-spacing:5.616000pt;}
.ws92{word-spacing:5.712000pt;}
.wsb9{word-spacing:5.760000pt;}
.ws1f{word-spacing:5.952000pt;}
.wsaf{word-spacing:6.016000pt;}
.ws85{word-spacing:6.144000pt;}
.ws86{word-spacing:6.432000pt;}
.ws5f{word-spacing:6.624000pt;}
.wsa9{word-spacing:7.008000pt;}
.ws89{word-spacing:7.104000pt;}
.wsba{word-spacing:7.296000pt;}
.wsbb{word-spacing:7.637333pt;}
.ws61{word-spacing:8.400000pt;}
.ws5d{word-spacing:9.120000pt;}
.ws4f{word-spacing:9.984000pt;}
.ws5c{word-spacing:12.336000pt;}
.ws5b{word-spacing:12.528000pt;}
.ws6e{word-spacing:14.592000pt;}
.ws53{word-spacing:15.408000pt;}
.wsce{word-spacing:49.322667pt;}
.ws34{word-spacing:64.161067pt;}
.ws16{word-spacing:124.540267pt;}
.ws1a{word-spacing:169.157333pt;}
.ws31{word-spacing:517.316800pt;}
._1d{margin-left:-9.792000pt;}
._36{margin-left:-7.160533pt;}
._c{margin-left:-6.009600pt;}
._2{margin-left:-4.949333pt;}
._0{margin-left:-3.904000pt;}
._3{margin-left:-2.440533pt;}
._1{margin-left:-1.531733pt;}
._4{width:1.305600pt;}
._5{width:2.227200pt;}
._7{width:3.306667pt;}
._6{width:4.430933pt;}
._8{width:5.321600pt;}
._a{width:6.326400pt;}
._31{width:7.424533pt;}
._34{width:8.736000pt;}
._2d{width:10.840533pt;}
._30{width:12.748800pt;}
._35{width:13.867200pt;}
._2f{width:14.995200pt;}
._2e{width:16.043733pt;}
._33{width:18.379200pt;}
._32{width:19.329600pt;}
._17{width:22.698667pt;}
._43{width:34.204267pt;}
._9{width:39.082667pt;}
._f{width:56.224000pt;}
._1a{width:60.554667pt;}
._18{width:62.309333pt;}
._11{width:69.440000pt;}
._12{width:93.968000pt;}
._29{width:98.822400pt;}
._13{width:101.696000pt;}
._d{width:112.522667pt;}
._14{width:118.272000pt;}
._1e{width:120.890667pt;}
._38{width:136.826667pt;}
._20{width:144.928000pt;}
._15{width:145.824000pt;}
._22{width:149.968000pt;}
._39{width:154.448000pt;}
._24{width:162.549333pt;}
._2b{width:167.589333pt;}
._21{width:171.584000pt;}
._3b{width:172.554667pt;}
._26{width:185.210667pt;}
._25{width:189.205333pt;}
._16{width:200.741333pt;}
._40{width:259.989333pt;}
._23{width:295.829333pt;}
._19{width:305.533867pt;}
._3d{width:325.360000pt;}
._3c{width:336.821333pt;}
._37{width:352.650667pt;}
._1b{width:354.979200pt;}
._2a{width:380.538667pt;}
._3f{width:398.533333pt;}
._1c{width:404.483200pt;}
._3e{width:410.890667pt;}
._28{width:436.613333pt;}
._3a{width:438.629333pt;}
._27{width:448.074667pt;}
._e{width:458.586667pt;}
._1f{width:500.565333pt;}
._10{width:508.442667pt;}
._41{width:1570.048000pt;}
._42{width:1571.200000pt;}
._b{width:1573.333333pt;}
._2c{width:1574.784000pt;}
.fs8{font-size:21.765333pt;}
.fs9{font-size:27.984000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.y127{bottom:78.900400pt;}
.y7a{bottom:85.754933pt;}
.y121{bottom:86.810800pt;}
.y239{bottom:89.787200pt;}
.ybc{bottom:89.823200pt;}
.y153{bottom:89.891867pt;}
.y126{bottom:92.237733pt;}
.y1fa{bottom:93.622667pt;}
.yd{bottom:94.259867pt;}
.y1a2{bottom:94.883333pt;}
.y186{bottom:95.887867pt;}
.y193{bottom:95.970133pt;}
.y32{bottom:98.397600pt;}
.y79{bottom:98.401600pt;}
.yc6{bottom:98.834667pt;}
.y120{bottom:99.457467pt;}
.y1c1{bottom:99.726000pt;}
.yc{bottom:103.859867pt;}
.y238{bottom:104.453867pt;}
.y125{bottom:105.575067pt;}
.ybb{bottom:105.819200pt;}
.y152{bottom:105.887867pt;}
.yaf{bottom:108.146933pt;}
.y1f9{bottom:108.289333pt;}
.y1a1{bottom:110.879333pt;}
.y78{bottom:111.048267pt;}
.y185{bottom:111.883867pt;}
.y192{bottom:111.966133pt;}
.y11f{bottom:112.104133pt;}
.y1c0{bottom:113.063333pt;}
.yb{bottom:113.459867pt;}
.y104{bottom:113.903867pt;}
.y31{bottom:114.393600pt;}
.yc5{bottom:114.830667pt;}
.y124{bottom:118.912400pt;}
.y237{bottom:119.120533pt;}
.yae{bottom:120.793600pt;}
.yba{bottom:121.815200pt;}
.y151{bottom:121.883867pt;}
.y1f8{bottom:122.956000pt;}
.ya{bottom:123.059867pt;}
.y77{bottom:123.694933pt;}
.y11e{bottom:124.750800pt;}
.y1a0{bottom:126.875333pt;}
.y184{bottom:127.879867pt;}
.y191{bottom:127.962133pt;}
.y103{bottom:129.899867pt;}
.y30{bottom:130.389600pt;}
.yc4{bottom:130.826667pt;}
.y123{bottom:132.249733pt;}
.yad{bottom:133.440267pt;}
.y236{bottom:133.787200pt;}
.y76{bottom:136.341600pt;}
.y11d{bottom:137.397467pt;}
.y1f7{bottom:137.622667pt;}
.yb9{bottom:137.811200pt;}
.y150{bottom:137.879867pt;}
.y19f{bottom:142.871333pt;}
.y183{bottom:143.875867pt;}
.y190{bottom:143.958133pt;}
.yac{bottom:144.640267pt;}
.y122{bottom:145.587067pt;}
.y102{bottom:145.895867pt;}
.y2f{bottom:146.385600pt;}
.yc3{bottom:146.822667pt;}
.y235{bottom:148.453867pt;}
.y75{bottom:148.988267pt;}
.y11c{bottom:150.044133pt;}
.y1f6{bottom:152.289333pt;}
.yb8{bottom:153.807200pt;}
.y14f{bottom:153.875867pt;}
.y9{bottom:156.659867pt;}
.yab{bottom:157.286933pt;}
.y19e{bottom:158.867333pt;}
.y182{bottom:159.871867pt;}
.y18f{bottom:159.954133pt;}
.y74{bottom:161.634933pt;}
.y101{bottom:161.891867pt;}
.y2e{bottom:162.381600pt;}
.y11b{bottom:162.690800pt;}
.yc2{bottom:162.818667pt;}
.y234{bottom:163.120533pt;}
.y1f5{bottom:166.956000pt;}
.y8{bottom:167.859867pt;}
.yaa{bottom:168.486933pt;}
.yb7{bottom:169.803200pt;}
.y14e{bottom:169.871867pt;}
.y73{bottom:174.281600pt;}
.y19d{bottom:174.863333pt;}
.y11a{bottom:175.337467pt;}
.y181{bottom:175.867867pt;}
.y18e{bottom:175.950133pt;}
.y233{bottom:177.787200pt;}
.y100{bottom:177.887867pt;}
.y2d{bottom:178.377600pt;}
.y7{bottom:179.059867pt;}
.ya9{bottom:181.133600pt;}
.y1f4{bottom:181.622667pt;}
.yb6{bottom:185.799200pt;}
.y14d{bottom:185.867867pt;}
.y72{bottom:186.928267pt;}
.y119{bottom:187.984133pt;}
.y6{bottom:190.259867pt;}
.y19c{bottom:190.859333pt;}
.y180{bottom:191.863867pt;}
.y18d{bottom:191.946133pt;}
.y232{bottom:192.453867pt;}
.ya8{bottom:193.780267pt;}
.yff{bottom:193.883867pt;}
.y2c{bottom:194.373600pt;}
.y1f3{bottom:196.289333pt;}
.y71{bottom:199.574933pt;}
.ycc{bottom:199.626533pt;}
.y5{bottom:201.459867pt;}
.yb5{bottom:201.795200pt;}
.y14c{bottom:201.863867pt;}
.ya7{bottom:206.426933pt;}
.y19b{bottom:206.855333pt;}
.y231{bottom:207.120533pt;}
.y116{bottom:207.294800pt;}
.y17f{bottom:207.859867pt;}
.y18c{bottom:207.942133pt;}
.yfe{bottom:209.879867pt;}
.y2b{bottom:210.369600pt;}
.y1f2{bottom:210.956000pt;}
.y70{bottom:212.221600pt;}
.y118{bottom:212.894800pt;}
.ycb{bottom:212.963867pt;}
.yb4{bottom:217.791200pt;}
.y14b{bottom:217.859867pt;}
.y114{bottom:218.494800pt;}
.ya6{bottom:219.073600pt;}
.y230{bottom:221.787200pt;}
.y19a{bottom:222.851333pt;}
.y17e{bottom:223.855867pt;}
.y18b{bottom:223.938133pt;}
.y117{bottom:224.094800pt;}
.y6f{bottom:224.868267pt;}
.y1f1{bottom:225.622667pt;}
.yfd{bottom:225.875867pt;}
.yca{bottom:226.301200pt;}
.y2a{bottom:226.365600pt;}
.y115{bottom:229.694800pt;}
.yb3{bottom:233.787200pt;}
.y14a{bottom:233.855867pt;}
.y22f{bottom:236.453867pt;}
.y6e{bottom:237.514933pt;}
.ya4{bottom:238.384267pt;}
.y199{bottom:238.847333pt;}
.yc9{bottom:239.638533pt;}
.y17d{bottom:239.851867pt;}
.y1f0{bottom:240.289333pt;}
.yfc{bottom:241.871867pt;}
.y29{bottom:242.361600pt;}
.ya3{bottom:243.984267pt;}
.ya5{bottom:249.584267pt;}
.yb2{bottom:249.783200pt;}
.y149{bottom:249.851867pt;}
.y6d{bottom:250.161600pt;}
.y113{bottom:250.993067pt;}
.y22e{bottom:251.120533pt;}
.yc8{bottom:252.975867pt;}
.y198{bottom:254.843333pt;}
.y1ef{bottom:254.956000pt;}
.y17c{bottom:255.847867pt;}
.yfb{bottom:257.867867pt;}
.y28{bottom:258.357600pt;}
.y18a{bottom:260.754000pt;}
.y6c{bottom:262.808267pt;}
.y112{bottom:264.330400pt;}
.yb1{bottom:265.779200pt;}
.y22d{bottom:265.787200pt;}
.y148{bottom:265.847867pt;}
.yc7{bottom:266.313200pt;}
.y1ee{bottom:269.622667pt;}
.y197{bottom:270.839333pt;}
.ya2{bottom:270.886800pt;}
.y17b{bottom:271.843867pt;}
.yfa{bottom:273.863867pt;}
.y189{bottom:274.091333pt;}
.y27{bottom:274.353600pt;}
.y6b{bottom:275.454933pt;}
.y111{bottom:277.667733pt;}
.y22c{bottom:280.453867pt;}
.y147{bottom:281.843867pt;}
.ya1{bottom:284.224133pt;}
.y1ed{bottom:284.289333pt;}
.yb0{bottom:285.783200pt;}
.y196{bottom:286.835333pt;}
.y188{bottom:287.428667pt;}
.y17a{bottom:287.839867pt;}
.y6a{bottom:288.101600pt;}
.yf9{bottom:289.859867pt;}
.y26{bottom:290.349600pt;}
.y110{bottom:291.005067pt;}
.y22b{bottom:295.120533pt;}
.ya0{bottom:297.561467pt;}
.y146{bottom:297.839867pt;}
.y1ec{bottom:298.956000pt;}
.y69{bottom:300.748267pt;}
.y187{bottom:300.766000pt;}
.y195{bottom:302.831333pt;}
.y179{bottom:303.835867pt;}
.yf8{bottom:305.855867pt;}
.y25{bottom:306.345600pt;}
.y22a{bottom:309.787200pt;}
.y68{bottom:313.394933pt;}
.y1eb{bottom:313.622667pt;}
.y145{bottom:313.835867pt;}
.y194{bottom:318.827333pt;}
.y178{bottom:319.831867pt;}
.yf7{bottom:321.851867pt;}
.y24{bottom:322.341600pt;}
.yc1{bottom:322.928400pt;}
.y229{bottom:324.453867pt;}
.y10f{bottom:324.978400pt;}
.y67{bottom:326.041600pt;}
.y1ea{bottom:328.289333pt;}
.y144{bottom:329.831867pt;}
.y177{bottom:335.827867pt;}
.yc0{bottom:336.265733pt;}
.y9f{bottom:336.442533pt;}
.yf6{bottom:337.847867pt;}
.y10e{bottom:338.315733pt;}
.y23{bottom:338.337600pt;}
.y66{bottom:338.688267pt;}
.y228{bottom:339.120533pt;}
.y1e9{bottom:342.956000pt;}
.y143{bottom:345.827867pt;}
.ybf{bottom:349.603067pt;}
.y65{bottom:351.334933pt;}
.y176{bottom:351.823867pt;}
.y9e{bottom:352.438533pt;}
.y227{bottom:353.787200pt;}
.yf5{bottom:353.843867pt;}
.y22{bottom:354.333600pt;}
.y1a9{bottom:355.631067pt;}
.y1e8{bottom:357.622667pt;}
.y142{bottom:361.823867pt;}
.ybe{bottom:362.940400pt;}
.y175{bottom:367.819867pt;}
.y9d{bottom:368.434533pt;}
.y226{bottom:368.453867pt;}
.y1a8{bottom:368.968400pt;}
.yf4{bottom:369.839867pt;}
.y21{bottom:370.329600pt;}
.y64{bottom:370.645600pt;}
.y1e7{bottom:372.289333pt;}
.y61{bottom:376.245600pt;}
.ybd{bottom:376.277733pt;}
.y141{bottom:377.819867pt;}
.y63{bottom:381.845600pt;}
.y1a7{bottom:382.305733pt;}
.y225{bottom:383.120533pt;}
.y1bf{bottom:383.711867pt;}
.y174{bottom:383.815867pt;}
.y9c{bottom:384.430533pt;}
.yf3{bottom:385.835867pt;}
.y20{bottom:386.325600pt;}
.y1e6{bottom:386.956000pt;}
.y60{bottom:387.445600pt;}
.y62{bottom:393.045600pt;}
.y140{bottom:393.815867pt;}
.y1a6{bottom:395.643067pt;}
.y224{bottom:397.787200pt;}
.y1be{bottom:399.707867pt;}
.y173{bottom:399.811867pt;}
.y9b{bottom:400.426533pt;}
.y1e5{bottom:401.622667pt;}
.yf2{bottom:401.831867pt;}
.y1f{bottom:402.321600pt;}
.y1a5{bottom:408.980400pt;}
.y13f{bottom:409.811867pt;}
.y223{bottom:412.453867pt;}
.y5f{bottom:413.022800pt;}
.y1bd{bottom:415.703867pt;}
.y172{bottom:415.807867pt;}
.y1e4{bottom:416.289333pt;}
.y9a{bottom:416.422533pt;}
.yf1{bottom:417.827867pt;}
.y1e{bottom:418.317600pt;}
.y1a4{bottom:422.317733pt;}
.y13e{bottom:425.807867pt;}
.y222{bottom:427.120533pt;}
.y1e3{bottom:430.956000pt;}
.y1bc{bottom:431.699867pt;}
.y171{bottom:431.803867pt;}
.y99{bottom:432.418533pt;}
.yf0{bottom:433.823867pt;}
.y1d{bottom:434.313600pt;}
.y1a3{bottom:435.655067pt;}
.y221{bottom:441.787200pt;}
.y13d{bottom:441.803867pt;}
.y1e2{bottom:445.622667pt;}
.y5e{bottom:447.081200pt;}
.y1bb{bottom:447.695867pt;}
.y170{bottom:447.799867pt;}
.y98{bottom:448.414533pt;}
.yef{bottom:449.819867pt;}
.y1c{bottom:450.309600pt;}
.y220{bottom:456.453867pt;}
.y13c{bottom:457.799867pt;}
.y1e1{bottom:460.289333pt;}
.y5d{bottom:463.077200pt;}
.y1ba{bottom:463.691867pt;}
.y16f{bottom:463.795867pt;}
.y97{bottom:464.410533pt;}
.yee{bottom:465.815867pt;}
.y1b{bottom:466.305600pt;}
.y21f{bottom:471.120533pt;}
.y13b{bottom:473.795867pt;}
.y1e0{bottom:474.956000pt;}
.y5c{bottom:479.073200pt;}
.y16e{bottom:479.791867pt;}
.y96{bottom:480.406533pt;}
.yed{bottom:481.811867pt;}
.y1a{bottom:482.301600pt;}
.y1b9{bottom:483.691867pt;}
.y21e{bottom:485.787200pt;}
.y1df{bottom:489.622667pt;}
.y13a{bottom:489.791867pt;}
.y5b{bottom:495.069200pt;}
.y16d{bottom:495.787867pt;}
.y95{bottom:496.402533pt;}
.yec{bottom:497.807867pt;}
.y19{bottom:498.297600pt;}
.y21d{bottom:500.453867pt;}
.y1de{bottom:504.289333pt;}
.y139{bottom:505.787867pt;}
.y5a{bottom:511.065200pt;}
.y16c{bottom:511.783867pt;}
.y94{bottom:512.398533pt;}
.yeb{bottom:513.803867pt;}
.y18{bottom:514.293600pt;}
.y21c{bottom:515.120533pt;}
.y1dd{bottom:518.956000pt;}
.y138{bottom:521.783867pt;}
.y59{bottom:527.061200pt;}
.y16b{bottom:527.779867pt;}
.y93{bottom:528.394533pt;}
.y21b{bottom:529.787200pt;}
.yea{bottom:529.799867pt;}
.y1dc{bottom:533.622667pt;}
.y1b8{bottom:533.807867pt;}
.y17{bottom:534.293600pt;}
.y137{bottom:537.779867pt;}
.y58{bottom:543.057200pt;}
.y16a{bottom:543.775867pt;}
.y92{bottom:544.390533pt;}
.y21a{bottom:544.453867pt;}
.ye9{bottom:545.795867pt;}
.y1db{bottom:548.289333pt;}
.y1b7{bottom:549.803867pt;}
.y136{bottom:553.775867pt;}
.y57{bottom:559.053200pt;}
.y219{bottom:559.120533pt;}
.y169{bottom:559.771867pt;}
.y91{bottom:560.386533pt;}
.ye8{bottom:561.791867pt;}
.y1da{bottom:562.956000pt;}
.y1b6{bottom:565.799867pt;}
.y135{bottom:569.771867pt;}
.y218{bottom:573.787200pt;}
.y56{bottom:575.049200pt;}
.y168{bottom:575.767867pt;}
.y90{bottom:576.382533pt;}
.y1d9{bottom:577.622667pt;}
.ye7{bottom:577.787867pt;}
.y1b5{bottom:581.795867pt;}
.y134{bottom:585.767867pt;}
.y16{bottom:586.160000pt;}
.y217{bottom:588.453867pt;}
.y55{bottom:591.045200pt;}
.y167{bottom:591.763867pt;}
.y1d8{bottom:592.289333pt;}
.y8f{bottom:592.378533pt;}
.ye6{bottom:593.783867pt;}
.y1b4{bottom:597.791867pt;}
.y15{bottom:600.826667pt;}
.y133{bottom:601.763867pt;}
.y216{bottom:603.120533pt;}
.y1d7{bottom:606.956000pt;}
.y54{bottom:607.041200pt;}
.y166{bottom:607.759867pt;}
.y8e{bottom:608.374533pt;}
.ye5{bottom:609.779867pt;}
.y14{bottom:613.626933pt;}
.y1b3{bottom:613.787867pt;}
.y132{bottom:617.759867pt;}
.y215{bottom:617.787200pt;}
.y1d6{bottom:621.622667pt;}
.y53{bottom:623.037200pt;}
.y165{bottom:623.755867pt;}
.y8d{bottom:624.370533pt;}
.ye4{bottom:625.775867pt;}
.y1b2{bottom:629.783867pt;}
.y214{bottom:632.453867pt;}
.y131{bottom:633.755867pt;}
.y1d5{bottom:636.289333pt;}
.y52{bottom:639.033200pt;}
.y164{bottom:639.751867pt;}
.y8c{bottom:640.366533pt;}
.ye3{bottom:641.771867pt;}
.y13{bottom:644.293600pt;}
.y1b1{bottom:645.779867pt;}
.y213{bottom:647.120533pt;}
.y34{bottom:649.027467pt;}
.y130{bottom:649.751867pt;}
.y1d4{bottom:650.956000pt;}
.y51{bottom:655.029200pt;}
.y163{bottom:655.747867pt;}
.y8b{bottom:656.362533pt;}
.ye2{bottom:657.767867pt;}
.y1b0{bottom:661.775867pt;}
.y212{bottom:661.787200pt;}
.y33{bottom:662.250267pt;}
.y1d3{bottom:665.622667pt;}
.y12f{bottom:665.747867pt;}
.y12{bottom:666.960267pt;}
.y50{bottom:671.085200pt;}
.y162{bottom:671.743867pt;}
.y8a{bottom:672.358533pt;}
.ye1{bottom:673.763867pt;}
.y211{bottom:676.453867pt;}
.y1af{bottom:677.771867pt;}
.y1d2{bottom:680.289333pt;}
.y11{bottom:681.626933pt;}
.y12e{bottom:681.743867pt;}
.y4f{bottom:687.081200pt;}
.y161{bottom:687.739867pt;}
.ye0{bottom:689.759867pt;}
.y210{bottom:691.120533pt;}
.y89{bottom:692.362533pt;}
.y1ae{bottom:693.767867pt;}
.y1d1{bottom:694.956000pt;}
.y10{bottom:696.293600pt;}
.y12d{bottom:697.739867pt;}
.y4e{bottom:703.077200pt;}
.y160{bottom:703.735867pt;}
.ydf{bottom:705.755867pt;}
.y20f{bottom:705.787200pt;}
.y88{bottom:708.358533pt;}
.y1d0{bottom:709.622667pt;}
.y1ad{bottom:709.763867pt;}
.yf{bottom:710.960267pt;}
.y12c{bottom:713.735867pt;}
.y4d{bottom:719.073200pt;}
.y15f{bottom:719.731867pt;}
.y20e{bottom:720.453867pt;}
.yde{bottom:721.751867pt;}
.y1cf{bottom:724.289333pt;}
.y87{bottom:724.354533pt;}
.ye{bottom:725.626933pt;}
.y1ac{bottom:725.759867pt;}
.y12b{bottom:733.739867pt;}
.y4c{bottom:735.069200pt;}
.y20d{bottom:735.120533pt;}
.y15e{bottom:735.727867pt;}
.ydd{bottom:737.747867pt;}
.y1ce{bottom:738.956000pt;}
.y1ab{bottom:741.755867pt;}
.y86{bottom:744.358533pt;}
.y12a{bottom:749.735867pt;}
.y20c{bottom:749.787200pt;}
.y4b{bottom:751.065200pt;}
.y15d{bottom:751.723867pt;}
.y1cd{bottom:753.622667pt;}
.ydc{bottom:753.743867pt;}
.y1aa{bottom:757.751867pt;}
.y20b{bottom:764.453867pt;}
.y129{bottom:765.731867pt;}
.y4a{bottom:767.061200pt;}
.y15c{bottom:767.719867pt;}
.y1cc{bottom:768.289333pt;}
.y85{bottom:771.025200pt;}
.y3b{bottom:773.029467pt;}
.ydb{bottom:773.747867pt;}
.y20a{bottom:779.120533pt;}
.y49{bottom:783.057200pt;}
.y15b{bottom:783.715867pt;}
.y128{bottom:785.735867pt;}
.y1cb{bottom:786.956000pt;}
.yda{bottom:789.743867pt;}
.y209{bottom:793.787200pt;}
.y3a{bottom:794.362800pt;}
.y48{bottom:799.053200pt;}
.y15a{bottom:799.711867pt;}
.yd9{bottom:805.739867pt;}
.y208{bottom:808.453867pt;}
.y39{bottom:809.029467pt;}
.y47{bottom:815.049200pt;}
.y159{bottom:815.707867pt;}
.y84{bottom:821.069200pt;}
.yd8{bottom:821.735867pt;}
.y207{bottom:823.120533pt;}
.y10d{bottom:829.715867pt;}
.y46{bottom:831.045200pt;}
.y158{bottom:831.703867pt;}
.y1ca{bottom:836.957333pt;}
.y38{bottom:837.029467pt;}
.y83{bottom:837.065200pt;}
.yd7{bottom:837.731867pt;}
.y206{bottom:837.787200pt;}
.y10c{bottom:845.711867pt;}
.y45{bottom:847.041200pt;}
.y157{bottom:847.699867pt;}
.y205{bottom:852.453867pt;}
.y1c9{bottom:852.953333pt;}
.y82{bottom:853.061200pt;}
.yd6{bottom:853.727867pt;}
.y10b{bottom:861.707867pt;}
.y44{bottom:863.037200pt;}
.y156{bottom:863.695867pt;}
.y204{bottom:867.120533pt;}
.y37{bottom:869.029467pt;}
.y81{bottom:869.057200pt;}
.yd5{bottom:869.723867pt;}
.y1c8{bottom:874.296000pt;}
.y10a{bottom:877.703867pt;}
.y43{bottom:879.033200pt;}
.y155{bottom:879.691867pt;}
.y203{bottom:881.787200pt;}
.y80{bottom:885.053200pt;}
.yd4{bottom:885.719867pt;}
.y1c7{bottom:890.292000pt;}
.y109{bottom:893.699867pt;}
.y42{bottom:895.029200pt;}
.y36{bottom:896.229467pt;}
.y202{bottom:896.453867pt;}
.y154{bottom:899.691867pt;}
.y7f{bottom:901.049200pt;}
.yd3{bottom:901.715867pt;}
.y108{bottom:909.695867pt;}
.y41{bottom:911.025200pt;}
.y201{bottom:911.120533pt;}
.y1c6{bottom:911.628000pt;}
.y7e{bottom:917.045200pt;}
.yd2{bottom:917.711867pt;}
.y35{bottom:923.429467pt;}
.y107{bottom:925.691867pt;}
.y200{bottom:925.787200pt;}
.y1c5{bottom:927.624000pt;}
.y40{bottom:931.025200pt;}
.y7d{bottom:933.041200pt;}
.yd1{bottom:933.707867pt;}
.y1ff{bottom:940.453867pt;}
.y106{bottom:945.695867pt;}
.y1c4{bottom:948.960000pt;}
.y7c{bottom:949.037200pt;}
.yd0{bottom:949.703867pt;}
.y1fe{bottom:955.120533pt;}
.y105{bottom:961.691867pt;}
.y1c3{bottom:964.956000pt;}
.y7b{bottom:965.033200pt;}
.ycf{bottom:965.699867pt;}
.y1fd{bottom:969.787200pt;}
.y3{bottom:980.921200pt;}
.y3f{bottom:981.029200pt;}
.yce{bottom:981.695867pt;}
.y1fc{bottom:984.453867pt;}
.y1c2{bottom:986.289333pt;}
.y3e{bottom:997.025200pt;}
.ycd{bottom:997.691867pt;}
.y1fb{bottom:999.120533pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y3d{bottom:1044.923200pt;}
.h6{height:24.480000pt;}
.h12{height:28.560000pt;}
.h5{height:28.597333pt;}
.h10{height:28.672000pt;}
.h8{height:32.682667pt;}
.h11{height:34.981333pt;}
.hc{height:35.205333pt;}
.h14{height:36.720000pt;}
.h3{height:36.768000pt;}
.h4{height:39.978667pt;}
.h7{height:40.234667pt;}
.h2{height:40.444800pt;}
.h13{height:44.976000pt;}
.h15{height:45.237333pt;}
.ha{height:45.264000pt;}
.hd{height:49.973333pt;}
.he{height:50.997333pt;}
.hb{height:56.746667pt;}
.hf{height:73.397333pt;}
.h9{height:84.954667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8{left:-314.761200pt;}
.x9{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x4{left:72.000000pt;}
.x2{left:82.666667pt;}
.x5{left:88.003680pt;}
.x6{left:256.000000pt;}
.x7{left:272.000000pt;}
.xa{left:278.854667pt;}
.xb{left:347.706667pt;}
.xc{left:404.850400pt;}
.x15{left:430.350267pt;}
.x14{left:439.720933pt;}
.xf{left:440.678667pt;}
.x13{left:442.825333pt;}
.x16{left:506.594267pt;}
.x17{left:517.859600pt;}
.x18{left:579.972933pt;}
.x10{left:588.014667pt;}
.x19{left:598.471600pt;}
.xd{left:611.705067pt;}
.x1{left:637.427733pt;}
.x1a{left:652.670267pt;}
.x11{left:660.012000pt;}
.x1b{left:675.088933pt;}
.xe{left:680.557067pt;}
.x12{left:682.430667pt;}
.x3{left:703.168000pt;}
}




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