
    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_5147e69adcf2af01f2b43839.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a1d0517b8847d724ea68b11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_6ef66ac46c7fcff61ae8caa7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_888e89a8649ec5dd285a50ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_3fd659b946e8bcf0a78e02a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_52ab3cd82841d2bdeb0f9384.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_1df29efa22fed9eeabb541c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.179000;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_93984c4091da73aa4f28841d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_710e7e5b842c0865d5a9fe6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;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_6f88e09928dd15e2acffb0b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsa{letter-spacing:-4.032000px;}
.ls6{letter-spacing:-1.824000px;}
.ls5{letter-spacing:-1.584000px;}
.lsb{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.056000px;}
.ls3{letter-spacing:-0.900000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.840000px;}
.ls7{letter-spacing:1.200000px;}
.ls1{letter-spacing:3.360000px;}
.ls8{letter-spacing:247.536000px;}
.ls4{letter-spacing:335.712000px;}
.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;}
}
.wsb5{word-spacing:-15.840000px;}
.ws41{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.976000px;}
.ws4f{word-spacing:-13.332000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.120000px;}
.wsa1{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.520000px;}
.ws7f{word-spacing:-11.340000px;}
.wsad{word-spacing:-10.176000px;}
.wsf9{word-spacing:-9.750000px;}
.ws2{word-spacing:-9.408000px;}
.wsfa{word-spacing:-9.216000px;}
.ws5{word-spacing:-8.694000px;}
.ws8{word-spacing:-8.400000px;}
.wsb3{word-spacing:-6.000000px;}
.wsbe{word-spacing:-1.860000px;}
.ws37{word-spacing:-1.440000px;}
.wsd6{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.020000px;}
.ws4e{word-spacing:-0.960000px;}
.ws129{word-spacing:-0.912000px;}
.wse4{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.840000px;}
.wse5{word-spacing:-0.720000px;}
.ws82{word-spacing:-0.600000px;}
.ws38{word-spacing:-0.540000px;}
.ws9{word-spacing:-0.480000px;}
.ws9c{word-spacing:-0.420000px;}
.wsfc{word-spacing:-0.384000px;}
.wsda{word-spacing:-0.360000px;}
.ws8f{word-spacing:-0.300000px;}
.ws45{word-spacing:-0.240000px;}
.ws122{word-spacing:-0.192000px;}
.ws24{word-spacing:-0.180000px;}
.wsd0{word-spacing:-0.120000px;}
.wsb2{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws78{word-spacing:0.060000px;}
.ws111{word-spacing:0.096000px;}
.ws35{word-spacing:0.120000px;}
.wse0{word-spacing:0.180000px;}
.ws20{word-spacing:0.240000px;}
.ws75{word-spacing:0.300000px;}
.ws6c{word-spacing:0.360000px;}
.wsf2{word-spacing:0.420000px;}
.ws11c{word-spacing:0.480000px;}
.wsff{word-spacing:0.528000px;}
.ws33{word-spacing:0.540000px;}
.ws83{word-spacing:0.600000px;}
.wsd8{word-spacing:0.660000px;}
.ws128{word-spacing:0.672000px;}
.ws58{word-spacing:0.720000px;}
.wsb{word-spacing:0.780000px;}
.ws114{word-spacing:0.816000px;}
.ws68{word-spacing:0.840000px;}
.ws11d{word-spacing:0.864000px;}
.wsd7{word-spacing:0.900000px;}
.wsc2{word-spacing:0.960000px;}
.ws30{word-spacing:1.020000px;}
.ws2f{word-spacing:1.080000px;}
.ws3b{word-spacing:1.140000px;}
.ws48{word-spacing:1.200000px;}
.ws10a{word-spacing:1.248000px;}
.wsd{word-spacing:1.260000px;}
.ws113{word-spacing:1.296000px;}
.wsd4{word-spacing:1.320000px;}
.ws103{word-spacing:1.344000px;}
.ws94{word-spacing:1.380000px;}
.ws11f{word-spacing:1.392000px;}
.ws5b{word-spacing:1.440000px;}
.wsbf{word-spacing:1.500000px;}
.wsa{word-spacing:1.560000px;}
.ws105{word-spacing:1.584000px;}
.ws26{word-spacing:1.620000px;}
.ws127{word-spacing:1.632000px;}
.ws98{word-spacing:1.680000px;}
.wsc9{word-spacing:1.728000px;}
.ws8b{word-spacing:1.740000px;}
.ws44{word-spacing:1.800000px;}
.ws12a{word-spacing:1.824000px;}
.ws53{word-spacing:1.860000px;}
.ws19{word-spacing:1.920000px;}
.ws86{word-spacing:1.980000px;}
.wsc{word-spacing:2.040000px;}
.ws10f{word-spacing:2.064000px;}
.wsde{word-spacing:2.100000px;}
.ws7d{word-spacing:2.160000px;}
.ws39{word-spacing:2.220000px;}
.ws42{word-spacing:2.280000px;}
.ws119{word-spacing:2.304000px;}
.ws14{word-spacing:2.340000px;}
.ws12b{word-spacing:2.352000px;}
.ws84{word-spacing:2.400000px;}
.ws51{word-spacing:2.460000px;}
.ws28{word-spacing:2.520000px;}
.wsbc{word-spacing:2.580000px;}
.ws109{word-spacing:2.592000px;}
.ws4c{word-spacing:2.640000px;}
.wsdd{word-spacing:2.700000px;}
.wsdb{word-spacing:2.760000px;}
.ws91{word-spacing:2.820000px;}
.wsed{word-spacing:2.880000px;}
.ws6b{word-spacing:2.940000px;}
.ws110{word-spacing:2.976000px;}
.wse6{word-spacing:3.000000px;}
.ws36{word-spacing:3.060000px;}
.ws3c{word-spacing:3.120000px;}
.ws55{word-spacing:3.180000px;}
.ws104{word-spacing:3.216000px;}
.wsf6{word-spacing:3.240000px;}
.ws124{word-spacing:3.264000px;}
.ws2c{word-spacing:3.300000px;}
.ws40{word-spacing:3.360000px;}
.ws115{word-spacing:3.408000px;}
.ws71{word-spacing:3.420000px;}
.ws101{word-spacing:3.456000px;}
.ws49{word-spacing:3.480000px;}
.wse1{word-spacing:3.540000px;}
.ws99{word-spacing:3.600000px;}
.ws56{word-spacing:3.660000px;}
.ws107{word-spacing:3.696000px;}
.ws7e{word-spacing:3.720000px;}
.ws8e{word-spacing:3.780000px;}
.ws52{word-spacing:3.840000px;}
.ws22{word-spacing:3.900000px;}
.wsae{word-spacing:3.960000px;}
.ws7c{word-spacing:4.020000px;}
.ws100{word-spacing:4.032000px;}
.wsbb{word-spacing:4.080000px;}
.ws2b{word-spacing:4.140000px;}
.ws10{word-spacing:4.200000px;}
.ws34{word-spacing:4.260000px;}
.ws116{word-spacing:4.272000px;}
.ws79{word-spacing:4.320000px;}
.ws102{word-spacing:4.368000px;}
.ws11{word-spacing:4.380000px;}
.ws3a{word-spacing:4.440000px;}
.ws21{word-spacing:4.500000px;}
.ws54{word-spacing:4.560000px;}
.wsfe{word-spacing:4.608000px;}
.ws15{word-spacing:4.620000px;}
.ws2e{word-spacing:4.680000px;}
.ws118{word-spacing:4.704000px;}
.ws13{word-spacing:4.740000px;}
.ws3d{word-spacing:4.800000px;}
.wsec{word-spacing:4.860000px;}
.ws11b{word-spacing:4.896000px;}
.ws1c{word-spacing:4.920000px;}
.ws10e{word-spacing:4.944000px;}
.ws90{word-spacing:4.980000px;}
.wse{word-spacing:5.040000px;}
.ws11a{word-spacing:5.088000px;}
.wsaf{word-spacing:5.100000px;}
.ws29{word-spacing:5.160000px;}
.ws65{word-spacing:5.220000px;}
.ws4a{word-spacing:5.280000px;}
.ws5c{word-spacing:5.340000px;}
.wseb{word-spacing:5.400000px;}
.ws10c{word-spacing:5.424000px;}
.wsce{word-spacing:5.460000px;}
.ws77{word-spacing:5.520000px;}
.wsd2{word-spacing:5.580000px;}
.ws69{word-spacing:5.700000px;}
.wse3{word-spacing:5.760000px;}
.ws3f{word-spacing:5.820000px;}
.ws8d{word-spacing:5.880000px;}
.ws120{word-spacing:5.904000px;}
.ws25{word-spacing:5.940000px;}
.ws62{word-spacing:6.000000px;}
.wsd1{word-spacing:6.060000px;}
.ws97{word-spacing:6.120000px;}
.ws17{word-spacing:6.180000px;}
.wsb4{word-spacing:6.192000px;}
.wsf8{word-spacing:6.240000px;}
.ws96{word-spacing:6.300000px;}
.ws10b{word-spacing:6.336000px;}
.ws5e{word-spacing:6.420000px;}
.wsfb{word-spacing:6.432000px;}
.wsf1{word-spacing:6.480000px;}
.ws92{word-spacing:6.540000px;}
.ws1d{word-spacing:6.600000px;}
.ws5d{word-spacing:6.660000px;}
.wsc1{word-spacing:6.720000px;}
.ws32{word-spacing:6.780000px;}
.ws9b{word-spacing:6.840000px;}
.ws31{word-spacing:6.900000px;}
.ws10d{word-spacing:6.912000px;}
.wsb8{word-spacing:6.960000px;}
.wsd9{word-spacing:7.020000px;}
.ws106{word-spacing:7.056000px;}
.ws50{word-spacing:7.080000px;}
.ws108{word-spacing:7.104000px;}
.ws57{word-spacing:7.140000px;}
.ws47{word-spacing:7.200000px;}
.ws6a{word-spacing:7.260000px;}
.ws61{word-spacing:7.320000px;}
.ws3e{word-spacing:7.380000px;}
.ws12{word-spacing:7.560000px;}
.ws93{word-spacing:7.620000px;}
.wsf{word-spacing:7.680000px;}
.ws1a{word-spacing:7.740000px;}
.wsfd{word-spacing:7.776000px;}
.ws8a{word-spacing:7.800000px;}
.wsc0{word-spacing:7.860000px;}
.ws76{word-spacing:7.920000px;}
.ws112{word-spacing:7.968000px;}
.ws46{word-spacing:8.040000px;}
.wscb{word-spacing:8.100000px;}
.ws2a{word-spacing:8.160000px;}
.ws4d{word-spacing:8.220000px;}
.ws5a{word-spacing:8.280000px;}
.ws6d{word-spacing:8.340000px;}
.ws66{word-spacing:8.400000px;}
.ws60{word-spacing:8.460000px;}
.wsba{word-spacing:8.520000px;}
.wse2{word-spacing:8.580000px;}
.ws88{word-spacing:8.640000px;}
.ws123{word-spacing:8.688000px;}
.ws6e{word-spacing:8.700000px;}
.ws9f{word-spacing:8.760000px;}
.ws121{word-spacing:8.784000px;}
.ws95{word-spacing:8.940000px;}
.ws4b{word-spacing:9.060000px;}
.wsd3{word-spacing:9.180000px;}
.wsb0{word-spacing:9.300000px;}
.wsdf{word-spacing:9.360000px;}
.ws2d{word-spacing:9.420000px;}
.ws9e{word-spacing:9.480000px;}
.ws87{word-spacing:9.540000px;}
.ws11e{word-spacing:9.552000px;}
.ws85{word-spacing:9.600000px;}
.ws5f{word-spacing:9.660000px;}
.ws64{word-spacing:9.720000px;}
.wsf0{word-spacing:9.780000px;}
.wsb6{word-spacing:9.840000px;}
.ws74{word-spacing:9.900000px;}
.ws81{word-spacing:10.020000px;}
.ws23{word-spacing:10.080000px;}
.wsf4{word-spacing:10.200000px;}
.ws27{word-spacing:10.260000px;}
.wsa0{word-spacing:10.320000px;}
.wsf3{word-spacing:10.380000px;}
.ws89{word-spacing:10.500000px;}
.ws8c{word-spacing:10.560000px;}
.wsee{word-spacing:10.680000px;}
.ws117{word-spacing:10.704000px;}
.wsd5{word-spacing:10.740000px;}
.ws9a{word-spacing:10.800000px;}
.wscf{word-spacing:10.920000px;}
.wsb1{word-spacing:11.040000px;}
.ws72{word-spacing:11.160000px;}
.ws125{word-spacing:11.424000px;}
.ws70{word-spacing:11.580000px;}
.wsb7{word-spacing:11.640000px;}
.wscd{word-spacing:11.700000px;}
.ws67{word-spacing:11.820000px;}
.wsc3{word-spacing:12.000000px;}
.ws73{word-spacing:12.180000px;}
.wsef{word-spacing:12.360000px;}
.ws7a{word-spacing:12.480000px;}
.ws59{word-spacing:12.540000px;}
.ws43{word-spacing:12.840000px;}
.ws63{word-spacing:12.960000px;}
.wsf5{word-spacing:13.680000px;}
.ws9d{word-spacing:13.920000px;}
.wsb9{word-spacing:14.040000px;}
.wsdc{word-spacing:14.460000px;}
.wscc{word-spacing:14.580000px;}
.ws7b{word-spacing:15.300000px;}
.wsca{word-spacing:16.464000px;}
.ws6f{word-spacing:16.620000px;}
.wsf7{word-spacing:17.700000px;}
.ws80{word-spacing:18.120000px;}
.ws16{word-spacing:19.668000px;}
.ws126{word-spacing:20.544000px;}
.wsea{word-spacing:21.060000px;}
.wsbd{word-spacing:31.320000px;}
.ws1e{word-spacing:73.056000px;}
.wsa3{word-spacing:95.856000px;}
.wsa4{word-spacing:105.936000px;}
.wsa5{word-spacing:106.656000px;}
.wsac{word-spacing:129.072000px;}
.wsab{word-spacing:141.168000px;}
.wsa7{word-spacing:143.856000px;}
.wsa8{word-spacing:165.504000px;}
.wsc8{word-spacing:211.536000px;}
.wsa2{word-spacing:230.208000px;}
.wsc5{word-spacing:235.536000px;}
.wsc7{word-spacing:279.119980px;}
.wsc4{word-spacing:290.303980px;}
.wsc6{word-spacing:321.024000px;}
.wsa6{word-spacing:345.024000px;}
.wse8{word-spacing:374.159995px;}
.wse9{word-spacing:483.503995px;}
.wse7{word-spacing:558.000000px;}
.wsaa{word-spacing:761.136000px;}
.wsa9{word-spacing:1120.847992px;}
.ws1f{word-spacing:1874.447937px;}
._33{margin-left:-22.848013px;}
._5{margin-left:-15.600000px;}
._29{margin-left:-12.546000px;}
._f{margin-left:-11.340000px;}
._5f{margin-left:-10.339237px;}
._c{margin-left:-9.326400px;}
._4d{margin-left:-7.342200px;}
._31{margin-left:-5.040000px;}
._1{margin-left:-3.892800px;}
._9{margin-left:-2.754000px;}
._0{margin-left:-1.632000px;}
._2{width:1.162200px;}
._b{width:2.250000px;}
._a{width:4.152000px;}
._4{width:5.706000px;}
._3{width:7.452000px;}
._10{width:8.725800px;}
._8{width:10.162800px;}
._11{width:12.144000px;}
._13{width:14.701200px;}
._38{width:16.860000px;}
._e{width:18.660000px;}
._6{width:22.320000px;}
._28{width:24.921601px;}
._4c{width:28.200000px;}
._12{width:30.000000px;}
._32{width:31.209601px;}
._d{width:33.000000px;}
._53{width:43.056000px;}
._58{width:45.279000px;}
._49{width:49.765800px;}
._7{width:56.255991px;}
._56{width:58.266000px;}
._40{width:70.896000px;}
._5e{width:93.873000px;}
._47{width:96.480000px;}
._50{width:113.373000px;}
._5c{width:122.688000px;}
._55{width:141.314991px;}
._4f{width:151.555791px;}
._2f{width:155.856000px;}
._2b{width:177.168000px;}
._34{width:178.224000px;}
._45{width:189.696000px;}
._51{width:192.894000px;}
._5a{width:195.313791px;}
._14{width:196.896000px;}
._57{width:211.418990px;}
._27{width:214.656000px;}
._5d{width:215.914198px;}
._1f{width:220.896000px;}
._19{width:229.295993px;}
._35{width:231.940800px;}
._5b{width:235.827007px;}
._3f{width:240.863995px;}
._1d{width:244.896000px;}
._1a{width:262.656000px;}
._17{width:266.208000px;}
._54{width:267.579000px;}
._59{width:270.246009px;}
._3d{width:281.520000px;}
._23{width:286.656000px;}
._37{width:291.119980px;}
._1b{width:292.896000px;}
._3e{width:298.224000px;}
._41{width:307.584000px;}
._46{width:310.608000px;}
._4e{width:319.009809px;}
._1c{width:334.607993px;}
._30{width:335.712000px;}
._36{width:342.240000px;}
._52{width:348.932990px;}
._3c{width:350.500800px;}
._21{width:353.568000px;}
._24{width:407.585993px;}
._15{width:444.096000px;}
._20{width:453.840000px;}
._18{width:460.597800px;}
._1e{width:489.666000px;}
._25{width:492.997800px;}
._4b{width:500.832000px;}
._42{width:512.400000px;}
._43{width:516.000001px;}
._39{width:522.930000px;}
._3b{width:526.289995px;}
._3a{width:531.618000px;}
._2e{width:536.927994px;}
._22{width:541.247993px;}
._44{width:542.544000px;}
._4a{width:558.816000px;}
._2c{width:571.968000px;}
._48{width:578.581800px;}
._26{width:605.183993px;}
._16{width:662.543993px;}
._2a{width:751.824000px;}
._2d{width:931.679993px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs9{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.ycb{bottom:90.000000px;}
.ycf{bottom:90.000002px;}
.yd0{bottom:90.000005px;}
.yd3{bottom:90.000007px;}
.yd4{bottom:90.000010px;}
.yd5{bottom:90.000012px;}
.yd6{bottom:90.000014px;}
.yd7{bottom:90.000017px;}
.yd8{bottom:90.000019px;}
.yd9{bottom:90.000021px;}
.ydc{bottom:90.000024px;}
.y1b8{bottom:90.000030px;}
.y17d{bottom:90.001211px;}
.y17e{bottom:90.001219px;}
.y186{bottom:90.001227px;}
.y187{bottom:90.001235px;}
.y191{bottom:90.001243px;}
.y197{bottom:90.001251px;}
.y19d{bottom:90.001258px;}
.y1a0{bottom:90.001266px;}
.y1a8{bottom:90.001274px;}
.y1be{bottom:90.009772px;}
.y1c1{bottom:90.019517px;}
.y1c5{bottom:90.029262px;}
.y1c9{bottom:90.039007px;}
.y1ca{bottom:90.048752px;}
.y1d0{bottom:90.058494px;}
.y1d4{bottom:90.068239px;}
.y1d7{bottom:90.077984px;}
.y1da{bottom:90.087730px;}
.yed{bottom:90.242102px;}
.y74{bottom:90.797516px;}
.y9c{bottom:90.797539px;}
.y8c{bottom:90.797562px;}
.y95{bottom:91.202516px;}
.y45{bottom:94.800000px;}
.y4{bottom:97.125005px;}
.y188{bottom:99.001235px;}
.y19e{bottom:99.001258px;}
.y1a9{bottom:99.001274px;}
.y103{bottom:101.396553px;}
.ybb{bottom:104.297516px;}
.yec{bottom:104.486102px;}
.y240{bottom:105.383516px;}
.y20a{bottom:106.034860px;}
.y15d{bottom:107.297516px;}
.y73{bottom:108.797516px;}
.y9b{bottom:108.797539px;}
.y8b{bottom:108.797562px;}
.y94{bottom:109.202516px;}
.y44{bottom:118.655998px;}
.yeb{bottom:118.730102px;}
.y102{bottom:119.396553px;}
.y1b0{bottom:119.618694px;}
.y23f{bottom:119.627516px;}
.y209{bottom:120.278860px;}
.yba{bottom:122.297516px;}
.y15c{bottom:125.297516px;}
.y72{bottom:126.797516px;}
.y9a{bottom:126.797539px;}
.y8a{bottom:126.797562px;}
.y93{bottom:127.202516px;}
.y1b9{bottom:132.217529px;}
.y1cb{bottom:132.266252px;}
.y43{bottom:132.899998px;}
.y23e{bottom:133.871516px;}
.y208{bottom:134.522860px;}
.y101{bottom:137.396553px;}
.y13c{bottom:138.047516px;}
.y21{bottom:139.264499px;}
.yb9{bottom:140.297516px;}
.y15b{bottom:143.297516px;}
.yfb{bottom:144.237007px;}
.y71{bottom:144.797516px;}
.y99{bottom:144.797539px;}
.y89{bottom:144.797562px;}
.y92{bottom:145.202516px;}
.y23d{bottom:148.115516px;}
.y207{bottom:148.766860px;}
.y100{bottom:155.396553px;}
.y1af{bottom:155.618855px;}
.y13b{bottom:156.047516px;}
.yb8{bottom:158.297516px;}
.y15a{bottom:161.297516px;}
.y23c{bottom:162.359516px;}
.yfa{bottom:162.465007px;}
.yd1{bottom:162.552005px;}
.yda{bottom:162.552021px;}
.ydd{bottom:162.552024px;}
.y70{bottom:162.797516px;}
.y98{bottom:162.797539px;}
.y88{bottom:162.797562px;}
.y206{bottom:163.010860px;}
.y91{bottom:163.202516px;}
.yff{bottom:173.396553px;}
.y13a{bottom:174.047516px;}
.y42{bottom:175.067093px;}
.yb7{bottom:176.297516px;}
.y23b{bottom:176.603516px;}
.y205{bottom:177.254860px;}
.y159{bottom:179.297516px;}
.yf9{bottom:180.609007px;}
.y6f{bottom:180.797516px;}
.y87{bottom:180.797562px;}
.y90{bottom:181.202516px;}
.y23a{bottom:190.847516px;}
.yfe{bottom:191.396553px;}
.y204{bottom:191.498860px;}
.y139{bottom:192.047516px;}
.y41{bottom:193.067093px;}
.yb6{bottom:194.297516px;}
.y18{bottom:196.933500px;}
.y158{bottom:197.297516px;}
.yf8{bottom:198.753007px;}
.y6e{bottom:198.797516px;}
.y97{bottom:198.797539px;}
.y86{bottom:198.797562px;}
.y8f{bottom:199.202516px;}
.y239{bottom:205.091516px;}
.y118{bottom:205.508560px;}
.y203{bottom:205.742860px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y138{bottom:210.047516px;}
.y40{bottom:211.067093px;}
.yb5{bottom:212.297516px;}
.y157{bottom:215.297516px;}
.y6d{bottom:216.797516px;}
.y85{bottom:216.797562px;}
.yf7{bottom:216.897007px;}
.yca{bottom:217.202516px;}
.y238{bottom:219.335516px;}
.y202{bottom:219.986860px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yfd{bottom:227.396553px;}
.y137{bottom:228.047516px;}
.y3f{bottom:229.067093px;}
.yb4{bottom:230.297516px;}
.y156{bottom:233.297516px;}
.y237{bottom:233.579516px;}
.y201{bottom:234.230860px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y6c{bottom:234.797516px;}
.y96{bottom:234.797539px;}
.y84{bottom:234.797562px;}
.yf6{bottom:235.041007px;}
.y8e{bottom:235.202516px;}
.y136{bottom:246.047516px;}
.y3e{bottom:247.067093px;}
.y236{bottom:247.823516px;}
.yb3{bottom:248.297516px;}
.y200{bottom:248.474860px;}
.y155{bottom:251.297516px;}
.y6b{bottom:252.797516px;}
.y83{bottom:252.797562px;}
.yf5{bottom:253.185007px;}
.yc9{bottom:253.202516px;}
.y17c{bottom:254.977203px;}
.y189{bottom:254.977235px;}
.y19f{bottom:254.977258px;}
.y1aa{bottom:254.977274px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y235{bottom:262.067516px;}
.y1ff{bottom:262.718860px;}
.yfc{bottom:263.396553px;}
.y17f{bottom:263.977219px;}
.y18a{bottom:263.977235px;}
.y1a1{bottom:263.977266px;}
.y135{bottom:264.047516px;}
.y3d{bottom:265.067093px;}
.yb2{bottom:266.297516px;}
.y154{bottom:269.297516px;}
.y1ba{bottom:269.400026px;}
.y1cc{bottom:269.448749px;}
.y6a{bottom:270.797516px;}
.y82{bottom:270.797562px;}
.yc8{bottom:271.202516px;}
.yf4{bottom:271.329007px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y234{bottom:276.311516px;}
.y1fe{bottom:276.962860px;}
.y1b1{bottom:278.399250px;}
.y134{bottom:282.047516px;}
.yb1{bottom:284.297516px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y153{bottom:287.297516px;}
.y69{bottom:288.797516px;}
.y81{bottom:288.797562px;}
.yc7{bottom:289.202516px;}
.yf3{bottom:289.473007px;}
.y233{bottom:290.555516px;}
.y1fd{bottom:291.206860px;}
.y133{bottom:300.047516px;}
.y3c{bottom:301.067093px;}
.yb0{bottom:302.297516px;}
.y232{bottom:304.799516px;}
.y152{bottom:305.297516px;}
.y1fc{bottom:305.450860px;}
.y68{bottom:306.797516px;}
.y80{bottom:306.797562px;}
.yc6{bottom:307.202516px;}
.yf2{bottom:307.617007px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y132{bottom:318.047516px;}
.y242{bottom:319.031516px;}
.y231{bottom:319.043516px;}
.y1fb{bottom:319.694860px;}
.yaf{bottom:320.297516px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y151{bottom:323.297516px;}
.y169{bottom:324.047516px;}
.y67{bottom:324.797516px;}
.y7f{bottom:324.797562px;}
.yc5{bottom:325.202516px;}
.y241{bottom:333.275516px;}
.y230{bottom:333.287516px;}
.y1fa{bottom:333.938860px;}
.y104{bottom:335.419052px;}
.yf1{bottom:335.613007px;}
.y131{bottom:336.047516px;}
.yae{bottom:338.297516px;}
.y150{bottom:341.297516px;}
.y1b2{bottom:341.988748px;}
.y168{bottom:342.047516px;}
.y66{bottom:342.797516px;}
.y7e{bottom:342.797562px;}
.yc4{bottom:343.202516px;}
.y22f{bottom:347.531516px;}
.yf{bottom:348.133500px;}
.y1f9{bottom:348.182860px;}
.y1b3{bottom:350.987998px;}
.y3b{bottom:355.067093px;}
.yad{bottom:356.297516px;}
.y14f{bottom:359.297516px;}
.yf0{bottom:359.457007px;}
.y167{bottom:360.047516px;}
.y65{bottom:360.797516px;}
.y7d{bottom:360.797562px;}
.yc3{bottom:361.202516px;}
.y22e{bottom:361.775516px;}
.y1f8{bottom:362.426860px;}
.y130{bottom:363.422516px;}
.yea{bottom:365.282096px;}
.yef{bottom:373.701007px;}
.yac{bottom:374.297516px;}
.y22d{bottom:376.019516px;}
.y1f7{bottom:376.670860px;}
.y14e{bottom:377.297516px;}
.y166{bottom:378.047516px;}
.y64{bottom:378.797516px;}
.y7c{bottom:378.797562px;}
.yc2{bottom:379.202516px;}
.ye9{bottom:379.526096px;}
.y12f{bottom:381.422516px;}
.ye{bottom:386.785499px;}
.yee{bottom:387.945007px;}
.y22c{bottom:390.263516px;}
.y1f6{bottom:390.914860px;}
.y3a{bottom:391.817093px;}
.yab{bottom:392.297516px;}
.ye8{bottom:393.770096px;}
.yd2{bottom:393.912005px;}
.ydb{bottom:393.912021px;}
.yde{bottom:393.912024px;}
.y14d{bottom:395.297516px;}
.y165{bottom:396.047516px;}
.y63{bottom:396.797516px;}
.y7b{bottom:396.797562px;}
.yc1{bottom:397.202516px;}
.y22b{bottom:404.507516px;}
.y1f5{bottom:405.158860px;}
.yd{bottom:408.044999px;}
.y12e{bottom:408.797516px;}
.y39{bottom:409.817093px;}
.yaa{bottom:410.297516px;}
.y14c{bottom:413.297516px;}
.y1b4{bottom:413.758498px;}
.y1bb{bottom:413.768276px;}
.y1c2{bottom:413.787767px;}
.y1c6{bottom:413.797512px;}
.y1cd{bottom:413.816999px;}
.y1d1{bottom:413.826744px;}
.y1db{bottom:413.855980px;}
.y164{bottom:414.047516px;}
.y62{bottom:414.797516px;}
.y7a{bottom:414.797562px;}
.yc0{bottom:415.202516px;}
.y180{bottom:418.681219px;}
.y18b{bottom:418.681235px;}
.y1a2{bottom:418.681266px;}
.y22a{bottom:418.751516px;}
.y1f4{bottom:419.402860px;}
.y12d{bottom:426.797516px;}
.y181{bottom:427.681219px;}
.y18c{bottom:427.681235px;}
.y192{bottom:427.681243px;}
.y198{bottom:427.681251px;}
.y1a3{bottom:427.681266px;}
.ya9{bottom:428.297516px;}
.y17b{bottom:431.297516px;}
.y163{bottom:432.047516px;}
.y61{bottom:432.797516px;}
.y79{bottom:432.797562px;}
.y229{bottom:432.995516px;}
.ybf{bottom:433.202516px;}
.y1f3{bottom:433.646860px;}
.y14b{bottom:440.672516px;}
.y12c{bottom:444.797516px;}
.ya8{bottom:446.297516px;}
.y38{bottom:446.567093px;}
.y228{bottom:447.239516px;}
.y1f2{bottom:447.890860px;}
.y162{bottom:450.047516px;}
.y60{bottom:450.797516px;}
.y78{bottom:450.797562px;}
.ybe{bottom:451.202516px;}
.y14a{bottom:458.672516px;}
.y227{bottom:461.483516px;}
.y1f1{bottom:462.134860px;}
.y12b{bottom:462.797516px;}
.ya7{bottom:464.297516px;}
.y37{bottom:464.567093px;}
.y161{bottom:468.047516px;}
.y5f{bottom:468.797516px;}
.ybd{bottom:469.202516px;}
.y226{bottom:475.727516px;}
.y1f0{bottom:476.378860px;}
.y149{bottom:476.672516px;}
.y12a{bottom:480.797516px;}
.ya6{bottom:482.297516px;}
.y36{bottom:482.567093px;}
.y160{bottom:486.047516px;}
.y5e{bottom:486.797516px;}
.y77{bottom:486.797562px;}
.y1ae{bottom:487.202516px;}
.y225{bottom:489.971516px;}
.y148{bottom:494.672516px;}
.y129{bottom:498.797516px;}
.ya5{bottom:500.297516px;}
.y35{bottom:500.567093px;}
.yc{bottom:502.864502px;}
.y15f{bottom:504.047516px;}
.y224{bottom:504.215516px;}
.y5d{bottom:504.797516px;}
.ybc{bottom:505.202516px;}
.y1ef{bottom:508.928833px;}
.y17a{bottom:512.672516px;}
.y128{bottom:516.797516px;}
.ya4{bottom:518.297516px;}
.y223{bottom:518.459516px;}
.y34{bottom:518.567093px;}
.yb{bottom:520.864502px;}
.y147{bottom:522.047516px;}
.y5c{bottom:522.797516px;}
.y76{bottom:522.797562px;}
.y1ad{bottom:523.202516px;}
.y179{bottom:530.672516px;}
.y222{bottom:532.703516px;}
.y127{bottom:534.797516px;}
.ya3{bottom:536.297516px;}
.y33{bottom:536.567093px;}
.ya{bottom:538.864499px;}
.y146{bottom:540.047516px;}
.y5b{bottom:540.797516px;}
.y1ac{bottom:541.202516px;}
.y221{bottom:546.947516px;}
.y178{bottom:548.672516px;}
.y126{bottom:552.797516px;}
.ya2{bottom:554.297516px;}
.y32{bottom:554.567093px;}
.y9{bottom:556.864499px;}
.y145{bottom:558.047516px;}
.y5a{bottom:558.797516px;}
.y1bc{bottom:559.599024px;}
.y1bf{bottom:559.608769px;}
.y1c3{bottom:559.618515px;}
.y1c7{bottom:559.628260px;}
.y1ce{bottom:559.647746px;}
.y1d2{bottom:559.657492px;}
.y1d5{bottom:559.667237px;}
.y1d8{bottom:559.676982px;}
.y1dc{bottom:559.686727px;}
.y220{bottom:561.191516px;}
.y177{bottom:566.672516px;}
.y1ee{bottom:571.655529px;}
.ya1{bottom:572.297516px;}
.y31{bottom:572.567093px;}
.y21f{bottom:575.435516px;}
.y144{bottom:576.047516px;}
.y59{bottom:576.797516px;}
.y1ab{bottom:577.202516px;}
.y125{bottom:580.172516px;}
.y182{bottom:584.557219px;}
.y18d{bottom:584.557235px;}
.y193{bottom:584.557243px;}
.y199{bottom:584.557251px;}
.y1a4{bottom:584.557266px;}
.y1ed{bottom:585.899529px;}
.y21e{bottom:589.679516px;}
.ya0{bottom:590.297516px;}
.y30{bottom:590.567093px;}
.y183{bottom:593.557219px;}
.y18e{bottom:593.557235px;}
.y194{bottom:593.557243px;}
.y19a{bottom:593.557251px;}
.y1a5{bottom:593.557266px;}
.y143{bottom:594.047516px;}
.y58{bottom:594.797516px;}
.y124{bottom:598.172516px;}
.y1ec{bottom:600.143529px;}
.y21d{bottom:603.923516px;}
.y9f{bottom:608.297516px;}
.y2f{bottom:608.567093px;}
.y10b{bottom:610.019525px;}
.y142{bottom:612.047516px;}
.y57{bottom:612.797516px;}
.y1eb{bottom:614.387529px;}
.y123{bottom:616.172516px;}
.y21c{bottom:618.167516px;}
.y15e{bottom:621.422516px;}
.y10a{bottom:624.263525px;}
.y9e{bottom:626.297516px;}
.y2e{bottom:626.567093px;}
.y1ea{bottom:628.631529px;}
.y176{bottom:630.047516px;}
.y56{bottom:630.797516px;}
.y21b{bottom:632.411516px;}
.y109{bottom:638.507525px;}
.y141{bottom:639.422516px;}
.ycc{bottom:642.539998px;}
.y1e9{bottom:642.875529px;}
.y122{bottom:643.547516px;}
.ye7{bottom:644.297516px;}
.y2d{bottom:644.567093px;}
.y8{bottom:645.510000px;}
.y21a{bottom:646.655516px;}
.y175{bottom:648.047516px;}
.y55{bottom:648.797516px;}
.y108{bottom:652.751525px;}
.y1e8{bottom:657.119529px;}
.y140{bottom:657.422516px;}
.y219{bottom:660.899516px;}
.y121{bottom:661.547516px;}
.y9d{bottom:662.297516px;}
.y2c{bottom:662.567093px;}
.y174{bottom:666.047516px;}
.y7{bottom:666.771000px;}
.y54{bottom:666.797516px;}
.y107{bottom:666.995525px;}
.y1e7{bottom:671.363529px;}
.y218{bottom:675.143516px;}
.y13f{bottom:675.422516px;}
.y120{bottom:679.547516px;}
.ye6{bottom:680.297516px;}
.y2b{bottom:680.567093px;}
.y173{bottom:684.047516px;}
.y53{bottom:684.797516px;}
.y1e6{bottom:685.607529px;}
.y217{bottom:689.387516px;}
.y117{bottom:691.590473px;}
.y13e{bottom:693.422516px;}
.y11f{bottom:697.547516px;}
.ye5{bottom:698.297516px;}
.y172{bottom:702.047516px;}
.y52{bottom:702.797516px;}
.y216{bottom:703.631516px;}
.y1bd{bottom:705.186024px;}
.y1c0{bottom:705.195769px;}
.y1c4{bottom:705.205515px;}
.y1c8{bottom:705.215260px;}
.y1cf{bottom:705.234746px;}
.y1d3{bottom:705.244492px;}
.y1d6{bottom:705.254237px;}
.y1d9{bottom:705.263982px;}
.y1dd{bottom:705.273727px;}
.y116{bottom:709.818473px;}
.y13d{bottom:711.422516px;}
.y1e5{bottom:714.107529px;}
.y1b5{bottom:714.175496px;}
.y11e{bottom:715.547516px;}
.ye4{bottom:716.297516px;}
.y215{bottom:717.875516px;}
.y171{bottom:720.047516px;}
.y51{bottom:720.797516px;}
.y6{bottom:726.298500px;}
.y115{bottom:727.962473px;}
.y2a{bottom:729.059696px;}
.y214{bottom:732.119516px;}
.y11d{bottom:733.547516px;}
.ye3{bottom:734.297516px;}
.y170{bottom:738.047516px;}
.y50{bottom:738.797516px;}
.y1e4{bottom:742.607529px;}
.y29{bottom:743.303696px;}
.y114{bottom:746.106473px;}
.y213{bottom:746.363516px;}
.y184{bottom:749.101218px;}
.y18f{bottom:749.101234px;}
.y195{bottom:749.101241px;}
.y19b{bottom:749.101249px;}
.y1a6{bottom:749.101265px;}
.y11c{bottom:751.547516px;}
.ye2{bottom:752.297516px;}
.y3{bottom:752.599495px;}
.ycd{bottom:754.199998px;}
.y16f{bottom:756.047516px;}
.y4f{bottom:756.797516px;}
.y185{bottom:758.101218px;}
.y190{bottom:758.101234px;}
.y196{bottom:758.101241px;}
.y19c{bottom:758.101249px;}
.y1a7{bottom:758.101265px;}
.y212{bottom:760.607516px;}
.y113{bottom:764.250473px;}
.y11b{bottom:769.547516px;}
.ye1{bottom:770.297516px;}
.y16e{bottom:774.047516px;}
.y4e{bottom:774.797516px;}
.y211{bottom:774.851516px;}
.y1e3{bottom:774.875516px;}
.y28{bottom:781.152191px;}
.y112{bottom:782.394473px;}
.y11a{bottom:787.547516px;}
.ye0{bottom:788.297516px;}
.y210{bottom:789.095516px;}
.y1e2{bottom:789.119516px;}
.y16d{bottom:792.047516px;}
.y4d{bottom:792.797516px;}
.y111{bottom:800.538473px;}
.y20f{bottom:803.339516px;}
.y1e1{bottom:803.363516px;}
.y4c{bottom:810.797516px;}
.y20e{bottom:817.583516px;}
.y110{bottom:818.682473px;}
.y16c{bottom:819.422516px;}
.y119{bottom:823.547516px;}
.y27{bottom:823.895529px;}
.ydf{bottom:824.297516px;}
.y1b6{bottom:827.343746px;}
.y4b{bottom:828.797516px;}
.y20d{bottom:831.827516px;}
.y1e0{bottom:831.839516px;}
.y1b7{bottom:836.342996px;}
.y10f{bottom:836.826473px;}
.y16b{bottom:837.422516px;}
.y20c{bottom:846.071516px;}
.y1df{bottom:846.083516px;}
.y26{bottom:846.398529px;}
.y4a{bottom:846.797516px;}
.y10e{bottom:854.970473px;}
.y16a{bottom:855.422516px;}
.yce{bottom:857.423998px;}
.y20b{bottom:860.315516px;}
.y49{bottom:864.797516px;}
.y1de{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y48{bottom:882.797516px;}
.y10d{bottom:882.978473px;}
.y106{bottom:888.803516px;}
.y10c{bottom:897.222473px;}
.y25{bottom:899.785217px;}
.y47{bottom:900.797516px;}
.y105{bottom:903.047516px;}
.y24{bottom:925.867084px;}
.y75{bottom:939.670349px;}
.y23{bottom:940.111084px;}
.y8d{bottom:940.626892px;}
.y46{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h7{height:32.130000px;}
.h13{height:32.289600px;}
.ha{height:33.840000px;}
.h16{height:37.479000px;}
.hb{height:42.048000px;}
.h6{height:45.900000px;}
.h12{height:46.128000px;}
.hc{height:46.704000px;}
.h3{height:48.195000px;}
.h17{height:49.104000px;}
.h15{height:53.640000px;}
.h2{height:55.080000px;}
.h10{height:57.660000px;}
.hf{height:59.340000px;}
.h14{height:61.380000px;}
.he{height:64.866000px;}
.h11{height:65.274000px;}
.hd{height:69.108000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w5{width:659.054993px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x8{left:77.598450px;}
.x7{left:80.907303px;}
.x3a{left:85.535402px;}
.x9{left:93.545402px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3b{left:107.855700px;}
.x20{left:116.738846px;}
.x3c{left:120.160200px;}
.x3d{left:136.618200px;}
.x22{left:138.121650px;}
.x3e{left:148.922700px;}
.x3f{left:161.227200px;}
.x23{left:166.129650px;}
.x40{left:177.704699px;}
.x24{left:184.273650px;}
.x41{left:190.009199px;}
.xb{left:197.350204px;}
.x25{left:198.517650px;}
.x42{left:202.313699px;}
.x4{left:203.484001px;}
.x26{left:212.761650px;}
.xc{left:218.733009px;}
.x27{left:226.981650px;}
.x43{left:231.085948px;}
.xd{left:232.977009px;}
.x44{left:243.390448px;}
.x28{left:245.125650px;}
.x1b{left:250.871401px;}
.x45{left:259.867947px;}
.xe{left:260.985009px;}
.x29{left:263.269650px;}
.x46{left:272.172447px;}
.x2a{left:277.513650px;}
.xf{left:279.129009px;}
.x47{left:284.476947px;}
.x2b{left:291.757650px;}
.x10{left:293.373009px;}
.x1c{left:301.162056px;}
.x2c{left:306.001650px;}
.x11{left:311.529009px;}
.x48{left:317.402696px;}
.x2d{left:320.221650px;}
.x12{left:329.673009px;}
.x2e{left:338.329650px;}
.x49{left:342.011696px;}
.x13{left:347.817009px;}
.x2f{left:352.573650px;}
.x4a{left:358.479445px;}
.x14{left:365.961009px;}
.x30{left:370.717650px;}
.x4b{left:383.088445px;}
.x15{left:384.105009px;}
.x4c{left:395.402695px;}
.x31{left:399.205650px;}
.x16{left:402.249009px;}
.x4d{left:411.860695px;}
.x32{left:413.437650px;}
.x1e{left:416.310898px;}
.x17{left:420.393009px;}
.x4e{left:424.165195px;}
.x33{left:431.569650px;}
.x18{left:434.637009px;}
.x4f{left:436.469695px;}
.x34{left:445.813650px;}
.x50{left:448.774195px;}
.x1d{left:450.149689px;}
.x19{left:452.865009px;}
.x3{left:454.959000px;}
.x35{left:463.969650px;}
.x51{left:465.232195px;}
.x1a{left:467.109009px;}
.x36{left:478.213650px;}
.x5{left:485.858414px;}
.x37{left:492.457650px;}
.x52{left:494.072695px;}
.x53{left:506.377195px;}
.x38{left:510.673650px;}
.x1f{left:513.090893px;}
.x39{left:524.917650px;}
.x54{left:529.480957px;}
.x55{left:547.480957px;}
.x21{left:551.102829px;}
.xa{left:565.420029px;}
@media print{
.v2{vertical-align:-17.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsa{letter-spacing:-3.584000pt;}
.ls6{letter-spacing:-1.621333pt;}
.ls5{letter-spacing:-1.408000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.938667pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls7{letter-spacing:1.066667pt;}
.ls1{letter-spacing:2.986667pt;}
.ls8{letter-spacing:220.032000pt;}
.ls4{letter-spacing:298.410667pt;}
.wsb5{word-spacing:-14.080000pt;}
.ws41{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.312000pt;}
.ws4f{word-spacing:-11.850667pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.773333pt;}
.wsa1{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws7f{word-spacing:-10.080000pt;}
.wsad{word-spacing:-9.045333pt;}
.wsf9{word-spacing:-8.666667pt;}
.ws2{word-spacing:-8.362667pt;}
.wsfa{word-spacing:-8.192000pt;}
.ws5{word-spacing:-7.728000pt;}
.ws8{word-spacing:-7.466667pt;}
.wsb3{word-spacing:-5.333333pt;}
.wsbe{word-spacing:-1.653333pt;}
.ws37{word-spacing:-1.280000pt;}
.wsd6{word-spacing:-1.120000pt;}
.ws18{word-spacing:-0.906667pt;}
.ws4e{word-spacing:-0.853333pt;}
.ws129{word-spacing:-0.810667pt;}
.wse4{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.746667pt;}
.wse5{word-spacing:-0.640000pt;}
.ws82{word-spacing:-0.533333pt;}
.ws38{word-spacing:-0.480000pt;}
.ws9{word-spacing:-0.426667pt;}
.ws9c{word-spacing:-0.373333pt;}
.wsfc{word-spacing:-0.341333pt;}
.wsda{word-spacing:-0.320000pt;}
.ws8f{word-spacing:-0.266667pt;}
.ws45{word-spacing:-0.213333pt;}
.ws122{word-spacing:-0.170667pt;}
.ws24{word-spacing:-0.160000pt;}
.wsd0{word-spacing:-0.106667pt;}
.wsb2{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws78{word-spacing:0.053333pt;}
.ws111{word-spacing:0.085333pt;}
.ws35{word-spacing:0.106667pt;}
.wse0{word-spacing:0.160000pt;}
.ws20{word-spacing:0.213333pt;}
.ws75{word-spacing:0.266667pt;}
.ws6c{word-spacing:0.320000pt;}
.wsf2{word-spacing:0.373333pt;}
.ws11c{word-spacing:0.426667pt;}
.wsff{word-spacing:0.469333pt;}
.ws33{word-spacing:0.480000pt;}
.ws83{word-spacing:0.533333pt;}
.wsd8{word-spacing:0.586667pt;}
.ws128{word-spacing:0.597333pt;}
.ws58{word-spacing:0.640000pt;}
.wsb{word-spacing:0.693333pt;}
.ws114{word-spacing:0.725333pt;}
.ws68{word-spacing:0.746667pt;}
.ws11d{word-spacing:0.768000pt;}
.wsd7{word-spacing:0.800000pt;}
.wsc2{word-spacing:0.853333pt;}
.ws30{word-spacing:0.906667pt;}
.ws2f{word-spacing:0.960000pt;}
.ws3b{word-spacing:1.013333pt;}
.ws48{word-spacing:1.066667pt;}
.ws10a{word-spacing:1.109333pt;}
.wsd{word-spacing:1.120000pt;}
.ws113{word-spacing:1.152000pt;}
.wsd4{word-spacing:1.173333pt;}
.ws103{word-spacing:1.194667pt;}
.ws94{word-spacing:1.226667pt;}
.ws11f{word-spacing:1.237333pt;}
.ws5b{word-spacing:1.280000pt;}
.wsbf{word-spacing:1.333333pt;}
.wsa{word-spacing:1.386667pt;}
.ws105{word-spacing:1.408000pt;}
.ws26{word-spacing:1.440000pt;}
.ws127{word-spacing:1.450667pt;}
.ws98{word-spacing:1.493333pt;}
.wsc9{word-spacing:1.536000pt;}
.ws8b{word-spacing:1.546667pt;}
.ws44{word-spacing:1.600000pt;}
.ws12a{word-spacing:1.621333pt;}
.ws53{word-spacing:1.653333pt;}
.ws19{word-spacing:1.706667pt;}
.ws86{word-spacing:1.760000pt;}
.wsc{word-spacing:1.813333pt;}
.ws10f{word-spacing:1.834667pt;}
.wsde{word-spacing:1.866667pt;}
.ws7d{word-spacing:1.920000pt;}
.ws39{word-spacing:1.973333pt;}
.ws42{word-spacing:2.026667pt;}
.ws119{word-spacing:2.048000pt;}
.ws14{word-spacing:2.080000pt;}
.ws12b{word-spacing:2.090667pt;}
.ws84{word-spacing:2.133333pt;}
.ws51{word-spacing:2.186667pt;}
.ws28{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.293333pt;}
.ws109{word-spacing:2.304000pt;}
.ws4c{word-spacing:2.346667pt;}
.wsdd{word-spacing:2.400000pt;}
.wsdb{word-spacing:2.453333pt;}
.ws91{word-spacing:2.506667pt;}
.wsed{word-spacing:2.560000pt;}
.ws6b{word-spacing:2.613333pt;}
.ws110{word-spacing:2.645333pt;}
.wse6{word-spacing:2.666667pt;}
.ws36{word-spacing:2.720000pt;}
.ws3c{word-spacing:2.773333pt;}
.ws55{word-spacing:2.826667pt;}
.ws104{word-spacing:2.858667pt;}
.wsf6{word-spacing:2.880000pt;}
.ws124{word-spacing:2.901333pt;}
.ws2c{word-spacing:2.933333pt;}
.ws40{word-spacing:2.986667pt;}
.ws115{word-spacing:3.029333pt;}
.ws71{word-spacing:3.040000pt;}
.ws101{word-spacing:3.072000pt;}
.ws49{word-spacing:3.093333pt;}
.wse1{word-spacing:3.146667pt;}
.ws99{word-spacing:3.200000pt;}
.ws56{word-spacing:3.253333pt;}
.ws107{word-spacing:3.285333pt;}
.ws7e{word-spacing:3.306667pt;}
.ws8e{word-spacing:3.360000pt;}
.ws52{word-spacing:3.413333pt;}
.ws22{word-spacing:3.466667pt;}
.wsae{word-spacing:3.520000pt;}
.ws7c{word-spacing:3.573333pt;}
.ws100{word-spacing:3.584000pt;}
.wsbb{word-spacing:3.626667pt;}
.ws2b{word-spacing:3.680000pt;}
.ws10{word-spacing:3.733333pt;}
.ws34{word-spacing:3.786667pt;}
.ws116{word-spacing:3.797333pt;}
.ws79{word-spacing:3.840000pt;}
.ws102{word-spacing:3.882667pt;}
.ws11{word-spacing:3.893333pt;}
.ws3a{word-spacing:3.946667pt;}
.ws21{word-spacing:4.000000pt;}
.ws54{word-spacing:4.053333pt;}
.wsfe{word-spacing:4.096000pt;}
.ws15{word-spacing:4.106667pt;}
.ws2e{word-spacing:4.160000pt;}
.ws118{word-spacing:4.181333pt;}
.ws13{word-spacing:4.213333pt;}
.ws3d{word-spacing:4.266667pt;}
.wsec{word-spacing:4.320000pt;}
.ws11b{word-spacing:4.352000pt;}
.ws1c{word-spacing:4.373333pt;}
.ws10e{word-spacing:4.394667pt;}
.ws90{word-spacing:4.426667pt;}
.wse{word-spacing:4.480000pt;}
.ws11a{word-spacing:4.522667pt;}
.wsaf{word-spacing:4.533333pt;}
.ws29{word-spacing:4.586667pt;}
.ws65{word-spacing:4.640000pt;}
.ws4a{word-spacing:4.693333pt;}
.ws5c{word-spacing:4.746667pt;}
.wseb{word-spacing:4.800000pt;}
.ws10c{word-spacing:4.821333pt;}
.wsce{word-spacing:4.853333pt;}
.ws77{word-spacing:4.906667pt;}
.wsd2{word-spacing:4.960000pt;}
.ws69{word-spacing:5.066667pt;}
.wse3{word-spacing:5.120000pt;}
.ws3f{word-spacing:5.173333pt;}
.ws8d{word-spacing:5.226667pt;}
.ws120{word-spacing:5.248000pt;}
.ws25{word-spacing:5.280000pt;}
.ws62{word-spacing:5.333333pt;}
.wsd1{word-spacing:5.386667pt;}
.ws97{word-spacing:5.440000pt;}
.ws17{word-spacing:5.493333pt;}
.wsb4{word-spacing:5.504000pt;}
.wsf8{word-spacing:5.546667pt;}
.ws96{word-spacing:5.600000pt;}
.ws10b{word-spacing:5.632000pt;}
.ws5e{word-spacing:5.706667pt;}
.wsfb{word-spacing:5.717333pt;}
.wsf1{word-spacing:5.760000pt;}
.ws92{word-spacing:5.813333pt;}
.ws1d{word-spacing:5.866667pt;}
.ws5d{word-spacing:5.920000pt;}
.wsc1{word-spacing:5.973333pt;}
.ws32{word-spacing:6.026667pt;}
.ws9b{word-spacing:6.080000pt;}
.ws31{word-spacing:6.133333pt;}
.ws10d{word-spacing:6.144000pt;}
.wsb8{word-spacing:6.186667pt;}
.wsd9{word-spacing:6.240000pt;}
.ws106{word-spacing:6.272000pt;}
.ws50{word-spacing:6.293333pt;}
.ws108{word-spacing:6.314667pt;}
.ws57{word-spacing:6.346667pt;}
.ws47{word-spacing:6.400000pt;}
.ws6a{word-spacing:6.453333pt;}
.ws61{word-spacing:6.506667pt;}
.ws3e{word-spacing:6.560000pt;}
.ws12{word-spacing:6.720000pt;}
.ws93{word-spacing:6.773333pt;}
.wsf{word-spacing:6.826667pt;}
.ws1a{word-spacing:6.880000pt;}
.wsfd{word-spacing:6.912000pt;}
.ws8a{word-spacing:6.933333pt;}
.wsc0{word-spacing:6.986667pt;}
.ws76{word-spacing:7.040000pt;}
.ws112{word-spacing:7.082667pt;}
.ws46{word-spacing:7.146667pt;}
.wscb{word-spacing:7.200000pt;}
.ws2a{word-spacing:7.253333pt;}
.ws4d{word-spacing:7.306667pt;}
.ws5a{word-spacing:7.360000pt;}
.ws6d{word-spacing:7.413333pt;}
.ws66{word-spacing:7.466667pt;}
.ws60{word-spacing:7.520000pt;}
.wsba{word-spacing:7.573333pt;}
.wse2{word-spacing:7.626667pt;}
.ws88{word-spacing:7.680000pt;}
.ws123{word-spacing:7.722667pt;}
.ws6e{word-spacing:7.733333pt;}
.ws9f{word-spacing:7.786667pt;}
.ws121{word-spacing:7.808000pt;}
.ws95{word-spacing:7.946667pt;}
.ws4b{word-spacing:8.053333pt;}
.wsd3{word-spacing:8.160000pt;}
.wsb0{word-spacing:8.266667pt;}
.wsdf{word-spacing:8.320000pt;}
.ws2d{word-spacing:8.373333pt;}
.ws9e{word-spacing:8.426667pt;}
.ws87{word-spacing:8.480000pt;}
.ws11e{word-spacing:8.490667pt;}
.ws85{word-spacing:8.533333pt;}
.ws5f{word-spacing:8.586667pt;}
.ws64{word-spacing:8.640000pt;}
.wsf0{word-spacing:8.693333pt;}
.wsb6{word-spacing:8.746667pt;}
.ws74{word-spacing:8.800000pt;}
.ws81{word-spacing:8.906667pt;}
.ws23{word-spacing:8.960000pt;}
.wsf4{word-spacing:9.066667pt;}
.ws27{word-spacing:9.120000pt;}
.wsa0{word-spacing:9.173333pt;}
.wsf3{word-spacing:9.226667pt;}
.ws89{word-spacing:9.333333pt;}
.ws8c{word-spacing:9.386667pt;}
.wsee{word-spacing:9.493333pt;}
.ws117{word-spacing:9.514667pt;}
.wsd5{word-spacing:9.546667pt;}
.ws9a{word-spacing:9.600000pt;}
.wscf{word-spacing:9.706667pt;}
.wsb1{word-spacing:9.813333pt;}
.ws72{word-spacing:9.920000pt;}
.ws125{word-spacing:10.154667pt;}
.ws70{word-spacing:10.293333pt;}
.wsb7{word-spacing:10.346667pt;}
.wscd{word-spacing:10.400000pt;}
.ws67{word-spacing:10.506667pt;}
.wsc3{word-spacing:10.666667pt;}
.ws73{word-spacing:10.826667pt;}
.wsef{word-spacing:10.986667pt;}
.ws7a{word-spacing:11.093333pt;}
.ws59{word-spacing:11.146667pt;}
.ws43{word-spacing:11.413333pt;}
.ws63{word-spacing:11.520000pt;}
.wsf5{word-spacing:12.160000pt;}
.ws9d{word-spacing:12.373333pt;}
.wsb9{word-spacing:12.480000pt;}
.wsdc{word-spacing:12.853333pt;}
.wscc{word-spacing:12.960000pt;}
.ws7b{word-spacing:13.600000pt;}
.wsca{word-spacing:14.634667pt;}
.ws6f{word-spacing:14.773333pt;}
.wsf7{word-spacing:15.733333pt;}
.ws80{word-spacing:16.106667pt;}
.ws16{word-spacing:17.482667pt;}
.ws126{word-spacing:18.261333pt;}
.wsea{word-spacing:18.720000pt;}
.wsbd{word-spacing:27.840000pt;}
.ws1e{word-spacing:64.938667pt;}
.wsa3{word-spacing:85.205333pt;}
.wsa4{word-spacing:94.165333pt;}
.wsa5{word-spacing:94.805333pt;}
.wsac{word-spacing:114.730667pt;}
.wsab{word-spacing:125.482667pt;}
.wsa7{word-spacing:127.872000pt;}
.wsa8{word-spacing:147.114667pt;}
.wsc8{word-spacing:188.032000pt;}
.wsa2{word-spacing:204.629333pt;}
.wsc5{word-spacing:209.365333pt;}
.wsc7{word-spacing:248.106649pt;}
.wsc4{word-spacing:258.047982pt;}
.wsc6{word-spacing:285.354667pt;}
.wsa6{word-spacing:306.688000pt;}
.wse8{word-spacing:332.586662pt;}
.wse9{word-spacing:429.781329pt;}
.wse7{word-spacing:496.000000pt;}
.wsaa{word-spacing:676.565333pt;}
.wsa9{word-spacing:996.309326pt;}
.ws1f{word-spacing:1666.175944pt;}
._33{margin-left:-20.309345pt;}
._5{margin-left:-13.866667pt;}
._29{margin-left:-11.152000pt;}
._f{margin-left:-10.080000pt;}
._5f{margin-left:-9.190433pt;}
._c{margin-left:-8.290133pt;}
._4d{margin-left:-6.526400pt;}
._31{margin-left:-4.480000pt;}
._1{margin-left:-3.460267pt;}
._9{margin-left:-2.448000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.033067pt;}
._b{width:2.000000pt;}
._a{width:3.690667pt;}
._4{width:5.072000pt;}
._3{width:6.624000pt;}
._10{width:7.756267pt;}
._8{width:9.033600pt;}
._11{width:10.794666pt;}
._13{width:13.067733pt;}
._38{width:14.986667pt;}
._e{width:16.586667pt;}
._6{width:19.840000pt;}
._28{width:22.152534pt;}
._4c{width:25.066667pt;}
._12{width:26.666667pt;}
._32{width:27.741867pt;}
._d{width:29.333333pt;}
._53{width:38.272000pt;}
._58{width:40.248000pt;}
._49{width:44.236267pt;}
._7{width:50.005325pt;}
._56{width:51.792000pt;}
._40{width:63.018667pt;}
._5e{width:83.442667pt;}
._47{width:85.760000pt;}
._50{width:100.776000pt;}
._5c{width:109.056000pt;}
._55{width:125.613326pt;}
._4f{width:134.716259pt;}
._2f{width:138.538667pt;}
._2b{width:157.482667pt;}
._34{width:158.421333pt;}
._45{width:168.618667pt;}
._51{width:171.461333pt;}
._5a{width:173.612259pt;}
._14{width:175.018667pt;}
._57{width:187.927991pt;}
._27{width:190.805333pt;}
._5d{width:191.923732pt;}
._1f{width:196.352000pt;}
._19{width:203.818661pt;}
._35{width:206.169600pt;}
._5b{width:209.624006pt;}
._3f{width:214.101329pt;}
._1d{width:217.685333pt;}
._1a{width:233.472000pt;}
._17{width:236.629333pt;}
._54{width:237.848000pt;}
._59{width:240.218675pt;}
._3d{width:250.240000pt;}
._23{width:254.805333pt;}
._37{width:258.773315pt;}
._1b{width:260.352000pt;}
._3e{width:265.088000pt;}
._41{width:273.408000pt;}
._46{width:276.096000pt;}
._4e{width:283.564275pt;}
._1c{width:297.429327pt;}
._30{width:298.410667pt;}
._36{width:304.213333pt;}
._52{width:310.162657pt;}
._3c{width:311.556267pt;}
._21{width:314.282667pt;}
._24{width:362.298661pt;}
._15{width:394.752000pt;}
._20{width:403.413333pt;}
._18{width:409.420267pt;}
._1e{width:435.258667pt;}
._25{width:438.220267pt;}
._4b{width:445.184000pt;}
._42{width:455.466667pt;}
._43{width:458.666668pt;}
._39{width:464.826667pt;}
._3b{width:467.813329pt;}
._3a{width:472.549333pt;}
._2e{width:477.269328pt;}
._22{width:481.109327pt;}
._44{width:482.261333pt;}
._4a{width:496.725333pt;}
._2c{width:508.416000pt;}
._48{width:514.294933pt;}
._26{width:537.941327pt;}
._16{width:588.927994pt;}
._2a{width:668.288000pt;}
._2d{width:828.159993pt;}
.fs8{font-size:29.866667pt;}
.fs9{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.ycb{bottom:80.000000pt;}
.ycf{bottom:80.000002pt;}
.yd0{bottom:80.000004pt;}
.yd3{bottom:80.000006pt;}
.yd4{bottom:80.000008pt;}
.yd5{bottom:80.000011pt;}
.yd6{bottom:80.000013pt;}
.yd7{bottom:80.000015pt;}
.yd8{bottom:80.000017pt;}
.yd9{bottom:80.000019pt;}
.ydc{bottom:80.000021pt;}
.y1b8{bottom:80.000027pt;}
.y17d{bottom:80.001077pt;}
.y17e{bottom:80.001084pt;}
.y186{bottom:80.001091pt;}
.y187{bottom:80.001098pt;}
.y191{bottom:80.001105pt;}
.y197{bottom:80.001112pt;}
.y19d{bottom:80.001119pt;}
.y1a0{bottom:80.001126pt;}
.y1a8{bottom:80.001133pt;}
.y1be{bottom:80.008686pt;}
.y1c1{bottom:80.017348pt;}
.y1c5{bottom:80.026011pt;}
.y1c9{bottom:80.034673pt;}
.y1ca{bottom:80.043336pt;}
.y1d0{bottom:80.051995pt;}
.y1d4{bottom:80.060657pt;}
.y1d7{bottom:80.069319pt;}
.y1da{bottom:80.077982pt;}
.yed{bottom:80.215201pt;}
.y74{bottom:80.708903pt;}
.y9c{bottom:80.708923pt;}
.y8c{bottom:80.708944pt;}
.y95{bottom:81.068903pt;}
.y45{bottom:84.266667pt;}
.y4{bottom:86.333337pt;}
.y188{bottom:88.001098pt;}
.y19e{bottom:88.001119pt;}
.y1a9{bottom:88.001133pt;}
.y103{bottom:90.130269pt;}
.ybb{bottom:92.708903pt;}
.yec{bottom:92.876535pt;}
.y240{bottom:93.674236pt;}
.y20a{bottom:94.253209pt;}
.y15d{bottom:95.375570pt;}
.y73{bottom:96.708903pt;}
.y9b{bottom:96.708923pt;}
.y8b{bottom:96.708944pt;}
.y94{bottom:97.068903pt;}
.y44{bottom:105.471998pt;}
.yeb{bottom:105.537868pt;}
.y102{bottom:106.130269pt;}
.y1b0{bottom:106.327728pt;}
.y23f{bottom:106.335570pt;}
.y209{bottom:106.914543pt;}
.yba{bottom:108.708903pt;}
.y15c{bottom:111.375570pt;}
.y72{bottom:112.708903pt;}
.y9a{bottom:112.708923pt;}
.y8a{bottom:112.708944pt;}
.y93{bottom:113.068903pt;}
.y1b9{bottom:117.526693pt;}
.y1cb{bottom:117.570001pt;}
.y43{bottom:118.133331pt;}
.y23e{bottom:118.996903pt;}
.y208{bottom:119.575876pt;}
.y101{bottom:122.130269pt;}
.y13c{bottom:122.708903pt;}
.y21{bottom:123.790666pt;}
.yb9{bottom:124.708903pt;}
.y15b{bottom:127.375570pt;}
.yfb{bottom:128.210673pt;}
.y71{bottom:128.708903pt;}
.y99{bottom:128.708923pt;}
.y89{bottom:128.708944pt;}
.y92{bottom:129.068903pt;}
.y23d{bottom:131.658236pt;}
.y207{bottom:132.237209pt;}
.y100{bottom:138.130269pt;}
.y1af{bottom:138.327871pt;}
.y13b{bottom:138.708903pt;}
.yb8{bottom:140.708903pt;}
.y15a{bottom:143.375570pt;}
.y23c{bottom:144.319570pt;}
.yfa{bottom:144.413340pt;}
.yd1{bottom:144.490671pt;}
.yda{bottom:144.490686pt;}
.ydd{bottom:144.490688pt;}
.y70{bottom:144.708903pt;}
.y98{bottom:144.708923pt;}
.y88{bottom:144.708944pt;}
.y206{bottom:144.898543pt;}
.y91{bottom:145.068903pt;}
.yff{bottom:154.130269pt;}
.y13a{bottom:154.708903pt;}
.y42{bottom:155.615194pt;}
.yb7{bottom:156.708903pt;}
.y23b{bottom:156.980903pt;}
.y205{bottom:157.559876pt;}
.y159{bottom:159.375570pt;}
.yf9{bottom:160.541340pt;}
.y6f{bottom:160.708903pt;}
.y87{bottom:160.708944pt;}
.y90{bottom:161.068903pt;}
.y23a{bottom:169.642236pt;}
.yfe{bottom:170.130269pt;}
.y204{bottom:170.221209pt;}
.y139{bottom:170.708903pt;}
.y41{bottom:171.615194pt;}
.yb6{bottom:172.708903pt;}
.y18{bottom:175.052000pt;}
.y158{bottom:175.375570pt;}
.yf8{bottom:176.669340pt;}
.y6e{bottom:176.708903pt;}
.y97{bottom:176.708923pt;}
.y86{bottom:176.708944pt;}
.y8f{bottom:177.068903pt;}
.y239{bottom:182.303570pt;}
.y118{bottom:182.674276pt;}
.y203{bottom:182.882543pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y138{bottom:186.708903pt;}
.y40{bottom:187.615194pt;}
.yb5{bottom:188.708903pt;}
.y157{bottom:191.375570pt;}
.y6d{bottom:192.708903pt;}
.y85{bottom:192.708944pt;}
.yf7{bottom:192.797340pt;}
.yca{bottom:193.068903pt;}
.y238{bottom:194.964903pt;}
.y202{bottom:195.543876pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yfd{bottom:202.130269pt;}
.y137{bottom:202.708903pt;}
.y3f{bottom:203.615194pt;}
.yb4{bottom:204.708903pt;}
.y156{bottom:207.375570pt;}
.y237{bottom:207.626236pt;}
.y201{bottom:208.205209pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y6c{bottom:208.708903pt;}
.y96{bottom:208.708923pt;}
.y84{bottom:208.708944pt;}
.yf6{bottom:208.925340pt;}
.y8e{bottom:209.068903pt;}
.y136{bottom:218.708903pt;}
.y3e{bottom:219.615194pt;}
.y236{bottom:220.287570pt;}
.yb3{bottom:220.708903pt;}
.y200{bottom:220.866543pt;}
.y155{bottom:223.375570pt;}
.y6b{bottom:224.708903pt;}
.y83{bottom:224.708944pt;}
.yf5{bottom:225.053340pt;}
.yc9{bottom:225.068903pt;}
.y17c{bottom:226.646403pt;}
.y189{bottom:226.646431pt;}
.y19f{bottom:226.646452pt;}
.y1aa{bottom:226.646466pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y235{bottom:232.948903pt;}
.y1ff{bottom:233.527876pt;}
.yfc{bottom:234.130269pt;}
.y17f{bottom:234.646417pt;}
.y18a{bottom:234.646431pt;}
.y1a1{bottom:234.646459pt;}
.y135{bottom:234.708903pt;}
.y3d{bottom:235.615194pt;}
.yb2{bottom:236.708903pt;}
.y154{bottom:239.375570pt;}
.y1ba{bottom:239.466690pt;}
.y1cc{bottom:239.509999pt;}
.y6a{bottom:240.708903pt;}
.y82{bottom:240.708944pt;}
.yc8{bottom:241.068903pt;}
.yf4{bottom:241.181340pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y234{bottom:245.610236pt;}
.y1fe{bottom:246.189209pt;}
.y1b1{bottom:247.466000pt;}
.y134{bottom:250.708903pt;}
.yb1{bottom:252.708903pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y153{bottom:255.375570pt;}
.y69{bottom:256.708903pt;}
.y81{bottom:256.708944pt;}
.yc7{bottom:257.068903pt;}
.yf3{bottom:257.309340pt;}
.y233{bottom:258.271570pt;}
.y1fd{bottom:258.850543pt;}
.y133{bottom:266.708903pt;}
.y3c{bottom:267.615194pt;}
.yb0{bottom:268.708903pt;}
.y232{bottom:270.932903pt;}
.y152{bottom:271.375570pt;}
.y1fc{bottom:271.511876pt;}
.y68{bottom:272.708903pt;}
.y80{bottom:272.708944pt;}
.yc6{bottom:273.068903pt;}
.yf2{bottom:273.437340pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y132{bottom:282.708903pt;}
.y242{bottom:283.583570pt;}
.y231{bottom:283.594236pt;}
.y1fb{bottom:284.173209pt;}
.yaf{bottom:284.708903pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y151{bottom:287.375570pt;}
.y169{bottom:288.042236pt;}
.y67{bottom:288.708903pt;}
.y7f{bottom:288.708944pt;}
.yc5{bottom:289.068903pt;}
.y241{bottom:296.244903pt;}
.y230{bottom:296.255570pt;}
.y1fa{bottom:296.834543pt;}
.y104{bottom:298.150269pt;}
.yf1{bottom:298.322673pt;}
.y131{bottom:298.708903pt;}
.yae{bottom:300.708903pt;}
.y150{bottom:303.375570pt;}
.y1b2{bottom:303.989999pt;}
.y168{bottom:304.042236pt;}
.y66{bottom:304.708903pt;}
.y7e{bottom:304.708944pt;}
.yc4{bottom:305.068903pt;}
.y22f{bottom:308.916903pt;}
.yf{bottom:309.452000pt;}
.y1f9{bottom:309.495876pt;}
.y1b3{bottom:311.989332pt;}
.y3b{bottom:315.615194pt;}
.yad{bottom:316.708903pt;}
.y14f{bottom:319.375570pt;}
.yf0{bottom:319.517340pt;}
.y167{bottom:320.042236pt;}
.y65{bottom:320.708903pt;}
.y7d{bottom:320.708944pt;}
.yc3{bottom:321.068903pt;}
.y22e{bottom:321.578236pt;}
.y1f8{bottom:322.157209pt;}
.y130{bottom:323.042236pt;}
.yea{bottom:324.695196pt;}
.yef{bottom:332.178673pt;}
.yac{bottom:332.708903pt;}
.y22d{bottom:334.239570pt;}
.y1f7{bottom:334.818543pt;}
.y14e{bottom:335.375570pt;}
.y166{bottom:336.042236pt;}
.y64{bottom:336.708903pt;}
.y7c{bottom:336.708944pt;}
.yc2{bottom:337.068903pt;}
.ye9{bottom:337.356530pt;}
.y12f{bottom:339.042236pt;}
.ye{bottom:343.809333pt;}
.yee{bottom:344.840007pt;}
.y22c{bottom:346.900903pt;}
.y1f6{bottom:347.479876pt;}
.y3a{bottom:348.281860pt;}
.yab{bottom:348.708903pt;}
.ye8{bottom:350.017863pt;}
.yd2{bottom:350.144004pt;}
.ydb{bottom:350.144019pt;}
.yde{bottom:350.144021pt;}
.y14d{bottom:351.375570pt;}
.y165{bottom:352.042236pt;}
.y63{bottom:352.708903pt;}
.y7b{bottom:352.708944pt;}
.yc1{bottom:353.068903pt;}
.y22b{bottom:359.562236pt;}
.y1f5{bottom:360.141209pt;}
.yd{bottom:362.706666pt;}
.y12e{bottom:363.375570pt;}
.y39{bottom:364.281860pt;}
.yaa{bottom:364.708903pt;}
.y14c{bottom:367.375570pt;}
.y1b4{bottom:367.785332pt;}
.y1bb{bottom:367.794023pt;}
.y1c2{bottom:367.811348pt;}
.y1c6{bottom:367.820011pt;}
.y1cd{bottom:367.837332pt;}
.y1d1{bottom:367.845995pt;}
.y1db{bottom:367.871982pt;}
.y164{bottom:368.042236pt;}
.y62{bottom:368.708903pt;}
.y7a{bottom:368.708944pt;}
.yc0{bottom:369.068903pt;}
.y180{bottom:372.161084pt;}
.y18b{bottom:372.161098pt;}
.y1a2{bottom:372.161126pt;}
.y22a{bottom:372.223570pt;}
.y1f4{bottom:372.802543pt;}
.y12d{bottom:379.375570pt;}
.y181{bottom:380.161084pt;}
.y18c{bottom:380.161098pt;}
.y192{bottom:380.161105pt;}
.y198{bottom:380.161112pt;}
.y1a3{bottom:380.161126pt;}
.ya9{bottom:380.708903pt;}
.y17b{bottom:383.375570pt;}
.y163{bottom:384.042236pt;}
.y61{bottom:384.708903pt;}
.y79{bottom:384.708944pt;}
.y229{bottom:384.884903pt;}
.ybf{bottom:385.068903pt;}
.y1f3{bottom:385.463876pt;}
.y14b{bottom:391.708903pt;}
.y12c{bottom:395.375570pt;}
.ya8{bottom:396.708903pt;}
.y38{bottom:396.948527pt;}
.y228{bottom:397.546236pt;}
.y1f2{bottom:398.125209pt;}
.y162{bottom:400.042236pt;}
.y60{bottom:400.708903pt;}
.y78{bottom:400.708944pt;}
.ybe{bottom:401.068903pt;}
.y14a{bottom:407.708903pt;}
.y227{bottom:410.207570pt;}
.y1f1{bottom:410.786543pt;}
.y12b{bottom:411.375570pt;}
.ya7{bottom:412.708903pt;}
.y37{bottom:412.948527pt;}
.y161{bottom:416.042236pt;}
.y5f{bottom:416.708903pt;}
.ybd{bottom:417.068903pt;}
.y226{bottom:422.868903pt;}
.y1f0{bottom:423.447876pt;}
.y149{bottom:423.708903pt;}
.y12a{bottom:427.375570pt;}
.ya6{bottom:428.708903pt;}
.y36{bottom:428.948527pt;}
.y160{bottom:432.042236pt;}
.y5e{bottom:432.708903pt;}
.y77{bottom:432.708944pt;}
.y1ae{bottom:433.068903pt;}
.y225{bottom:435.530236pt;}
.y148{bottom:439.708903pt;}
.y129{bottom:443.375570pt;}
.ya5{bottom:444.708903pt;}
.y35{bottom:444.948527pt;}
.yc{bottom:446.990669pt;}
.y15f{bottom:448.042236pt;}
.y224{bottom:448.191570pt;}
.y5d{bottom:448.708903pt;}
.ybc{bottom:449.068903pt;}
.y1ef{bottom:452.381185pt;}
.y17a{bottom:455.708903pt;}
.y128{bottom:459.375570pt;}
.ya4{bottom:460.708903pt;}
.y223{bottom:460.852903pt;}
.y34{bottom:460.948527pt;}
.yb{bottom:462.990669pt;}
.y147{bottom:464.042236pt;}
.y5c{bottom:464.708903pt;}
.y76{bottom:464.708944pt;}
.y1ad{bottom:465.068903pt;}
.y179{bottom:471.708903pt;}
.y222{bottom:473.514236pt;}
.y127{bottom:475.375570pt;}
.ya3{bottom:476.708903pt;}
.y33{bottom:476.948527pt;}
.ya{bottom:478.990666pt;}
.y146{bottom:480.042236pt;}
.y5b{bottom:480.708903pt;}
.y1ac{bottom:481.068903pt;}
.y221{bottom:486.175570pt;}
.y178{bottom:487.708903pt;}
.y126{bottom:491.375570pt;}
.ya2{bottom:492.708903pt;}
.y32{bottom:492.948527pt;}
.y9{bottom:494.990666pt;}
.y145{bottom:496.042236pt;}
.y5a{bottom:496.708903pt;}
.y1bc{bottom:497.421355pt;}
.y1bf{bottom:497.430017pt;}
.y1c3{bottom:497.438680pt;}
.y1c7{bottom:497.447342pt;}
.y1ce{bottom:497.464664pt;}
.y1d2{bottom:497.473326pt;}
.y1d5{bottom:497.481988pt;}
.y1d8{bottom:497.490651pt;}
.y1dc{bottom:497.499313pt;}
.y220{bottom:498.836903pt;}
.y177{bottom:503.708903pt;}
.y1ee{bottom:508.138248pt;}
.ya1{bottom:508.708903pt;}
.y31{bottom:508.948527pt;}
.y21f{bottom:511.498236pt;}
.y144{bottom:512.042236pt;}
.y59{bottom:512.708903pt;}
.y1ab{bottom:513.068903pt;}
.y125{bottom:515.708903pt;}
.y182{bottom:519.606417pt;}
.y18d{bottom:519.606431pt;}
.y193{bottom:519.606438pt;}
.y199{bottom:519.606445pt;}
.y1a4{bottom:519.606459pt;}
.y1ed{bottom:520.799581pt;}
.y21e{bottom:524.159570pt;}
.ya0{bottom:524.708903pt;}
.y30{bottom:524.948527pt;}
.y183{bottom:527.606417pt;}
.y18e{bottom:527.606431pt;}
.y194{bottom:527.606438pt;}
.y19a{bottom:527.606445pt;}
.y1a5{bottom:527.606459pt;}
.y143{bottom:528.042236pt;}
.y58{bottom:528.708903pt;}
.y124{bottom:531.708903pt;}
.y1ec{bottom:533.460914pt;}
.y21d{bottom:536.820903pt;}
.y9f{bottom:540.708903pt;}
.y2f{bottom:540.948527pt;}
.y10b{bottom:542.239578pt;}
.y142{bottom:544.042236pt;}
.y57{bottom:544.708903pt;}
.y1eb{bottom:546.122248pt;}
.y123{bottom:547.708903pt;}
.y21c{bottom:549.482236pt;}
.y15e{bottom:552.375570pt;}
.y10a{bottom:554.900911pt;}
.y9e{bottom:556.708903pt;}
.y2e{bottom:556.948527pt;}
.y1ea{bottom:558.783581pt;}
.y176{bottom:560.042236pt;}
.y56{bottom:560.708903pt;}
.y21b{bottom:562.143570pt;}
.y109{bottom:567.562244pt;}
.y141{bottom:568.375570pt;}
.ycc{bottom:571.146665pt;}
.y1e9{bottom:571.444914pt;}
.y122{bottom:572.042236pt;}
.ye7{bottom:572.708903pt;}
.y2d{bottom:572.948527pt;}
.y8{bottom:573.786667pt;}
.y21a{bottom:574.804903pt;}
.y175{bottom:576.042236pt;}
.y55{bottom:576.708903pt;}
.y108{bottom:580.223578pt;}
.y1e8{bottom:584.106248pt;}
.y140{bottom:584.375570pt;}
.y219{bottom:587.466236pt;}
.y121{bottom:588.042236pt;}
.y9d{bottom:588.708903pt;}
.y2c{bottom:588.948527pt;}
.y174{bottom:592.042236pt;}
.y7{bottom:592.685334pt;}
.y54{bottom:592.708903pt;}
.y107{bottom:592.884911pt;}
.y1e7{bottom:596.767581pt;}
.y218{bottom:600.127570pt;}
.y13f{bottom:600.375570pt;}
.y120{bottom:604.042236pt;}
.ye6{bottom:604.708903pt;}
.y2b{bottom:604.948527pt;}
.y173{bottom:608.042236pt;}
.y53{bottom:608.708903pt;}
.y1e6{bottom:609.428914pt;}
.y217{bottom:612.788903pt;}
.y117{bottom:614.747087pt;}
.y13e{bottom:616.375570pt;}
.y11f{bottom:620.042236pt;}
.ye5{bottom:620.708903pt;}
.y172{bottom:624.042236pt;}
.y52{bottom:624.708903pt;}
.y216{bottom:625.450236pt;}
.y1bd{bottom:626.832021pt;}
.y1c0{bottom:626.840684pt;}
.y1c4{bottom:626.849346pt;}
.y1c8{bottom:626.858009pt;}
.y1cf{bottom:626.875330pt;}
.y1d3{bottom:626.883993pt;}
.y1d6{bottom:626.892655pt;}
.y1d9{bottom:626.901317pt;}
.y1dd{bottom:626.909980pt;}
.y116{bottom:630.949754pt;}
.y13d{bottom:632.375570pt;}
.y1e5{bottom:634.762248pt;}
.y1b5{bottom:634.822663pt;}
.y11e{bottom:636.042236pt;}
.ye4{bottom:636.708903pt;}
.y215{bottom:638.111570pt;}
.y171{bottom:640.042236pt;}
.y51{bottom:640.708903pt;}
.y6{bottom:645.598667pt;}
.y115{bottom:647.077754pt;}
.y2a{bottom:648.053063pt;}
.y214{bottom:650.772903pt;}
.y11d{bottom:652.042236pt;}
.ye3{bottom:652.708903pt;}
.y170{bottom:656.042236pt;}
.y50{bottom:656.708903pt;}
.y1e4{bottom:660.095581pt;}
.y29{bottom:660.714396pt;}
.y114{bottom:663.205754pt;}
.y213{bottom:663.434236pt;}
.y184{bottom:665.867749pt;}
.y18f{bottom:665.867763pt;}
.y195{bottom:665.867770pt;}
.y19b{bottom:665.867777pt;}
.y1a6{bottom:665.867791pt;}
.y11c{bottom:668.042236pt;}
.ye2{bottom:668.708903pt;}
.y3{bottom:668.977329pt;}
.ycd{bottom:670.399999pt;}
.y16f{bottom:672.042236pt;}
.y4f{bottom:672.708903pt;}
.y185{bottom:673.867749pt;}
.y190{bottom:673.867763pt;}
.y196{bottom:673.867770pt;}
.y19c{bottom:673.867777pt;}
.y1a7{bottom:673.867791pt;}
.y212{bottom:676.095570pt;}
.y113{bottom:679.333754pt;}
.y11b{bottom:684.042236pt;}
.ye1{bottom:684.708903pt;}
.y16e{bottom:688.042236pt;}
.y4e{bottom:688.708903pt;}
.y211{bottom:688.756903pt;}
.y1e3{bottom:688.778236pt;}
.y28{bottom:694.357503pt;}
.y112{bottom:695.461754pt;}
.y11a{bottom:700.042236pt;}
.ye0{bottom:700.708903pt;}
.y210{bottom:701.418236pt;}
.y1e2{bottom:701.439570pt;}
.y16d{bottom:704.042236pt;}
.y4d{bottom:704.708903pt;}
.y111{bottom:711.589754pt;}
.y20f{bottom:714.079570pt;}
.y1e1{bottom:714.100903pt;}
.y4c{bottom:720.708903pt;}
.y20e{bottom:726.740903pt;}
.y110{bottom:727.717754pt;}
.y16c{bottom:728.375570pt;}
.y119{bottom:732.042236pt;}
.y27{bottom:732.351581pt;}
.ydf{bottom:732.708903pt;}
.y1b6{bottom:735.416663pt;}
.y4b{bottom:736.708903pt;}
.y20d{bottom:739.402236pt;}
.y1e0{bottom:739.412903pt;}
.y1b7{bottom:743.415997pt;}
.y10f{bottom:743.845754pt;}
.y16b{bottom:744.375570pt;}
.y20c{bottom:752.063570pt;}
.y1df{bottom:752.074236pt;}
.y26{bottom:752.354248pt;}
.y4a{bottom:752.708903pt;}
.y10e{bottom:759.973754pt;}
.y16a{bottom:760.375570pt;}
.yce{bottom:762.154665pt;}
.y20b{bottom:764.724903pt;}
.y49{bottom:768.708903pt;}
.y1de{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y48{bottom:784.708903pt;}
.y10d{bottom:784.869754pt;}
.y106{bottom:790.047570pt;}
.y10c{bottom:797.531087pt;}
.y25{bottom:799.809082pt;}
.y47{bottom:800.708903pt;}
.y105{bottom:802.708903pt;}
.y24{bottom:822.992964pt;}
.y75{bottom:835.262533pt;}
.y23{bottom:835.654297pt;}
.y8d{bottom:836.112793pt;}
.y46{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h7{height:28.560000pt;}
.h13{height:28.701867pt;}
.ha{height:30.080000pt;}
.h16{height:33.314667pt;}
.hb{height:37.376000pt;}
.h6{height:40.800000pt;}
.h12{height:41.002667pt;}
.hc{height:41.514667pt;}
.h3{height:42.840000pt;}
.h17{height:43.648000pt;}
.h15{height:47.680000pt;}
.h2{height:48.960000pt;}
.h10{height:51.253333pt;}
.hf{height:52.746667pt;}
.h14{height:54.560000pt;}
.he{height:57.658667pt;}
.h11{height:58.021333pt;}
.hd{height:61.429333pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w5{width:585.826660pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x8{left:68.976400pt;}
.x7{left:71.917603pt;}
.x3a{left:76.031469pt;}
.x9{left:83.151469pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3b{left:95.871733pt;}
.x20{left:103.767863pt;}
.x3c{left:106.809067pt;}
.x3d{left:121.438400pt;}
.x22{left:122.774800pt;}
.x3e{left:132.375733pt;}
.x3f{left:143.313067pt;}
.x23{left:147.670800pt;}
.x40{left:157.959732pt;}
.x24{left:163.798800pt;}
.x41{left:168.897066pt;}
.xb{left:175.422404pt;}
.x25{left:176.460133pt;}
.x42{left:179.834399pt;}
.x4{left:180.874667pt;}
.x26{left:189.121467pt;}
.xc{left:194.429342pt;}
.x27{left:201.761467pt;}
.x43{left:205.409731pt;}
.xd{left:207.090675pt;}
.x44{left:216.347065pt;}
.x28{left:217.889467pt;}
.x1b{left:222.996801pt;}
.x45{left:230.993731pt;}
.xe{left:231.986675pt;}
.x29{left:234.017467pt;}
.x46{left:241.931064pt;}
.x2a{left:246.678800pt;}
.xf{left:248.114675pt;}
.x47{left:252.868397pt;}
.x2b{left:259.340133pt;}
.x10{left:260.776008pt;}
.x1c{left:267.699605pt;}
.x2c{left:272.001467pt;}
.x11{left:276.914675pt;}
.x48{left:282.135730pt;}
.x2d{left:284.641467pt;}
.x12{left:293.042675pt;}
.x2e{left:300.737467pt;}
.x49{left:304.010396pt;}
.x13{left:309.170675pt;}
.x2f{left:313.398800pt;}
.x4a{left:318.648395pt;}
.x14{left:325.298675pt;}
.x30{left:329.526800pt;}
.x4b{left:340.523062pt;}
.x15{left:341.426675pt;}
.x4c{left:351.469062pt;}
.x31{left:354.849467pt;}
.x16{left:357.554675pt;}
.x4d{left:366.098395pt;}
.x32{left:367.500133pt;}
.x1e{left:370.054131pt;}
.x17{left:373.682675pt;}
.x4e{left:377.035729pt;}
.x33{left:383.617467pt;}
.x18{left:386.344008pt;}
.x4f{left:387.973062pt;}
.x34{left:396.278800pt;}
.x50{left:398.910395pt;}
.x1d{left:400.133057pt;}
.x19{left:402.546675pt;}
.x3{left:404.408000pt;}
.x35{left:412.417467pt;}
.x51{left:413.539729pt;}
.x1a{left:415.208008pt;}
.x36{left:425.078800pt;}
.x5{left:431.874146pt;}
.x37{left:437.740133pt;}
.x52{left:439.175729pt;}
.x53{left:450.113062pt;}
.x38{left:453.932133pt;}
.x1f{left:456.080793pt;}
.x39{left:466.593467pt;}
.x54{left:470.649740pt;}
.x55{left:486.649740pt;}
.x21{left:489.869181pt;}
.xa{left:502.595581pt;}
}




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